diff --git a/.azure-pipelines/templates/automation_test.yml b/.azure-pipelines/templates/automation_test.yml
index c633bfe3c79..b5b3ea16e44 100644
--- a/.azure-pipelines/templates/automation_test.yml
+++ b/.azure-pipelines/templates/automation_test.yml
@@ -8,9 +8,13 @@ parameters:
type: string
default: latest
- name: fullTest
- displayName: 'Run full test?'
+ displayName: Run full test?
type: boolean
default: false
+- name: module
+ displayName: Run test for specific module
+ type: string
+ default: ''
steps:
- task: UsePythonVersion@0
@@ -26,8 +30,17 @@ steps:
echo pythonVersion: ${{ parameters.pythonVersion }}
echo profile: ${{ parameters.profile }}
echo fullTest: ${{ parameters.fullTest }}
+ echo module: ${{ parameters.module }}
echo Build.Reason: $(Build.Reason)
+ # Test specific module
+ module="${{ parameters.module }}"
+ if [[ -n $module ]]; then
+ echo "Running test for module '$module'"
+ azdev test --no-exitfirst --verbose --series $module
+ exit 0
+ fi
+
if [[ "$(Build.Reason)" == "PullRequest" && "${{ parameters.fullTest }}" == 'False' ]]; then
echo "Running incremental test"
azdev test --no-exitfirst --repo=./ --src=HEAD --tgt=origin/$(System.PullRequest.TargetBranch) --cli-ci --profile ${{ parameters.profile }} --verbose --series
@@ -35,6 +48,6 @@ steps:
echo "Running full test"
azdev test --no-exitfirst --profile ${{ parameters.profile }} --verbose --series
fi
- displayName: "Test on Profile ${{ parameters.profile }}"
+ displayName: "azdev test"
env:
ADO_PULL_REQUEST_LATEST_COMMIT: $(System.PullRequest.TargetBranch)
diff --git a/.azure-pipelines/templates/azdev_setup.yml b/.azure-pipelines/templates/azdev_setup.yml
index 5f49baa3bd7..5dc98590d37 100644
--- a/.azure-pipelines/templates/azdev_setup.yml
+++ b/.azure-pipelines/templates/azdev_setup.yml
@@ -21,7 +21,7 @@ steps:
else
azdev setup -c $CLI_REPO_PATH -r $CLI_EXT_REPO_PATH --debug
fi
- displayName: 'Azdev Setup'
+ displayName: 'azdev setup'
env:
CLI_REPO_PATH: ${{ parameters.CLIRepoPath }}
CLI_EXT_REPO_PATH: ${{ parameters.CLIExtensionRepoPath }}
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 609a0141c14..5de97bfd00d 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -189,7 +189,7 @@ jobs:
inputs:
TargetPath: '$(Build.ArtifactStagingDirectory)/metadata'
artifactName: metadata
-
+
- task: DownloadPipelineArtifact@1
displayName: 'Download Build Artifacts'
inputs:
@@ -201,7 +201,7 @@ jobs:
inputs:
targetType: inline
script: |
- if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
+ if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
# Start another Powershell process as Admin and execute this script again
$arguments = "& '" +$myinvocation.mycommand.definition + "'"
Start-Process powershell -Verb runAs -ArgumentList $arguments
@@ -223,7 +223,7 @@ jobs:
$to_be_installed_version=Get-Content $(System.ArtifactsDirectory)/metadata/version
if ($pre_installed_version -eq $to_be_installed_version){
# See https://docs.microsoft.com/windows/win32/msi/reinstallmode about options of REINSTALLMODE
- $reinstall_option="REINSTALL=ALL REINSTALLMODE=emus"
+ $reinstall_option="REINSTALL=ALL REINSTALLMODE=emus"
$InstallArgs += $reinstall_option
}
Start-Process "msiexec.exe" -ArgumentList $InstallArgs -Wait -NoNewWindow
@@ -372,31 +372,39 @@ jobs:
displayName: 'Test pip Install'
-- job: UnitTest
- displayName: Unit Test for Core and Telemetry
+- job: TestCore
+ displayName: Unit Test for Core
timeoutInMinutes: 10
+ pool:
+ vmImage: 'ubuntu-16.04'
+ strategy:
+ matrix:
+ Python36:
+ python.version: '3.6'
+ Python38:
+ python.version: '3.8'
+ steps:
+ - template: .azure-pipelines/templates/automation_test.yml
+ parameters:
+ pythonVersion: '$(python.version)'
+ module: 'azure-cli-core'
+- job: TestTelemetry
+ displayName: Unit Test for Telemetry
+ timeoutInMinutes: 10
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
Python36:
python.version: '3.6'
- tox_env: 'py36'
Python38:
python.version: '3.8'
- tox_env: 'py38'
steps:
- - task: UsePythonVersion@0
- displayName: 'Use Python $(python.version)'
- inputs:
- versionSpec: '$(python.version)'
- - bash: pip install --upgrade pip tox
- displayName: 'Install pip and tox'
- - bash: ./scripts/ci/unittest.sh
- displayName: 'Run Unit Test'
- env:
- TOXENV: $(tox_env)
+ - template: .azure-pipelines/templates/automation_test.yml
+ parameters:
+ pythonVersion: '$(python.version)'
+ module: 'azure-cli-telemetry'
- job: IntegrationTestAgainstProfiles
displayName: Integration Test against Profiles
@@ -858,6 +866,7 @@ jobs:
- bash: |
set -ev
. env/bin/activate
+ python scripts/ci/service_name.py
if [[ "$(System.PullRequest.TargetBranch)" != "" ]]; then
azdev linter --ci-exclusions --min-severity medium --repo=./ --src=HEAD --tgt=origin/$(System.PullRequest.TargetBranch)
else
diff --git a/doc/track_2_migration_guidance.md b/doc/track_2_migration_guidance.md
index 0f7fd19c732..4fb176a3f2b 100644
--- a/doc/track_2_migration_guidance.md
+++ b/doc/track_2_migration_guidance.md
@@ -1,12 +1,17 @@
# Track 2 Migration Guidance
-Azure CLI is built upon Azure Python SDK. Recently Azure Python SDK announced next generation product. It is named Track 2 SDK. The old version of SDK is named Track 1. It claims that it has great advantages than Track 1 SDK. It is not compatible with Track 1 SDK. Azure CLI developers need to spend considerable time and do some work to migrate from Track 1 SDK to Track 2 SDK. Let's see an example of Track 2 SDK. [azure-mgmt-compute 17.0.0b1](https://pypi.org/project/azure-mgmt-compute/17.0.0b1/) introduces important breaking changes and important new features like unified authentication and asynchronous programming.
+Azure CLI is built on Azure Python SDKs. Recently, Azure Python SDK team announced the next generation product, named Track 2 SDK. The old version of SDK is called Track 1 SDK. It claims that it has some advantages than Track 1 SDK. It is not compatible with Track 1 SDK. A considerable number of work days are required for Azure CLI developers to migrate their modules from Track 1 SDK to Track 2 SDK. Let's see an example of Track 2 SDK. [azure-mgmt-compute 17.0.0b1](https://pypi.org/project/azure-mgmt-compute/17.0.0b1/) introduces important breaking changes and important new features like unified authentication and asynchronous programming.
This document summarizes typical issues and solutions when adopting Track 2 SDK in Azure CLI.
Example PRs:
1. [Compute PR #15750](https://github.com/Azure/azure-cli/pull/15750)
2. [Network PR #16245](https://github.com/Azure/azure-cli/pull/16245)
+3. [Network PR #16350](https://github.com/Azure/azure-cli/pull/16350)
+4. [Storage PR #15845](https://github.com/Azure/azure-cli/pull/15845)
+5. [KeyVault PR #14150](https://github.com/Azure/azure-cli/pull/14150)
+6. [AppConfig PR #16376](https://github.com/Azure/azure-cli/pull/16376)
+7. [AppService PR #17146](https://github.com/Azure/azure-cli/pull/17146)
Below is a list of typical issues.
@@ -26,11 +31,12 @@ Below is a list of typical issues.
Long running operations have changed their function names in Track 2 SDK. A `begin_` prefix is added. For example, `create_or_update` becomes `begin_create_or_update`. `delete` becomes `begin_delete`. It is a naming convention in Track 2 SDK to indicate that an operation is a long running operation. Test cases can reveal most instances, but if a command has no test, it may be missed. A reliable approach is going through all methods to see whether they are long running operations.
+
### Property name change
Some of property names change in Track 2 SDK.
-Examples:
+Here are some examples. `->` is not Python code. It represents the left one is updated to the right one.
```
hyperVgeneration -> hyperVGeneration
@@ -40,6 +46,7 @@ virtual_machine_extension_type -> type_properties_type
type1 -> type_properties_type
instance_ids -> vm_instance_i_ds
diskMbpsReadWrite -> diskMBpsReadWrite
+ipv4 -> I_PV4
```
Some changes are unnecessary, even wrong in English. I opened [Azure/autorest.python#850](https://github.com/Azure/autorest.python/issues/850) to track this problem.
@@ -48,7 +55,7 @@ Some changes are unnecessary, even wrong in English. I opened [Azure/autorest.py
Some of class names change in Track 2 SDK.
-Examples:
+[Example](https://github.com/Azure/azure-cli/pull/15750/files#diff-fd5160263d5431e9cdbf0f83abad213589c44c4c2724ff66b1172218caeb8396R629):
```
VirtualMachineIdentityUserAssignedIdentitiesValue -> UserAssignedIdentitiesValue
@@ -61,7 +68,9 @@ Error type changes in Track2 SDK.
Examples:
```
-CloudError -> azure.core.exceptions.ResourceNotFoundError
+msrestazure.azure_exceptions.CloudError -> azure.core.exceptions.ResourceNotFoundError
+msrest.exceptions.ClientException -> azure.core.exceptions.HttpResponseError
+ErrorException -> HttpResponseError
```
### No enum type
@@ -70,13 +79,24 @@ Track 2 SDK removes enum type and adopts string type instead. It loses the valid
### Class hierarchy change
-The class hierarchy may change in Track 2 SDK. Some properties are not flattened. They are wrapped in classes.
+The class hierarchy may change in Track 2 SDK. Some properties are not flattened. They are wrapped in classes. In Track 1 SDK, if the number of parameters is less than 3, it will be flattened.
Examples:
-In VMSS `begin_update_instances`, a new type `VirtualMachineScaleSetVMInstanceRequiredIDs` is added.
+In [VMSS](https://github.com/Azure/azure-cli/pull/15750/files?file-filters%5B%5D=.py#diff-fd5160263d5431e9cdbf0f83abad213589c44c4c2724ff66b1172218caeb8396R2688) `begin_update_instances`, a new type `VirtualMachineScaleSetVMInstanceRequiredIDs` is added.
+
+In [DiskAccess](https://github.com/Azure/azure-cli/pull/15750/files#diff-fd5160263d5431e9cdbf0f83abad213589c44c4c2724ff66b1172218caeb8396R3602) `begin_create_or_update`, location and tags are moved to a nested structure `DiskAccess`, `disk_access = DiskAccess(location=location, tags=tags)`
+
+In [Storage](https://github.com/Azure/azure-cli/pull/15845/files#diff-4cfe9a680ae04774e116b45bc06a679db751bfad1de211c6d2b3bc471900d8bfR23),
+```
+client.check_name_availability(account_name) // account_name is string
+```
+turns into
+```
+account_name = StorageAccountCheckNameAvailabilityParameters(name=name) client.check_name_availability(account_name)
+```
-In DiskAccess `begin_create_or_update`, location and tags are moved to a nested structure `DiskAccess`, `disk_access = DiskAccess(location=location, tags=tags)`
+In [AppConfig](https://github.com/Azure/azure-cli/pull/16376/files#diff-1796b5bb574aca9235e83b02a207cb8a42aafab920f3aae1c46af22bf0ce5aa4R191), `id` cannot be passed directly to `regenerate_key method`. It needs to be wrapped in the new model `RegenerateKeyParameters`.
### Obtaining subscription
@@ -104,6 +124,8 @@ The problem I met is property name change. It is hard to find the line of code t
It is only used in CI jobs. It patches some code to SDK. This file should be deprecated. It was written long time ago. But for now, just modify this file and add missing packages.
+[Example](https://github.com/Azure/azure-cli/pull/15750/files#diff-e1256a3d1d91aea524b252fa7dc4a64b83d183b7f57fb5c326b270a1c4b224a7)
+
### Missing external tenant authentication support
External tenant authentication support is missing in Azure CLI Core and Azure Core package. In request header, we use x-ms-authorization-auxiliary to pass auxiliary authorization token. Compute module is the first customer to have this requirement in Track 2 SDK. In azure/core/pipeline/policies/_authentication.py, there is a class BearerTokenCredentialPolicy. It simplifies bearer token authorization header configuration. However, auxiliary bearer token authorization is not supported in Azure Core policies [1] yet. The current solution is getting tokens manually, setting headers in client constructor or in operation call time manually. They said they will support this policy in the future. Azure CLI Core also needs an upgrade to provide better interfaces for Track 2 SDK users.
diff --git a/doc/track_2_migration_roadmap.md b/doc/track_2_migration_roadmap.md
index 6dab79dd28c..5921e747874 100644
--- a/doc/track_2_migration_roadmap.md
+++ b/doc/track_2_migration_roadmap.md
@@ -33,7 +33,7 @@ This document provides the roadmap for Track 2 SDK migration in Azure CLI. When
| KeyVault | Yes|**Completed** | 04/30/2021 |Catherine||GA (8.0.0) | GA (2.2.0) | Medium (Once three months) | Module |
| Monitor |Yes |**Completed** | 04/30/2021 |Yong||Monitor: GA (2.0.0)
LogAnalytics: GA (8.0.0) | Monitor: Preview (0.12.0)
LogAnalytics: GA (2.0.0) | Medium (Once two months) | Module |
| Resource | Yes |**In progress** | 04/30/2021 |Yong ||GA (15.0.0) | GA (12.0.0) | Medium (Once two months) | Module |
-| AppService | Yes | **In progress** | 04/30/2021 |Catherine||GA (1.0.0) | Preview (0.48.0) | Medium (Once three months) | Module |
+| AppService | Yes | **Completed** | 04/30/2021 |Catherine||GA (1.0.0) | Preview (0.48.0) | Medium (Once three months) | Module |
| ACS | Yes |Not Started | 04/30/2021 |Catherine||ContainerService: GA (14.0.0)
ContainerInstance: GA (7.0.0) | ContainerService: GA (11.0.0)
ContainerInstance: GA (2.0.0) | Medium (Once two months) | Module |
| ACR | Yes |Not Started | 04/30/2021 |Catherine||Preview (8.0.0b1) | Preview (3.0.0rc16) | Medium (Once two months) | Module |
| CosmosDB | Yes |**Completed** | 04/30/2021 |Yong||GA (6.0.0) | Preview (2.0.0rc1) | Medium (Once two months) |Module|
diff --git a/scripts/ci/build.sh b/scripts/ci/build.sh
index 4181213368c..4902836bb02 100755
--- a/scripts/ci/build.sh
+++ b/scripts/ci/build.sh
@@ -155,6 +155,7 @@ cat >>$testsrc_dir/setup.py < old[2] or float(new[3].strip('%')) < float(old[3].strip('%')):
+ regression_data.append(new)
+ regression_data.append(old)
+ # print(new)
+ # print(old)
+
+ # print(data)
+
+ return data, regression_data
+
+
+def create_issue(data, regression_data):
+ # Create Github issue
+ headers = {
+ 'Accept': 'application/vnd.github.v3+json'
+ }
+ issue_body = '''
+This issue is created by a program.
+[Latest testing results of Azure CLI](https://clitestresultstac.blob.core.windows.net/latest/index.html)
+[User Manual of Live Test Pipeline](https://microsoft-my.sharepoint.com/:w:/p/fey/EZGC9LwrN3RAscVS5ylG4HMBX9h7W0ZSA7CDrhXN5Lvx6g?e=V8HUmd)
+[Upgrading API Versions in Azure CLI Live Test Pipeline](https://microsoft-my.sharepoint.com/:w:/p/fey/EcgPLHSkef9Mi14Rjx79N9sBvyVDO4b_V97BMcoI1HTq-A?e=Ioap3B)
+[Power BI Report](https://msit.powerbi.com/groups/8de24d49-e97c-4672-9bfc-45fee0ec58f7/reports/65dfcfce-5d59-4dc9-8bc5-3726443c8fe1/ReportSection)
+
+The below table shows modules that have regression. Code owners, please pay attention.
+
+| Module | Pass | Fail | Pass rate | Detail | Date | Time |
+| --- | --- | --- | --- | --- | --- | --- |
+'''
+
+ for entry in regression_data:
+ issue_body += '| {} | {} | {} | {} | [Link]({}) | {} | {} |\n'.format(entry[0], entry[1], entry[2], entry[3], entry[4], entry[5], entry[6])
+
+ request_body = {
+ 'title': 'Live test regression',
+ 'body': issue_body
+ }
+ r = requests.post('https://api.github.com/repos/Azure/azure-cli/issues',
+ headers=headers, auth=('user', GITHUB_TOKEN), json=request_body)
+ print(r.status_code)
+ print(r.content)
+
+
+if __name__ == '__main__':
+ main()
diff --git a/scripts/live_test/monitor.yml b/scripts/live_test/monitor.yml
new file mode 100644
index 00000000000..2ad83f1a2db
--- /dev/null
+++ b/scripts/live_test/monitor.yml
@@ -0,0 +1,20 @@
+trigger:
+ branches:
+ exclude:
+ - '*'
+
+jobs:
+- job: Monitor
+ displayName: Monitor
+ pool:
+ vmImage: 'Ubuntu-18.04'
+ steps:
+ - task: UsePythonVersion@0
+ inputs:
+ versionSpec: '3.8'
+ addToPath: true
+ architecture: 'x64'
+ - bash: |
+ pip install mysql-connector-python
+ pip install requests
+ python /home/vsts/work/1/s/scripts/live_test/monitor.py "$(DB_PWD)" "$(GITHUB_TOKEN)"
\ No newline at end of file
diff --git a/src/azure-cli-core/azure/cli/core/commands/parameters.py b/src/azure-cli-core/azure/cli/core/commands/parameters.py
index 075fab99a4e..46fd524637a 100644
--- a/src/azure-cli-core/azure/cli/core/commands/parameters.py
+++ b/src/azure-cli-core/azure/cli/core/commands/parameters.py
@@ -248,6 +248,8 @@ def _type(value):
name_type = CLIArgumentType(options_list=['--name', '-n'], help='the primary resource name')
+edge_zone_type = CLIArgumentType(options_list='--edge-zone', help='The name of edge zone.', is_preview=True)
+
def get_location_type(cli_ctx):
location_type = CLIArgumentType(
diff --git a/src/azure-cli-core/azure/cli/core/profiles/_shared.py b/src/azure-cli-core/azure/cli/core/profiles/_shared.py
index 754220e7159..5f136d6de37 100644
--- a/src/azure-cli-core/azure/cli/core/profiles/_shared.py
+++ b/src/azure-cli-core/azure/cli/core/profiles/_shared.py
@@ -142,10 +142,10 @@ def default_api_version(self):
'disks': '2020-12-01',
'disk_encryption_sets': '2020-12-01',
'disk_accesses': '2020-05-01',
- 'snapshots': '2020-05-01',
+ 'snapshots': '2020-12-01',
'galleries': '2019-12-01',
'gallery_images': '2020-09-30',
- 'gallery_image_versions': '2019-12-01',
+ 'gallery_image_versions': '2020-09-30',
'virtual_machine_scale_sets': '2020-12-01'
}),
ResourceType.MGMT_RESOURCE_FEATURES: '2015-12-01',
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_help.py b/src/azure-cli/azure/cli/command_modules/appservice/_help.py
index 905f99477fa..ea325b2d804 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/_help.py
@@ -144,6 +144,10 @@
text: az functionapp config access-restriction add -g ResourceGroup -n AppName --rule-name remote_agents --action Allow --vnet-name corp01 --subnet agents --priority 500 --vnet-resource-group vnets
- name: Add Access Restriction opening (Allow) named agents in vNet 'corp01' in rg 'vnets' with subnet 'agents' (using subnet resource id)
text: az functionapp config access-restriction add -g ResourceGroup -n AppName --rule-name remote_agents --action Allow --priority 800 --subnet '/subscriptions//resourceGroups/vnets/providers/Microsoft.Network/virtualNetworks/corp01/subnets/agents'
+ - name: Add Access Restriction opening (Allow) with no rule name for service tag AzureCloud
+ text: az functionapp config access-restriction add -g ResourceGroup -n AppName --priority 400 --service-tag AzureCloud
+ - name: Add Access Restriction opening (Allow) with no rule name for service tag AzureFrontDoor.Backend and http-header X-Azure-FDID with value '12345678-abcd-1234-abcd-12345678910a'
+ text: az functionapp config access-restriction add -g ResourceGroup -n AppName --priority 400 --service-tag AzureFrontDoor.Backend --http-header x-azure-fdid=12345678-abcd-1234-abcd-12345678910a
"""
helps['functionapp config access-restriction remove'] = """
@@ -154,6 +158,8 @@
text: az functionapp config access-restriction remove -g ResourceGroup -n AppName --rule-name developers
- name: Remove Access Restriction named internal_agents from the scm site.
text: az functionapp config access-restriction remove -g ResourceGroup -n AppName --rule-name internal_agents --scm-site true
+ - name: Remove Access Restriction with service tag AzureFrontDoor.Backend from the main site.
+ text: az functionapp config access-restriction remove -g ResourceGroup -n AppName --service-tag AzureFrontDoor.Backend
"""
helps['functionapp config access-restriction set'] = """
@@ -1015,6 +1021,10 @@
text: az webapp config access-restriction add -g ResourceGroup -n AppName --rule-name remote_agents --action Allow --vnet-name corp01 --subnet agents --priority 500 --vnet-resource-group vnets
- name: Add Access Restriction opening (Allow) named agents in vNet 'corp01' in rg 'vnets' with subnet 'agents' (using subnet resource id)
text: az webapp config access-restriction add -g ResourceGroup -n AppName --rule-name remote_agents --action Allow --priority 800 --subnet '/subscriptions//resourceGroups/vnets/providers/Microsoft.Network/virtualNetworks/corp01/subnets/agents'
+ - name: Add Access Restriction opening (Allow) with no rule name for service tag AzureCloud
+ text: az webapp config access-restriction add -g ResourceGroup -n AppName --priority 400 --service-tag AzureCloud
+ - name: Add Access Restriction opening (Allow) with no rule name for service tag AzureFrontDoor.Backend and http-header X-Azure-FDID with value '12345678-abcd-1234-abcd-12345678910a'
+ text: az webapp config access-restriction add -g ResourceGroup -n AppName --priority 400 --service-tag AzureFrontDoor.Backend --http-header x-azure-fdid=12345678-abcd-1234-abcd-12345678910a
"""
helps['webapp config access-restriction remove'] = """
@@ -1025,6 +1035,8 @@
text: az webapp config access-restriction remove -g ResourceGroup -n AppName --rule-name developers
- name: Remove Access Restriction named internal_agents from the scm site.
text: az webapp config access-restriction remove -g ResourceGroup -n AppName --rule-name internal_agents --scm-site true
+ - name: Remove Access Restriction with service tag AzureFrontDoor.Backend from the main site.
+ text: az webapp config access-restriction remove -g ResourceGroup -n AppName --service-tag AzureFrontDoor.Backend
"""
helps['webapp config access-restriction set'] = """
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_params.py b/src/azure-cli/azure/cli/command_modules/appservice/_params.py
index 68872c506e7..76c36c0a333 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/_params.py
@@ -18,7 +18,8 @@
from ._completers import get_hostname_completion_list
from ._constants import FUNCTIONS_VERSIONS, FUNCTIONS_STACKS_API_JSON_PATHS, FUNCTIONS_STACKS_API_KEYS
from ._validators import (validate_timeout_value, validate_site_create, validate_asp_create,
- validate_add_vnet, validate_front_end_scale_factor, validate_ase_create, validate_ip_address)
+ validate_add_vnet, validate_front_end_scale_factor, validate_ase_create, validate_ip_address,
+ validate_service_tag)
AUTH_TYPES = {
'AllowAnonymous': 'na',
@@ -863,7 +864,10 @@ def load_arguments(self, _):
c.argument('description', help='Description of the access restriction rule')
c.argument('action', arg_type=get_enum_type(ACCESS_RESTRICTION_ACTION_TYPES),
help="Allow or deny access")
- c.argument('ip_address', help="IP address or CIDR range", validator=validate_ip_address)
+ c.argument('ip_address', help="IP address or CIDR range (optional comma separated list of up to 8 ranges)",
+ validator=validate_ip_address)
+ c.argument('service_tag', help="Service Tag (optional comma separated list of up to 8 tags)",
+ validator=validate_service_tag)
c.argument('vnet_name', help="vNet name")
c.argument('subnet', help="Subnet name (requires vNet name) or subnet resource id")
c.argument('ignore_missing_vnet_service_endpoint',
@@ -874,11 +878,15 @@ def load_arguments(self, _):
c.argument('scm_site', help='True if access restrictions is added for scm site',
arg_type=get_three_state_flag())
c.argument('vnet_resource_group', help='Resource group of virtual network (default is web app resource group)')
+ c.argument('http_headers', nargs='+', help="space-separated http headers in a format of `=`")
with self.argument_context(scope + ' config access-restriction remove') as c:
c.argument('name', arg_type=(webapp_name_arg_type if scope == 'webapp' else functionapp_name_arg_type))
c.argument('rule_name', options_list=['--rule-name', '-r'],
help='Name of the access restriction to remove')
- c.argument('ip_address', help="IP address or CIDR range", validator=validate_ip_address)
+ c.argument('ip_address', help="IP address or CIDR range (optional comma separated list of up to 8 ranges)",
+ validator=validate_ip_address)
+ c.argument('service_tag', help="Service Tag (optional comma separated list of up to 8 tags)",
+ validator=validate_service_tag)
c.argument('vnet_name', help="vNet name")
c.argument('subnet', help="Subnet name (requires vNet name) or subnet resource id")
c.argument('scm_site', help='True if access restriction should be removed from scm site',
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/_validators.py b/src/azure-cli/azure/cli/command_modules/appservice/_validators.py
index 3840a2fdc39..94443f61e52 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/_validators.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/_validators.py
@@ -3,12 +3,21 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
+import ipaddress
+
+from azure.cli.core.azclierror import (InvalidArgumentValueError, ArgumentUsageError)
+from azure.cli.core.commands.client_factory import get_mgmt_service_client
+from azure.cli.core.profiles import ResourceType
+from knack.log import get_logger
from knack.util import CLIError
from msrestazure.tools import is_valid_resource_id, parse_resource_id
-from azure.cli.core.commands.client_factory import get_mgmt_service_client
+
+from ._appservice_utils import _generic_site_operation
from ._client_factory import web_client_factory
from .utils import _normalize_sku
+logger = get_logger(__name__)
+
def validate_timeout_value(namespace):
"""Validates that zip deployment timeout is set to a reasonable min value"""
@@ -65,7 +74,6 @@ def validate_asp_create(cmd, namespace):
if isinstance(namespace.location, str):
location = namespace.location
else:
- from azure.cli.core.profiles import ResourceType
rg_client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_RESOURCE_RESOURCES)
group = rg_client.resource_groups.get(resource_group_name)
@@ -123,7 +131,6 @@ def validate_add_vnet(cmd, namespace):
vnet_loc = v.location
break
- from ._appservice_utils import _generic_site_operation
webapp = _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get', slot)
# converting geo region to geo location
webapp_loc = webapp.location.lower().replace(" ", "")
@@ -164,22 +171,18 @@ def validate_onedeploy_params(namespace):
def _validate_ip_address_format(namespace):
if namespace.ip_address is not None:
- # IPv6
- if ':' in namespace.ip_address:
- if namespace.ip_address.count(':') > 1:
- if '/' not in namespace.ip_address:
- namespace.ip_address = namespace.ip_address + '/128'
- return
- return
- # IPv4
- elif '.' in namespace.ip_address:
- if namespace.ip_address.count('.') == 3:
- if '/' not in namespace.ip_address:
- namespace.ip_address = namespace.ip_address + '/32'
- return
- return
-
- raise CLIError('Invalid IP address')
+ input_value = namespace.ip_address
+ if ' ' in input_value:
+ raise InvalidArgumentValueError("Spaces not allowed: '{}' ".format(input_value))
+ input_ips = input_value.split(',')
+ if len(input_ips) > 8:
+ raise InvalidArgumentValueError('Maximum 8 IP addresses are allowed per rule.')
+ validated_ips = ''
+ for ip in input_ips:
+ # Use ipaddress library to validate ip network format
+ ip_obj = ipaddress.ip_network(ip)
+ validated_ips += str(ip_obj) + ','
+ namespace.ip_address = validated_ips[:-1]
def _validate_ip_address_existence(cmd, namespace):
@@ -187,10 +190,54 @@ def _validate_ip_address_existence(cmd, namespace):
name = namespace.name
slot = namespace.slot
scm_site = namespace.scm_site
- from ._appservice_utils import _generic_site_operation
configs = _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get_configuration', slot)
access_rules = configs.scm_ip_security_restrictions if scm_site else configs.ip_security_restrictions
- is_exists = [(lambda x: x.ip_address == namespace.ip_address)(x) for x in access_rules]
- if True in is_exists:
- raise CLIError('IP address ' + namespace.ip_address + ' already exists. '
- 'Cannot add duplicate IP address values.')
+ ip_exists = [(lambda x: x.ip_address == namespace.ip_address)(x) for x in access_rules]
+ if True in ip_exists:
+ raise ArgumentUsageError('IP address: ' + namespace.ip_address + ' already exists. '
+ 'Cannot add duplicate IP address values.')
+
+
+def validate_service_tag(cmd, namespace):
+ if namespace.service_tag is not None:
+ _validate_service_tag_format(cmd, namespace)
+ # For prevention of adding the duplicate IPs.
+ if 'add' in cmd.name:
+ _validate_service_tag_existence(cmd, namespace)
+
+
+def _validate_service_tag_format(cmd, namespace):
+ if namespace.service_tag is not None:
+ input_value = namespace.service_tag
+ if ' ' in input_value:
+ raise InvalidArgumentValueError("Spaces not allowed: '{}' ".format(input_value))
+ input_tags = input_value.split(',')
+ if len(input_tags) > 8:
+ raise InvalidArgumentValueError('Maximum 8 service tags are allowed per rule.')
+ network_client = get_mgmt_service_client(cmd.cli_ctx, ResourceType.MGMT_NETWORK)
+ resource_group_name = namespace.resource_group_name
+ name = namespace.name
+ webapp = _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get')
+ service_tag_full_list = network_client.service_tags.list(webapp.location).values
+ for tag in input_tags:
+ valid_tag = False
+ for tag_full_list in service_tag_full_list:
+ if tag.lower() == tag_full_list.name.lower():
+ valid_tag = True
+ continue
+ if not valid_tag:
+ raise InvalidArgumentValueError('Unknown Service Tag: ' + tag)
+
+
+def _validate_service_tag_existence(cmd, namespace):
+ resource_group_name = namespace.resource_group_name
+ name = namespace.name
+ slot = namespace.slot
+ scm_site = namespace.scm_site
+ input_tag_value = namespace.service_tag.replace(' ', '')
+ configs = _generic_site_operation(cmd.cli_ctx, resource_group_name, name, 'get_configuration', slot)
+ access_rules = configs.scm_ip_security_restrictions if scm_site else configs.ip_security_restrictions
+ for rule in access_rules:
+ if rule.ip_address and rule.ip_address.lower() == input_tag_value.lower():
+ raise ArgumentUsageError('Service Tag: ' + namespace.service_tag + ' already exists. '
+ 'Cannot add duplicate Service Tag values.')
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/access_restrictions.py b/src/azure-cli/azure/cli/command_modules/appservice/access_restrictions.py
index 13f933ce659..ec4b6f2aabe 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/access_restrictions.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/access_restrictions.py
@@ -3,22 +3,28 @@
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------------------------
-from knack.log import get_logger
-from knack.util import CLIError
+import json
+
+from azure.cli.command_modules.network._client_factory import network_client_factory
+from azure.cli.core.azclierror import (ResourceNotFoundError, ArgumentUsageError, InvalidArgumentValueError,
+ MutuallyExclusiveArgumentError)
from azure.cli.core.commands import LongRunningOperation
-from azure.mgmt.web.models import IpSecurityRestriction
+from azure.cli.core.commands.client_factory import get_subscription_id
from azure.mgmt.network.models import ServiceEndpointPropertiesFormat
-from azure.cli.command_modules.appservice.custom import get_site_configs
-from azure.cli.command_modules.appservice._appservice_utils import _generic_site_operation
-from azure.cli.command_modules.network._client_factory import network_client_factory
+from azure.mgmt.web.models import IpSecurityRestriction
+from knack.log import get_logger
+from msrestazure.tools import is_valid_resource_id, resource_id, parse_resource_id
+
+from ._appservice_utils import _generic_site_operation
+from .custom import get_site_configs
logger = get_logger(__name__)
NETWORK_API_VERSION = '2019-02-01'
+ALLOWED_HTTP_HEADER_NAMES = ['x-forwarded-host', 'x-forwarded-for', 'x-azure-fdid', 'x-fd-healthprobe']
def show_webapp_access_restrictions(cmd, resource_group_name, name, slot=None):
- import json
configs = get_site_configs(cmd, resource_group_name, name, slot)
access_restrictions = json.dumps(configs.ip_security_restrictions, default=lambda x: x.__dict__)
scm_access_restrictions = json.dumps(configs.scm_ip_security_restrictions, default=lambda x: x.__dict__)
@@ -34,11 +40,13 @@ def add_webapp_access_restriction(
cmd, resource_group_name, name, priority, rule_name=None,
action='Allow', ip_address=None, subnet=None,
vnet_name=None, description=None, scm_site=False,
- ignore_missing_vnet_service_endpoint=False, slot=None, vnet_resource_group=None):
+ ignore_missing_vnet_service_endpoint=False, slot=None, vnet_resource_group=None,
+ service_tag=None, http_headers=None):
configs = get_site_configs(cmd, resource_group_name, name, slot)
-
- if (ip_address and subnet) or (not ip_address and not subnet):
- raise CLIError('Usage error: --subnet | --ip-address')
+ if (int(service_tag is not None) + int(ip_address is not None) +
+ int(subnet is not None) != 1):
+ err_msg = 'Please specify either: --subnet or --ip-address or --service-tag'
+ raise MutuallyExclusiveArgumentError(err_msg)
# get rules list
access_rules = configs.scm_ip_security_restrictions if scm_site else configs.ip_security_restrictions
@@ -56,12 +64,19 @@ def add_webapp_access_restriction(
name=rule_name, vnet_subnet_resource_id=subnet_id,
priority=priority, action=action, tag='Default', description=description)
access_rules.append(rule_instance)
-
elif ip_address:
rule_instance = IpSecurityRestriction(
name=rule_name, ip_address=ip_address,
priority=priority, action=action, tag='Default', description=description)
access_rules.append(rule_instance)
+ elif service_tag:
+ rule_instance = IpSecurityRestriction(
+ name=rule_name, ip_address=service_tag,
+ priority=priority, action=action, tag='ServiceTag', description=description)
+ access_rules.append(rule_instance)
+ if http_headers:
+ logger.info(http_headers)
+ rule_instance.headers = _parse_http_headers(http_headers=http_headers)
result = _generic_site_operation(
cmd.cli_ctx, resource_group_name, name, 'update_configuration', slot, configs)
@@ -69,34 +84,47 @@ def add_webapp_access_restriction(
def remove_webapp_access_restriction(cmd, resource_group_name, name, rule_name=None, action='Allow',
- ip_address=None, subnet=None, vnet_name=None, scm_site=False, slot=None):
+ ip_address=None, subnet=None, vnet_name=None, scm_site=False, slot=None,
+ service_tag=None):
configs = get_site_configs(cmd, resource_group_name, name, slot)
+ input_rule_types = (int(service_tag is not None) + int(ip_address is not None) +
+ int(subnet is not None))
+ if input_rule_types > 1:
+ err_msg = 'Please specify either: --subnet or --ip-address or --service-tag'
+ raise MutuallyExclusiveArgumentError(err_msg)
rule_instance = None
# get rules list
access_rules = configs.scm_ip_security_restrictions if scm_site else configs.ip_security_restrictions
-
for rule in list(access_rules):
- if rule_name:
+ if rule_name and input_rule_types == 0:
if rule.name and rule.name.lower() == rule_name.lower() and rule.action == action:
rule_instance = rule
break
elif ip_address:
if rule.ip_address == ip_address and rule.action == action:
- if rule_name and rule.name and rule.name.lower() != rule_name.lower():
+ if rule_name and (not rule.name or (rule.name and rule.name.lower() != rule_name.lower())):
+ continue
+ rule_instance = rule
+ break
+ elif service_tag:
+ if rule.ip_address and rule.ip_address.lower() == service_tag.lower() and rule.action == action:
+ if rule_name and (not rule.name or (rule.name and rule.name.lower() != rule_name.lower())):
continue
rule_instance = rule
break
elif subnet:
subnet_id = _validate_subnet(cmd.cli_ctx, subnet, vnet_name, resource_group_name)
if rule.vnet_subnet_resource_id == subnet_id and rule.action == action:
- if rule_name and rule.name and rule.name.lower() != rule_name.lower():
+ if rule_name and (not rule.name or (rule.name and rule.name.lower() != rule_name.lower())):
continue
rule_instance = rule
break
if rule_instance is None:
- raise CLIError('No rule found with the specified criteria. '
- 'If you are trying to remove a Deny rule, you must explicitly specify --action Deny')
+ raise ResourceNotFoundError('No rule found with the specified criteria.\n'
+ '- If you specify rule name and source, both must match.\n'
+ '- If you are trying to remove a Deny rule, '
+ 'you must explicitly specify --action Deny')
access_rules.remove(rule_instance)
@@ -119,14 +147,10 @@ def set_webapp_access_restriction(cmd, resource_group_name, name, use_same_restr
def _validate_subnet(cli_ctx, subnet, vnet_name, resource_group_name):
- from msrestazure.tools import is_valid_resource_id
subnet_is_id = is_valid_resource_id(subnet)
-
if subnet_is_id and not vnet_name:
return subnet
if subnet and not subnet_is_id and vnet_name:
- from msrestazure.tools import resource_id
- from azure.cli.core.commands.client_factory import get_subscription_id
return resource_id(
subscription=get_subscription_id(cli_ctx),
resource_group=resource_group_name,
@@ -135,16 +159,22 @@ def _validate_subnet(cli_ctx, subnet, vnet_name, resource_group_name):
name=vnet_name,
child_type_1='subnets',
child_name_1=subnet)
- raise CLIError('Usage error: --subnet ID | --subnet NAME --vnet-name NAME [--vnet-resource-group]')
+ err_msg = 'Please specify either: --subnet ID or (--subnet NAME and --vnet-name NAME)'
+ raise MutuallyExclusiveArgumentError(err_msg)
def _ensure_subnet_service_endpoint(cli_ctx, subnet_id):
- from msrestazure.tools import parse_resource_id
subnet_id_parts = parse_resource_id(subnet_id)
+ subnet_subscription_id = subnet_id_parts['subscription']
subnet_resource_group = subnet_id_parts['resource_group']
subnet_vnet_name = subnet_id_parts['name']
subnet_name = subnet_id_parts['resource_name']
+ if get_subscription_id(cli_ctx).lower() != subnet_subscription_id.lower():
+ raise ArgumentUsageError('Cannot validate subnet in different subscription for missing service endpoint.'
+ ' Use --ignore-missing-endpoint or -i to'
+ ' skip validation and manually verify service endpoint.')
+
vnet_client = network_client_factory(cli_ctx, api_version=NETWORK_API_VERSION)
subnet_obj = vnet_client.subnets.get(subnet_resource_group, subnet_vnet_name, subnet_name)
subnet_obj.service_endpoints = subnet_obj.service_endpoints or []
@@ -162,3 +192,28 @@ def _ensure_subnet_service_endpoint(cli_ctx, subnet_id):
subnet_name, subnet_parameters=subnet_obj)
# Ensure subnet is updated to avoid update conflict
LongRunningOperation(cli_ctx)(poller)
+
+
+def _parse_http_headers(http_headers):
+ logger.info(http_headers)
+ header_dict = {}
+ for header_str in http_headers:
+ header = header_str.split('=')
+ if len(header) != 2:
+ err_msg = 'Http headers must have a format of `=`: "{}"'.format(header_str)
+ raise InvalidArgumentValueError(err_msg)
+ header_name = header[0].strip().lower()
+ header_value = header[1].strip()
+
+ if header_name not in ALLOWED_HTTP_HEADER_NAMES:
+ raise InvalidArgumentValueError('Invalid http-header name: "{}"'.format(header_name))
+
+ if header_value:
+ if header_name in header_dict:
+ if len(header_dict[header_name]) > 7:
+ err_msg = 'Only 8 values are allowed for each http-header: "{}"'.format(header_name)
+ raise ArgumentUsageError(err_msg)
+ header_dict[header_name].append(header_value)
+ else:
+ header_dict[header_name] = [header_value]
+ return header_dict
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/custom.py b/src/azure-cli/azure/cli/command_modules/appservice/custom.py
index 278c827843c..dc296e399e5 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/custom.py
@@ -557,7 +557,7 @@ def progress_callback(current, total):
block_blob_service.create_blob_from_path(container_name, blob_name, src, validate_content=True,
progress_callback=progress_callback)
- now = datetime.datetime.now()
+ now = datetime.datetime.utcnow()
blob_start = now - datetime.timedelta(minutes=10)
blob_end = now + datetime.timedelta(weeks=520)
BlobPermissions = get_sdk(cmd.cli_ctx, ResourceType.DATA_STORAGE, 'blob#BlobPermissions')
@@ -4424,6 +4424,7 @@ def delete_function(cmd, resource_group_name, name, function_name):
def update_function_key(cmd, resource_group_name, name, function_name, key_name, key_value=None, slot=None):
# pylint: disable=protected-access
+ key_info = KeyInfo(name=key_name, value=key_value)
KeyInfo._attribute_map = {
'name': {'key': 'properties.name', 'type': 'str'},
'value': {'key': 'properties.value', 'type': 'str'},
@@ -4435,14 +4436,12 @@ def update_function_key(cmd, resource_group_name, name, function_name, key_name,
function_name,
key_name,
slot,
- name1=key_name,
- value=key_value)
+ key_info)
return client.web_apps.create_or_update_function_secret(resource_group_name,
name,
function_name,
key_name,
- name1=key_name,
- value=key_value)
+ key_info)
def list_function_keys(cmd, resource_group_name, name, function_name, slot=None):
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/resources/LinuxFunctionsStacks.json b/src/azure-cli/azure/cli/command_modules/appservice/resources/LinuxFunctionsStacks.json
index c56eafd4960..24e9e86fb55 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/resources/LinuxFunctionsStacks.json
+++ b/src/azure-cli/azure/cli/command_modules/appservice/resources/LinuxFunctionsStacks.json
@@ -259,6 +259,40 @@
"isDeprecated": null
}
},
+ {
+ "id": null,
+ "name": "powershell",
+ "type": "Microsoft.Web/availableStacks?osTypeSelected=LinuxFunctions",
+ "properties": {
+ "name": "powershell",
+ "display": "PowerShell Core",
+ "dependency": null,
+ "majorVersions": [
+ {
+ "displayVersion": "7.0",
+ "runtimeVersion": "PowerShell|7",
+ "supportedFunctionsExtensionVersions": [
+ "~3"
+ ],
+ "isDefault": true,
+ "minorVersions": [],
+ "applicationInsights": true,
+ "appSettingsDictionary": {
+ "FUNCTIONS_WORKER_RUNTIME": "powershell"
+ },
+ "siteConfigPropertiesDictionary": {
+ "use32BitWorkerProcess": false,
+ "linuxFxVersion": "PowerShell|7"
+ },
+ "isPreview": true,
+ "isDeprecated": false,
+ "isHidden": true
+ }
+ ],
+ "frameworks": [],
+ "isDeprecated": null
+ }
+ },
{
"id": null,
"name": "custom",
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml
index df88de5be66..3c49e72aa23 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add.yaml
@@ -13,7 +13,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:04 GMT
+ - Wed, 14 Apr 2021 08:13:57 GMT
expires:
- '-1'
pragma:
@@ -152,12 +152,12 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:43.8259596Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:43.8259596Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:56:43.7477914Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:13:36.5473878Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:13:36.5473878Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:13:36.3442284Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:05 GMT
+ - Wed, 14 Apr 2021 08:13:57 GMT
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:06 GMT
+ - Wed, 14 Apr 2021 08:13:58 GMT
expires:
- '-1'
pragma:
@@ -230,7 +230,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
status:
code: 200
message: OK
@@ -260,25 +260,25 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:57:18.3966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-025.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:14:10.9366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"functionapp","inboundIpAddress":"40.80.58.225","possibleInboundIpAddresses":"40.80.58.225","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-025.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.80.58.225","possibleOutboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.81.182.55,40.81.182.90,52.147.75.18,52.147.75.46,52.147.75.61,52.147.75.42,20.39.176.164,20.39.176.165,20.39.176.168,40.81.180.215,20.39.176.15,20.39.177.93,40.80.58.225","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-025","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '5943'
+ - '5960'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:56 GMT
+ - Wed, 14 Apr 2021 08:14:51 GMT
etag:
- - '"1D72678D1FAEF15"'
+ - '"1D73106267DDD6B"'
expires:
- '-1'
pragma:
@@ -321,26 +321,26 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a100dadd-0000-2400-0000-6064f0690000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"b09170b0-3cee-49d9-9525-352c66730a69","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"c285d225-d62e-4d82-94b6-f32b01a16a51","ConnectionString":"InstrumentationKey=c285d225-d62e-4d82-94b6-f32b01a16a51;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:58:00.42894+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"3000d3c2-0000-2400-0000-6076a4890000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"ea11f0c5-173f-46cf-88f8-cc2780db36a9","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"58c1b605-562c-465f-8eed-d415ae2286f2","ConnectionString":"InstrumentationKey=58c1b605-562c-465f-8eed-d415ae2286f2;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-04-14T08:15:05.2212874+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1050'
+ - '1052'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:07 GMT
+ - Wed, 14 Apr 2021 08:15:10 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -380,7 +380,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -395,7 +395,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:08 GMT
+ - Wed, 14 Apr 2021 08:15:13 GMT
expires:
- '-1'
pragma:
@@ -424,7 +424,7 @@ interactions:
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "c285d225-d62e-4d82-94b6-f32b01a16a51"}}'
+ "58c1b605-562c-465f-8eed-d415ae2286f2"}}'
headers:
Accept:
- application/json
@@ -441,13 +441,13 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"c285d225-d62e-4d82-94b6-f32b01a16a51"}}'
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"58c1b605-562c-465f-8eed-d415ae2286f2"}}'
headers:
cache-control:
- no-cache
@@ -456,9 +456,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:12 GMT
+ - Wed, 14 Apr 2021 08:15:18 GMT
etag:
- - '"1D72678F06600AB"'
+ - '"1D731064BFCA915"'
expires:
- '-1'
pragma:
@@ -476,7 +476,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -496,7 +496,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -504,16 +504,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3795'
+ - '3797'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:15 GMT
+ - Wed, 14 Apr 2021 08:15:20 GMT
expires:
- '-1'
pragma:
@@ -549,7 +549,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -557,16 +557,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3795'
+ - '3797'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:16 GMT
+ - Wed, 14 Apr 2021 08:15:21 GMT
expires:
- '-1'
pragma:
@@ -626,7 +626,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -634,18 +634,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3886'
+ - '3888'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:21 GMT
+ - Wed, 14 Apr 2021 08:15:27 GMT
etag:
- - '"1D72678F06600AB"'
+ - '"1D731064BFCA915"'
expires:
- '-1'
pragma:
@@ -663,7 +663,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1193'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_ip_address_validation.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_ip_address_validation.yaml
index 691422ac6ed..71f53670216 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_ip_address_validation.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_ip_address_validation.yaml
@@ -13,7 +13,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:01 GMT
+ - Wed, 14 Apr 2021 08:47:40 GMT
expires:
- '-1'
pragma:
@@ -152,12 +152,12 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:42.3727606Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:42.3727606Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:56:42.2946404Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:47:19.6657061Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:47:19.6657061Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:47:19.5876095Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:02 GMT
+ - Wed, 14 Apr 2021 08:47:41 GMT
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:02 GMT
+ - Wed, 14 Apr 2021 08:47:42 GMT
expires:
- '-1'
pragma:
@@ -230,7 +230,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11995'
status:
code: 200
message: OK
@@ -260,25 +260,25 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:57:19.9366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-025.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:48:09.7533333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"functionapp","inboundIpAddress":"40.80.58.225","possibleInboundIpAddresses":"40.80.58.225","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-025.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.80.58.225","possibleOutboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.81.182.55,40.81.182.90,52.147.75.18,52.147.75.46,52.147.75.61,52.147.75.42,20.39.176.164,20.39.176.165,20.39.176.168,40.81.180.215,20.39.176.15,20.39.177.93,40.80.58.225","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-025","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6233'
+ - '6250'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:55 GMT
+ - Wed, 14 Apr 2021 08:48:50 GMT
etag:
- - '"1D72678D2DF4EA0"'
+ - '"1D7310AE5EAF415"'
expires:
- '-1'
pragma:
@@ -321,15 +321,15 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a10014de-0000-2400-0000-6064f06c0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"f66fb499-4c83-40ea-ac67-142d4d0d3c57","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"cece3fb0-95a2-4930-b42b-d3781052a172","ConnectionString":"InstrumentationKey=cece3fb0-95a2-4930-b42b-d3781052a172;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:58:02.9611899+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"3200f3a0-0000-2400-0000-6076ac7d0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"81300697-6f4d-4893-8635-26527bc83943","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"048bdaf4-8483-47a6-9579-418cd7cbc50e","ConnectionString":"InstrumentationKey=048bdaf4-8483-47a6-9579-418cd7cbc50e;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-04-14T08:49:01.3152385+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -340,7 +340,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:07 GMT
+ - Wed, 14 Apr 2021 08:49:04 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1195'
x-powered-by:
- ASP.NET
status:
@@ -380,7 +380,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -395,7 +395,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:09 GMT
+ - Wed, 14 Apr 2021 08:49:05 GMT
expires:
- '-1'
pragma:
@@ -413,7 +413,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -424,7 +424,7 @@ interactions:
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "cece3fb0-95a2-4930-b42b-d3781052a172"}}'
+ "048bdaf4-8483-47a6-9579-418cd7cbc50e"}}'
headers:
Accept:
- application/json
@@ -441,13 +441,13 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"cece3fb0-95a2-4930-b42b-d3781052a172"}}'
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"048bdaf4-8483-47a6-9579-418cd7cbc50e"}}'
headers:
cache-control:
- no-cache
@@ -456,9 +456,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:12 GMT
+ - Wed, 14 Apr 2021 08:49:11 GMT
etag:
- - '"1D72678F08D2AB5"'
+ - '"1D7310B0849AE0B"'
expires:
- '-1'
pragma:
@@ -496,7 +496,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -504,16 +504,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:14 GMT
+ - Wed, 14 Apr 2021 08:49:11 GMT
expires:
- '-1'
pragma:
@@ -549,7 +549,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -557,16 +557,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:15 GMT
+ - Wed, 14 Apr 2021 08:49:13 GMT
expires:
- '-1'
pragma:
@@ -626,7 +626,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -634,18 +634,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/32","action":"Allow","tag":"Default","priority":200,"name":"ipv4"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3938'
+ - '3940'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:19 GMT
+ - Wed, 14 Apr 2021 08:49:20 GMT
etag:
- - '"1D72678F08D2AB5"'
+ - '"1D7310B0849AE0B"'
expires:
- '-1'
pragma:
@@ -663,7 +663,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1192'
x-powered-by:
- ASP.NET
status:
@@ -683,7 +683,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -691,16 +691,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/32","action":"Allow","tag":"Default","priority":200,"name":"ipv4"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3956'
+ - '3958'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:21 GMT
+ - Wed, 14 Apr 2021 08:49:20 GMT
expires:
- '-1'
pragma:
@@ -736,7 +736,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -744,16 +744,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/32","action":"Allow","tag":"Default","priority":200,"name":"ipv4"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3956'
+ - '3958'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:22 GMT
+ - Wed, 14 Apr 2021 08:49:21 GMT
expires:
- '-1'
pragma:
@@ -814,7 +814,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -822,18 +822,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/32","action":"Allow","tag":"Default","priority":200,"name":"ipv4"},{"ipAddress":"2004::1000/128","action":"Allow","tag":"Default","priority":200,"name":"ipv6"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '4031'
+ - '4033'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:26 GMT
+ - Wed, 14 Apr 2021 08:49:25 GMT
etag:
- - '"1D72678F4C06720"'
+ - '"1D7310B0DA571EB"'
expires:
- '-1'
pragma:
@@ -851,7 +851,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1193'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml
index 2623771fa93..0de779d33f1 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_scm.yaml
@@ -13,7 +13,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:03 GMT
+ - Wed, 14 Apr 2021 08:14:00 GMT
expires:
- '-1'
pragma:
@@ -152,12 +152,12 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:43.4509445Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:43.4509445Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:56:43.3727960Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:13:39.4379889Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:13:39.4379889Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:13:39.3442423Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:05 GMT
+ - Wed, 14 Apr 2021 08:14:01 GMT
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:05 GMT
+ - Wed, 14 Apr 2021 08:14:02 GMT
expires:
- '-1'
pragma:
@@ -260,25 +260,25 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:57:18.6566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-025.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:14:18.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"functionapp","inboundIpAddress":"40.80.58.225","possibleInboundIpAddresses":"40.80.58.225","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-025.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.80.58.225","possibleOutboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.81.182.55,40.81.182.90,52.147.75.18,52.147.75.46,52.147.75.61,52.147.75.42,20.39.176.164,20.39.176.165,20.39.176.168,40.81.180.215,20.39.176.15,20.39.177.93,40.80.58.225","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-025","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6233'
+ - '6245'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:56 GMT
+ - Wed, 14 Apr 2021 08:15:02 GMT
etag:
- - '"1D72678D22A3C75"'
+ - '"1D731062ABCCCA0"'
expires:
- '-1'
pragma:
@@ -321,15 +321,15 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a100c5dd-0000-2400-0000-6064f0680000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"c78ff7a1-6577-4771-b49c-82462dc13860","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"fbc68872-b992-4a1b-bf6b-0fb1f0b8e3b2","ConnectionString":"InstrumentationKey=fbc68872-b992-4a1b-bf6b-0fb1f0b8e3b2;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:58:00.2557489+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"30003dc4-0000-2400-0000-6076a48f0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"cc22b491-33f0-4915-9d24-019968cecccc","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"e590d7b9-75ea-4d99-ba15-2afa958b4a0a","ConnectionString":"InstrumentationKey=e590d7b9-75ea-4d99-ba15-2afa958b4a0a;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-04-14T08:15:11.4102175+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -340,7 +340,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:02 GMT
+ - Wed, 14 Apr 2021 08:15:14 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -380,7 +380,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -395,7 +395,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:03 GMT
+ - Wed, 14 Apr 2021 08:15:16 GMT
expires:
- '-1'
pragma:
@@ -413,7 +413,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -424,7 +424,7 @@ interactions:
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "fbc68872-b992-4a1b-bf6b-0fb1f0b8e3b2"}}'
+ "e590d7b9-75ea-4d99-ba15-2afa958b4a0a"}}'
headers:
Accept:
- application/json
@@ -441,13 +441,13 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"fbc68872-b992-4a1b-bf6b-0fb1f0b8e3b2"}}'
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"e590d7b9-75ea-4d99-ba15-2afa958b4a0a"}}'
headers:
cache-control:
- no-cache
@@ -456,9 +456,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:07 GMT
+ - Wed, 14 Apr 2021 08:15:21 GMT
etag:
- - '"1D72678ED3421AB"'
+ - '"1D731064ED68A0B"'
expires:
- '-1'
pragma:
@@ -496,7 +496,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -504,16 +504,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:09 GMT
+ - Wed, 14 Apr 2021 08:15:22 GMT
expires:
- '-1'
pragma:
@@ -549,7 +549,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -557,16 +557,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:10 GMT
+ - Wed, 14 Apr 2021 08:15:23 GMT
expires:
- '-1'
pragma:
@@ -626,7 +626,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -634,18 +634,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
- all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3944'
+ - '3946'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:16 GMT
+ - Wed, 14 Apr 2021 08:15:28 GMT
etag:
- - '"1D72678ED3421AB"'
+ - '"1D731064ED68A0B"'
expires:
- '-1'
pragma:
@@ -663,7 +663,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1194'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml
index c82479c4335..ff9dc033b44 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_add_service_endpoint.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T21:56:34Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:47:06Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:57:05 GMT
+ - Wed, 14 Apr 2021 08:47:41 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:05 GMT
+ - Wed, 14 Apr 2021 08:47:41 GMT
expires:
- '-1'
pragma:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T21:56:34Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:47:06Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:57:05 GMT
+ - Wed, 14 Apr 2021 08:47:42 GMT
expires:
- '-1'
pragma:
@@ -165,13 +165,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":1808,"name":"cli-plan-nwr000004","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_1808","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":2825,"name":"cli-plan-nwr000004","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2825","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -180,9 +180,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:16 GMT
+ - Wed, 14 Apr 2021 08:47:57 GMT
etag:
- - '"1D72678CF67C115"'
+ - '"1D7310ADC04FA2B"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1192'
x-powered-by:
- ASP.NET
status:
@@ -220,14 +220,14 @@ interactions:
ParameterSetName:
- -g -n --plan -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","name":"cli-plan-nwr000004","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":1808,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_1808","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":2825,"name":"cli-plan-nwr000004","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2825","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -236,7 +236,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:18 GMT
+ - Wed, 14 Apr 2021 08:47:59 GMT
expires:
- '-1'
pragma:
@@ -272,12 +272,12 @@ interactions:
ParameterSetName:
- -g -n --plan -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:42.4353079Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:42.4353079Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:56:42.3727606Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:47:19.9469830Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:47:19.9469830Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:47:19.8844849Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -286,7 +286,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:19 GMT
+ - Wed, 14 Apr 2021 08:47:59 GMT
expires:
- '-1'
pragma:
@@ -320,7 +320,7 @@ interactions:
ParameterSetName:
- -g -n --plan -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -334,7 +334,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:20 GMT
+ - Wed, 14 Apr 2021 08:48:00 GMT
expires:
- '-1'
pragma:
@@ -350,7 +350,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11997'
status:
code: 200
message: OK
@@ -378,26 +378,26 @@ interactions:
ParameterSetName:
- -g -n --plan -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan
- West","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:57:25.9366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000004","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:48:09.7","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"functionapp","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6243'
+ - '6237'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:44 GMT
+ - Wed, 14 Apr 2021 08:48:30 GMT
etag:
- - '"1D72678D65D78E0"'
+ - '"1D7310AE5AFF3EB"'
expires:
- '-1'
pragma:
@@ -440,15 +440,15 @@ interactions:
ParameterSetName:
- -g -n --plan -s
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a1004edd-0000-2400-0000-6064f0600000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"7199a36b-d5e6-48e0-9572-d2587624d57c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"51f794f5-a910-49be-be4e-d4dbe3e13519","ConnectionString":"InstrumentationKey=51f794f5-a910-49be-be4e-d4dbe3e13519;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:57:51.3509433+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"3200e09c-0000-2400-0000-6076ac6a0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"2ad139f4-6eeb-42b5-b4f7-a8a59448ae6c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"2f7f2b08-944d-40ab-998b-340d536391f2","ConnectionString":"InstrumentationKey=2f7f2b08-944d-40ab-998b-340d536391f2;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-04-14T08:48:40.4204374+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -459,7 +459,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:57:54 GMT
+ - Wed, 14 Apr 2021 08:48:46 GMT
expires:
- '-1'
pragma:
@@ -477,7 +477,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1192'
x-powered-by:
- ASP.NET
status:
@@ -499,7 +499,7 @@ interactions:
ParameterSetName:
- -g -n --plan -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -514,7 +514,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:55 GMT
+ - Wed, 14 Apr 2021 08:48:48 GMT
expires:
- '-1'
pragma:
@@ -541,7 +541,7 @@ interactions:
- request:
body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "dotnet", "FUNCTIONS_EXTENSION_VERSION":
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
- "APPINSIGHTS_INSTRUMENTATIONKEY": "51f794f5-a910-49be-be4e-d4dbe3e13519"}}'
+ "APPINSIGHTS_INSTRUMENTATIONKEY": "2f7f2b08-944d-40ab-998b-340d536391f2"}}'
headers:
Accept:
- application/json
@@ -558,13 +558,13 @@ interactions:
ParameterSetName:
- -g -n --plan -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"51f794f5-a910-49be-be4e-d4dbe3e13519"}}'
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"2f7f2b08-944d-40ab-998b-340d536391f2"}}'
headers:
cache-control:
- no-cache
@@ -573,9 +573,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:57 GMT
+ - Wed, 14 Apr 2021 08:48:50 GMT
etag:
- - '"1D72678E90FA54B"'
+ - '"1D7310AFDD13820"'
expires:
- '-1'
pragma:
@@ -593,7 +593,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1191'
x-powered-by:
- ASP.NET
status:
@@ -613,15 +613,15 @@ interactions:
ParameterSetName:
- -g -n --address-prefixes --subnet-name --subnet-prefixes
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T21:56:34Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:47:06Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -630,7 +630,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:57:58 GMT
+ - Wed, 14 Apr 2021 08:48:51 GMT
expires:
- '-1'
pragma:
@@ -664,21 +664,21 @@ interactions:
ParameterSetName:
- -g -n --address-prefixes --subnet-name --subnet-prefixes
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n
- \ \"etag\": \"W/\\\"571a49ab-7657-418e-b369-d4c3ec769256\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"6f71075f-ab52-41ca-adb5-6e333216d345\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"japanwest\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"932f9775-d9bd-4e74-81af-d66cab7b0010\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"ab20c8ec-06ad-4cfa-a073-81596f3137e7\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"571a49ab-7657-418e-b369-d4c3ec769256\\\"\",\r\n
+ \ \"etag\": \"W/\\\"6f71075f-ab52-41ca-adb5-6e333216d345\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -689,7 +689,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/f3d86601-5c22-438c-be3d-cec7321d3129?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/81448f7d-9e31-479e-a6c3-167a3c9be79c?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -697,7 +697,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:05 GMT
+ - Wed, 14 Apr 2021 08:48:57 GMT
expires:
- '-1'
pragma:
@@ -710,9 +710,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 60170dda-23c0-498b-a007-caf7008dc98a
+ - ca8a73c4-c035-48ba-942e-9337a0992d09
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1191'
status:
code: 201
message: Created
@@ -730,9 +730,9 @@ interactions:
ParameterSetName:
- -g -n --address-prefixes --subnet-name --subnet-prefixes
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/f3d86601-5c22-438c-be3d-cec7321d3129?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/81448f7d-9e31-479e-a6c3-167a3c9be79c?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -744,7 +744,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:08 GMT
+ - Wed, 14 Apr 2021 08:49:01 GMT
expires:
- '-1'
pragma:
@@ -761,7 +761,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - c85f1bbf-5019-46ce-b033-bc1be7e17fd0
+ - 6cebc526-5cb4-44c4-93cb-1d4b3be87c67
status:
code: 200
message: OK
@@ -779,21 +779,21 @@ interactions:
ParameterSetName:
- -g -n --address-prefixes --subnet-name --subnet-prefixes
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"cli-vnet-nwr000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005\",\r\n
- \ \"etag\": \"W/\\\"2d7867c1-7b25-4f85-b671-77eb328e2a79\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"fc6cf962-9287-47c4-9181-c722b860deb4\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"japanwest\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"932f9775-d9bd-4e74-81af-d66cab7b0010\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"ab20c8ec-06ad-4cfa-a073-81596f3137e7\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"2d7867c1-7b25-4f85-b671-77eb328e2a79\\\"\",\r\n
+ \ \"etag\": \"W/\\\"fc6cf962-9287-47c4-9181-c722b860deb4\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -808,9 +808,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:09 GMT
+ - Wed, 14 Apr 2021 08:49:01 GMT
etag:
- - W/"2d7867c1-7b25-4f85-b671-77eb328e2a79"
+ - W/"fc6cf962-9287-47c4-9181-c722b860deb4"
expires:
- '-1'
pragma:
@@ -827,60 +827,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4fe8c080-ef51-46f6-8468-11f8142a8661
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - functionapp config access-restriction add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --rule-name --action --subnet --priority
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3851'
- content-type:
- - application/json
- date:
- - Wed, 31 Mar 2021 21:58:10 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
+ - 4f852f7a-9c20-4ac5-a725-7914a502bfd8
status:
code: 200
message: OK
@@ -898,7 +845,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -915,7 +862,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:10 GMT
+ - Wed, 14 Apr 2021 08:49:03 GMT
expires:
- '-1'
pragma:
@@ -951,13 +898,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet?api-version=2019-02-01
response:
body:
string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"2d7867c1-7b25-4f85-b671-77eb328e2a79\\\"\",\r\n \"properties\":
+ \ \"etag\": \"W/\\\"fc6cf962-9287-47c4-9181-c722b860deb4\\\"\",\r\n \"properties\":
{\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n
\ \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
headers:
@@ -968,9 +915,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:11 GMT
+ - Wed, 14 Apr 2021 08:49:04 GMT
etag:
- - W/"2d7867c1-7b25-4f85-b671-77eb328e2a79"
+ - W/"fc6cf962-9287-47c4-9181-c722b860deb4"
expires:
- '-1'
pragma:
@@ -987,13 +934,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ff04101b-453f-47f9-9304-c2e4d004f5ba
+ - 373df02e-e8a9-41a9-8c8d-dac5ab4ceb44
status:
code: 200
message: OK
- request:
body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet",
- "name": "endpoint-subnet", "etag": "W/\"2d7867c1-7b25-4f85-b671-77eb328e2a79\"",
+ "name": "endpoint-subnet", "etag": "W/\"fc6cf962-9287-47c4-9181-c722b860deb4\"",
"properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service":
"Microsoft.Web"}], "delegations": [], "provisioningState": "Succeeded"}}'
headers:
@@ -1012,13 +959,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet?api-version=2019-02-01
response:
body:
string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"353ae781-d697-4ba2-842a-0311ec52f529\\\"\",\r\n \"properties\":
+ \ \"etag\": \"W/\\\"b8555044-b6ba-4297-9c0f-07029315cb39\\\"\",\r\n \"properties\":
{\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n
\ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n
@@ -1026,7 +973,7 @@ interactions:
\"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/e74cda9e-0fab-4110-a97e-0f5562a2cf98?api-version=2019-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/f6268b9c-2f80-4ab6-9a2f-71ae81db2d6d?api-version=2019-02-01
cache-control:
- no-cache
content-length:
@@ -1034,7 +981,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:11 GMT
+ - Wed, 14 Apr 2021 08:49:05 GMT
expires:
- '-1'
pragma:
@@ -1051,9 +998,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - cfc6c708-5653-4b22-8709-1fd0cfc6622c
+ - 73e89982-0e7f-4853-83c9-6d3638dd6edc
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1196'
status:
code: 200
message: OK
@@ -1071,9 +1018,9 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/e74cda9e-0fab-4110-a97e-0f5562a2cf98?api-version=2019-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/f6268b9c-2f80-4ab6-9a2f-71ae81db2d6d?api-version=2019-02-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1085,7 +1032,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:14 GMT
+ - Wed, 14 Apr 2021 08:49:08 GMT
expires:
- '-1'
pragma:
@@ -1102,7 +1049,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - fddd324b-5033-4bf4-8a60-884e228be655
+ - 7f6653ca-b883-4979-bc33-cb0ae811f635
status:
code: 200
message: OK
@@ -1120,13 +1067,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet?api-version=2019-02-01
response:
body:
string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000005/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"626d0c90-e8e9-4863-981a-96a62004c1fe\\\"\",\r\n \"properties\":
+ \ \"etag\": \"W/\\\"51d9cc8f-0068-4c5e-8f65-b66f45a49420\\\"\",\r\n \"properties\":
{\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n
\ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n
@@ -1140,9 +1087,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:15 GMT
+ - Wed, 14 Apr 2021 08:49:09 GMT
etag:
- - W/"626d0c90-e8e9-4863-981a-96a62004c1fe"
+ - W/"51d9cc8f-0068-4c5e-8f65-b66f45a49420"
expires:
- '-1'
pragma:
@@ -1159,7 +1106,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d6245d7b-dec6-421e-b081-819818999e81
+ - 80c95348-e85b-4c89-974b-2370d6d94377
status:
code: 200
message: OK
@@ -1201,7 +1148,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -1218,9 +1165,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:19 GMT
+ - Wed, 14 Apr 2021 08:49:13 GMT
etag:
- - '"1D72678E90FA54B"'
+ - '"1D7310AFDD13820"'
expires:
- '-1'
pragma:
@@ -1238,7 +1185,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1195'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml
index a3849a9a06e..896dffa3905 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove.yaml
@@ -13,7 +13,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:02 GMT
+ - Wed, 14 Apr 2021 08:35:03 GMT
expires:
- '-1'
pragma:
@@ -152,12 +152,12 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:43.0915651Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:43.0915651Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:56:43.0134372Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:34:42.8970369Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:34:42.8970369Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:34:42.8190079Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:02 GMT
+ - Wed, 14 Apr 2021 08:35:04 GMT
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:02 GMT
+ - Wed, 14 Apr 2021 08:35:04 GMT
expires:
- '-1'
pragma:
@@ -230,7 +230,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
status:
code: 200
message: OK
@@ -260,25 +260,25 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-025.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:57:15.5433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:35:19.9733333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.80.58.225","possibleInboundIpAddresses":"40.80.58.225","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-025.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.80.58.225","possibleOutboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.81.182.55,40.81.182.90,52.147.75.18,52.147.75.46,52.147.75.61,52.147.75.42,20.39.176.164,20.39.176.165,20.39.176.168,40.81.180.215,20.39.176.15,20.39.177.93,40.80.58.225","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-025","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"functionapp","inboundIpAddress":"40.80.58.224","possibleInboundIpAddresses":"40.80.58.224","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.80.58.224","possibleOutboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.74.105.181,40.74.106.29,40.74.108.35,40.74.108.183,40.74.109.15,40.74.109.184,52.147.88.30,52.147.88.31,52.147.88.32,40.81.180.95,40.81.183.223,40.81.183.255,40.80.58.224","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6250'
+ - '6243'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:54 GMT
+ - Wed, 14 Apr 2021 08:35:59 GMT
etag:
- - '"1D72678D03438D5"'
+ - '"1D731091AE3F795"'
expires:
- '-1'
pragma:
@@ -296,7 +296,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '498'
x-powered-by:
- ASP.NET
status:
@@ -321,15 +321,15 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a100cedd-0000-2400-0000-6064f0680000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"045a4d7d-01ab-4640-a44f-29f4b65b4843","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"491a5dcf-36ea-4a7d-9839-9ff0e20db914","ConnectionString":"InstrumentationKey=491a5dcf-36ea-4a7d-9839-9ff0e20db914;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:57:59.6887494+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"310084f2-0000-2400-0000-6076a97a0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"d5fa7776-a646-4d3f-9558-2b0b115a7130","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"581afe18-2264-4eb7-8218-edfa8ed5c0e9","ConnectionString":"InstrumentationKey=581afe18-2264-4eb7-8218-edfa8ed5c0e9;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-04-14T08:36:09.6937132+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -340,7 +340,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:03 GMT
+ - Wed, 14 Apr 2021 08:36:13 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1197'
x-powered-by:
- ASP.NET
status:
@@ -380,7 +380,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -395,7 +395,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:04 GMT
+ - Wed, 14 Apr 2021 08:36:15 GMT
expires:
- '-1'
pragma:
@@ -424,7 +424,7 @@ interactions:
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "491a5dcf-36ea-4a7d-9839-9ff0e20db914"}}'
+ "581afe18-2264-4eb7-8218-edfa8ed5c0e9"}}'
headers:
Accept:
- application/json
@@ -441,13 +441,13 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"491a5dcf-36ea-4a7d-9839-9ff0e20db914"}}'
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"581afe18-2264-4eb7-8218-edfa8ed5c0e9"}}'
headers:
cache-control:
- no-cache
@@ -456,9 +456,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:09 GMT
+ - Wed, 14 Apr 2021 08:36:19 GMT
etag:
- - '"1D72678EE495535"'
+ - '"1D731093C404FB5"'
expires:
- '-1'
pragma:
@@ -476,7 +476,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1190'
x-powered-by:
- ASP.NET
status:
@@ -496,7 +496,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -504,16 +504,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:11 GMT
+ - Wed, 14 Apr 2021 08:36:21 GMT
expires:
- '-1'
pragma:
@@ -549,7 +549,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -557,16 +557,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:12 GMT
+ - Wed, 14 Apr 2021 08:36:22 GMT
expires:
- '-1'
pragma:
@@ -626,7 +626,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -634,18 +634,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3944'
+ - '3946'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:18 GMT
+ - Wed, 14 Apr 2021 08:36:28 GMT
etag:
- - '"1D72678EE495535"'
+ - '"1D731093C404FB5"'
expires:
- '-1'
pragma:
@@ -663,7 +663,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1196'
x-powered-by:
- ASP.NET
status:
@@ -683,7 +683,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -691,16 +691,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3962'
+ - '3964'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:19 GMT
+ - Wed, 14 Apr 2021 08:36:29 GMT
expires:
- '-1'
pragma:
@@ -759,7 +759,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -767,18 +767,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3839'
+ - '3841'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:25 GMT
+ - Wed, 14 Apr 2021 08:36:34 GMT
etag:
- - '"1D72678F36FB135"'
+ - '"1D7310941E44D2B"'
expires:
- '-1'
pragma:
@@ -796,7 +796,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1193'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml
index dcb56476f73..25797bd7f66 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_remove_scm.yaml
@@ -13,7 +13,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:02 GMT
+ - Wed, 14 Apr 2021 08:50:06 GMT
expires:
- '-1'
pragma:
@@ -152,12 +152,12 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:42.4821864Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:56:42.4821864Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:56:42.4040162Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:49:37.5427924Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:49:37.5427924Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:49:37.4647423Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:02 GMT
+ - Wed, 14 Apr 2021 08:50:07 GMT
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:03 GMT
+ - Wed, 14 Apr 2021 08:50:08 GMT
expires:
- '-1'
pragma:
@@ -230,7 +230,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
status:
code: 200
message: OK
@@ -260,25 +260,25 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:57:16.45","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:50:22.8866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.80.58.224","possibleInboundIpAddresses":"40.80.58.224","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.80.58.224","possibleOutboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.74.105.181,40.74.106.29,40.74.108.35,40.74.108.183,40.74.109.15,40.74.109.184,52.147.88.30,52.147.88.31,52.147.88.32,40.81.180.95,40.81.183.223,40.81.183.255,40.80.58.224","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"functionapp","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6238'
+ - '6233'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:57:56 GMT
+ - Wed, 14 Apr 2021 08:51:06 GMT
etag:
- - '"1D72678D0CE55F5"'
+ - '"1D7310B3535B875"'
expires:
- '-1'
pragma:
@@ -321,15 +321,15 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a1000dde-0000-2400-0000-6064f06c0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"3100664b-99dc-4874-b0f2-9c351391b4e2","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"2c450c60-d18f-4191-829b-7f2a6d620448","ConnectionString":"InstrumentationKey=2c450c60-d18f-4191-829b-7f2a6d620448;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:58:02.3636922+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"320085bd-0000-2400-0000-6076ad030000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"ccdc760d-fb9a-4c07-b947-73f618f467f5","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"664ae304-7871-4c84-91de-f5901f91ab0e","ConnectionString":"InstrumentationKey=664ae304-7871-4c84-91de-f5901f91ab0e;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-04-14T08:51:14.6766891+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -340,7 +340,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:58:07 GMT
+ - Wed, 14 Apr 2021 08:51:17 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1190'
x-powered-by:
- ASP.NET
status:
@@ -380,7 +380,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -395,7 +395,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:08 GMT
+ - Wed, 14 Apr 2021 08:51:20 GMT
expires:
- '-1'
pragma:
@@ -413,7 +413,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -424,7 +424,7 @@ interactions:
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "2c450c60-d18f-4191-829b-7f2a6d620448"}}'
+ "664ae304-7871-4c84-91de-f5901f91ab0e"}}'
headers:
Accept:
- application/json
@@ -441,13 +441,13 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"2c450c60-d18f-4191-829b-7f2a6d620448"}}'
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"664ae304-7871-4c84-91de-f5901f91ab0e"}}'
headers:
cache-control:
- no-cache
@@ -456,9 +456,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:13 GMT
+ - Wed, 14 Apr 2021 08:51:24 GMT
etag:
- - '"1D72678F0B96AD5"'
+ - '"1D7310B57936E00"'
expires:
- '-1'
pragma:
@@ -476,7 +476,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1189'
x-powered-by:
- ASP.NET
status:
@@ -496,7 +496,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -504,16 +504,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:14 GMT
+ - Wed, 14 Apr 2021 08:51:25 GMT
expires:
- '-1'
pragma:
@@ -549,7 +549,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -557,16 +557,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:15 GMT
+ - Wed, 14 Apr 2021 08:51:26 GMT
expires:
- '-1'
pragma:
@@ -626,7 +626,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -634,18 +634,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
- all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3944'
+ - '3946'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:20 GMT
+ - Wed, 14 Apr 2021 08:51:33 GMT
etag:
- - '"1D72678F0B96AD5"'
+ - '"1D7310B57936E00"'
expires:
- '-1'
pragma:
@@ -663,7 +663,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1195'
x-powered-by:
- ASP.NET
status:
@@ -683,7 +683,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -691,16 +691,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
- all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Deny all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3962'
+ - '3964'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:21 GMT
+ - Wed, 14 Apr 2021 08:51:34 GMT
expires:
- '-1'
pragma:
@@ -759,7 +759,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -767,18 +767,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3839'
+ - '3841'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:25 GMT
+ - Wed, 14 Apr 2021 08:51:40 GMT
etag:
- - '"1D72678F52C3B4B"'
+ - '"1D7310B5CEDAB40"'
expires:
- '-1'
pragma:
@@ -796,7 +796,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1192'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml
index 601ef196f90..4fa6351a191 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_complex.yaml
@@ -13,7 +13,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:52 GMT
+ - Wed, 14 Apr 2021 08:47:41 GMT
expires:
- '-1'
pragma:
@@ -152,12 +152,12 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:58:32.7491170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:58:32.7491170Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:58:32.6709643Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:47:19.8844849Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:47:19.8844849Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:47:19.8063288Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:53 GMT
+ - Wed, 14 Apr 2021 08:47:41 GMT
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:54 GMT
+ - Wed, 14 Apr 2021 08:47:42 GMT
expires:
- '-1'
pragma:
@@ -230,7 +230,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
status:
code: 200
message: OK
@@ -260,25 +260,25 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:59:05.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:47:53.1633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.80.58.224","possibleInboundIpAddresses":"40.80.58.224","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.80.58.224","possibleOutboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.74.105.181,40.74.106.29,40.74.108.35,40.74.108.183,40.74.109.15,40.74.109.184,52.147.88.30,52.147.88.31,52.147.88.32,40.81.180.95,40.81.183.223,40.81.183.255,40.80.58.224","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"functionapp","inboundIpAddress":"40.80.58.224","possibleInboundIpAddresses":"40.80.58.224","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.80.58.224","possibleOutboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.74.105.181,40.74.106.29,40.74.108.35,40.74.108.183,40.74.109.15,40.74.109.184,52.147.88.30,52.147.88.31,52.147.88.32,40.81.180.95,40.81.183.223,40.81.183.255,40.80.58.224","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6238'
+ - '6243'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:43 GMT
+ - Wed, 14 Apr 2021 08:48:32 GMT
etag:
- - '"1D7267911B623CB"'
+ - '"1D7310ADBE3EAA0"'
expires:
- '-1'
pragma:
@@ -321,26 +321,26 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a10021e5-0000-2400-0000-6064f0d70000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"ad68d00a-7412-4ac1-ab2b-b5e0027c6cc1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"7a1bec9c-2fe3-4e2c-931a-11b7a5eadec5","ConnectionString":"InstrumentationKey=7a1bec9c-2fe3-4e2c-931a-11b7a5eadec5;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:59:50.6191974+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"3200b59c-0000-2400-0000-6076ac690000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"b1d356ba-78a7-4b7b-8872-1145856b5e1d","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"8da2c708-3170-48f7-b718-38e7f1a58ed3","ConnectionString":"InstrumentationKey=8da2c708-3170-48f7-b718-38e7f1a58ed3;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-04-14T08:48:41.541213+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1110'
+ - '1109'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:59:54 GMT
+ - Wed, 14 Apr 2021 08:48:44 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1192'
x-powered-by:
- ASP.NET
status:
@@ -380,7 +380,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -395,7 +395,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:55 GMT
+ - Wed, 14 Apr 2021 08:48:47 GMT
expires:
- '-1'
pragma:
@@ -424,7 +424,7 @@ interactions:
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "7a1bec9c-2fe3-4e2c-931a-11b7a5eadec5"}}'
+ "8da2c708-3170-48f7-b718-38e7f1a58ed3"}}'
headers:
Accept:
- application/json
@@ -441,13 +441,13 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"7a1bec9c-2fe3-4e2c-931a-11b7a5eadec5"}}'
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"8da2c708-3170-48f7-b718-38e7f1a58ed3"}}'
headers:
cache-control:
- no-cache
@@ -456,9 +456,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:59 GMT
+ - Wed, 14 Apr 2021 08:48:52 GMT
etag:
- - '"1D726792FE6B76B"'
+ - '"1D7310AFD40C4F5"'
expires:
- '-1'
pragma:
@@ -476,7 +476,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1193'
x-powered-by:
- ASP.NET
status:
@@ -496,7 +496,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -504,16 +504,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 22:00:00 GMT
+ - Wed, 14 Apr 2021 08:48:54 GMT
expires:
- '-1'
pragma:
@@ -572,7 +572,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -580,18 +580,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3838'
+ - '3840'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 22:00:05 GMT
+ - Wed, 14 Apr 2021 08:48:58 GMT
etag:
- - '"1D726792FE6B76B"'
+ - '"1D7310AFD40C4F5"'
expires:
- '-1'
pragma:
@@ -609,7 +609,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1196'
x-powered-by:
- ASP.NET
status:
@@ -629,7 +629,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -637,16 +637,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3856'
+ - '3858'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 22:00:07 GMT
+ - Wed, 14 Apr 2021 08:49:00 GMT
expires:
- '-1'
pragma:
@@ -705,7 +705,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -713,18 +713,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3839'
+ - '3841'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 22:00:11 GMT
+ - Wed, 14 Apr 2021 08:49:09 GMT
etag:
- - '"1D7267933DFF815"'
+ - '"1D7310B011D07C0"'
expires:
- '-1'
pragma:
@@ -742,7 +742,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1190'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml
index f211aa12024..79560600854 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_set_simple.yaml
@@ -13,7 +13,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:57 GMT
+ - Wed, 14 Apr 2021 08:49:58 GMT
expires:
- '-1'
pragma:
@@ -152,12 +152,12 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:58:37.7491654Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:58:37.7491654Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:58:37.6710492Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:49:28.4334139Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:49:28.4334139Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:49:28.3553125Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:58 GMT
+ - Wed, 14 Apr 2021 08:50:00 GMT
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:58 GMT
+ - Wed, 14 Apr 2021 08:50:00 GMT
expires:
- '-1'
pragma:
@@ -230,7 +230,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11998'
+ - '11997'
status:
code: 200
message: OK
@@ -260,14 +260,14 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:59:09.9333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:50:14.7566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.80.58.224","possibleInboundIpAddresses":"40.80.58.224","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.80.58.224","possibleOutboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.74.105.181,40.74.106.29,40.74.108.35,40.74.108.183,40.74.109.15,40.74.109.184,52.147.88.30,52.147.88.31,52.147.88.32,40.81.180.95,40.81.183.223,40.81.183.255,40.80.58.224","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"functionapp","inboundIpAddress":"40.80.58.224","possibleInboundIpAddresses":"40.80.58.224","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.80.58.224","possibleOutboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.74.105.181,40.74.106.29,40.74.108.35,40.74.108.183,40.74.109.15,40.74.109.184,52.147.88.30,52.147.88.31,52.147.88.32,40.81.180.95,40.81.183.223,40.81.183.255,40.80.58.224","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
@@ -276,9 +276,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:47 GMT
+ - Wed, 14 Apr 2021 08:50:54 GMT
etag:
- - '"1D72679146AE38B"'
+ - '"1D7310B304DEC15"'
expires:
- '-1'
pragma:
@@ -321,15 +321,15 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a10048e5-0000-2400-0000-6064f0da0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"0d2b5343-ec56-46a5-8677-f0e16420b3bd","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"91a267e6-a1ab-4704-956e-36f830b25835","ConnectionString":"InstrumentationKey=91a267e6-a1ab-4704-956e-36f830b25835;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:59:53.8848317+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"32005bba-0000-2400-0000-6076acf40000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"18e73684-72e2-4d63-8e56-57ef814e62af","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"8c79394e-4da8-4f35-8efd-17a1ee59e505","ConnectionString":"InstrumentationKey=8c79394e-4da8-4f35-8efd-17a1ee59e505;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-04-14T08:51:00.3068551+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -340,7 +340,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:59:56 GMT
+ - Wed, 14 Apr 2021 08:51:04 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1195'
x-powered-by:
- ASP.NET
status:
@@ -380,7 +380,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -395,7 +395,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:57 GMT
+ - Wed, 14 Apr 2021 08:51:04 GMT
expires:
- '-1'
pragma:
@@ -413,7 +413,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -424,7 +424,7 @@ interactions:
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "91a267e6-a1ab-4704-956e-36f830b25835"}}'
+ "8c79394e-4da8-4f35-8efd-17a1ee59e505"}}'
headers:
Accept:
- application/json
@@ -441,13 +441,13 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"91a267e6-a1ab-4704-956e-36f830b25835"}}'
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"8c79394e-4da8-4f35-8efd-17a1ee59e505"}}'
headers:
cache-control:
- no-cache
@@ -456,9 +456,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 22:00:01 GMT
+ - Wed, 14 Apr 2021 08:51:10 GMT
etag:
- - '"1D726793159814B"'
+ - '"1D7310B4F37A38B"'
expires:
- '-1'
pragma:
@@ -476,7 +476,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1194'
x-powered-by:
- ASP.NET
status:
@@ -496,7 +496,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -504,16 +504,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 22:00:03 GMT
+ - Wed, 14 Apr 2021 08:51:12 GMT
expires:
- '-1'
pragma:
@@ -572,7 +572,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -580,18 +580,18 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":true,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3838'
+ - '3840'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 22:00:08 GMT
+ - Wed, 14 Apr 2021 08:51:19 GMT
etag:
- - '"1D726793159814B"'
+ - '"1D7310B4F37A38B"'
expires:
- '-1'
pragma:
@@ -609,7 +609,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1189'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml
index 4cbdbb5da91..d7ba2105162 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_show.yaml
@@ -13,7 +13,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:47 GMT
+ - Wed, 14 Apr 2021 08:47:43 GMT
expires:
- '-1'
pragma:
@@ -152,12 +152,12 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:58:28.1240831Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:58:28.1240831Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:58:28.0146991Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:47:22.7751170Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-14T08:47:22.7751170Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-14T08:47:22.6813826Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:48 GMT
+ - Wed, 14 Apr 2021 08:47:43 GMT
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:48 GMT
+ - Wed, 14 Apr 2021 08:47:44 GMT
expires:
- '-1'
pragma:
@@ -230,7 +230,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
status:
code: 200
message: OK
@@ -260,25 +260,25 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-023.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:58:58.21","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-025.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:47:59.1","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.80.58.224","possibleInboundIpAddresses":"40.80.58.224","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-023.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.80.58.224","possibleOutboundIpAddresses":"40.74.110.27,40.74.111.175,40.74.111.213,52.147.88.27,52.147.88.28,52.147.88.29,40.74.105.181,40.74.106.29,40.74.108.35,40.74.108.183,40.74.109.15,40.74.109.184,52.147.88.30,52.147.88.31,52.147.88.32,40.81.180.95,40.81.183.223,40.81.183.255,40.80.58.224","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-023","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"functionapp","inboundIpAddress":"40.80.58.225","possibleInboundIpAddresses":"40.80.58.225","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-025.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.80.58.225","possibleOutboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.81.182.55,40.81.182.90,52.147.75.18,52.147.75.46,52.147.75.61,52.147.75.42,20.39.176.164,20.39.176.165,20.39.176.168,40.81.180.215,20.39.176.15,20.39.177.93,40.80.58.225","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-025","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6238'
+ - '6244'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:35 GMT
+ - Wed, 14 Apr 2021 08:48:39 GMT
etag:
- - '"1D726790D7F57EB"'
+ - '"1D7310ADF6BBED5"'
expires:
- '-1'
pragma:
@@ -321,15 +321,15 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a10046e4-0000-2400-0000-6064f0ce0000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"544b0bcb-7a92-43cf-afba-13cdeee3d3e3","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"8821666c-5614-436c-888d-ce1565638827","ConnectionString":"InstrumentationKey=8821666c-5614-436c-888d-ce1565638827;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:59:42.5503305+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"3200a29f-0000-2400-0000-6076ac770000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"cda18577-b0f4-42e2-93ec-f1d6537708c1","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"62ccd8f1-539c-4479-96ab-56aceee82156","ConnectionString":"InstrumentationKey=62ccd8f1-539c-4479-96ab-56aceee82156;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-04-14T08:48:53.5170769+00:00","TenantId":"a6f7834d-3304-4890-82af-ec04cb382539","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -340,7 +340,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:59:46 GMT
+ - Wed, 14 Apr 2021 08:48:59 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -380,7 +380,7 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -395,7 +395,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:46 GMT
+ - Wed, 14 Apr 2021 08:49:00 GMT
expires:
- '-1'
pragma:
@@ -413,7 +413,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -424,7 +424,7 @@ interactions:
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "8821666c-5614-436c-888d-ce1565638827"}}'
+ "62ccd8f1-539c-4479-96ab-56aceee82156"}}'
headers:
Accept:
- application/json
@@ -441,13 +441,13 @@ interactions:
ParameterSetName:
- -g -n --consumption-plan-location -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"8821666c-5614-436c-888d-ce1565638827"}}'
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"62ccd8f1-539c-4479-96ab-56aceee82156"}}'
headers:
cache-control:
- no-cache
@@ -456,9 +456,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:51 GMT
+ - Wed, 14 Apr 2021 08:49:04 GMT
etag:
- - '"1D726792B597420"'
+ - '"1D7310B045C202B"'
expires:
- '-1'
pragma:
@@ -476,7 +476,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1195'
x-powered-by:
- ASP.NET
status:
@@ -496,7 +496,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web?api-version=2020-09-01
response:
@@ -504,16 +504,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/web","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites/config","location":"Japan
West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-funcapp-nwr000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3853'
+ - '3855'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:52 GMT
+ - Wed, 14 Apr 2021 08:49:05 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml
index 842f2334297..d6a23903e2c 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_e2e.yaml
@@ -13,7 +13,7 @@ interactions:
ParameterSetName:
- -g -n -c -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:43:08 GMT
+ - Thu, 15 Apr 2021 06:35:06 GMT
expires:
- '-1'
pragma:
@@ -152,12 +152,12 @@ interactions:
ParameterSetName:
- -g -n -c -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-30T18:42:46.8348900Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-30T18:42:46.8348900Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-30T18:42:46.7567912Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:34:44.5374875Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T06:34:44.5374875Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T06:34:44.4281111Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:43:08 GMT
+ - Thu, 15 Apr 2021 06:35:06 GMT
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
ParameterSetName:
- -g -n -c -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:43:09 GMT
+ - Thu, 15 Apr 2021 06:35:06 GMT
expires:
- '-1'
pragma:
@@ -260,25 +260,25 @@ interactions:
ParameterSetName:
- -g -n -c -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"francecentral","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-30T18:43:25.8266667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"francecentral","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T06:35:20.3","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.79.130.128","possibleInboundIpAddresses":"40.79.130.128","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78","possibleOutboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78,52.143.152.77,40.89.188.6,52.143.168.48","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6313'
+ - '6316'
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:43:59 GMT
+ - Thu, 15 Apr 2021 06:35:56 GMT
etag:
- - '"1D7259492713840"'
+ - '"1D731C18239E380"'
expires:
- '-1'
pragma:
@@ -322,14 +322,14 @@ interactions:
- -g -n -c -s
User-Agent:
- python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"francecentral","tags":{},"kind":"web","etag":"\"18017998-0000-0e00-0000-606371790000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"1f57dd0f-afb3-4032-8466-a5c013298d65","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"e34a3f56-3b7e-42ab-8eee-eba3f54e3a22","ConnectionString":"InstrumentationKey=e34a3f56-3b7e-42ab-8eee-eba3f54e3a22;IngestionEndpoint=https://francecentral-0.in.applicationinsights.azure.com/","Name":"functionappconsumption000003","CreationDate":"2021-03-30T18:44:07.5797297+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/microsoft.insights/components/functionappconsumption000003","name":"functionappconsumption000003","type":"microsoft.insights/components","location":"francecentral","tags":{},"kind":"web","etag":"\"92004ea0-0000-0e00-0000-6077ded40000\"","properties":{"Ver":"v2","ApplicationId":"functionappconsumption000003","AppId":"19c1bc42-3a93-43fc-b505-73697842d36c","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b1ad79a1-1b92-49af-8f46-09e434161687","ConnectionString":"InstrumentationKey=b1ad79a1-1b92-49af-8f46-09e434161687;IngestionEndpoint=https://francecentral-0.in.applicationinsights.azure.com/","Name":"functionappconsumption000003","CreationDate":"2021-04-15T06:36:03.2582626+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
@@ -340,7 +340,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 30 Mar 2021 18:44:12 GMT
+ - Thu, 15 Apr 2021 06:36:07 GMT
expires:
- '-1'
pragma:
@@ -380,7 +380,7 @@ interactions:
ParameterSetName:
- -g -n -c -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings/list?api-version=2020-09-01
response:
@@ -395,7 +395,7 @@ interactions:
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:44:13 GMT
+ - Thu, 15 Apr 2021 06:36:09 GMT
expires:
- '-1'
pragma:
@@ -424,7 +424,7 @@ interactions:
"~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
"WEBSITE_CONTENTSHARE": "functionappconsumption000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "e34a3f56-3b7e-42ab-8eee-eba3f54e3a22"}}'
+ "b1ad79a1-1b92-49af-8f46-09e434161687"}}'
headers:
Accept:
- application/json
@@ -441,13 +441,13 @@ interactions:
ParameterSetName:
- -g -n -c -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"France
- Central","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"e34a3f56-3b7e-42ab-8eee-eba3f54e3a22"}}'
+ Central","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"functionappconsumption000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b1ad79a1-1b92-49af-8f46-09e434161687"}}'
headers:
cache-control:
- no-cache
@@ -456,9 +456,9 @@ interactions:
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:44:19 GMT
+ - Thu, 15 Apr 2021 06:36:13 GMT
etag:
- - '"1D72594AF636575"'
+ - '"1D731C1A02753A0"'
expires:
- '-1'
pragma:
@@ -476,7 +476,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -496,22 +496,22 @@ interactions:
ParameterSetName:
- -g
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites?api-version=2020-09-01
response:
body:
string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
- Central","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-30T18:44:15.8633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}],"nextLink":null,"id":null}'
+ Central","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T06:36:11.61","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.79.130.128","possibleInboundIpAddresses":"40.79.130.128","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78","possibleOutboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78,52.143.152.77,40.89.188.6,52.143.168.48","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}],"nextLink":null,"id":null}'
headers:
cache-control:
- no-cache
content-length:
- - '6154'
+ - '6158'
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:44:21 GMT
+ - Thu, 15 Apr 2021 06:36:15 GMT
expires:
- '-1'
pragma:
@@ -547,24 +547,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
- Central","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-30T18:44:15.8633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ Central","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T06:36:11.61","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.79.130.128","possibleInboundIpAddresses":"40.79.130.128","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78","possibleOutboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78,52.143.152.77,40.89.188.6,52.143.168.48","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6114'
+ - '6118'
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:44:22 GMT
+ - Thu, 15 Apr 2021 06:36:16 GMT
etag:
- - '"1D72594AF636575"'
+ - '"1D731C1A02753A0"'
expires:
- '-1'
pragma:
@@ -600,7 +600,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/web?api-version=2020-09-01
response:
@@ -608,16 +608,16 @@ interactions:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/config/web","name":"functionappconsumption000003","type":"Microsoft.Web/sites/config","location":"France
Central","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionappconsumption000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
cache-control:
- no-cache
content-length:
- - '3905'
+ - '3907'
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:44:23 GMT
+ - Thu, 15 Apr 2021 06:36:17 GMT
expires:
- '-1'
pragma:
@@ -657,7 +657,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003/publishxml?api-version=2020-09-01
response:
@@ -665,25 +665,25 @@ interactions:
string:
@@ -695,7 +695,7 @@ interactions:
content-type:
- application/xml
date:
- - Tue, 30 Mar 2021 18:44:25 GMT
+ - Thu, 15 Apr 2021 06:36:19 GMT
expires:
- '-1'
pragma:
@@ -729,24 +729,24 @@ interactions:
ParameterSetName:
- -g -n --set
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
- Central","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-30T18:44:15.8633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ Central","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T06:36:11.61","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.79.130.128","possibleInboundIpAddresses":"40.79.130.128","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78","possibleOutboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78,52.143.152.77,40.89.188.6,52.143.168.48","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6114'
+ - '6118'
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:44:26 GMT
+ - Thu, 15 Apr 2021 06:36:20 GMT
etag:
- - '"1D72594AF636575"'
+ - '"1D731C1A02753A0"'
expires:
- '-1'
pragma:
@@ -774,8 +774,8 @@ interactions:
"sslState": "Disabled", "hostType": "Standard"}, {"name": "functionappconsumption000003.scm.azurewebsites.net",
"sslState": "Disabled", "hostType": "Repository"}], "serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {}, "scmSiteAlsoStopped":
- false, "clientAffinityEnabled": true, "clientCertEnabled": false, "clientCertMode":
- "Required", "hostNamesDisabled": false, "customDomainVerificationId": "30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED",
+ false, "clientAffinityEnabled": false, "clientCertEnabled": false, "clientCertMode":
+ "Optional", "hostNamesDisabled": false, "customDomainVerificationId": "30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED",
"containerSize": 1536, "dailyMemoryTimeQuota": 0, "httpsOnly": false, "redundancyMode":
"None"}}'
headers:
@@ -788,32 +788,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '983'
+ - '984'
Content-Type:
- application/json
ParameterSetName:
- -g -n --set
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003","name":"functionappconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
- Central","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-003.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-30T18:44:31.7333333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ Central","properties":{"name":"functionappconsumption000003","state":"Running","hostNames":["functionappconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-c-e2e000001-FranceCentralwebspace","selfLink":"https://waws-prod-par-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-c-e2e000001-FranceCentralwebspace/sites/functionappconsumption000003","repositorySiteName":"functionappconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappconsumption000003.azurewebsites.net","functionappconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionappconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/serverfarms/FranceCentralPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T06:36:25.4","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.89.131.148","possibleInboundIpAddresses":"40.89.131.148","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-003.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32","possibleOutboundIpAddresses":"40.89.131.148,40.89.142.231,40.89.143.1,40.89.136.129,40.89.137.32,40.89.141.38,40.89.137.122,40.89.136.182","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-003","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Optional","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.79.130.128","possibleInboundIpAddresses":"40.79.130.128","ftpUsername":"functionappconsumption000003\\$functionappconsumption000003","ftpsHostName":"ftps://waws-prod-par-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78","possibleOutboundIpAddresses":"40.79.130.128,52.143.174.204,52.143.160.224,52.143.159.77,52.143.174.78,52.143.152.77,40.89.188.6,52.143.168.48","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-c-e2e000001","defaultHostName":"functionappconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6313'
+ - '6317'
content-type:
- application/json
date:
- - Tue, 30 Mar 2021 18:44:37 GMT
+ - Thu, 15 Apr 2021 06:36:30 GMT
etag:
- - '"1D72594AF636575"'
+ - '"1D731C1A02753A0"'
expires:
- '-1'
pragma:
@@ -853,7 +853,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-c-e2e000001/providers/Microsoft.Web/sites/functionappconsumption000003?api-version=2020-09-01
response:
@@ -865,9 +865,9 @@ interactions:
content-length:
- '0'
date:
- - Tue, 30 Mar 2021 18:44:55 GMT
+ - Thu, 15 Apr 2021 06:36:47 GMT
etag:
- - '"1D72594B8D8F755"'
+ - '"1D731C1A85F8380"'
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux_powershell.yaml
similarity index 58%
rename from src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml
rename to src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux_powershell.yaml
index a51e3079a62..e3728fac1b6 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_access_restriction_slot.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_consumption_linux_powershell.yaml
@@ -11,9 +11,9 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --consumption-plan-location -s
+ - -g -n -c -s --os-type --runtime --functions-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=Dynamic&api-version=2020-09-01
response:
@@ -116,7 +116,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:50 GMT
+ - Thu, 15 Apr 2021 23:50:40 GMT
expires:
- '-1'
pragma:
@@ -150,14 +150,14 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --consumption-plan-location -s
+ - -g -n -c -s --os-type --runtime --functions-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
response:
body:
- string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:58:30.3740892Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T21:58:30.3740892Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-03-31T21:58:30.2803418Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T23:50:20.7022411Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T23:50:20.7022411Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T23:50:20.6108449Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
headers:
cache-control:
- no-cache
@@ -166,7 +166,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:50 GMT
+ - Thu, 15 Apr 2021 23:50:41 GMT
expires:
- '-1'
pragma:
@@ -198,11 +198,11 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -g -n --consumption-plan-location -s
+ - -g -n -c -s --os-type --runtime --functions-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
response:
body:
string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
@@ -214,7 +214,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:58:50 GMT
+ - Thu, 15 Apr 2021 23:50:41 GMT
expires:
- '-1'
pragma:
@@ -235,15 +235,13 @@ interactions:
code: 200
message: OK
- request:
- body: '{"kind": "functionapp", "location": "japanwest", "properties": {"reserved":
- false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
- "v4.6", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME", "value": "dotnet"},
- {"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~2"}, {"name": "AzureWebJobsStorage",
- "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="},
- {"name": "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="},
- {"name": "WEBSITE_CONTENTSHARE", "value": "cli-funcapp-nwr000003"}], "use32BitWorkerProcess":
- true, "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped":
- false}}'
+ body: '{"kind": "functionapp,linux", "location": "ukwest", "properties": {"reserved":
+ true, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
+ "v4.6", "linuxFxVersion": "PowerShell|7", "appSettings": [{"name": "FUNCTIONS_WORKER_RUNTIME",
+ "value": "powershell"}, {"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~3"},
+ {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}],
+ "use32BitWorkerProcess": false, "localMySqlEnabled": false, "http20Enabled":
+ true}, "scmSiteAlsoStopped": false}}'
headers:
Accept:
- application/json
@@ -254,31 +252,31 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '988'
+ - '692'
Content-Type:
- application/json
ParameterSetName:
- - -g -n --consumption-plan-location -s
+ - -g -n -c -s --os-type --runtime --functions-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"japanwest","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-025.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:59:00.9133333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"ukwest","properties":{"name":"functionapplinuxconsumption000003","state":"Running","hostNames":["functionapplinuxconsumption000003.azurewebsites.net"],"webSpace":"azurecli-functionapp-linux000001-UKWestwebspace-Linux","selfLink":"https://waws-prod-cw1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/azurecli-functionapp-linux000001-UKWestwebspace-Linux/sites/functionapplinuxconsumption000003","repositorySiteName":"functionapplinuxconsumption000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapplinuxconsumption000003.azurewebsites.net","functionapplinuxconsumption000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PowerShell|7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapplinuxconsumption000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapplinuxconsumption000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/serverfarms/UKWestLinuxDynamicPlan","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T23:50:52.87","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.80.58.225","possibleInboundIpAddresses":"40.80.58.225","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-025.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.80.58.225","possibleOutboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.81.182.55,40.81.182.90,52.147.75.18,52.147.75.46,52.147.75.61,52.147.75.42,20.39.176.164,20.39.176.165,20.39.176.168,40.81.180.215,20.39.176.15,20.39.177.93,40.80.58.225","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-025","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionapplinuxconsumption000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F4A214B74F6F2B4BF582515705CE8B81B02E2225E64EA3A762AB27B8204C2182","kind":"functionapp,linux","inboundIpAddress":"51.141.45.207","possibleInboundIpAddresses":"51.141.45.207","ftpUsername":"functionapplinuxconsumption000003\\$functionapplinuxconsumption000003","ftpsHostName":"ftps://waws-prod-cw1-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"51.141.45.207,51.141.39.78,51.141.44.172,51.141.41.170,51.141.42.21","possibleOutboundIpAddresses":"51.141.45.207,51.141.39.78,51.141.44.172,51.141.41.170,51.141.42.21,51.141.83.21,51.141.81.168","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-cw1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"azurecli-functionapp-linux000001","defaultHostName":"functionapplinuxconsumption000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6250'
+ - '6312'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:37 GMT
+ - Thu, 15 Apr 2021 23:51:10 GMT
etag:
- - '"1D726790F14B7F5"'
+ - '"1D732522C973615"'
expires:
- '-1'
pragma:
@@ -303,7 +301,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "japanwest", "kind": "web", "properties": {"Application_Type":
+ body: '{"location": "ukwest", "kind": "web", "properties": {"Application_Type":
"web"}}'
headers:
Accept:
@@ -315,32 +313,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '83'
+ - '80'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- - -g -n --consumption-plan-location -s
+ - -g -n -c -s --os-type --runtime --functions-version
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
+ - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003?api-version=2015-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003?api-version=2015-05-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"microsoft.insights/components","location":"japanwest","tags":{},"kind":"web","etag":"\"a10065e4-0000-2400-0000-6064f0d00000\"","properties":{"Ver":"v2","ApplicationId":"cli-funcapp-nwr000003","AppId":"7eb50d38-4066-4ab1-b262-e53e39165118","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"b3fade50-5f72-4c7c-8385-fcdf4f6b27ea","ConnectionString":"InstrumentationKey=b3fade50-5f72-4c7c-8385-fcdf4f6b27ea;IngestionEndpoint=https://japanwest-0.in.applicationinsights.azure.com/","Name":"cli-funcapp-nwr000003","CreationDate":"2021-03-31T21:59:44.0493062+00:00","TenantId":"e483435e-282d-4ac1-92b5-d6123f2aa360","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/microsoft.insights/components/functionapplinuxconsumption000003","name":"functionapplinuxconsumption000003","type":"microsoft.insights/components","location":"ukwest","tags":{},"kind":"web","etag":"\"ba0066fb-0000-1000-0000-6078d1750000\"","properties":{"Ver":"v2","ApplicationId":"functionapplinuxconsumption000003","AppId":"21fb8860-5fdf-434e-9532-a63a3b562dc9","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"53d398f0-905c-46b1-a054-37de21134b23","ConnectionString":"InstrumentationKey=53d398f0-905c-46b1-a054-37de21134b23;IngestionEndpoint=https://ukwest-0.in.applicationinsights.azure.com/","Name":"functionapplinuxconsumption000003","CreationDate":"2021-04-15T23:51:16.9904694+00:00","TenantId":"fdaf2e05-dba9-4a35-8130-41d1a855a739","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
headers:
access-control-expose-headers:
- Request-Context
cache-control:
- no-cache
content-length:
- - '1110'
+ - '1168'
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 21:59:47 GMT
+ - Thu, 15 Apr 2021 23:51:24 GMT
expires:
- '-1'
pragma:
@@ -378,24 +376,24 @@ interactions:
Content-Length:
- '0'
ParameterSetName:
- - -g -n --consumption-plan-location -s
+ - -g -n -c -s --os-type --runtime --functions-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
method: POST
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings/list?api-version=2020-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"powershell","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
headers:
cache-control:
- no-cache
content-length:
- - '911'
+ - '633'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:47 GMT
+ - Thu, 15 Apr 2021 23:51:25 GMT
expires:
- '-1'
pragma:
@@ -420,11 +418,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "dotnet", "FUNCTIONS_EXTENSION_VERSION":
- "~2", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
- "WEBSITE_CONTENTAZUREFILECONNECTIONSTRING": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
- "WEBSITE_CONTENTSHARE": "cli-funcapp-nwr000003", "APPINSIGHTS_INSTRUMENTATIONKEY":
- "b3fade50-5f72-4c7c-8385-fcdf4f6b27ea"}}'
+ body: '{"properties": {"FUNCTIONS_WORKER_RUNTIME": "powershell", "FUNCTIONS_EXTENSION_VERSION":
+ "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
+ "APPINSIGHTS_INSTRUMENTATIONKEY": "53d398f0-905c-46b1-a054-37de21134b23"}}'
headers:
Accept:
- application/json
@@ -435,30 +431,30 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '690'
+ - '395'
Content-Type:
- application/json
ParameterSetName:
- - -g -n --consumption-plan-location -s
+ - -g -n -c -s --os-type --runtime --functions-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings?api-version=2020-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"Japan
- West","properties":{"FUNCTIONS_WORKER_RUNTIME":"dotnet","FUNCTIONS_EXTENSION_VERSION":"~2","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTAZUREFILECONNECTIONSTRING":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","WEBSITE_CONTENTSHARE":"cli-funcapp-nwr000003","APPINSIGHTS_INSTRUMENTATIONKEY":"b3fade50-5f72-4c7c-8385-fcdf4f6b27ea"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"powershell","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"53d398f0-905c-46b1-a054-37de21134b23"}}'
headers:
cache-control:
- no-cache
content-length:
- - '983'
+ - '705'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:51 GMT
+ - Thu, 15 Apr 2021 23:51:26 GMT
etag:
- - '"1D726792B9803C0"'
+ - '"1D732523FEB20C0"'
expires:
- '-1'
pragma:
@@ -490,30 +486,136 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - functionapp deployment slot create
+ - functionapp config appsettings list
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings/list?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"FUNCTIONS_WORKER_RUNTIME":"powershell","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"53d398f0-905c-46b1-a054-37de21134b23"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '705'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:51:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp config appsettings list
Connection:
- keep-alive
ParameterSetName:
- - -g -n --slot
+ - -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003?api-version=2020-09-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/slotConfigNames?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-funcapp-nwr000003","name":"cli-funcapp-nwr000003","type":"Microsoft.Web/sites","kind":"functionapp","location":"Japan
- West","properties":{"name":"cli-funcapp-nwr000003","state":"Running","hostNames":["cli-funcapp-nwr000003.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-025.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-funcapp-nwr000003","repositorySiteName":"cli-funcapp-nwr000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-funcapp-nwr000003.azurewebsites.net","cli-funcapp-nwr000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-funcapp-nwr000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-funcapp-nwr000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/JapanWestPlan","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T21:59:49.5","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-funcapp-nwr000003","slotName":null,"trafficManagerHostNames":null,"sku":"Dynamic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.80.58.225","possibleInboundIpAddresses":"40.80.58.225","ftpUsername":"cli-funcapp-nwr000003\\$cli-funcapp-nwr000003","ftpsHostName":"ftps://waws-prod-os1-025.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.80.58.225","possibleOutboundIpAddresses":"40.81.183.125,20.39.176.128,20.39.176.157,20.39.176.158,20.39.176.148,20.39.176.149,40.81.182.55,40.81.182.90,52.147.75.18,52.147.75.46,52.147.75.61,52.147.75.42,20.39.176.164,20.39.176.165,20.39.176.168,40.81.180.215,20.39.176.15,20.39.177.93,40.80.58.225","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-025","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-funcapp-nwr000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ string: '{"id":null,"name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites","location":"UK
+ West","properties":{"connectionStringNames":null,"appSettingNames":null,"azureStorageConfigNames":null}}'
headers:
cache-control:
- no-cache
content-length:
- - '6045'
+ - '209'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 21:59:53 GMT
- etag:
- - '"1D726792B9803C0"'
+ - Thu, 15 Apr 2021 23:51:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp config show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azurecli-functionapp-linux000001/providers/Microsoft.Web/sites/functionapplinuxconsumption000003/config/web","name":"functionapplinuxconsumption000003","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"PowerShell|7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapplinuxconsumption000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":200,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3910'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:51:30 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_app_service_powershell.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_app_service_powershell.yaml
new file mode 100644
index 00000000000..00afeb695ba
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_app_service_powershell.yaml
@@ -0,0 +1,607 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp plan create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --sku --is-linux
+ User-Agent:
+ - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"ukwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T23:52:50Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 23:53:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "ukwest", "sku": {"name": "S1", "tier": "STANDARD"}, "properties":
+ {"perSiteScaling": false, "reserved": true, "isXenon": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp plan create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '142'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --sku --is-linux
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"ukwest","properties":{"serverFarmId":3817,"name":"funcapplinplan000003","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-UKWestwebspace-Linux","subscription":"fdaf2e05-dba9-4a35-8130-41d1a855a739","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"UK
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-cw1-017_3817","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1659'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:53:29 GMT
+ etag:
+ - '"1D73252887CB420"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --plan -s --runtime --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"UK
+ West","properties":{"serverFarmId":3817,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-UKWestwebspace-Linux","subscription":"fdaf2e05-dba9-4a35-8130-41d1a855a739","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"UK
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-cw1-017_3817","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1585'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:53:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --plan -s --runtime --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
+ response:
+ body:
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T23:52:57.8031760Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T23:52:57.8031760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T23:52:57.7094299Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1240'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:53:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n --plan -s --runtime --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
+ response:
+ body:
+ string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '288'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:53:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"kind": "functionapp,linux", "location": "UK West", "properties": {"serverFarmId":
+ "funcapplinplan000003", "reserved": true, "isXenon": false, "hyperV": false,
+ "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "PowerShell|7",
+ "appSettings": [{"name": "MACHINEKEY_DecryptionKey", "value": "E647E17172F4D74E4699637992F5C3F0C42E747D86C4652B8D9FDB674BE540CC"},
+ {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "FUNCTIONS_WORKER_RUNTIME",
+ "value": "powershell"}, {"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~3"},
+ {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}],
+ "use32BitWorkerProcess": false, "alwaysOn": true, "localMySqlEnabled": false,
+ "http20Enabled": true}, "scmSiteAlsoStopped": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '936'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan -s --runtime --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"UK
+ West","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-UKWestwebspace-Linux","selfLink":"https://waws-prod-cw1-017.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-UKWestwebspace-Linux/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PowerShell|7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T23:53:38.9666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionapp-linux000004","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F4A214B74F6F2B4BF582515705CE8B81B02E2225E64EA3A762AB27B8204C2182","kind":"functionapp,linux","inboundIpAddress":"51.140.210.99","possibleInboundIpAddresses":"51.140.210.99","ftpUsername":"functionapp-linux000004\\$functionapp-linux000004","ftpsHostName":"ftps://waws-prod-cw1-017.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"51.140.210.99,51.141.121.252,51.141.30.11,51.140.216.188,51.140.218.72","possibleOutboundIpAddresses":"51.140.210.99,51.141.121.252,51.141.30.11,51.140.216.188,51.140.218.72,51.140.243.28,51.141.118.176,51.140.247.165,51.140.219.138,51.140.201.163","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-cw1-017","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6150'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:53:56 GMT
+ etag:
+ - '"1D732528EDEEB80"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "UK West", "kind": "web", "properties": {"Application_Type":
+ "web"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '81'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --plan -s --runtime --functions-version
+ User-Agent:
+ - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004?api-version=2015-05-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"ukwest","tags":{},"kind":"web","etag":"\"ba0095fd-0000-1000-0000-6078d21d0000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"7ca93aba-baa7-4024-9597-1faaf6388bb7","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"2a0d08dc-23cd-4595-bb23-f49420e39db2","ConnectionString":"InstrumentationKey=2a0d08dc-23cd-4595-bb23-f49420e39db2;IngestionEndpoint=https://ukwest-0.in.applicationinsights.azure.com/","Name":"functionapp-linux000004","CreationDate":"2021-04-15T23:54:03.1114748+00:00","TenantId":"fdaf2e05-dba9-4a35-8130-41d1a855a739","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '1104'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 23:54:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:920e14b1-13f3-461a-a4bb-b4fe6f1a4525
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n --plan -s --runtime --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"MACHINEKEY_DecryptionKey":"E647E17172F4D74E4699637992F5C3F0C42E747D86C4652B8D9FDB674BE540CC","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"powershell","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '756'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:54:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"MACHINEKEY_DecryptionKey": "E647E17172F4D74E4699637992F5C3F0C42E747D86C4652B8D9FDB674BE540CC",
+ "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "FUNCTIONS_WORKER_RUNTIME": "powershell",
+ "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
+ "APPINSIGHTS_INSTRUMENTATIONKEY": "2a0d08dc-23cd-4595-bb23-f49420e39db2"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '538'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan -s --runtime --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"MACHINEKEY_DecryptionKey":"E647E17172F4D74E4699637992F5C3F0C42E747D86C4652B8D9FDB674BE540CC","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"powershell","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"2a0d08dc-23cd-4595-bb23-f49420e39db2"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '828'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:54:10 GMT
+ etag:
+ - '"1D73252A17E4635"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2020-09-01
+ response:
+ body:
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"UK
+ West","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-UKWestwebspace-Linux","selfLink":"https://waws-prod-cw1-017.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-UKWestwebspace-Linux/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PowerShell|7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T23:54:10.8833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionapp-linux000004","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F4A214B74F6F2B4BF582515705CE8B81B02E2225E64EA3A762AB27B8204C2182","kind":"functionapp,linux","inboundIpAddress":"51.140.210.99","possibleInboundIpAddresses":"51.140.210.99","ftpUsername":"functionapp-linux000004\\$functionapp-linux000004","ftpsHostName":"ftps://waws-prod-cw1-017.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"51.140.210.99,51.141.121.252,51.141.30.11,51.140.216.188,51.140.218.72","possibleOutboundIpAddresses":"51.140.210.99,51.141.121.252,51.141.30.11,51.140.216.188,51.140.218.72,51.140.243.28,51.141.118.176,51.140.247.165,51.140.219.138,51.140.201.163","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-cw1-017","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}],"nextLink":null,"id":null}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5990'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:54:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp config show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web","name":"functionapp-linux000004","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"PowerShell|7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3858'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:54:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_app_service_powershell_with_runtime_version.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_app_service_powershell_with_runtime_version.yaml
new file mode 100644
index 00000000000..02effd61c73
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_functionapp_on_linux_app_service_powershell_with_runtime_version.yaml
@@ -0,0 +1,607 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp plan create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --sku --is-linux
+ User-Agent:
+ - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"ukwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T23:56:25Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 23:56:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "ukwest", "sku": {"name": "S1", "tier": "STANDARD"}, "properties":
+ {"perSiteScaling": false, "reserved": true, "isXenon": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp plan create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '142'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --sku --is-linux
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"ukwest","properties":{"serverFarmId":16255,"name":"funcapplinplan000003","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-UKWestwebspace-Linux","subscription":"fdaf2e05-dba9-4a35-8130-41d1a855a739","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"UK
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-cw1-007_16255","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1661'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:57:04 GMT
+ etag:
+ - '"1D732530892D2F5"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --plan -s --runtime --runtime-version --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","name":"funcapplinplan000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"UK
+ West","properties":{"serverFarmId":16255,"name":"funcapplinplan000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-UKWestwebspace-Linux","subscription":"fdaf2e05-dba9-4a35-8130-41d1a855a739","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"UK
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-cw1-007_16255","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1587'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:57:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --plan -s --runtime --runtime-version --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002?api-version=2021-01-01
+ response:
+ body:
+ string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002","name":"clitest000002","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T23:56:34.1419834Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-04-15T23:56:34.1419834Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2021-04-15T23:56:34.0638885Z","primaryEndpoints":{"blob":"https://clitest000002.blob.core.windows.net/","queue":"https://clitest000002.queue.core.windows.net/","table":"https://clitest000002.table.core.windows.net/","file":"https://clitest000002.file.core.windows.net/"},"primaryLocation":"westus","statusOfPrimary":"available"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1240'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:57:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n --plan -s --runtime --runtime-version --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/clitest000002/listKeys?api-version=2021-01-01&$expand=kerb
+ response:
+ body:
+ string: '{"keys":[{"keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '288'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:57:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"kind": "functionapp,linux", "location": "UK West", "properties": {"serverFarmId":
+ "funcapplinplan000003", "reserved": true, "isXenon": false, "hyperV": false,
+ "siteConfig": {"netFrameworkVersion": "v4.6", "linuxFxVersion": "PowerShell|7",
+ "appSettings": [{"name": "MACHINEKEY_DecryptionKey", "value": "44D427F4FF0B015B51D4D7CC14158EC06A9000FB85DD27A76D428A4DFCEDC662"},
+ {"name": "WEBSITES_ENABLE_APP_SERVICE_STORAGE", "value": "true"}, {"name": "FUNCTIONS_WORKER_RUNTIME",
+ "value": "powershell"}, {"name": "FUNCTIONS_EXTENSION_VERSION", "value": "~3"},
+ {"name": "AzureWebJobsStorage", "value": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}],
+ "use32BitWorkerProcess": false, "alwaysOn": true, "localMySqlEnabled": false,
+ "http20Enabled": true}, "scmSiteAlsoStopped": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '936'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan -s --runtime --runtime-version --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"UK
+ West","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-UKWestwebspace-Linux","selfLink":"https://waws-prod-cw1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-UKWestwebspace-Linux/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PowerShell|7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T23:57:12.5766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionapp-linux000004","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F4A214B74F6F2B4BF582515705CE8B81B02E2225E64EA3A762AB27B8204C2182","kind":"functionapp,linux","inboundIpAddress":"51.141.45.207","possibleInboundIpAddresses":"51.141.45.207","ftpUsername":"functionapp-linux000004\\$functionapp-linux000004","ftpsHostName":"ftps://waws-prod-cw1-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"51.141.45.207,51.141.39.78,51.141.44.172,51.141.41.170,51.141.42.21","possibleOutboundIpAddresses":"51.141.45.207,51.141.39.78,51.141.44.172,51.141.41.170,51.141.42.21,51.141.83.21,51.141.81.168","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-cw1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6097'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:57:29 GMT
+ etag:
+ - '"1D732530E164315"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "UK West", "kind": "web", "properties": {"Application_Type":
+ "web"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '81'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --plan -s --runtime --runtime-version --functions-version
+ User-Agent:
+ - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-applicationinsights/0.1.1 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004?api-version=2015-05-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/microsoft.insights/components/functionapp-linux000004","name":"functionapp-linux000004","type":"microsoft.insights/components","location":"ukwest","tags":{},"kind":"web","etag":"\"bb005f00-0000-1000-0000-6078d2f10000\"","properties":{"Ver":"v2","ApplicationId":"functionapp-linux000004","AppId":"b651bbdf-88ad-49bb-830e-94fbc14938d8","Application_Type":"web","Flow_Type":null,"Request_Source":null,"InstrumentationKey":"fd1d6319-b751-4d32-9a0b-1e5dec9170fe","ConnectionString":"InstrumentationKey=fd1d6319-b751-4d32-9a0b-1e5dec9170fe;IngestionEndpoint=https://ukwest-0.in.applicationinsights.azure.com/","Name":"functionapp-linux000004","CreationDate":"2021-04-15T23:57:36.3940401+00:00","TenantId":"fdaf2e05-dba9-4a35-8130-41d1a855a739","provisioningState":"Succeeded","SamplingPercentage":null,"RetentionInDays":90,"IngestionMode":"ApplicationInsights","publicNetworkAccessForIngestion":"Enabled","publicNetworkAccessForQuery":"Enabled"}}'
+ headers:
+ access-control-expose-headers:
+ - Request-Context
+ cache-control:
+ - no-cache
+ content-length:
+ - '1104'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 23:57:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ request-context:
+ - appId=cid-v1:920e14b1-13f3-461a-a4bb-b4fe6f1a4525
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -g -n --plan -s --runtime --runtime-version --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings/list?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"MACHINEKEY_DecryptionKey":"44D427F4FF0B015B51D4D7CC14158EC06A9000FB85DD27A76D428A4DFCEDC662","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"powershell","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey=="}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '756'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:57:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"MACHINEKEY_DecryptionKey": "44D427F4FF0B015B51D4D7CC14158EC06A9000FB85DD27A76D428A4DFCEDC662",
+ "WEBSITES_ENABLE_APP_SERVICE_STORAGE": "true", "FUNCTIONS_WORKER_RUNTIME": "powershell",
+ "FUNCTIONS_EXTENSION_VERSION": "~3", "AzureWebJobsStorage": "DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==",
+ "APPINSIGHTS_INSTRUMENTATIONKEY": "fd1d6319-b751-4d32-9a0b-1e5dec9170fe"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '538'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan -s --runtime --runtime-version --functions-version
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/appsettings","name":"appsettings","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"MACHINEKEY_DecryptionKey":"44D427F4FF0B015B51D4D7CC14158EC06A9000FB85DD27A76D428A4DFCEDC662","WEBSITES_ENABLE_APP_SERVICE_STORAGE":"true","FUNCTIONS_WORKER_RUNTIME":"powershell","FUNCTIONS_EXTENSION_VERSION":"~3","AzureWebJobsStorage":"DefaultEndpointsProtocol=https;EndpointSuffix=core.windows.net;AccountName=clitest000002;AccountKey=veryFakedStorageAccountKey==","APPINSIGHTS_INSTRUMENTATIONKEY":"fd1d6319-b751-4d32-9a0b-1e5dec9170fe"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '828'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:57:42 GMT
+ etag:
+ - '"1D732531FD9E3CB"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp list
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites?api-version=2020-09-01
+ response:
+ body:
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004","name":"functionapp-linux000004","type":"Microsoft.Web/sites","kind":"functionapp,linux","location":"UK
+ West","properties":{"name":"functionapp-linux000004","state":"Running","hostNames":["functionapp-linux000004.azurewebsites.net"],"webSpace":"clitest.rg000001-UKWestwebspace-Linux","selfLink":"https://waws-prod-cw1-007.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-UKWestwebspace-Linux/sites/functionapp-linux000004","repositorySiteName":"functionapp-linux000004","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionapp-linux000004.azurewebsites.net","functionapp-linux000004.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"PowerShell|7"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"functionapp-linux000004.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionapp-linux000004.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/funcapplinplan000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T23:57:42.8766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionapp-linux000004","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"F4A214B74F6F2B4BF582515705CE8B81B02E2225E64EA3A762AB27B8204C2182","kind":"functionapp,linux","inboundIpAddress":"51.141.45.207","possibleInboundIpAddresses":"51.141.45.207","ftpUsername":"functionapp-linux000004\\$functionapp-linux000004","ftpsHostName":"ftps://waws-prod-cw1-007.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"51.141.45.207,51.141.39.78,51.141.44.172,51.141.41.170,51.141.42.21","possibleOutboundIpAddresses":"51.141.45.207,51.141.39.78,51.141.44.172,51.141.41.170,51.141.42.21,51.141.83.21,51.141.81.168","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-cw1-007","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"functionapp-linux000004.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}}],"nextLink":null,"id":null}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5937'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:57:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - functionapp config show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.6.8 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/functionapp-linux000004/config/web","name":"functionapp-linux000004","type":"Microsoft.Web/sites/config","location":"UK
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"PowerShell|7","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$functionapp-linux000004","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":false,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":{"allowedOrigins":["https://functions.azure.com","https://functions-staging.azure.com","https://functions-next.azure.com"],"supportCredentials":false},"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3858'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 23:57:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml
index fe2dc6cb6d1..2628cab5966 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_linux_webapp_multicontainer_slot.yaml
@@ -14,14 +14,14 @@ interactions:
- -g -n --is-linux --sku
User-Agent:
- python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-03-29T22:02:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T18:28:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:02:46 GMT
+ - Thu, 15 Apr 2021 18:28:19 GMT
expires:
- '-1'
pragma:
@@ -64,7 +64,7 @@ interactions:
ParameterSetName:
- -g -n --is-linux --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -78,7 +78,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:02:47 GMT
+ - Thu, 15 Apr 2021 18:28:19 GMT
expires:
- '-1'
pragma:
@@ -117,14 +117,14 @@ interactions:
- -g -n --is-linux --sku
User-Agent:
- python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-03-29T22:02:44Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T18:28:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -133,7 +133,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:02:47 GMT
+ - Thu, 15 Apr 2021 18:28:19 GMT
expires:
- '-1'
pragma:
@@ -166,24 +166,24 @@ interactions:
ParameterSetName:
- -g -n --is-linux --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"eastus2","properties":{"serverFarmId":597,"name":"plan-linux-multi000003","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUS2webspace-Linux","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East
- US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-103_597","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"eastus2","properties":{"serverFarmId":13006,"name":"plan-linux-multi000003","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUS2webspace-Linux","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East
+ US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-067_13006","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1661'
+ - '1665'
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:02:52 GMT
+ - Thu, 15 Apr 2021 18:28:35 GMT
etag:
- - '"1D724E74416A8E0"'
+ - '"1D73225255A358B"'
expires:
- '-1'
pragma:
@@ -201,7 +201,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -221,23 +221,23 @@ interactions:
ParameterSetName:
- -g -n --plan --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":597,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUS2webspace-Linux","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East
- US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-103_597","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ US 2","properties":{"serverFarmId":13006,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUS2webspace-Linux","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East
+ US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-067_13006","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1588'
+ - '1592'
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:02:54 GMT
+ - Thu, 15 Apr 2021 18:28:35 GMT
expires:
- '-1'
pragma:
@@ -278,7 +278,7 @@ interactions:
ParameterSetName:
- -g -n --plan --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -292,7 +292,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:02:54 GMT
+ - Thu, 15 Apr 2021 18:28:36 GMT
expires:
- '-1'
pragma:
@@ -310,7 +310,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -330,23 +330,23 @@ interactions:
ParameterSetName:
- -g -n --plan --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","name":"plan-linux-multi000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
- US 2","properties":{"serverFarmId":597,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUS2webspace-Linux","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East
- US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-103_597","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ US 2","properties":{"serverFarmId":13006,"name":"plan-linux-multi000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUS2webspace-Linux","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East
+ US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-067_13006","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1588'
+ - '1592'
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:02:55 GMT
+ - Thu, 15 Apr 2021 18:28:36 GMT
expires:
- '-1'
pragma:
@@ -386,7 +386,7 @@ interactions:
ParameterSetName:
- -g -n --plan --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -400,7 +400,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:02:55 GMT
+ - Thu, 15 Apr 2021 18:28:37 GMT
expires:
- '-1'
pragma:
@@ -444,26 +444,26 @@ interactions:
ParameterSetName:
- -g -n --plan --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East
- US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-103.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-29T22:02:58.7466667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T18:28:40.92","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multi000002","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"20.49.97.15","possibleInboundIpAddresses":"20.49.97.15","ftpUsername":"webapp-linux-multi000002\\$webapp-linux-multi000002","ftpsHostName":"ftps://waws-prod-bn1-103.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.251.19.99,52.177.27.51,52.251.21.199,52.251.22.185,52.251.23.178,52.251.23.186,20.49.97.15","possibleOutboundIpAddresses":"52.251.19.99,52.177.27.51,52.251.21.199,52.251.22.185,52.251.23.178,52.251.23.186,52.177.24.97,52.252.24.78,52.252.24.111,52.252.26.67,52.252.26.136,52.252.26.190,52.252.27.34,52.252.27.208,52.252.28.44,52.252.28.83,52.252.28.120,52.138.121.110,20.49.97.15","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-103","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multi000002","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"40.70.147.13","possibleInboundIpAddresses":"40.70.147.13","ftpUsername":"webapp-linux-multi000002\\$webapp-linux-multi000002","ftpsHostName":"ftps://waws-prod-bn1-067.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156","possibleOutboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156,52.251.115.213,104.209.219.240,52.251.114.9,13.77.69.217,40.123.55.50","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6576'
+ - '6440'
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:03:14 GMT
+ - Thu, 15 Apr 2021 18:28:57 GMT
etag:
- - '"1D724E747E4ADD5"'
+ - '"1D7322528F9F18B"'
expires:
- '-1'
pragma:
@@ -505,7 +505,7 @@ interactions:
ParameterSetName:
- -g -n --plan --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/publishxml?api-version=2020-09-01
response:
@@ -513,18 +513,18 @@ interactions:
string:
@@ -536,7 +536,7 @@ interactions:
content-type:
- application/xml
date:
- - Mon, 29 Mar 2021 22:03:15 GMT
+ - Thu, 15 Apr 2021 18:28:57 GMT
expires:
- '-1'
pragma:
@@ -571,7 +571,7 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 5 times.
+ string: 'Hello World! I have been seen 2 times.
'
headers:
@@ -580,11 +580,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:44 GMT
+ - Thu, 15 Apr 2021 18:30:05 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -603,7 +603,7 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 9 times.
+ string: 'Hello World! I have been seen 7 times.
'
headers:
@@ -612,11 +612,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:44 GMT
+ - Thu, 15 Apr 2021 18:30:05 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -635,20 +635,20 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 11 times.
+ string: 'Hello World! I have been seen 8 times.
'
headers:
content-length:
- - '40'
+ - '39'
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:44 GMT
+ - Thu, 15 Apr 2021 18:30:06 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -667,20 +667,20 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 12 times.
+ string: 'Hello World! I have been seen 9 times.
'
headers:
content-length:
- - '40'
+ - '39'
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:45 GMT
+ - Thu, 15 Apr 2021 18:30:07 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -699,7 +699,7 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 13 times.
+ string: 'Hello World! I have been seen 10 times.
'
headers:
@@ -708,11 +708,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:44 GMT
+ - Thu, 15 Apr 2021 18:30:06 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -731,7 +731,7 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 14 times.
+ string: 'Hello World! I have been seen 11 times.
'
headers:
@@ -740,11 +740,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:45 GMT
+ - Thu, 15 Apr 2021 18:30:07 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -763,7 +763,7 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 15 times.
+ string: 'Hello World! I have been seen 12 times.
'
headers:
@@ -772,11 +772,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:46 GMT
+ - Thu, 15 Apr 2021 18:30:07 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -795,7 +795,7 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 16 times.
+ string: 'Hello World! I have been seen 13 times.
'
headers:
@@ -804,11 +804,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:45 GMT
+ - Thu, 15 Apr 2021 18:30:08 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -827,7 +827,7 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 17 times.
+ string: 'Hello World! I have been seen 14 times.
'
headers:
@@ -836,11 +836,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:46 GMT
+ - Thu, 15 Apr 2021 18:30:08 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -859,7 +859,7 @@ interactions:
uri: http://webapp-linux-multi000002.azurewebsites.net/
response:
body:
- string: 'Hello World! I have been seen 18 times.
+ string: 'Hello World! I have been seen 15 times.
'
headers:
@@ -868,11 +868,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:03:46 GMT
+ - Thu, 15 Apr 2021 18:30:08 GMT
server:
- Werkzeug/0.14.1 Python/3.4.8
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy.azurewebsites.net
status:
code: 200
message: OK
@@ -890,24 +890,24 @@ interactions:
ParameterSetName:
- -g -n --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002","name":"webapp-linux-multi000002","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East
- US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-103.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-29T22:02:59.2933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multi000002","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"20.49.97.15","possibleInboundIpAddresses":"20.49.97.15","ftpUsername":"webapp-linux-multi000002\\$webapp-linux-multi000002","ftpsHostName":"ftps://waws-prod-bn1-103.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.251.19.99,52.177.27.51,52.251.21.199,52.251.22.185,52.251.23.178,52.251.23.186,20.49.97.15","possibleOutboundIpAddresses":"52.251.19.99,52.177.27.51,52.251.21.199,52.251.22.185,52.251.23.178,52.251.23.186,52.177.24.97,52.252.24.78,52.252.24.111,52.252.26.67,52.252.26.136,52.252.26.190,52.252.27.34,52.252.27.208,52.252.28.44,52.252.28.83,52.252.28.120,52.138.121.110,20.49.97.15","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-103","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ US 2","properties":{"name":"webapp-linux-multi000002","state":"Running","hostNames":["webapp-linux-multi000002.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002.azurewebsites.net","webapp-linux-multi000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T18:28:41.3366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multi000002","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"40.70.147.13","possibleInboundIpAddresses":"40.70.147.13","ftpUsername":"webapp-linux-multi000002\\$webapp-linux-multi000002","ftpsHostName":"ftps://waws-prod-bn1-067.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156","possibleOutboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156,52.251.115.213,104.209.219.240,52.251.114.9,13.77.69.217,40.123.55.50","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6376'
+ - '6245'
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:03:47 GMT
+ - Thu, 15 Apr 2021 18:30:09 GMT
etag:
- - '"1D724E747E4ADD5"'
+ - '"1D7322528F9F18B"'
expires:
- '-1'
pragma:
@@ -943,7 +943,7 @@ interactions:
ParameterSetName:
- -g -n --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/web?api-version=2020-09-01
response:
@@ -960,7 +960,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:03:47 GMT
+ - Thu, 15 Apr 2021 18:30:10 GMT
expires:
- '-1'
pragma:
@@ -1003,26 +1003,26 @@ interactions:
ParameterSetName:
- -g -n --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage","name":"webapp-linux-multi000002/stage","type":"Microsoft.Web/sites/slots","kind":"app,linux,container","location":"East
- US 2","properties":{"name":"webapp-linux-multi000002(stage)","state":"Running","hostNames":["webapp-linux-multi000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-103.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002-stage.azurewebsites.net","webapp-linux-multi000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-29T22:03:51.6433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ US 2","properties":{"name":"webapp-linux-multi000002(stage)","state":"Running","hostNames":["webapp-linux-multi000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-067.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/webapp-linux-multi000002","repositorySiteName":"webapp-linux-multi000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["webapp-linux-multi000002-stage.azurewebsites.net","webapp-linux-multi000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"webapp-linux-multi000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"webapp-linux-multi000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/plan-linux-multi000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T18:30:14.7","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multi000002__de65","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"20.49.97.15","possibleInboundIpAddresses":"20.49.97.15","ftpUsername":"webapp-linux-multi000002__stage\\$webapp-linux-multi000002__stage","ftpsHostName":"ftps://waws-prod-bn1-103.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.251.19.99,52.177.27.51,52.251.21.199,52.251.22.185,52.251.23.178,52.251.23.186,20.49.97.15","possibleOutboundIpAddresses":"52.251.19.99,52.177.27.51,52.251.21.199,52.251.22.185,52.251.23.178,52.251.23.186,52.177.24.97,52.252.24.78,52.252.24.111,52.252.26.67,52.252.26.136,52.252.26.190,52.252.27.34,52.252.27.208,52.252.28.44,52.252.28.83,52.252.28.120,52.138.121.110,20.49.97.15","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-103","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002-stage.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"webapp-linux-multi000002__2e5a","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"40.70.147.13","possibleInboundIpAddresses":"40.70.147.13","ftpUsername":"webapp-linux-multi000002__stage\\$webapp-linux-multi000002__stage","ftpsHostName":"ftps://waws-prod-bn1-067.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156","possibleOutboundIpAddresses":"40.70.147.13,104.208.138.157,104.46.127.127,52.251.126.49,104.209.194.156,52.251.115.213,104.209.219.240,52.251.114.9,13.77.69.217,40.123.55.50","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-067","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"webapp-linux-multi000002-stage.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6663'
+ - '6526'
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:04:08 GMT
+ - Thu, 15 Apr 2021 18:30:30 GMT
etag:
- - '"1D724E747E4ADD5"'
+ - '"1D7322528F9F18B"'
expires:
- '-1'
pragma:
@@ -1062,7 +1062,7 @@ interactions:
ParameterSetName:
- -g -n --slot --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/appsettings/list?api-version=2020-09-01
response:
@@ -1077,7 +1077,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:04:08 GMT
+ - Thu, 15 Apr 2021 18:30:31 GMT
expires:
- '-1'
pragma:
@@ -1115,7 +1115,7 @@ interactions:
ParameterSetName:
- -g -n --slot --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2020-09-01
response:
@@ -1130,7 +1130,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:04:09 GMT
+ - Thu, 15 Apr 2021 18:30:31 GMT
expires:
- '-1'
pragma:
@@ -1166,7 +1166,7 @@ interactions:
ParameterSetName:
- -g -n --slot --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2020-09-01
response:
@@ -1183,7 +1183,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:04:10 GMT
+ - Thu, 15 Apr 2021 18:30:32 GMT
expires:
- '-1'
pragma:
@@ -1221,7 +1221,7 @@ interactions:
ParameterSetName:
- -g -n --slot --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings/list?api-version=2020-09-01
response:
@@ -1236,7 +1236,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:04:10 GMT
+ - Thu, 15 Apr 2021 18:30:32 GMT
expires:
- '-1'
pragma:
@@ -1254,7 +1254,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11997'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -1274,7 +1274,7 @@ interactions:
ParameterSetName:
- -g -n --slot --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/slotConfigNames?api-version=2020-09-01
response:
@@ -1289,7 +1289,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:04:10 GMT
+ - Thu, 15 Apr 2021 18:30:33 GMT
expires:
- '-1'
pragma:
@@ -1329,7 +1329,7 @@ interactions:
ParameterSetName:
- -g -n --slot --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/config/appsettings?api-version=2020-09-01
response:
@@ -1344,9 +1344,9 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:04:11 GMT
+ - Thu, 15 Apr 2021 18:30:34 GMT
etag:
- - '"1D724E772F834B5"'
+ - '"1D732256C59F855"'
expires:
- '-1'
pragma:
@@ -1364,7 +1364,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1402,7 +1402,7 @@ interactions:
ParameterSetName:
- -g -n --slot --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2020-09-01
response:
@@ -1419,9 +1419,9 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:04:13 GMT
+ - Thu, 15 Apr 2021 18:30:35 GMT
etag:
- - '"1D724E7675325AB"'
+ - '"1D7322560E3B475"'
expires:
- '-1'
pragma:
@@ -1439,7 +1439,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -1459,7 +1459,7 @@ interactions:
ParameterSetName:
- -g -n --slot --multicontainer-config-file --multicontainer-config-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/webapp-linux-multi000002/slots/stage/config/web?api-version=2020-09-01
response:
@@ -1476,7 +1476,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 29 Mar 2021 22:04:14 GMT
+ - Thu, 15 Apr 2021 18:30:36 GMT
expires:
- '-1'
pragma:
@@ -1522,11 +1522,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:43 GMT
+ - Thu, 15 Apr 2021 18:31:10 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
@@ -1554,11 +1554,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:43 GMT
+ - Thu, 15 Apr 2021 18:31:10 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
@@ -1586,11 +1586,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:44 GMT
+ - Thu, 15 Apr 2021 18:31:10 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
@@ -1618,11 +1618,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:44 GMT
+ - Thu, 15 Apr 2021 18:31:10 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
@@ -1650,11 +1650,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:44 GMT
+ - Thu, 15 Apr 2021 18:31:11 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
@@ -1682,11 +1682,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:44 GMT
+ - Thu, 15 Apr 2021 18:31:11 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
@@ -1714,11 +1714,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:44 GMT
+ - Thu, 15 Apr 2021 18:31:11 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
@@ -1746,11 +1746,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:45 GMT
+ - Thu, 15 Apr 2021 18:31:11 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
@@ -1778,11 +1778,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:45 GMT
+ - Thu, 15 Apr 2021 18:31:11 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
@@ -1810,11 +1810,11 @@ interactions:
content-type:
- text/html; charset=utf-8
date:
- - Mon, 29 Mar 2021 22:04:46 GMT
+ - Thu, 15 Apr 2021 18:31:11 GMT
server:
- Werkzeug/0.14.1 Python/3.4.9
set-cookie:
- - ARRAffinity=f7612e48b7054cbe395bb3d510baad6eb1a87d9dbeb4b9a6bddee36330726d11;Path=/;HttpOnly;Domain=webapp-linux-multizbhthe-stage.azurewebsites.net
+ - ARRAffinity=baac66d472b9a4a5f5ad4012f21f60dec486d0140a2bd5f5a262a03bca0873ee;Path=/;HttpOnly;Domain=webapp-linux-multiqazbwy-stage.azurewebsites.net
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml
index 108a1975837..c96e0b23143 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:49:19Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:15 GMT
+ - Wed, 14 Apr 2021 08:49:21 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:16 GMT
+ - Wed, 14 Apr 2021 08:49:21 GMT
expires:
- '-1'
pragma:
@@ -95,7 +95,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:49:19Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:16 GMT
+ - Wed, 14 Apr 2021 08:49:21 GMT
expires:
- '-1'
pragma:
@@ -165,24 +165,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":22600,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22600","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":2829,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1655'
+ - '1653'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:30 GMT
+ - Wed, 14 Apr 2021 08:49:38 GMT
etag:
- - '"1D7266CD35D8FCB"'
+ - '"1D7310B17BBBDA0"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1189'
x-powered-by:
- ASP.NET
status:
@@ -220,23 +220,23 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22600,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22600","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":2829,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1583'
+ - '1581'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:32 GMT
+ - Wed, 14 Apr 2021 08:49:39 GMT
expires:
- '-1'
pragma:
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:32 GMT
+ - Wed, 14 Apr 2021 08:49:40 GMT
expires:
- '-1'
pragma:
@@ -329,23 +329,23 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22600,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22600","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":2829,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2829","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1583'
+ - '1581'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:33 GMT
+ - Wed, 14 Apr 2021 08:49:40 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:34 GMT
+ - Wed, 14 Apr 2021 08:49:48 GMT
expires:
- '-1'
pragma:
@@ -443,26 +443,26 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:31:42.3833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:49:56.1866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6210'
+ - '6343'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:01 GMT
+ - Wed, 14 Apr 2021 08:50:16 GMT
etag:
- - '"1D7266CDC99A820"'
+ - '"1D7310B251EDD60"'
expires:
- '-1'
pragma:
@@ -480,7 +480,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '498'
x-powered-by:
- ASP.NET
status:
@@ -504,43 +504,37 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
+ webSystem="WebSites">
headers:
cache-control:
- no-cache
content-length:
- - '2247'
+ - '1667'
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:32:01 GMT
+ - Wed, 14 Apr 2021 08:50:18 GMT
expires:
- '-1'
pragma:
@@ -554,7 +548,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11996'
+ - '11999'
x-powered-by:
- ASP.NET
status:
@@ -574,7 +568,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -591,7 +585,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:03 GMT
+ - Wed, 14 Apr 2021 08:50:20 GMT
expires:
- '-1'
pragma:
@@ -627,7 +621,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -644,7 +638,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:05 GMT
+ - Wed, 14 Apr 2021 08:50:22 GMT
expires:
- '-1'
pragma:
@@ -702,7 +696,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -719,9 +713,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:07 GMT
+ - Wed, 14 Apr 2021 08:50:24 GMT
etag:
- - '"1D7266CDC99A820"'
+ - '"1D7310B251EDD60"'
expires:
- '-1'
pragma:
@@ -739,7 +733,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1195'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_http_header.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_http_header.yaml
new file mode 100644
index 00000000000..bbcae794964
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_http_header.yaml
@@ -0,0 +1,59587 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice plan create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --is-linux
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:50:31Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '429'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 08:50:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "cli-plan-nwr000003", "type": "Microsoft.Web/serverfarms", "location":
+ "eastus2", "properties": {"skuName": "B1", "needLinuxWorkers": true, "capacity":
+ 1}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice plan create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '170'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --is-linux
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
+ response:
+ body:
+ string: '{"status":"Success","error":null}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '33'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:50:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice plan create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --is-linux
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:50:31Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '429'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 08:50:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus2", "sku": {"name": "B1", "tier": "BASIC", "capacity":
+ 1}, "properties": {"perSiteScaling": false, "reserved": true, "isXenon": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice plan create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '155'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --is-linux
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"eastus2","properties":{"serverFarmId":7501,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUS2webspace-Linux","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East
+ US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2021-05-14T08:50:40.3466667","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-081_7501","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1682'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:50:51 GMT
+ etag:
+ - '"1D7310B44FAB000"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1197'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --plan --runtime
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
+ US 2","properties":{"serverFarmId":7501,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUS2webspace-Linux","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East
+ US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2021-05-14T08:50:40.3466667","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-081_7501","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1611'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:50:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "cli-webapp-nwr000002", "type": "Microsoft.Web/sites", "location":
+ "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '331'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan --runtime
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
+ response:
+ body:
+ string: '{"status":"Success","error":null}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '33'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:50:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --plan --runtime
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"linux","location":"East
+ US 2","properties":{"serverFarmId":7501,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-EastUS2webspace-Linux","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"East
+ US 2","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":"2021-05-14T08:50:40.3466667","tags":null,"kind":"linux","resourceGroup":"clitest.rg000001","reserved":true,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-bn1-081_7501","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1611'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:50:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "cli-webapp-nwr000002", "type": "Site"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '52'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan --runtime
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
+ response:
+ body:
+ string: '{"nameAvailable":true,"reason":"","message":""}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '47'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:50:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "East US 2", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003",
+ "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
+ "v4.6", "linuxFxVersion": "DOTNETCORE|3.1", "appSettings": [], "localMySqlEnabled":
+ false, "http20Enabled": true}, "scmSiteAlsoStopped": false, "httpsOnly": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '520'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan --runtime
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-081.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOTNETCORE|3.1"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:51:17.9166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app,linux","inboundIpAddress":"20.49.97.4","possibleInboundIpAddresses":"20.49.97.4","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-bn1-081.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.177.39.2,52.232.208.24,52.232.209.56,52.232.212.180,52.167.13.214,52.232.212.233,20.49.97.4","possibleOutboundIpAddresses":"52.177.39.2,52.232.208.24,52.232.209.56,52.232.212.180,52.167.13.214,52.232.212.233,52.232.213.56,52.232.213.85,52.232.213.90,52.232.213.100,52.232.213.122,52.232.208.182,52.247.76.89,52.247.76.111,52.247.76.163,52.247.76.166,52.247.76.170,52.247.76.201,20.49.97.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-081","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6394'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:34 GMT
+ etag:
+ - '"1D7310B55AFB9E0"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"format": "WebDeploy"}'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '23'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan --runtime
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
+ response:
+ body:
+ string:
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1667'
+ content-type:
+ - application/xml
+ date:
+ - Wed, 14 Apr 2021 08:51:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-081.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOTNETCORE|3.1"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:51:18.27","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app,linux","inboundIpAddress":"20.49.97.4","possibleInboundIpAddresses":"20.49.97.4","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-bn1-081.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.177.39.2,52.232.208.24,52.232.209.56,52.232.212.180,52.167.13.214,52.232.212.233,20.49.97.4","possibleOutboundIpAddresses":"52.177.39.2,52.232.208.24,52.232.209.56,52.232.212.180,52.167.13.214,52.232.212.233,52.232.213.56,52.232.213.85,52.232.213.90,52.232.213.100,52.232.213.122,52.232.208.182,52.247.76.89,52.247.76.111,52.247.76.163,52.247.76.166,52.247.76.170,52.247.76.201,20.49.97.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-081","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6189'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:36 GMT
+ etag:
+ - '"1D7310B55AFB9E0"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/East%20US%202/serviceTags?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"Public\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/serviceTags/Public\",\r\n
+ \ \"type\": \"Microsoft.Network/serviceTags\",\r\n \"changeNumber\": \"71\",\r\n
+ \ \"cloud\": \"Public\",\r\n \"values\": [\r\n {\r\n \"name\": \"ActionGroup\",\r\n
+ \ \"id\": \"ActionGroup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.60.119/32\",\r\n \"13.66.143.220/30\",\r\n
+ \ \"13.66.202.14/32\",\r\n \"13.66.248.225/32\",\r\n \"13.66.249.211/32\",\r\n
+ \ \"13.67.10.124/30\",\r\n \"13.69.109.132/30\",\r\n \"13.71.199.112/30\",\r\n
+ \ \"13.77.53.216/30\",\r\n \"13.77.172.102/32\",\r\n \"13.77.183.209/32\",\r\n
+ \ \"13.78.109.156/30\",\r\n \"13.84.49.247/32\",\r\n \"13.84.51.172/32\",\r\n
+ \ \"13.84.52.58/32\",\r\n \"13.86.221.220/30\",\r\n \"13.106.38.142/32\",\r\n
+ \ \"13.106.38.148/32\",\r\n \"13.106.54.3/32\",\r\n \"13.106.54.19/32\",\r\n
+ \ \"13.106.57.181/32\",\r\n \"13.106.57.196/31\",\r\n \"20.38.149.132/30\",\r\n
+ \ \"20.42.64.36/30\",\r\n \"20.43.121.124/30\",\r\n \"20.44.17.220/30\",\r\n
+ \ \"20.45.123.236/30\",\r\n \"20.72.27.152/30\",\r\n \"20.150.172.228/30\",\r\n
+ \ \"20.192.238.124/30\",\r\n \"20.193.202.4/30\",\r\n \"40.68.195.137/32\",\r\n
+ \ \"40.68.201.58/32\",\r\n \"40.68.201.65/32\",\r\n \"40.68.201.206/32\",\r\n
+ \ \"40.68.201.211/32\",\r\n \"40.68.204.18/32\",\r\n \"40.115.37.106/32\",\r\n
+ \ \"40.121.219.215/32\",\r\n \"40.121.221.62/32\",\r\n \"40.121.222.201/32\",\r\n
+ \ \"40.121.223.186/32\",\r\n \"51.12.101.172/30\",\r\n \"51.12.204.244/30\",\r\n
+ \ \"51.104.9.100/30\",\r\n \"52.183.20.244/32\",\r\n \"52.183.31.0/32\",\r\n
+ \ \"52.183.94.59/32\",\r\n \"52.184.145.166/32\",\r\n \"168.61.142.52/30\",\r\n
+ \ \"191.233.50.4/30\",\r\n \"191.233.207.64/26\",\r\n \"2603:1000:4:402::178/125\",\r\n
+ \ \"2603:1000:104:402::178/125\",\r\n \"2603:1010:6:402::178/125\",\r\n
+ \ \"2603:1010:101:402::178/125\",\r\n \"2603:1010:304:402::178/125\",\r\n
+ \ \"2603:1010:404:402::178/125\",\r\n \"2603:1020:5:402::178/125\",\r\n
+ \ \"2603:1020:206:402::178/125\",\r\n \"2603:1020:305:402::178/125\",\r\n
+ \ \"2603:1020:405:402::178/125\",\r\n \"2603:1020:605:402::178/125\",\r\n
+ \ \"2603:1020:705:402::178/125\",\r\n \"2603:1020:805:402::178/125\",\r\n
+ \ \"2603:1020:905:402::178/125\",\r\n \"2603:1020:a04:402::178/125\",\r\n
+ \ \"2603:1020:b04:402::178/125\",\r\n \"2603:1020:c04:402::178/125\",\r\n
+ \ \"2603:1020:d04:402::178/125\",\r\n \"2603:1020:e04:402::178/125\",\r\n
+ \ \"2603:1020:f04:402::178/125\",\r\n \"2603:1020:1004:800::f8/125\",\r\n
+ \ \"2603:1020:1104:400::178/125\",\r\n \"2603:1030:f:400::978/125\",\r\n
+ \ \"2603:1030:10:402::178/125\",\r\n \"2603:1030:104:402::178/125\",\r\n
+ \ \"2603:1030:107:400::f0/125\",\r\n \"2603:1030:210:402::178/125\",\r\n
+ \ \"2603:1030:40b:400::978/125\",\r\n \"2603:1030:40c:402::178/125\",\r\n
+ \ \"2603:1030:504:802::f8/125\",\r\n \"2603:1030:608:402::178/125\",\r\n
+ \ \"2603:1030:807:402::178/125\",\r\n \"2603:1030:a07:402::8f8/125\",\r\n
+ \ \"2603:1030:b04:402::178/125\",\r\n \"2603:1030:c06:400::978/125\",\r\n
+ \ \"2603:1030:f05:402::178/125\",\r\n \"2603:1030:1005:402::178/125\",\r\n
+ \ \"2603:1040:5:402::178/125\",\r\n \"2603:1040:207:402::178/125\",\r\n
+ \ \"2603:1040:407:402::178/125\",\r\n \"2603:1040:606:402::178/125\",\r\n
+ \ \"2603:1040:806:402::178/125\",\r\n \"2603:1040:904:402::178/125\",\r\n
+ \ \"2603:1040:a06:402::178/125\",\r\n \"2603:1040:b04:402::178/125\",\r\n
+ \ \"2603:1040:c06:402::178/125\",\r\n \"2603:1040:d04:800::f8/125\",\r\n
+ \ \"2603:1040:f05:402::178/125\",\r\n \"2603:1040:1104:400::178/125\",\r\n
+ \ \"2603:1050:6:402::178/125\",\r\n \"2603:1050:403:400::1f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:304:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral2\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:404:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaEast\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:6:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CanadaEast\",\r\n
+ \ \"id\": \"ActionGroup.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:1005:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUS\",\r\n
+ \ \"id\": \"ActionGroup.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:10:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUSEUAP\",\r\n
+ \ \"id\": \"ActionGroup.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"168.61.142.52/30\",\r\n
+ \ \"2603:1030:f:400::978/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastAsia\",\r\n \"id\": \"ActionGroup.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1040:207:402::178/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.EastUS2\",\r\n \"id\":
+ \"ActionGroup.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.17.220/30\",\r\n \"52.184.145.166/32\",\r\n
+ \ \"2603:1030:40c:402::178/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastUS2EUAP\",\r\n \"id\": \"ActionGroup.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1030:40b:400::978/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.FranceCentral\",\r\n \"id\":
+ \"ActionGroup.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:805:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.FranceSouth\",\r\n
+ \ \"id\": \"ActionGroup.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:905:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyNorth\",\r\n
+ \ \"id\": \"ActionGroup.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyWestCentral\",\r\n
+ \ \"id\": \"ActionGroup.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:c04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.JapanWest\",\r\n
+ \ \"id\": \"ActionGroup.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:606:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.KoreaCentral\",\r\n
+ \ \"id\": \"ActionGroup.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1040:f05:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorthEurope\",\r\n
+ \ \"id\": \"ActionGroup.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:5:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayEast\",\r\n
+ \ \"id\": \"ActionGroup.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:e04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayWest\",\r\n
+ \ \"id\": \"ActionGroup.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:f04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaNorth\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:104:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaWest\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthIndia\",\r\n
+ \ \"id\": \"ActionGroup.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:c06:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:a04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandWest\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAECentral\",\r\n
+ \ \"id\": \"ActionGroup.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAENorth\",\r\n
+ \ \"id\": \"ActionGroup.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:904:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKNorth\",\r\n
+ \ \"id\": \"ActionGroup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:305:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKSouth2\",\r\n
+ \ \"id\": \"ActionGroup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:405:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKWest\",\r\n
+ \ \"id\": \"ActionGroup.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:605:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestIndia\",\r\n
+ \ \"id\": \"ActionGroup.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:806:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestUS\",\r\n
+ \ \"id\": \"ActionGroup.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.221.220/30\",\r\n \"2603:1030:a07:402::8f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement\",\r\n
+ \ \"id\": \"ApiManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.39.16/32\",\r\n \"13.66.138.92/31\",\r\n \"13.66.140.176/28\",\r\n
+ \ \"13.67.8.108/31\",\r\n \"13.67.9.208/28\",\r\n \"13.69.64.76/31\",\r\n
+ \ \"13.69.66.144/28\",\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.71.49.1/32\",\r\n
+ \ \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n \"13.71.194.116/31\",\r\n
+ \ \"13.71.196.32/28\",\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n
+ \ \"13.75.217.184/32\",\r\n \"13.75.221.78/32\",\r\n \"13.77.50.68/31\",\r\n
+ \ \"13.77.52.224/28\",\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"13.86.102.66/32\",\r\n
+ \ \"13.87.56.84/31\",\r\n \"13.87.57.144/28\",\r\n \"13.87.122.84/31\",\r\n
+ \ \"13.87.123.144/28\",\r\n \"13.89.170.204/31\",\r\n \"13.89.174.64/28\",\r\n
+ \ \"20.36.106.68/31\",\r\n \"20.36.107.176/28\",\r\n \"20.36.114.20/31\",\r\n
+ \ \"20.36.115.128/28\",\r\n \"20.37.52.67/32\",\r\n \"20.37.74.224/31\",\r\n
+ \ \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n \"20.39.80.2/32\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"20.40.125.155/32\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"20.44.2.4/31\",\r\n \"20.44.3.224/28\",\r\n \"20.44.33.246/32\",\r\n
+ \ \"20.44.72.3/32\",\r\n \"20.46.13.224/28\",\r\n \"20.46.144.85/32\",\r\n
+ \ \"20.72.26.16/28\",\r\n \"20.150.167.160/28\",\r\n \"20.150.170.224/28\",\r\n
+ \ \"20.188.77.119/32\",\r\n \"20.192.50.64/28\",\r\n \"20.192.234.160/28\",\r\n
+ \ \"20.193.192.48/28\",\r\n \"20.193.202.160/28\",\r\n \"20.194.74.240/28\",\r\n
+ \ \"23.96.224.175/32\",\r\n \"23.101.67.140/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.66.60.111/32\",\r\n \"40.67.58.224/28\",\r\n \"40.69.106.68/31\",\r\n
+ \ \"40.69.107.224/28\",\r\n \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n
+ \ \"40.71.10.204/31\",\r\n \"40.71.13.128/28\",\r\n \"40.74.100.52/31\",\r\n
+ \ \"40.74.101.48/28\",\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"40.78.194.68/31\",\r\n \"40.78.195.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"40.79.130.44/31\",\r\n \"40.79.131.192/28\",\r\n
+ \ \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n \"40.80.232.185/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"40.81.89.24/32\",\r\n \"40.81.185.8/32\",\r\n
+ \ \"40.82.157.167/32\",\r\n \"40.90.185.46/32\",\r\n \"40.112.242.148/31\",\r\n
+ \ \"40.112.243.240/28\",\r\n \"51.12.17.0/28\",\r\n \"51.12.25.16/28\",\r\n
+ \ \"51.12.98.224/28\",\r\n \"51.12.202.224/28\",\r\n \"51.107.0.91/32\",\r\n
+ \ \"51.107.59.0/28\",\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n
+ \ \"51.116.0.0/32\",\r\n \"51.116.59.0/28\",\r\n \"51.116.96.0/32\",\r\n
+ \ \"51.116.155.64/28\",\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n \"51.120.234.240/28\",\r\n
+ \ \"51.137.136.0/32\",\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"51.143.127.203/32\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"51.145.179.78/32\",\r\n \"52.139.20.34/32\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"52.139.152.27/32\",\r\n \"52.140.238.179/32\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"52.224.186.99/32\",\r\n \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n
+ \ \"52.231.146.84/31\",\r\n \"52.231.147.176/28\",\r\n \"52.253.135.58/32\",\r\n
+ \ \"52.253.159.160/32\",\r\n \"52.253.229.253/32\",\r\n \"65.52.164.91/32\",\r\n
+ \ \"65.52.173.247/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n \"102.133.28.0/28\",\r\n
+ \ \"102.133.130.197/32\",\r\n \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n
+ \ \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n \"104.211.81.28/31\",\r\n
+ \ \"104.211.81.240/28\",\r\n \"104.211.146.68/31\",\r\n \"104.211.147.144/28\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"137.117.160.56/32\",\r\n
+ \ \"191.232.18.181/32\",\r\n \"191.233.24.179/32\",\r\n \"191.233.50.192/28\",\r\n
+ \ \"191.233.203.28/31\",\r\n \"191.233.203.240/28\",\r\n
+ \ \"191.238.241.97/32\",\r\n \"2603:1000:4:402::140/124\",\r\n
+ \ \"2603:1000:104:402::140/124\",\r\n \"2603:1010:6:402::140/124\",\r\n
+ \ \"2603:1010:101:402::140/124\",\r\n \"2603:1010:304:402::140/124\",\r\n
+ \ \"2603:1010:404:402::140/124\",\r\n \"2603:1020:5:402::140/124\",\r\n
+ \ \"2603:1020:206:402::140/124\",\r\n \"2603:1020:305:402::140/124\",\r\n
+ \ \"2603:1020:405:402::140/124\",\r\n \"2603:1020:605:402::140/124\",\r\n
+ \ \"2603:1020:705:402::140/124\",\r\n \"2603:1020:805:402::140/124\",\r\n
+ \ \"2603:1020:905:402::140/124\",\r\n \"2603:1020:a04:402::140/124\",\r\n
+ \ \"2603:1020:b04:402::140/124\",\r\n \"2603:1020:c04:402::140/124\",\r\n
+ \ \"2603:1020:d04:402::140/124\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\",\r\n \"2603:1020:f04:402::140/124\",\r\n
+ \ \"2603:1020:1004:1::700/124\",\r\n \"2603:1020:1004:800::c0/124\",\r\n
+ \ \"2603:1020:1104:1::3c0/124\",\r\n \"2603:1020:1104:400::140/124\",\r\n
+ \ \"2603:1030:f:2::490/124\",\r\n \"2603:1030:f:400::940/124\",\r\n
+ \ \"2603:1030:10:402::140/124\",\r\n \"2603:1030:104:402::140/124\",\r\n
+ \ \"2603:1030:107:400::c0/124\",\r\n \"2603:1030:210:402::140/124\",\r\n
+ \ \"2603:1030:40b:400::940/124\",\r\n \"2603:1030:40c:402::140/124\",\r\n
+ \ \"2603:1030:504:2::80/124\",\r\n \"2603:1030:608:402::140/124\",\r\n
+ \ \"2603:1030:807:402::140/124\",\r\n \"2603:1030:a07:402::8c0/124\",\r\n
+ \ \"2603:1030:b04:402::140/124\",\r\n \"2603:1030:c06:400::940/124\",\r\n
+ \ \"2603:1030:f05:402::140/124\",\r\n \"2603:1030:1005:402::140/124\",\r\n
+ \ \"2603:1040:5:402::140/124\",\r\n \"2603:1040:207:402::140/124\",\r\n
+ \ \"2603:1040:407:402::140/124\",\r\n \"2603:1040:606:402::140/124\",\r\n
+ \ \"2603:1040:806:402::140/124\",\r\n \"2603:1040:904:402::140/124\",\r\n
+ \ \"2603:1040:a06:402::140/124\",\r\n \"2603:1040:b04:402::140/124\",\r\n
+ \ \"2603:1040:c06:402::140/124\",\r\n \"2603:1040:d04:1::700/124\",\r\n
+ \ \"2603:1040:d04:800::c0/124\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\",\r\n \"2603:1040:1104:1::400/124\",\r\n
+ \ \"2603:1040:1104:400::140/124\",\r\n \"2603:1050:6:402::140/124\",\r\n
+ \ \"2603:1050:403:400::2a0/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.AustraliaCentral\",\r\n \"id\":
+ \"ApiManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.106.68/31\",\r\n
+ \ \"20.36.107.176/28\",\r\n \"20.37.52.67/32\",\r\n \"2603:1010:304:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.20/31\",\r\n \"20.36.115.128/28\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"2603:1010:404:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaEast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.75.217.184/32\",\r\n
+ \ \"13.75.221.78/32\",\r\n \"20.40.125.155/32\",\r\n \"2603:1010:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.68/31\",\r\n \"13.77.52.224/28\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"2603:1010:101:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.BrazilSouth\",\r\n \"id\": \"ApiManagement.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.24.179/32\",\r\n \"191.233.203.28/31\",\r\n
+ \ \"191.233.203.240/28\",\r\n \"2603:1050:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaCentral\",\r\n
+ \ \"id\": \"ApiManagement.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n
+ \ \"52.139.20.34/32\",\r\n \"2603:1030:f05:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaEast\",\r\n
+ \ \"id\": \"ApiManagement.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.68/31\",\r\n \"40.69.107.224/28\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"2603:1030:1005:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralIndia\",\r\n
+ \ \"id\": \"ApiManagement.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.49.1/32\",\r\n \"104.211.81.28/31\",\r\n \"104.211.81.240/28\",\r\n
+ \ \"2603:1040:a06:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.CentralUS\",\r\n \"id\": \"ApiManagement.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.102.66/32\",\r\n \"13.89.170.204/31\",\r\n
+ \ \"13.89.174.64/28\",\r\n \"2603:1030:10:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"ApiManagement.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"52.253.159.160/32\",\r\n \"2603:1030:f:2::490/124\",\r\n
+ \ \"2603:1030:f:400::940/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.EastAsia\",\r\n \"id\": \"ApiManagement.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n \"52.139.152.27/32\",\r\n
+ \ \"65.52.164.91/32\",\r\n \"65.52.173.247/32\",\r\n \"2603:1040:207:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS\",\r\n
+ \ \"id\": \"ApiManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.10.204/31\",\r\n
+ \ \"40.71.13.128/28\",\r\n \"52.224.186.99/32\",\r\n \"2603:1030:210:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.72.3/32\",\r\n
+ \ \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n \"2603:1030:40c:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"52.253.229.253/32\",\r\n \"2603:1030:40b:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceCentral\",\r\n
+ \ \"id\": \"ApiManagement.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.66.60.111/32\",\r\n \"40.79.130.44/31\",\r\n
+ \ \"40.79.131.192/28\",\r\n \"2603:1020:805:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceSouth\",\r\n
+ \ \"id\": \"ApiManagement.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.80.2/32\",\r\n \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n
+ \ \"2603:1020:905:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.GermanyNorth\",\r\n \"id\":
+ \"ApiManagement.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.116.0.0/32\",\r\n
+ \ \"51.116.59.0/28\",\r\n \"2603:1020:d04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"ApiManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.96.0/32\",\r\n \"51.116.155.64/28\",\r\n
+ \ \"2603:1020:c04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.JapanEast\",\r\n \"id\": \"ApiManagement.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"52.140.238.179/32\",\r\n \"2603:1040:407:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.JapanWest\",\r\n
+ \ \"id\": \"ApiManagement.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.52/31\",\r\n \"40.74.101.48/28\",\r\n
+ \ \"40.81.185.8/32\",\r\n \"2603:1040:606:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.KoreaCentral\",\r\n
+ \ \"id\": \"ApiManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.74.240/28\",\r\n \"40.82.157.167/32\",\r\n
+ \ \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.KoreaSouth\",\r\n \"id\": \"ApiManagement.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.232.185/32\",\r\n \"52.231.146.84/31\",\r\n
+ \ \"52.231.147.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"ApiManagement.NorthCentralUS\",\r\n \"id\": \"ApiManagement.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.224.175/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"2603:1030:608:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorthEurope\",\r\n \"id\": \"ApiManagement.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n
+ \ \"2603:1020:5:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayEast\",\r\n \"id\": \"ApiManagement.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.234.240/28\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayWest\",\r\n \"id\": \"ApiManagement.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n
+ \ \"2603:1020:f04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"ApiManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.130.197/32\",\r\n
+ \ \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n \"2603:1000:104:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"ApiManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n
+ \ \"102.133.28.0/28\",\r\n \"2603:1000:4:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"20.188.77.119/32\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"191.238.241.97/32\",\r\n
+ \ \"2603:1030:807:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SoutheastAsia\",\r\n \"id\":
+ \"ApiManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.108/31\",\r\n
+ \ \"13.67.9.208/28\",\r\n \"40.90.185.46/32\",\r\n \"2603:1040:5:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthIndia\",\r\n
+ \ \"id\": \"ApiManagement.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.33.246/32\",\r\n \"40.78.194.68/31\",\r\n
+ \ \"40.78.195.224/28\",\r\n \"2603:1040:c06:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.0.91/32\",\r\n \"51.107.59.0/28\",\r\n \"2603:1020:a04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n \"2603:1020:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UAECentral\",\r\n
+ \ \"id\": \"ApiManagement.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.224/31\",\r\n \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n
+ \ \"2603:1040:b04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UAENorth\",\r\n \"id\": \"ApiManagement.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.144.85/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"2603:1040:904:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKNorth\",\r\n \"id\": \"ApiManagement.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.84/31\",\r\n \"13.87.123.144/28\",\r\n
+ \ \"2603:1020:305:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKSouth\",\r\n \"id\": \"ApiManagement.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"2603:1020:705:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UKWest\",\r\n
+ \ \"id\": \"ApiManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.136.0/32\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"2603:1020:605:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.116/31\",\r\n \"13.71.196.32/28\",\r\n
+ \ \"52.253.135.58/32\",\r\n \"2603:1030:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestEurope\",\r\n
+ \ \"id\": \"ApiManagement.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.76/31\",\r\n \"13.69.66.144/28\",\r\n \"23.101.67.140/32\",\r\n
+ \ \"51.145.179.78/32\",\r\n \"137.117.160.56/32\",\r\n \"2603:1020:206:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestIndia\",\r\n
+ \ \"id\": \"ApiManagement.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.89.24/32\",\r\n \"104.211.146.68/31\",\r\n
+ \ \"104.211.147.144/28\",\r\n \"2603:1040:806:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS\",\r\n
+ \ \"id\": \"ApiManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.39.16/32\",\r\n
+ \ \"40.112.242.148/31\",\r\n \"40.112.243.240/28\",\r\n \"2603:1030:a07:402::8c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS2\",\r\n
+ \ \"id\": \"ApiManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.92/31\",\r\n
+ \ \"13.66.140.176/28\",\r\n \"51.143.127.203/32\",\r\n \"2603:1030:c06:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppConfiguration\",\r\n
+ \ \"id\": \"AppConfiguration\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppConfiguration\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.72/29\",\r\n \"13.66.143.192/28\",\r\n
+ \ \"13.66.143.208/29\",\r\n \"13.67.10.112/29\",\r\n \"13.67.13.192/28\",\r\n
+ \ \"13.67.13.208/29\",\r\n \"13.69.67.112/29\",\r\n \"13.69.67.240/28\",\r\n
+ \ \"13.69.71.128/29\",\r\n \"13.69.107.72/29\",\r\n \"13.69.112.144/28\",\r\n
+ \ \"13.69.112.160/29\",\r\n \"13.69.230.8/29\",\r\n \"13.69.230.40/29\",\r\n
+ \ \"13.69.231.144/28\",\r\n \"13.70.74.128/29\",\r\n \"13.70.78.144/28\",\r\n
+ \ \"13.70.78.160/29\",\r\n \"13.71.175.64/28\",\r\n \"13.71.175.96/28\",\r\n
+ \ \"13.71.196.176/28\",\r\n \"13.71.199.80/28\",\r\n \"13.73.242.56/29\",\r\n
+ \ \"13.73.244.96/28\",\r\n \"13.73.244.112/29\",\r\n \"13.73.255.128/26\",\r\n
+ \ \"13.74.108.160/28\",\r\n \"13.74.108.240/28\",\r\n \"13.77.53.88/29\",\r\n
+ \ \"13.77.53.192/28\",\r\n \"13.77.53.208/29\",\r\n \"13.78.109.144/29\",\r\n
+ \ \"13.78.109.208/28\",\r\n \"13.78.111.128/29\",\r\n \"13.86.219.192/29\",\r\n
+ \ \"13.86.221.192/28\",\r\n \"13.86.221.208/29\",\r\n \"13.87.58.64/29\",\r\n
+ \ \"13.87.58.80/28\",\r\n \"13.87.58.128/29\",\r\n \"13.87.124.64/29\",\r\n
+ \ \"13.87.124.80/28\",\r\n \"13.87.124.128/29\",\r\n \"13.89.175.208/28\",\r\n
+ \ \"13.89.178.16/29\",\r\n \"13.89.178.32/29\",\r\n \"20.36.108.120/29\",\r\n
+ \ \"20.36.108.136/29\",\r\n \"20.36.108.144/28\",\r\n \"20.36.115.248/29\",\r\n
+ \ \"20.36.117.40/29\",\r\n \"20.36.117.48/28\",\r\n \"20.36.123.16/28\",\r\n
+ \ \"20.36.124.64/26\",\r\n \"20.37.67.96/28\",\r\n \"20.37.69.64/26\",\r\n
+ \ \"20.37.76.112/29\",\r\n \"20.37.76.144/28\",\r\n \"20.37.76.192/29\",\r\n
+ \ \"20.37.198.144/28\",\r\n \"20.37.227.32/28\",\r\n \"20.37.228.128/26\",\r\n
+ \ \"20.38.128.96/29\",\r\n \"20.38.128.112/28\",\r\n \"20.38.128.160/29\",\r\n
+ \ \"20.38.139.96/28\",\r\n \"20.38.141.64/26\",\r\n \"20.38.147.176/28\",\r\n
+ \ \"20.38.147.240/28\",\r\n \"20.39.14.16/28\",\r\n \"20.40.206.144/28\",\r\n
+ \ \"20.40.206.160/28\",\r\n \"20.40.224.128/26\",\r\n \"20.41.68.64/28\",\r\n
+ \ \"20.41.69.192/26\",\r\n \"20.41.197.48/28\",\r\n \"20.42.64.16/28\",\r\n
+ \ \"20.42.230.144/28\",\r\n \"20.43.44.144/28\",\r\n \"20.43.46.128/26\",\r\n
+ \ \"20.43.70.128/28\",\r\n \"20.43.121.40/29\",\r\n \"20.43.121.96/28\",\r\n
+ \ \"20.43.121.112/29\",\r\n \"20.44.4.96/29\",\r\n \"20.44.4.120/29\",\r\n
+ \ \"20.44.4.160/28\",\r\n \"20.44.8.168/29\",\r\n \"20.44.10.96/28\",\r\n
+ \ \"20.44.10.112/29\",\r\n \"20.44.17.56/29\",\r\n \"20.44.17.192/28\",\r\n
+ \ \"20.44.17.208/29\",\r\n \"20.44.27.224/28\",\r\n \"20.44.29.32/28\",\r\n
+ \ \"20.45.116.0/26\",\r\n \"20.45.123.120/29\",\r\n \"20.45.123.176/28\",\r\n
+ \ \"20.45.123.224/29\",\r\n \"20.45.126.0/27\",\r\n \"20.45.198.0/27\",\r\n
+ \ \"20.45.199.64/26\",\r\n \"20.48.192.192/26\",\r\n \"20.49.83.96/27\",\r\n
+ \ \"20.49.91.96/27\",\r\n \"20.49.99.80/28\",\r\n \"20.49.103.0/26\",\r\n
+ \ \"20.49.109.96/28\",\r\n \"20.49.115.64/26\",\r\n \"20.49.120.80/28\",\r\n
+ \ \"20.49.127.64/26\",\r\n \"20.50.1.240/28\",\r\n \"20.50.65.96/28\",\r\n
+ \ \"20.51.8.0/26\",\r\n \"20.51.16.0/26\",\r\n \"20.53.41.192/26\",\r\n
+ \ \"20.61.98.0/26\",\r\n \"20.62.128.64/26\",\r\n \"20.72.20.192/26\",\r\n
+ \ \"20.72.28.128/27\",\r\n \"20.150.165.176/28\",\r\n \"20.150.167.0/26\",\r\n
+ \ \"20.150.172.64/27\",\r\n \"20.150.173.32/27\",\r\n \"20.150.179.200/29\",\r\n
+ \ \"20.150.181.0/28\",\r\n \"20.150.181.16/29\",\r\n \"20.150.181.128/27\",\r\n
+ \ \"20.150.187.200/29\",\r\n \"20.150.189.0/28\",\r\n \"20.150.189.16/29\",\r\n
+ \ \"20.150.190.32/27\",\r\n \"20.187.194.224/28\",\r\n \"20.187.196.128/26\",\r\n
+ \ \"20.189.224.64/26\",\r\n \"20.191.160.192/26\",\r\n \"20.192.99.200/29\",\r\n
+ \ \"20.192.101.0/28\",\r\n \"20.192.101.16/29\",\r\n \"20.192.167.0/26\",\r\n
+ \ \"20.192.231.64/26\",\r\n \"20.192.235.240/29\",\r\n \"20.192.238.112/29\",\r\n
+ \ \"20.192.238.192/27\",\r\n \"20.193.203.224/27\",\r\n \"20.194.67.64/27\",\r\n
+ \ \"23.98.83.72/29\",\r\n \"23.98.86.32/28\",\r\n \"23.98.86.48/29\",\r\n
+ \ \"23.98.104.176/28\",\r\n \"23.98.108.64/26\",\r\n \"40.64.132.144/28\",\r\n
+ \ \"40.67.52.0/26\",\r\n \"40.67.60.72/29\",\r\n \"40.67.60.112/28\",\r\n
+ \ \"40.67.60.160/29\",\r\n \"40.69.108.80/29\",\r\n \"40.69.108.176/28\",\r\n
+ \ \"40.69.110.160/29\",\r\n \"40.70.148.56/29\",\r\n \"40.70.151.48/28\",\r\n
+ \ \"40.70.151.64/29\",\r\n \"40.71.13.248/29\",\r\n \"40.71.14.120/29\",\r\n
+ \ \"40.71.15.128/28\",\r\n \"40.74.149.40/29\",\r\n \"40.74.149.56/29\",\r\n
+ \ \"40.74.149.80/28\",\r\n \"40.75.35.72/29\",\r\n \"40.75.35.192/28\",\r\n
+ \ \"40.75.35.208/29\",\r\n \"40.78.196.80/29\",\r\n \"40.78.196.144/28\",\r\n
+ \ \"40.78.196.160/29\",\r\n \"40.78.204.8/29\",\r\n \"40.78.204.144/28\",\r\n
+ \ \"40.78.204.192/29\",\r\n \"40.78.229.80/28\",\r\n \"40.78.229.112/28\",\r\n
+ \ \"40.78.236.136/29\",\r\n \"40.78.238.32/28\",\r\n \"40.78.238.48/29\",\r\n
+ \ \"40.78.243.176/28\",\r\n \"40.78.245.128/28\",\r\n \"40.78.251.144/28\",\r\n
+ \ \"40.78.251.208/28\",\r\n \"40.79.132.88/29\",\r\n \"40.79.139.64/28\",\r\n
+ \ \"40.79.139.128/28\",\r\n \"40.79.146.208/28\",\r\n \"40.79.148.64/28\",\r\n
+ \ \"40.79.156.96/28\",\r\n \"40.79.163.64/29\",\r\n \"40.79.163.128/28\",\r\n
+ \ \"40.79.163.144/29\",\r\n \"40.79.165.96/27\",\r\n \"40.79.171.112/28\",\r\n
+ \ \"40.79.171.176/28\",\r\n \"40.79.180.48/29\",\r\n \"40.79.180.128/28\",\r\n
+ \ \"40.79.180.144/29\",\r\n \"40.79.187.192/29\",\r\n \"40.79.189.32/28\",\r\n
+ \ \"40.79.189.48/29\",\r\n \"40.79.195.176/28\",\r\n \"40.79.195.240/28\",\r\n
+ \ \"40.80.51.112/28\",\r\n \"40.80.51.176/28\",\r\n \"40.80.62.32/28\",\r\n
+ \ \"40.80.172.48/28\",\r\n \"40.80.173.64/26\",\r\n \"40.80.176.40/29\",\r\n
+ \ \"40.80.176.56/29\",\r\n \"40.80.176.112/28\",\r\n \"40.80.191.240/28\",\r\n
+ \ \"40.89.20.160/28\",\r\n \"40.89.23.128/26\",\r\n \"40.119.11.192/28\",\r\n
+ \ \"40.120.75.128/27\",\r\n \"51.11.192.0/28\",\r\n \"51.11.192.16/29\",\r\n
+ \ \"51.12.43.64/26\",\r\n \"51.12.99.216/29\",\r\n \"51.12.100.48/28\",\r\n
+ \ \"51.12.100.96/29\",\r\n \"51.12.102.128/27\",\r\n \"51.12.195.64/26\",\r\n
+ \ \"51.12.204.48/28\",\r\n \"51.12.204.96/28\",\r\n \"51.12.206.32/27\",\r\n
+ \ \"51.12.227.200/29\",\r\n \"51.12.229.0/28\",\r\n \"51.12.229.16/29\",\r\n
+ \ \"51.12.235.200/29\",\r\n \"51.12.237.0/28\",\r\n \"51.12.237.16/29\",\r\n
+ \ \"51.104.9.48/28\",\r\n \"51.104.29.224/28\",\r\n \"51.105.67.184/29\",\r\n
+ \ \"51.105.67.216/29\",\r\n \"51.105.69.64/28\",\r\n \"51.105.75.224/28\",\r\n
+ \ \"51.105.77.32/28\",\r\n \"51.105.83.64/26\",\r\n \"51.105.90.176/28\",\r\n
+ \ \"51.105.93.0/26\",\r\n \"51.107.51.48/28\",\r\n \"51.107.53.128/26\",\r\n
+ \ \"51.107.60.56/29\",\r\n \"51.107.60.128/28\",\r\n \"51.107.60.144/29\",\r\n
+ \ \"51.107.147.48/28\",\r\n \"51.107.148.192/26\",\r\n \"51.107.156.64/29\",\r\n
+ \ \"51.107.156.136/29\",\r\n \"51.107.156.144/28\",\r\n \"51.116.49.192/28\",\r\n
+ \ \"51.116.51.64/26\",\r\n \"51.116.60.56/29\",\r\n \"51.116.60.88/29\",\r\n
+ \ \"51.116.60.128/28\",\r\n \"51.116.145.176/28\",\r\n \"51.116.148.0/26\",\r\n
+ \ \"51.116.156.56/29\",\r\n \"51.116.156.168/29\",\r\n \"51.116.158.32/28\",\r\n
+ \ \"51.116.158.48/29\",\r\n \"51.116.243.152/29\",\r\n \"51.116.243.192/28\",\r\n
+ \ \"51.116.243.208/29\",\r\n \"51.116.245.128/27\",\r\n \"51.116.251.40/29\",\r\n
+ \ \"51.116.251.160/28\",\r\n \"51.116.251.176/29\",\r\n \"51.116.253.64/27\",\r\n
+ \ \"51.120.43.96/28\",\r\n \"51.120.45.0/26\",\r\n \"51.120.100.56/29\",\r\n
+ \ \"51.120.100.128/28\",\r\n \"51.120.100.144/29\",\r\n \"51.120.107.200/29\",\r\n
+ \ \"51.120.109.0/28\",\r\n \"51.120.109.16/29\",\r\n \"51.120.110.160/27\",\r\n
+ \ \"51.120.211.200/29\",\r\n \"51.120.213.0/28\",\r\n \"51.120.213.16/29\",\r\n
+ \ \"51.120.220.56/29\",\r\n \"51.120.220.96/28\",\r\n \"51.120.220.112/29\",\r\n
+ \ \"51.120.227.96/28\",\r\n \"51.120.229.0/26\",\r\n \"51.137.164.128/28\",\r\n
+ \ \"51.137.167.0/26\",\r\n \"51.140.148.40/29\",\r\n \"51.140.149.16/29\",\r\n
+ \ \"51.140.212.96/29\",\r\n \"51.140.212.192/28\",\r\n \"51.140.212.208/29\",\r\n
+ \ \"51.143.195.64/26\",\r\n \"51.143.208.64/26\",\r\n \"52.136.51.96/28\",\r\n
+ \ \"52.136.52.128/26\",\r\n \"52.138.92.88/29\",\r\n \"52.138.92.144/28\",\r\n
+ \ \"52.138.92.160/29\",\r\n \"52.138.227.176/28\",\r\n \"52.138.229.48/28\",\r\n
+ \ \"52.140.108.112/28\",\r\n \"52.140.108.128/28\",\r\n \"52.140.111.0/26\",\r\n
+ \ \"52.146.131.192/26\",\r\n \"52.150.152.64/28\",\r\n \"52.150.156.128/26\",\r\n
+ \ \"52.162.111.32/28\",\r\n \"52.162.111.112/28\",\r\n \"52.167.107.112/28\",\r\n
+ \ \"52.167.107.240/28\",\r\n \"52.172.112.64/26\",\r\n \"52.182.141.0/29\",\r\n
+ \ \"52.182.141.32/28\",\r\n \"52.182.141.48/29\",\r\n \"52.228.85.208/28\",\r\n
+ \ \"52.231.20.8/29\",\r\n \"52.231.20.80/28\",\r\n \"52.231.23.0/29\",\r\n
+ \ \"52.231.148.112/29\",\r\n \"52.231.148.176/28\",\r\n \"52.231.148.192/29\",\r\n
+ \ \"52.236.186.248/29\",\r\n \"52.236.187.96/28\",\r\n \"52.236.189.64/29\",\r\n
+ \ \"52.246.155.176/28\",\r\n \"52.246.155.240/28\",\r\n \"52.246.157.32/27\",\r\n
+ \ \"65.52.252.112/29\",\r\n \"65.52.252.224/28\",\r\n \"65.52.252.240/29\",\r\n
+ \ \"102.133.28.96/29\",\r\n \"102.133.28.152/29\",\r\n \"102.133.28.192/28\",\r\n
+ \ \"102.133.58.240/28\",\r\n \"102.133.60.128/26\",\r\n \"102.133.124.80/29\",\r\n
+ \ \"102.133.124.112/28\",\r\n \"102.133.124.128/29\",\r\n
+ \ \"102.133.156.120/29\",\r\n \"102.133.156.152/29\",\r\n
+ \ \"102.133.156.160/28\",\r\n \"102.133.218.160/28\",\r\n
+ \ \"102.133.220.128/26\",\r\n \"102.133.251.88/29\",\r\n
+ \ \"102.133.251.192/28\",\r\n \"102.133.251.208/29\",\r\n
+ \ \"104.46.177.192/26\",\r\n \"104.214.161.0/29\",\r\n \"104.214.161.16/28\",\r\n
+ \ \"104.214.161.32/29\",\r\n \"168.61.142.96/27\",\r\n \"191.233.11.144/28\",\r\n
+ \ \"191.233.14.128/26\",\r\n \"191.233.51.224/27\",\r\n \"191.233.205.112/28\",\r\n
+ \ \"191.233.205.176/28\",\r\n \"191.234.136.96/28\",\r\n
+ \ \"191.234.139.64/26\",\r\n \"191.234.147.200/29\",\r\n
+ \ \"191.234.149.16/28\",\r\n \"191.234.149.128/29\",\r\n
+ \ \"191.234.149.192/27\",\r\n \"191.234.155.200/29\",\r\n
+ \ \"191.234.157.16/28\",\r\n \"191.234.157.32/29\",\r\n \"191.234.157.96/27\",\r\n
+ \ \"2603:1000:4:402::2e0/123\",\r\n \"2603:1000:104:402::2e0/123\",\r\n
+ \ \"2603:1000:104:802::220/123\",\r\n \"2603:1000:104:c02::220/123\",\r\n
+ \ \"2603:1010:6:402::2e0/123\",\r\n \"2603:1010:6:802::220/123\",\r\n
+ \ \"2603:1010:6:c02::220/123\",\r\n \"2603:1010:101:402::2e0/123\",\r\n
+ \ \"2603:1010:304:402::2e0/123\",\r\n \"2603:1010:404:402::2e0/123\",\r\n
+ \ \"2603:1020:5:402::2e0/123\",\r\n \"2603:1020:5:802::220/123\",\r\n
+ \ \"2603:1020:5:c02::220/123\",\r\n \"2603:1020:206:402::2e0/123\",\r\n
+ \ \"2603:1020:206:802::220/123\",\r\n \"2603:1020:206:c02::220/123\",\r\n
+ \ \"2603:1020:305:402::2e0/123\",\r\n \"2603:1020:405:402::2e0/123\",\r\n
+ \ \"2603:1020:605:402::2e0/123\",\r\n \"2603:1020:705:402::2e0/123\",\r\n
+ \ \"2603:1020:705:802::220/123\",\r\n \"2603:1020:705:c02::220/123\",\r\n
+ \ \"2603:1020:805:402::2e0/123\",\r\n \"2603:1020:805:802::220/123\",\r\n
+ \ \"2603:1020:805:c02::220/123\",\r\n \"2603:1020:905:402::2e0/123\",\r\n
+ \ \"2603:1020:a04:402::2e0/123\",\r\n \"2603:1020:a04:802::220/123\",\r\n
+ \ \"2603:1020:a04:c02::220/123\",\r\n \"2603:1020:b04:402::2e0/123\",\r\n
+ \ \"2603:1020:c04:402::2e0/123\",\r\n \"2603:1020:c04:802::220/123\",\r\n
+ \ \"2603:1020:c04:c02::220/123\",\r\n \"2603:1020:d04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:3::2c0/122\",\r\n \"2603:1020:e04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:802::220/123\",\r\n \"2603:1020:e04:c02::220/123\",\r\n
+ \ \"2603:1020:f04:402::2e0/123\",\r\n \"2603:1020:1004:1::340/122\",\r\n
+ \ \"2603:1020:1004:400::1e0/123\",\r\n \"2603:1020:1004:400::380/123\",\r\n
+ \ \"2603:1020:1004:c02::280/123\",\r\n \"2603:1020:1104:1::100/122\",\r\n
+ \ \"2603:1020:1104:400::2e0/123\",\r\n \"2603:1030:f:2::680/122\",\r\n
+ \ \"2603:1030:f:400::ae0/123\",\r\n \"2603:1030:10:402::2e0/123\",\r\n
+ \ \"2603:1030:10:802::220/123\",\r\n \"2603:1030:10:c02::220/123\",\r\n
+ \ \"2603:1030:104:402::2e0/123\",\r\n \"2603:1030:107::7c0/122\",\r\n
+ \ \"2603:1030:107:400::260/123\",\r\n \"2603:1030:210:402::2e0/123\",\r\n
+ \ \"2603:1030:210:802::220/123\",\r\n \"2603:1030:210:c02::220/123\",\r\n
+ \ \"2603:1030:40b:400::ae0/123\",\r\n \"2603:1030:40b:800::220/123\",\r\n
+ \ \"2603:1030:40b:c00::220/123\",\r\n \"2603:1030:40c:402::2e0/123\",\r\n
+ \ \"2603:1030:40c:802::220/123\",\r\n \"2603:1030:40c:c02::220/123\",\r\n
+ \ \"2603:1030:504::340/122\",\r\n \"2603:1030:504:402::1e0/123\",\r\n
+ \ \"2603:1030:504:402::380/123\",\r\n \"2603:1030:504:802::260/123\",\r\n
+ \ \"2603:1030:504:c02::280/123\",\r\n \"2603:1030:608:402::2e0/123\",\r\n
+ \ \"2603:1030:807:402::2e0/123\",\r\n \"2603:1030:807:802::220/123\",\r\n
+ \ \"2603:1030:807:c02::220/123\",\r\n \"2603:1030:a07:402::960/123\",\r\n
+ \ \"2603:1030:b04:402::2e0/123\",\r\n \"2603:1030:c06:400::ae0/123\",\r\n
+ \ \"2603:1030:c06:802::220/123\",\r\n \"2603:1030:c06:c02::220/123\",\r\n
+ \ \"2603:1030:f05:402::2e0/123\",\r\n \"2603:1030:f05:802::220/123\",\r\n
+ \ \"2603:1030:f05:c02::220/123\",\r\n \"2603:1030:1005:402::2e0/123\",\r\n
+ \ \"2603:1040:5:402::2e0/123\",\r\n \"2603:1040:5:802::220/123\",\r\n
+ \ \"2603:1040:5:c02::220/123\",\r\n \"2603:1040:207:402::2e0/123\",\r\n
+ \ \"2603:1040:407:402::2e0/123\",\r\n \"2603:1040:407:802::220/123\",\r\n
+ \ \"2603:1040:407:c02::220/123\",\r\n \"2603:1040:606:402::2e0/123\",\r\n
+ \ \"2603:1040:806:402::2e0/123\",\r\n \"2603:1040:904:402::2e0/123\",\r\n
+ \ \"2603:1040:904:802::220/123\",\r\n \"2603:1040:904:c02::220/123\",\r\n
+ \ \"2603:1040:a06:402::2e0/123\",\r\n \"2603:1040:a06:802::220/123\",\r\n
+ \ \"2603:1040:a06:c02::220/123\",\r\n \"2603:1040:b04:402::2e0/123\",\r\n
+ \ \"2603:1040:c06:402::2e0/123\",\r\n \"2603:1040:d04:1::340/122\",\r\n
+ \ \"2603:1040:d04:400::1e0/123\",\r\n \"2603:1040:d04:400::380/123\",\r\n
+ \ \"2603:1040:d04:c02::280/123\",\r\n \"2603:1040:f05:2::200/122\",\r\n
+ \ \"2603:1040:f05:402::2e0/123\",\r\n \"2603:1040:f05:802::220/123\",\r\n
+ \ \"2603:1040:f05:c02::220/123\",\r\n \"2603:1040:1104:1::100/122\",\r\n
+ \ \"2603:1040:1104:400::2e0/123\",\r\n \"2603:1050:6:402::2e0/123\",\r\n
+ \ \"2603:1050:6:802::220/123\",\r\n \"2603:1050:6:c02::220/123\",\r\n
+ \ \"2603:1050:403:400::200/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApplicationInsightsAvailability\",\r\n \"id\":
+ \"ApplicationInsightsAvailability\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ApplicationInsightsAvailability\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.97.224/27\",\r\n \"13.86.98.0/27\",\r\n
+ \ \"13.86.98.48/28\",\r\n \"13.86.98.64/28\",\r\n \"20.37.156.64/27\",\r\n
+ \ \"20.37.192.80/29\",\r\n \"20.38.80.80/28\",\r\n \"20.40.104.96/27\",\r\n
+ \ \"20.40.104.128/27\",\r\n \"20.40.124.176/28\",\r\n \"20.40.124.240/28\",\r\n
+ \ \"20.40.125.80/28\",\r\n \"20.40.129.32/27\",\r\n \"20.40.129.64/26\",\r\n
+ \ \"20.40.129.128/27\",\r\n \"20.42.4.64/27\",\r\n \"20.42.35.32/28\",\r\n
+ \ \"20.42.35.64/26\",\r\n \"20.42.35.128/28\",\r\n \"20.42.129.32/27\",\r\n
+ \ \"20.43.40.80/28\",\r\n \"20.43.64.80/29\",\r\n \"20.43.128.96/29\",\r\n
+ \ \"20.45.5.160/27\",\r\n \"20.45.5.192/26\",\r\n \"20.189.106.64/29\",\r\n
+ \ \"23.100.224.16/28\",\r\n \"23.100.224.32/27\",\r\n \"23.100.224.64/26\",\r\n
+ \ \"23.100.225.0/28\",\r\n \"40.74.24.80/28\",\r\n \"40.80.186.128/26\",\r\n
+ \ \"40.91.82.48/28\",\r\n \"40.91.82.64/26\",\r\n \"40.91.82.128/28\",\r\n
+ \ \"40.119.8.96/27\",\r\n \"51.104.24.80/29\",\r\n \"51.105.9.128/27\",\r\n
+ \ \"51.105.9.160/28\",\r\n \"51.137.160.80/29\",\r\n \"51.144.56.96/27\",\r\n
+ \ \"51.144.56.128/26\",\r\n \"52.139.250.96/27\",\r\n \"52.139.250.128/27\",\r\n
+ \ \"52.140.232.160/27\",\r\n \"52.140.232.192/28\",\r\n \"52.158.28.64/26\",\r\n
+ \ \"52.229.216.48/28\",\r\n \"52.229.216.64/27\",\r\n \"191.233.26.64/28\",\r\n
+ \ \"191.233.26.128/28\",\r\n \"191.233.26.176/28\",\r\n \"191.235.224.80/29\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApplicationInsightsAvailability.JapanEast\",\r\n
+ \ \"id\": \"ApplicationInsightsAvailability.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ApplicationInsightsAvailability\",\r\n \"addressPrefixes\": [\r\n
+ \ \"20.43.64.80/29\",\r\n \"52.140.232.160/27\",\r\n \"52.140.232.192/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService\",\r\n
+ \ \"id\": \"AppService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.110/32\",\r\n \"13.65.30.245/32\",\r\n
+ \ \"13.65.37.122/32\",\r\n \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n
+ \ \"13.65.42.183/32\",\r\n \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n
+ \ \"13.65.89.91/32\",\r\n \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n
+ \ \"13.65.95.109/32\",\r\n \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n
+ \ \"13.65.210.166/32\",\r\n \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n
+ \ \"13.65.243.110/32\",\r\n \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n
+ \ \"13.66.39.88/32\",\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.67.9.0/25\",\r\n
+ \ \"13.67.56.225/32\",\r\n \"13.67.63.90/32\",\r\n \"13.67.129.26/32\",\r\n
+ \ \"13.67.141.98/32\",\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.69.68.0/23\",\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n \"13.71.122.35/32\",\r\n
+ \ \"13.71.123.138/32\",\r\n \"13.71.149.151/32\",\r\n \"13.71.170.128/27\",\r\n
+ \ \"13.71.194.192/27\",\r\n \"13.73.1.134/32\",\r\n \"13.73.26.73/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.74.41.233/32\",\r\n
+ \ \"13.74.147.218/32\",\r\n \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n
+ \ \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n \"13.75.47.15/32\",\r\n
+ \ \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n \"13.75.115.40/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"13.77.7.175/32\",\r\n \"13.77.50.96/27\",\r\n \"13.77.82.141/32\",\r\n
+ \ \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"13.78.59.237/32\",\r\n
+ \ \"13.78.106.96/27\",\r\n \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n
+ \ \"13.78.150.96/32\",\r\n \"13.78.184.89/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n \"13.82.175.96/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"13.89.57.7/32\",\r\n
+ \ \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n \"13.90.143.69/32\",\r\n
+ \ \"13.90.213.204/32\",\r\n \"13.91.40.166/32\",\r\n \"13.91.242.166/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n \"13.93.220.109/32\",\r\n
+ \ \"13.93.231.75/32\",\r\n \"13.94.47.87/32\",\r\n \"13.94.143.57/32\",\r\n
+ \ \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n \"13.95.82.181/32\",\r\n
+ \ \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n \"13.95.238.192/32\",\r\n
+ \ \"20.36.43.207/32\",\r\n \"20.36.72.230/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n \"20.37.66.0/27\",\r\n
+ \ \"20.37.74.96/27\",\r\n \"20.37.196.192/27\",\r\n \"20.37.226.0/27\",\r\n
+ \ \"20.38.138.0/27\",\r\n \"20.38.146.160/27\",\r\n \"20.39.11.104/29\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"20.41.66.224/27\",\r\n \"20.41.195.192/27\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.42.128.96/27\",\r\n \"20.42.228.160/27\",\r\n
+ \ \"20.43.43.32/27\",\r\n \"20.43.67.32/27\",\r\n \"20.43.132.128/25\",\r\n
+ \ \"20.44.2.32/27\",\r\n \"20.44.26.160/27\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.45.196.16/29\",\r\n \"20.49.82.32/27\",\r\n \"20.49.90.32/27\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"20.49.104.0/25\",\r\n \"20.50.2.0/23\",\r\n
+ \ \"20.50.64.0/25\",\r\n \"20.72.26.32/27\",\r\n \"20.150.170.192/27\",\r\n
+ \ \"20.150.178.160/27\",\r\n \"20.150.186.160/27\",\r\n \"20.188.98.74/32\",\r\n
+ \ \"20.189.104.96/27\",\r\n \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n
+ \ \"20.192.98.160/27\",\r\n \"20.192.234.128/27\",\r\n \"20.193.202.128/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"23.96.0.52/32\",\r\n \"23.96.1.109/32\",\r\n
+ \ \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n \"23.96.96.142/32\",\r\n
+ \ \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n \"23.96.113.128/32\",\r\n
+ \ \"23.96.124.25/32\",\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n
+ \ \"23.96.207.177/32\",\r\n \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n
+ \ \"23.97.56.169/32\",\r\n \"23.97.79.119/32\",\r\n \"23.97.96.32/32\",\r\n
+ \ \"23.97.160.56/32\",\r\n \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n
+ \ \"23.97.195.129/32\",\r\n \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n
+ \ \"23.97.216.47/32\",\r\n \"23.97.224.11/32\",\r\n \"23.98.64.36/32\",\r\n
+ \ \"23.98.64.158/32\",\r\n \"23.99.0.12/32\",\r\n \"23.99.65.65/32\",\r\n
+ \ \"23.99.91.55/32\",\r\n \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n
+ \ \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n \"23.99.192.132/32\",\r\n
+ \ \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n \"23.99.224.56/32\",\r\n
+ \ \"23.100.1.29/32\",\r\n \"23.100.46.198/32\",\r\n \"23.100.48.106/32\",\r\n
+ \ \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n \"23.100.56.27/32\",\r\n
+ \ \"23.100.72.240/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"23.101.27.182/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.101.67.245/32\",\r\n \"23.101.118.145/32\",\r\n \"23.101.119.44/32\",\r\n
+ \ \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n \"23.101.125.65/32\",\r\n
+ \ \"23.101.147.117/32\",\r\n \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n
+ \ \"23.101.172.244/32\",\r\n \"23.101.180.75/32\",\r\n \"23.101.203.117/32\",\r\n
+ \ \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"23.101.224.24/32\",\r\n \"23.101.230.162/32\",\r\n \"23.102.12.43/32\",\r\n
+ \ \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n \"23.102.25.149/32\",\r\n
+ \ \"23.102.28.178/32\",\r\n \"23.102.154.38/32\",\r\n \"23.102.161.217/32\",\r\n
+ \ \"23.102.191.170/32\",\r\n \"40.64.128.224/27\",\r\n \"40.67.58.192/27\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.106.96/27\",\r\n \"40.69.190.41/32\",\r\n
+ \ \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n \"40.69.218.150/32\",\r\n
+ \ \"40.70.27.35/32\",\r\n \"40.70.147.0/25\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.74.100.128/27\",\r\n
+ \ \"40.74.133.20/32\",\r\n \"40.74.245.188/32\",\r\n \"40.74.253.108/32\",\r\n
+ \ \"40.74.255.112/32\",\r\n \"40.76.5.137/32\",\r\n \"40.76.192.15/32\",\r\n
+ \ \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n \"40.76.223.101/32\",\r\n
+ \ \"40.77.56.174/32\",\r\n \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n
+ \ \"40.78.48.219/32\",\r\n \"40.78.194.96/27\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"40.79.65.200/32\",\r\n \"40.79.130.128/27\",\r\n \"40.79.154.192/27\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.79.178.96/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.80.50.160/27\",\r\n \"40.80.58.224/27\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.80.170.224/27\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"40.82.191.84/32\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.82.255.128/25\",\r\n \"40.83.16.172/32\",\r\n \"40.83.72.59/32\",\r\n
+ \ \"40.83.124.73/32\",\r\n \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n
+ \ \"40.83.182.206/32\",\r\n \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n
+ \ \"40.84.54.203/32\",\r\n \"40.84.59.174/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.85.74.227/32\",\r\n
+ \ \"40.85.92.115/32\",\r\n \"40.85.96.208/32\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n \"40.86.86.144/32\",\r\n
+ \ \"40.86.91.212/32\",\r\n \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n
+ \ \"40.86.225.89/32\",\r\n \"40.86.230.96/32\",\r\n \"40.87.65.131/32\",\r\n
+ \ \"40.87.70.95/32\",\r\n \"40.89.19.0/27\",\r\n \"40.89.131.148/32\",\r\n
+ \ \"40.89.141.103/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.112.142.148/32\",\r\n \"40.112.143.134/32\",\r\n
+ \ \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n \"40.112.165.44/32\",\r\n
+ \ \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n \"40.112.192.69/32\",\r\n
+ \ \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n \"40.113.2.52/32\",\r\n
+ \ \"40.113.65.9/32\",\r\n \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n
+ \ \"40.113.90.202/32\",\r\n \"40.113.126.251/32\",\r\n \"40.113.131.37/32\",\r\n
+ \ \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n
+ \ \"40.114.228.161/32\",\r\n \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n
+ \ \"40.115.55.251/32\",\r\n \"40.115.98.85/32\",\r\n \"40.115.179.121/32\",\r\n
+ \ \"40.115.251.148/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n
+ \ \"40.118.96.231/32\",\r\n \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n
+ \ \"40.118.102.46/32\",\r\n \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n
+ \ \"40.118.246.51/32\",\r\n \"40.118.255.59/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.120.74.32/27\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n \"40.124.12.75/32\",\r\n
+ \ \"40.124.13.58/32\",\r\n \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n
+ \ \"40.126.242.59/32\",\r\n \"40.126.245.169/32\",\r\n \"40.127.132.204/32\",\r\n
+ \ \"40.127.139.252/32\",\r\n \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n
+ \ \"51.12.98.192/27\",\r\n \"51.12.202.192/27\",\r\n \"51.12.226.160/27\",\r\n
+ \ \"51.12.234.160/27\",\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.105.90.32/27\",\r\n \"51.105.172.25/32\",\r\n
+ \ \"51.107.50.0/27\",\r\n \"51.107.58.160/27\",\r\n \"51.107.146.0/27\",\r\n
+ \ \"51.107.154.160/27\",\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n \"51.116.242.160/27\",\r\n
+ \ \"51.116.250.160/27\",\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"51.120.218.192/27\",\r\n
+ \ \"51.120.226.0/27\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.137.163.32/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.140.210.96/27\",\r\n \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n
+ \ \"51.141.12.112/32\",\r\n \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n
+ \ \"51.141.45.207/32\",\r\n \"51.141.90.252/32\",\r\n \"51.143.102.21/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n
+ \ \"51.144.116.43/32\",\r\n \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n
+ \ \"52.136.50.0/27\",\r\n \"52.136.138.55/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.140.106.224/27\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"52.150.140.224/27\",\r\n \"52.151.62.51/32\",\r\n \"52.160.40.218/32\",\r\n
+ \ \"52.161.96.193/32\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"52.172.54.225/32\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"52.173.28.95/32\",\r\n \"52.173.36.83/32\",\r\n
+ \ \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n \"52.173.83.49/32\",\r\n
+ \ \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n \"52.173.94.173/32\",\r\n
+ \ \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n \"52.173.139.125/32\",\r\n
+ \ \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n \"52.173.184.147/32\",\r\n
+ \ \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.175.158.219/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.176.2.229/32\",\r\n
+ \ \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n \"52.176.6.37/32\",\r\n
+ \ \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n \"52.176.149.197/32\",\r\n
+ \ \"52.176.165.69/32\",\r\n \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n
+ \ \"52.177.206.73/32\",\r\n \"52.178.29.39/32\",\r\n \"52.178.37.244/32\",\r\n
+ \ \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n \"52.178.46.181/32\",\r\n
+ \ \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n \"52.178.89.129/32\",\r\n
+ \ \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n \"52.178.105.179/32\",\r\n
+ \ \"52.178.114.226/32\",\r\n \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n
+ \ \"52.178.179.169/32\",\r\n \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n
+ \ \"52.178.208.12/32\",\r\n \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n
+ \ \"52.179.97.15/32\",\r\n \"52.179.188.206/32\",\r\n \"52.180.178.6/32\",\r\n
+ \ \"52.180.183.66/32\",\r\n \"52.183.82.125/32\",\r\n \"52.184.162.135/32\",\r\n
+ \ \"52.184.193.103/32\",\r\n \"52.184.193.104/32\",\r\n \"52.187.17.126/32\",\r\n
+ \ \"52.187.36.104/32\",\r\n \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n
+ \ \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n \"52.189.213.49/32\",\r\n
+ \ \"52.225.179.39/32\",\r\n \"52.225.190.65/32\",\r\n \"52.226.134.64/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"52.229.115.84/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n \"52.231.38.95/32\",\r\n
+ \ \"52.231.77.58/32\",\r\n \"52.231.146.96/27\",\r\n \"52.231.200.101/32\",\r\n
+ \ \"52.231.200.179/32\",\r\n \"52.232.19.237/32\",\r\n \"52.232.26.228/32\",\r\n
+ \ \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n \"52.232.127.196/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"52.234.209.94/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n
+ \ \"52.237.246.162/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"52.243.39.89/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"52.252.160.21/32\",\r\n \"52.253.224.223/32\",\r\n
+ \ \"52.255.35.249/32\",\r\n \"52.255.54.134/32\",\r\n \"65.52.24.41/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"65.52.213.73/32\",\r\n \"65.52.217.59/32\",\r\n
+ \ \"65.52.218.253/32\",\r\n \"65.52.250.96/27\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n \"102.133.122.160/27\",\r\n
+ \ \"102.133.154.32/27\",\r\n \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"104.40.3.53/32\",\r\n \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n
+ \ \"104.40.53.219/32\",\r\n \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n
+ \ \"104.40.92.107/32\",\r\n \"104.40.129.89/32\",\r\n \"104.40.147.180/32\",\r\n
+ \ \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n \"104.40.179.243/32\",\r\n
+ \ \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n \"104.40.187.26/32\",\r\n
+ \ \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n \"104.40.215.219/32\",\r\n
+ \ \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n \"104.41.9.139/32\",\r\n
+ \ \"104.41.13.179/32\",\r\n \"104.41.63.108/32\",\r\n \"104.41.186.103/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.42.53.248/32\",\r\n
+ \ \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n \"104.42.148.55/32\",\r\n
+ \ \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n \"104.42.188.146/32\",\r\n
+ \ \"104.42.231.5/32\",\r\n \"104.43.129.105/32\",\r\n \"104.43.140.101/32\",\r\n
+ \ \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n \"104.43.246.71/32\",\r\n
+ \ \"104.43.254.102/32\",\r\n \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"104.45.129.178/32\",\r\n \"104.45.141.247/32\",\r\n
+ \ \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n \"104.45.154.200/32\",\r\n
+ \ \"104.45.226.98/32\",\r\n \"104.45.231.79/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.46.101.59/32\",\r\n
+ \ \"104.47.137.62/32\",\r\n \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n
+ \ \"104.47.164.119/32\",\r\n \"104.208.48.107/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"104.210.38.149/32\",\r\n \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n
+ \ \"104.210.145.181/32\",\r\n \"104.210.147.57/32\",\r\n
+ \ \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.211.26.212/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"104.211.146.96/27\",\r\n \"104.211.160.159/32\",\r\n
+ \ \"104.211.179.11/32\",\r\n \"104.211.184.197/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"104.215.11.176/32\",\r\n
+ \ \"104.215.58.230/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n
+ \ \"111.221.95.27/32\",\r\n \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"137.117.9.212/32\",\r\n \"137.117.17.70/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.117.166.35/32\",\r\n \"137.117.175.14/32\",\r\n
+ \ \"137.117.203.130/32\",\r\n \"137.117.211.244/32\",\r\n
+ \ \"137.117.218.101/32\",\r\n \"137.117.224.218/32\",\r\n
+ \ \"137.117.225.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"138.91.0.30/32\",\r\n \"138.91.16.18/32\",\r\n \"138.91.224.84/32\",\r\n
+ \ \"138.91.225.40/32\",\r\n \"138.91.240.81/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.61.152.29/32\",\r\n \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n
+ \ \"168.61.218.125/32\",\r\n \"168.62.20.37/32\",\r\n \"168.62.48.183/32\",\r\n
+ \ \"168.62.180.173/32\",\r\n \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.53.239/32\",\r\n \"168.63.107.5/32\",\r\n
+ \ \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n \"191.233.50.32/27\",\r\n
+ \ \"191.233.82.44/32\",\r\n \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.16.188/32\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n \"191.235.177.30/32\",\r\n
+ \ \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"191.236.16.12/32\",\r\n \"191.236.59.67/32\",\r\n
+ \ \"191.236.80.12/32\",\r\n \"191.236.106.123/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"191.236.192.121/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n
+ \ \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"191.239.58.162/32\",\r\n \"191.239.188.11/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1000:4:402::a0/123\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\",\r\n
+ \ \"2603:1010:101:402::a0/123\",\r\n \"2603:1010:304:402::a0/123\",\r\n
+ \ \"2603:1010:404:402::a0/123\",\r\n \"2603:1020:5:402::a0/123\",\r\n
+ \ \"2603:1020:5:802::a0/123\",\r\n \"2603:1020:5:c02::a0/123\",\r\n
+ \ \"2603:1020:206:402::a0/123\",\r\n \"2603:1020:206:802::a0/123\",\r\n
+ \ \"2603:1020:206:c02::a0/123\",\r\n \"2603:1020:305:402::a0/123\",\r\n
+ \ \"2603:1020:405:402::a0/123\",\r\n \"2603:1020:605:402::a0/123\",\r\n
+ \ \"2603:1020:705:402::a0/123\",\r\n \"2603:1020:705:802::a0/123\",\r\n
+ \ \"2603:1020:705:c02::a0/123\",\r\n \"2603:1020:805:402::a0/123\",\r\n
+ \ \"2603:1020:805:802::a0/123\",\r\n \"2603:1020:805:c02::a0/123\",\r\n
+ \ \"2603:1020:905:402::a0/123\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\",\r\n
+ \ \"2603:1020:b04:402::a0/123\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\",\r\n
+ \ \"2603:1020:d04:402::a0/123\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\",\r\n
+ \ \"2603:1020:f04:402::a0/123\",\r\n \"2603:1020:1004:400::a0/123\",\r\n
+ \ \"2603:1020:1004:800::160/123\",\r\n \"2603:1020:1004:800::360/123\",\r\n
+ \ \"2603:1020:1104:400::a0/123\",\r\n \"2603:1030:f:400::8a0/123\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\",\r\n \"2603:1030:104:402::a0/123\",\r\n
+ \ \"2603:1030:107:400::20/123\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\",\r\n
+ \ \"2603:1030:40b:400::8a0/123\",\r\n \"2603:1030:40b:800::a0/123\",\r\n
+ \ \"2603:1030:40b:c00::a0/123\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\",\r\n
+ \ \"2603:1030:504:402::a0/123\",\r\n \"2603:1030:504:802::160/123\",\r\n
+ \ \"2603:1030:504:802::360/123\",\r\n \"2603:1030:504:c02::3a0/123\",\r\n
+ \ \"2603:1030:608:402::a0/123\",\r\n \"2603:1030:807:402::a0/123\",\r\n
+ \ \"2603:1030:807:802::a0/123\",\r\n \"2603:1030:807:c02::a0/123\",\r\n
+ \ \"2603:1030:a07:402::a0/123\",\r\n \"2603:1030:b04:402::a0/123\",\r\n
+ \ \"2603:1030:c06:400::8a0/123\",\r\n \"2603:1030:c06:802::a0/123\",\r\n
+ \ \"2603:1030:c06:c02::a0/123\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\",\r\n
+ \ \"2603:1030:1005:402::a0/123\",\r\n \"2603:1040:5:402::a0/123\",\r\n
+ \ \"2603:1040:5:802::a0/123\",\r\n \"2603:1040:5:c02::a0/123\",\r\n
+ \ \"2603:1040:207:402::a0/123\",\r\n \"2603:1040:407:402::a0/123\",\r\n
+ \ \"2603:1040:407:802::a0/123\",\r\n \"2603:1040:407:c02::a0/123\",\r\n
+ \ \"2603:1040:606:402::a0/123\",\r\n \"2603:1040:806:402::a0/123\",\r\n
+ \ \"2603:1040:904:402::a0/123\",\r\n \"2603:1040:904:802::a0/123\",\r\n
+ \ \"2603:1040:904:c02::a0/123\",\r\n \"2603:1040:a06:402::a0/123\",\r\n
+ \ \"2603:1040:a06:802::a0/123\",\r\n \"2603:1040:a06:c02::a0/123\",\r\n
+ \ \"2603:1040:b04:402::a0/123\",\r\n \"2603:1040:c06:402::a0/123\",\r\n
+ \ \"2603:1040:d04:400::a0/123\",\r\n \"2603:1040:d04:800::160/123\",\r\n
+ \ \"2603:1040:d04:800::360/123\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\",\r\n
+ \ \"2603:1040:1104:400::a0/123\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\",\r\n
+ \ \"2603:1050:403:400::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaCentral\",\r\n \"id\":
+ \"AppService.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.43.207/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.37.226.0/27\",\r\n \"2603:1010:304:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppService.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.230/32\",\r\n \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n
+ \ \"2603:1010:404:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaEast\",\r\n \"id\": \"AppService.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"20.37.196.192/27\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n \"40.126.242.59/32\",\r\n
+ \ \"40.126.245.169/32\",\r\n \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n
+ \ \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n \"52.237.246.162/32\",\r\n
+ \ \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppService.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.77.7.175/32\",\r\n
+ \ \"13.77.50.96/27\",\r\n \"20.42.228.160/27\",\r\n \"23.101.224.24/32\",\r\n
+ \ \"23.101.230.162/32\",\r\n \"52.189.213.49/32\",\r\n \"52.255.35.249/32\",\r\n
+ \ \"52.255.54.134/32\",\r\n \"191.239.188.11/32\",\r\n \"2603:1010:101:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.BrazilSouth\",\r\n
+ \ \"id\": \"AppService.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.96.32/32\",\r\n \"104.41.9.139/32\",\r\n \"104.41.13.179/32\",\r\n
+ \ \"104.41.63.108/32\",\r\n \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaCentral\",\r\n
+ \ \"id\": \"AppService.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.128/27\",\r\n \"20.38.146.160/27\",\r\n
+ \ \"40.82.191.84/32\",\r\n \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaEast\",\r\n
+ \ \"id\": \"AppService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.96/27\",\r\n \"40.86.225.89/32\",\r\n
+ \ \"40.86.230.96/32\",\r\n \"40.89.19.0/27\",\r\n \"52.229.115.84/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"2603:1030:1005:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CentralIndia\",\r\n
+ \ \"id\": \"AppService.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.98.160/27\",\r\n \"40.80.50.160/27\",\r\n
+ \ \"52.140.106.224/27\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"2603:1040:a06:402::a0/123\",\r\n \"2603:1040:a06:802::a0/123\",\r\n
+ \ \"2603:1040:a06:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUS\",\r\n \"id\": \"AppService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.129.26/32\",\r\n \"13.67.141.98/32\",\r\n
+ \ \"13.89.57.7/32\",\r\n \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n
+ \ \"23.99.192.132/32\",\r\n \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n
+ \ \"23.99.224.56/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.118.145/32\",\r\n
+ \ \"23.101.119.44/32\",\r\n \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n
+ \ \"23.101.125.65/32\",\r\n \"40.69.190.41/32\",\r\n \"40.77.56.174/32\",\r\n
+ \ \"40.83.16.172/32\",\r\n \"40.86.86.144/32\",\r\n \"40.86.91.212/32\",\r\n
+ \ \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.173.28.95/32\",\r\n
+ \ \"52.173.36.83/32\",\r\n \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n
+ \ \"52.173.83.49/32\",\r\n \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n
+ \ \"52.173.94.173/32\",\r\n \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n
+ \ \"52.173.139.125/32\",\r\n \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n
+ \ \"52.173.184.147/32\",\r\n \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n
+ \ \"52.176.2.229/32\",\r\n \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n
+ \ \"52.176.6.37/32\",\r\n \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n
+ \ \"52.176.149.197/32\",\r\n \"52.176.165.69/32\",\r\n \"104.43.129.105/32\",\r\n
+ \ \"104.43.140.101/32\",\r\n \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n
+ \ \"104.43.246.71/32\",\r\n \"104.43.254.102/32\",\r\n \"168.61.152.29/32\",\r\n
+ \ \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n \"168.61.218.125/32\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUSEUAP\",\r\n \"id\": \"AppService.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.196.16/29\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"52.180.178.6/32\",\r\n \"52.180.183.66/32\",\r\n \"104.208.48.107/32\",\r\n
+ \ \"2603:1030:f:400::8a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.EastAsia\",\r\n \"id\": \"AppService.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n
+ \ \"13.75.47.15/32\",\r\n \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n
+ \ \"13.75.115.40/32\",\r\n \"13.94.47.87/32\",\r\n \"20.189.104.96/27\",\r\n
+ \ \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n \"23.97.79.119/32\",\r\n
+ \ \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"40.83.72.59/32\",\r\n \"40.83.124.73/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"191.234.16.188/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1040:207:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS\",\r\n
+ \ \"id\": \"AppService.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n
+ \ \"13.82.175.96/32\",\r\n \"13.90.143.69/32\",\r\n \"13.90.213.204/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.49.104.0/25\",\r\n \"23.96.0.52/32\",\r\n
+ \ \"23.96.1.109/32\",\r\n \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n
+ \ \"23.96.96.142/32\",\r\n \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n
+ \ \"23.96.113.128/32\",\r\n \"23.96.124.25/32\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.76.5.137/32\",\r\n
+ \ \"40.76.192.15/32\",\r\n \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n
+ \ \"40.76.223.101/32\",\r\n \"40.79.154.192/27\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.87.65.131/32\",\r\n \"40.87.70.95/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.179.97.15/32\",\r\n
+ \ \"52.226.134.64/32\",\r\n \"52.234.209.94/32\",\r\n \"104.45.129.178/32\",\r\n
+ \ \"104.45.141.247/32\",\r\n \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n
+ \ \"104.45.154.200/32\",\r\n \"104.211.26.212/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"168.62.48.183/32\",\r\n \"168.62.180.173/32\",\r\n \"191.236.16.12/32\",\r\n
+ \ \"191.236.59.67/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2\",\r\n
+ \ \"id\": \"AppService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.77.82.141/32\",\r\n \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"23.101.147.117/32\",\r\n \"40.70.27.35/32\",\r\n
+ \ \"40.70.147.0/25\",\r\n \"40.79.65.200/32\",\r\n \"40.84.54.203/32\",\r\n
+ \ \"40.84.59.174/32\",\r\n \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n
+ \ \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n \"52.177.206.73/32\",\r\n
+ \ \"52.179.188.206/32\",\r\n \"52.184.162.135/32\",\r\n \"52.184.193.103/32\",\r\n
+ \ \"52.184.193.104/32\",\r\n \"104.46.101.59/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n \"191.236.192.121/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2EUAP\",\r\n
+ \ \"id\": \"AppService.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.11.104/29\",\r\n \"52.225.179.39/32\",\r\n
+ \ \"52.225.190.65/32\",\r\n \"52.253.224.223/32\",\r\n \"2603:1030:40b:400::8a0/123\",\r\n
+ \ \"2603:1030:40b:800::a0/123\",\r\n \"2603:1030:40b:c00::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.FranceCentral\",\r\n
+ \ \"id\": \"AppService.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.43.32/27\",\r\n \"40.79.130.128/27\",\r\n
+ \ \"40.89.131.148/32\",\r\n \"40.89.141.103/32\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"2603:1020:805:402::a0/123\",\r\n \"2603:1020:805:802::a0/123\",\r\n
+ \ \"2603:1020:805:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.FranceSouth\",\r\n \"id\": \"AppService.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.79.178.96/27\",\r\n \"51.105.90.32/27\",\r\n
+ \ \"52.136.138.55/32\",\r\n \"2603:1020:905:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.GermanyNorth\",\r\n
+ \ \"id\": \"AppService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"2603:1020:d04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.GermanyWestCentral\",\r\n \"id\":
+ \"AppService.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n
+ \ \"51.116.242.160/27\",\r\n \"51.116.250.160/27\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.JapanEast\",\r\n
+ \ \"id\": \"AppService.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.149.151/32\",\r\n \"13.73.1.134/32\",\r\n
+ \ \"13.73.26.73/32\",\r\n \"13.78.59.237/32\",\r\n \"13.78.106.96/27\",\r\n
+ \ \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n \"20.43.67.32/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.115.179.121/32\",\r\n \"40.115.251.148/32\",\r\n
+ \ \"52.243.39.89/32\",\r\n \"104.41.186.103/32\",\r\n \"138.91.0.30/32\",\r\n
+ \ \"2603:1040:407:402::a0/123\",\r\n \"2603:1040:407:802::a0/123\",\r\n
+ \ \"2603:1040:407:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.JapanWest\",\r\n \"id\": \"AppService.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.128/27\",\r\n \"40.74.133.20/32\",\r\n
+ \ \"40.80.58.224/27\",\r\n \"52.175.158.219/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.215.11.176/32\",\r\n \"104.215.58.230/32\",\r\n \"138.91.16.18/32\",\r\n
+ \ \"2603:1040:606:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.KoreaCentral\",\r\n \"id\": \"AppService.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.66.224/27\",\r\n \"20.44.26.160/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n
+ \ \"52.231.38.95/32\",\r\n \"52.231.77.58/32\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.KoreaSouth\",\r\n
+ \ \"id\": \"AppService.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.224/27\",\r\n \"52.231.146.96/27\",\r\n
+ \ \"52.231.200.101/32\",\r\n \"52.231.200.179/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AppService.NorthCentralUS\",\r\n
+ \ \"id\": \"AppService.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n \"23.96.207.177/32\",\r\n
+ \ \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n \"23.100.72.240/32\",\r\n
+ \ \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n \"23.101.172.244/32\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.252.160.21/32\",\r\n \"65.52.24.41/32\",\r\n \"65.52.213.73/32\",\r\n
+ \ \"65.52.217.59/32\",\r\n \"65.52.218.253/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"2603:1030:608:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorthEurope\",\r\n \"id\": \"AppService.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.74.41.233/32\",\r\n \"13.74.147.218/32\",\r\n
+ \ \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"20.50.64.0/25\",\r\n
+ \ \"23.100.48.106/32\",\r\n \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n
+ \ \"23.100.56.27/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.102.12.43/32\",\r\n \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n
+ \ \"23.102.25.149/32\",\r\n \"23.102.28.178/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n
+ \ \"40.69.218.150/32\",\r\n \"40.85.74.227/32\",\r\n \"40.85.92.115/32\",\r\n
+ \ \"40.85.96.208/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.113.2.52/32\",\r\n \"40.113.65.9/32\",\r\n
+ \ \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n \"40.113.90.202/32\",\r\n
+ \ \"40.115.98.85/32\",\r\n \"40.127.132.204/32\",\r\n \"40.127.139.252/32\",\r\n
+ \ \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n \"52.178.179.169/32\",\r\n
+ \ \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n \"52.178.208.12/32\",\r\n
+ \ \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"168.63.53.239/32\",\r\n \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n
+ \ \"191.235.177.30/32\",\r\n \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"2603:1020:5:402::a0/123\",\r\n \"2603:1020:5:802::a0/123\",\r\n
+ \ \"2603:1020:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorwayEast\",\r\n \"id\": \"AppService.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.NorwayWest\",\r\n
+ \ \"id\": \"AppService.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.192/27\",\r\n \"51.120.226.0/27\",\r\n
+ \ \"2603:1020:f04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaNorth\",\r\n \"id\":
+ \"AppService.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.160/27\",\r\n \"102.133.154.32/27\",\r\n
+ \ \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaWest\",\r\n \"id\":
+ \"AppService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n
+ \ \"2603:1000:4:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthCentralUS\",\r\n \"id\": \"AppService.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.30.245/32\",\r\n \"13.65.37.122/32\",\r\n
+ \ \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n \"13.65.42.183/32\",\r\n
+ \ \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n \"13.65.89.91/32\",\r\n
+ \ \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n \"13.65.95.109/32\",\r\n
+ \ \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n \"13.65.210.166/32\",\r\n
+ \ \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n \"13.65.243.110/32\",\r\n
+ \ \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n \"13.66.39.88/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.49.90.32/27\",\r\n \"23.101.180.75/32\",\r\n \"23.102.154.38/32\",\r\n
+ \ \"23.102.161.217/32\",\r\n \"23.102.191.170/32\",\r\n \"40.74.245.188/32\",\r\n
+ \ \"40.74.253.108/32\",\r\n \"40.74.255.112/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.124.12.75/32\",\r\n \"40.124.13.58/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n \"104.210.145.181/32\",\r\n
+ \ \"104.210.147.57/32\",\r\n \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"2603:1030:807:402::a0/123\",\r\n \"2603:1030:807:802::a0/123\",\r\n
+ \ \"2603:1030:807:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SoutheastAsia\",\r\n \"id\": \"AppService.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.9.0/25\",\r\n \"13.67.56.225/32\",\r\n
+ \ \"13.67.63.90/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"20.43.132.128/25\",\r\n \"20.188.98.74/32\",\r\n \"23.97.56.169/32\",\r\n
+ \ \"23.98.64.36/32\",\r\n \"23.98.64.158/32\",\r\n \"23.101.27.182/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.187.17.126/32\",\r\n \"52.187.36.104/32\",\r\n
+ \ \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n \"111.221.95.27/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"2603:1040:5:402::a0/123\",\r\n \"2603:1040:5:802::a0/123\",\r\n
+ \ \"2603:1040:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthIndia\",\r\n \"id\": \"AppService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.122.35/32\",\r\n \"13.71.123.138/32\",\r\n
+ \ \"20.41.195.192/27\",\r\n \"40.78.194.96/27\",\r\n \"52.172.54.225/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"2603:1040:c06:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SwitzerlandNorth\",\r\n \"id\":
+ \"AppService.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"51.107.50.0/27\",\r\n
+ \ \"51.107.58.160/27\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppService.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.146.0/27\",\r\n \"51.107.154.160/27\",\r\n
+ \ \"2603:1020:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAECentral\",\r\n \"id\": \"AppService.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.66.0/27\",\r\n \"20.37.74.96/27\",\r\n
+ \ \"2603:1040:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAENorth\",\r\n \"id\": \"AppService.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.138.0/27\",\r\n \"40.120.74.32/27\",\r\n
+ \ \"65.52.250.96/27\",\r\n \"2603:1040:904:402::a0/123\",\r\n
+ \ \"2603:1040:904:802::a0/123\",\r\n \"2603:1040:904:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKNorth\",\r\n
+ \ \"id\": \"AppService.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:305:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth\",\r\n
+ \ \"id\": \"AppService.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"2603:1020:705:402::a0/123\",\r\n
+ \ \"2603:1020:705:802::a0/123\",\r\n \"2603:1020:705:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth2\",\r\n
+ \ \"id\": \"AppService.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:405:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKWest\",\r\n
+ \ \"id\": \"AppService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.163.32/27\",\r\n \"51.140.210.96/27\",\r\n
+ \ \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n \"51.141.12.112/32\",\r\n
+ \ \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n \"51.141.45.207/32\",\r\n
+ \ \"51.141.90.252/32\",\r\n \"2603:1020:605:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestCentralUS\",\r\n
+ \ \"id\": \"AppService.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.192/27\",\r\n \"13.78.150.96/32\",\r\n
+ \ \"13.78.184.89/32\",\r\n \"52.150.140.224/27\",\r\n \"52.161.96.193/32\",\r\n
+ \ \"2603:1030:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestEurope\",\r\n \"id\": \"AppService.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.68.0/23\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.94.143.57/32\",\r\n \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n
+ \ \"13.95.82.181/32\",\r\n \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n
+ \ \"13.95.238.192/32\",\r\n \"20.50.2.0/23\",\r\n \"23.97.160.56/32\",\r\n
+ \ \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n \"23.97.195.129/32\",\r\n
+ \ \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n \"23.97.216.47/32\",\r\n
+ \ \"23.97.224.11/32\",\r\n \"23.100.1.29/32\",\r\n \"23.101.67.245/32\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.113.126.251/32\",\r\n
+ \ \"40.113.131.37/32\",\r\n \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n
+ \ \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n \"40.114.228.161/32\",\r\n
+ \ \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n \"40.115.55.251/32\",\r\n
+ \ \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n \"40.118.96.231/32\",\r\n
+ \ \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n \"40.118.102.46/32\",\r\n
+ \ \"51.105.172.25/32\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n \"51.144.116.43/32\",\r\n
+ \ \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.178.29.39/32\",\r\n
+ \ \"52.178.37.244/32\",\r\n \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n
+ \ \"52.178.46.181/32\",\r\n \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n
+ \ \"52.178.89.129/32\",\r\n \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n
+ \ \"52.178.105.179/32\",\r\n \"52.178.114.226/32\",\r\n \"52.232.19.237/32\",\r\n
+ \ \"52.232.26.228/32\",\r\n \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n
+ \ \"52.232.127.196/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"104.40.129.89/32\",\r\n
+ \ \"104.40.147.180/32\",\r\n \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n
+ \ \"104.40.179.243/32\",\r\n \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n
+ \ \"104.40.187.26/32\",\r\n \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n
+ \ \"104.40.215.219/32\",\r\n \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.47.137.62/32\",\r\n
+ \ \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n \"104.47.164.119/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"137.117.166.35/32\",\r\n
+ \ \"137.117.175.14/32\",\r\n \"137.117.203.130/32\",\r\n
+ \ \"137.117.211.244/32\",\r\n \"137.117.218.101/32\",\r\n
+ \ \"137.117.224.218/32\",\r\n \"137.117.225.87/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.107.5/32\",\r\n \"191.233.82.44/32\",\r\n
+ \ \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n \"2603:1020:206:402::a0/123\",\r\n
+ \ \"2603:1020:206:802::a0/123\",\r\n \"2603:1020:206:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestIndia\",\r\n
+ \ \"id\": \"AppService.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.50.0/27\",\r\n \"104.211.146.96/27\",\r\n
+ \ \"104.211.160.159/32\",\r\n \"104.211.179.11/32\",\r\n
+ \ \"104.211.184.197/32\",\r\n \"2603:1040:806:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestUS\",\r\n
+ \ \"id\": \"AppService.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.73.110/32\",\r\n \"13.91.40.166/32\",\r\n
+ \ \"13.91.242.166/32\",\r\n \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n
+ \ \"13.93.220.109/32\",\r\n \"13.93.231.75/32\",\r\n \"23.99.0.12/32\",\r\n
+ \ \"23.99.65.65/32\",\r\n \"23.99.91.55/32\",\r\n \"23.100.46.198/32\",\r\n
+ \ \"23.101.203.117/32\",\r\n \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n
+ \ \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n \"40.78.48.219/32\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.82.255.128/25\",\r\n
+ \ \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n \"40.83.182.206/32\",\r\n
+ \ \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n \"40.112.142.148/32\",\r\n
+ \ \"40.112.143.134/32\",\r\n \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n
+ \ \"40.112.165.44/32\",\r\n \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n
+ \ \"40.112.192.69/32\",\r\n \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n
+ \ \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n \"40.118.246.51/32\",\r\n
+ \ \"40.118.255.59/32\",\r\n \"52.160.40.218/32\",\r\n \"104.40.3.53/32\",\r\n
+ \ \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n \"104.40.53.219/32\",\r\n
+ \ \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n \"104.40.92.107/32\",\r\n
+ \ \"104.42.53.248/32\",\r\n \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n
+ \ \"104.42.148.55/32\",\r\n \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n
+ \ \"104.42.188.146/32\",\r\n \"104.42.231.5/32\",\r\n \"104.45.226.98/32\",\r\n
+ \ \"104.45.231.79/32\",\r\n \"104.210.38.149/32\",\r\n \"137.117.9.212/32\",\r\n
+ \ \"137.117.17.70/32\",\r\n \"138.91.224.84/32\",\r\n \"138.91.225.40/32\",\r\n
+ \ \"138.91.240.81/32\",\r\n \"168.62.20.37/32\",\r\n \"191.236.80.12/32\",\r\n
+ \ \"191.236.106.123/32\",\r\n \"191.239.58.162/32\",\r\n
+ \ \"2603:1030:a07:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestUS2\",\r\n \"id\": \"AppService.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"20.42.128.96/27\",\r\n
+ \ \"40.64.128.224/27\",\r\n \"51.143.102.21/32\",\r\n \"52.151.62.51/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.183.82.125/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"2603:1030:c06:400::8a0/123\",\r\n
+ \ \"2603:1030:c06:802::a0/123\",\r\n \"2603:1030:c06:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement\",\r\n
+ \ \"id\": \"AppServiceManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppServiceManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n \"13.66.140.0/26\",\r\n
+ \ \"13.67.8.128/26\",\r\n \"13.69.64.128/26\",\r\n \"13.69.227.128/26\",\r\n
+ \ \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"13.71.170.64/26\",\r\n
+ \ \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n \"13.71.194.128/26\",\r\n
+ \ \"13.73.240.128/26\",\r\n \"13.73.242.64/26\",\r\n \"13.75.34.192/26\",\r\n
+ \ \"13.75.127.117/32\",\r\n \"13.77.50.128/26\",\r\n \"13.78.106.128/26\",\r\n
+ \ \"13.78.109.0/26\",\r\n \"13.87.56.128/26\",\r\n \"13.87.122.128/26\",\r\n
+ \ \"13.89.171.0/26\",\r\n \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n
+ \ \"13.94.149.179/32\",\r\n \"20.36.106.128/26\",\r\n \"20.36.114.64/26\",\r\n
+ \ \"20.37.74.128/26\",\r\n \"20.43.120.128/26\",\r\n \"20.44.2.192/26\",\r\n
+ \ \"20.44.27.0/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.82.128/26\",\r\n
+ \ \"20.49.90.128/26\",\r\n \"20.72.26.192/26\",\r\n \"20.150.171.0/26\",\r\n
+ \ \"20.150.179.0/26\",\r\n \"20.150.187.0/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"20.192.234.192/26\",\r\n \"20.193.202.192/26\",\r\n \"20.194.66.128/26\",\r\n
+ \ \"23.96.195.3/32\",\r\n \"23.100.226.236/32\",\r\n \"23.102.188.65/32\",\r\n
+ \ \"40.67.59.0/26\",\r\n \"40.69.106.128/26\",\r\n \"40.70.146.128/26\",\r\n
+ \ \"40.71.11.0/26\",\r\n \"40.71.13.64/26\",\r\n \"40.74.100.64/26\",\r\n
+ \ \"40.78.194.128/26\",\r\n \"40.79.130.64/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"40.79.178.128/26\",\r\n \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n
+ \ \"40.83.125.161/32\",\r\n \"40.90.240.166/32\",\r\n \"40.91.126.196/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"40.119.4.111/32\",\r\n \"40.120.74.128/26\",\r\n
+ \ \"40.124.47.188/32\",\r\n \"51.12.99.0/26\",\r\n \"51.12.203.0/26\",\r\n
+ \ \"51.12.227.0/26\",\r\n \"51.12.235.0/26\",\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.107.58.192/26\",\r\n \"51.107.154.192/26\",\r\n
+ \ \"51.116.58.192/26\",\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"51.120.219.0/26\",\r\n
+ \ \"51.140.146.64/26\",\r\n \"51.140.210.128/26\",\r\n \"52.151.25.45/32\",\r\n
+ \ \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"52.178.177.147/32\",\r\n \"52.178.184.149/32\",\r\n
+ \ \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n \"52.187.56.50/32\",\r\n
+ \ \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n \"52.187.63.37/32\",\r\n
+ \ \"52.224.105.172/32\",\r\n \"52.225.177.15/32\",\r\n \"52.225.177.153/32\",\r\n
+ \ \"52.231.18.64/26\",\r\n \"52.231.146.128/26\",\r\n \"52.246.157.64/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.172.237/32\",\r\n \"65.52.193.203/32\",\r\n
+ \ \"65.52.250.128/26\",\r\n \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n
+ \ \"102.133.26.192/26\",\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"104.43.242.137/32\",\r\n
+ \ \"104.44.129.141/32\",\r\n \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n
+ \ \"104.44.134.255/32\",\r\n \"104.208.54.11/32\",\r\n \"104.211.81.64/26\",\r\n
+ \ \"104.211.146.128/26\",\r\n \"104.214.18.192/26\",\r\n
+ \ \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"168.61.143.0/26\",\r\n \"191.233.50.128/26\",\r\n \"191.233.203.64/26\",\r\n
+ \ \"191.234.147.0/26\",\r\n \"191.234.155.0/26\",\r\n \"191.236.154.88/32\",\r\n
+ \ \"2603:1000:4:402::100/122\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\",\r\n \"2603:1010:101:402::100/122\",\r\n
+ \ \"2603:1010:304:402::100/122\",\r\n \"2603:1010:404:402::100/122\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\",\r\n
+ \ \"2603:1020:305:402::100/122\",\r\n \"2603:1020:405:402::100/122\",\r\n
+ \ \"2603:1020:605:402::100/122\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\",\r\n
+ \ \"2603:1020:805:402::100/122\",\r\n \"2603:1020:805:802::100/122\",\r\n
+ \ \"2603:1020:805:c02::100/122\",\r\n \"2603:1020:905:402::100/122\",\r\n
+ \ \"2603:1020:a04:402::100/122\",\r\n \"2603:1020:a04:802::100/122\",\r\n
+ \ \"2603:1020:a04:c02::100/122\",\r\n \"2603:1020:b04:402::100/122\",\r\n
+ \ \"2603:1020:c04:402::100/122\",\r\n \"2603:1020:c04:802::100/122\",\r\n
+ \ \"2603:1020:c04:c02::100/122\",\r\n \"2603:1020:d04:402::100/122\",\r\n
+ \ \"2603:1020:e04:402::100/122\",\r\n \"2603:1020:e04:802::100/122\",\r\n
+ \ \"2603:1020:e04:c02::100/122\",\r\n \"2603:1020:f04:402::100/122\",\r\n
+ \ \"2603:1020:1004:400::440/122\",\r\n \"2603:1020:1004:800::80/122\",\r\n
+ \ \"2603:1020:1004:800::200/122\",\r\n \"2603:1020:1004:800::380/122\",\r\n
+ \ \"2603:1020:1104:400::100/122\",\r\n \"2603:1030:f:400::900/122\",\r\n
+ \ \"2603:1030:10:402::100/122\",\r\n \"2603:1030:10:802::100/122\",\r\n
+ \ \"2603:1030:10:c02::100/122\",\r\n \"2603:1030:104:402::100/122\",\r\n
+ \ \"2603:1030:107:400::80/122\",\r\n \"2603:1030:210:402::100/122\",\r\n
+ \ \"2603:1030:210:802::100/122\",\r\n \"2603:1030:210:c02::100/122\",\r\n
+ \ \"2603:1030:40b:400::900/122\",\r\n \"2603:1030:40b:800::100/122\",\r\n
+ \ \"2603:1030:40b:c00::100/122\",\r\n \"2603:1030:40c:402::100/122\",\r\n
+ \ \"2603:1030:40c:802::100/122\",\r\n \"2603:1030:40c:c02::100/122\",\r\n
+ \ \"2603:1030:504:402::400/122\",\r\n \"2603:1030:504:802::80/122\",\r\n
+ \ \"2603:1030:504:802::380/122\",\r\n \"2603:1030:608:402::100/122\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\",\r\n \"2603:1030:a07:402::880/122\",\r\n
+ \ \"2603:1030:b04:402::100/122\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\",\r\n
+ \ \"2603:1030:f05:402::100/122\",\r\n \"2603:1030:f05:802::100/122\",\r\n
+ \ \"2603:1030:f05:c02::100/122\",\r\n \"2603:1030:1005:402::100/122\",\r\n
+ \ \"2603:1040:5:402::100/122\",\r\n \"2603:1040:5:802::100/122\",\r\n
+ \ \"2603:1040:5:c02::100/122\",\r\n \"2603:1040:207:402::100/122\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\",\r\n \"2603:1040:606:402::100/122\",\r\n
+ \ \"2603:1040:806:402::100/122\",\r\n \"2603:1040:904:402::100/122\",\r\n
+ \ \"2603:1040:904:802::100/122\",\r\n \"2603:1040:904:c02::100/122\",\r\n
+ \ \"2603:1040:a06:402::100/122\",\r\n \"2603:1040:a06:802::100/122\",\r\n
+ \ \"2603:1040:a06:c02::100/122\",\r\n \"2603:1040:b04:402::100/122\",\r\n
+ \ \"2603:1040:c06:402::100/122\",\r\n \"2603:1040:d04:400::440/122\",\r\n
+ \ \"2603:1040:d04:800::80/122\",\r\n \"2603:1040:d04:800::200/122\",\r\n
+ \ \"2603:1040:d04:800::380/122\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\",\r\n
+ \ \"2603:1040:1104:400::100/122\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\",\r\n
+ \ \"2603:1050:403:400::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaCentral\",\r\n \"id\":
+ \"AppServiceManagement.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.128/26\",\r\n \"2603:1010:304:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.64/26\",\r\n \"2603:1010:404:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.128/26\",\r\n \"2603:1010:101:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.BrazilSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.64/26\",\r\n \"191.234.147.0/26\",\r\n
+ \ \"191.234.155.0/26\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.64/26\",\r\n \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n
+ \ \"52.246.157.64/26\",\r\n \"2603:1030:f05:402::100/122\",\r\n
+ \ \"2603:1030:f05:802::100/122\",\r\n \"2603:1030:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.128/26\",\r\n \"2603:1030:1005:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.128/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"104.211.81.64/26\",\r\n \"2603:1040:a06:402::100/122\",\r\n
+ \ \"2603:1040:a06:802::100/122\",\r\n \"2603:1040:a06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.0/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"104.43.242.137/32\",\r\n \"2603:1030:10:402::100/122\",\r\n
+ \ \"2603:1030:10:802::100/122\",\r\n \"2603:1030:10:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastAsia\",\r\n
+ \ \"id\": \"AppServiceManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.192/26\",\r\n \"13.75.127.117/32\",\r\n
+ \ \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n \"40.83.125.161/32\",\r\n
+ \ \"65.52.172.237/32\",\r\n \"2603:1040:207:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastUS\",\r\n
+ \ \"id\": \"AppServiceManagement.EastUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.0/26\",\r\n
+ \ \"40.71.13.64/26\",\r\n \"40.90.240.166/32\",\r\n \"52.224.105.172/32\",\r\n
+ \ \"2603:1030:210:402::100/122\",\r\n \"2603:1030:210:802::100/122\",\r\n
+ \ \"2603:1030:210:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.128/26\",\r\n
+ \ \"2603:1030:40c:402::100/122\",\r\n \"2603:1030:40c:802::100/122\",\r\n
+ \ \"2603:1030:40c:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2EUAP\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"52.225.177.15/32\",\r\n
+ \ \"52.225.177.153/32\",\r\n \"2603:1030:40b:400::900/122\",\r\n
+ \ \"2603:1030:40b:800::100/122\",\r\n \"2603:1030:40b:c00::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.64/26\",\r\n \"2603:1020:805:402::100/122\",\r\n
+ \ \"2603:1020:805:802::100/122\",\r\n \"2603:1020:805:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.128/26\",\r\n \"2603:1020:905:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.192/26\",\r\n \"2603:1020:d04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"2603:1020:c04:402::100/122\",\r\n
+ \ \"2603:1020:c04:802::100/122\",\r\n \"2603:1020:c04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.JapanEast\",\r\n
+ \ \"id\": \"AppServiceManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.128/26\",\r\n \"13.78.109.0/26\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.JapanWest\",\r\n \"id\":
+ \"AppServiceManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.100.64/26\",\r\n
+ \ \"2603:1040:606:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.KoreaCentral\",\r\n \"id\":
+ \"AppServiceManagement.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.0/26\",\r\n
+ \ \"20.194.66.128/26\",\r\n \"52.231.18.64/26\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.KoreaSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.128/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorthCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"23.96.195.3/32\",\r\n
+ \ \"23.100.226.236/32\",\r\n \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.193.203/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"191.236.154.88/32\",\r\n \"2603:1030:608:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorthEurope\",\r\n
+ \ \"id\": \"AppServiceManagement.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.128/26\",\r\n \"52.178.177.147/32\",\r\n
+ \ \"52.178.184.149/32\",\r\n \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorwayEast\",\r\n \"id\":
+ \"AppServiceManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"2603:1020:e04:402::100/122\",\r\n
+ \ \"2603:1020:e04:802::100/122\",\r\n \"2603:1020:e04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorwayWest\",\r\n
+ \ \"id\": \"AppServiceManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.219.0/26\",\r\n \"2603:1020:f04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.192/26\",\r\n \"2603:1000:4:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.128/26\",\r\n
+ \ \"13.73.242.64/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.90.128/26\",\r\n
+ \ \"23.102.188.65/32\",\r\n \"40.119.4.111/32\",\r\n \"40.124.47.188/32\",\r\n
+ \ \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n \"104.44.129.141/32\",\r\n
+ \ \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n \"104.44.134.255/32\",\r\n
+ \ \"104.214.18.192/26\",\r\n \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.SoutheastAsia\",\r\n \"id\":
+ \"AppServiceManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.128/26\",\r\n
+ \ \"52.187.56.50/32\",\r\n \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n
+ \ \"52.187.63.37/32\",\r\n \"2603:1040:5:402::100/122\",\r\n
+ \ \"2603:1040:5:802::100/122\",\r\n \"2603:1040:5:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.128/26\",\r\n \"2603:1040:c06:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.192/26\",\r\n \"2603:1020:a04:402::100/122\",\r\n
+ \ \"2603:1020:a04:802::100/122\",\r\n \"2603:1020:a04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.192/26\",\r\n \"2603:1020:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAECentral\",\r\n
+ \ \"id\": \"AppServiceManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.128/26\",\r\n \"2603:1040:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAENorth\",\r\n
+ \ \"id\": \"AppServiceManagement.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.128/26\",\r\n \"65.52.250.128/26\",\r\n
+ \ \"2603:1040:904:402::100/122\",\r\n \"2603:1040:904:802::100/122\",\r\n
+ \ \"2603:1040:904:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKSouth\",\r\n \"id\":
+ \"AppServiceManagement.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.140.146.64/26\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UKSouth2\",\r\n
+ \ \"id\": \"AppServiceManagement.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.56.128/26\",\r\n
+ \ \"2603:1020:405:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKWest\",\r\n \"id\":
+ \"AppServiceManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.128/26\",\r\n
+ \ \"2603:1020:605:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.128/26\",\r\n
+ \ \"2603:1030:b04:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestEurope\",\r\n \"id\":
+ \"AppServiceManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.128/26\",\r\n
+ \ \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n \"13.94.149.179/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.128/26\",\r\n \"2603:1040:806:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"2603:1030:a07:402::880/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS2\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.0/26\",\r\n
+ \ \"40.91.126.196/32\",\r\n \"52.151.25.45/32\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectory\",\r\n
+ \ \"id\": \"AzureActiveDirectory\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAD\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n \"13.66.141.64/27\",\r\n
+ \ \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n \"13.69.229.96/27\",\r\n
+ \ \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n \"13.71.195.224/27\",\r\n
+ \ \"13.71.201.64/26\",\r\n \"13.73.240.32/27\",\r\n \"13.74.104.0/26\",\r\n
+ \ \"13.74.249.156/32\",\r\n \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n
+ \ \"13.77.52.160/27\",\r\n \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n
+ \ \"13.79.37.247/32\",\r\n \"13.86.219.0/27\",\r\n \"13.87.16.0/26\",\r\n
+ \ \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n \"13.89.174.0/27\",\r\n
+ \ \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n \"20.37.75.96/27\",\r\n
+ \ \"20.40.228.64/28\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.9.80/28\",\r\n
+ \ \"20.51.16.128/27\",\r\n \"20.61.98.160/27\",\r\n \"20.61.99.128/28\",\r\n
+ \ \"20.62.58.80/28\",\r\n \"20.62.129.0/27\",\r\n \"20.62.129.240/28\",\r\n
+ \ \"20.65.132.96/28\",\r\n \"20.66.2.32/27\",\r\n \"20.66.3.16/28\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.187.197.240/28\",\r\n \"20.190.128.0/18\",\r\n
+ \ \"20.194.73.0/28\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"20.195.64.240/28\",\r\n \"23.101.0.70/32\",\r\n
+ \ \"23.101.6.190/32\",\r\n \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n
+ \ \"40.71.13.0/27\",\r\n \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n
+ \ \"40.78.195.160/27\",\r\n \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n
+ \ \"40.79.179.128/27\",\r\n \"40.83.144.56/32\",\r\n \"40.126.0.0/18\",\r\n
+ \ \"51.140.148.192/27\",\r\n \"51.140.208.0/26\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.146.133.80/28\",\r\n \"52.150.157.0/27\",\r\n \"52.159.175.31/32\",\r\n
+ \ \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n \"52.161.110.169/32\",\r\n
+ \ \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n \"52.169.218.0/32\",\r\n
+ \ \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n \"52.178.27.112/32\",\r\n
+ \ \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n \"52.180.177.87/32\",\r\n
+ \ \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n \"52.180.183.8/32\",\r\n
+ \ \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n \"52.187.117.83/32\",\r\n
+ \ \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n \"52.225.188.89/32\",\r\n
+ \ \"52.226.169.40/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.40.168.0/26\",\r\n \"104.41.159.212/32\",\r\n
+ \ \"104.45.138.161/32\",\r\n \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\",\r\n \"2603:1006:2000::/48\",\r\n
+ \ \"2603:1007:200::/48\",\r\n \"2603:1016:1400::/48\",\r\n
+ \ \"2603:1017::/48\",\r\n \"2603:1026:3000::/48\",\r\n \"2603:1027:1::/48\",\r\n
+ \ \"2603:1036:3000::/48\",\r\n \"2603:1037:1::/48\",\r\n
+ \ \"2603:1046:2000::/48\",\r\n \"2603:1047:1::/48\",\r\n
+ \ \"2603:1056:2000::/48\",\r\n \"2603:1057:2::/48\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectoryDomainServices\",\r\n
+ \ \"id\": \"AzureActiveDirectoryDomainServices\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureIdentity\",\r\n \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n
+ \ \"13.66.141.64/27\",\r\n \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n
+ \ \"13.69.229.96/27\",\r\n \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n
+ \ \"13.71.195.224/27\",\r\n \"13.73.240.32/27\",\r\n \"13.74.249.156/32\",\r\n
+ \ \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n \"13.77.52.160/27\",\r\n
+ \ \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n \"13.79.37.247/32\",\r\n
+ \ \"13.86.219.0/27\",\r\n \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n
+ \ \"13.89.174.0/27\",\r\n \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n
+ \ \"20.37.75.96/27\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.16.128/27\",\r\n
+ \ \"20.61.98.160/27\",\r\n \"20.62.129.0/27\",\r\n \"20.66.2.32/27\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"23.101.0.70/32\",\r\n \"23.101.6.190/32\",\r\n
+ \ \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n \"40.71.13.0/27\",\r\n
+ \ \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n \"40.78.195.160/27\",\r\n
+ \ \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n \"40.79.179.128/27\",\r\n
+ \ \"40.83.144.56/32\",\r\n \"51.140.148.192/27\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.150.157.0/27\",\r\n \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n
+ \ \"52.161.110.169/32\",\r\n \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n
+ \ \"52.169.218.0/32\",\r\n \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n
+ \ \"52.178.27.112/32\",\r\n \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n
+ \ \"52.180.177.87/32\",\r\n \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n
+ \ \"52.180.183.8/32\",\r\n \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n
+ \ \"52.187.117.83/32\",\r\n \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n
+ \ \"52.225.188.89/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.41.159.212/32\",\r\n \"104.45.138.161/32\",\r\n
+ \ \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureAdvancedThreatProtection\",\r\n \"id\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.72.105.31/32\",\r\n \"13.72.105.76/32\",\r\n
+ \ \"13.93.176.195/32\",\r\n \"13.93.176.215/32\",\r\n \"20.36.120.112/29\",\r\n
+ \ \"20.37.64.112/29\",\r\n \"20.37.156.192/29\",\r\n \"20.37.195.8/29\",\r\n
+ \ \"20.37.224.112/29\",\r\n \"20.38.84.96/29\",\r\n \"20.38.136.112/29\",\r\n
+ \ \"20.39.11.16/29\",\r\n \"20.41.4.96/29\",\r\n \"20.41.65.128/29\",\r\n
+ \ \"20.41.192.112/29\",\r\n \"20.42.4.192/29\",\r\n \"20.42.129.176/29\",\r\n
+ \ \"20.42.224.112/29\",\r\n \"20.43.41.144/29\",\r\n \"20.43.65.136/29\",\r\n
+ \ \"20.43.130.88/29\",\r\n \"20.45.112.112/29\",\r\n \"20.45.192.112/29\",\r\n
+ \ \"20.72.16.24/29\",\r\n \"20.150.160.112/29\",\r\n \"20.184.13.55/32\",\r\n
+ \ \"20.184.14.129/32\",\r\n \"20.189.106.120/29\",\r\n \"20.192.160.24/29\",\r\n
+ \ \"20.192.225.16/29\",\r\n \"40.65.107.78/32\",\r\n \"40.65.111.206/32\",\r\n
+ \ \"40.67.48.112/29\",\r\n \"40.74.30.96/29\",\r\n \"40.80.56.112/29\",\r\n
+ \ \"40.80.168.112/29\",\r\n \"40.80.188.16/29\",\r\n \"40.82.253.64/29\",\r\n
+ \ \"40.85.133.119/32\",\r\n \"40.85.133.178/32\",\r\n \"40.87.44.77/32\",\r\n
+ \ \"40.87.45.222/32\",\r\n \"40.89.16.112/29\",\r\n \"40.119.9.224/29\",\r\n
+ \ \"51.12.46.232/29\",\r\n \"51.12.198.192/29\",\r\n \"51.104.25.144/29\",\r\n
+ \ \"51.105.80.112/29\",\r\n \"51.105.88.112/29\",\r\n \"51.107.48.112/29\",\r\n
+ \ \"51.107.144.112/29\",\r\n \"51.120.40.112/29\",\r\n \"51.120.224.112/29\",\r\n
+ \ \"51.137.161.128/29\",\r\n \"51.143.183.3/32\",\r\n \"51.143.183.52/32\",\r\n
+ \ \"51.143.192.112/29\",\r\n \"52.136.48.112/29\",\r\n \"52.140.104.112/29\",\r\n
+ \ \"52.150.139.64/29\",\r\n \"52.170.0.116/32\",\r\n \"52.170.1.228/32\",\r\n
+ \ \"52.170.249.197/32\",\r\n \"52.174.66.179/32\",\r\n \"52.174.66.180/32\",\r\n
+ \ \"52.225.176.98/32\",\r\n \"52.225.181.34/32\",\r\n \"52.225.183.206/32\",\r\n
+ \ \"52.228.81.128/29\",\r\n \"104.42.25.10/32\",\r\n \"104.42.29.8/32\",\r\n
+ \ \"168.63.46.233/32\",\r\n \"168.63.46.241/32\",\r\n \"191.233.8.24/29\",\r\n
+ \ \"191.235.225.136/29\",\r\n \"2603:1000:4::140/123\",\r\n
+ \ \"2603:1000:104:1::140/123\",\r\n \"2603:1010:6:1::140/123\",\r\n
+ \ \"2603:1010:101::140/123\",\r\n \"2603:1010:304::140/123\",\r\n
+ \ \"2603:1010:404::140/123\",\r\n \"2603:1020:5:1::140/123\",\r\n
+ \ \"2603:1020:206:1::140/123\",\r\n \"2603:1020:305::140/123\",\r\n
+ \ \"2603:1020:405::140/123\",\r\n \"2603:1020:605::140/123\",\r\n
+ \ \"2603:1020:705:1::140/123\",\r\n \"2603:1020:805:1::140/123\",\r\n
+ \ \"2603:1020:905::140/123\",\r\n \"2603:1020:a04:1::140/123\",\r\n
+ \ \"2603:1020:b04::140/123\",\r\n \"2603:1020:c04:1::140/123\",\r\n
+ \ \"2603:1020:d04::140/123\",\r\n \"2603:1020:e04:1::140/123\",\r\n
+ \ \"2603:1020:f04::140/123\",\r\n \"2603:1020:1004::140/123\",\r\n
+ \ \"2603:1020:1104::140/123\",\r\n \"2603:1030:f:1::140/123\",\r\n
+ \ \"2603:1030:10:1::140/123\",\r\n \"2603:1030:104:1::140/123\",\r\n
+ \ \"2603:1030:107::140/123\",\r\n \"2603:1030:210:1::140/123\",\r\n
+ \ \"2603:1030:40b:1::140/123\",\r\n \"2603:1030:40c:1::140/123\",\r\n
+ \ \"2603:1030:504:1::140/123\",\r\n \"2603:1030:608::140/123\",\r\n
+ \ \"2603:1030:807:1::140/123\",\r\n \"2603:1030:a07::140/123\",\r\n
+ \ \"2603:1030:b04::140/123\",\r\n \"2603:1030:c06:1::140/123\",\r\n
+ \ \"2603:1030:f05:1::140/123\",\r\n \"2603:1030:1005::140/123\",\r\n
+ \ \"2603:1040:5:1::140/123\",\r\n \"2603:1040:207::140/123\",\r\n
+ \ \"2603:1040:407:1::140/123\",\r\n \"2603:1040:606::140/123\",\r\n
+ \ \"2603:1040:806::140/123\",\r\n \"2603:1040:904:1::140/123\",\r\n
+ \ \"2603:1040:a06:1::140/123\",\r\n \"2603:1040:b04::140/123\",\r\n
+ \ \"2603:1040:c06::140/123\",\r\n \"2603:1040:d04::140/123\",\r\n
+ \ \"2603:1040:f05:1::140/123\",\r\n \"2603:1040:1104::140/123\",\r\n
+ \ \"2603:1050:6:1::140/123\",\r\n \"2603:1050:403::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"40.89.16.112/29\",\r\n
+ \ \"2603:1030:1005::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR\",\r\n
+ \ \"id\": \"AzureAPIForFHIR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"13.69.233.32/31\",\r\n
+ \ \"13.70.78.170/31\",\r\n \"13.71.175.130/31\",\r\n \"13.71.199.118/31\",\r\n
+ \ \"13.73.244.194/31\",\r\n \"13.73.254.220/30\",\r\n \"13.78.111.194/31\",\r\n
+ \ \"13.80.124.132/32\",\r\n \"13.82.180.206/32\",\r\n \"13.86.221.218/31\",\r\n
+ \ \"13.87.58.136/31\",\r\n \"13.87.124.136/31\",\r\n \"20.36.117.192/31\",\r\n
+ \ \"20.36.123.84/30\",\r\n \"20.37.68.224/30\",\r\n \"20.37.76.204/31\",\r\n
+ \ \"20.37.198.142/31\",\r\n \"20.37.227.102/31\",\r\n \"20.37.228.12/31\",\r\n
+ \ \"20.38.128.170/31\",\r\n \"20.38.141.6/31\",\r\n \"20.38.142.104/31\",\r\n
+ \ \"20.39.15.58/31\",\r\n \"20.40.224.224/31\",\r\n \"20.40.224.228/31\",\r\n
+ \ \"20.40.230.128/28\",\r\n \"20.41.69.50/31\",\r\n \"20.41.69.60/31\",\r\n
+ \ \"20.42.230.234/31\",\r\n \"20.43.45.248/30\",\r\n \"20.43.121.122/31\",\r\n
+ \ \"20.44.4.232/31\",\r\n \"20.44.19.4/31\",\r\n \"20.45.90.96/28\",\r\n
+ \ \"20.45.112.122/31\",\r\n \"20.45.114.204/31\",\r\n \"20.45.117.48/28\",\r\n
+ \ \"20.45.199.40/30\",\r\n \"20.46.12.208/28\",\r\n \"20.46.15.0/27\",\r\n
+ \ \"20.48.192.84/30\",\r\n \"20.48.197.160/28\",\r\n \"20.49.99.46/31\",\r\n
+ \ \"20.49.102.228/31\",\r\n \"20.49.114.188/30\",\r\n \"20.49.127.240/31\",\r\n
+ \ \"20.51.0.208/28\",\r\n \"20.51.13.80/28\",\r\n \"20.51.16.168/31\",\r\n
+ \ \"20.51.21.80/28\",\r\n \"20.52.88.224/28\",\r\n \"20.53.0.32/31\",\r\n
+ \ \"20.53.44.80/31\",\r\n \"20.53.47.208/28\",\r\n \"20.53.49.112/28\",\r\n
+ \ \"20.53.57.64/28\",\r\n \"20.58.67.96/28\",\r\n \"20.61.98.66/31\",\r\n
+ \ \"20.61.98.68/31\",\r\n \"20.61.103.240/28\",\r\n \"20.62.60.112/28\",\r\n
+ \ \"20.62.128.148/30\",\r\n \"20.62.134.240/28\",\r\n \"20.65.134.80/28\",\r\n
+ \ \"20.66.5.144/28\",\r\n \"20.69.1.160/28\",\r\n \"20.72.21.208/28\",\r\n
+ \ \"20.150.165.156/30\",\r\n \"20.150.225.0/31\",\r\n \"20.150.245.64/28\",\r\n
+ \ \"20.150.245.160/27\",\r\n \"20.187.196.196/30\",\r\n \"20.189.228.224/28\",\r\n
+ \ \"20.191.160.26/31\",\r\n \"20.191.160.116/31\",\r\n \"20.191.167.144/28\",\r\n
+ \ \"20.192.45.0/28\",\r\n \"20.192.50.96/27\",\r\n \"20.192.50.240/28\",\r\n
+ \ \"20.192.80.192/28\",\r\n \"20.192.164.188/30\",\r\n \"20.192.184.80/31\",\r\n
+ \ \"20.192.225.200/30\",\r\n \"20.192.238.122/31\",\r\n \"20.193.194.128/27\",\r\n
+ \ \"20.193.194.160/28\",\r\n \"20.193.206.36/31\",\r\n \"20.194.74.160/28\",\r\n
+ \ \"20.194.75.192/27\",\r\n \"20.195.67.208/28\",\r\n \"20.195.74.224/28\",\r\n
+ \ \"20.195.146.208/28\",\r\n \"23.96.205.55/32\",\r\n \"23.98.108.42/31\",\r\n
+ \ \"23.98.108.46/31\",\r\n \"40.64.135.76/30\",\r\n \"40.67.48.122/31\",\r\n
+ \ \"40.67.50.244/31\",\r\n \"40.67.53.240/28\",\r\n \"40.67.60.110/31\",\r\n
+ \ \"40.69.111.32/31\",\r\n \"40.71.15.192/31\",\r\n \"40.75.35.218/31\",\r\n
+ \ \"40.78.204.44/31\",\r\n \"40.78.238.58/31\",\r\n \"40.78.250.110/31\",\r\n
+ \ \"40.79.116.45/32\",\r\n \"40.80.63.158/31\",\r\n \"40.80.63.244/31\",\r\n
+ \ \"40.80.173.128/30\",\r\n \"40.80.180.2/31\",\r\n \"40.82.248.70/31\",\r\n
+ \ \"40.89.23.40/31\",\r\n \"40.113.78.45/32\",\r\n \"40.120.82.160/28\",\r\n
+ \ \"40.126.239.114/32\",\r\n \"51.11.192.32/31\",\r\n \"51.12.20.32/28\",\r\n
+ \ \"51.12.20.64/27\",\r\n \"51.12.28.64/27\",\r\n \"51.12.28.96/28\",\r\n
+ \ \"51.12.42.64/30\",\r\n \"51.12.100.104/31\",\r\n \"51.12.193.28/30\",\r\n
+ \ \"51.12.204.224/31\",\r\n \"51.13.136.56/31\",\r\n \"51.13.138.32/28\",\r\n
+ \ \"51.104.9.98/31\",\r\n \"51.104.30.170/31\",\r\n \"51.107.53.48/30\",\r\n
+ \ \"51.107.60.94/31\",\r\n \"51.107.148.18/31\",\r\n \"51.107.156.134/31\",\r\n
+ \ \"51.107.243.128/28\",\r\n \"51.107.249.72/31\",\r\n \"51.107.251.112/28\",\r\n
+ \ \"51.116.51.32/30\",\r\n \"51.116.55.128/28\",\r\n \"51.116.60.240/31\",\r\n
+ \ \"51.116.146.216/30\",\r\n \"51.116.158.58/31\",\r\n \"51.120.40.126/31\",\r\n
+ \ \"51.120.100.94/31\",\r\n \"51.120.220.94/31\",\r\n \"51.120.228.36/31\",\r\n
+ \ \"51.120.232.32/31\",\r\n \"51.120.234.144/28\",\r\n \"51.120.235.192/27\",\r\n
+ \ \"51.137.164.94/31\",\r\n \"51.137.167.168/31\",\r\n \"51.138.160.0/31\",\r\n
+ \ \"51.138.211.16/28\",\r\n \"51.140.40.89/32\",\r\n \"51.140.210.86/31\",\r\n
+ \ \"51.140.224.110/32\",\r\n \"51.143.208.132/31\",\r\n \"51.143.213.208/28\",\r\n
+ \ \"52.136.48.122/31\",\r\n \"52.136.52.36/31\",\r\n \"52.136.184.0/30\",\r\n
+ \ \"52.136.186.32/28\",\r\n \"52.139.106.72/31\",\r\n \"52.139.108.32/28\",\r\n
+ \ \"52.140.110.164/30\",\r\n \"52.146.131.52/30\",\r\n \"52.146.137.176/28\",\r\n
+ \ \"52.147.113.96/28\",\r\n \"52.150.156.44/30\",\r\n \"52.161.13.30/32\",\r\n
+ \ \"52.162.111.130/31\",\r\n \"52.167.239.195/32\",\r\n \"52.172.112.24/30\",\r\n
+ \ \"52.172.116.144/28\",\r\n \"52.178.17.0/31\",\r\n \"52.182.141.14/31\",\r\n
+ \ \"52.231.23.8/31\",\r\n \"52.231.146.86/31\",\r\n \"52.231.152.94/32\",\r\n
+ \ \"52.247.220.99/32\",\r\n \"65.52.252.248/31\",\r\n \"102.37.64.48/31\",\r\n
+ \ \"102.37.81.144/28\",\r\n \"102.37.161.64/28\",\r\n \"102.133.58.204/30\",\r\n
+ \ \"102.133.124.12/31\",\r\n \"102.133.220.196/30\",\r\n
+ \ \"104.46.162.0/31\",\r\n \"104.46.178.112/31\",\r\n \"104.46.183.192/28\",\r\n
+ \ \"104.210.152.157/32\",\r\n \"104.214.161.14/31\",\r\n
+ \ \"191.233.14.192/30\",\r\n \"191.233.51.212/31\",\r\n \"191.233.207.24/31\",\r\n
+ \ \"191.234.139.160/31\",\r\n \"191.235.225.154/31\",\r\n
+ \ \"191.238.72.224/28\",\r\n \"2603:1020:e04::7c0/123\",\r\n
+ \ \"2603:1020:1004:2::c0/123\",\r\n \"2603:1020:1104:1::4e0/123\",\r\n
+ \ \"2603:1030:f:2::4e0/123\",\r\n \"2603:1030:504:2::c0/123\",\r\n
+ \ \"2603:1040:d04:2::20/123\",\r\n \"2603:1040:f05::7c0/123\",\r\n
+ \ \"2603:1040:1104:1::440/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"id\":
+ \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"20.195.67.208/28\",\r\n
+ \ \"23.98.108.42/31\",\r\n \"23.98.108.46/31\",\r\n \"40.78.238.58/31\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR.UKNorth\",\r\n
+ \ \"id\": \"AzureAPIForFHIR.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.136/31\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureArcInfrastructure\",\r\n \"id\": \"AzureArcInfrastructure\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureArcInfrastructure\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.219/32\",\r\n \"13.70.79.64/32\",\r\n
+ \ \"13.71.175.129/32\",\r\n \"13.71.199.117/32\",\r\n \"13.73.244.196/32\",\r\n
+ \ \"13.73.253.124/30\",\r\n \"13.74.107.94/32\",\r\n \"13.77.53.221/32\",\r\n
+ \ \"13.78.111.193/32\",\r\n \"13.81.244.155/32\",\r\n \"13.86.223.80/32\",\r\n
+ \ \"13.90.194.180/32\",\r\n \"20.36.122.52/30\",\r\n \"20.37.66.52/30\",\r\n
+ \ \"20.37.196.248/30\",\r\n \"20.37.226.52/30\",\r\n \"20.37.228.8/30\",\r\n
+ \ \"20.38.87.188/30\",\r\n \"20.38.138.56/30\",\r\n \"20.38.141.8/30\",\r\n
+ \ \"20.39.12.228/30\",\r\n \"20.39.14.84/30\",\r\n \"20.40.200.152/29\",\r\n
+ \ \"20.40.224.52/30\",\r\n \"20.41.67.84/30\",\r\n \"20.41.69.52/30\",\r\n
+ \ \"20.41.195.252/30\",\r\n \"20.42.228.216/30\",\r\n \"20.43.43.160/30\",\r\n
+ \ \"20.43.45.240/30\",\r\n \"20.43.67.88/30\",\r\n \"20.43.121.252/32\",\r\n
+ \ \"20.44.19.6/32\",\r\n \"20.45.197.224/30\",\r\n \"20.45.199.32/30\",\r\n
+ \ \"20.48.192.76/30\",\r\n \"20.49.99.12/30\",\r\n \"20.49.102.212/30\",\r\n
+ \ \"20.49.109.32/30\",\r\n \"20.49.113.12/30\",\r\n \"20.49.114.52/30\",\r\n
+ \ \"20.49.120.32/30\",\r\n \"20.49.125.188/30\",\r\n \"20.50.1.196/30\",\r\n
+ \ \"20.53.0.34/32\",\r\n \"20.53.41.44/30\",\r\n \"20.61.96.184/30\",\r\n
+ \ \"20.150.165.140/30\",\r\n \"20.187.194.204/30\",\r\n \"20.189.111.204/30\",\r\n
+ \ \"20.191.160.28/30\",\r\n \"20.192.164.176/30\",\r\n \"20.192.228.252/30\",\r\n
+ \ \"23.98.104.12/30\",\r\n \"23.98.108.32/30\",\r\n \"40.64.132.84/30\",\r\n
+ \ \"40.64.135.72/30\",\r\n \"40.69.111.34/32\",\r\n \"40.71.15.194/32\",\r\n
+ \ \"40.78.204.46/32\",\r\n \"40.78.239.96/32\",\r\n \"40.79.138.46/32\",\r\n
+ \ \"40.80.59.24/30\",\r\n \"40.80.172.12/30\",\r\n \"40.89.20.128/30\",\r\n
+ \ \"40.89.23.32/30\",\r\n \"40.119.9.232/30\",\r\n \"51.104.28.216/30\",\r\n
+ \ \"51.104.31.172/30\",\r\n \"51.105.77.50/32\",\r\n \"51.105.90.148/30\",\r\n
+ \ \"51.107.50.56/30\",\r\n \"51.107.53.32/30\",\r\n \"51.107.60.152/32\",\r\n
+ \ \"51.107.146.52/30\",\r\n \"51.116.49.136/30\",\r\n \"51.116.145.136/30\",\r\n
+ \ \"51.116.146.212/30\",\r\n \"51.116.158.60/32\",\r\n \"51.120.42.56/30\",\r\n
+ \ \"51.120.44.196/30\",\r\n \"51.120.100.156/32\",\r\n \"51.120.226.52/30\",\r\n
+ \ \"51.137.164.76/30\",\r\n \"51.137.166.40/30\",\r\n \"51.140.212.216/32\",\r\n
+ \ \"52.136.51.68/30\",\r\n \"52.138.90.54/32\",\r\n \"52.140.107.92/30\",\r\n
+ \ \"52.140.110.108/30\",\r\n \"52.146.79.132/30\",\r\n \"52.146.130.180/30\",\r\n
+ \ \"52.150.152.204/30\",\r\n \"52.150.156.36/30\",\r\n \"52.162.111.132/32\",\r\n
+ \ \"52.182.141.60/32\",\r\n \"52.228.84.80/30\",\r\n \"52.231.23.10/32\",\r\n
+ \ \"52.236.189.74/32\",\r\n \"65.52.252.250/32\",\r\n \"102.133.57.188/30\",\r\n
+ \ \"102.133.154.6/32\",\r\n \"102.133.218.52/30\",\r\n \"102.133.219.188/30\",\r\n
+ \ \"104.46.178.0/30\",\r\n \"104.214.164.48/32\",\r\n \"137.135.98.137/32\",\r\n
+ \ \"191.233.207.26/32\",\r\n \"191.234.136.44/30\",\r\n \"191.234.138.144/30\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup\",\r\n
+ \ \"id\": \"AzureBackup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"13.67.12.0/24\",\r\n \"13.67.13.0/25\",\r\n \"13.69.65.32/27\",\r\n
+ \ \"13.69.65.128/25\",\r\n \"13.69.107.0/27\",\r\n \"13.69.107.128/25\",\r\n
+ \ \"13.69.228.128/25\",\r\n \"13.69.229.0/27\",\r\n \"13.70.73.192/27\",\r\n
+ \ \"13.70.74.0/26\",\r\n \"13.71.172.0/26\",\r\n \"13.71.172.64/27\",\r\n
+ \ \"13.71.195.64/26\",\r\n \"13.71.195.128/27\",\r\n \"13.74.107.192/27\",\r\n
+ \ \"13.74.108.0/25\",\r\n \"13.75.36.128/25\",\r\n \"13.75.37.0/24\",\r\n
+ \ \"13.77.52.32/27\",\r\n \"13.77.52.64/26\",\r\n \"13.78.108.32/27\",\r\n
+ \ \"13.78.108.64/26\",\r\n \"13.86.218.0/25\",\r\n \"13.86.218.128/26\",\r\n
+ \ \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"13.87.123.0/26\",\r\n
+ \ \"13.87.123.64/27\",\r\n \"13.89.171.128/26\",\r\n \"13.89.171.192/27\",\r\n
+ \ \"20.36.107.32/27\",\r\n \"20.36.107.64/26\",\r\n \"20.36.114.224/27\",\r\n
+ \ \"20.36.115.0/26\",\r\n \"20.37.75.0/26\",\r\n \"20.37.75.64/27\",\r\n
+ \ \"20.38.147.0/27\",\r\n \"20.38.147.64/26\",\r\n \"20.40.229.128/25\",\r\n
+ \ \"20.44.3.64/26\",\r\n \"20.44.3.128/27\",\r\n \"20.44.8.32/27\",\r\n
+ \ \"20.44.8.64/26\",\r\n \"20.44.16.128/27\",\r\n \"20.44.16.192/26\",\r\n
+ \ \"20.44.27.128/27\",\r\n \"20.45.90.0/26\",\r\n \"20.45.123.0/26\",\r\n
+ \ \"20.45.123.64/28\",\r\n \"20.45.125.192/27\",\r\n \"20.46.12.0/25\",\r\n
+ \ \"20.48.197.0/26\",\r\n \"20.49.82.192/26\",\r\n \"20.49.83.0/27\",\r\n
+ \ \"20.49.90.192/26\",\r\n \"20.49.91.0/27\",\r\n \"20.51.0.0/26\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"20.51.20.128/25\",\r\n \"20.52.88.0/26\",\r\n
+ \ \"20.53.47.128/26\",\r\n \"20.53.49.0/26\",\r\n \"20.53.56.192/26\",\r\n
+ \ \"20.58.67.128/25\",\r\n \"20.61.102.128/25\",\r\n \"20.61.103.0/26\",\r\n
+ \ \"20.62.59.128/25\",\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"20.65.133.128/26\",\r\n \"20.66.4.0/25\",\r\n \"20.66.4.128/26\",\r\n
+ \ \"20.69.1.0/26\",\r\n \"20.72.27.64/26\",\r\n \"20.150.171.96/27\",\r\n
+ \ \"20.150.171.128/26\",\r\n \"20.150.179.80/28\",\r\n \"20.150.179.128/26\",\r\n
+ \ \"20.150.181.64/27\",\r\n \"20.150.187.80/28\",\r\n \"20.150.187.128/26\",\r\n
+ \ \"20.150.190.0/27\",\r\n \"20.150.244.64/26\",\r\n \"20.189.228.64/26\",\r\n
+ \ \"20.191.166.128/26\",\r\n \"20.192.44.128/26\",\r\n \"20.192.50.128/26\",\r\n
+ \ \"20.192.80.64/26\",\r\n \"20.192.99.80/28\",\r\n \"20.192.99.128/26\",\r\n
+ \ \"20.192.235.32/27\",\r\n \"20.192.235.64/26\",\r\n \"20.193.192.192/26\",\r\n
+ \ \"20.193.203.0/26\",\r\n \"20.193.203.64/27\",\r\n \"20.194.66.192/26\",\r\n
+ \ \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n \"20.195.66.0/24\",\r\n
+ \ \"20.195.67.0/25\",\r\n \"20.195.73.0/24\",\r\n \"20.195.74.0/25\",\r\n
+ \ \"20.195.146.128/26\",\r\n \"23.98.83.0/27\",\r\n \"23.98.83.128/25\",\r\n
+ \ \"23.98.84.0/24\",\r\n \"40.67.59.96/27\",\r\n \"40.67.59.128/26\",\r\n
+ \ \"40.69.107.32/27\",\r\n \"40.69.107.64/26\",\r\n \"40.70.147.128/26\",\r\n
+ \ \"40.70.147.192/27\",\r\n \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n
+ \ \"40.74.98.64/26\",\r\n \"40.74.98.128/27\",\r\n \"40.74.146.96/27\",\r\n
+ \ \"40.74.146.128/26\",\r\n \"40.75.34.96/27\",\r\n \"40.75.34.192/26\",\r\n
+ \ \"40.78.195.32/27\",\r\n \"40.78.195.64/26\",\r\n \"40.78.202.160/27\",\r\n
+ \ \"40.78.202.192/26\",\r\n \"40.78.227.64/26\",\r\n \"40.78.227.128/25\",\r\n
+ \ \"40.78.234.192/27\",\r\n \"40.78.235.0/24\",\r\n \"40.78.236.0/25\",\r\n
+ \ \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n \"40.78.250.224/27\",\r\n
+ \ \"40.78.251.0/26\",\r\n \"40.79.131.0/26\",\r\n \"40.79.131.64/27\",\r\n
+ \ \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n \"40.79.162.128/27\",\r\n
+ \ \"40.79.162.192/26\",\r\n \"40.79.170.64/26\",\r\n \"40.79.170.128/27\",\r\n
+ \ \"40.79.171.32/27\",\r\n \"40.79.179.32/27\",\r\n \"40.79.179.64/26\",\r\n
+ \ \"40.79.187.32/27\",\r\n \"40.79.187.64/26\",\r\n \"40.79.195.32/27\",\r\n
+ \ \"40.79.195.64/26\",\r\n \"40.80.51.0/27\",\r\n \"40.120.74.192/26\",\r\n
+ \ \"40.120.75.0/27\",\r\n \"40.120.82.0/26\",\r\n \"51.12.17.64/26\",\r\n
+ \ \"51.12.25.128/26\",\r\n \"51.12.99.96/27\",\r\n \"51.12.99.128/26\",\r\n
+ \ \"51.12.203.96/27\",\r\n \"51.12.203.128/26\",\r\n \"51.12.227.80/28\",\r\n
+ \ \"51.12.227.128/26\",\r\n \"51.12.235.80/28\",\r\n \"51.12.235.128/26\",\r\n
+ \ \"51.13.137.128/26\",\r\n \"51.105.67.32/27\",\r\n \"51.105.67.64/26\",\r\n
+ \ \"51.105.75.0/27\",\r\n \"51.105.75.64/26\",\r\n \"51.107.59.64/26\",\r\n
+ \ \"51.107.59.128/27\",\r\n \"51.107.155.64/26\",\r\n \"51.107.155.128/27\",\r\n
+ \ \"51.107.243.0/26\",\r\n \"51.107.251.0/26\",\r\n \"51.116.55.0/26\",\r\n
+ \ \"51.116.59.64/26\",\r\n \"51.116.59.128/27\",\r\n \"51.116.155.128/26\",\r\n
+ \ \"51.116.155.192/27\",\r\n \"51.116.156.144/28\",\r\n \"51.116.156.192/26\",\r\n
+ \ \"51.116.245.0/26\",\r\n \"51.116.245.64/27\",\r\n \"51.116.250.240/28\",\r\n
+ \ \"51.116.251.64/26\",\r\n \"51.116.253.0/27\",\r\n \"51.120.99.96/27\",\r\n
+ \ \"51.120.99.128/26\",\r\n \"51.120.107.80/28\",\r\n \"51.120.107.128/26\",\r\n
+ \ \"51.120.110.128/27\",\r\n \"51.120.211.80/28\",\r\n \"51.120.211.128/26\",\r\n
+ \ \"51.120.219.96/27\",\r\n \"51.120.219.128/26\",\r\n \"51.120.233.192/26\",\r\n
+ \ \"51.138.210.192/26\",\r\n \"51.140.148.64/26\",\r\n \"51.140.148.128/27\",\r\n
+ \ \"51.140.211.32/27\",\r\n \"51.140.211.64/26\",\r\n \"51.143.212.192/26\",\r\n
+ \ \"51.143.213.0/25\",\r\n \"52.136.185.192/26\",\r\n \"52.138.90.160/27\",\r\n
+ \ \"52.138.90.192/26\",\r\n \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n
+ \ \"52.139.107.128/26\",\r\n \"52.146.136.64/26\",\r\n \"52.146.136.128/25\",\r\n
+ \ \"52.147.113.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"52.167.106.192/27\",\r\n \"52.167.107.0/26\",\r\n \"52.172.116.64/26\",\r\n
+ \ \"52.182.139.64/27\",\r\n \"52.182.139.128/26\",\r\n \"52.231.19.0/26\",\r\n
+ \ \"52.231.19.64/27\",\r\n \"52.231.147.32/27\",\r\n \"52.231.147.64/26\",\r\n
+ \ \"52.236.187.0/27\",\r\n \"52.236.187.128/25\",\r\n \"52.246.155.0/27\",\r\n
+ \ \"52.246.155.64/26\",\r\n \"65.52.251.0/26\",\r\n \"65.52.251.64/27\",\r\n
+ \ \"102.37.81.0/26\",\r\n \"102.37.160.192/26\",\r\n \"102.133.27.64/26\",\r\n
+ \ \"102.133.27.128/27\",\r\n \"102.133.123.96/27\",\r\n \"102.133.155.64/26\",\r\n
+ \ \"102.133.155.128/27\",\r\n \"102.133.251.0/27\",\r\n \"104.46.183.64/26\",\r\n
+ \ \"104.211.82.0/26\",\r\n \"104.211.82.64/27\",\r\n \"104.211.147.0/26\",\r\n
+ \ \"104.211.147.64/27\",\r\n \"104.214.19.96/27\",\r\n \"104.214.19.128/26\",\r\n
+ \ \"191.233.50.224/27\",\r\n \"191.233.51.64/26\",\r\n \"191.233.204.0/26\",\r\n
+ \ \"191.233.204.64/27\",\r\n \"191.234.147.80/28\",\r\n \"191.234.147.128/26\",\r\n
+ \ \"191.234.149.160/27\",\r\n \"191.234.155.80/28\",\r\n
+ \ \"191.234.155.128/26\",\r\n \"191.234.157.64/27\",\r\n
+ \ \"191.238.72.0/26\",\r\n \"2603:1000:4:402::200/121\",\r\n
+ \ \"2603:1000:104:402::200/121\",\r\n \"2603:1000:104:802::180/121\",\r\n
+ \ \"2603:1000:104:c02::180/121\",\r\n \"2603:1010:6:402::200/121\",\r\n
+ \ \"2603:1010:6:802::180/121\",\r\n \"2603:1010:6:c02::180/121\",\r\n
+ \ \"2603:1010:101:402::200/121\",\r\n \"2603:1010:304:402::200/121\",\r\n
+ \ \"2603:1010:404:402::200/121\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\",\r\n
+ \ \"2603:1020:206:402::200/121\",\r\n \"2603:1020:206:802::180/121\",\r\n
+ \ \"2603:1020:206:c02::180/121\",\r\n \"2603:1020:305:402::200/121\",\r\n
+ \ \"2603:1020:405:402::200/121\",\r\n \"2603:1020:605:402::200/121\",\r\n
+ \ \"2603:1020:705:402::200/121\",\r\n \"2603:1020:705:802::180/121\",\r\n
+ \ \"2603:1020:705:c02::180/121\",\r\n \"2603:1020:805:402::200/121\",\r\n
+ \ \"2603:1020:805:802::180/121\",\r\n \"2603:1020:805:c02::180/121\",\r\n
+ \ \"2603:1020:905:402::200/121\",\r\n \"2603:1020:a04:402::200/121\",\r\n
+ \ \"2603:1020:a04:802::180/121\",\r\n \"2603:1020:a04:c02::180/121\",\r\n
+ \ \"2603:1020:b04:402::200/121\",\r\n \"2603:1020:c04:402::200/121\",\r\n
+ \ \"2603:1020:c04:802::180/121\",\r\n \"2603:1020:c04:c02::180/121\",\r\n
+ \ \"2603:1020:d04:402::200/121\",\r\n \"2603:1020:e04:3::200/121\",\r\n
+ \ \"2603:1020:e04:402::200/121\",\r\n \"2603:1020:e04:802::180/121\",\r\n
+ \ \"2603:1020:e04:c02::180/121\",\r\n \"2603:1020:f04:402::200/121\",\r\n
+ \ \"2603:1020:1004:1::780/121\",\r\n \"2603:1020:1004:400::100/121\",\r\n
+ \ \"2603:1020:1004:400::300/121\",\r\n \"2603:1020:1004:c02::200/121\",\r\n
+ \ \"2603:1020:1104:1::400/121\",\r\n \"2603:1020:1104:400::200/121\",\r\n
+ \ \"2603:1030:f:2::580/121\",\r\n \"2603:1030:f:400::a00/121\",\r\n
+ \ \"2603:1030:10:402::200/121\",\r\n \"2603:1030:10:802::180/121\",\r\n
+ \ \"2603:1030:10:c02::180/121\",\r\n \"2603:1030:104:402::200/121\",\r\n
+ \ \"2603:1030:107:400::180/121\",\r\n \"2603:1030:210:402::200/121\",\r\n
+ \ \"2603:1030:210:802::180/121\",\r\n \"2603:1030:210:c02::180/121\",\r\n
+ \ \"2603:1030:40b:400::a00/121\",\r\n \"2603:1030:40b:800::180/121\",\r\n
+ \ \"2603:1030:40b:c00::180/121\",\r\n \"2603:1030:40c:402::200/121\",\r\n
+ \ \"2603:1030:40c:802::180/121\",\r\n \"2603:1030:40c:c02::180/121\",\r\n
+ \ \"2603:1030:504:2::100/121\",\r\n \"2603:1030:504:402::100/121\",\r\n
+ \ \"2603:1030:504:402::300/121\",\r\n \"2603:1030:504:802::280/121\",\r\n
+ \ \"2603:1030:504:c02::200/121\",\r\n \"2603:1030:608:402::200/121\",\r\n
+ \ \"2603:1030:807:402::200/121\",\r\n \"2603:1030:807:802::180/121\",\r\n
+ \ \"2603:1030:807:c02::180/121\",\r\n \"2603:1030:a07:402::180/121\",\r\n
+ \ \"2603:1030:b04:402::200/121\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\",\r\n
+ \ \"2603:1030:f05:402::200/121\",\r\n \"2603:1030:f05:802::180/121\",\r\n
+ \ \"2603:1030:f05:c02::180/121\",\r\n \"2603:1030:1005:402::200/121\",\r\n
+ \ \"2603:1040:5:402::200/121\",\r\n \"2603:1040:5:802::180/121\",\r\n
+ \ \"2603:1040:5:c02::180/121\",\r\n \"2603:1040:207:402::200/121\",\r\n
+ \ \"2603:1040:407:402::200/121\",\r\n \"2603:1040:407:802::180/121\",\r\n
+ \ \"2603:1040:407:c02::180/121\",\r\n \"2603:1040:606:402::200/121\",\r\n
+ \ \"2603:1040:806:402::200/121\",\r\n \"2603:1040:904:402::200/121\",\r\n
+ \ \"2603:1040:904:802::180/121\",\r\n \"2603:1040:904:c02::180/121\",\r\n
+ \ \"2603:1040:a06:402::200/121\",\r\n \"2603:1040:a06:802::180/121\",\r\n
+ \ \"2603:1040:a06:c02::180/121\",\r\n \"2603:1040:b04:402::200/121\",\r\n
+ \ \"2603:1040:c06:402::200/121\",\r\n \"2603:1040:d04:1::780/121\",\r\n
+ \ \"2603:1040:d04:400::100/121\",\r\n \"2603:1040:d04:400::300/121\",\r\n
+ \ \"2603:1040:d04:c02::200/121\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\",\r\n \"2603:1040:1104:1::480/121\",\r\n
+ \ \"2603:1040:1104:400::200/121\",\r\n \"2603:1050:6:402::200/121\",\r\n
+ \ \"2603:1050:6:802::180/121\",\r\n \"2603:1050:6:c02::180/121\",\r\n
+ \ \"2603:1050:403:400::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.AustraliaCentral2\",\r\n \"id\":
+ \"AzureBackup.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.224/27\",\r\n \"20.36.115.0/26\",\r\n
+ \ \"20.53.56.192/26\",\r\n \"2603:1010:404:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.BrazilSoutheast\",\r\n
+ \ \"id\": \"AzureBackup.BrazilSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilse\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBackup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.195.146.128/26\",\r\n \"191.233.50.224/27\",\r\n
+ \ \"191.233.51.64/26\",\r\n \"2603:1050:403:400::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.EastUS\",\r\n
+ \ \"id\": \"AzureBackup.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n \"40.78.227.64/26\",\r\n
+ \ \"40.78.227.128/25\",\r\n \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n
+ \ \"2603:1030:210:402::200/121\",\r\n \"2603:1030:210:802::180/121\",\r\n
+ \ \"2603:1030:210:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.KoreaCentral\",\r\n \"id\": \"AzureBackup.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.128/27\",\r\n
+ \ \"20.194.66.192/26\",\r\n \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n
+ \ \"52.231.19.0/26\",\r\n \"52.231.19.64/27\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthCentralUS\",\r\n \"id\":
+ \"AzureBackup.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.0.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"2603:1030:608:402::200/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthEurope\",\r\n \"id\": \"AzureBackup.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"13.69.228.128/25\",\r\n
+ \ \"13.69.229.0/27\",\r\n \"13.74.107.192/27\",\r\n \"13.74.108.0/25\",\r\n
+ \ \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n \"52.146.136.64/26\",\r\n
+ \ \"52.146.136.128/25\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKNorth\",\r\n
+ \ \"id\": \"AzureBackup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.123.0/26\",\r\n \"13.87.123.64/27\",\r\n \"2603:1020:305:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKSouth2\",\r\n
+ \ \"id\": \"AzureBackup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"2603:1020:405:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.WestUS2\",\r\n
+ \ \"id\": \"AzureBackup.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n
+ \ \"40.78.250.224/27\",\r\n \"40.78.251.0/26\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService\",\r\n
+ \ \"id\": \"AzureBotService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.64/30\",\r\n \"13.67.10.88/30\",\r\n \"13.69.67.56/30\",\r\n
+ \ \"13.69.227.252/30\",\r\n \"13.70.74.112/30\",\r\n \"13.71.173.240/30\",\r\n
+ \ \"13.71.196.160/30\",\r\n \"13.73.248.0/30\",\r\n \"13.75.39.72/30\",\r\n
+ \ \"13.77.53.80/30\",\r\n \"13.78.108.172/30\",\r\n \"13.86.219.168/30\",\r\n
+ \ \"13.87.58.40/30\",\r\n \"13.87.124.40/30\",\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.36.108.112/30\",\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"20.37.64.64/30\",\r\n \"20.37.76.104/30\",\r\n \"20.37.152.64/30\",\r\n
+ \ \"20.37.192.64/30\",\r\n \"20.37.224.64/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"20.38.128.72/30\",\r\n \"20.38.136.64/30\",\r\n \"20.39.8.64/30\",\r\n
+ \ \"20.41.0.64/30\",\r\n \"20.41.64.64/30\",\r\n \"20.41.192.64/30\",\r\n
+ \ \"20.42.0.64/30\",\r\n \"20.42.128.64/30\",\r\n \"20.42.224.64/30\",\r\n
+ \ \"20.43.40.64/30\",\r\n \"20.43.64.64/30\",\r\n \"20.43.121.8/30\",\r\n
+ \ \"20.43.128.64/30\",\r\n \"20.44.4.72/30\",\r\n \"20.44.17.24/30\",\r\n
+ \ \"20.44.27.208/30\",\r\n \"20.45.112.64/30\",\r\n \"20.45.123.112/30\",\r\n
+ \ \"20.45.192.64/30\",\r\n \"20.72.16.16/30\",\r\n \"20.150.160.120/30\",\r\n
+ \ \"20.189.104.64/30\",\r\n \"20.192.160.16/30\",\r\n \"20.192.224.64/26\",\r\n
+ \ \"40.67.48.64/30\",\r\n \"40.67.58.4/30\",\r\n \"40.69.108.56/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"40.74.24.64/30\",\r\n \"40.74.147.168/30\",\r\n
+ \ \"40.78.196.56/30\",\r\n \"40.78.202.132/30\",\r\n \"40.79.132.56/30\",\r\n
+ \ \"40.79.180.24/30\",\r\n \"40.80.56.64/30\",\r\n \"40.80.168.64/30\",\r\n
+ \ \"40.80.176.32/30\",\r\n \"40.80.184.64/30\",\r\n \"40.82.248.64/30\",\r\n
+ \ \"40.89.16.64/30\",\r\n \"51.12.40.64/26\",\r\n \"51.12.192.64/26\",\r\n
+ \ \"51.104.8.248/30\",\r\n \"51.104.24.64/30\",\r\n \"51.105.80.64/30\",\r\n
+ \ \"51.105.88.64/30\",\r\n \"51.107.48.64/30\",\r\n \"51.107.58.4/30\",\r\n
+ \ \"51.107.144.64/30\",\r\n \"51.107.154.4/30\",\r\n \"51.116.48.64/30\",\r\n
+ \ \"51.116.144.64/30\",\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"51.120.218.4/30\",\r\n \"51.120.224.64/30\",\r\n \"51.137.160.64/30\",\r\n
+ \ \"51.140.212.72/30\",\r\n \"51.143.192.64/30\",\r\n \"52.136.48.64/30\",\r\n
+ \ \"52.140.104.64/30\",\r\n \"52.150.136.64/30\",\r\n \"52.162.111.16/30\",\r\n
+ \ \"52.228.80.64/30\",\r\n \"52.231.148.88/30\",\r\n \"65.52.252.104/30\",\r\n
+ \ \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n \"102.133.124.8/30\",\r\n
+ \ \"102.133.216.64/30\",\r\n \"191.233.8.16/30\",\r\n \"191.233.205.96/30\",\r\n
+ \ \"191.235.224.64/30\",\r\n \"2603:1000:4::20/123\",\r\n
+ \ \"2603:1000:104:1::20/123\",\r\n \"2603:1010:6:1::20/123\",\r\n
+ \ \"2603:1010:101::20/123\",\r\n \"2603:1010:304::20/123\",\r\n
+ \ \"2603:1010:404::20/123\",\r\n \"2603:1020:5:1::20/123\",\r\n
+ \ \"2603:1020:206:1::20/123\",\r\n \"2603:1020:305::20/123\",\r\n
+ \ \"2603:1020:405::20/123\",\r\n \"2603:1020:605::20/123\",\r\n
+ \ \"2603:1020:705:1::20/123\",\r\n \"2603:1020:805:1::20/123\",\r\n
+ \ \"2603:1020:905::20/123\",\r\n \"2603:1020:a04:1::20/123\",\r\n
+ \ \"2603:1020:b04::20/123\",\r\n \"2603:1020:c04:1::20/123\",\r\n
+ \ \"2603:1020:d04::20/123\",\r\n \"2603:1020:e04:1::20/123\",\r\n
+ \ \"2603:1020:f04::20/123\",\r\n \"2603:1020:1004::20/123\",\r\n
+ \ \"2603:1020:1104::20/123\",\r\n \"2603:1030:f:1::20/123\",\r\n
+ \ \"2603:1030:10:1::20/123\",\r\n \"2603:1030:104:1::20/123\",\r\n
+ \ \"2603:1030:107::20/123\",\r\n \"2603:1030:210:1::20/123\",\r\n
+ \ \"2603:1030:40b:1::20/123\",\r\n \"2603:1030:40c:1::20/123\",\r\n
+ \ \"2603:1030:504:1::20/123\",\r\n \"2603:1030:608::20/123\",\r\n
+ \ \"2603:1030:807:1::20/123\",\r\n \"2603:1030:a07::20/123\",\r\n
+ \ \"2603:1030:b04::20/123\",\r\n \"2603:1030:c06:1::20/123\",\r\n
+ \ \"2603:1030:f05:1::20/123\",\r\n \"2603:1030:1005::20/123\",\r\n
+ \ \"2603:1040:5:1::20/123\",\r\n \"2603:1040:207::20/123\",\r\n
+ \ \"2603:1040:407:1::20/123\",\r\n \"2603:1040:606::20/123\",\r\n
+ \ \"2603:1040:806::20/123\",\r\n \"2603:1040:904:1::20/123\",\r\n
+ \ \"2603:1040:a06:1::20/123\",\r\n \"2603:1040:b04::20/123\",\r\n
+ \ \"2603:1040:c06::20/123\",\r\n \"2603:1040:d04::20/123\",\r\n
+ \ \"2603:1040:f05:1::20/123\",\r\n \"2603:1040:1104::20/123\",\r\n
+ \ \"2603:1050:6:1::20/123\",\r\n \"2603:1050:403::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureBotService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"2603:1010:404::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.CentralUS\",\r\n \"id\": \"AzureBotService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.37.152.64/30\",\r\n \"2603:1030:10:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureBotService.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.192.64/30\",\r\n \"40.78.202.132/30\",\r\n
+ \ \"2603:1030:f:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.EastUS\",\r\n \"id\": \"AzureBotService.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"20.42.0.64/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"2603:1030:210:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.GermanyNorth\",\r\n
+ \ \"id\": \"AzureBotService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.64/30\",\r\n \"2603:1020:d04::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.NorthEurope\",\r\n
+ \ \"id\": \"AzureBotService.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.227.252/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"2603:1020:5:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.NorwayEast\",\r\n \"id\":
+ \"AzureBotService.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"2603:1020:e04:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.SouthAfricaWest\",\r\n \"id\":
+ \"AzureBotService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n
+ \ \"2603:1000:4::20/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureBotService.UKSouth\",\r\n \"id\": \"AzureBotService.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.248/30\",\r\n
+ \ \"51.104.24.64/30\",\r\n \"2603:1020:705:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.UKWest\",\r\n
+ \ \"id\": \"AzureBotService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.160.64/30\",\r\n \"51.140.212.72/30\",\r\n
+ \ \"2603:1020:605::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestCentralUS\",\r\n \"id\":
+ \"AzureBotService.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.160/30\",\r\n \"52.150.136.64/30\",\r\n
+ \ \"2603:1030:b04::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestEurope\",\r\n \"id\":
+ \"AzureBotService.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.67.56/30\",\r\n \"40.74.24.64/30\",\r\n \"2603:1020:206:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud\",\r\n
+ \ \"id\": \"AzureCloud\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.65.0.0/16\",\r\n \"13.66.0.0/17\",\r\n \"13.66.128.0/17\",\r\n
+ \ \"13.67.0.0/17\",\r\n \"13.67.128.0/20\",\r\n \"13.67.144.0/21\",\r\n
+ \ \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n
+ \ \"13.67.160.0/19\",\r\n \"13.67.192.0/18\",\r\n \"13.68.0.0/17\",\r\n
+ \ \"13.68.128.0/17\",\r\n \"13.69.0.0/17\",\r\n \"13.69.128.0/17\",\r\n
+ \ \"13.70.0.0/18\",\r\n \"13.70.64.0/18\",\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.70.192.0/18\",\r\n \"13.71.0.0/18\",\r\n \"13.71.64.0/18\",\r\n
+ \ \"13.71.128.0/19\",\r\n \"13.71.160.0/19\",\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.72.64.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.72.224.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.73.32.0/19\",\r\n \"13.73.96.0/19\",\r\n
+ \ \"13.73.128.0/18\",\r\n \"13.73.192.0/20\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.73.232.0/21\",\r\n \"13.73.240.0/20\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.75.0.0/17\",\r\n \"13.75.128.0/17\",\r\n \"13.76.0.0/16\",\r\n
+ \ \"13.77.0.0/18\",\r\n \"13.77.64.0/18\",\r\n \"13.77.128.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.78.128.0/17\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.80.0.0/15\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.83.0.0/16\",\r\n \"13.84.0.0/15\",\r\n \"13.86.0.0/17\",\r\n
+ \ \"13.86.128.0/17\",\r\n \"13.87.0.0/18\",\r\n \"13.87.64.0/18\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.88.200.0/21\",\r\n \"13.88.208.0/20\",\r\n \"13.88.224.0/19\",\r\n
+ \ \"13.89.0.0/16\",\r\n \"13.90.0.0/16\",\r\n \"13.91.0.0/16\",\r\n
+ \ \"13.92.0.0/16\",\r\n \"13.93.0.0/17\",\r\n \"13.93.128.0/17\",\r\n
+ \ \"13.94.0.0/18\",\r\n \"13.94.64.0/18\",\r\n \"13.94.128.0/17\",\r\n
+ \ \"13.95.0.0/16\",\r\n \"13.104.129.0/26\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.129.128/26\",\r\n \"13.104.129.192/26\",\r\n \"13.104.144.0/27\",\r\n
+ \ \"13.104.144.32/27\",\r\n \"13.104.144.64/27\",\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.144.128/27\",\r\n \"13.104.144.160/27\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.144.224/27\",\r\n \"13.104.145.0/26\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.145.128/27\",\r\n \"13.104.145.160/27\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.64/26\",\r\n \"13.104.146.128/25\",\r\n
+ \ \"13.104.147.0/25\",\r\n \"13.104.147.128/25\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.148.128/25\",\r\n \"13.104.149.0/26\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.150.128/26\",\r\n
+ \ \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n \"13.104.151.64/26\",\r\n
+ \ \"13.104.151.128/26\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.153.0/27\",\r\n \"13.104.153.32/28\",\r\n
+ \ \"13.104.153.48/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.153.128/26\",\r\n \"13.104.153.192/26\",\r\n \"13.104.154.0/25\",\r\n
+ \ \"13.104.154.128/25\",\r\n \"13.104.155.0/27\",\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.155.64/26\",\r\n \"13.104.155.128/26\",\r\n \"13.104.155.192/26\",\r\n
+ \ \"13.104.156.0/24\",\r\n \"13.104.157.0/25\",\r\n \"13.104.157.128/25\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.16/28\",\r\n \"13.104.158.32/27\",\r\n
+ \ \"13.104.158.64/26\",\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.176/28\",\r\n \"13.104.158.192/27\",\r\n \"13.104.158.224/27\",\r\n
+ \ \"13.104.159.0/25\",\r\n \"13.104.159.128/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.192.0/21\",\r\n \"13.104.208.0/26\",\r\n \"13.104.208.64/27\",\r\n
+ \ \"13.104.208.96/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.208.192/26\",\r\n \"13.104.209.0/24\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.104.211.0/25\",\r\n \"13.104.211.128/26\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"13.104.212.0/26\",\r\n \"13.104.212.64/26\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.104.212.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.213.128/25\",\r\n \"13.104.214.0/25\",\r\n \"13.104.214.128/25\",\r\n
+ \ \"13.104.215.0/25\",\r\n \"13.104.215.128/25\",\r\n \"13.104.216.0/24\",\r\n
+ \ \"13.104.217.0/25\",\r\n \"13.104.217.128/25\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.104.218.128/25\",\r\n \"13.104.219.0/25\",\r\n \"13.104.219.128/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.104.220.128/25\",\r\n \"13.104.221.0/24\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.104.223.192/26\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.17.0/26\",\r\n \"13.105.17.64/26\",\r\n \"13.105.17.128/26\",\r\n
+ \ \"13.105.17.192/26\",\r\n \"13.105.18.0/26\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.19.0/25\",\r\n
+ \ \"13.105.19.128/25\",\r\n \"13.105.20.0/25\",\r\n \"13.105.20.128/26\",\r\n
+ \ \"13.105.20.192/26\",\r\n \"13.105.21.0/24\",\r\n \"13.105.22.0/24\",\r\n
+ \ \"13.105.23.0/26\",\r\n \"13.105.23.64/26\",\r\n \"13.105.23.128/25\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.25.0/24\",\r\n \"13.105.26.0/24\",\r\n
+ \ \"13.105.27.0/25\",\r\n \"13.105.27.128/27\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.27.224/27\",\r\n \"13.105.28.0/28\",\r\n
+ \ \"13.105.28.16/28\",\r\n \"13.105.28.32/28\",\r\n \"13.105.28.48/28\",\r\n
+ \ \"13.105.28.128/25\",\r\n \"13.105.29.0/25\",\r\n \"13.105.29.128/25\",\r\n
+ \ \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.96/27\",\r\n \"13.105.36.128/26\",\r\n
+ \ \"13.105.36.192/26\",\r\n \"13.105.37.0/26\",\r\n \"13.105.37.64/26\",\r\n
+ \ \"13.105.37.128/26\",\r\n \"13.105.37.192/26\",\r\n \"13.105.52.0/27\",\r\n
+ \ \"13.105.52.32/27\",\r\n \"13.105.52.64/28\",\r\n \"13.105.52.80/28\",\r\n
+ \ \"13.105.52.96/27\",\r\n \"13.105.52.128/26\",\r\n \"13.105.52.192/26\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.53.128/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n \"13.105.60.48/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.60.96/27\",\r\n \"13.105.60.128/27\",\r\n
+ \ \"13.105.60.160/27\",\r\n \"13.105.60.192/26\",\r\n \"13.105.61.0/28\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.32/27\",\r\n \"13.105.61.64/26\",\r\n
+ \ \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"13.105.66.144/28\",\r\n \"13.105.66.192/26\",\r\n \"13.105.67.0/25\",\r\n
+ \ \"13.105.67.128/25\",\r\n \"13.105.74.48/28\",\r\n \"13.105.74.96/27\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.74.192/26\",\r\n \"13.105.75.0/27\",\r\n
+ \ \"13.105.75.32/28\",\r\n \"13.105.75.64/27\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.96.112/28\",\r\n \"13.105.96.128/25\",\r\n
+ \ \"13.105.97.0/27\",\r\n \"13.105.97.32/27\",\r\n \"13.105.97.64/27\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.36.32.0/19\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.96.0/21\",\r\n \"20.36.104.0/21\",\r\n \"20.36.112.0/20\",\r\n
+ \ \"20.36.128.0/17\",\r\n \"20.37.0.0/18\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.37.128.0/18\",\r\n \"20.37.192.0/19\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.64.0/19\",\r\n \"20.38.96.0/23\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.38.99.0/24\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.38.104.0/23\",\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.38.108.0/23\",\r\n \"20.38.112.0/23\",\r\n \"20.38.114.0/25\",\r\n
+ \ \"20.38.114.128/25\",\r\n \"20.38.115.0/24\",\r\n \"20.38.116.0/23\",\r\n
+ \ \"20.38.118.0/24\",\r\n \"20.38.120.0/24\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.38.122.0/23\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.126.0/23\",\r\n \"20.38.128.0/21\",\r\n \"20.38.136.0/21\",\r\n
+ \ \"20.38.144.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.38.184.0/22\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.38.196.0/22\",\r\n \"20.38.200.0/22\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.39.0.0/19\",\r\n \"20.39.32.0/19\",\r\n
+ \ \"20.39.64.0/21\",\r\n \"20.39.72.0/21\",\r\n \"20.39.80.0/20\",\r\n
+ \ \"20.39.96.0/19\",\r\n \"20.39.128.0/20\",\r\n \"20.39.144.0/20\",\r\n
+ \ \"20.39.160.0/21\",\r\n \"20.39.168.0/21\",\r\n \"20.39.176.0/21\",\r\n
+ \ \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n \"20.39.208.0/20\",\r\n
+ \ \"20.39.224.0/21\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.40.16.0/21\",\r\n
+ \ \"20.40.32.0/21\",\r\n \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n
+ \ \"20.40.64.0/20\",\r\n \"20.40.80.0/21\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.40.104.0/21\",\r\n \"20.40.112.0/21\",\r\n
+ \ \"20.40.120.0/21\",\r\n \"20.40.128.0/19\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.40.176.0/20\",\r\n \"20.40.192.0/18\",\r\n \"20.41.0.0/18\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.41.128.0/18\",\r\n \"20.41.192.0/18\",\r\n
+ \ \"20.42.0.0/17\",\r\n \"20.42.128.0/18\",\r\n \"20.42.192.0/19\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.43.0.0/19\",\r\n \"20.43.32.0/19\",\r\n
+ \ \"20.43.64.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.43.128.0/18\",\r\n \"20.43.192.0/18\",\r\n \"20.44.8.0/21\",\r\n
+ \ \"20.44.16.0/21\",\r\n \"20.44.24.0/21\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.44.128.0/18\",\r\n \"20.44.192.0/18\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.64.0/19\",\r\n \"20.45.120.0/21\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.45.136.0/21\",\r\n \"20.45.144.0/20\",\r\n
+ \ \"20.45.160.0/19\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.46.32.0/19\",\r\n \"20.46.96.0/20\",\r\n \"20.46.112.0/20\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.46.192.0/21\",\r\n
+ \ \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.0.0/24\",\r\n \"20.47.1.0/24\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.3.0/24\",\r\n \"20.47.4.0/24\",\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.7.0/24\",\r\n \"20.47.8.0/24\",\r\n
+ \ \"20.47.9.0/24\",\r\n \"20.47.10.0/24\",\r\n \"20.47.11.0/24\",\r\n
+ \ \"20.47.12.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.47.16.0/23\",\r\n
+ \ \"20.47.18.0/23\",\r\n \"20.47.20.0/23\",\r\n \"20.47.22.0/23\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.26.0/24\",\r\n \"20.47.27.0/24\",\r\n
+ \ \"20.47.28.0/24\",\r\n \"20.47.29.0/24\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.47.31.0/24\",\r\n \"20.47.32.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.34.0/24\",\r\n \"20.47.35.0/24\",\r\n \"20.47.36.0/24\",\r\n
+ \ \"20.47.37.0/24\",\r\n \"20.47.38.0/24\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.40.0/24\",\r\n \"20.47.41.0/24\",\r\n \"20.47.42.0/24\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.44.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.46.0/24\",\r\n \"20.47.47.0/24\",\r\n \"20.47.48.0/24\",\r\n
+ \ \"20.47.49.0/24\",\r\n \"20.47.50.0/24\",\r\n \"20.47.51.0/24\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.53.0/24\",\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.47.56.0/24\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.47.62.0/23\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.67.0/24\",\r\n \"20.47.68.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.71.0/24\",\r\n \"20.47.72.0/23\",\r\n
+ \ \"20.47.74.0/23\",\r\n \"20.47.76.0/23\",\r\n \"20.47.78.0/23\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.47.82.0/23\",\r\n \"20.47.84.0/23\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.47.87.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.47.89.0/24\",\r\n \"20.47.90.0/24\",\r\n \"20.47.91.0/24\",\r\n
+ \ \"20.47.92.0/24\",\r\n \"20.47.93.0/24\",\r\n \"20.47.94.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.98.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.47.100.0/24\",\r\n \"20.47.101.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.47.103.0/24\",\r\n \"20.47.104.0/24\",\r\n
+ \ \"20.47.105.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.107.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.110.0/24\",\r\n \"20.47.111.0/24\",\r\n
+ \ \"20.47.112.0/24\",\r\n \"20.47.113.0/24\",\r\n \"20.47.114.0/24\",\r\n
+ \ \"20.47.115.0/24\",\r\n \"20.47.116.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.47.120.0/23\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.47.124.0/23\",\r\n \"20.47.126.0/23\",\r\n
+ \ \"20.47.128.0/17\",\r\n \"20.48.0.0/17\",\r\n \"20.48.128.0/18\",\r\n
+ \ \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n \"20.49.0.0/18\",\r\n
+ \ \"20.49.88.0/21\",\r\n \"20.49.96.0/21\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.49.112.0/21\",\r\n \"20.49.120.0/21\",\r\n \"20.49.128.0/17\",\r\n
+ \ \"20.50.0.0/18\",\r\n \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n
+ \ \"20.50.96.0/19\",\r\n \"20.50.128.0/17\",\r\n \"20.51.0.0/21\",\r\n
+ \ \"20.51.8.0/21\",\r\n \"20.51.16.0/21\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.51.32.0/19\",\r\n \"20.51.64.0/18\",\r\n \"20.51.128.0/17\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.72.0/21\",\r\n
+ \ \"20.52.80.0/27\",\r\n \"20.52.80.32/27\",\r\n \"20.52.80.64/27\",\r\n
+ \ \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n \"20.52.128.0/17\",\r\n
+ \ \"20.53.0.0/19\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.48.0/21\",\r\n \"20.53.56.0/21\",\r\n \"20.53.64.0/18\",\r\n
+ \ \"20.53.128.0/17\",\r\n \"20.54.0.0/17\",\r\n \"20.54.128.0/17\",\r\n
+ \ \"20.55.0.0/17\",\r\n \"20.55.128.0/18\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.56.0.0/16\",\r\n \"20.57.0.0/17\",\r\n \"20.57.128.0/18\",\r\n
+ \ \"20.57.192.0/19\",\r\n \"20.57.224.0/19\",\r\n \"20.58.0.0/18\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.58.128.0/18\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.59.0.0/18\",\r\n \"20.59.64.0/18\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.59.192.0/18\",\r\n \"20.60.0.0/24\",\r\n \"20.60.1.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.4.0/24\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.60.11.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.15.0/24\",\r\n
+ \ \"20.60.16.0/24\",\r\n \"20.60.17.0/24\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.20.0/24\",\r\n \"20.60.21.0/24\",\r\n
+ \ \"20.60.22.0/23\",\r\n \"20.60.24.0/23\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.28.0/23\",\r\n \"20.60.30.0/23\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.60.34.0/23\",\r\n \"20.60.36.0/23\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.60.48.0/22\",\r\n \"20.60.52.0/23\",\r\n
+ \ \"20.60.56.0/22\",\r\n \"20.60.60.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.72.0/22\",\r\n \"20.60.80.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.60.128.0/23\",\r\n \"20.60.130.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.60.132.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.60.140.0/23\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.60.144.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.60.148.0/23\",\r\n \"20.60.150.0/23\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.60.154.0/23\",\r\n \"20.60.156.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.60.166.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.60.174.0/23\",\r\n \"20.60.176.0/23\",\r\n
+ \ \"20.60.178.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.60.182.0/23\",\r\n
+ \ \"20.60.184.0/23\",\r\n \"20.60.186.0/23\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.60.194.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.62.0.0/17\",\r\n \"20.62.128.0/17\",\r\n
+ \ \"20.63.0.0/17\",\r\n \"20.63.128.0/18\",\r\n \"20.63.192.0/18\",\r\n
+ \ \"20.64.0.0/17\",\r\n \"20.64.128.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.65.128.0/17\",\r\n \"20.66.0.0/17\",\r\n \"20.66.128.0/17\",\r\n
+ \ \"20.67.0.0/17\",\r\n \"20.67.128.0/17\",\r\n \"20.68.0.0/18\",\r\n
+ \ \"20.68.64.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.69.0.0/18\",\r\n
+ \ \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n \"20.69.192.0/18\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.70.64.0/18\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.71.0.0/16\",\r\n \"20.72.32.0/19\",\r\n \"20.72.64.0/18\",\r\n
+ \ \"20.72.128.0/18\",\r\n \"20.72.192.0/18\",\r\n \"20.73.0.0/16\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.74.128.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.75.128.0/17\",\r\n \"20.76.0.0/16\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.77.192.0/18\",\r\n \"20.78.0.0/17\",\r\n
+ \ \"20.78.128.0/18\",\r\n \"20.78.192.0/18\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.80.0.0/18\",\r\n \"20.80.64.0/18\",\r\n
+ \ \"20.80.128.0/18\",\r\n \"20.80.192.0/18\",\r\n \"20.81.0.0/17\",\r\n
+ \ \"20.81.128.0/17\",\r\n \"20.82.0.0/17\",\r\n \"20.82.128.0/17\",\r\n
+ \ \"20.83.0.0/18\",\r\n \"20.83.64.0/18\",\r\n \"20.83.128.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.84.0.0/17\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.85.0.0/17\",\r\n \"20.85.128.0/17\",\r\n \"20.86.0.0/17\",\r\n
+ \ \"20.87.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.88.96.0/19\",\r\n
+ \ \"20.88.128.0/18\",\r\n \"20.88.192.0/18\",\r\n \"20.89.0.0/17\",\r\n
+ \ \"20.90.0.0/18\",\r\n \"20.92.0.0/18\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.4.0/22\",\r\n \"20.135.8.0/22\",\r\n
+ \ \"20.135.12.0/22\",\r\n \"20.135.16.0/23\",\r\n \"20.135.18.0/23\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.24.0/23\",\r\n \"20.135.26.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.135.30.0/23\",\r\n \"20.135.32.0/23\",\r\n
+ \ \"20.135.36.0/23\",\r\n \"20.135.40.0/23\",\r\n \"20.135.42.0/23\",\r\n
+ \ \"20.135.44.0/23\",\r\n \"20.135.48.0/23\",\r\n \"20.135.50.0/23\",\r\n
+ \ \"20.135.52.0/23\",\r\n \"20.135.54.0/23\",\r\n \"20.135.56.0/23\",\r\n
+ \ \"20.135.58.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.135.66.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.135.70.0/23\",\r\n
+ \ \"20.135.72.0/23\",\r\n \"20.135.74.0/23\",\r\n \"20.135.76.0/23\",\r\n
+ \ \"20.135.78.0/23\",\r\n \"20.135.80.0/22\",\r\n \"20.135.84.0/22\",\r\n
+ \ \"20.135.88.0/23\",\r\n \"20.135.90.0/23\",\r\n \"20.135.92.0/22\",\r\n
+ \ \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.135.128.0/22\",\r\n \"20.135.132.0/23\",\r\n
+ \ \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n
+ \ \"20.135.216.0/22\",\r\n \"20.135.220.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.0.0/24\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.1.128/25\",\r\n \"20.150.2.0/23\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.14.0/23\",\r\n \"20.150.16.0/24\",\r\n
+ \ \"20.150.17.0/25\",\r\n \"20.150.17.128/25\",\r\n \"20.150.18.0/25\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.19.0/24\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.21.0/24\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.23.0/24\",\r\n \"20.150.24.0/24\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.27.0/24\",\r\n \"20.150.28.0/24\",\r\n
+ \ \"20.150.29.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.36.0/24\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.38.0/23\",\r\n \"20.150.40.0/25\",\r\n \"20.150.40.128/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.42.0/24\",\r\n \"20.150.43.0/25\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.46.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n \"20.150.49.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.53.0/24\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.55.0/24\",\r\n \"20.150.56.0/24\",\r\n
+ \ \"20.150.58.0/24\",\r\n \"20.150.59.0/24\",\r\n \"20.150.60.0/24\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.66.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.150.70.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.72.0/24\",\r\n \"20.150.73.0/24\",\r\n \"20.150.74.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.76.0/24\",\r\n \"20.150.77.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.82.0/24\",\r\n \"20.150.83.0/24\",\r\n
+ \ \"20.150.84.0/24\",\r\n \"20.150.85.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.150.91.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.150.100.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.150.103.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"20.150.107.0/24\",\r\n \"20.150.108.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.150.111.0/24\",\r\n \"20.150.112.0/24\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"20.150.114.0/24\",\r\n \"20.150.115.0/24\",\r\n \"20.150.116.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.150.121.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.150.123.0/24\",\r\n
+ \ \"20.150.124.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.151.0.0/17\",\r\n \"20.151.128.0/18\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.157.2.0/24\",\r\n
+ \ \"20.157.3.0/24\",\r\n \"20.157.32.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.157.36.0/23\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"20.157.41.0/24\",\r\n \"20.157.42.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.157.47.0/24\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"20.157.52.0/24\",\r\n \"20.157.53.0/24\",\r\n
+ \ \"20.157.54.0/24\",\r\n \"20.157.55.0/24\",\r\n \"20.157.56.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.157.96.0/24\",\r\n \"20.184.0.0/18\",\r\n
+ \ \"20.184.64.0/18\",\r\n \"20.184.128.0/17\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.187.64.0/18\",\r\n \"20.187.128.0/18\",\r\n
+ \ \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n \"20.188.0.0/19\",\r\n
+ \ \"20.188.32.0/19\",\r\n \"20.188.64.0/19\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.188.128.0/17\",\r\n \"20.189.0.0/18\",\r\n \"20.189.64.0/18\",\r\n
+ \ \"20.189.128.0/18\",\r\n \"20.189.192.0/18\",\r\n \"20.190.0.0/18\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.96.0/19\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.130.0/24\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.133.0/24\",\r\n \"20.190.134.0/24\",\r\n
+ \ \"20.190.135.0/24\",\r\n \"20.190.136.0/24\",\r\n \"20.190.137.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.138.128/25\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.139.128/25\",\r\n \"20.190.140.0/25\",\r\n \"20.190.140.128/25\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.141.128/25\",\r\n \"20.190.142.0/25\",\r\n
+ \ \"20.190.142.128/25\",\r\n \"20.190.143.0/25\",\r\n \"20.190.143.128/25\",\r\n
+ \ \"20.190.144.0/25\",\r\n \"20.190.144.128/25\",\r\n \"20.190.145.0/25\",\r\n
+ \ \"20.190.145.128/25\",\r\n \"20.190.146.0/25\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.147.0/25\",\r\n \"20.190.147.128/25\",\r\n \"20.190.148.0/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.149.0/24\",\r\n \"20.190.150.0/24\",\r\n
+ \ \"20.190.151.0/24\",\r\n \"20.190.152.0/24\",\r\n \"20.190.153.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.190.155.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"20.190.158.0/24\",\r\n \"20.190.159.0/24\",\r\n
+ \ \"20.190.160.0/24\",\r\n \"20.190.161.0/24\",\r\n \"20.190.162.0/24\",\r\n
+ \ \"20.190.163.0/24\",\r\n \"20.190.164.0/24\",\r\n \"20.190.165.0/24\",\r\n
+ \ \"20.190.166.0/24\",\r\n \"20.190.167.0/24\",\r\n \"20.190.168.0/24\",\r\n
+ \ \"20.190.169.0/24\",\r\n \"20.190.170.0/24\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"20.190.172.0/24\",\r\n \"20.190.173.0/24\",\r\n \"20.190.174.0/24\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.190.176.0/24\",\r\n \"20.190.177.0/24\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"20.190.179.0/24\",\r\n \"20.190.180.0/24\",\r\n
+ \ \"20.190.183.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.190.185.0/24\",\r\n
+ \ \"20.190.186.0/24\",\r\n \"20.190.187.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"20.190.189.64/26\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"20.190.190.0/26\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"20.190.192.0/18\",\r\n \"20.191.0.0/18\",\r\n \"20.191.64.0/18\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.191.160.0/19\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n \"20.192.64.0/19\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"20.193.96.0/19\",\r\n
+ \ \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.194.128.0/17\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n
+ \ \"20.195.128.0/22\",\r\n \"20.195.136.0/21\",\r\n \"20.195.144.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.197.64.0/18\",\r\n \"20.197.128.0/17\",\r\n
+ \ \"20.198.0.0/17\",\r\n \"20.198.128.0/17\",\r\n \"20.199.0.0/17\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"20.199.192.0/18\",\r\n \"20.200.0.0/18\",\r\n
+ \ \"20.200.64.0/18\",\r\n \"20.200.128.0/18\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"20.201.0.0/18\",\r\n \"23.96.0.0/17\",\r\n \"23.96.128.0/17\",\r\n
+ \ \"23.97.48.0/20\",\r\n \"23.97.64.0/19\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"23.97.112.192/27\",\r\n \"23.97.112.224/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"23.97.128.0/17\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.98.45.0/24\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.98.47.0/24\",\r\n \"23.98.48.0/21\",\r\n
+ \ \"23.98.56.0/24\",\r\n \"23.98.57.64/26\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.98.128.0/17\",\r\n \"23.99.0.0/18\",\r\n \"23.99.64.0/19\",\r\n
+ \ \"23.99.96.0/19\",\r\n \"23.99.128.0/17\",\r\n \"23.100.0.0/20\",\r\n
+ \ \"23.100.16.0/20\",\r\n \"23.100.32.0/20\",\r\n \"23.100.48.0/20\",\r\n
+ \ \"23.100.64.0/21\",\r\n \"23.100.72.0/21\",\r\n \"23.100.80.0/21\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.100.96.0/21\",\r\n \"23.100.104.0/21\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.100.120.0/21\",\r\n \"23.100.128.0/18\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.100.240.0/20\",\r\n \"23.101.0.0/20\",\r\n
+ \ \"23.101.16.0/20\",\r\n \"23.101.32.0/21\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.101.64.0/20\",\r\n \"23.101.80.0/21\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.101.128.0/20\",\r\n \"23.101.144.0/20\",\r\n \"23.101.160.0/20\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.101.192.0/20\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"23.101.224.0/19\",\r\n \"23.102.0.0/18\",\r\n \"23.102.64.0/19\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.128.0/18\",\r\n \"23.102.192.0/21\",\r\n
+ \ \"23.102.200.0/23\",\r\n \"23.102.202.0/24\",\r\n \"23.102.203.0/24\",\r\n
+ \ \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n \"23.102.224.0/19\",\r\n
+ \ \"23.103.64.32/27\",\r\n \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n
+ \ \"40.64.64.0/18\",\r\n \"40.64.128.0/21\",\r\n \"40.65.0.0/18\",\r\n
+ \ \"40.65.64.0/18\",\r\n \"40.65.128.0/18\",\r\n \"40.65.192.0/18\",\r\n
+ \ \"40.66.32.0/19\",\r\n \"40.66.120.0/21\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.67.128.0/19\",\r\n \"40.67.160.0/19\",\r\n \"40.67.192.0/19\",\r\n
+ \ \"40.67.224.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.96.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.69.192.0/19\",\r\n \"40.70.0.0/18\",\r\n \"40.70.64.0/20\",\r\n
+ \ \"40.70.80.0/21\",\r\n \"40.70.88.0/28\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.74.0.0/18\",\r\n \"40.74.64.0/18\",\r\n
+ \ \"40.74.128.0/20\",\r\n \"40.74.144.0/20\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.75.0.0/19\",\r\n \"40.75.32.0/21\",\r\n
+ \ \"40.75.64.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.76.0.0/16\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.128.0/25\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.130.128/26\",\r\n
+ \ \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n \"40.77.131.128/26\",\r\n
+ \ \"40.77.131.192/27\",\r\n \"40.77.131.224/28\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.132.0/24\",\r\n \"40.77.133.0/24\",\r\n \"40.77.134.0/24\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.0/28\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.48/28\",\r\n \"40.77.136.64/28\",\r\n
+ \ \"40.77.136.80/28\",\r\n \"40.77.136.96/28\",\r\n \"40.77.136.128/25\",\r\n
+ \ \"40.77.137.0/25\",\r\n \"40.77.137.128/26\",\r\n \"40.77.137.192/27\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.138.128/25\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n \"40.77.160.32/27\",\r\n
+ \ \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n \"40.77.161.0/26\",\r\n
+ \ \"40.77.161.64/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.162.0/24\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.166.0/25\",\r\n \"40.77.166.128/28\",\r\n \"40.77.166.160/27\",\r\n
+ \ \"40.77.166.192/26\",\r\n \"40.77.167.0/24\",\r\n \"40.77.168.0/24\",\r\n
+ \ \"40.77.169.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.171.0/24\",\r\n
+ \ \"40.77.172.0/24\",\r\n \"40.77.173.0/24\",\r\n \"40.77.174.0/24\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.175.32/27\",\r\n \"40.77.175.64/27\",\r\n
+ \ \"40.77.175.96/27\",\r\n \"40.77.175.128/27\",\r\n \"40.77.175.160/27\",\r\n
+ \ \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n \"40.77.176.0/24\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.180.0/23\",\r\n
+ \ \"40.77.182.0/28\",\r\n \"40.77.182.16/28\",\r\n \"40.77.182.32/27\",\r\n
+ \ \"40.77.182.64/27\",\r\n \"40.77.182.96/27\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.182.192/26\",\r\n \"40.77.183.0/24\",\r\n
+ \ \"40.77.184.0/25\",\r\n \"40.77.184.128/25\",\r\n \"40.77.185.0/25\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.188.0/22\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.196.0/24\",\r\n \"40.77.197.0/24\",\r\n
+ \ \"40.77.198.0/26\",\r\n \"40.77.198.64/26\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.0/25\",\r\n \"40.77.199.128/26\",\r\n \"40.77.199.192/26\",\r\n
+ \ \"40.77.200.0/25\",\r\n \"40.77.200.128/25\",\r\n \"40.77.201.0/24\",\r\n
+ \ \"40.77.202.0/24\",\r\n \"40.77.224.0/28\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.224.64/27\",\r\n \"40.77.224.96/27\",\r\n
+ \ \"40.77.224.128/25\",\r\n \"40.77.225.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.227.0/24\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.229.0/24\",\r\n \"40.77.230.0/24\",\r\n \"40.77.231.0/24\",\r\n
+ \ \"40.77.232.0/25\",\r\n \"40.77.232.128/25\",\r\n \"40.77.233.0/24\",\r\n
+ \ \"40.77.234.0/25\",\r\n \"40.77.234.128/27\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.234.192/27\",\r\n \"40.77.234.224/27\",\r\n \"40.77.235.0/24\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.32/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.236.96/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.236.160/28\",\r\n
+ \ \"40.77.236.176/28\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.237.128/25\",\r\n \"40.77.240.0/25\",\r\n
+ \ \"40.77.240.128/25\",\r\n \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n
+ \ \"40.77.245.0/24\",\r\n \"40.77.246.0/24\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.248.128/25\",\r\n \"40.77.249.0/24\",\r\n
+ \ \"40.77.250.0/24\",\r\n \"40.77.251.0/24\",\r\n \"40.77.252.0/23\",\r\n
+ \ \"40.77.254.0/26\",\r\n \"40.77.254.128/25\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.77.255.128/26\",\r\n \"40.77.255.192/26\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.128.0/18\",\r\n \"40.78.192.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.0/28\",\r\n \"40.78.208.16/28\",\r\n \"40.78.208.32/30\",\r\n
+ \ \"40.78.208.48/28\",\r\n \"40.78.208.64/28\",\r\n \"40.78.209.0/24\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.78.211.0/24\",\r\n \"40.78.212.0/24\",\r\n
+ \ \"40.78.214.0/24\",\r\n \"40.78.216.0/24\",\r\n \"40.78.217.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.78.219.0/24\",\r\n \"40.78.220.0/24\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.78.222.0/24\",\r\n \"40.78.223.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.78.232.0/21\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n \"40.79.8.32/28\",\r\n
+ \ \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n \"40.79.9.0/24\",\r\n
+ \ \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n \"40.79.48.0/27\",\r\n
+ \ \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n \"40.79.56.0/21\",\r\n
+ \ \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n \"40.79.88.0/27\",\r\n
+ \ \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n \"40.79.90.0/24\",\r\n
+ \ \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n \"40.79.93.0/28\",\r\n
+ \ \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n \"40.79.96.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.152.0/21\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.176.0/21\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.201.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.79.203.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.79.204.192/26\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n \"40.79.205.240/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.79.206.32/27\",\r\n \"40.79.206.64/27\",\r\n
+ \ \"40.79.206.96/27\",\r\n \"40.79.206.128/27\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.206.224/27\",\r\n \"40.79.207.0/27\",\r\n
+ \ \"40.79.207.32/27\",\r\n \"40.79.207.64/28\",\r\n \"40.79.207.80/28\",\r\n
+ \ \"40.79.207.96/27\",\r\n \"40.79.207.128/25\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.79.210.0/24\",\r\n \"40.79.211.0/24\",\r\n
+ \ \"40.79.212.0/24\",\r\n \"40.79.213.0/24\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.79.216.0/24\",\r\n \"40.79.217.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.79.219.0/24\",\r\n \"40.79.220.0/24\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.79.222.0/24\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.79.232.0/21\",\r\n \"40.79.240.0/20\",\r\n \"40.80.0.0/22\",\r\n
+ \ \"40.80.4.0/22\",\r\n \"40.80.12.0/22\",\r\n \"40.80.16.0/22\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.24.0/22\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.36.0/22\",\r\n \"40.80.40.0/22\",\r\n \"40.80.44.0/22\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.56.0/21\",\r\n \"40.80.64.0/19\",\r\n
+ \ \"40.80.96.0/20\",\r\n \"40.80.144.0/21\",\r\n \"40.80.152.0/21\",\r\n
+ \ \"40.80.160.0/24\",\r\n \"40.80.168.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.80.184.0/21\",\r\n \"40.80.192.0/19\",\r\n \"40.80.224.0/20\",\r\n
+ \ \"40.80.240.0/20\",\r\n \"40.81.0.0/20\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.81.48.0/20\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.81.96.0/20\",\r\n \"40.81.112.0/20\",\r\n
+ \ \"40.81.128.0/19\",\r\n \"40.81.160.0/20\",\r\n \"40.81.176.0/20\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.81.224.0/19\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.82.4.0/22\",\r\n \"40.82.8.0/22\",\r\n \"40.82.16.0/22\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.24.0/22\",\r\n \"40.82.28.0/22\",\r\n
+ \ \"40.82.32.0/22\",\r\n \"40.82.36.0/22\",\r\n \"40.82.44.0/22\",\r\n
+ \ \"40.82.48.0/22\",\r\n \"40.82.52.0/22\",\r\n \"40.82.60.0/22\",\r\n
+ \ \"40.82.64.0/22\",\r\n \"40.82.68.0/22\",\r\n \"40.82.72.0/22\",\r\n
+ \ \"40.82.84.0/22\",\r\n \"40.82.88.0/22\",\r\n \"40.82.92.0/22\",\r\n
+ \ \"40.82.96.0/22\",\r\n \"40.82.100.0/22\",\r\n \"40.82.116.0/22\",\r\n
+ \ \"40.82.120.0/22\",\r\n \"40.82.128.0/19\",\r\n \"40.82.160.0/19\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.82.224.0/20\",\r\n \"40.82.240.0/22\",\r\n
+ \ \"40.82.244.0/22\",\r\n \"40.82.248.0/21\",\r\n \"40.83.0.0/20\",\r\n
+ \ \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n \"40.83.24.64/27\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.83.64.0/18\",\r\n \"40.83.128.0/17\",\r\n \"40.84.0.0/17\",\r\n
+ \ \"40.84.128.0/17\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.85.144.0/20\",\r\n \"40.85.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.86.128.0/19\",\r\n \"40.86.160.0/19\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.87.0.0/17\",\r\n \"40.87.128.0/19\",\r\n
+ \ \"40.87.160.0/22\",\r\n \"40.87.164.0/22\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.4/30\",\r\n \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n
+ \ \"40.87.168.32/29\",\r\n \"40.87.168.40/29\",\r\n \"40.87.168.48/28\",\r\n
+ \ \"40.87.168.64/30\",\r\n \"40.87.168.68/31\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.208/31\",\r\n
+ \ \"40.87.168.210/31\",\r\n \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n
+ \ \"40.87.168.224/27\",\r\n \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n
+ \ \"40.87.169.40/30\",\r\n \"40.87.169.44/30\",\r\n \"40.87.169.48/29\",\r\n
+ \ \"40.87.169.56/31\",\r\n \"40.87.169.58/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.98/31\",\r\n
+ \ \"40.87.169.100/31\",\r\n \"40.87.169.102/31\",\r\n \"40.87.169.104/29\",\r\n
+ \ \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n \"40.87.169.136/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.144/28\",\r\n
+ \ \"40.87.169.160/27\",\r\n \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n
+ \ \"40.87.170.128/28\",\r\n \"40.87.170.144/31\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.188/30\",\r\n
+ \ \"40.87.170.192/31\",\r\n \"40.87.170.194/31\",\r\n \"40.87.170.196/30\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n \"40.87.170.220/30\",\r\n
+ \ \"40.87.170.224/30\",\r\n \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n
+ \ \"40.87.170.240/29\",\r\n \"40.87.170.248/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.32/30\",\r\n
+ \ \"40.87.171.36/30\",\r\n \"40.87.171.40/31\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n \"40.87.171.96/27\",\r\n
+ \ \"40.87.171.128/28\",\r\n \"40.87.172.0/22\",\r\n \"40.87.176.0/25\",\r\n
+ \ \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n \"40.87.176.174/31\",\r\n
+ \ \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n \"40.87.176.216/29\",\r\n
+ \ \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n \"40.87.176.240/28\",\r\n
+ \ \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n \"40.87.177.64/27\",\r\n
+ \ \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n \"40.87.177.120/31\",\r\n
+ \ \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n \"40.87.177.144/29\",\r\n
+ \ \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n \"40.87.177.160/27\",\r\n
+ \ \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n \"40.87.177.212/30\",\r\n
+ \ \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n \"40.87.178.0/26\",\r\n
+ \ \"40.87.178.64/29\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n \"40.87.180.12/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n \"40.87.180.28/30\",\r\n
+ \ \"40.87.180.32/29\",\r\n \"40.87.180.40/31\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n \"40.87.180.74/31\",\r\n
+ \ \"40.87.180.76/30\",\r\n \"40.87.182.0/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.24/29\",\r\n
+ \ \"40.87.182.32/28\",\r\n \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n
+ \ \"40.87.182.60/31\",\r\n \"40.87.182.62/31\",\r\n \"40.87.182.64/26\",\r\n
+ \ \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n \"40.87.183.16/29\",\r\n
+ \ \"40.87.183.24/30\",\r\n \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n
+ \ \"40.87.183.34/31\",\r\n \"40.87.183.36/30\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n \"40.87.183.48/30\",\r\n
+ \ \"40.87.183.52/31\",\r\n \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n
+ \ \"40.87.183.64/26\",\r\n \"40.87.183.128/28\",\r\n \"40.87.183.144/28\",\r\n
+ \ \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n \"40.87.183.224/29\",\r\n
+ \ \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n \"40.87.183.238/31\",\r\n
+ \ \"40.87.183.240/30\",\r\n \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n
+ \ \"40.87.184.0/22\",\r\n \"40.87.188.0/22\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.87.196.0/22\",\r\n \"40.87.200.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.87.208.0/22\",\r\n \"40.87.212.0/22\",\r\n \"40.87.216.0/22\",\r\n
+ \ \"40.87.220.0/22\",\r\n \"40.87.224.0/22\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.88.0.0/16\",\r\n \"40.89.0.0/19\",\r\n
+ \ \"40.89.32.0/19\",\r\n \"40.89.64.0/18\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.89.192.0/19\",\r\n \"40.89.224.0/19\",\r\n \"40.90.16.0/27\",\r\n
+ \ \"40.90.16.64/27\",\r\n \"40.90.16.96/27\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.16.192/26\",\r\n \"40.90.17.0/27\",\r\n
+ \ \"40.90.17.32/27\",\r\n \"40.90.17.64/27\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.17.128/28\",\r\n \"40.90.17.144/28\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.17.192/27\",\r\n \"40.90.17.224/27\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.18.64/26\",\r\n \"40.90.18.128/26\",\r\n
+ \ \"40.90.18.192/26\",\r\n \"40.90.19.0/27\",\r\n \"40.90.19.32/27\",\r\n
+ \ \"40.90.19.64/26\",\r\n \"40.90.19.128/25\",\r\n \"40.90.20.0/25\",\r\n
+ \ \"40.90.20.128/25\",\r\n \"40.90.21.0/25\",\r\n \"40.90.21.128/25\",\r\n
+ \ \"40.90.22.0/25\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.0/25\",\r\n \"40.90.24.128/25\",\r\n
+ \ \"40.90.25.0/26\",\r\n \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.26.0/26\",\r\n \"40.90.26.64/26\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.27.0/26\",\r\n \"40.90.27.64/26\",\r\n
+ \ \"40.90.27.128/26\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.28.192/26\",\r\n
+ \ \"40.90.29.0/26\",\r\n \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.30.0/25\",\r\n \"40.90.30.128/27\",\r\n
+ \ \"40.90.30.160/27\",\r\n \"40.90.30.192/26\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.31.96/27\",\r\n \"40.90.31.128/25\",\r\n \"40.90.128.0/28\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.128.48/28\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.128.80/28\",\r\n \"40.90.128.96/28\",\r\n \"40.90.128.112/28\",\r\n
+ \ \"40.90.128.128/28\",\r\n \"40.90.128.144/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.128.176/28\",\r\n \"40.90.128.192/28\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.128.240/28\",\r\n \"40.90.129.48/28\",\r\n
+ \ \"40.90.129.96/27\",\r\n \"40.90.129.128/26\",\r\n \"40.90.129.192/27\",\r\n
+ \ \"40.90.129.224/27\",\r\n \"40.90.130.0/27\",\r\n \"40.90.130.32/28\",\r\n
+ \ \"40.90.130.48/28\",\r\n \"40.90.130.64/28\",\r\n \"40.90.130.80/28\",\r\n
+ \ \"40.90.130.96/28\",\r\n \"40.90.130.112/28\",\r\n \"40.90.130.128/28\",\r\n
+ \ \"40.90.130.144/28\",\r\n \"40.90.130.160/27\",\r\n \"40.90.130.192/28\",\r\n
+ \ \"40.90.130.208/28\",\r\n \"40.90.130.224/28\",\r\n \"40.90.130.240/28\",\r\n
+ \ \"40.90.131.0/27\",\r\n \"40.90.131.32/27\",\r\n \"40.90.131.64/27\",\r\n
+ \ \"40.90.131.96/27\",\r\n \"40.90.131.128/27\",\r\n \"40.90.131.160/27\",\r\n
+ \ \"40.90.131.192/27\",\r\n \"40.90.131.224/27\",\r\n \"40.90.132.0/27\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.132.48/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.132.96/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.132.192/26\",\r\n \"40.90.133.0/27\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.133.96/28\",\r\n \"40.90.133.112/28\",\r\n
+ \ \"40.90.133.128/28\",\r\n \"40.90.133.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.133.192/26\",\r\n \"40.90.134.0/26\",\r\n \"40.90.134.64/26\",\r\n
+ \ \"40.90.134.128/26\",\r\n \"40.90.134.192/26\",\r\n \"40.90.135.0/26\",\r\n
+ \ \"40.90.135.64/26\",\r\n \"40.90.135.128/25\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.136.160/28\",\r\n \"40.90.136.176/28\",\r\n
+ \ \"40.90.136.192/27\",\r\n \"40.90.136.224/27\",\r\n \"40.90.137.0/27\",\r\n
+ \ \"40.90.137.32/27\",\r\n \"40.90.137.64/27\",\r\n \"40.90.137.96/27\",\r\n
+ \ \"40.90.137.128/27\",\r\n \"40.90.137.160/27\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.137.224/27\",\r\n \"40.90.138.0/27\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.138.96/27\",\r\n \"40.90.138.128/27\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.138.192/28\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.90.139.0/27\",\r\n \"40.90.139.32/27\",\r\n
+ \ \"40.90.139.64/27\",\r\n \"40.90.139.96/27\",\r\n \"40.90.139.128/27\",\r\n
+ \ \"40.90.139.160/27\",\r\n \"40.90.139.192/27\",\r\n \"40.90.139.224/27\",\r\n
+ \ \"40.90.140.0/27\",\r\n \"40.90.140.32/27\",\r\n \"40.90.140.64/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.128/27\",\r\n \"40.90.140.160/27\",\r\n
+ \ \"40.90.140.192/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.64/27\",\r\n \"40.90.141.96/27\",\r\n
+ \ \"40.90.141.128/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.32/27\",\r\n \"40.90.142.64/27\",\r\n
+ \ \"40.90.142.96/27\",\r\n \"40.90.142.128/27\",\r\n \"40.90.142.160/27\",\r\n
+ \ \"40.90.142.192/28\",\r\n \"40.90.142.208/28\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.142.240/28\",\r\n \"40.90.143.0/27\",\r\n \"40.90.143.32/27\",\r\n
+ \ \"40.90.143.64/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.143.128/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.143.192/26\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.32/27\",\r\n \"40.90.144.64/26\",\r\n \"40.90.144.128/26\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.144.224/27\",\r\n \"40.90.145.0/27\",\r\n
+ \ \"40.90.145.32/27\",\r\n \"40.90.145.64/27\",\r\n \"40.90.145.96/27\",\r\n
+ \ \"40.90.145.128/27\",\r\n \"40.90.145.160/27\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"40.90.145.224/27\",\r\n \"40.90.146.0/28\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.32/27\",\r\n \"40.90.146.64/26\",\r\n \"40.90.146.128/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.192/27\",\r\n \"40.90.146.224/27\",\r\n
+ \ \"40.90.147.0/27\",\r\n \"40.90.147.32/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.147.96/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.90.147.224/27\",\r\n \"40.90.148.0/26\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.148.96/27\",\r\n \"40.90.148.128/27\",\r\n \"40.90.148.160/28\",\r\n
+ \ \"40.90.148.176/28\",\r\n \"40.90.148.192/27\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.149.0/27\",\r\n \"40.90.149.32/27\",\r\n \"40.90.149.64/27\",\r\n
+ \ \"40.90.149.96/27\",\r\n \"40.90.149.128/25\",\r\n \"40.90.150.0/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.90.150.128/25\",\r\n \"40.90.151.0/26\",\r\n \"40.90.151.64/27\",\r\n
+ \ \"40.90.151.96/27\",\r\n \"40.90.151.128/28\",\r\n \"40.90.151.144/28\",\r\n
+ \ \"40.90.151.160/27\",\r\n \"40.90.151.224/27\",\r\n \"40.90.152.0/25\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.90.152.160/27\",\r\n \"40.90.152.192/27\",\r\n
+ \ \"40.90.152.224/27\",\r\n \"40.90.153.0/26\",\r\n \"40.90.153.64/27\",\r\n
+ \ \"40.90.153.96/27\",\r\n \"40.90.153.128/25\",\r\n \"40.90.154.0/26\",\r\n
+ \ \"40.90.154.64/26\",\r\n \"40.90.154.128/26\",\r\n \"40.90.154.192/26\",\r\n
+ \ \"40.90.155.0/26\",\r\n \"40.90.155.64/26\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.155.192/26\",\r\n \"40.90.156.0/26\",\r\n \"40.90.156.64/27\",\r\n
+ \ \"40.90.156.96/27\",\r\n \"40.90.156.128/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.157.0/27\",\r\n \"40.90.157.32/27\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.157.192/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.90.158.0/26\",\r\n \"40.90.158.64/26\",\r\n \"40.90.158.128/25\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.90.160.0/19\",\r\n \"40.90.192.0/19\",\r\n
+ \ \"40.90.224.0/19\",\r\n \"40.91.0.0/22\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.91.12.0/28\",\r\n \"40.91.12.16/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n
+ \ \"40.91.13.128/27\",\r\n \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n
+ \ \"40.91.16.0/22\",\r\n \"40.91.20.0/22\",\r\n \"40.91.24.0/22\",\r\n
+ \ \"40.91.28.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.91.64.0/18\",\r\n
+ \ \"40.91.160.0/19\",\r\n \"40.91.192.0/18\",\r\n \"40.93.0.0/23\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.3.0/24\",\r\n \"40.93.4.0/24\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.93.6.0/24\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.93.8.0/24\",\r\n \"40.96.46.0/24\",\r\n \"40.96.52.0/24\",\r\n
+ \ \"40.96.55.0/24\",\r\n \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.112.36.0/25\",\r\n \"40.112.36.128/25\",\r\n
+ \ \"40.112.37.0/26\",\r\n \"40.112.37.64/26\",\r\n \"40.112.37.128/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.112.38.192/26\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.112.48.0/20\",\r\n \"40.112.64.0/19\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.112.128.0/17\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.113.192.0/18\",\r\n \"40.114.0.0/17\",\r\n \"40.114.128.0/17\",\r\n
+ \ \"40.115.0.0/18\",\r\n \"40.115.64.0/19\",\r\n \"40.115.96.0/19\",\r\n
+ \ \"40.115.128.0/17\",\r\n \"40.116.0.0/16\",\r\n \"40.117.0.0/19\",\r\n
+ \ \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n \"40.117.128.0/17\",\r\n
+ \ \"40.118.0.0/17\",\r\n \"40.118.128.0/17\",\r\n \"40.119.0.0/18\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.119.68.0/22\",\r\n \"40.119.72.0/22\",\r\n
+ \ \"40.119.76.0/22\",\r\n \"40.119.80.0/22\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.119.92.0/22\",\r\n \"40.119.96.0/22\",\r\n \"40.119.104.0/22\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.119.128.0/19\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.119.192.0/18\",\r\n \"40.120.0.0/20\",\r\n \"40.120.16.0/20\",\r\n
+ \ \"40.120.32.0/19\",\r\n \"40.120.64.0/18\",\r\n \"40.121.0.0/16\",\r\n
+ \ \"40.122.0.0/20\",\r\n \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n
+ \ \"40.122.64.0/18\",\r\n \"40.122.128.0/17\",\r\n \"40.123.0.0/17\",\r\n
+ \ \"40.123.128.0/22\",\r\n \"40.123.132.0/22\",\r\n \"40.123.136.0/24\",\r\n
+ \ \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.124.0.0/16\",\r\n \"40.125.0.0/19\",\r\n \"40.125.32.0/19\",\r\n
+ \ \"40.125.64.0/18\",\r\n \"40.126.0.0/24\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.3.0/24\",\r\n \"40.126.4.0/24\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.6.0/24\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.8.0/24\",\r\n \"40.126.9.0/24\",\r\n \"40.126.10.0/25\",\r\n
+ \ \"40.126.10.128/25\",\r\n \"40.126.11.0/25\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.12.0/25\",\r\n \"40.126.12.128/25\",\r\n \"40.126.13.0/25\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.14.0/25\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.15.128/25\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.16.128/25\",\r\n \"40.126.17.0/25\",\r\n \"40.126.17.128/25\",\r\n
+ \ \"40.126.18.0/25\",\r\n \"40.126.18.128/25\",\r\n \"40.126.19.0/25\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.20.0/25\",\r\n \"40.126.20.128/25\",\r\n
+ \ \"40.126.21.0/24\",\r\n \"40.126.22.0/24\",\r\n \"40.126.23.0/24\",\r\n
+ \ \"40.126.24.0/24\",\r\n \"40.126.25.0/24\",\r\n \"40.126.26.0/24\",\r\n
+ \ \"40.126.27.0/24\",\r\n \"40.126.28.0/24\",\r\n \"40.126.29.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"40.126.31.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"40.126.34.0/24\",\r\n \"40.126.35.0/24\",\r\n
+ \ \"40.126.36.0/24\",\r\n \"40.126.37.0/24\",\r\n \"40.126.38.0/24\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.40.0/24\",\r\n \"40.126.41.0/24\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"40.126.43.0/24\",\r\n \"40.126.44.0/24\",\r\n
+ \ \"40.126.45.0/24\",\r\n \"40.126.46.0/24\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"40.126.48.0/24\",\r\n \"40.126.49.0/24\",\r\n \"40.126.50.0/24\",\r\n
+ \ \"40.126.51.0/24\",\r\n \"40.126.52.0/24\",\r\n \"40.126.55.0/24\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.57.0/24\",\r\n \"40.126.58.0/24\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.60.0/24\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.61.64/26\",\r\n \"40.126.61.128/26\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.126.62.64/26\",\r\n \"40.126.128.0/18\",\r\n
+ \ \"40.126.192.0/24\",\r\n \"40.126.193.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"40.126.195.0/24\",\r\n \"40.126.197.0/24\",\r\n \"40.126.198.0/24\",\r\n
+ \ \"40.126.200.0/24\",\r\n \"40.126.201.0/24\",\r\n \"40.126.207.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"40.126.224.0/19\",\r\n \"40.127.0.0/19\",\r\n
+ \ \"40.127.64.0/19\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.11.0.0/18\",\r\n \"51.11.64.0/19\",\r\n \"51.11.96.0/19\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.11.192.0/18\",\r\n \"51.13.0.0/17\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.103.0.0/17\",\r\n \"51.103.128.0/18\",\r\n
+ \ \"51.103.192.0/27\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.104.0.0/19\",\r\n \"51.104.32.0/19\",\r\n \"51.104.64.0/18\",\r\n
+ \ \"51.104.128.0/18\",\r\n \"51.104.192.0/18\",\r\n \"51.105.0.0/18\",\r\n
+ \ \"51.105.64.0/20\",\r\n \"51.105.80.0/21\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.107.0.0/18\",\r\n
+ \ \"51.107.64.0/19\",\r\n \"51.107.96.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n \"51.107.160.0/20\",\r\n
+ \ \"51.107.192.0/21\",\r\n \"51.107.200.0/21\",\r\n \"51.107.208.0/20\",\r\n
+ \ \"51.107.224.0/20\",\r\n \"51.107.240.0/21\",\r\n \"51.107.248.0/21\",\r\n
+ \ \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.200.0/21\",\r\n
+ \ \"51.116.208.0/20\",\r\n \"51.116.224.0/19\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n \"51.120.208.0/21\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"51.120.232.0/21\",\r\n
+ \ \"51.120.240.0/20\",\r\n \"51.124.0.0/17\",\r\n \"51.124.128.0/18\",\r\n
+ \ \"51.132.0.0/18\",\r\n \"51.132.64.0/18\",\r\n \"51.132.128.0/17\",\r\n
+ \ \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n \"51.137.128.0/18\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.138.128.0/19\",\r\n
+ \ \"51.138.160.0/21\",\r\n \"51.138.192.0/19\",\r\n \"51.140.0.0/17\",\r\n
+ \ \"51.140.128.0/18\",\r\n \"51.140.192.0/18\",\r\n \"51.141.0.0/17\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.32/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.32/27\",\r\n
+ \ \"51.141.129.64/26\",\r\n \"51.141.129.128/26\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"51.141.134.0/24\",\r\n \"51.141.135.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"51.141.156.0/22\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.141.192.0/18\",\r\n \"51.142.0.0/17\",\r\n \"51.142.128.0/17\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"51.143.128.0/18\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"51.143.208.0/20\",\r\n
+ \ \"51.143.224.0/19\",\r\n \"51.144.0.0/16\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.0.0/22\",\r\n
+ \ \"52.101.4.0/22\",\r\n \"52.101.8.0/24\",\r\n \"52.101.9.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.11.0/24\",\r\n \"52.101.12.0/22\",\r\n
+ \ \"52.101.16.0/22\",\r\n \"52.101.20.0/22\",\r\n \"52.101.24.0/22\",\r\n
+ \ \"52.101.28.0/22\",\r\n \"52.101.32.0/22\",\r\n \"52.101.36.0/22\",\r\n
+ \ \"52.101.40.0/24\",\r\n \"52.101.41.0/24\",\r\n \"52.101.42.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.129.0/24\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.102.131.0/24\",\r\n \"52.102.132.0/24\",\r\n \"52.102.133.0/24\",\r\n
+ \ \"52.102.134.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.102.159.0/24\",\r\n
+ \ \"52.103.0.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.2.0/24\",\r\n
+ \ \"52.103.3.0/24\",\r\n \"52.103.4.0/24\",\r\n \"52.103.5.0/24\",\r\n
+ \ \"52.103.6.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.128.0/24\",\r\n \"52.103.129.0/24\",\r\n \"52.103.130.0/24\",\r\n
+ \ \"52.103.131.0/24\",\r\n \"52.103.132.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.0.0/21\",\r\n \"52.108.16.0/21\",\r\n
+ \ \"52.108.24.0/21\",\r\n \"52.108.32.0/22\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.40.0/23\",\r\n \"52.108.42.0/23\",\r\n \"52.108.44.0/23\",\r\n
+ \ \"52.108.46.0/23\",\r\n \"52.108.48.0/23\",\r\n \"52.108.50.0/23\",\r\n
+ \ \"52.108.52.0/23\",\r\n \"52.108.54.0/23\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.68.0/23\",\r\n \"52.108.70.0/23\",\r\n \"52.108.72.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.74.0/24\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.76.0/24\",\r\n \"52.108.77.0/24\",\r\n \"52.108.78.0/24\",\r\n
+ \ \"52.108.79.0/24\",\r\n \"52.108.80.0/24\",\r\n \"52.108.81.0/24\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.83.0/24\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.108.85.0/24\",\r\n \"52.108.86.0/24\",\r\n \"52.108.87.0/24\",\r\n
+ \ \"52.108.88.0/24\",\r\n \"52.108.89.0/24\",\r\n \"52.108.90.0/24\",\r\n
+ \ \"52.108.91.0/24\",\r\n \"52.108.92.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.108.94.0/24\",\r\n \"52.108.95.0/24\",\r\n \"52.108.96.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.108.108.0/23\",\r\n
+ \ \"52.108.110.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.108.113.0/24\",\r\n \"52.108.116.0/24\",\r\n \"52.108.128.0/24\",\r\n
+ \ \"52.108.137.0/24\",\r\n \"52.108.138.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.177.0/24\",\r\n \"52.108.178.0/24\",\r\n
+ \ \"52.108.179.0/24\",\r\n \"52.108.180.0/24\",\r\n \"52.108.181.0/24\",\r\n
+ \ \"52.108.182.0/24\",\r\n \"52.108.183.0/24\",\r\n \"52.108.184.0/24\",\r\n
+ \ \"52.108.185.0/24\",\r\n \"52.108.186.0/24\",\r\n \"52.108.187.0/24\",\r\n
+ \ \"52.108.188.0/24\",\r\n \"52.108.189.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.191.0/24\",\r\n \"52.108.192.0/24\",\r\n \"52.108.193.0/24\",\r\n
+ \ \"52.108.194.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.196.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.198.0/24\",\r\n \"52.108.199.0/24\",\r\n
+ \ \"52.108.200.0/24\",\r\n \"52.108.201.0/24\",\r\n \"52.108.202.0/24\",\r\n
+ \ \"52.108.203.0/24\",\r\n \"52.108.204.0/23\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.208.0/21\",\r\n \"52.108.216.0/22\",\r\n \"52.108.220.0/23\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.108.224.0/23\",\r\n \"52.108.226.0/23\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.108.230.0/23\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.108.236.0/22\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.108.248.0/21\",\r\n \"52.109.0.0/22\",\r\n \"52.109.4.0/22\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.109.12.0/22\",\r\n \"52.109.16.0/22\",\r\n
+ \ \"52.109.20.0/22\",\r\n \"52.109.24.0/22\",\r\n \"52.109.28.0/22\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.109.36.0/22\",\r\n \"52.109.40.0/22\",\r\n
+ \ \"52.109.44.0/22\",\r\n \"52.109.48.0/22\",\r\n \"52.109.52.0/22\",\r\n
+ \ \"52.109.56.0/22\",\r\n \"52.109.60.0/22\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.109.72.0/22\",\r\n \"52.109.76.0/22\",\r\n
+ \ \"52.109.86.0/23\",\r\n \"52.109.88.0/22\",\r\n \"52.109.92.0/22\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.109.100.0/23\",\r\n \"52.109.102.0/23\",\r\n
+ \ \"52.109.104.0/23\",\r\n \"52.109.108.0/22\",\r\n \"52.109.112.0/22\",\r\n
+ \ \"52.109.116.0/22\",\r\n \"52.109.120.0/22\",\r\n \"52.109.124.0/22\",\r\n
+ \ \"52.109.128.0/22\",\r\n \"52.109.132.0/22\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.109.140.0/22\",\r\n \"52.109.144.0/23\",\r\n \"52.109.150.0/23\",\r\n
+ \ \"52.109.152.0/23\",\r\n \"52.109.156.0/23\",\r\n \"52.109.158.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.109.162.0/23\",\r\n \"52.109.164.0/24\",\r\n
+ \ \"52.111.194.0/24\",\r\n \"52.111.197.0/24\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.111.202.0/24\",\r\n \"52.111.203.0/24\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.111.205.0/24\",\r\n \"52.111.206.0/24\",\r\n \"52.111.207.0/24\",\r\n
+ \ \"52.111.224.0/24\",\r\n \"52.111.225.0/24\",\r\n \"52.111.226.0/24\",\r\n
+ \ \"52.111.227.0/24\",\r\n \"52.111.228.0/24\",\r\n \"52.111.229.0/24\",\r\n
+ \ \"52.111.230.0/24\",\r\n \"52.111.231.0/24\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.111.233.0/24\",\r\n \"52.111.234.0/24\",\r\n \"52.111.235.0/24\",\r\n
+ \ \"52.111.236.0/24\",\r\n \"52.111.237.0/24\",\r\n \"52.111.238.0/24\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.111.240.0/24\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.111.242.0/24\",\r\n \"52.111.243.0/24\",\r\n \"52.111.244.0/24\",\r\n
+ \ \"52.111.245.0/24\",\r\n \"52.111.246.0/24\",\r\n \"52.111.247.0/24\",\r\n
+ \ \"52.111.248.0/24\",\r\n \"52.111.249.0/24\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.111.251.0/24\",\r\n \"52.111.252.0/24\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.111.254.0/24\",\r\n \"52.111.255.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.24.0/21\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.83.0/24\",\r\n \"52.112.88.0/22\",\r\n
+ \ \"52.112.93.0/24\",\r\n \"52.112.94.0/24\",\r\n \"52.112.95.0/24\",\r\n
+ \ \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.105.0/24\",\r\n \"52.112.106.0/23\",\r\n \"52.112.108.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.110.0/23\",\r\n \"52.112.112.0/24\",\r\n
+ \ \"52.112.113.0/24\",\r\n \"52.112.114.0/24\",\r\n \"52.112.115.0/24\",\r\n
+ \ \"52.112.116.0/24\",\r\n \"52.112.117.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.112.144.0/20\",\r\n \"52.112.168.0/22\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.112.190.0/24\",\r\n
+ \ \"52.112.191.0/24\",\r\n \"52.112.197.0/24\",\r\n \"52.112.200.0/22\",\r\n
+ \ \"52.112.204.0/23\",\r\n \"52.112.206.0/24\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.229.0/24\",\r\n \"52.112.230.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.233.0/24\",\r\n
+ \ \"52.112.236.0/24\",\r\n \"52.112.237.0/24\",\r\n \"52.112.238.0/24\",\r\n
+ \ \"52.112.240.0/20\",\r\n \"52.113.9.0/24\",\r\n \"52.113.10.0/23\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.14.0/24\",\r\n \"52.113.15.0/24\",\r\n
+ \ \"52.113.16.0/20\",\r\n \"52.113.37.0/24\",\r\n \"52.113.40.0/21\",\r\n
+ \ \"52.113.48.0/20\",\r\n \"52.113.70.0/23\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.76.0/23\",\r\n \"52.113.78.0/23\",\r\n \"52.113.83.0/24\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.88.0/22\",\r\n \"52.113.92.0/22\",\r\n
+ \ \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.103.0/24\",\r\n \"52.113.104.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.113.107.0/24\",\r\n
+ \ \"52.113.108.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.110.0/23\",\r\n
+ \ \"52.113.112.0/20\",\r\n \"52.113.128.0/24\",\r\n \"52.113.129.0/24\",\r\n
+ \ \"52.113.130.0/24\",\r\n \"52.113.131.0/24\",\r\n \"52.113.132.0/24\",\r\n
+ \ \"52.113.133.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.113.136.0/21\",\r\n
+ \ \"52.113.144.0/21\",\r\n \"52.113.160.0/19\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.113.193.0/24\",\r\n \"52.113.198.0/24\",\r\n \"52.113.199.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.205.0/24\",\r\n
+ \ \"52.113.206.0/24\",\r\n \"52.113.207.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.113.224.0/19\",\r\n \"52.114.0.0/21\",\r\n \"52.114.8.0/21\",\r\n
+ \ \"52.114.16.0/22\",\r\n \"52.114.20.0/22\",\r\n \"52.114.24.0/22\",\r\n
+ \ \"52.114.28.0/22\",\r\n \"52.114.32.0/22\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.114.40.0/22\",\r\n \"52.114.44.0/22\",\r\n \"52.114.48.0/22\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.60.0/23\",\r\n \"52.114.64.0/21\",\r\n
+ \ \"52.114.72.0/22\",\r\n \"52.114.76.0/22\",\r\n \"52.114.80.0/22\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.88.0/22\",\r\n \"52.114.92.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.104.0/22\",\r\n \"52.114.108.0/22\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.116.0/22\",\r\n \"52.114.120.0/22\",\r\n
+ \ \"52.114.128.0/22\",\r\n \"52.114.132.0/22\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.144.0/22\",\r\n \"52.114.148.0/22\",\r\n \"52.114.152.0/21\",\r\n
+ \ \"52.114.160.0/22\",\r\n \"52.114.164.0/22\",\r\n \"52.114.168.0/22\",\r\n
+ \ \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n \"52.114.180.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.114.186.0/23\",\r\n \"52.114.192.0/23\",\r\n
+ \ \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n \"52.114.200.0/22\",\r\n
+ \ \"52.114.216.0/22\",\r\n \"52.114.224.0/24\",\r\n \"52.114.226.0/24\",\r\n
+ \ \"52.114.228.0/24\",\r\n \"52.114.230.0/24\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.232.0/24\",\r\n \"52.114.233.0/24\",\r\n \"52.114.234.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.114.238.0/24\",\r\n \"52.114.240.0/24\",\r\n
+ \ \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n \"52.114.244.0/24\",\r\n
+ \ \"52.114.248.0/22\",\r\n \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n
+ \ \"52.115.8.0/22\",\r\n \"52.115.16.0/21\",\r\n \"52.115.24.0/22\",\r\n
+ \ \"52.115.32.0/22\",\r\n \"52.115.36.0/23\",\r\n \"52.115.38.0/24\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.47.0/24\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.54.0/24\",\r\n \"52.115.55.0/24\",\r\n
+ \ \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.64.0/22\",\r\n \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n
+ \ \"52.115.76.0/22\",\r\n \"52.115.80.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.115.88.0/22\",\r\n \"52.115.96.0/24\",\r\n \"52.115.97.0/24\",\r\n
+ \ \"52.115.98.0/24\",\r\n \"52.115.99.0/24\",\r\n \"52.115.100.0/22\",\r\n
+ \ \"52.115.104.0/23\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n \"52.115.140.0/22\",\r\n
+ \ \"52.115.144.0/20\",\r\n \"52.115.160.0/19\",\r\n \"52.115.192.0/19\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.64.0/19\",\r\n
+ \ \"52.120.96.0/19\",\r\n \"52.120.128.0/21\",\r\n \"52.120.136.0/21\",\r\n
+ \ \"52.120.144.0/21\",\r\n \"52.120.152.0/22\",\r\n \"52.120.156.0/24\",\r\n
+ \ \"52.120.157.0/24\",\r\n \"52.120.158.0/23\",\r\n \"52.120.160.0/19\",\r\n
+ \ \"52.120.192.0/20\",\r\n \"52.120.208.0/20\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.120.240.0/20\",\r\n \"52.121.0.0/21\",\r\n \"52.121.16.0/21\",\r\n
+ \ \"52.121.24.0/21\",\r\n \"52.121.32.0/22\",\r\n \"52.121.36.0/22\",\r\n
+ \ \"52.121.40.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.121.64.0/20\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.121.100.0/22\",\r\n
+ \ \"52.121.104.0/23\",\r\n \"52.121.106.0/23\",\r\n \"52.121.108.0/22\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.121.116.0/22\",\r\n \"52.121.120.0/23\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.121.128.0/20\",\r\n
+ \ \"52.121.144.0/21\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.123.0.0/24\",\r\n
+ \ \"52.123.1.0/24\",\r\n \"52.123.2.0/24\",\r\n \"52.123.3.0/24\",\r\n
+ \ \"52.123.4.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.125.128.0/22\",\r\n
+ \ \"52.125.132.0/22\",\r\n \"52.125.136.0/24\",\r\n \"52.125.137.0/24\",\r\n
+ \ \"52.125.138.0/23\",\r\n \"52.125.140.0/23\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.16.0/24\",\r\n
+ \ \"52.136.17.0/24\",\r\n \"52.136.18.0/24\",\r\n \"52.136.19.0/24\",\r\n
+ \ \"52.136.20.0/24\",\r\n \"52.136.21.0/24\",\r\n \"52.136.22.0/24\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.24.0/24\",\r\n \"52.136.25.0/24\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.29.0/24\",\r\n \"52.136.30.0/24\",\r\n \"52.136.31.0/24\",\r\n
+ \ \"52.136.32.0/19\",\r\n \"52.136.64.0/18\",\r\n \"52.136.128.0/18\",\r\n
+ \ \"52.136.192.0/18\",\r\n \"52.137.0.0/18\",\r\n \"52.137.64.0/18\",\r\n
+ \ \"52.137.128.0/17\",\r\n \"52.138.0.0/18\",\r\n \"52.138.64.0/20\",\r\n
+ \ \"52.138.80.0/21\",\r\n \"52.138.88.0/21\",\r\n \"52.138.96.0/19\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.139.0.0/18\",\r\n \"52.139.64.0/18\",\r\n
+ \ \"52.139.128.0/18\",\r\n \"52.139.192.0/18\",\r\n \"52.140.0.0/18\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.140.128.0/18\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.141.0.0/18\",\r\n \"52.141.64.0/18\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.141.192.0/19\",\r\n \"52.141.224.0/20\",\r\n \"52.141.240.0/20\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.142.64.0/18\",\r\n \"52.142.128.0/18\",\r\n
+ \ \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n \"52.143.64.0/18\",\r\n
+ \ \"52.143.128.0/18\",\r\n \"52.143.192.0/24\",\r\n \"52.143.193.0/24\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.195.0/24\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.197.0/24\",\r\n \"52.143.198.0/24\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.143.202.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.143.207.0/24\",\r\n
+ \ \"52.143.208.0/24\",\r\n \"52.143.209.0/24\",\r\n \"52.143.210.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.143.212.0/23\",\r\n \"52.143.214.0/24\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.143.218.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.143.221.0/24\",\r\n \"52.143.222.0/23\",\r\n
+ \ \"52.143.224.0/19\",\r\n \"52.146.0.0/17\",\r\n \"52.146.128.0/17\",\r\n
+ \ \"52.147.0.0/19\",\r\n \"52.147.32.0/19\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.147.96.0/19\",\r\n \"52.147.128.0/19\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.148.0.0/18\",\r\n \"52.148.64.0/18\",\r\n
+ \ \"52.148.128.0/18\",\r\n \"52.148.192.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.151.0.0/18\",\r\n \"52.151.64.0/18\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.0.0/17\",\r\n \"52.152.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.153.64.0/18\",\r\n \"52.153.128.0/18\",\r\n
+ \ \"52.153.192.0/18\",\r\n \"52.154.0.0/18\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.154.128.0/17\",\r\n \"52.155.0.0/19\",\r\n \"52.155.32.0/19\",\r\n
+ \ \"52.155.64.0/19\",\r\n \"52.155.96.0/19\",\r\n \"52.155.128.0/17\",\r\n
+ \ \"52.156.0.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.156.64.0/18\",\r\n
+ \ \"52.156.128.0/19\",\r\n \"52.156.160.0/19\",\r\n \"52.156.192.0/18\",\r\n
+ \ \"52.157.0.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.158.0.0/17\",\r\n \"52.158.128.0/19\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.176.0/20\",\r\n \"52.158.192.0/19\",\r\n \"52.158.224.0/19\",\r\n
+ \ \"52.159.0.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.159.128.0/17\",\r\n
+ \ \"52.160.0.0/16\",\r\n \"52.161.0.0/16\",\r\n \"52.162.0.0/16\",\r\n
+ \ \"52.163.0.0/16\",\r\n \"52.164.0.0/16\",\r\n \"52.165.0.0/19\",\r\n
+ \ \"52.165.32.0/20\",\r\n \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n
+ \ \"52.165.56.0/21\",\r\n \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n
+ \ \"52.165.104.0/25\",\r\n \"52.165.104.128/26\",\r\n \"52.165.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.167.0.0/16\",\r\n \"52.168.0.0/16\",\r\n
+ \ \"52.169.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.171.0.0/16\",\r\n
+ \ \"52.172.0.0/17\",\r\n \"52.172.128.0/17\",\r\n \"52.173.0.0/16\",\r\n
+ \ \"52.174.0.0/16\",\r\n \"52.175.0.0/17\",\r\n \"52.175.128.0/18\",\r\n
+ \ \"52.175.192.0/18\",\r\n \"52.176.0.0/17\",\r\n \"52.176.128.0/19\",\r\n
+ \ \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n \"52.176.192.0/19\",\r\n
+ \ \"52.176.224.0/24\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.177.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.178.128.0/17\",\r\n \"52.179.0.0/17\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.180.0.0/17\",\r\n \"52.180.128.0/19\",\r\n \"52.180.160.0/20\",\r\n
+ \ \"52.180.176.0/21\",\r\n \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n
+ \ \"52.180.185.0/24\",\r\n \"52.182.128.0/17\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.183.192.0/18\",\r\n \"52.184.0.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n \"52.184.168.80/28\",\r\n
+ \ \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n \"52.184.169.0/24\",\r\n
+ \ \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n \"52.184.192.0/18\",\r\n
+ \ \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n \"52.185.48.0/21\",\r\n
+ \ \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n \"52.185.56.96/28\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.64/27\",\r\n \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n
+ \ \"52.185.128.0/18\",\r\n \"52.185.192.0/18\",\r\n \"52.186.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.187.192.0/18\",\r\n
+ \ \"52.188.0.0/16\",\r\n \"52.189.0.0/17\",\r\n \"52.189.128.0/18\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.190.0.0/17\",\r\n \"52.190.128.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.128.0/18\",\r\n \"52.191.192.0/18\",\r\n
+ \ \"52.224.0.0/16\",\r\n \"52.225.0.0/17\",\r\n \"52.225.128.0/21\",\r\n
+ \ \"52.225.136.0/27\",\r\n \"52.225.136.32/28\",\r\n \"52.225.136.48/28\",\r\n
+ \ \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n \"52.225.144.0/20\",\r\n
+ \ \"52.225.160.0/19\",\r\n \"52.225.192.0/18\",\r\n \"52.226.0.0/16\",\r\n
+ \ \"52.228.0.0/17\",\r\n \"52.228.128.0/17\",\r\n \"52.229.0.0/18\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.229.128.0/17\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.230.128.0/17\",\r\n \"52.231.0.0/17\",\r\n \"52.231.128.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.128.0/21\",\r\n \"52.232.136.0/21\",\r\n
+ \ \"52.232.144.0/24\",\r\n \"52.232.145.0/24\",\r\n \"52.232.146.0/24\",\r\n
+ \ \"52.232.147.0/24\",\r\n \"52.232.148.0/24\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.232.151.0/24\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.232.153.0/24\",\r\n \"52.232.154.0/24\",\r\n \"52.232.155.0/24\",\r\n
+ \ \"52.232.156.0/24\",\r\n \"52.232.157.0/24\",\r\n \"52.232.158.0/24\",\r\n
+ \ \"52.232.159.0/24\",\r\n \"52.232.160.0/19\",\r\n \"52.232.192.0/18\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.233.64.0/18\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.234.128.0/17\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.235.64.0/18\",\r\n \"52.236.0.0/17\",\r\n \"52.236.128.0/17\",\r\n
+ \ \"52.237.0.0/18\",\r\n \"52.237.64.0/18\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.238.0.0/18\",\r\n \"52.238.192.0/18\",\r\n
+ \ \"52.239.0.0/17\",\r\n \"52.239.128.0/24\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.132.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.135.0/26\",\r\n \"52.239.135.64/26\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.136.0/22\",\r\n \"52.239.140.0/22\",\r\n
+ \ \"52.239.144.0/23\",\r\n \"52.239.146.0/23\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.148.64/26\",\r\n \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n
+ \ \"52.239.150.0/23\",\r\n \"52.239.152.0/22\",\r\n \"52.239.156.0/24\",\r\n
+ \ \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n
+ \ \"52.239.157.224/27\",\r\n \"52.239.158.0/23\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.164.0/25\",\r\n \"52.239.164.128/26\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/22\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.177.0/27\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.184.224/27\",\r\n
+ \ \"52.239.185.0/28\",\r\n \"52.239.185.32/27\",\r\n \"52.239.186.0/24\",\r\n
+ \ \"52.239.187.0/25\",\r\n \"52.239.187.128/25\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.239.190.0/25\",\r\n \"52.239.190.128/26\",\r\n
+ \ \"52.239.190.192/26\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.128/27\",\r\n \"52.239.192.160/27\",\r\n
+ \ \"52.239.192.192/26\",\r\n \"52.239.193.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.196.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.128/27\",\r\n \"52.239.198.192/26\",\r\n
+ \ \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n \"52.239.202.0/24\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.205.0/24\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.207.192/26\",\r\n \"52.239.208.0/23\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.212.0/23\",\r\n \"52.239.214.0/23\",\r\n \"52.239.216.0/23\",\r\n
+ \ \"52.239.218.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"52.239.225.0/24\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.228.0/23\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.239.232.0/25\",\r\n \"52.239.232.128/25\",\r\n
+ \ \"52.239.233.0/25\",\r\n \"52.239.233.128/25\",\r\n \"52.239.234.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.239.238.0/24\",\r\n \"52.239.239.0/24\",\r\n
+ \ \"52.239.240.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.248.0/24\",\r\n
+ \ \"52.239.249.0/24\",\r\n \"52.239.250.0/24\",\r\n \"52.239.251.0/24\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.239.253.0/24\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.240.0.0/17\",\r\n \"52.240.128.0/17\",\r\n \"52.241.0.0/16\",\r\n
+ \ \"52.242.0.0/18\",\r\n \"52.242.64.0/18\",\r\n \"52.242.128.0/17\",\r\n
+ \ \"52.243.32.0/19\",\r\n \"52.243.64.0/18\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.12.0/22\",\r\n \"52.245.16.0/22\",\r\n \"52.245.20.0/22\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.245.28.0/22\",\r\n \"52.245.32.0/22\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.245.40.0/22\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.144/28\",\r\n
+ \ \"52.245.45.160/27\",\r\n \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n
+ \ \"52.245.46.32/28\",\r\n \"52.245.46.48/28\",\r\n \"52.245.46.64/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.245.46.112/28\",\r\n
+ \ \"52.245.46.128/28\",\r\n \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n
+ \ \"52.245.48.0/22\",\r\n \"52.245.52.0/22\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.245.60.0/22\",\r\n \"52.245.64.0/22\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.0/27\",\r\n \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n
+ \ \"52.245.69.96/28\",\r\n \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n
+ \ \"52.245.69.192/26\",\r\n \"52.245.70.0/23\",\r\n \"52.245.72.0/22\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.245.80.0/22\",\r\n \"52.245.84.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"52.245.92.0/22\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.245.100.0/22\",\r\n \"52.245.104.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.245.112.0/22\",\r\n \"52.245.116.0/22\",\r\n \"52.245.120.0/22\",\r\n
+ \ \"52.245.124.0/22\",\r\n \"52.246.0.0/17\",\r\n \"52.246.128.0/20\",\r\n
+ \ \"52.246.152.0/21\",\r\n \"52.246.160.0/19\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.0.0/17\",\r\n \"52.247.192.0/18\",\r\n \"52.248.0.0/17\",\r\n
+ \ \"52.248.128.0/17\",\r\n \"52.249.0.0/18\",\r\n \"52.249.64.0/19\",\r\n
+ \ \"52.249.128.0/17\",\r\n \"52.250.0.0/17\",\r\n \"52.250.128.0/18\",\r\n
+ \ \"52.250.192.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.252.128.0/17\",\r\n \"52.253.0.0/18\",\r\n \"52.253.64.0/20\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"52.253.96.0/19\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"52.253.148.0/23\",\r\n \"52.253.150.0/23\",\r\n \"52.253.152.0/23\",\r\n
+ \ \"52.253.154.0/23\",\r\n \"52.253.156.0/22\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"52.253.162.0/23\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.166.0/24\",\r\n \"52.253.167.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.169.0/24\",\r\n \"52.253.170.0/23\",\r\n \"52.253.172.0/24\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"52.253.175.0/24\",\r\n
+ \ \"52.253.176.0/24\",\r\n \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n
+ \ \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n \"52.253.181.0/24\",\r\n
+ \ \"52.253.185.0/24\",\r\n \"52.253.186.0/24\",\r\n \"52.253.191.0/24\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"52.253.197.0/24\",\r\n \"52.253.224.0/21\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n
+ \ \"52.254.96.0/20\",\r\n \"52.254.112.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"52.255.0.0/19\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"52.255.128.0/17\",\r\n \"64.4.8.0/24\",\r\n
+ \ \"64.4.54.0/24\",\r\n \"65.52.0.0/19\",\r\n \"65.52.32.0/21\",\r\n
+ \ \"65.52.48.0/20\",\r\n \"65.52.64.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.52.111.0/24\",\r\n \"65.52.112.0/20\",\r\n \"65.52.128.0/19\",\r\n
+ \ \"65.52.160.0/19\",\r\n \"65.52.192.0/19\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"65.52.232.0/21\",\r\n \"65.52.240.0/21\",\r\n \"65.52.248.0/21\",\r\n
+ \ \"65.54.19.128/27\",\r\n \"65.54.55.160/27\",\r\n \"65.54.55.224/27\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n
+ \ \"65.55.44.64/27\",\r\n \"65.55.44.96/28\",\r\n \"65.55.44.112/28\",\r\n
+ \ \"65.55.44.128/27\",\r\n \"65.55.51.0/24\",\r\n \"65.55.60.176/29\",\r\n
+ \ \"65.55.60.188/30\",\r\n \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.105.192/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.106.192/28\",\r\n \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n
+ \ \"65.55.106.240/28\",\r\n \"65.55.107.0/28\",\r\n \"65.55.107.48/28\",\r\n
+ \ \"65.55.107.64/27\",\r\n \"65.55.107.96/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.109.0/24\",\r\n \"65.55.110.0/24\",\r\n \"65.55.120.0/24\",\r\n
+ \ \"65.55.144.0/23\",\r\n \"65.55.146.0/24\",\r\n \"65.55.207.0/24\",\r\n
+ \ \"65.55.209.0/25\",\r\n \"65.55.209.128/26\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.211.0/27\",\r\n \"65.55.211.32/27\",\r\n
+ \ \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n \"65.55.213.0/27\",\r\n
+ \ \"65.55.213.64/26\",\r\n \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n
+ \ \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.64/26\",\r\n \"65.55.219.128/25\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.12.0/32\",\r\n \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n
+ \ \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n \"70.37.160.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"102.37.0.0/20\",\r\n
+ \ \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n \"102.37.26.0/27\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.72.0/21\",\r\n \"102.37.80.0/21\",\r\n \"102.37.96.0/19\",\r\n
+ \ \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n \"102.37.192.0/18\",\r\n
+ \ \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n \"102.133.96.0/20\",\r\n
+ \ \"102.133.112.0/28\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.40.128.0/17\",\r\n \"104.41.0.0/18\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.128.0/19\",\r\n \"104.41.160.0/19\",\r\n \"104.41.192.0/18\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.43.0.0/17\",\r\n \"104.43.128.0/17\",\r\n
+ \ \"104.44.88.0/27\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.64/27\",\r\n
+ \ \"104.44.88.96/27\",\r\n \"104.44.88.128/27\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.88.192/27\",\r\n \"104.44.88.224/27\",\r\n \"104.44.89.0/27\",\r\n
+ \ \"104.44.89.32/27\",\r\n \"104.44.89.64/27\",\r\n \"104.44.89.96/27\",\r\n
+ \ \"104.44.89.128/27\",\r\n \"104.44.89.160/27\",\r\n \"104.44.89.192/27\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"104.44.90.0/27\",\r\n \"104.44.90.32/27\",\r\n
+ \ \"104.44.90.64/26\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.90.224/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.91.64/27\",\r\n \"104.44.91.96/27\",\r\n
+ \ \"104.44.91.128/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.91.192/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.92.0/27\",\r\n \"104.44.92.32/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.92.96/27\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.92.160/27\",\r\n \"104.44.92.192/27\",\r\n \"104.44.92.224/27\",\r\n
+ \ \"104.44.93.0/27\",\r\n \"104.44.93.32/27\",\r\n \"104.44.93.64/27\",\r\n
+ \ \"104.44.93.96/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.93.160/27\",\r\n
+ \ \"104.44.93.192/27\",\r\n \"104.44.93.224/27\",\r\n \"104.44.94.0/28\",\r\n
+ \ \"104.44.94.16/28\",\r\n \"104.44.94.32/28\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.44.94.64/28\",\r\n \"104.44.94.80/28\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.44.94.112/28\",\r\n \"104.44.94.128/28\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.94.160/27\",\r\n \"104.44.94.192/28\",\r\n \"104.44.94.208/28\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"104.44.95.0/28\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"104.44.95.32/28\",\r\n \"104.44.95.48/28\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.44.95.112/28\",\r\n
+ \ \"104.44.95.128/27\",\r\n \"104.44.95.160/27\",\r\n \"104.44.95.192/28\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"104.44.95.224/28\",\r\n \"104.44.95.240/28\",\r\n
+ \ \"104.44.128.0/18\",\r\n \"104.45.0.0/18\",\r\n \"104.45.64.0/20\",\r\n
+ \ \"104.45.80.0/20\",\r\n \"104.45.96.0/19\",\r\n \"104.45.128.0/18\",\r\n
+ \ \"104.45.192.0/20\",\r\n \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.8.0/21\",\r\n \"104.46.24.0/22\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.46.32.0/19\",\r\n \"104.46.64.0/19\",\r\n \"104.46.96.0/19\",\r\n
+ \ \"104.46.160.0/19\",\r\n \"104.46.192.0/20\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.47.128.0/18\",\r\n \"104.47.200.0/21\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.47.210.0/23\",\r\n \"104.47.212.0/23\",\r\n
+ \ \"104.47.214.0/23\",\r\n \"104.47.216.64/26\",\r\n \"104.47.218.0/23\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"104.47.224.0/20\",\r\n \"104.208.0.0/19\",\r\n
+ \ \"104.208.32.0/20\",\r\n \"104.208.48.0/20\",\r\n \"104.208.64.0/18\",\r\n
+ \ \"104.208.128.0/17\",\r\n \"104.209.0.0/18\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.209.128.0/17\",\r\n \"104.210.0.0/20\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"104.210.64.0/18\",\r\n \"104.210.128.0/19\",\r\n
+ \ \"104.210.176.0/20\",\r\n \"104.210.192.0/19\",\r\n \"104.211.0.0/18\",\r\n
+ \ \"104.211.64.0/18\",\r\n \"104.211.128.0/18\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"104.214.0.0/17\",\r\n \"104.214.128.0/19\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"104.214.192.0/18\",\r\n \"104.215.0.0/18\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"104.215.128.0/17\",\r\n \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n
+ \ \"111.221.78.0/23\",\r\n \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n
+ \ \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n \"131.253.12.48/29\",\r\n
+ \ \"131.253.12.160/28\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.192/28\",\r\n
+ \ \"131.253.12.208/28\",\r\n \"131.253.12.224/30\",\r\n \"131.253.12.228/30\",\r\n
+ \ \"131.253.12.248/29\",\r\n \"131.253.13.0/28\",\r\n \"131.253.13.16/29\",\r\n
+ \ \"131.253.13.24/29\",\r\n \"131.253.13.32/28\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.96/30\",\r\n \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.32/27\",\r\n \"131.253.14.64/29\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.160/27\",\r\n
+ \ \"131.253.14.192/29\",\r\n \"131.253.14.208/28\",\r\n \"131.253.14.224/28\",\r\n
+ \ \"131.253.14.248/29\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.15.32/27\",\r\n \"131.253.15.192/28\",\r\n \"131.253.15.208/28\",\r\n
+ \ \"131.253.15.224/27\",\r\n \"131.253.24.0/28\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.24.192/26\",\r\n \"131.253.25.0/24\",\r\n \"131.253.27.0/24\",\r\n
+ \ \"131.253.34.224/27\",\r\n \"131.253.35.128/26\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"131.253.36.128/26\",\r\n \"131.253.36.224/27\",\r\n \"131.253.38.0/27\",\r\n
+ \ \"131.253.38.32/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.38.224/27\",\r\n
+ \ \"131.253.40.0/28\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.48/29\",\r\n \"131.253.40.64/28\",\r\n \"131.253.40.80/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.128/27\",\r\n \"131.253.40.160/28\",\r\n
+ \ \"131.253.40.192/26\",\r\n \"131.253.41.0/24\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"134.170.220.0/23\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n \"137.116.96.0/22\",\r\n
+ \ \"137.116.112.0/20\",\r\n \"137.116.128.0/19\",\r\n \"137.116.160.0/20\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"137.116.184.0/21\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.117.0.0/19\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.117.128.0/17\",\r\n \"137.135.0.0/18\",\r\n
+ \ \"137.135.64.0/18\",\r\n \"137.135.128.0/17\",\r\n \"138.91.0.0/20\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"138.91.32.0/20\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"138.91.64.0/19\",\r\n \"138.91.96.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.55.2.128/26\",\r\n \"157.55.3.0/24\",\r\n \"157.55.7.128/26\",\r\n
+ \ \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n \"157.55.10.160/29\",\r\n
+ \ \"157.55.10.176/28\",\r\n \"157.55.10.192/26\",\r\n \"157.55.11.128/25\",\r\n
+ \ \"157.55.12.64/26\",\r\n \"157.55.12.128/26\",\r\n \"157.55.13.64/26\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.24.0/21\",\r\n \"157.55.37.0/24\",\r\n
+ \ \"157.55.38.0/24\",\r\n \"157.55.39.0/24\",\r\n \"157.55.48.0/24\",\r\n
+ \ \"157.55.50.0/25\",\r\n \"157.55.51.224/28\",\r\n \"157.55.55.0/27\",\r\n
+ \ \"157.55.55.32/28\",\r\n \"157.55.55.100/30\",\r\n \"157.55.55.104/29\",\r\n
+ \ \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n
+ \ \"157.55.55.216/29\",\r\n \"157.55.55.228/30\",\r\n \"157.55.55.232/29\",\r\n
+ \ \"157.55.55.240/28\",\r\n \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n
+ \ \"157.55.80.0/21\",\r\n \"157.55.103.32/27\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"157.55.106.0/26\",\r\n \"157.55.106.128/25\",\r\n \"157.55.107.0/24\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n
+ \ \"157.55.136.0/21\",\r\n \"157.55.151.0/28\",\r\n \"157.55.153.224/28\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.55.160.0/20\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"157.55.204.128/25\",\r\n \"157.55.208.0/21\",\r\n \"157.55.248.0/21\",\r\n
+ \ \"157.56.2.0/25\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"157.56.3.128/25\",\r\n \"157.56.8.0/21\",\r\n \"157.56.19.224/27\",\r\n
+ \ \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.80.0/25\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"157.56.160.0/21\",\r\n \"157.56.176.0/21\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.0.0/19\",\r\n \"168.61.32.0/20\",\r\n
+ \ \"168.61.48.0/21\",\r\n \"168.61.56.0/21\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.61.128.0/25\",\r\n
+ \ \"168.61.128.128/28\",\r\n \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n
+ \ \"168.61.129.224/27\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.61.136.0/21\",\r\n \"168.61.144.0/20\",\r\n \"168.61.160.0/19\",\r\n
+ \ \"168.61.208.0/20\",\r\n \"168.62.0.0/19\",\r\n \"168.62.32.0/19\",\r\n
+ \ \"168.62.64.0/19\",\r\n \"168.62.96.0/19\",\r\n \"168.62.128.0/19\",\r\n
+ \ \"168.62.160.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.62.224.0/19\",\r\n
+ \ \"168.63.0.0/19\",\r\n \"168.63.32.0/19\",\r\n \"168.63.64.0/20\",\r\n
+ \ \"168.63.80.0/21\",\r\n \"168.63.88.0/23\",\r\n \"168.63.90.0/24\",\r\n
+ \ \"168.63.91.0/26\",\r\n \"168.63.92.0/22\",\r\n \"168.63.96.0/19\",\r\n
+ \ \"168.63.128.0/24\",\r\n \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n
+ \ \"168.63.129.64/26\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n
+ \ \"168.63.132.0/22\",\r\n \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n
+ \ \"168.63.152.0/22\",\r\n \"168.63.156.0/24\",\r\n \"168.63.160.0/19\",\r\n
+ \ \"168.63.192.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.232.16.0/21\",\r\n
+ \ \"191.232.32.0/19\",\r\n \"191.232.138.0/23\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.8.0/21\",\r\n \"191.233.16.0/20\",\r\n \"191.233.32.0/20\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.64.0/18\",\r\n \"191.233.128.0/20\",\r\n
+ \ \"191.233.144.0/20\",\r\n \"191.233.160.0/19\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.235.32.0/19\",\r\n \"191.235.64.0/18\",\r\n \"191.235.128.0/18\",\r\n
+ \ \"191.235.192.0/22\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.0/24\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.236.64.0/18\",\r\n \"191.236.128.0/18\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.237.128.0/18\",\r\n
+ \ \"191.237.192.0/23\",\r\n \"191.237.194.0/24\",\r\n \"191.237.195.0/24\",\r\n
+ \ \"191.237.196.0/24\",\r\n \"191.237.200.0/21\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"191.237.232.0/22\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.237.238.0/24\",\r\n \"191.237.240.0/23\",\r\n \"191.237.248.0/21\",\r\n
+ \ \"191.238.0.0/18\",\r\n \"191.238.64.0/23\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.70.0/23\",\r\n \"191.238.72.0/21\",\r\n
+ \ \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n \"191.238.92.0/23\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.238.128.0/21\",\r\n \"191.238.144.0/20\",\r\n
+ \ \"191.238.160.0/19\",\r\n \"191.238.192.0/19\",\r\n \"191.238.224.0/19\",\r\n
+ \ \"191.239.0.0/18\",\r\n \"191.239.64.0/19\",\r\n \"191.239.96.0/20\",\r\n
+ \ \"191.239.112.0/20\",\r\n \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"191.239.204.0/22\",\r\n \"191.239.208.0/20\",\r\n
+ \ \"191.239.224.0/20\",\r\n \"191.239.240.0/20\",\r\n \"193.149.64.0/21\",\r\n
+ \ \"193.149.72.0/21\",\r\n \"193.149.80.0/21\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"198.180.96.0/25\",\r\n \"198.180.97.0/24\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.24.0/23\",\r\n \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n
+ \ \"199.30.27.160/27\",\r\n \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n
+ \ \"199.30.29.0/24\",\r\n \"199.30.31.0/25\",\r\n \"199.30.31.192/26\",\r\n
+ \ \"204.79.180.0/24\",\r\n \"204.231.197.0/24\",\r\n \"207.46.13.0/24\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n
+ \ \"207.46.198.128/25\",\r\n \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n
+ \ \"207.46.202.128/28\",\r\n \"207.46.205.0/24\",\r\n \"207.46.224.0/20\",\r\n
+ \ \"207.68.174.40/29\",\r\n \"207.68.174.48/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"207.68.174.192/28\",\r\n \"207.68.174.208/28\",\r\n \"209.240.212.0/23\",\r\n
+ \ \"213.199.128.0/20\",\r\n \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n
+ \ \"213.199.180.192/27\",\r\n \"213.199.183.0/24\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200::/59\",\r\n \"2603:1007:200:20::/59\",\r\n
+ \ \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n \"2603:1010:6::/48\",\r\n
+ \ \"2603:1010:100::/40\",\r\n \"2603:1010:200::/47\",\r\n
+ \ \"2603:1010:202::/48\",\r\n \"2603:1010:204::/48\",\r\n
+ \ \"2603:1010:205::/48\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1010:400::/47\",\r\n \"2603:1010:403::/48\",\r\n
+ \ \"2603:1010:404::/48\",\r\n \"2603:1016:1400::/59\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:1400:40::/59\",\r\n
+ \ \"2603:1016:1400:60::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2401::/48\",\r\n \"2603:1016:2402::/48\",\r\n
+ \ \"2603:1016:2403::/48\",\r\n \"2603:1016:2500::/64\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1016:2500:8::/64\",\r\n
+ \ \"2603:1016:2500:c::/64\",\r\n \"2603:1017::/59\",\r\n
+ \ \"2603:1017:0:20::/59\",\r\n \"2603:1017:0:40::/59\",\r\n
+ \ \"2603:1017:0:60::/59\",\r\n \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n
+ \ \"2603:1020:4::/48\",\r\n \"2603:1020:5::/48\",\r\n \"2603:1020:200::/46\",\r\n
+ \ \"2603:1020:205::/48\",\r\n \"2603:1020:206::/48\",\r\n
+ \ \"2603:1020:300::/47\",\r\n \"2603:1020:302::/48\",\r\n
+ \ \"2603:1020:304::/48\",\r\n \"2603:1020:305::/48\",\r\n
+ \ \"2603:1020:400::/47\",\r\n \"2603:1020:402::/48\",\r\n
+ \ \"2603:1020:404::/48\",\r\n \"2603:1020:405::/48\",\r\n
+ \ \"2603:1020:500::/47\",\r\n \"2603:1020:503::/48\",\r\n
+ \ \"2603:1020:504::/48\",\r\n \"2603:1020:600::/47\",\r\n
+ \ \"2603:1020:602::/48\",\r\n \"2603:1020:604::/48\",\r\n
+ \ \"2603:1020:605::/48\",\r\n \"2603:1020:700::/47\",\r\n
+ \ \"2603:1020:702::/48\",\r\n \"2603:1020:704::/48\",\r\n
+ \ \"2603:1020:705::/48\",\r\n \"2603:1020:800::/47\",\r\n
+ \ \"2603:1020:802::/48\",\r\n \"2603:1020:804::/48\",\r\n
+ \ \"2603:1020:805::/48\",\r\n \"2603:1020:900::/47\",\r\n
+ \ \"2603:1020:902::/48\",\r\n \"2603:1020:904::/48\",\r\n
+ \ \"2603:1020:905::/48\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1020:b00::/47\",\r\n \"2603:1020:b03::/48\",\r\n
+ \ \"2603:1020:b04::/48\",\r\n \"2603:1020:c00::/47\",\r\n
+ \ \"2603:1020:c03::/48\",\r\n \"2603:1020:c04::/48\",\r\n
+ \ \"2603:1020:d00::/47\",\r\n \"2603:1020:d03::/48\",\r\n
+ \ \"2603:1020:d04::/48\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1020:f00::/47\",\r\n \"2603:1020:f03::/48\",\r\n
+ \ \"2603:1020:f04::/48\",\r\n \"2603:1026:2400::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2404::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2407::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:240c::/48\",\r\n
+ \ \"2603:1026:240d::/48\",\r\n \"2603:1026:240e::/48\",\r\n
+ \ \"2603:1026:240f::/48\",\r\n \"2603:1026:2411::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:2500:10::/64\",\r\n \"2603:1026:2500:14::/64\",\r\n
+ \ \"2603:1026:2500:18::/64\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:2500:20::/64\",\r\n \"2603:1026:2500:24::/64\",\r\n
+ \ \"2603:1026:2500:28::/64\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:40::/59\",\r\n \"2603:1026:3000:60::/59\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1026:3000:e0::/59\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1026:3000:120::/59\",\r\n
+ \ \"2603:1026:3000:140::/59\",\r\n \"2603:1026:3000:160::/59\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1026:3000:1a0::/59\",\r\n
+ \ \"2603:1026:3000:1c0::/59\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:40::/59\",\r\n
+ \ \"2603:1027:1:60::/59\",\r\n \"2603:1027:1:80::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2603:1027:1:e0::/59\",\r\n \"2603:1027:1:100::/59\",\r\n
+ \ \"2603:1027:1:120::/59\",\r\n \"2603:1027:1:140::/59\",\r\n
+ \ \"2603:1027:1:160::/59\",\r\n \"2603:1027:1:180::/59\",\r\n
+ \ \"2603:1027:1:1a0::/59\",\r\n \"2603:1027:1:1c0::/59\",\r\n
+ \ \"2603:1027:1:200::/59\",\r\n \"2603:1027:1:220::/59\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n
+ \ \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:17::/64\",\r\n \"2603:1030:9:18::/61\",\r\n
+ \ \"2603:1030:9:20::/59\",\r\n \"2603:1030:9:40::/58\",\r\n
+ \ \"2603:1030:9:80::/59\",\r\n \"2603:1030:9:a0::/60\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b3::/64\",\r\n \"2603:1030:9:b4::/63\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:10d::/64\",\r\n \"2603:1030:9:10e::/63\",\r\n
+ \ \"2603:1030:9:110::/64\",\r\n \"2603:1030:9:111::/64\",\r\n
+ \ \"2603:1030:9:112::/63\",\r\n \"2603:1030:9:114::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:118::/62\",\r\n \"2603:1030:9:11c::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12c::/63\",\r\n \"2603:1030:9:12e::/64\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1030:10::/48\",\r\n \"2603:1030:208::/47\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:20c::/47\",\r\n
+ \ \"2603:1030:20e::/48\",\r\n \"2603:1030:210::/47\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:2::/63\",\r\n \"2603:1030:401:4::/62\",\r\n
+ \ \"2603:1030:401:8::/61\",\r\n \"2603:1030:401:10::/62\",\r\n
+ \ \"2603:1030:401:14::/63\",\r\n \"2603:1030:401:16::/64\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:59::/64\",\r\n \"2603:1030:401:5a::/63\",\r\n
+ \ \"2603:1030:401:5c::/62\",\r\n \"2603:1030:401:60::/59\",\r\n
+ \ \"2603:1030:401:80::/62\",\r\n \"2603:1030:401:84::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:87::/64\",\r\n \"2603:1030:401:88::/62\",\r\n
+ \ \"2603:1030:401:8c::/63\",\r\n \"2603:1030:401:8e::/64\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:92::/63\",\r\n \"2603:1030:401:94::/62\",\r\n
+ \ \"2603:1030:401:98::/61\",\r\n \"2603:1030:401:a0::/62\",\r\n
+ \ \"2603:1030:401:a4::/63\",\r\n \"2603:1030:401:a6::/64\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:121::/64\",\r\n \"2603:1030:401:122::/63\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:136::/63\",\r\n \"2603:1030:401:138::/64\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:13c::/62\",\r\n \"2603:1030:401:140::/63\",\r\n
+ \ \"2603:1030:401:142::/64\",\r\n \"2603:1030:401:143::/64\",\r\n
+ \ \"2603:1030:401:144::/63\",\r\n \"2603:1030:401:146::/63\",\r\n
+ \ \"2603:1030:401:148::/63\",\r\n \"2603:1030:401:14a::/63\",\r\n
+ \ \"2603:1030:401:14c::/62\",\r\n \"2603:1030:401:150::/62\",\r\n
+ \ \"2603:1030:401:154::/63\",\r\n \"2603:1030:401:156::/63\",\r\n
+ \ \"2603:1030:401:158::/64\",\r\n \"2603:1030:401:159::/64\",\r\n
+ \ \"2603:1030:401:15a::/63\",\r\n \"2603:1030:401:15c::/62\",\r\n
+ \ \"2603:1030:401:160::/61\",\r\n \"2603:1030:401:168::/63\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:16d::/64\",\r\n \"2603:1030:401:16e::/63\",\r\n
+ \ \"2603:1030:401:170::/61\",\r\n \"2603:1030:401:178::/62\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:406::/47\",\r\n \"2603:1030:408::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:1::/64\",\r\n \"2603:1030:40a:2::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40c::/48\",\r\n \"2603:1030:40d::/60\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1030:600::/46\",\r\n
+ \ \"2603:1030:604::/47\",\r\n \"2603:1030:607::/48\",\r\n
+ \ \"2603:1030:608::/48\",\r\n \"2603:1030:800::/48\",\r\n
+ \ \"2603:1030:802::/47\",\r\n \"2603:1030:804::/58\",\r\n
+ \ \"2603:1030:804:40::/60\",\r\n \"2603:1030:804:53::/64\",\r\n
+ \ \"2603:1030:804:54::/64\",\r\n \"2603:1030:804:5b::/64\",\r\n
+ \ \"2603:1030:804:5c::/62\",\r\n \"2603:1030:804:60::/62\",\r\n
+ \ \"2603:1030:804:67::/64\",\r\n \"2603:1030:804:68::/61\",\r\n
+ \ \"2603:1030:804:70::/60\",\r\n \"2603:1030:804:80::/59\",\r\n
+ \ \"2603:1030:804:a0::/62\",\r\n \"2603:1030:804:a4::/64\",\r\n
+ \ \"2603:1030:804:a6::/63\",\r\n \"2603:1030:804:a8::/61\",\r\n
+ \ \"2603:1030:804:b0::/62\",\r\n \"2603:1030:804:b4::/64\",\r\n
+ \ \"2603:1030:804:b6::/63\",\r\n \"2603:1030:804:b8::/61\",\r\n
+ \ \"2603:1030:804:c0::/61\",\r\n \"2603:1030:804:c8::/62\",\r\n
+ \ \"2603:1030:804:cc::/63\",\r\n \"2603:1030:804:d2::/63\",\r\n
+ \ \"2603:1030:804:d4::/62\",\r\n \"2603:1030:804:d8::/61\",\r\n
+ \ \"2603:1030:804:e0::/59\",\r\n \"2603:1030:804:100::/61\",\r\n
+ \ \"2603:1030:804:108::/62\",\r\n \"2603:1030:805::/48\",\r\n
+ \ \"2603:1030:806::/48\",\r\n \"2603:1030:807::/48\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1030:b00::/47\",\r\n
+ \ \"2603:1030:b03::/48\",\r\n \"2603:1030:b04::/48\",\r\n
+ \ \"2603:1030:b05::/48\",\r\n \"2603:1030:c00::/48\",\r\n
+ \ \"2603:1030:c02::/47\",\r\n \"2603:1030:c04::/48\",\r\n
+ \ \"2603:1030:c05::/48\",\r\n \"2603:1030:c06::/48\",\r\n
+ \ \"2603:1030:c07::/48\",\r\n \"2603:1030:d00::/48\",\r\n
+ \ \"2603:1030:e01:2::/64\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:903::/64\",\r\n
+ \ \"2603:1036:903:1::/64\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:9ff:ffff::/64\",\r\n
+ \ \"2603:1036:d20::/64\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2400::/48\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2402::/48\",\r\n \"2603:1036:2403::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2408::/48\",\r\n \"2603:1036:2409::/48\",\r\n
+ \ \"2603:1036:240a::/48\",\r\n \"2603:1036:240d::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:2500:4::/64\",\r\n
+ \ \"2603:1036:2500:8::/64\",\r\n \"2603:1036:2500:10::/64\",\r\n
+ \ \"2603:1036:2500:14::/64\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:2500:24::/64\",\r\n
+ \ \"2603:1036:2500:2c::/64\",\r\n \"2603:1036:2500:30::/64\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1036:3000:20::/59\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1036:3000:100::/59\",\r\n
+ \ \"2603:1036:3000:120::/59\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1036:3000:1c0::/59\",\r\n \"2603:1037:1::/59\",\r\n
+ \ \"2603:1037:1:20::/59\",\r\n \"2603:1037:1:40::/59\",\r\n
+ \ \"2603:1037:1:60::/59\",\r\n \"2603:1037:1:80::/59\",\r\n
+ \ \"2603:1037:1:c0::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2603:1037:1:140::/59\",\r\n
+ \ \"2603:1037:1:160::/59\",\r\n \"2603:1037:1:180::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2603:1039:205::/48\",\r\n
+ \ \"2603:1040::/47\",\r\n \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n
+ \ \"2603:1040:5::/48\",\r\n \"2603:1040:200::/46\",\r\n \"2603:1040:204::/48\",\r\n
+ \ \"2603:1040:206::/48\",\r\n \"2603:1040:207::/48\",\r\n
+ \ \"2603:1040:400::/46\",\r\n \"2603:1040:404::/48\",\r\n
+ \ \"2603:1040:406::/48\",\r\n \"2603:1040:407::/48\",\r\n
+ \ \"2603:1040:600::/46\",\r\n \"2603:1040:605::/48\",\r\n
+ \ \"2603:1040:606::/48\",\r\n \"2603:1040:800::/46\",\r\n
+ \ \"2603:1040:805::/48\",\r\n \"2603:1040:806::/48\",\r\n
+ \ \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1040:a00::/46\",\r\n
+ \ \"2603:1040:a05::/48\",\r\n \"2603:1040:a06::/48\",\r\n
+ \ \"2603:1040:b00::/47\",\r\n \"2603:1040:b03::/48\",\r\n
+ \ \"2603:1040:b04::/48\",\r\n \"2603:1040:c00::/46\",\r\n
+ \ \"2603:1040:c05::/48\",\r\n \"2603:1040:c06::/48\",\r\n
+ \ \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1400::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1402::/48\",\r\n \"2603:1046:1403::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1405::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1408::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500::/64\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:1500:8::/64\",\r\n
+ \ \"2603:1046:1500:14::/64\",\r\n \"2603:1046:1500:18::/64\",\r\n
+ \ \"2603:1046:1500:1c::/64\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:20::/59\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1046:2000:60::/59\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1046:2000:c0::/59\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1046:2000:180::/59\",\r\n
+ \ \"2603:1047:1:20::/59\",\r\n \"2603:1047:1:40::/59\",\r\n
+ \ \"2603:1047:1:60::/59\",\r\n \"2603:1047:1:80::/59\",\r\n
+ \ \"2603:1047:1:a0::/59\",\r\n \"2603:1047:1:c0::/59\",\r\n
+ \ \"2603:1047:1:e0::/59\",\r\n \"2603:1047:1:100::/59\",\r\n
+ \ \"2603:1047:1:120::/59\",\r\n \"2603:1047:1:140::/59\",\r\n
+ \ \"2603:1047:1:160::/59\",\r\n \"2603:1047:1:180::/59\",\r\n
+ \ \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n \"2603:1050:5::/48\",\r\n
+ \ \"2603:1050:6::/48\",\r\n \"2603:1050:100::/40\",\r\n \"2603:1050:211::/48\",\r\n
+ \ \"2603:1050:300::/40\",\r\n \"2603:1050:400::/48\",\r\n
+ \ \"2603:1050:402::/48\",\r\n \"2603:1050:403::/48\",\r\n
+ \ \"2603:1056:1400::/48\",\r\n \"2603:1056:1401::/48\",\r\n
+ \ \"2603:1056:1402::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:1500:4::/64\",\r\n
+ \ \"2603:1056:2000:20::/59\",\r\n \"2603:1056:2000:40::/59\",\r\n
+ \ \"2603:1056:2000:60::/59\",\r\n \"2603:1057:2:20::/59\",\r\n
+ \ \"2603:1057:2:40::/59\",\r\n \"2603:1057:2:60::/59\",\r\n
+ \ \"2603:1061:1002::/48\",\r\n \"2a01:111:f100:1000::/62\",\r\n
+ \ \"2a01:111:f100:1004::/63\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f100:3000::/52\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f100:6000::/64\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\",\r\n \"2a01:111:f403:c000::/64\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c100::/64\",\r\n
+ \ \"2a01:111:f403:c10c::/62\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:c804::/62\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d004::/62\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:d804::/62\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f000::/64\",\r\n
+ \ \"2a01:111:f403:f800::/62\",\r\n \"2a01:111:f403:f804::/62\",\r\n
+ \ \"2a01:111:f403:f900::/62\",\r\n \"2a01:111:f403:f904::/62\",\r\n
+ \ \"2a01:111:f403:f908::/62\",\r\n \"2a01:111:f403:f90c::/62\",\r\n
+ \ \"2a01:111:f403:f910::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.australiacentral\",\r\n \"id\":
+ \"AzureCloud.australiacentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.155.128/26\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"20.36.32.0/19\",\r\n \"20.36.104.0/21\",\r\n \"20.37.0.0/18\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.184.0/22\",\r\n \"20.39.64.0/21\",\r\n
+ \ \"20.47.35.0/24\",\r\n \"20.53.0.0/19\",\r\n \"20.53.48.0/21\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.135.52.0/23\",\r\n \"20.150.124.0/24\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.190.189.64/26\",\r\n \"40.82.8.0/22\",\r\n
+ \ \"40.82.240.0/22\",\r\n \"40.90.130.48/28\",\r\n \"40.90.142.96/27\",\r\n
+ \ \"40.90.149.64/27\",\r\n \"40.126.61.64/26\",\r\n \"52.108.74.0/24\",\r\n
+ \ \"52.108.95.0/24\",\r\n \"52.109.128.0/22\",\r\n \"52.111.248.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.239.216.0/23\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1017:0:20::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiacentral2\",\r\n
+ \ \"id\": \"AzureCloud.australiacentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.224/27\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.112.0/20\",\r\n \"20.39.72.0/21\",\r\n \"20.39.96.0/19\",\r\n
+ \ \"20.47.36.0/24\",\r\n \"20.53.56.0/21\",\r\n \"20.135.54.0/23\",\r\n
+ \ \"20.150.103.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.193.96.0/19\",\r\n \"40.82.244.0/22\",\r\n \"40.90.31.96/27\",\r\n
+ \ \"40.90.130.32/28\",\r\n \"40.90.142.64/27\",\r\n \"40.90.149.32/27\",\r\n
+ \ \"40.126.61.128/26\",\r\n \"40.126.128.0/18\",\r\n \"52.108.180.0/24\",\r\n
+ \ \"52.108.201.0/24\",\r\n \"52.109.100.0/23\",\r\n \"52.111.249.0/24\",\r\n
+ \ \"52.143.218.0/24\",\r\n \"52.239.218.0/23\",\r\n \"2603:1010:400::/47\",\r\n
+ \ \"2603:1010:403::/48\",\r\n \"2603:1010:404::/48\",\r\n
+ \ \"2603:1016:1400:40::/59\",\r\n \"2603:1016:2401::/48\",\r\n
+ \ \"2603:1016:2500:8::/64\",\r\n \"2603:1017:0:40::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiaeast\",\r\n
+ \ \"id\": \"AzureCloud.australiaeast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.64.0/18\",\r\n \"13.72.224.0/19\",\r\n \"13.73.192.0/20\",\r\n
+ \ \"13.75.128.0/17\",\r\n \"13.104.211.128/26\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.20.128/26\",\r\n \"13.105.52.192/26\",\r\n \"13.105.53.128/26\",\r\n
+ \ \"20.37.192.0/19\",\r\n \"20.38.112.0/23\",\r\n \"20.40.64.0/20\",\r\n
+ \ \"20.40.80.0/21\",\r\n \"20.40.120.0/21\",\r\n \"20.40.176.0/20\",\r\n
+ \ \"20.42.192.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.64.0/18\",\r\n \"20.53.128.0/17\",\r\n \"20.58.128.0/18\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.150.66.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.188.128.0/17\",\r\n
+ \ \"20.190.142.0/25\",\r\n \"20.190.167.0/24\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.211.0/24\",\r\n \"40.82.32.0/22\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.87.208.0/22\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.30.0/25\",\r\n \"40.90.130.80/28\",\r\n \"40.90.130.208/28\",\r\n
+ \ \"40.90.140.32/27\",\r\n \"40.90.142.160/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.150.0/27\",\r\n \"40.112.37.128/26\",\r\n \"40.126.14.0/25\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.224.0/19\",\r\n \"52.108.40.0/23\",\r\n
+ \ \"52.108.83.0/24\",\r\n \"52.109.112.0/22\",\r\n \"52.111.224.0/24\",\r\n
+ \ \"52.113.88.0/22\",\r\n \"52.113.103.0/24\",\r\n \"52.114.16.0/22\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.192.0/23\",\r\n \"52.115.98.0/24\",\r\n
+ \ \"52.120.158.0/23\",\r\n \"52.121.108.0/22\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.147.0.0/19\",\r\n \"52.156.160.0/19\",\r\n
+ \ \"52.187.192.0/18\",\r\n \"52.232.136.0/21\",\r\n \"52.232.154.0/24\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.245.16.0/22\",\r\n \"104.44.90.64/26\",\r\n \"104.44.93.96/27\",\r\n
+ \ \"104.44.95.48/28\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.210.64.0/18\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.239.64.0/19\",\r\n \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n
+ \ \"2603:1010:6::/48\",\r\n \"2603:1016:1400:60::/59\",\r\n
+ \ \"2603:1016:2402::/48\",\r\n \"2603:1016:2500:c::/64\",\r\n
+ \ \"2603:1017:0:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.australiasoutheast\",\r\n \"id\": \"AzureCloud.australiasoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.73.96.0/19\",\r\n \"13.77.0.0/18\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.45.144.0/20\",\r\n \"20.46.96.0/20\",\r\n
+ \ \"20.47.38.0/24\",\r\n \"20.47.74.0/23\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.60.32.0/23\",\r\n \"20.70.64.0/18\",\r\n \"20.92.0.0/18\",\r\n
+ \ \"20.135.50.0/23\",\r\n \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.157.45.0/24\",\r\n \"20.190.96.0/19\",\r\n \"20.190.142.128/25\",\r\n
+ \ \"20.190.168.0/24\",\r\n \"23.101.224.0/19\",\r\n \"40.79.212.0/24\",\r\n
+ \ \"40.81.48.0/20\",\r\n \"40.87.212.0/22\",\r\n \"40.90.24.0/25\",\r\n
+ \ \"40.90.27.0/26\",\r\n \"40.90.138.128/27\",\r\n \"40.90.155.64/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.115.64.0/19\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.40.0/24\",\r\n \"40.127.64.0/19\",\r\n \"52.108.194.0/24\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.109.116.0/22\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.76.0/23\",\r\n \"52.114.20.0/22\",\r\n
+ \ \"52.114.60.0/23\",\r\n \"52.115.99.0/24\",\r\n \"52.121.106.0/23\",\r\n
+ \ \"52.136.25.0/24\",\r\n \"52.147.32.0/19\",\r\n \"52.158.128.0/19\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n
+ \ \"52.243.64.0/18\",\r\n \"52.245.20.0/22\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"104.44.90.32/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.160.0/19\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n \"2603:1010:100::/40\",\r\n
+ \ \"2603:1010:200::/47\",\r\n \"2603:1010:202::/48\",\r\n
+ \ \"2603:1010:204::/48\",\r\n \"2603:1010:205::/48\",\r\n
+ \ \"2603:1016:1400::/59\",\r\n \"2603:1016:2403::/48\",\r\n
+ \ \"2603:1016:2500::/64\",\r\n \"2603:1017::/59\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilse\",\r\n
+ \ \"id\": \"AzureCloud.brazilse\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"brazilse\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.27.128/27\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.96/27\",\r\n \"13.105.52.0/27\",\r\n \"20.40.32.0/21\",\r\n
+ \ \"20.135.76.0/23\",\r\n \"20.150.73.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.123.0/24\",\r\n \"20.157.42.0/24\",\r\n \"20.195.128.0/22\",\r\n
+ \ \"20.195.144.0/21\",\r\n \"23.97.112.192/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"40.79.204.192/26\",\r\n \"40.123.128.0/22\",\r\n
+ \ \"40.126.207.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.109.164.0/24\",\r\n \"52.111.207.0/24\",\r\n \"52.112.206.0/24\",\r\n
+ \ \"52.253.197.0/24\",\r\n \"191.232.16.0/21\",\r\n \"191.233.8.0/21\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.160.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"2603:1050:400::/48\",\r\n \"2603:1050:402::/48\",\r\n
+ \ \"2603:1050:403::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500:4::/64\",\r\n \"2603:1056:2000:60::/59\",\r\n
+ \ \"2603:1057:2:60::/59\",\r\n \"2603:1061:1002::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilsouth\",\r\n
+ \ \"id\": \"AzureCloud.brazilsouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.52.80/28\",\r\n \"13.105.52.128/26\",\r\n
+ \ \"20.40.16.0/21\",\r\n \"20.40.112.0/21\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.60.36.0/23\",\r\n \"20.135.128.0/22\",\r\n
+ \ \"20.135.132.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"20.190.145.0/25\",\r\n \"20.190.173.0/24\",\r\n \"20.195.136.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.197.128.0/17\",\r\n \"20.201.0.0/18\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.144/28\",\r\n \"40.90.141.64/27\",\r\n \"40.90.144.224/27\",\r\n
+ \ \"40.90.145.96/27\",\r\n \"40.90.145.128/27\",\r\n \"40.90.157.0/27\",\r\n
+ \ \"40.126.17.0/25\",\r\n \"40.126.45.0/24\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n
+ \ \"52.109.108.0/22\",\r\n \"52.111.225.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.113.132.0/24\",\r\n \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n
+ \ \"52.114.200.0/22\",\r\n \"52.121.40.0/21\",\r\n \"52.253.185.0/24\",\r\n
+ \ \"52.253.186.0/24\",\r\n \"104.41.0.0/18\",\r\n \"191.232.32.0/19\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.16.0/20\",\r\n \"191.233.128.0/20\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.235.32.0/19\",\r\n
+ \ \"191.235.64.0/18\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\",\r\n \"191.237.195.0/24\",\r\n \"191.237.200.0/21\",\r\n
+ \ \"191.237.248.0/21\",\r\n \"191.238.72.0/21\",\r\n \"191.238.128.0/21\",\r\n
+ \ \"191.238.192.0/19\",\r\n \"191.239.112.0/20\",\r\n \"191.239.204.0/22\",\r\n
+ \ \"191.239.240.0/20\",\r\n \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n
+ \ \"2603:1050:5::/48\",\r\n \"2603:1050:6::/48\",\r\n \"2603:1056:1400::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:2000:20::/59\",\r\n
+ \ \"2603:1057:2:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadacentral\",\r\n \"id\": \"AzureCloud.canadacentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.160.0/19\",\r\n
+ \ \"13.88.224.0/19\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.212.192/26\",\r\n \"13.104.223.192/26\",\r\n
+ \ \"20.38.114.0/25\",\r\n \"20.38.144.0/21\",\r\n \"20.39.128.0/20\",\r\n
+ \ \"20.43.0.0/19\",\r\n \"20.47.40.0/24\",\r\n \"20.47.87.0/24\",\r\n
+ \ \"20.48.128.0/18\",\r\n \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.63.0.0/17\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n
+ \ \"20.150.71.0/24\",\r\n \"20.150.100.0/24\",\r\n \"20.151.0.0/17\",\r\n
+ \ \"20.151.128.0/18\",\r\n \"20.157.52.0/24\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.161.0/24\",\r\n \"20.200.64.0/18\",\r\n \"40.79.216.0/24\",\r\n
+ \ \"40.80.44.0/22\",\r\n \"40.82.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.90.17.144/28\",\r\n \"40.90.128.0/28\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.151.96/27\",\r\n \"40.126.11.0/25\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"52.108.42.0/23\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.109.92.0/22\",\r\n \"52.111.251.0/24\",\r\n \"52.114.160.0/22\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.138.0.0/18\",\r\n
+ \ \"52.139.0.0/18\",\r\n \"52.156.0.0/19\",\r\n \"52.228.0.0/17\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.237.0.0/18\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.245.28.0/22\",\r\n \"52.246.152.0/21\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"104.44.93.32/27\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"2603:1030:208::/47\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2500:30::/64\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1037:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadaeast\",\r\n \"id\": \"AzureCloud.canadaeast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.154.128/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.135.66.0/23\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n \"20.190.139.128/25\",\r\n
+ \ \"20.190.162.0/24\",\r\n \"20.200.0.0/18\",\r\n \"40.69.96.0/19\",\r\n
+ \ \"40.79.217.0/24\",\r\n \"40.80.40.0/22\",\r\n \"40.80.240.0/20\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.89.0.0/19\",\r\n \"40.90.17.128/28\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.156.96/27\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.34.0/24\",\r\n \"52.108.193.0/24\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.111.226.0/24\",\r\n \"52.114.164.0/22\",\r\n
+ \ \"52.136.22.0/24\",\r\n \"52.139.64.0/18\",\r\n \"52.155.0.0/19\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.232.128.0/21\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\",\r\n \"52.242.0.0/18\",\r\n
+ \ \"52.245.32.0/22\",\r\n \"104.44.93.64/27\",\r\n \"104.44.95.32/28\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:2402::/48\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1037:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralfrance\",\r\n \"id\": \"AzureCloud.centralfrance\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.156.0/24\",\r\n
+ \ \"20.38.196.0/22\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.128.0/19\",\r\n \"20.43.32.0/19\",\r\n \"20.47.44.0/24\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.188.32.0/19\",\r\n \"20.190.147.0/25\",\r\n
+ \ \"20.190.177.0/24\",\r\n \"20.199.0.0/17\",\r\n \"40.66.32.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.222.0/24\",\r\n \"40.80.24.0/22\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.90.130.240/28\",\r\n \"40.90.132.0/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.126.19.0/25\",\r\n \"40.126.49.0/24\",\r\n \"51.11.192.0/18\",\r\n
+ \ \"51.103.0.0/17\",\r\n \"51.138.192.0/19\",\r\n \"52.108.52.0/23\",\r\n
+ \ \"52.108.89.0/24\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.111.231.0/24\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.190.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.114.104.0/22\",\r\n \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.143.128.0/18\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.194.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.245.116.0/22\",\r\n
+ \ \"2603:1020:800::/47\",\r\n \"2603:1020:802::/48\",\r\n
+ \ \"2603:1020:804::/48\",\r\n \"2603:1020:805::/48\",\r\n
+ \ \"2603:1026:2400::/48\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1027:1:100::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.centralindia\",\r\n
+ \ \"id\": \"AzureCloud.centralindia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.0.0/18\",\r\n \"13.104.148.128/25\",\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.47.89.0/24\",\r\n \"20.135.90.0/23\",\r\n
+ \ \"20.135.92.0/22\",\r\n \"20.150.114.0/24\",\r\n \"20.190.146.0/25\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.198.0.0/17\",\r\n \"40.79.207.32/27\",\r\n
+ \ \"40.79.207.64/28\",\r\n \"40.79.207.96/27\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.64.0/19\",\r\n \"40.81.224.0/19\",\r\n
+ \ \"40.87.224.0/22\",\r\n \"40.90.137.128/27\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.126.18.0/25\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"52.108.44.0/23\",\r\n \"52.108.85.0/24\",\r\n \"52.109.56.0/22\",\r\n
+ \ \"52.111.252.0/24\",\r\n \"52.113.10.0/23\",\r\n \"52.113.70.0/23\",\r\n
+ \ \"52.113.92.0/22\",\r\n \"52.113.193.0/24\",\r\n \"52.114.40.0/22\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.136.24.0/24\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.172.128.0/17\",\r\n
+ \ \"52.239.135.64/26\",\r\n \"52.239.202.0/24\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.253.181.0/24\",\r\n \"52.253.191.0/24\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.94.192/28\",\r\n \"104.47.210.0/23\",\r\n \"104.211.64.0/18\",\r\n
+ \ \"2603:1040:a00::/46\",\r\n \"2603:1040:a05::/48\",\r\n
+ \ \"2603:1040:a06::/48\",\r\n \"2603:1046:1400::/48\",\r\n
+ \ \"2603:1046:1500:8::/64\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1047:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralus\",\r\n \"id\": \"AzureCloud.centralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.128.0/20\",\r\n
+ \ \"13.67.144.0/21\",\r\n \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n \"13.67.160.0/19\",\r\n
+ \ \"13.67.192.0/18\",\r\n \"13.86.0.0/17\",\r\n \"13.89.0.0/16\",\r\n
+ \ \"13.104.147.128/25\",\r\n \"13.104.219.128/25\",\r\n \"13.105.17.192/26\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.37.0/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"20.37.128.0/18\",\r\n \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n
+ \ \"20.40.192.0/18\",\r\n \"20.44.8.0/21\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.78.0/23\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n \"20.60.194.0/23\",\r\n
+ \ \"20.80.64.0/18\",\r\n \"20.83.0.0/18\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.184.64.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.190.134.0/24\",\r\n \"20.190.155.0/24\",\r\n \"23.99.128.0/17\",\r\n
+ \ \"23.100.80.0/21\",\r\n \"23.100.240.0/20\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.102.202.0/24\",\r\n \"40.67.160.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.130.128/26\",\r\n \"40.77.137.0/25\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.161.64/26\",\r\n \"40.77.166.192/26\",\r\n
+ \ \"40.77.171.0/24\",\r\n \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n
+ \ \"40.77.182.16/28\",\r\n \"40.77.182.192/26\",\r\n \"40.77.184.128/25\",\r\n
+ \ \"40.77.197.0/24\",\r\n \"40.77.255.128/26\",\r\n \"40.78.128.0/18\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.82.16.0/22\",\r\n \"40.82.96.0/22\",\r\n
+ \ \"40.83.0.0/20\",\r\n \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n
+ \ \"40.83.24.64/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.28/30\",\r\n \"40.87.180.32/29\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.74/31\",\r\n \"40.87.180.76/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.24/29\",\r\n \"40.87.182.32/28\",\r\n
+ \ \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n \"40.87.182.62/31\",\r\n
+ \ \"40.87.182.64/26\",\r\n \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n
+ \ \"40.87.183.16/29\",\r\n \"40.87.183.24/30\",\r\n \"40.87.183.34/31\",\r\n
+ \ \"40.87.183.36/30\",\r\n \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n
+ \ \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n \"40.87.183.64/26\",\r\n
+ \ \"40.87.183.144/28\",\r\n \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n
+ \ \"40.87.183.224/29\",\r\n \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n
+ \ \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n \"40.89.224.0/19\",\r\n
+ \ \"40.90.16.0/27\",\r\n \"40.90.21.128/25\",\r\n \"40.90.22.0/25\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.129.224/27\",\r\n \"40.90.130.64/28\",\r\n
+ \ \"40.90.130.192/28\",\r\n \"40.90.132.192/26\",\r\n \"40.90.137.224/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.142.128/27\",\r\n \"40.90.142.240/28\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.128/26\",\r\n \"40.90.148.176/28\",\r\n \"40.90.149.96/27\",\r\n
+ \ \"40.90.151.144/28\",\r\n \"40.90.154.64/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.158.64/26\",\r\n \"40.93.8.0/24\",\r\n \"40.113.192.0/18\",\r\n
+ \ \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n \"40.122.64.0/18\",\r\n
+ \ \"40.122.128.0/17\",\r\n \"40.126.6.0/24\",\r\n \"40.126.27.0/24\",\r\n
+ \ \"52.101.8.0/24\",\r\n \"52.101.32.0/22\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.103.4.0/24\",\r\n \"52.103.130.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.185.0/24\",\r\n \"52.108.208.0/21\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.111.227.0/24\",\r\n \"52.112.113.0/24\",\r\n
+ \ \"52.113.129.0/24\",\r\n \"52.114.128.0/22\",\r\n \"52.115.76.0/22\",\r\n
+ \ \"52.115.80.0/22\",\r\n \"52.115.88.0/22\",\r\n \"52.123.2.0/24\",\r\n
+ \ \"52.125.128.0/22\",\r\n \"52.136.30.0/24\",\r\n \"52.141.192.0/19\",\r\n
+ \ \"52.141.240.0/20\",\r\n \"52.143.193.0/24\",\r\n \"52.143.224.0/19\",\r\n
+ \ \"52.154.0.0/18\",\r\n \"52.154.128.0/17\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.192.0/19\",\r\n \"52.165.0.0/19\",\r\n \"52.165.32.0/20\",\r\n
+ \ \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n \"52.165.56.0/21\",\r\n
+ \ \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n \"52.165.104.0/25\",\r\n
+ \ \"52.165.128.0/17\",\r\n \"52.173.0.0/16\",\r\n \"52.176.0.0/17\",\r\n
+ \ \"52.176.128.0/19\",\r\n \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n
+ \ \"52.176.192.0/19\",\r\n \"52.176.224.0/24\",\r\n \"52.180.128.0/19\",\r\n
+ \ \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n \"52.180.185.0/24\",\r\n
+ \ \"52.182.128.0/17\",\r\n \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n
+ \ \"52.185.48.0/21\",\r\n \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n \"52.189.0.0/17\",\r\n
+ \ \"52.228.128.0/17\",\r\n \"52.230.128.0/17\",\r\n \"52.232.157.0/24\",\r\n
+ \ \"52.238.192.0/18\",\r\n \"52.239.150.0/23\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.195.0/24\",\r\n
+ \ \"52.239.234.0/23\",\r\n \"52.242.128.0/17\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n \"52.245.69.96/28\",\r\n
+ \ \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n \"52.245.69.192/26\",\r\n
+ \ \"52.245.70.0/23\",\r\n \"52.255.0.0/19\",\r\n \"65.55.144.0/23\",\r\n
+ \ \"65.55.146.0/24\",\r\n \"104.43.128.0/17\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.91.160/27\",\r\n \"104.44.92.224/27\",\r\n \"104.44.94.80/28\",\r\n
+ \ \"104.208.0.0/19\",\r\n \"104.208.32.0/20\",\r\n \"131.253.36.224/27\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"168.61.128.0/25\",\r\n \"168.61.128.128/28\",\r\n
+ \ \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n \"168.61.129.224/27\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n \"168.61.144.0/20\",\r\n
+ \ \"168.61.160.0/19\",\r\n \"168.61.208.0/20\",\r\n \"193.149.72.0/21\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:17::/64\",\r\n
+ \ \"2603:1030:9:18::/61\",\r\n \"2603:1030:9:20::/59\",\r\n
+ \ \"2603:1030:9:40::/58\",\r\n \"2603:1030:9:80::/59\",\r\n
+ \ \"2603:1030:9:a0::/60\",\r\n \"2603:1030:9:b3::/64\",\r\n
+ \ \"2603:1030:9:b4::/63\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:111::/64\",\r\n \"2603:1030:9:112::/63\",\r\n
+ \ \"2603:1030:9:114::/64\",\r\n \"2603:1030:9:118::/62\",\r\n
+ \ \"2603:1030:9:11c::/63\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:10::/48\",\r\n
+ \ \"2603:1036:2403::/48\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:3000:100::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:f904::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.centraluseuap\",\r\n \"id\": \"AzureCloud.centraluseuap\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.104.129.0/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.208.0/26\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.47.5.0/24\",\r\n \"20.47.105.0/24\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.150.23.0/24\",\r\n
+ \ \"20.150.47.0/25\",\r\n \"20.157.96.0/24\",\r\n \"20.190.138.128/25\",\r\n
+ \ \"20.190.150.0/24\",\r\n \"40.66.120.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.16/28\",\r\n \"40.79.232.0/21\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n
+ \ \"40.87.180.12/31\",\r\n \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n
+ \ \"40.87.180.40/31\",\r\n \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n
+ \ \"40.87.182.0/30\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.60/31\",\r\n
+ \ \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.48/30\",\r\n \"40.87.183.52/31\",\r\n \"40.87.183.128/28\",\r\n
+ \ \"40.87.183.238/31\",\r\n \"40.87.183.240/30\",\r\n \"40.89.32.0/19\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.142.32/27\",\r\n \"40.90.149.0/27\",\r\n
+ \ \"40.96.52.0/24\",\r\n \"40.122.0.0/20\",\r\n \"40.126.10.128/25\",\r\n
+ \ \"40.126.22.0/24\",\r\n \"52.108.113.0/24\",\r\n \"52.109.140.0/22\",\r\n
+ \ \"52.141.224.0/20\",\r\n \"52.143.198.0/24\",\r\n \"52.158.176.0/20\",\r\n
+ \ \"52.165.104.128/26\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.180.160.0/20\",\r\n \"52.180.176.0/21\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.112.64/27\",\r\n \"52.239.177.0/27\",\r\n
+ \ \"52.239.238.0/24\",\r\n \"52.245.69.0/27\",\r\n \"52.253.156.0/22\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"104.208.48.0/20\",\r\n \"168.61.136.0/21\",\r\n
+ \ \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:10d::/64\",\r\n
+ \ \"2603:1030:9:10e::/63\",\r\n \"2603:1030:9:110::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:12c::/63\",\r\n
+ \ \"2603:1030:9:12e::/64\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:240d::/48\",\r\n \"2603:1036:2500:2c::/64\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1037:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastasia\",\r\n
+ \ \"id\": \"AzureCloud.eastasia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.0.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.75.0.0/17\",\r\n
+ \ \"13.88.208.0/20\",\r\n \"13.94.0.0/18\",\r\n \"13.104.155.64/26\",\r\n
+ \ \"13.104.155.192/26\",\r\n \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.126.0/23\",\r\n \"20.60.131.0/24\",\r\n
+ \ \"20.135.40.0/23\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"20.187.64.0/18\",\r\n
+ \ \"20.187.128.0/18\",\r\n \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n
+ \ \"20.189.64.0/18\",\r\n \"20.190.140.128/25\",\r\n \"20.190.164.0/24\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"23.97.64.0/19\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.99.96.0/19\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.101.0.0/20\",\r\n \"23.102.200.0/23\",\r\n
+ \ \"23.102.224.0/19\",\r\n \"40.77.134.0/24\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.160.32/27\",\r\n \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n
+ \ \"40.77.161.0/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.175.128/27\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.201.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.234.128/27\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.128/25\",\r\n
+ \ \"40.77.252.0/23\",\r\n \"40.79.210.0/24\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.82.116.0/22\",\r\n \"40.83.64.0/18\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.90.154.192/26\",\r\n \"40.126.12.128/25\",\r\n \"40.126.36.0/24\",\r\n
+ \ \"52.108.32.0/22\",\r\n \"52.108.81.0/24\",\r\n \"52.109.120.0/22\",\r\n
+ \ \"52.111.228.0/24\",\r\n \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n
+ \ \"52.113.104.0/24\",\r\n \"52.113.108.0/24\",\r\n \"52.114.0.0/21\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.96.0/24\",\r\n \"52.120.157.0/24\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.139.128.0/18\",\r\n \"52.175.0.0/17\",\r\n
+ \ \"52.184.0.0/17\",\r\n \"52.229.128.0/17\",\r\n \"52.232.153.0/24\",\r\n
+ \ \"52.239.128.0/24\",\r\n \"52.239.224.0/24\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.246.128.0/20\",\r\n \"65.52.160.0/19\",\r\n \"104.44.88.192/27\",\r\n
+ \ \"104.44.90.224/27\",\r\n \"104.44.91.192/27\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.46.24.0/22\",\r\n \"104.208.64.0/18\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n \"111.221.78.0/23\",\r\n
+ \ \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"137.116.160.0/20\",\r\n \"168.63.128.0/24\",\r\n
+ \ \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n \"168.63.129.64/26\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n \"168.63.132.0/22\",\r\n
+ \ \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n \"168.63.152.0/22\",\r\n
+ \ \"168.63.156.0/24\",\r\n \"168.63.192.0/19\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.237.238.0/24\",\r\n
+ \ \"204.231.197.0/24\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.68.174.208/28\",\r\n \"2603:1040:200::/46\",\r\n
+ \ \"2603:1040:204::/48\",\r\n \"2603:1040:206::/48\",\r\n
+ \ \"2603:1040:207::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1047:1:40::/59\",\r\n \"2a01:111:f100:6000::/64\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus\",\r\n
+ \ \"id\": \"AzureCloud.eastus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.128.0/17\",\r\n \"13.72.64.0/18\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.90.0.0/16\",\r\n \"13.92.0.0/16\",\r\n \"13.104.144.128/27\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.192.0/21\",\r\n \"13.104.211.0/25\",\r\n
+ \ \"13.104.214.128/25\",\r\n \"13.104.215.0/25\",\r\n \"13.105.17.0/26\",\r\n
+ \ \"13.105.19.0/25\",\r\n \"13.105.20.192/26\",\r\n \"13.105.27.0/25\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.36.192/26\",\r\n \"13.105.74.48/28\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.39.32.0/19\",\r\n \"20.42.0.0/17\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.113.0/24\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.51.128.0/17\",\r\n \"20.55.0.0/17\",\r\n \"20.60.0.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n \"20.60.60.0/22\",\r\n
+ \ \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.62.128.0/17\",\r\n \"20.72.128.0/18\",\r\n \"20.75.128.0/17\",\r\n
+ \ \"20.81.0.0/17\",\r\n \"20.83.128.0/18\",\r\n \"20.84.0.0/17\",\r\n
+ \ \"20.85.128.0/17\",\r\n \"20.88.128.0/18\",\r\n \"20.135.4.0/22\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.157.39.0/24\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.190.130.0/24\",\r\n \"20.190.151.0/24\",\r\n \"23.96.0.0/17\",\r\n
+ \ \"23.98.45.0/24\",\r\n \"23.100.16.0/20\",\r\n \"23.101.128.0/20\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.76.0.0/16\",\r\n \"40.78.219.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.79.152.0/21\",\r\n \"40.80.144.0/21\",\r\n
+ \ \"40.82.24.0/22\",\r\n \"40.82.60.0/22\",\r\n \"40.85.160.0/19\",\r\n
+ \ \"40.87.0.0/17\",\r\n \"40.87.164.0/22\",\r\n \"40.88.0.0/16\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.128/25\",\r\n \"40.90.25.0/26\",\r\n
+ \ \"40.90.30.192/26\",\r\n \"40.90.129.128/26\",\r\n \"40.90.130.96/28\",\r\n
+ \ \"40.90.131.224/27\",\r\n \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n
+ \ \"40.90.137.96/27\",\r\n \"40.90.139.224/27\",\r\n \"40.90.143.0/27\",\r\n
+ \ \"40.90.146.64/26\",\r\n \"40.90.147.0/27\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.224.0/19\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.4.0/24\",\r\n \"40.112.48.0/20\",\r\n
+ \ \"40.114.0.0/17\",\r\n \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n
+ \ \"40.117.128.0/17\",\r\n \"40.121.0.0/16\",\r\n \"40.123.132.0/22\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.23.0/24\",\r\n \"52.101.4.0/22\",\r\n
+ \ \"52.101.9.0/24\",\r\n \"52.101.20.0/22\",\r\n \"52.102.129.0/24\",\r\n
+ \ \"52.102.159.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.3.0/24\",\r\n
+ \ \"52.103.129.0/24\",\r\n \"52.108.16.0/21\",\r\n \"52.108.79.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.109.12.0/22\",\r\n
+ \ \"52.111.229.0/24\",\r\n \"52.112.112.0/24\",\r\n \"52.113.16.0/20\",\r\n
+ \ \"52.114.132.0/22\",\r\n \"52.115.54.0/24\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.192.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.123.0.0/24\",\r\n \"52.125.132.0/22\",\r\n \"52.136.64.0/18\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.143.207.0/24\",\r\n \"52.146.0.0/17\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.128.0/17\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.168.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.179.0.0/17\",\r\n
+ \ \"52.186.0.0/16\",\r\n \"52.188.0.0/16\",\r\n \"52.190.0.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.192.0/18\",\r\n \"52.224.0.0/16\",\r\n
+ \ \"52.226.0.0/16\",\r\n \"52.232.146.0/24\",\r\n \"52.234.128.0/17\",\r\n
+ \ \"52.239.152.0/22\",\r\n \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n
+ \ \"52.239.214.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.240.0.0/17\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.104.0/22\",\r\n \"52.249.128.0/17\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.255.128.0/17\",\r\n \"65.54.19.128/27\",\r\n \"104.41.128.0/19\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.94.16/28\",\r\n \"104.44.95.160/27\",\r\n
+ \ \"104.44.95.240/28\",\r\n \"104.45.128.0/18\",\r\n \"104.45.192.0/20\",\r\n
+ \ \"104.211.0.0/18\",\r\n \"137.116.112.0/20\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.135.64.0/18\",\r\n \"138.91.96.0/19\",\r\n
+ \ \"157.56.176.0/21\",\r\n \"168.61.32.0/20\",\r\n \"168.61.48.0/21\",\r\n
+ \ \"168.62.32.0/19\",\r\n \"168.62.160.0/19\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.238.0.0/18\",\r\n
+ \ \"2603:1030:20c::/47\",\r\n \"2603:1030:20e::/48\",\r\n
+ \ \"2603:1030:210::/47\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:3000:120::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f403:c100::/64\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:f000::/64\",\r\n \"2a01:111:f403:f900::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2\",\r\n
+ \ \"id\": \"AzureCloud.eastus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.0.0/17\",\r\n \"13.77.64.0/18\",\r\n \"13.104.147.0/25\",\r\n
+ \ \"13.104.208.64/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.23.64/26\",\r\n
+ \ \"13.105.28.0/28\",\r\n \"13.105.28.128/25\",\r\n \"13.105.67.128/25\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.75.0/27\",\r\n \"13.105.75.32/28\",\r\n
+ \ \"13.105.75.64/27\",\r\n \"20.36.128.0/17\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.41.0.0/18\",\r\n \"20.44.16.0/21\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.47.60.0/23\",\r\n \"20.47.76.0/23\",\r\n
+ \ \"20.49.0.0/18\",\r\n \"20.49.96.0/21\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.57.0.0/17\",\r\n \"20.60.56.0/22\",\r\n \"20.60.132.0/23\",\r\n
+ \ \"20.60.180.0/23\",\r\n \"20.62.0.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.69.192.0/18\",\r\n \"20.72.64.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.80.192.0/18\",\r\n \"20.81.128.0/17\",\r\n \"20.85.0.0/17\",\r\n
+ \ \"20.88.96.0/19\",\r\n \"20.135.16.0/23\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.150.29.0/24\",\r\n \"20.150.36.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n \"20.150.82.0/24\",\r\n
+ \ \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.152.0/24\",\r\n \"20.190.192.0/18\",\r\n \"23.100.64.0/21\",\r\n
+ \ \"23.101.32.0/21\",\r\n \"23.101.80.0/21\",\r\n \"23.101.144.0/20\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n
+ \ \"40.65.192.0/18\",\r\n \"40.67.128.0/19\",\r\n \"40.70.0.0/18\",\r\n
+ \ \"40.70.64.0/20\",\r\n \"40.70.80.0/21\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.75.0.0/19\",\r\n \"40.75.64.0/18\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.132.0/24\",\r\n
+ \ \"40.77.136.48/28\",\r\n \"40.77.137.128/26\",\r\n \"40.77.138.128/25\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.166.160/27\",\r\n \"40.77.167.0/24\",\r\n
+ \ \"40.77.168.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.175.96/27\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.182.0/28\",\r\n
+ \ \"40.77.182.32/27\",\r\n \"40.77.184.0/25\",\r\n \"40.77.198.0/26\",\r\n
+ \ \"40.77.199.192/26\",\r\n \"40.77.224.128/25\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.233.0/24\",\r\n \"40.77.234.192/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.240.0/25\",\r\n \"40.77.245.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.251.0/24\",\r\n \"40.78.208.48/28\",\r\n
+ \ \"40.78.220.0/24\",\r\n \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n
+ \ \"40.79.8.32/28\",\r\n \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n
+ \ \"40.79.9.0/24\",\r\n \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n
+ \ \"40.79.48.0/27\",\r\n \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n
+ \ \"40.79.56.0/21\",\r\n \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n
+ \ \"40.79.90.0/24\",\r\n \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n
+ \ \"40.79.93.0/28\",\r\n \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n
+ \ \"40.79.206.64/27\",\r\n \"40.79.240.0/20\",\r\n \"40.82.4.0/22\",\r\n
+ \ \"40.82.44.0/22\",\r\n \"40.84.0.0/17\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n \"40.87.168.32/29\",\r\n
+ \ \"40.87.168.48/28\",\r\n \"40.87.168.64/30\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.210/31\",\r\n
+ \ \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n \"40.87.168.224/27\",\r\n
+ \ \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n \"40.87.169.44/30\",\r\n
+ \ \"40.87.169.48/29\",\r\n \"40.87.169.56/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.102/31\",\r\n
+ \ \"40.87.169.104/29\",\r\n \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n
+ \ \"40.87.169.136/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.160/27\",\r\n
+ \ \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n \"40.87.170.128/28\",\r\n
+ \ \"40.87.170.144/31\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.194/31\",\r\n
+ \ \"40.87.170.196/30\",\r\n \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n
+ \ \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n \"40.87.170.240/29\",\r\n
+ \ \"40.87.170.248/30\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.36/30\",\r\n
+ \ \"40.87.171.40/31\",\r\n \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n
+ \ \"40.87.171.96/27\",\r\n \"40.87.171.128/28\",\r\n \"40.90.19.128/25\",\r\n
+ \ \"40.90.20.0/25\",\r\n \"40.90.130.160/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.133.112/28\",\r\n \"40.90.134.192/26\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.140.160/27\",\r\n \"40.90.140.192/27\",\r\n
+ \ \"40.90.143.192/26\",\r\n \"40.90.144.64/26\",\r\n \"40.90.145.32/27\",\r\n
+ \ \"40.90.145.64/27\",\r\n \"40.90.148.96/27\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.158.128/25\",\r\n \"40.91.12.16/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n \"40.91.13.128/27\",\r\n
+ \ \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n \"40.93.3.0/24\",\r\n
+ \ \"40.123.0.0/17\",\r\n \"40.126.3.0/24\",\r\n \"40.126.24.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.36.0/22\",\r\n \"52.102.131.0/24\",\r\n
+ \ \"52.103.5.0/24\",\r\n \"52.103.131.0/24\",\r\n \"52.108.186.0/24\",\r\n
+ \ \"52.108.216.0/22\",\r\n \"52.109.4.0/22\",\r\n \"52.111.230.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.95.0/24\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.108.0/24\",\r\n \"52.112.116.0/24\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.180.0/22\",\r\n \"52.114.186.0/23\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.64.0/22\",\r\n \"52.115.160.0/19\",\r\n
+ \ \"52.120.64.0/19\",\r\n \"52.121.32.0/22\",\r\n \"52.123.4.0/24\",\r\n
+ \ \"52.125.136.0/24\",\r\n \"52.136.29.0/24\",\r\n \"52.138.80.0/21\",\r\n
+ \ \"52.138.96.0/19\",\r\n \"52.143.192.0/24\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.167.0.0/16\",\r\n \"52.177.0.0/16\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.80/28\",\r\n \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n
+ \ \"52.184.169.0/24\",\r\n \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n
+ \ \"52.184.192.0/18\",\r\n \"52.225.128.0/21\",\r\n \"52.225.136.0/27\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n
+ \ \"52.225.192.0/18\",\r\n \"52.232.151.0/24\",\r\n \"52.232.160.0/19\",\r\n
+ \ \"52.232.192.0/18\",\r\n \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n
+ \ \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n
+ \ \"52.239.185.32/27\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.222.0/23\",\r\n \"52.242.64.0/18\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.160/27\",\r\n
+ \ \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n \"52.245.46.48/28\",\r\n
+ \ \"52.245.46.64/28\",\r\n \"52.245.46.112/28\",\r\n \"52.245.46.128/28\",\r\n
+ \ \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n \"52.247.0.0/17\",\r\n
+ \ \"52.250.128.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.253.64.0/20\",\r\n \"52.253.148.0/23\",\r\n \"52.253.154.0/23\",\r\n
+ \ \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n \"52.254.96.0/20\",\r\n
+ \ \"52.254.112.0/21\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n \"65.55.44.64/27\",\r\n
+ \ \"65.55.44.96/28\",\r\n \"65.55.44.128/27\",\r\n \"65.55.60.188/30\",\r\n
+ \ \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.107.48/28\",\r\n \"65.55.107.64/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.209.128/26\",\r\n \"65.55.211.32/27\",\r\n \"65.55.213.64/26\",\r\n
+ \ \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.128/25\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.96/27\",\r\n
+ \ \"104.44.91.96/27\",\r\n \"104.44.93.160/27\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.96.0/19\",\r\n \"104.46.192.0/20\",\r\n
+ \ \"104.47.200.0/21\",\r\n \"104.208.128.0/17\",\r\n \"104.209.128.0/17\",\r\n
+ \ \"104.210.0.0/20\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.208/28\",\r\n
+ \ \"131.253.12.224/30\",\r\n \"131.253.13.16/29\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.96/30\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.64/29\",\r\n \"131.253.14.208/28\",\r\n
+ \ \"131.253.14.224/28\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.24.0/28\",\r\n \"131.253.24.192/26\",\r\n \"131.253.34.224/27\",\r\n
+ \ \"131.253.38.0/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.40.0/28\",\r\n
+ \ \"134.170.220.0/23\",\r\n \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n
+ \ \"137.116.96.0/22\",\r\n \"157.55.7.128/26\",\r\n \"157.55.10.192/26\",\r\n
+ \ \"157.55.11.128/25\",\r\n \"157.55.37.0/24\",\r\n \"157.55.38.0/24\",\r\n
+ \ \"157.55.48.0/24\",\r\n \"157.55.50.0/25\",\r\n \"157.55.55.100/30\",\r\n
+ \ \"157.55.55.104/29\",\r\n \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.128.0/18\",\r\n \"191.239.224.0/20\",\r\n
+ \ \"193.149.64.0/21\",\r\n \"198.180.96.0/25\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n \"199.30.29.0/24\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401:2::/63\",\r\n
+ \ \"2603:1030:401:4::/62\",\r\n \"2603:1030:401:8::/61\",\r\n
+ \ \"2603:1030:401:10::/62\",\r\n \"2603:1030:401:14::/63\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:5a::/63\",\r\n \"2603:1030:401:5c::/62\",\r\n
+ \ \"2603:1030:401:60::/59\",\r\n \"2603:1030:401:80::/62\",\r\n
+ \ \"2603:1030:401:84::/64\",\r\n \"2603:1030:401:87::/64\",\r\n
+ \ \"2603:1030:401:88::/62\",\r\n \"2603:1030:401:8c::/63\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:94::/62\",\r\n \"2603:1030:401:98::/61\",\r\n
+ \ \"2603:1030:401:a0::/62\",\r\n \"2603:1030:401:a4::/63\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:143::/64\",\r\n \"2603:1030:401:144::/63\",\r\n
+ \ \"2603:1030:401:14a::/63\",\r\n \"2603:1030:401:14c::/62\",\r\n
+ \ \"2603:1030:401:150::/62\",\r\n \"2603:1030:401:154::/63\",\r\n
+ \ \"2603:1030:401:159::/64\",\r\n \"2603:1030:401:15a::/63\",\r\n
+ \ \"2603:1030:401:15c::/62\",\r\n \"2603:1030:401:160::/61\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:406::/47\",\r\n
+ \ \"2603:1030:408::/48\",\r\n \"2603:1030:40a:1::/64\",\r\n
+ \ \"2603:1030:40a:2::/64\",\r\n \"2603:1030:40c::/48\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1037:1::/59\",\r\n \"2603:1039:205::/48\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:f908::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2euap\",\r\n
+ \ \"id\": \"AzureCloud.eastus2euap\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.216.0/24\",\r\n \"13.105.52.32/27\",\r\n
+ \ \"13.105.52.64/28\",\r\n \"13.105.52.96/27\",\r\n \"13.105.60.160/27\",\r\n
+ \ \"13.105.61.0/28\",\r\n \"13.105.61.32/27\",\r\n \"20.39.0.0/19\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.128.0/17\",\r\n
+ \ \"20.51.16.0/21\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n \"20.150.108.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.149.0/24\",\r\n \"40.70.88.0/28\",\r\n
+ \ \"40.74.144.0/20\",\r\n \"40.75.32.0/21\",\r\n \"40.78.208.0/28\",\r\n
+ \ \"40.79.88.0/27\",\r\n \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n
+ \ \"40.79.96.0/19\",\r\n \"40.87.168.4/30\",\r\n \"40.87.168.40/29\",\r\n
+ \ \"40.87.168.68/31\",\r\n \"40.87.168.208/31\",\r\n \"40.87.169.40/30\",\r\n
+ \ \"40.87.169.58/31\",\r\n \"40.87.169.98/31\",\r\n \"40.87.169.100/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.144/28\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.188/30\",\r\n \"40.87.170.192/31\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.220/30\",\r\n \"40.87.170.224/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.32/30\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.89.64.0/18\",\r\n \"40.90.129.96/27\",\r\n \"40.90.137.32/27\",\r\n
+ \ \"40.90.146.192/27\",\r\n \"40.91.12.0/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.96.46.0/24\",\r\n \"40.96.55.0/24\",\r\n
+ \ \"40.126.10.0/25\",\r\n \"40.126.21.0/24\",\r\n \"52.108.116.0/24\",\r\n
+ \ \"52.138.64.0/20\",\r\n \"52.138.88.0/21\",\r\n \"52.143.212.0/23\",\r\n
+ \ \"52.147.128.0/19\",\r\n \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n
+ \ \"52.225.136.48/28\",\r\n \"52.225.144.0/20\",\r\n \"52.225.160.0/19\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\",\r\n \"52.245.45.144/28\",\r\n \"52.245.46.32/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.253.150.0/23\",\r\n
+ \ \"52.253.152.0/23\",\r\n \"52.253.224.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"198.180.97.0/24\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:16::/64\",\r\n \"2603:1030:401:59::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:8e::/64\",\r\n \"2603:1030:401:92::/63\",\r\n
+ \ \"2603:1030:401:a6::/64\",\r\n \"2603:1030:401:121::/64\",\r\n
+ \ \"2603:1030:401:122::/63\",\r\n \"2603:1030:401:136::/63\",\r\n
+ \ \"2603:1030:401:138::/64\",\r\n \"2603:1030:401:13c::/62\",\r\n
+ \ \"2603:1030:401:140::/63\",\r\n \"2603:1030:401:142::/64\",\r\n
+ \ \"2603:1030:401:146::/63\",\r\n \"2603:1030:401:148::/63\",\r\n
+ \ \"2603:1030:401:156::/63\",\r\n \"2603:1030:401:158::/64\",\r\n
+ \ \"2603:1030:401:168::/63\",\r\n \"2603:1030:401:16d::/64\",\r\n
+ \ \"2603:1030:401:16e::/63\",\r\n \"2603:1030:401:170::/61\",\r\n
+ \ \"2603:1030:401:178::/62\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40d::/60\",\r\n \"2603:1036:903:1::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:240a::/48\",\r\n
+ \ \"2603:1036:2500:4::/64\",\r\n \"2603:1036:3000:20::/59\",\r\n
+ \ \"2603:1037:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.germanyn\",\r\n \"id\": \"AzureCloud.germanyn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.212.64/26\",\r\n \"20.38.115.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.84.0/23\",\r\n \"20.52.72.0/21\",\r\n \"20.52.80.32/27\",\r\n
+ \ \"20.135.56.0/23\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"40.82.72.0/22\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.128.240/28\",\r\n \"40.119.96.0/22\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.198.0/24\",\r\n \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n
+ \ \"51.116.200.0/21\",\r\n \"51.116.208.0/20\",\r\n \"52.108.76.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.109.102.0/23\",\r\n \"52.111.254.0/24\",\r\n
+ \ \"52.114.240.0/24\",\r\n \"52.253.172.0/24\",\r\n \"2603:1020:d00::/47\",\r\n
+ \ \"2603:1020:d03::/48\",\r\n \"2603:1020:d04::/48\",\r\n
+ \ \"2603:1026:2411::/48\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:220::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.germanywc\",\r\n
+ \ \"id\": \"AzureCloud.germanywc\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.224/27\",\r\n \"13.104.145.128/27\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n
+ \ \"13.105.74.96/27\",\r\n \"13.105.74.192/26\",\r\n \"20.38.118.0/24\",\r\n
+ \ \"20.47.27.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.112.0/24\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.80.0/27\",\r\n
+ \ \"20.52.80.64/27\",\r\n \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n
+ \ \"20.52.128.0/17\",\r\n \"20.60.22.0/23\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"40.82.68.0/22\",\r\n \"40.90.129.48/28\",\r\n \"40.90.140.0/27\",\r\n
+ \ \"40.90.147.32/27\",\r\n \"40.90.151.160/27\",\r\n \"40.119.92.0/22\",\r\n
+ \ \"40.126.62.64/26\",\r\n \"40.126.197.0/24\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.224.0/19\",\r\n
+ \ \"52.108.178.0/24\",\r\n \"52.108.199.0/24\",\r\n \"52.109.104.0/23\",\r\n
+ \ \"52.111.255.0/24\",\r\n \"52.114.244.0/24\",\r\n \"52.253.169.0/24\",\r\n
+ \ \"52.253.170.0/23\",\r\n \"2603:1020:c00::/47\",\r\n \"2603:1020:c03::/48\",\r\n
+ \ \"2603:1020:c04::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:2500:14::/64\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japaneast\",\r\n \"id\": \"AzureCloud.japaneast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.128.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.150.128/26\",\r\n \"13.104.221.0/24\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.38.116.0/23\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.43.64.0/19\",\r\n \"20.44.128.0/18\",\r\n
+ \ \"20.46.112.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.47.101.0/24\",\r\n \"20.48.0.0/17\",\r\n \"20.60.172.0/23\",\r\n
+ \ \"20.63.128.0/18\",\r\n \"20.78.0.0/17\",\r\n \"20.78.192.0/18\",\r\n
+ \ \"20.89.0.0/17\",\r\n \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n
+ \ \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.188.0.0/19\",\r\n \"20.190.141.128/25\",\r\n \"20.190.166.0/24\",\r\n
+ \ \"20.191.160.0/19\",\r\n \"20.194.128.0/17\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.100.96.0/21\",\r\n \"23.102.64.0/19\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.206.96/27\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.82.48.0/22\",\r\n \"40.87.200.0/22\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.128.80/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.192/28\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.152.192/27\",\r\n \"40.90.158.0/26\",\r\n \"40.115.128.0/17\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.38.0/24\",\r\n \"52.108.191.0/24\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.109.52.0/22\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.113.78.0/23\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.107.0/24\",\r\n \"52.113.133.0/24\",\r\n
+ \ \"52.114.32.0/22\",\r\n \"52.115.38.0/24\",\r\n \"52.115.47.0/24\",\r\n
+ \ \"52.121.120.0/23\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.136.31.0/24\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.155.96.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.185.128.0/18\",\r\n
+ \ \"52.232.155.0/24\",\r\n \"52.239.144.0/23\",\r\n \"52.243.32.0/19\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.246.160.0/19\",\r\n \"52.253.96.0/19\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"104.41.160.0/19\",\r\n \"104.44.88.224/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.94.112/28\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"138.91.0.0/20\",\r\n \"191.237.240.0/23\",\r\n \"2603:1040:400::/46\",\r\n
+ \ \"2603:1040:404::/48\",\r\n \"2603:1040:406::/48\",\r\n
+ \ \"2603:1040:407::/48\",\r\n \"2603:1046:1402::/48\",\r\n
+ \ \"2603:1046:1500:18::/64\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1047:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japanwest\",\r\n \"id\": \"AzureCloud.japanwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.73.232.0/21\",\r\n
+ \ \"20.39.176.0/21\",\r\n \"20.47.10.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n
+ \ \"20.63.192.0/18\",\r\n \"20.78.128.0/18\",\r\n \"20.135.48.0/23\",\r\n
+ \ \"20.150.10.0/23\",\r\n \"20.157.56.0/24\",\r\n \"20.189.192.0/18\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.165.0/24\",\r\n \"23.98.56.0/24\",\r\n
+ \ \"23.100.104.0/21\",\r\n \"40.74.64.0/18\",\r\n \"40.74.128.0/20\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.80.56.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.81.176.0/20\",\r\n \"40.82.100.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.137.0/27\",\r\n \"40.90.142.208/28\",\r\n \"40.90.156.0/26\",\r\n
+ \ \"40.126.13.0/25\",\r\n \"40.126.37.0/24\",\r\n \"52.108.46.0/23\",\r\n
+ \ \"52.108.86.0/24\",\r\n \"52.109.132.0/22\",\r\n \"52.111.233.0/24\",\r\n
+ \ \"52.112.88.0/22\",\r\n \"52.113.14.0/24\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.100.0/22\",\r\n \"52.115.104.0/23\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.116.0/22\",\r\n
+ \ \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.175.128.0/18\",\r\n \"52.232.158.0/24\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"52.245.92.0/22\",\r\n \"104.44.92.0/27\",\r\n \"104.44.94.128/28\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.214.128.0/19\",\r\n \"104.215.0.0/18\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"191.233.32.0/20\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n
+ \ \"191.238.92.0/23\",\r\n \"191.239.96.0/20\",\r\n \"2603:1040:600::/46\",\r\n
+ \ \"2603:1040:605::/48\",\r\n \"2603:1040:606::/48\",\r\n
+ \ \"2603:1046:1403::/48\",\r\n \"2603:1046:1500:14::/64\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1047:1:a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreacentral\",\r\n
+ \ \"id\": \"AzureCloud.koreacentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.129.192/26\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.105.20.0/25\",\r\n \"13.105.96.112/28\",\r\n \"13.105.97.32/27\",\r\n
+ \ \"13.105.97.64/27\",\r\n \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.44.24.0/21\",\r\n \"20.47.46.0/24\",\r\n
+ \ \"20.47.90.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.150.4.0/23\",\r\n \"20.190.144.128/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.180.0/24\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.80.36.0/22\",\r\n \"40.82.128.0/19\",\r\n
+ \ \"40.90.17.224/27\",\r\n \"40.90.128.176/28\",\r\n \"40.90.131.128/27\",\r\n
+ \ \"40.90.139.128/27\",\r\n \"40.90.156.64/27\",\r\n \"40.126.16.128/25\",\r\n
+ \ \"40.126.20.128/25\",\r\n \"40.126.52.0/24\",\r\n \"52.108.48.0/23\",\r\n
+ \ \"52.108.87.0/24\",\r\n \"52.109.44.0/22\",\r\n \"52.111.194.0/24\",\r\n
+ \ \"52.114.44.0/22\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.141.0.0/18\",\r\n
+ \ \"52.231.0.0/17\",\r\n \"52.232.145.0/24\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.164.192/26\",\r\n \"52.239.190.128/26\",\r\n \"52.245.112.0/22\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1047:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreasouth\",\r\n
+ \ \"id\": \"AzureCloud.koreasouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.157.0/25\",\r\n \"20.39.168.0/21\",\r\n \"20.47.47.0/24\",\r\n
+ \ \"20.47.91.0/24\",\r\n \"20.135.26.0/23\",\r\n \"20.135.30.0/23\",\r\n
+ \ \"20.150.14.0/23\",\r\n \"20.190.148.0/25\",\r\n \"20.190.179.0/24\",\r\n
+ \ \"20.200.128.0/18\",\r\n \"40.79.220.0/24\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.168.0/21\",\r\n \"40.80.224.0/20\",\r\n \"40.89.192.0/19\",\r\n
+ \ \"40.90.131.160/27\",\r\n \"40.90.139.160/27\",\r\n \"40.90.157.32/27\",\r\n
+ \ \"40.126.20.0/25\",\r\n \"40.126.51.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.226.0/23\",\r\n \"52.109.48.0/22\",\r\n \"52.111.234.0/24\",\r\n
+ \ \"52.113.110.0/23\",\r\n \"52.114.48.0/22\",\r\n \"52.147.96.0/19\",\r\n
+ \ \"52.231.128.0/17\",\r\n \"52.232.144.0/24\",\r\n \"52.239.165.0/26\",\r\n
+ \ \"52.239.165.160/27\",\r\n \"52.239.190.192/26\",\r\n \"52.245.100.0/22\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1046:1405::/48\",\r\n \"2603:1046:1500:1c::/64\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1047:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northcentralus\",\r\n
+ \ \"id\": \"AzureCloud.northcentralus\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.26.0/24\",\r\n \"13.105.28.16/28\",\r\n \"13.105.29.0/25\",\r\n
+ \ \"13.105.37.64/26\",\r\n \"13.105.37.128/26\",\r\n \"20.36.96.0/21\",\r\n
+ \ \"20.41.128.0/18\",\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n
+ \ \"20.47.107.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.49.112.0/21\",\r\n
+ \ \"20.51.0.0/21\",\r\n \"20.59.192.0/18\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.66.128.0/17\",\r\n \"20.72.32.0/19\",\r\n
+ \ \"20.80.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.135.12.0/22\",\r\n
+ \ \"20.135.70.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"20.190.135.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"23.96.128.0/17\",\r\n \"23.98.48.0/21\",\r\n \"23.100.72.0/21\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.101.160.0/20\",\r\n \"40.77.131.224/28\",\r\n
+ \ \"40.77.136.96/28\",\r\n \"40.77.137.192/27\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.176.0/24\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.183.0/24\",\r\n \"40.77.188.0/22\",\r\n \"40.77.196.0/24\",\r\n
+ \ \"40.77.198.64/26\",\r\n \"40.77.200.128/25\",\r\n \"40.77.224.0/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.231.0/24\",\r\n \"40.77.234.0/25\",\r\n
+ \ \"40.77.236.32/27\",\r\n \"40.77.236.160/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.248.128/25\",\r\n \"40.77.254.0/26\",\r\n \"40.77.255.192/26\",\r\n
+ \ \"40.78.208.64/28\",\r\n \"40.78.222.0/24\",\r\n \"40.80.184.0/21\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.87.172.0/22\",\r\n \"40.90.19.64/26\",\r\n
+ \ \"40.90.132.96/27\",\r\n \"40.90.133.128/28\",\r\n \"40.90.135.64/26\",\r\n
+ \ \"40.90.140.128/27\",\r\n \"40.90.144.32/27\",\r\n \"40.90.155.192/26\",\r\n
+ \ \"40.91.24.0/22\",\r\n \"40.116.0.0/16\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.28.0/24\",\r\n \"52.108.182.0/24\",\r\n \"52.108.203.0/24\",\r\n
+ \ \"52.109.16.0/22\",\r\n \"52.111.235.0/24\",\r\n \"52.112.94.0/24\",\r\n
+ \ \"52.113.198.0/24\",\r\n \"52.114.168.0/22\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.162.0.0/16\",\r\n \"52.232.156.0/24\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"52.240.128.0/17\",\r\n \"52.245.72.0/22\",\r\n \"52.252.128.0/17\",\r\n
+ \ \"65.52.0.0/19\",\r\n \"65.52.48.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.192.0/19\",\r\n \"65.52.232.0/21\",\r\n
+ \ \"65.52.240.0/21\",\r\n \"65.55.60.176/29\",\r\n \"65.55.105.192/27\",\r\n
+ \ \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n \"65.55.109.0/24\",\r\n
+ \ \"65.55.211.0/27\",\r\n \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n
+ \ \"65.55.213.0/27\",\r\n \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n
+ \ \"104.44.88.128/27\",\r\n \"104.44.91.128/27\",\r\n \"104.44.94.64/28\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n
+ \ \"131.253.12.48/29\",\r\n \"131.253.12.192/28\",\r\n \"131.253.12.248/29\",\r\n
+ \ \"131.253.13.0/28\",\r\n \"131.253.13.32/28\",\r\n \"131.253.14.32/27\",\r\n
+ \ \"131.253.14.160/27\",\r\n \"131.253.14.248/29\",\r\n \"131.253.15.32/27\",\r\n
+ \ \"131.253.15.208/28\",\r\n \"131.253.15.224/27\",\r\n \"131.253.25.0/24\",\r\n
+ \ \"131.253.27.0/24\",\r\n \"131.253.36.128/26\",\r\n \"131.253.38.32/27\",\r\n
+ \ \"131.253.38.224/27\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.192/26\",\r\n \"157.55.24.0/21\",\r\n
+ \ \"157.55.55.0/27\",\r\n \"157.55.55.32/28\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n \"157.55.55.216/29\",\r\n
+ \ \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n \"157.55.106.128/25\",\r\n
+ \ \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n \"157.55.136.0/21\",\r\n
+ \ \"157.55.151.0/28\",\r\n \"157.55.160.0/20\",\r\n \"157.55.208.0/21\",\r\n
+ \ \"157.55.248.0/21\",\r\n \"157.56.8.0/21\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.216.0/26\",\r\n
+ \ \"168.62.96.0/19\",\r\n \"168.62.224.0/19\",\r\n \"191.233.144.0/20\",\r\n
+ \ \"191.236.128.0/18\",\r\n \"199.30.31.0/25\",\r\n \"204.79.180.0/24\",\r\n
+ \ \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n \"207.46.198.128/25\",\r\n
+ \ \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n \"207.46.202.128/28\",\r\n
+ \ \"207.46.205.0/24\",\r\n \"207.68.174.40/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"2603:1030:600::/46\",\r\n \"2603:1030:604::/47\",\r\n
+ \ \"2603:1030:607::/48\",\r\n \"2603:1030:608::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2500:8::/64\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1037:1:60::/59\",\r\n
+ \ \"2a01:111:f100:1000::/62\",\r\n \"2a01:111:f100:1004::/63\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northeurope\",\r\n
+ \ \"id\": \"AzureCloud.northeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.128.0/17\",\r\n \"13.70.192.0/18\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.94.64.0/18\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.105.18.0/26\",\r\n \"13.105.21.0/24\",\r\n
+ \ \"13.105.28.48/28\",\r\n \"13.105.37.192/26\",\r\n \"13.105.60.192/26\",\r\n
+ \ \"13.105.67.0/25\",\r\n \"13.105.96.128/25\",\r\n \"20.38.64.0/19\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.47.111.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n \"20.54.0.0/17\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n \"20.60.144.0/23\",\r\n
+ \ \"20.67.128.0/17\",\r\n \"20.82.128.0/17\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n \"20.150.104.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.159.0/24\",\r\n \"20.191.0.0/18\",\r\n
+ \ \"23.100.48.0/20\",\r\n \"23.100.128.0/18\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.102.0.0/18\",\r\n \"40.67.224.0/19\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.192.0/19\",\r\n \"40.77.133.0/24\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.80/28\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.174.0/24\",\r\n \"40.77.175.160/27\",\r\n \"40.77.182.96/27\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.229.0/24\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.176/28\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.78.211.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.87.128.0/19\",\r\n \"40.87.188.0/22\",\r\n \"40.90.17.192/27\",\r\n
+ \ \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n \"40.90.31.128/25\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.129.192/27\",\r\n \"40.90.130.224/28\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.136.176/28\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.140.64/27\",\r\n \"40.90.141.96/27\",\r\n \"40.90.141.128/27\",\r\n
+ \ \"40.90.145.0/27\",\r\n \"40.90.145.224/27\",\r\n \"40.90.147.96/27\",\r\n
+ \ \"40.90.148.160/28\",\r\n \"40.90.149.128/25\",\r\n \"40.90.153.128/25\",\r\n
+ \ \"40.91.20.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.112.36.0/25\",\r\n
+ \ \"40.112.37.64/26\",\r\n \"40.112.64.0/19\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.115.96.0/19\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.31.0/24\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.104.64.0/18\",\r\n \"51.104.128.0/18\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.196.0/24\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.109.76.0/22\",\r\n \"52.111.236.0/24\",\r\n \"52.112.191.0/24\",\r\n
+ \ \"52.112.229.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.236.0/24\",\r\n
+ \ \"52.113.40.0/21\",\r\n \"52.113.48.0/20\",\r\n \"52.113.112.0/20\",\r\n
+ \ \"52.113.136.0/21\",\r\n \"52.113.205.0/24\",\r\n \"52.114.76.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.120.0/22\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.233.0/24\",\r\n \"52.114.248.0/22\",\r\n \"52.115.16.0/21\",\r\n
+ \ \"52.115.24.0/22\",\r\n \"52.120.136.0/21\",\r\n \"52.120.192.0/20\",\r\n
+ \ \"52.121.16.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.125.138.0/23\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.142.64.0/18\",\r\n \"52.143.195.0/24\",\r\n
+ \ \"52.143.209.0/24\",\r\n \"52.146.128.0/17\",\r\n \"52.155.64.0/19\",\r\n
+ \ \"52.155.128.0/17\",\r\n \"52.156.192.0/18\",\r\n \"52.158.0.0/17\",\r\n
+ \ \"52.164.0.0/16\",\r\n \"52.169.0.0/16\",\r\n \"52.178.128.0/17\",\r\n
+ \ \"52.232.148.0/24\",\r\n \"52.236.0.0/17\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"65.52.64.0/20\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.192.0/18\",\r\n \"104.44.88.64/27\",\r\n \"104.44.91.64/27\",\r\n
+ \ \"104.44.92.192/27\",\r\n \"104.44.94.32/28\",\r\n \"104.45.80.0/20\",\r\n
+ \ \"104.45.96.0/19\",\r\n \"104.46.8.0/21\",\r\n \"104.46.64.0/19\",\r\n
+ \ \"104.47.218.0/23\",\r\n \"131.253.40.80/28\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.135.128.0/17\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"157.55.3.0/24\",\r\n \"157.55.10.160/29\",\r\n \"157.55.10.176/28\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.107.0/24\",\r\n \"157.55.204.128/25\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.63.32.0/19\",\r\n
+ \ \"168.63.64.0/20\",\r\n \"168.63.80.0/21\",\r\n \"168.63.92.0/22\",\r\n
+ \ \"191.232.138.0/23\",\r\n \"191.235.128.0/18\",\r\n \"191.235.192.0/22\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.255.0/24\",\r\n \"191.237.192.0/23\",\r\n
+ \ \"191.237.194.0/24\",\r\n \"191.237.196.0/24\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.239.208.0/20\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n \"2603:1020:4::/48\",\r\n
+ \ \"2603:1020:5::/48\",\r\n \"2603:1026:2404::/48\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.norwaye\",\r\n \"id\": \"AzureCloud.norwaye\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.32/27\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.38.120.0/24\",\r\n \"20.47.48.0/24\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\",\r\n
+ \ \"20.157.2.0/24\",\r\n \"20.190.185.0/24\",\r\n \"40.82.84.0/22\",\r\n
+ \ \"40.119.104.0/22\",\r\n \"40.126.57.0/24\",\r\n \"40.126.200.0/24\",\r\n
+ \ \"51.13.0.0/17\",\r\n \"51.107.208.0/20\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.208.0/21\",\r\n \"51.120.232.0/21\",\r\n \"51.120.240.0/20\",\r\n
+ \ \"52.108.77.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.109.86.0/23\",\r\n
+ \ \"52.111.197.0/24\",\r\n \"52.114.234.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1026:240e::/48\",\r\n \"2603:1026:2500:28::/64\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1027:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.norwayw\",\r\n
+ \ \"id\": \"AzureCloud.norwayw\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.153.48/28\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.155.0/27\",\r\n \"13.104.217.128/25\",\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.135.58.0/23\",\r\n \"20.150.0.0/24\",\r\n
+ \ \"20.150.56.0/24\",\r\n \"20.157.3.0/24\",\r\n \"20.190.186.0/24\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.126.58.0/24\",\r\n \"40.126.201.0/24\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"52.108.177.0/24\",\r\n
+ \ \"52.108.198.0/24\",\r\n \"52.109.144.0/23\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.114.238.0/24\",\r\n \"52.253.167.0/24\",\r\n \"2603:1020:f00::/47\",\r\n
+ \ \"2603:1020:f03::/48\",\r\n \"2603:1020:f04::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:2500:10::/64\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1027:1:80::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricanorth\",\r\n
+ \ \"id\": \"AzureCloud.southafricanorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.192/27\",\r\n \"13.105.27.224/27\",\r\n \"20.38.114.128/25\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.47.50.0/24\",\r\n \"20.47.92.0/24\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.87.0.0/18\",\r\n \"20.135.78.0/23\",\r\n
+ \ \"20.135.80.0/22\",\r\n \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.190.190.0/26\",\r\n \"40.79.203.0/24\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.120.0/22\",\r\n \"40.90.19.0/27\",\r\n
+ \ \"40.90.128.144/28\",\r\n \"40.90.130.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.143.128/27\",\r\n \"40.90.151.64/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.120.16.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.127.0.0/19\",\r\n \"52.108.54.0/23\",\r\n
+ \ \"52.108.90.0/24\",\r\n \"52.109.150.0/23\",\r\n \"52.111.237.0/24\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.224.0/24\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.239.232.0/25\",\r\n
+ \ \"102.37.0.0/20\",\r\n \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.72.0/21\",\r\n
+ \ \"102.37.96.0/19\",\r\n \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n
+ \ \"102.37.192.0/18\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1007:200::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricawest\",\r\n
+ \ \"id\": \"AzureCloud.southafricawest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.160/27\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.45.136.0/21\",\r\n \"20.47.51.0/24\",\r\n \"20.47.93.0/24\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.135.32.0/23\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"40.78.209.0/24\",\r\n \"40.82.64.0/22\",\r\n
+ \ \"40.90.17.0/27\",\r\n \"40.90.128.96/28\",\r\n \"40.90.152.224/27\",\r\n
+ \ \"40.117.0.0/19\",\r\n \"40.119.68.0/22\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"52.108.187.0/24\",\r\n \"52.108.220.0/23\",\r\n \"52.109.152.0/23\",\r\n
+ \ \"52.111.238.0/24\",\r\n \"52.114.228.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.239.232.128/25\",\r\n \"102.37.26.0/27\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.80.0/21\",\r\n \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n
+ \ \"102.133.96.0/20\",\r\n \"102.133.112.0/28\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200:20::/59\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southcentralus\",\r\n \"id\": \"AzureCloud.southcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.65.0.0/16\",\r\n
+ \ \"13.66.0.0/17\",\r\n \"13.73.240.0/20\",\r\n \"13.84.0.0/15\",\r\n
+ \ \"13.104.144.64/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.217.0/25\",\r\n
+ \ \"13.104.220.128/25\",\r\n \"13.105.23.0/26\",\r\n \"13.105.25.0/24\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.66.192/26\",\r\n \"20.38.104.0/23\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.120.0/21\",\r\n \"20.47.0.0/24\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.29.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.100.0/24\",\r\n \"20.49.88.0/21\",\r\n \"20.60.48.0/22\",\r\n
+ \ \"20.60.64.0/22\",\r\n \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n
+ \ \"20.60.160.0/23\",\r\n \"20.64.0.0/17\",\r\n \"20.65.128.0/17\",\r\n
+ \ \"20.88.192.0/18\",\r\n \"20.135.8.0/22\",\r\n \"20.135.216.0/22\",\r\n
+ \ \"20.135.220.0/23\",\r\n \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n
+ \ \"20.150.70.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n
+ \ \"20.150.94.0/24\",\r\n \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n
+ \ \"20.188.64.0/19\",\r\n \"20.189.0.0/18\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"23.98.128.0/17\",\r\n \"23.100.120.0/21\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.102.128.0/18\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n
+ \ \"40.77.131.128/26\",\r\n \"40.77.172.0/24\",\r\n \"40.77.199.0/25\",\r\n
+ \ \"40.77.225.0/24\",\r\n \"40.78.214.0/24\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.207.80/28\",\r\n \"40.79.207.128/25\",\r\n
+ \ \"40.80.192.0/19\",\r\n \"40.84.128.0/17\",\r\n \"40.86.128.0/19\",\r\n
+ \ \"40.87.176.0/25\",\r\n \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n
+ \ \"40.87.176.174/31\",\r\n \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n
+ \ \"40.87.176.216/29\",\r\n \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n
+ \ \"40.87.176.240/28\",\r\n \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n
+ \ \"40.87.177.64/27\",\r\n \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n
+ \ \"40.87.177.120/31\",\r\n \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n
+ \ \"40.87.177.144/29\",\r\n \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n
+ \ \"40.87.177.160/27\",\r\n \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n
+ \ \"40.87.177.212/30\",\r\n \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n
+ \ \"40.87.178.0/26\",\r\n \"40.87.178.64/29\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.18.64/26\",\r\n \"40.90.27.64/26\",\r\n \"40.90.27.128/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.30.160/27\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.133.96/28\",\r\n \"40.90.135.128/25\",\r\n
+ \ \"40.90.136.160/28\",\r\n \"40.90.145.160/27\",\r\n \"40.90.148.0/26\",\r\n
+ \ \"40.90.152.160/27\",\r\n \"40.90.155.0/26\",\r\n \"40.91.16.0/22\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.119.0.0/18\",\r\n \"40.124.0.0/16\",\r\n
+ \ \"40.126.0.0/24\",\r\n \"40.126.29.0/24\",\r\n \"52.101.11.0/24\",\r\n
+ \ \"52.101.12.0/22\",\r\n \"52.102.132.0/24\",\r\n \"52.103.6.0/24\",\r\n
+ \ \"52.103.132.0/24\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.248.0/21\",\r\n \"52.109.20.0/22\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.112.24.0/21\",\r\n \"52.112.117.0/24\",\r\n
+ \ \"52.113.160.0/19\",\r\n \"52.113.206.0/24\",\r\n \"52.114.144.0/22\",\r\n
+ \ \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.152.0/22\",\r\n \"52.121.0.0/21\",\r\n
+ \ \"52.123.3.0/24\",\r\n \"52.125.137.0/24\",\r\n \"52.141.64.0/18\",\r\n
+ \ \"52.152.0.0/17\",\r\n \"52.153.64.0/18\",\r\n \"52.153.192.0/18\",\r\n
+ \ \"52.171.0.0/16\",\r\n \"52.183.192.0/18\",\r\n \"52.185.192.0/18\",\r\n
+ \ \"52.189.128.0/18\",\r\n \"52.232.159.0/24\",\r\n \"52.239.158.0/23\",\r\n
+ \ \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n
+ \ \"52.239.200.0/23\",\r\n \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.248.0.0/17\",\r\n \"52.249.0.0/18\",\r\n
+ \ \"52.253.0.0/18\",\r\n \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"65.52.32.0/21\",\r\n \"65.54.55.160/27\",\r\n
+ \ \"65.54.55.224/27\",\r\n \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n
+ \ \"70.37.160.0/21\",\r\n \"104.44.89.0/27\",\r\n \"104.44.89.64/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.94.160/27\",\r\n \"104.44.128.0/18\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.210.128.0/19\",\r\n \"104.210.176.0/20\",\r\n
+ \ \"104.210.192.0/19\",\r\n \"104.214.0.0/17\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"131.253.40.64/28\",\r\n \"157.55.51.224/28\",\r\n \"157.55.80.0/21\",\r\n
+ \ \"157.55.103.32/27\",\r\n \"157.55.153.224/28\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"168.62.128.0/19\",\r\n \"191.238.144.0/20\",\r\n \"191.238.160.0/19\",\r\n
+ \ \"191.238.224.0/19\",\r\n \"2603:1030:800::/48\",\r\n \"2603:1030:802::/47\",\r\n
+ \ \"2603:1030:804::/58\",\r\n \"2603:1030:804:40::/60\",\r\n
+ \ \"2603:1030:804:53::/64\",\r\n \"2603:1030:804:54::/64\",\r\n
+ \ \"2603:1030:804:5b::/64\",\r\n \"2603:1030:804:5c::/62\",\r\n
+ \ \"2603:1030:804:60::/62\",\r\n \"2603:1030:804:67::/64\",\r\n
+ \ \"2603:1030:804:68::/61\",\r\n \"2603:1030:804:70::/60\",\r\n
+ \ \"2603:1030:804:80::/59\",\r\n \"2603:1030:804:a0::/62\",\r\n
+ \ \"2603:1030:804:a4::/64\",\r\n \"2603:1030:804:a6::/63\",\r\n
+ \ \"2603:1030:804:a8::/61\",\r\n \"2603:1030:804:b0::/62\",\r\n
+ \ \"2603:1030:804:b4::/64\",\r\n \"2603:1030:804:b6::/63\",\r\n
+ \ \"2603:1030:804:b8::/61\",\r\n \"2603:1030:804:c0::/61\",\r\n
+ \ \"2603:1030:804:c8::/62\",\r\n \"2603:1030:804:cc::/63\",\r\n
+ \ \"2603:1030:804:d2::/63\",\r\n \"2603:1030:804:d4::/62\",\r\n
+ \ \"2603:1030:804:d8::/61\",\r\n \"2603:1030:804:e0::/59\",\r\n
+ \ \"2603:1030:804:100::/61\",\r\n \"2603:1030:804:108::/62\",\r\n
+ \ \"2603:1030:805::/48\",\r\n \"2603:1030:806::/48\",\r\n
+ \ \"2603:1030:807::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2500:24::/64\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1037:1:140::/59\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f403:c10c::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:f90c::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southeastasia\",\r\n \"id\": \"AzureCloud.southeastasia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.0.0/17\",\r\n
+ \ \"13.76.0.0/16\",\r\n \"13.104.149.0/26\",\r\n \"13.104.153.0/27\",\r\n
+ \ \"13.104.153.32/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.192/26\",\r\n
+ \ \"13.104.154.0/25\",\r\n \"13.104.213.128/25\",\r\n \"20.43.128.0/18\",\r\n
+ \ \"20.44.192.0/18\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.98.0/24\",\r\n \"20.60.136.0/24\",\r\n
+ \ \"20.60.138.0/23\",\r\n \"20.135.84.0/22\",\r\n \"20.135.88.0/23\",\r\n
+ \ \"20.150.17.128/25\",\r\n \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.184.0.0/18\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.140.0/25\",\r\n \"20.190.163.0/24\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n \"20.197.64.0/18\",\r\n
+ \ \"20.198.128.0/17\",\r\n \"23.97.48.0/20\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.101.16.0/20\",\r\n \"40.65.128.0/18\",\r\n
+ \ \"40.78.223.0/24\",\r\n \"40.78.232.0/21\",\r\n \"40.79.206.32/27\",\r\n
+ \ \"40.82.28.0/22\",\r\n \"40.87.196.0/22\",\r\n \"40.90.133.192/26\",\r\n
+ \ \"40.90.134.0/26\",\r\n \"40.90.137.64/27\",\r\n \"40.90.138.96/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.224/27\",\r\n \"40.90.154.128/26\",\r\n
+ \ \"40.90.160.0/19\",\r\n \"40.119.192.0/18\",\r\n \"40.126.12.0/25\",\r\n
+ \ \"40.126.35.0/24\",\r\n \"52.108.68.0/23\",\r\n \"52.108.91.0/24\",\r\n
+ \ \"52.108.184.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.236.0/22\",\r\n \"52.109.124.0/22\",\r\n \"52.111.240.0/24\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.131.0/24\",\r\n
+ \ \"52.114.8.0/21\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.80.0/22\",\r\n \"52.114.216.0/22\",\r\n \"52.115.32.0/22\",\r\n
+ \ \"52.115.36.0/23\",\r\n \"52.115.97.0/24\",\r\n \"52.120.144.0/21\",\r\n
+ \ \"52.120.156.0/24\",\r\n \"52.121.128.0/20\",\r\n \"52.121.144.0/21\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.139.192.0/18\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.210.0/24\",\r\n \"52.148.64.0/18\",\r\n \"52.163.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.237.64.0/18\",\r\n \"52.239.129.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n \"52.245.80.0/22\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"104.43.0.0/17\",\r\n \"104.44.89.32/27\",\r\n
+ \ \"104.44.90.128/27\",\r\n \"104.44.92.32/27\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.95.192/28\",\r\n \"104.44.95.224/28\",\r\n \"104.215.128.0/17\",\r\n
+ \ \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n \"137.116.128.0/19\",\r\n
+ \ \"138.91.32.0/20\",\r\n \"168.63.90.0/24\",\r\n \"168.63.91.0/26\",\r\n
+ \ \"168.63.160.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.238.64.0/23\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.224.0/20\",\r\n \"2603:1040::/47\",\r\n
+ \ \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n \"2603:1040:5::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:2000:180::/59\",\r\n \"2603:1047:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southfrance\",\r\n
+ \ \"id\": \"AzureCloud.southfrance\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.39.80.0/20\",\r\n \"20.47.28.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.150.19.0/24\",\r\n \"20.190.147.128/25\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"40.79.176.0/21\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.96.0/20\",\r\n \"40.82.224.0/20\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.136.192/27\",\r\n \"40.90.147.224/27\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.50.0/24\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.138.128.0/19\",\r\n \"51.138.160.0/21\",\r\n \"52.108.188.0/24\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.109.72.0/22\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.114.108.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.128.0/18\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\",\r\n
+ \ \"52.245.120.0/22\",\r\n \"2603:1020:900::/47\",\r\n \"2603:1020:902::/48\",\r\n
+ \ \"2603:1020:904::/48\",\r\n \"2603:1020:905::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:3000:1a0::/59\",\r\n \"2603:1027:1:1a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southindia\",\r\n
+ \ \"id\": \"AzureCloud.southindia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.64.0/18\",\r\n \"13.104.153.128/26\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.41.192.0/18\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.72.0/23\",\r\n \"20.60.10.0/24\",\r\n
+ \ \"20.135.42.0/23\",\r\n \"20.150.24.0/24\",\r\n \"20.190.145.128/25\",\r\n
+ \ \"20.190.174.0/24\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"40.78.192.0/21\",\r\n \"40.79.213.0/24\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.87.216.0/22\",\r\n \"40.90.26.64/26\",\r\n \"40.90.137.160/27\",\r\n
+ \ \"40.126.17.128/25\",\r\n \"40.126.46.0/24\",\r\n \"52.108.192.0/24\",\r\n
+ \ \"52.108.230.0/23\",\r\n \"52.109.60.0/22\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.113.15.0/24\",\r\n \"52.114.24.0/22\",\r\n \"52.136.17.0/24\",\r\n
+ \ \"52.140.0.0/18\",\r\n \"52.172.0.0/17\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.188.0/24\",\r\n \"52.245.84.0/22\",\r\n \"104.44.92.160/27\",\r\n
+ \ \"104.44.94.208/28\",\r\n \"104.47.214.0/23\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"2603:1040:c00::/46\",\r\n \"2603:1040:c05::/48\",\r\n
+ \ \"2603:1040:c06::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:2000:60::/59\",\r\n
+ \ \"2603:1047:1:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.switzerlandn\",\r\n \"id\": \"AzureCloud.switzerlandn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.32/27\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"20.47.53.0/24\",\r\n \"20.47.71.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.190.183.0/24\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"40.90.30.128/27\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.119.80.0/22\",\r\n \"40.126.55.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"51.103.128.0/18\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.107.0.0/18\",\r\n \"51.107.64.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.200.0/21\",\r\n \"51.107.240.0/21\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.96.0/24\",\r\n \"52.109.156.0/23\",\r\n \"52.111.202.0/24\",\r\n
+ \ \"52.114.226.0/24\",\r\n \"52.239.251.0/24\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.175.0/24\",\r\n \"52.253.176.0/24\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:3000:60::/59\",\r\n \"2603:1027:1:60::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.switzerlandw\",\r\n
+ \ \"id\": \"AzureCloud.switzerlandw\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.0/27\",\r\n \"13.104.212.0/26\",\r\n
+ \ \"20.47.26.0/24\",\r\n \"20.47.67.0/24\",\r\n \"20.47.103.0/24\",\r\n
+ \ \"20.60.176.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.199.192.0/18\",\r\n
+ \ \"40.90.19.32/27\",\r\n \"40.90.128.192/28\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.195.0/24\",\r\n \"51.103.192.0/27\",\r\n
+ \ \"51.107.96.0/19\",\r\n \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n
+ \ \"51.107.160.0/20\",\r\n \"51.107.192.0/21\",\r\n \"51.107.224.0/20\",\r\n
+ \ \"51.107.248.0/21\",\r\n \"52.108.179.0/24\",\r\n \"52.108.200.0/24\",\r\n
+ \ \"52.109.158.0/23\",\r\n \"52.111.203.0/24\",\r\n \"52.114.230.0/24\",\r\n
+ \ \"52.239.250.0/24\",\r\n \"52.253.166.0/24\",\r\n \"2603:1020:b00::/47\",\r\n
+ \ \"2603:1020:b03::/48\",\r\n \"2603:1020:b04::/48\",\r\n
+ \ \"2603:1026:240c::/48\",\r\n \"2603:1026:2500:20::/64\",\r\n
+ \ \"2603:1026:3000:120::/59\",\r\n \"2603:1027:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaecentral\",\r\n
+ \ \"id\": \"AzureCloud.uaecentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.159.128/26\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.45.64.0/19\",\r\n \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n
+ \ \"20.47.54.0/24\",\r\n \"20.47.94.0/24\",\r\n \"20.135.36.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"40.82.52.0/22\",\r\n \"40.90.16.64/27\",\r\n \"40.90.128.48/28\",\r\n
+ \ \"40.90.151.224/27\",\r\n \"40.119.76.0/22\",\r\n \"40.120.0.0/20\",\r\n
+ \ \"40.125.0.0/19\",\r\n \"40.126.60.0/24\",\r\n \"40.126.193.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"52.108.183.0/24\",\r\n \"52.108.204.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.111.247.0/24\",\r\n \"52.114.232.0/24\",\r\n
+ \ \"52.143.221.0/24\",\r\n \"52.239.233.0/25\",\r\n \"2603:1040:b00::/47\",\r\n
+ \ \"2603:1040:b03::/48\",\r\n \"2603:1040:b04::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1047:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaenorth\",\r\n
+ \ \"id\": \"AzureCloud.uaenorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.151.64/26\",\r\n \"13.104.151.128/26\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.64/26\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.136.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.46.32.0/19\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.192.0/21\",\r\n \"20.47.55.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.60.21.0/24\",\r\n \"20.74.128.0/18\",\r\n
+ \ \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n \"20.190.187.0/24\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"40.90.16.96/27\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.119.72.0/22\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.120.64.0/18\",\r\n \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.192.0/24\",\r\n \"52.108.70.0/23\",\r\n
+ \ \"52.108.92.0/24\",\r\n \"52.109.162.0/23\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.112.200.0/22\",\r\n \"52.112.204.0/23\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.121.100.0/22\",\r\n \"52.121.104.0/23\",\r\n
+ \ \"52.143.202.0/24\",\r\n \"52.143.222.0/23\",\r\n \"52.239.233.128/25\",\r\n
+ \ \"65.52.248.0/21\",\r\n \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1047:1:100::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uknorth\",\r\n \"id\": \"AzureCloud.uknorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.87.64.0/18\",\r\n
+ \ \"20.39.144.0/20\",\r\n \"20.45.160.0/19\",\r\n \"20.150.46.0/24\",\r\n
+ \ \"20.190.143.128/25\",\r\n \"20.190.170.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.80.16.0/22\",\r\n \"40.81.96.0/20\",\r\n \"40.90.130.112/28\",\r\n
+ \ \"40.90.143.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.126.15.128/25\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"51.11.64.0/19\",\r\n \"51.105.80.0/21\",\r\n
+ \ \"51.141.129.32/27\",\r\n \"51.142.128.0/17\",\r\n \"52.108.137.0/24\",\r\n
+ \ \"52.109.36.0/22\",\r\n \"52.136.19.0/24\",\r\n \"2603:1020:300::/47\",\r\n
+ \ \"2603:1020:302::/48\",\r\n \"2603:1020:304::/48\",\r\n
+ \ \"2603:1020:305::/48\",\r\n \"2603:1026:240f::/48\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:3000:1c0::/59\",\r\n
+ \ \"2603:1027:1:1c0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uksouth\",\r\n \"id\": \"AzureCloud.uksouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.129.128/26\",\r\n
+ \ \"13.104.145.160/27\",\r\n \"13.104.146.64/26\",\r\n \"13.104.159.0/25\",\r\n
+ \ \"20.38.106.0/23\",\r\n \"20.39.208.0/20\",\r\n \"20.39.224.0/21\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.47.68.0/24\",\r\n
+ \ \"20.47.114.0/24\",\r\n \"20.49.128.0/17\",\r\n \"20.50.96.0/19\",\r\n
+ \ \"20.58.0.0/18\",\r\n \"20.60.17.0/24\",\r\n \"20.60.166.0/23\",\r\n
+ \ \"20.68.0.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n
+ \ \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n \"20.150.41.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.190.143.0/25\",\r\n \"20.190.169.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.80.0.0/22\",\r\n \"40.81.128.0/19\",\r\n
+ \ \"40.82.88.0/22\",\r\n \"40.90.17.32/27\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.128.112/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.131.64/27\",\r\n \"40.90.139.64/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.153.64/27\",\r\n \"40.90.154.0/26\",\r\n \"40.120.32.0/19\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.41.0/24\",\r\n \"51.11.0.0/18\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.104.0.0/19\",\r\n \"51.104.192.0/18\",\r\n
+ \ \"51.105.0.0/18\",\r\n \"51.105.64.0/20\",\r\n \"51.132.0.0/18\",\r\n
+ \ \"51.132.128.0/17\",\r\n \"51.140.0.0/17\",\r\n \"51.140.128.0/18\",\r\n
+ \ \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n \"51.141.130.0/25\",\r\n
+ \ \"51.141.135.0/24\",\r\n \"51.141.192.0/18\",\r\n \"51.143.128.0/18\",\r\n
+ \ \"51.143.208.0/20\",\r\n \"51.143.224.0/19\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"52.108.50.0/23\",\r\n \"52.108.88.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.109.28.0/22\",\r\n \"52.111.242.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.240.0/20\",\r\n \"52.113.128.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.224.0/19\",\r\n
+ \ \"52.114.88.0/22\",\r\n \"52.120.160.0/19\",\r\n \"52.120.240.0/20\",\r\n
+ \ \"52.136.21.0/24\",\r\n \"52.151.64.0/18\",\r\n \"52.239.187.0/25\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.245.64.0/22\",\r\n \"52.253.162.0/23\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"2603:1020:700::/47\",\r\n \"2603:1020:702::/48\",\r\n
+ \ \"2603:1020:704::/48\",\r\n \"2603:1020:705::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2500:18::/64\",\r\n
+ \ \"2603:1026:3000:e0::/59\",\r\n \"2603:1027:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uksouth2\",\r\n
+ \ \"id\": \"AzureCloud.uksouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.0.0/18\",\r\n \"20.150.27.0/24\",\r\n \"20.190.172.0/24\",\r\n
+ \ \"40.79.201.0/24\",\r\n \"40.80.12.0/22\",\r\n \"40.81.160.0/20\",\r\n
+ \ \"40.90.130.128/28\",\r\n \"40.90.143.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.126.44.0/24\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.156.0/22\",\r\n \"51.142.0.0/17\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"52.108.138.0/24\",\r\n
+ \ \"52.109.40.0/22\",\r\n \"52.136.18.0/24\",\r\n \"2603:1020:400::/47\",\r\n
+ \ \"2603:1020:402::/48\",\r\n \"2603:1020:404::/48\",\r\n
+ \ \"2603:1020:405::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:3000:40::/59\",\r\n
+ \ \"2603:1027:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.ukwest\",\r\n \"id\": \"AzureCloud.ukwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"20.39.160.0/21\",\r\n
+ \ \"20.40.104.0/21\",\r\n \"20.47.56.0/24\",\r\n \"20.47.82.0/23\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.60.164.0/23\",\r\n \"20.68.64.0/18\",\r\n
+ \ \"20.77.192.0/18\",\r\n \"20.90.0.0/18\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.190.144.0/25\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.81.112.0/20\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.90.28.192/26\",\r\n \"40.90.29.0/26\",\r\n \"40.90.131.96/27\",\r\n
+ \ \"40.90.139.96/27\",\r\n \"40.90.157.192/27\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.43.0/24\",\r\n \"51.11.96.0/19\",\r\n \"51.104.32.0/19\",\r\n
+ \ \"51.132.64.0/18\",\r\n \"51.137.128.0/18\",\r\n \"51.140.192.0/18\",\r\n
+ \ \"51.141.0.0/17\",\r\n \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.128/26\",\r\n \"51.141.134.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"52.108.189.0/24\",\r\n \"52.108.224.0/23\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.111.205.0/24\",\r\n \"52.112.168.0/22\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.230.0/24\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.92.0/22\",\r\n \"52.136.20.0/24\",\r\n
+ \ \"52.142.128.0/18\",\r\n \"52.239.240.0/24\",\r\n \"104.44.90.0/27\",\r\n
+ \ \"2603:1020:600::/47\",\r\n \"2603:1020:602::/48\",\r\n
+ \ \"2603:1020:604::/48\",\r\n \"2603:1020:605::/48\",\r\n
+ \ \"2603:1026:2407::/48\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1027:1:200::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westcentralus\",\r\n \"id\": \"AzureCloud.westcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.128.0/17\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.215.128/25\",\r\n \"13.104.219.0/25\",\r\n \"20.47.4.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.104.0/24\",\r\n \"20.51.32.0/19\",\r\n
+ \ \"20.55.128.0/18\",\r\n \"20.57.224.0/19\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.60.4.0/24\",\r\n \"20.69.0.0/18\",\r\n \"20.135.72.0/23\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"20.190.136.0/24\",\r\n \"20.190.158.0/24\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.77.128.0/25\",\r\n \"40.77.131.192/27\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.128/25\",\r\n \"40.77.166.0/25\",\r\n
+ \ \"40.77.166.128/28\",\r\n \"40.77.173.0/24\",\r\n \"40.77.175.32/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.185.0/25\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.64/27\",\r\n \"40.77.227.0/24\",\r\n \"40.77.232.0/25\",\r\n
+ \ \"40.77.235.0/24\",\r\n \"40.77.236.96/27\",\r\n \"40.77.246.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.79.205.240/28\",\r\n \"40.79.206.224/27\",\r\n
+ \ \"40.79.207.0/27\",\r\n \"40.90.131.0/27\",\r\n \"40.90.138.192/28\",\r\n
+ \ \"40.90.139.0/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.151.0/26\",\r\n
+ \ \"40.90.151.128/28\",\r\n \"40.90.152.0/25\",\r\n \"40.93.6.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.123.136.0/24\",\r\n \"40.126.8.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"52.101.24.0/22\",\r\n \"52.101.40.0/24\",\r\n
+ \ \"52.102.133.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.108.181.0/24\",\r\n \"52.108.202.0/24\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.111.206.0/24\",\r\n \"52.112.93.0/24\",\r\n \"52.113.207.0/24\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.143.214.0/24\",\r\n \"52.148.0.0/18\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.153.128.0/18\",\r\n \"52.159.0.0/18\",\r\n
+ \ \"52.161.0.0/16\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.245.60.0/22\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"64.4.8.0/24\",\r\n \"64.4.54.0/24\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"104.44.89.96/27\",\r\n \"104.47.224.0/20\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.40.160/28\",\r\n \"157.55.12.128/26\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"207.68.174.48/29\",\r\n \"2603:1030:b00::/47\",\r\n \"2603:1030:b03::/48\",\r\n
+ \ \"2603:1030:b04::/48\",\r\n \"2603:1030:b05::/48\",\r\n
+ \ \"2603:1036:9ff:ffff::/64\",\r\n \"2603:1036:2408::/48\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1037:1:180::/59\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f910::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westeurope\",\r\n
+ \ \"id\": \"AzureCloud.westeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.0.0/17\",\r\n \"13.73.128.0/18\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.80.0.0/15\",\r\n \"13.88.200.0/21\",\r\n \"13.93.0.0/17\",\r\n
+ \ \"13.94.128.0/17\",\r\n \"13.95.0.0/16\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.128/25\",\r\n \"13.104.158.176/28\",\r\n
+ \ \"13.104.209.0/24\",\r\n \"13.104.214.0/25\",\r\n \"13.104.218.128/25\",\r\n
+ \ \"13.105.22.0/24\",\r\n \"13.105.23.128/25\",\r\n \"13.105.28.32/28\",\r\n
+ \ \"13.105.29.128/25\",\r\n \"13.105.60.48/28\",\r\n \"13.105.60.96/27\",\r\n
+ \ \"13.105.60.128/27\",\r\n \"13.105.66.144/28\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.38.200.0/22\",\r\n \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n
+ \ \"20.47.30.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.115.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.50.0.0/18\",\r\n \"20.50.128.0/17\",\r\n
+ \ \"20.54.128.0/17\",\r\n \"20.56.0.0/16\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.67.0.0/17\",\r\n \"20.71.0.0/16\",\r\n
+ \ \"20.73.0.0/16\",\r\n \"20.76.0.0/16\",\r\n \"20.82.0.0/17\",\r\n
+ \ \"20.86.0.0/17\",\r\n \"20.135.24.0/23\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.190.137.0/24\",\r\n \"20.190.160.0/24\",\r\n \"23.97.128.0/17\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.100.0.0/20\",\r\n \"23.101.64.0/20\",\r\n
+ \ \"40.67.192.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.74.0.0/18\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.82.92.0/22\",\r\n \"40.87.184.0/22\",\r\n
+ \ \"40.90.17.64/27\",\r\n \"40.90.18.192/26\",\r\n \"40.90.20.128/25\",\r\n
+ \ \"40.90.21.0/25\",\r\n \"40.90.130.0/27\",\r\n \"40.90.133.0/27\",\r\n
+ \ \"40.90.134.64/26\",\r\n \"40.90.134.128/26\",\r\n \"40.90.138.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.145.192/27\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.128/27\",\r\n \"40.90.150.128/25\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.91.28.0/22\",\r\n \"40.91.192.0/18\",\r\n
+ \ \"40.112.36.128/25\",\r\n \"40.112.37.0/26\",\r\n \"40.112.38.192/26\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.114.128.0/17\",\r\n \"40.115.0.0/18\",\r\n \"40.118.0.0/17\",\r\n
+ \ \"40.119.128.0/19\",\r\n \"40.126.9.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.124.0.0/17\",\r\n
+ \ \"51.124.128.0/18\",\r\n \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.144.0.0/16\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.108.24.0/21\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.80.0/24\",\r\n \"52.108.108.0/23\",\r\n \"52.108.110.0/24\",\r\n
+ \ \"52.109.88.0/22\",\r\n \"52.111.243.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.83.0/24\",\r\n \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n
+ \ \"52.112.110.0/23\",\r\n \"52.112.144.0/20\",\r\n \"52.112.197.0/24\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.233.0/24\",\r\n \"52.112.237.0/24\",\r\n
+ \ \"52.112.238.0/24\",\r\n \"52.113.9.0/24\",\r\n \"52.113.37.0/24\",\r\n
+ \ \"52.113.83.0/24\",\r\n \"52.113.130.0/24\",\r\n \"52.113.144.0/21\",\r\n
+ \ \"52.113.199.0/24\",\r\n \"52.114.64.0/21\",\r\n \"52.114.72.0/22\",\r\n
+ \ \"52.114.116.0/22\",\r\n \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n
+ \ \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n \"52.115.8.0/22\",\r\n
+ \ \"52.120.128.0/21\",\r\n \"52.120.208.0/20\",\r\n \"52.121.24.0/21\",\r\n
+ \ \"52.121.64.0/20\",\r\n \"52.125.140.0/23\",\r\n \"52.136.192.0/18\",\r\n
+ \ \"52.137.0.0/18\",\r\n \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.208.0/24\",\r\n \"52.148.192.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.174.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.147.0/24\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.236.128.0/17\",\r\n \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n
+ \ \"52.239.242.0/23\",\r\n \"52.245.48.0/22\",\r\n \"52.245.124.0/22\",\r\n
+ \ \"65.52.128.0/19\",\r\n \"104.40.128.0/17\",\r\n \"104.44.89.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.93.0/27\",\r\n \"104.44.93.192/27\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.45.0.0/18\",\r\n
+ \ \"104.45.64.0/20\",\r\n \"104.46.32.0/19\",\r\n \"104.47.128.0/18\",\r\n
+ \ \"104.47.216.64/26\",\r\n \"104.214.192.0/18\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.117.128.0/17\",\r\n \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"168.61.56.0/21\",\r\n \"168.63.0.0/19\",\r\n
+ \ \"168.63.96.0/19\",\r\n \"191.233.64.0/18\",\r\n \"191.237.232.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"193.149.80.0/21\",\r\n \"213.199.128.0/20\",\r\n
+ \ \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n \"213.199.180.192/27\",\r\n
+ \ \"213.199.183.0/24\",\r\n \"2603:1020:200::/46\",\r\n \"2603:1020:205::/48\",\r\n
+ \ \"2603:1020:206::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2500:24::/64\",\r\n \"2603:1026:3000:140::/59\",\r\n
+ \ \"2603:1027:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westindia\",\r\n \"id\": \"AzureCloud.westindia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.157.128/25\",\r\n
+ \ \"20.38.128.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.124.0/23\",\r\n \"20.135.44.0/23\",\r\n \"20.150.18.128/25\",\r\n
+ \ \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.176.0/24\",\r\n \"20.192.64.0/19\",\r\n \"40.79.219.0/24\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.87.220.0/22\",\r\n \"40.90.26.0/26\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.126.18.128/25\",\r\n \"40.126.48.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.94.0/24\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.111.244.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.114.28.0/22\",\r\n
+ \ \"52.136.16.0/24\",\r\n \"52.136.32.0/19\",\r\n \"52.140.128.0/18\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.249.64.0/19\",\r\n \"104.44.93.224/27\",\r\n
+ \ \"104.44.95.112/28\",\r\n \"104.47.212.0/23\",\r\n \"104.211.128.0/18\",\r\n
+ \ \"2603:1040:800::/46\",\r\n \"2603:1040:805::/48\",\r\n
+ \ \"2603:1040:806::/48\",\r\n \"2603:1046:1408::/48\",\r\n
+ \ \"2603:1046:1500::/64\",\r\n \"2603:1046:2000:20::/59\",\r\n
+ \ \"2603:1047:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westus\",\r\n \"id\": \"AzureCloud.westus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.73.32.0/19\",\r\n \"13.83.0.0/16\",\r\n \"13.86.128.0/17\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.91.0.0/16\",\r\n \"13.93.128.0/17\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.158.16/28\",\r\n \"13.104.158.64/26\",\r\n \"13.104.208.96/27\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.105.17.64/26\",\r\n
+ \ \"13.105.17.128/26\",\r\n \"13.105.19.128/25\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.97.0/27\",\r\n \"20.43.192.0/18\",\r\n
+ \ \"20.47.2.0/24\",\r\n \"20.47.22.0/23\",\r\n \"20.47.110.0/24\",\r\n
+ \ \"20.47.116.0/24\",\r\n \"20.49.120.0/21\",\r\n \"20.57.192.0/19\",\r\n
+ \ \"20.59.64.0/18\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.66.0.0/17\",\r\n \"20.135.74.0/23\",\r\n \"20.150.34.0/23\",\r\n
+ \ \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.157.32.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.184.128.0/17\",\r\n \"20.189.128.0/18\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.153.0/24\",\r\n \"23.99.0.0/18\",\r\n
+ \ \"23.99.64.0/19\",\r\n \"23.100.32.0/20\",\r\n \"23.101.192.0/20\",\r\n
+ \ \"40.65.0.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.216.0/24\",\r\n \"40.80.152.0/21\",\r\n \"40.81.0.0/20\",\r\n
+ \ \"40.82.248.0/21\",\r\n \"40.83.128.0/17\",\r\n \"40.85.144.0/20\",\r\n
+ \ \"40.86.160.0/19\",\r\n \"40.87.160.0/22\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.18.128/26\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.128.128/28\",\r\n \"40.90.131.192/27\",\r\n
+ \ \"40.90.135.0/26\",\r\n \"40.90.139.192/27\",\r\n \"40.90.146.0/28\",\r\n
+ \ \"40.90.148.128/27\",\r\n \"40.90.153.96/27\",\r\n \"40.90.156.128/26\",\r\n
+ \ \"40.93.0.0/23\",\r\n \"40.112.128.0/17\",\r\n \"40.118.128.0/17\",\r\n
+ \ \"40.125.32.0/19\",\r\n \"40.126.4.0/24\",\r\n \"40.126.25.0/24\",\r\n
+ \ \"52.101.0.0/22\",\r\n \"52.101.16.0/22\",\r\n \"52.101.41.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.103.0.0/24\",\r\n
+ \ \"52.103.2.0/24\",\r\n \"52.103.128.0/24\",\r\n \"52.108.0.0/21\",\r\n
+ \ \"52.108.78.0/24\",\r\n \"52.109.0.0/22\",\r\n \"52.111.245.0/24\",\r\n
+ \ \"52.112.106.0/23\",\r\n \"52.112.114.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.114.152.0/21\",\r\n \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n
+ \ \"52.115.140.0/22\",\r\n \"52.115.144.0/20\",\r\n \"52.120.96.0/19\",\r\n
+ \ \"52.121.36.0/22\",\r\n \"52.123.1.0/24\",\r\n \"52.137.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.155.32.0/19\",\r\n \"52.157.0.0/18\",\r\n
+ \ \"52.159.128.0/17\",\r\n \"52.160.0.0/16\",\r\n \"52.180.0.0/17\",\r\n
+ \ \"52.190.128.0/17\",\r\n \"52.225.0.0/17\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.238.0.0/18\",\r\n \"52.239.0.0/17\",\r\n
+ \ \"52.239.160.0/22\",\r\n \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.241.0.0/16\",\r\n \"52.245.12.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.246.0.0/17\",\r\n \"52.248.128.0/17\",\r\n \"52.250.192.0/18\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"65.52.112.0/20\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.44.88.0/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.92.96/27\",\r\n \"104.44.94.0/28\",\r\n \"104.44.95.128/27\",\r\n
+ \ \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n \"104.209.0.0/18\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"137.116.184.0/21\",\r\n \"137.117.0.0/19\",\r\n
+ \ \"137.135.0.0/18\",\r\n \"138.91.64.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.56.160.0/21\",\r\n \"168.61.0.0/19\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.62.0.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.63.88.0/23\",\r\n
+ \ \"191.236.64.0/18\",\r\n \"191.238.70.0/23\",\r\n \"191.239.0.0/18\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1036:2400::/48\",\r\n
+ \ \"2603:1036:2500:10::/64\",\r\n \"2603:1036:3000:1c0::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2a01:111:f100:3000::/52\",\r\n
+ \ \"2a01:111:f403:c000::/64\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:f800::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westus2\",\r\n
+ \ \"id\": \"AzureCloud.westus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.128.0/17\",\r\n \"13.77.128.0/18\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.145.0/26\",\r\n \"13.104.208.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.128/26\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.38.99.0/24\",\r\n \"20.42.128.0/18\",\r\n
+ \ \"20.47.62.0/23\",\r\n \"20.47.120.0/23\",\r\n \"20.51.8.0/21\",\r\n
+ \ \"20.51.64.0/18\",\r\n \"20.57.128.0/18\",\r\n \"20.59.0.0/18\",\r\n
+ \ \"20.60.20.0/24\",\r\n \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.64.128.0/17\",\r\n \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n
+ \ \"20.72.192.0/18\",\r\n \"20.80.128.0/18\",\r\n \"20.83.64.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.135.18.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.68.0/24\",\r\n \"20.150.78.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n \"20.157.50.0/23\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.190.0.0/18\",\r\n \"20.190.133.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.191.64.0/18\",\r\n \"23.98.47.0/24\",\r\n
+ \ \"23.102.192.0/21\",\r\n \"23.102.203.0/24\",\r\n \"23.103.64.32/27\",\r\n
+ \ \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n \"40.64.64.0/18\",\r\n
+ \ \"40.64.128.0/21\",\r\n \"40.65.64.0/18\",\r\n \"40.77.136.0/28\",\r\n
+ \ \"40.77.136.64/28\",\r\n \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n
+ \ \"40.77.162.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.169.0/24\",\r\n
+ \ \"40.77.175.64/27\",\r\n \"40.77.180.0/23\",\r\n \"40.77.182.64/27\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.128/26\",\r\n \"40.77.200.0/25\",\r\n \"40.77.202.0/24\",\r\n
+ \ \"40.77.224.96/27\",\r\n \"40.77.230.0/24\",\r\n \"40.77.232.128/25\",\r\n
+ \ \"40.77.234.224/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.240.128/25\",\r\n
+ \ \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.249.0/24\",\r\n \"40.77.250.0/24\",\r\n \"40.77.254.128/25\",\r\n
+ \ \"40.78.208.32/30\",\r\n \"40.78.217.0/24\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.206.128/27\",\r\n \"40.80.160.0/24\",\r\n \"40.82.36.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.90.16.192/26\",\r\n \"40.90.131.32/27\",\r\n
+ \ \"40.90.132.48/28\",\r\n \"40.90.136.224/27\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.139.32/27\",\r\n \"40.90.146.32/27\",\r\n \"40.90.148.192/27\",\r\n
+ \ \"40.90.153.0/26\",\r\n \"40.90.192.0/19\",\r\n \"40.91.0.0/22\",\r\n
+ \ \"40.91.64.0/18\",\r\n \"40.91.160.0/19\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n \"40.125.64.0/18\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.26.0/24\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.28.0/22\",\r\n
+ \ \"52.101.42.0/24\",\r\n \"52.102.134.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.72.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.109.24.0/22\",\r\n \"52.111.246.0/24\",\r\n \"52.112.105.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.115.0/24\",\r\n \"52.114.148.0/22\",\r\n
+ \ \"52.115.55.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.137.64.0/18\",\r\n \"52.143.64.0/18\",\r\n \"52.143.197.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.148.128.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.151.0.0/18\",\r\n \"52.156.64.0/18\",\r\n \"52.156.128.0/19\",\r\n
+ \ \"52.158.224.0/19\",\r\n \"52.175.192.0/18\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.191.128.0/18\",\r\n \"52.229.0.0/18\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.233.64.0/18\",\r\n \"52.235.64.0/18\",\r\n \"52.239.148.128/25\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.245.52.0/22\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.192.0/18\",\r\n \"52.250.0.0/17\",\r\n \"65.52.111.0/24\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.112/28\",\r\n \"65.55.51.0/24\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.106.192/28\",\r\n \"65.55.106.240/28\",\r\n
+ \ \"65.55.107.0/28\",\r\n \"65.55.107.96/27\",\r\n \"65.55.110.0/24\",\r\n
+ \ \"65.55.120.0/24\",\r\n \"65.55.207.0/24\",\r\n \"65.55.209.0/25\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.219.64/26\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n \"104.44.89.128/27\",\r\n
+ \ \"104.44.89.192/27\",\r\n \"104.44.95.0/28\",\r\n \"131.253.12.160/28\",\r\n
+ \ \"131.253.12.228/30\",\r\n \"131.253.13.24/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.192/29\",\r\n
+ \ \"131.253.15.192/28\",\r\n \"131.253.35.128/26\",\r\n \"131.253.40.48/29\",\r\n
+ \ \"131.253.40.128/27\",\r\n \"131.253.41.0/24\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"157.55.2.128/26\",\r\n \"157.55.12.64/26\",\r\n
+ \ \"157.55.13.64/26\",\r\n \"157.55.39.0/24\",\r\n \"157.55.55.228/30\",\r\n
+ \ \"157.55.55.232/29\",\r\n \"157.55.55.240/28\",\r\n \"157.55.106.0/26\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.56.2.0/25\",\r\n \"157.56.3.128/25\",\r\n
+ \ \"157.56.19.224/27\",\r\n \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n
+ \ \"157.56.80.0/25\",\r\n \"168.62.64.0/19\",\r\n \"199.30.24.0/23\",\r\n
+ \ \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n \"199.30.27.160/27\",\r\n
+ \ \"199.30.31.192/26\",\r\n \"207.46.13.0/24\",\r\n \"207.68.174.192/28\",\r\n
+ \ \"209.240.212.0/23\",\r\n \"2603:1030:c00::/48\",\r\n \"2603:1030:c02::/47\",\r\n
+ \ \"2603:1030:c04::/48\",\r\n \"2603:1030:c05::/48\",\r\n
+ \ \"2603:1030:c06::/48\",\r\n \"2603:1030:c07::/48\",\r\n
+ \ \"2603:1030:d00::/48\",\r\n \"2603:1030:e01:2::/64\",\r\n
+ \ \"2603:1036:903::/64\",\r\n \"2603:1036:d20::/64\",\r\n
+ \ \"2603:1036:2409::/48\",\r\n \"2603:1036:2500:14::/64\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1037:1:c0::/59\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c804::/62\",\r\n
+ \ \"2a01:111:f403:d004::/62\",\r\n \"2a01:111:f403:d804::/62\",\r\n
+ \ \"2a01:111:f403:f804::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch\",\r\n \"id\": \"AzureCognitiveSearch\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.32.141/32\",\r\n \"13.83.22.45/32\",\r\n \"13.83.22.74/32\",\r\n
+ \ \"13.83.22.119/32\",\r\n \"13.86.5.51/32\",\r\n \"20.36.120.128/26\",\r\n
+ \ \"20.37.64.128/26\",\r\n \"20.37.156.128/26\",\r\n \"20.37.193.192/26\",\r\n
+ \ \"20.37.224.128/26\",\r\n \"20.38.84.0/26\",\r\n \"20.38.136.128/26\",\r\n
+ \ \"20.39.8.192/26\",\r\n \"20.40.123.36/32\",\r\n \"20.40.123.39/32\",\r\n
+ \ \"20.40.123.46/32\",\r\n \"20.40.123.72/32\",\r\n \"20.41.4.128/26\",\r\n
+ \ \"20.41.65.64/26\",\r\n \"20.41.193.64/26\",\r\n \"20.42.4.128/26\",\r\n
+ \ \"20.42.24.90/32\",\r\n \"20.42.29.212/32\",\r\n \"20.42.30.105/32\",\r\n
+ \ \"20.42.34.190/32\",\r\n \"20.42.35.204/32\",\r\n \"20.42.129.192/26\",\r\n
+ \ \"20.42.225.192/26\",\r\n \"20.43.41.64/26\",\r\n \"20.43.65.64/26\",\r\n
+ \ \"20.43.130.128/26\",\r\n \"20.44.74.182/32\",\r\n \"20.44.76.53/32\",\r\n
+ \ \"20.44.76.61/32\",\r\n \"20.44.76.86/32\",\r\n \"20.45.0.49/32\",\r\n
+ \ \"20.45.2.122/32\",\r\n \"20.45.112.128/26\",\r\n \"20.45.192.128/26\",\r\n
+ \ \"20.72.17.0/26\",\r\n \"20.150.160.128/26\",\r\n \"20.185.110.199/32\",\r\n
+ \ \"20.189.106.128/26\",\r\n \"20.189.129.94/32\",\r\n \"20.192.161.0/26\",\r\n
+ \ \"20.192.225.64/26\",\r\n \"23.100.238.27/32\",\r\n \"23.100.238.34/31\",\r\n
+ \ \"23.100.238.37/32\",\r\n \"40.65.173.157/32\",\r\n \"40.65.175.212/32\",\r\n
+ \ \"40.65.175.228/32\",\r\n \"40.66.56.233/32\",\r\n \"40.67.48.128/26\",\r\n
+ \ \"40.74.18.154/32\",\r\n \"40.74.30.0/26\",\r\n \"40.80.57.64/26\",\r\n
+ \ \"40.80.169.64/26\",\r\n \"40.80.186.192/26\",\r\n \"40.80.216.231/32\",\r\n
+ \ \"40.80.217.38/32\",\r\n \"40.80.219.46/32\",\r\n \"40.81.9.100/32\",\r\n
+ \ \"40.81.9.131/32\",\r\n \"40.81.9.203/32\",\r\n \"40.81.9.209/32\",\r\n
+ \ \"40.81.9.213/32\",\r\n \"40.81.9.221/32\",\r\n \"40.81.10.36/32\",\r\n
+ \ \"40.81.12.133/32\",\r\n \"40.81.15.8/32\",\r\n \"40.81.15.39/32\",\r\n
+ \ \"40.81.29.152/32\",\r\n \"40.81.188.130/32\",\r\n \"40.81.191.58/32\",\r\n
+ \ \"40.81.253.154/32\",\r\n \"40.82.155.65/32\",\r\n \"40.82.253.0/26\",\r\n
+ \ \"40.89.17.64/26\",\r\n \"40.90.190.180/32\",\r\n \"40.90.240.17/32\",\r\n
+ \ \"40.91.93.84/32\",\r\n \"40.91.127.116/32\",\r\n \"40.91.127.241/32\",\r\n
+ \ \"40.119.11.0/26\",\r\n \"51.12.41.64/26\",\r\n \"51.12.193.64/26\",\r\n
+ \ \"51.104.25.64/26\",\r\n \"51.105.80.128/26\",\r\n \"51.105.88.128/26\",\r\n
+ \ \"51.107.48.128/26\",\r\n \"51.107.144.128/26\",\r\n \"51.116.48.96/28\",\r\n
+ \ \"51.116.144.96/28\",\r\n \"51.120.40.128/26\",\r\n \"51.120.224.128/26\",\r\n
+ \ \"51.132.43.66/32\",\r\n \"51.137.161.64/26\",\r\n \"51.143.104.54/32\",\r\n
+ \ \"51.143.104.90/32\",\r\n \"51.143.192.128/26\",\r\n \"51.145.124.157/32\",\r\n
+ \ \"51.145.124.158/32\",\r\n \"51.145.176.249/32\",\r\n \"51.145.177.212/32\",\r\n
+ \ \"51.145.178.138/32\",\r\n \"51.145.178.140/32\",\r\n \"52.136.48.128/26\",\r\n
+ \ \"52.137.24.236/32\",\r\n \"52.137.26.114/32\",\r\n \"52.137.26.155/32\",\r\n
+ \ \"52.137.26.198/32\",\r\n \"52.137.27.49/32\",\r\n \"52.137.56.115/32\",\r\n
+ \ \"52.137.60.208/32\",\r\n \"52.139.0.47/32\",\r\n \"52.139.0.49/32\",\r\n
+ \ \"52.140.105.64/26\",\r\n \"52.140.233.105/32\",\r\n \"52.150.139.0/26\",\r\n
+ \ \"52.151.235.150/32\",\r\n \"52.151.235.242/32\",\r\n \"52.151.235.244/32\",\r\n
+ \ \"52.155.216.245/32\",\r\n \"52.155.217.84/32\",\r\n \"52.155.221.242/32\",\r\n
+ \ \"52.155.221.250/32\",\r\n \"52.155.222.35/32\",\r\n \"52.155.222.56/32\",\r\n
+ \ \"52.157.22.233/32\",\r\n \"52.157.231.64/32\",\r\n \"52.158.28.181/32\",\r\n
+ \ \"52.158.30.241/32\",\r\n \"52.158.208.11/32\",\r\n \"52.184.80.221/32\",\r\n
+ \ \"52.185.224.13/32\",\r\n \"52.185.224.38/32\",\r\n \"52.188.217.235/32\",\r\n
+ \ \"52.188.218.228/32\",\r\n \"52.188.218.239/32\",\r\n \"52.228.81.64/26\",\r\n
+ \ \"52.242.214.45/32\",\r\n \"52.253.133.74/32\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"102.133.128.33/32\",\r\n \"102.133.217.128/26\",\r\n
+ \ \"104.45.64.0/32\",\r\n \"104.45.64.147/32\",\r\n \"104.45.64.224/32\",\r\n
+ \ \"104.45.65.30/32\",\r\n \"104.45.65.89/32\",\r\n \"191.233.9.0/26\",\r\n
+ \ \"191.233.26.156/32\",\r\n \"191.235.225.64/26\",\r\n \"2603:1000:4::180/121\",\r\n
+ \ \"2603:1000:104:1::180/121\",\r\n \"2603:1010:6:1::180/121\",\r\n
+ \ \"2603:1010:101::180/121\",\r\n \"2603:1010:304::180/121\",\r\n
+ \ \"2603:1010:404::180/121\",\r\n \"2603:1020:5:1::180/121\",\r\n
+ \ \"2603:1020:206:1::180/121\",\r\n \"2603:1020:305::180/121\",\r\n
+ \ \"2603:1020:405::180/121\",\r\n \"2603:1020:605::180/121\",\r\n
+ \ \"2603:1020:705:1::180/121\",\r\n \"2603:1020:805:1::180/121\",\r\n
+ \ \"2603:1020:905::180/121\",\r\n \"2603:1020:a04:1::180/121\",\r\n
+ \ \"2603:1020:b04::180/121\",\r\n \"2603:1020:c04:1::180/121\",\r\n
+ \ \"2603:1020:d04::180/121\",\r\n \"2603:1020:e04:1::180/121\",\r\n
+ \ \"2603:1020:f04::180/121\",\r\n \"2603:1020:1004::180/121\",\r\n
+ \ \"2603:1020:1104::180/121\",\r\n \"2603:1030:f:1::180/121\",\r\n
+ \ \"2603:1030:10:1::180/121\",\r\n \"2603:1030:104:1::180/121\",\r\n
+ \ \"2603:1030:107::180/121\",\r\n \"2603:1030:210:1::180/121\",\r\n
+ \ \"2603:1030:40b:1::180/121\",\r\n \"2603:1030:40c:1::180/121\",\r\n
+ \ \"2603:1030:504:1::180/121\",\r\n \"2603:1030:608::180/121\",\r\n
+ \ \"2603:1030:807:1::180/121\",\r\n \"2603:1030:a07::180/121\",\r\n
+ \ \"2603:1030:b04::180/121\",\r\n \"2603:1030:c06:1::180/121\",\r\n
+ \ \"2603:1030:f05:1::180/121\",\r\n \"2603:1030:1005::180/121\",\r\n
+ \ \"2603:1040:5:1::180/121\",\r\n \"2603:1040:207::180/121\",\r\n
+ \ \"2603:1040:407:1::180/121\",\r\n \"2603:1040:606::180/121\",\r\n
+ \ \"2603:1040:806::180/121\",\r\n \"2603:1040:904:1::180/121\",\r\n
+ \ \"2603:1040:a06:1::180/121\",\r\n \"2603:1040:b04::180/121\",\r\n
+ \ \"2603:1040:c06::180/121\",\r\n \"2603:1040:d04::180/121\",\r\n
+ \ \"2603:1040:f05:1::180/121\",\r\n \"2603:1040:1104::180/121\",\r\n
+ \ \"2603:1050:6:1::180/121\",\r\n \"2603:1050:403::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.128/26\",\r\n \"2603:1010:304::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.128/26\",\r\n \"2603:1010:404::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.CentralIndia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.81.253.154/32\",\r\n \"52.140.105.64/26\",\r\n
+ \ \"2603:1040:a06:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"id\":
+ \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.128/26\",\r\n \"2603:1030:f:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastAsia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.189.106.128/26\",\r\n \"40.81.29.152/32\",\r\n
+ \ \"52.184.80.221/32\",\r\n \"2603:1040:207::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.8.192/26\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"2603:1030:40b:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.KoreaCentral\",\r\n \"id\":
+ \"AzureCognitiveSearch.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.65.64/26\",\r\n \"40.82.155.65/32\",\r\n \"2603:1040:f05:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.128/26\",\r\n \"2603:1020:b04::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.UKNorth\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.80.128/26\",\r\n \"2603:1020:305::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors\",\r\n
+ \ \"id\": \"AzureConnectors\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.86.57/32\",\r\n \"13.66.140.128/28\",\r\n
+ \ \"13.66.145.96/27\",\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n
+ \ \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n \"13.69.227.208/28\",\r\n
+ \ \"13.69.231.192/27\",\r\n \"13.70.72.192/28\",\r\n \"13.70.78.224/27\",\r\n
+ \ \"13.70.136.174/32\",\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"13.71.153.19/32\",\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"13.71.195.32/28\",\r\n \"13.71.199.192/27\",\r\n \"13.72.243.10/32\",\r\n
+ \ \"13.73.21.230/32\",\r\n \"13.73.244.224/27\",\r\n \"13.75.36.64/28\",\r\n
+ \ \"13.75.110.131/32\",\r\n \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"13.78.132.82/32\",\r\n \"13.86.223.32/27\",\r\n
+ \ \"13.87.56.224/28\",\r\n \"13.87.122.224/28\",\r\n \"13.89.171.80/28\",\r\n
+ \ \"13.89.178.64/27\",\r\n \"13.93.148.62/32\",\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n \"20.37.74.192/28\",\r\n
+ \ \"20.38.128.224/27\",\r\n \"20.43.123.0/27\",\r\n \"20.44.3.0/28\",\r\n
+ \ \"20.44.29.64/27\",\r\n \"20.53.0.0/27\",\r\n \"20.72.27.0/26\",\r\n
+ \ \"20.150.170.240/28\",\r\n \"20.150.173.64/26\",\r\n \"20.192.32.64/26\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"20.193.206.192/26\",\r\n \"23.100.208.0/27\",\r\n
+ \ \"40.67.58.240/28\",\r\n \"40.67.60.224/27\",\r\n \"40.69.106.240/28\",\r\n
+ \ \"40.69.111.0/27\",\r\n \"40.70.146.208/28\",\r\n \"40.70.151.96/27\",\r\n
+ \ \"40.71.11.80/28\",\r\n \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n
+ \ \"40.71.249.205/32\",\r\n \"40.74.100.224/28\",\r\n \"40.74.146.64/28\",\r\n
+ \ \"40.78.194.240/28\",\r\n \"40.78.202.96/28\",\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.79.178.240/28\",\r\n \"40.79.180.224/27\",\r\n
+ \ \"40.79.189.64/27\",\r\n \"40.80.180.64/27\",\r\n \"40.89.135.2/32\",\r\n
+ \ \"40.89.186.239/32\",\r\n \"40.91.208.65/32\",\r\n \"40.112.195.87/32\",\r\n
+ \ \"40.112.243.160/28\",\r\n \"40.114.40.132/32\",\r\n \"40.120.8.0/27\",\r\n
+ \ \"40.120.64.64/27\",\r\n \"51.12.98.240/28\",\r\n \"51.12.102.0/26\",\r\n
+ \ \"51.12.202.240/28\",\r\n \"51.12.205.192/26\",\r\n \"51.103.142.22/32\",\r\n
+ \ \"51.105.77.96/27\",\r\n \"51.107.59.16/28\",\r\n \"51.107.60.224/27\",\r\n
+ \ \"51.107.86.217/32\",\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"51.116.59.16/28\",\r\n \"51.116.60.192/27\",\r\n \"51.116.155.80/28\",\r\n
+ \ \"51.116.158.96/27\",\r\n \"51.116.211.212/32\",\r\n \"51.116.236.78/32\",\r\n
+ \ \"51.120.98.224/28\",\r\n \"51.120.100.192/27\",\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"51.140.61.124/32\",\r\n \"51.140.74.150/32\",\r\n
+ \ \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n \"51.140.211.0/28\",\r\n
+ \ \"51.140.212.224/27\",\r\n \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n
+ \ \"51.141.124.13/32\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"52.138.92.192/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.161.101.204/32\",\r\n \"52.161.102.22/32\",\r\n \"52.162.107.160/28\",\r\n
+ \ \"52.162.111.192/27\",\r\n \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n
+ \ \"52.166.78.89/32\",\r\n \"52.169.28.181/32\",\r\n \"52.171.130.92/32\",\r\n
+ \ \"52.172.211.12/32\",\r\n \"52.172.212.129/32\",\r\n \"52.173.241.27/32\",\r\n
+ \ \"52.173.245.164/32\",\r\n \"52.174.88.118/32\",\r\n \"52.175.23.169/32\",\r\n
+ \ \"52.178.150.68/32\",\r\n \"52.183.78.157/32\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"52.191.164.250/32\",\r\n \"52.225.129.144/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"65.52.250.208/28\",\r\n \"94.245.91.93/32\",\r\n \"102.37.64.0/27\",\r\n
+ \ \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n \"102.133.155.0/28\",\r\n
+ \ \"102.133.168.167/32\",\r\n \"102.133.253.0/27\",\r\n \"104.41.59.51/32\",\r\n
+ \ \"104.42.122.49/32\",\r\n \"104.209.247.23/32\",\r\n \"104.211.81.192/28\",\r\n
+ \ \"104.211.146.224/28\",\r\n \"104.211.189.124/32\",\r\n
+ \ \"104.211.189.218/32\",\r\n \"104.214.19.48/28\",\r\n \"104.214.70.191/32\",\r\n
+ \ \"104.214.164.0/27\",\r\n \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n
+ \ \"168.61.140.0/27\",\r\n \"168.61.143.64/26\",\r\n \"191.232.191.157/32\",\r\n
+ \ \"191.233.51.0/26\",\r\n \"191.233.203.192/28\",\r\n \"191.233.207.160/27\",\r\n
+ \ \"2603:1000:4:402::180/122\",\r\n \"2603:1000:104:402::180/122\",\r\n
+ \ \"2603:1010:6:402::180/122\",\r\n \"2603:1010:101:402::180/122\",\r\n
+ \ \"2603:1010:304:402::180/122\",\r\n \"2603:1010:404:402::180/122\",\r\n
+ \ \"2603:1020:5:402::180/122\",\r\n \"2603:1020:206:402::180/122\",\r\n
+ \ \"2603:1020:305:402::180/122\",\r\n \"2603:1020:405:402::180/122\",\r\n
+ \ \"2603:1020:605:402::180/122\",\r\n \"2603:1020:705:402::180/122\",\r\n
+ \ \"2603:1020:805:402::180/122\",\r\n \"2603:1020:905:402::180/122\",\r\n
+ \ \"2603:1020:a04:402::180/122\",\r\n \"2603:1020:b04:402::180/122\",\r\n
+ \ \"2603:1020:c04:402::180/122\",\r\n \"2603:1020:d04:402::180/122\",\r\n
+ \ \"2603:1020:e04:402::180/122\",\r\n \"2603:1020:f04:402::180/122\",\r\n
+ \ \"2603:1020:1004:c02::80/122\",\r\n \"2603:1020:1104:400::180/122\",\r\n
+ \ \"2603:1030:f:400::980/122\",\r\n \"2603:1030:10:402::180/122\",\r\n
+ \ \"2603:1030:104:402::180/122\",\r\n \"2603:1030:107:400::100/122\",\r\n
+ \ \"2603:1030:210:402::180/122\",\r\n \"2603:1030:40b:400::980/122\",\r\n
+ \ \"2603:1030:40c:402::180/122\",\r\n \"2603:1030:504:c02::80/122\",\r\n
+ \ \"2603:1030:608:402::180/122\",\r\n \"2603:1030:807:402::180/122\",\r\n
+ \ \"2603:1030:a07:402::100/122\",\r\n \"2603:1030:b04:402::180/122\",\r\n
+ \ \"2603:1030:c06:400::980/122\",\r\n \"2603:1030:f05:402::180/122\",\r\n
+ \ \"2603:1030:1005:402::180/122\",\r\n \"2603:1040:5:402::180/122\",\r\n
+ \ \"2603:1040:207:402::180/122\",\r\n \"2603:1040:407:402::180/122\",\r\n
+ \ \"2603:1040:606:402::180/122\",\r\n \"2603:1040:806:402::180/122\",\r\n
+ \ \"2603:1040:904:402::180/122\",\r\n \"2603:1040:a06:402::180/122\",\r\n
+ \ \"2603:1040:b04:402::180/122\",\r\n \"2603:1040:c06:402::180/122\",\r\n
+ \ \"2603:1040:d04:c02::80/122\",\r\n \"2603:1040:f05:402::180/122\",\r\n
+ \ \"2603:1040:1104:400::180/122\",\r\n \"2603:1050:6:402::180/122\",\r\n
+ \ \"2603:1050:403:400::2c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaCentral\",\r\n \"id\":
+ \"AzureConnectors.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.53.0.0/27\",\r\n \"2603:1010:304:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureConnectors.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n
+ \ \"2603:1010:404:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaEast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.192/28\",\r\n
+ \ \"13.70.78.224/27\",\r\n \"13.72.243.10/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"2603:1010:6:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.136.174/32\",\r\n
+ \ \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"2603:1010:101:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.BrazilSouth\",\r\n \"id\":
+ \"AzureConnectors.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"104.41.59.51/32\",\r\n
+ \ \"191.232.191.157/32\",\r\n \"191.233.203.192/28\",\r\n
+ \ \"191.233.207.160/27\",\r\n \"2603:1050:6:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"2603:1030:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaEast\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.240/28\",\r\n \"40.69.111.0/27\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"2603:1030:1005:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralIndia\",\r\n
+ \ \"id\": \"AzureConnectors.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.123.0/27\",\r\n \"52.172.211.12/32\",\r\n
+ \ \"52.172.212.129/32\",\r\n \"104.211.81.192/28\",\r\n \"2603:1040:a06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.80/28\",\r\n \"13.89.178.64/27\",\r\n
+ \ \"52.173.241.27/32\",\r\n \"52.173.245.164/32\",\r\n \"2603:1030:10:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureConnectors\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.202.96/28\",\r\n \"168.61.140.0/27\",\r\n
+ \ \"168.61.143.64/26\",\r\n \"2603:1030:f:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.64/28\",\r\n \"13.75.110.131/32\",\r\n
+ \ \"52.175.23.169/32\",\r\n \"104.214.164.0/27\",\r\n \"2603:1040:207:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.80/28\",\r\n
+ \ \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n \"40.71.249.205/32\",\r\n
+ \ \"40.114.40.132/32\",\r\n \"2603:1030:210:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.208/28\",\r\n
+ \ \"40.70.151.96/27\",\r\n \"52.225.129.144/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"104.209.247.23/32\",\r\n \"2603:1030:40c:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.64/28\",\r\n \"52.138.92.192/27\",\r\n
+ \ \"2603:1030:40b:400::980/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceCentral\",\r\n \"id\":
+ \"AzureConnectors.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.89.135.2/32\",\r\n \"40.89.186.239/32\",\r\n
+ \ \"2603:1020:805:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceSouth\",\r\n \"id\":
+ \"AzureConnectors.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.240/28\",\r\n
+ \ \"40.79.180.224/27\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"2603:1020:905:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.GermanyNorth\",\r\n \"id\":
+ \"AzureConnectors.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.116.59.16/28\",\r\n
+ \ \"51.116.60.192/27\",\r\n \"51.116.211.212/32\",\r\n \"2603:1020:d04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureConnectors.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.80/28\",\r\n \"51.116.158.96/27\",\r\n
+ \ \"51.116.236.78/32\",\r\n \"2603:1020:c04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanEast\",\r\n
+ \ \"id\": \"AzureConnectors.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.153.19/32\",\r\n \"13.73.21.230/32\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"40.79.189.64/27\",\r\n \"2603:1040:407:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanWest\",\r\n
+ \ \"id\": \"AzureConnectors.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.224/28\",\r\n \"40.80.180.64/27\",\r\n
+ \ \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n \"2603:1040:606:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.29.64/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"2603:1040:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaSouth\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.107.160/28\",\r\n \"52.162.111.192/27\",\r\n
+ \ \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n \"2603:1030:608:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthEurope\",\r\n
+ \ \"id\": \"AzureConnectors.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.208/28\",\r\n \"13.69.231.192/27\",\r\n
+ \ \"52.169.28.181/32\",\r\n \"52.178.150.68/32\",\r\n \"94.245.91.93/32\",\r\n
+ \ \"2603:1020:5:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.NorwayEast\",\r\n \"id\":
+ \"AzureConnectors.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.224/28\",\r\n
+ \ \"51.120.100.192/27\",\r\n \"2603:1020:e04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorwayWest\",\r\n
+ \ \"id\": \"AzureConnectors.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"2603:1020:f04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.0/28\",\r\n \"102.133.168.167/32\",\r\n
+ \ \"102.133.253.0/27\",\r\n \"2603:1000:104:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.0/27\",\r\n \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n
+ \ \"2603:1000:4:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.SouthCentralUS\",\r\n \"id\":
+ \"AzureConnectors.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.65.86.57/32\",\r\n
+ \ \"13.73.244.224/27\",\r\n \"52.171.130.92/32\",\r\n \"104.214.19.48/28\",\r\n
+ \ \"104.214.70.191/32\",\r\n \"2603:1030:807:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"2603:1040:5:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthIndia\",\r\n
+ \ \"id\": \"AzureConnectors.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"40.78.194.240/28\",\r\n \"2603:1040:c06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.103.142.22/32\",\r\n \"51.107.59.16/28\",\r\n
+ \ \"51.107.60.224/27\",\r\n \"51.107.86.217/32\",\r\n \"2603:1020:a04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"2603:1020:b04:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UAECentral\",\r\n \"id\":
+ \"AzureConnectors.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.37.74.192/28\",\r\n
+ \ \"40.120.8.0/27\",\r\n \"2603:1040:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.UAENorth\",\r\n
+ \ \"id\": \"AzureConnectors.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.64/27\",\r\n \"65.52.250.208/28\",\r\n
+ \ \"2603:1040:904:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKSouth\",\r\n \"id\": \"AzureConnectors.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.77.96/27\",\r\n \"51.140.61.124/32\",\r\n
+ \ \"51.140.74.150/32\",\r\n \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n
+ \ \"2603:1020:705:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKWest\",\r\n \"id\": \"AzureConnectors.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.211.0/28\",\r\n \"51.140.212.224/27\",\r\n
+ \ \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n \"51.141.124.13/32\",\r\n
+ \ \"2603:1020:605:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestCentralUS\",\r\n \"id\":
+ \"AzureConnectors.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.32/28\",\r\n
+ \ \"13.71.199.192/27\",\r\n \"13.78.132.82/32\",\r\n \"52.161.101.204/32\",\r\n
+ \ \"52.161.102.22/32\",\r\n \"2603:1030:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.WestEurope\",\r\n
+ \ \"id\": \"AzureConnectors.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n
+ \ \"40.91.208.65/32\",\r\n \"52.166.78.89/32\",\r\n \"52.174.88.118/32\",\r\n
+ \ \"2603:1020:206:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestIndia\",\r\n \"id\": \"AzureConnectors.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.224/27\",\r\n \"104.211.146.224/28\",\r\n
+ \ \"104.211.189.124/32\",\r\n \"104.211.189.218/32\",\r\n
+ \ \"2603:1040:806:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS\",\r\n \"id\": \"AzureConnectors.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.223.32/27\",\r\n \"13.93.148.62/32\",\r\n
+ \ \"40.112.195.87/32\",\r\n \"40.112.243.160/28\",\r\n \"104.42.122.49/32\",\r\n
+ \ \"2603:1030:a07:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS2\",\r\n \"id\": \"AzureConnectors.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.128/28\",\r\n \"13.66.145.96/27\",\r\n
+ \ \"52.183.78.157/32\",\r\n \"52.191.164.250/32\",\r\n \"2603:1030:c06:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry\",\r\n
+ \ \"id\": \"AzureContainerRegistry\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n
+ \ \"13.66.147.0/25\",\r\n \"13.66.148.0/24\",\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/24\",\r\n \"13.69.64.88/29\",\r\n \"13.69.106.80/29\",\r\n
+ \ \"13.69.110.0/24\",\r\n \"13.69.227.88/29\",\r\n \"13.69.236.0/23\",\r\n
+ \ \"13.69.238.0/24\",\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n
+ \ \"13.71.170.56/29\",\r\n \"13.71.176.0/24\",\r\n \"13.71.194.224/29\",\r\n
+ \ \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n \"13.73.255.64/26\",\r\n
+ \ \"13.74.107.80/29\",\r\n \"13.74.110.0/24\",\r\n \"13.75.36.0/29\",\r\n
+ \ \"13.77.50.80/29\",\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"13.87.56.96/29\",\r\n \"13.87.122.96/29\",\r\n \"13.89.170.216/29\",\r\n
+ \ \"13.89.175.0/25\",\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"20.38.132.192/26\",\r\n \"20.38.140.192/26\",\r\n \"20.38.146.144/29\",\r\n
+ \ \"20.38.149.0/25\",\r\n \"20.39.15.128/25\",\r\n \"20.40.224.64/26\",\r\n
+ \ \"20.41.69.128/26\",\r\n \"20.41.199.192/26\",\r\n \"20.41.208.64/26\",\r\n
+ \ \"20.42.66.0/23\",\r\n \"20.43.46.64/26\",\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.44.2.24/29\",\r\n \"20.44.11.0/25\",\r\n
+ \ \"20.44.11.128/26\",\r\n \"20.44.12.0/25\",\r\n \"20.44.19.64/26\",\r\n
+ \ \"20.44.22.0/23\",\r\n \"20.44.26.144/29\",\r\n \"20.44.29.128/25\",\r\n
+ \ \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n \"20.45.199.128/25\",\r\n
+ \ \"20.48.192.128/26\",\r\n \"20.49.82.16/29\",\r\n \"20.49.90.16/29\",\r\n
+ \ \"20.49.92.0/24\",\r\n \"20.49.93.0/26\",\r\n \"20.49.102.128/26\",\r\n
+ \ \"20.49.115.0/26\",\r\n \"20.49.127.0/26\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.52.72.128/26\",\r\n \"20.52.88.64/26\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"20.62.128.0/26\",\r\n \"20.65.0.0/24\",\r\n
+ \ \"20.72.18.128/26\",\r\n \"20.72.26.128/26\",\r\n \"20.72.30.0/25\",\r\n
+ \ \"20.135.26.64/26\",\r\n \"20.150.170.24/29\",\r\n \"20.150.173.128/26\",\r\n
+ \ \"20.150.174.0/25\",\r\n \"20.150.178.144/29\",\r\n \"20.150.181.192/26\",\r\n
+ \ \"20.150.182.128/25\",\r\n \"20.150.186.144/29\",\r\n \"20.150.189.192/26\",\r\n
+ \ \"20.150.190.128/25\",\r\n \"20.150.225.64/26\",\r\n \"20.150.241.0/26\",\r\n
+ \ \"20.187.196.64/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"20.189.224.0/26\",\r\n \"20.191.160.128/26\",\r\n \"20.192.32.0/26\",\r\n
+ \ \"20.192.33.0/26\",\r\n \"20.192.33.128/25\",\r\n \"20.192.50.0/26\",\r\n
+ \ \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n \"20.192.101.128/26\",\r\n
+ \ \"20.192.234.24/29\",\r\n \"20.193.192.128/26\",\r\n \"20.193.202.16/29\",\r\n
+ \ \"20.193.204.128/26\",\r\n \"20.193.205.0/25\",\r\n \"20.193.206.64/26\",\r\n
+ \ \"20.194.66.16/29\",\r\n \"20.194.68.0/25\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"20.194.128.0/25\",\r\n \"20.195.64.128/26\",\r\n \"20.195.136.0/24\",\r\n
+ \ \"20.195.137.0/25\",\r\n \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n
+ \ \"23.98.87.0/25\",\r\n \"23.98.112.0/25\",\r\n \"40.64.112.0/24\",\r\n
+ \ \"40.64.135.128/25\",\r\n \"40.67.58.24/29\",\r\n \"40.67.121.0/25\",\r\n
+ \ \"40.67.122.128/26\",\r\n \"40.69.106.80/29\",\r\n \"40.69.110.0/25\",\r\n
+ \ \"40.69.116.0/26\",\r\n \"40.70.146.88/29\",\r\n \"40.70.150.0/24\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.74.100.160/29\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.78.194.80/29\",\r\n
+ \ \"40.78.196.192/26\",\r\n \"40.78.202.72/29\",\r\n \"40.78.226.208/29\",\r\n
+ \ \"40.78.231.0/24\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n \"40.79.138.32/29\",\r\n
+ \ \"40.79.141.0/25\",\r\n \"40.79.146.32/29\",\r\n \"40.79.148.128/25\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n
+ \ \"40.79.166.0/25\",\r\n \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n
+ \ \"40.79.174.0/25\",\r\n \"40.79.178.80/29\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"40.89.120.0/24\",\r\n \"40.89.121.0/25\",\r\n \"40.112.242.160/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/25\",\r\n \"40.124.64.0/25\",\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.12.25.64/26\",\r\n \"51.12.32.0/25\",\r\n \"51.12.98.24/29\",\r\n
+ \ \"51.12.100.192/26\",\r\n \"51.12.101.0/26\",\r\n \"51.12.199.192/26\",\r\n
+ \ \"51.12.202.24/29\",\r\n \"51.12.205.128/26\",\r\n \"51.12.206.128/25\",\r\n
+ \ \"51.12.226.144/29\",\r\n \"51.12.234.144/29\",\r\n \"51.13.0.0/25\",\r\n
+ \ \"51.13.1.64/26\",\r\n \"51.13.128.128/25\",\r\n \"51.13.129.0/26\",\r\n
+ \ \"51.104.9.128/25\",\r\n \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n
+ \ \"51.105.70.0/25\",\r\n \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n
+ \ \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n \"51.107.58.24/29\",\r\n
+ \ \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n \"51.107.154.24/29\",\r\n
+ \ \"51.107.192.0/26\",\r\n \"51.116.58.24/29\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/25\",\r\n \"51.116.242.144/29\",\r\n \"51.116.250.144/29\",\r\n
+ \ \"51.120.98.160/29\",\r\n \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n
+ \ \"51.120.110.0/25\",\r\n \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n
+ \ \"51.120.218.24/29\",\r\n \"51.120.234.0/26\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.138.160.128/26\",\r\n \"51.140.146.200/29\",\r\n
+ \ \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n \"51.143.208.0/26\",\r\n
+ \ \"52.138.90.32/29\",\r\n \"52.138.93.0/24\",\r\n \"52.138.226.80/29\",\r\n
+ \ \"52.138.230.0/23\",\r\n \"52.140.110.192/26\",\r\n \"52.146.131.128/26\",\r\n
+ \ \"52.150.156.64/26\",\r\n \"52.162.104.192/26\",\r\n \"52.162.106.160/29\",\r\n
+ \ \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n \"52.168.112.192/26\",\r\n
+ \ \"52.168.114.0/23\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.182.138.208/29\",\r\n \"52.182.142.0/24\",\r\n \"52.231.18.56/29\",\r\n
+ \ \"52.231.20.128/26\",\r\n \"52.231.146.192/29\",\r\n \"52.236.186.80/29\",\r\n
+ \ \"52.236.191.0/24\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"65.52.248.192/26\",\r\n \"65.52.250.16/29\",\r\n \"102.37.65.64/26\",\r\n
+ \ \"102.37.72.128/26\",\r\n \"102.133.26.24/29\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"104.208.16.80/29\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"104.211.81.136/29\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"104.214.18.184/29\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"168.61.140.128/25\",\r\n \"168.61.141.0/24\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"191.233.50.16/29\",\r\n \"191.233.54.64/26\",\r\n
+ \ \"191.233.54.128/26\",\r\n \"191.233.203.136/29\",\r\n
+ \ \"191.233.205.192/26\",\r\n \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n
+ \ \"191.234.149.64/26\",\r\n \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n
+ \ \"191.234.157.192/26\",\r\n \"2603:1000:4:402::90/125\",\r\n
+ \ \"2603:1000:4:402::340/122\",\r\n \"2603:1000:4:402::580/122\",\r\n
+ \ \"2603:1000:104:402::90/125\",\r\n \"2603:1000:104:402::340/122\",\r\n
+ \ \"2603:1000:104:802::90/125\",\r\n \"2603:1000:104:802::2c0/122\",\r\n
+ \ \"2603:1000:104:c02::90/125\",\r\n \"2603:1010:6:402::90/125\",\r\n
+ \ \"2603:1010:6:402::340/122\",\r\n \"2603:1010:6:802::90/125\",\r\n
+ \ \"2603:1010:6:802::2c0/122\",\r\n \"2603:1010:6:c02::90/125\",\r\n
+ \ \"2603:1010:101:402::90/125\",\r\n \"2603:1010:101:402::340/122\",\r\n
+ \ \"2603:1010:101:402::580/122\",\r\n \"2603:1010:304:402::90/125\",\r\n
+ \ \"2603:1010:304:402::340/122\",\r\n \"2603:1010:304:402::580/122\",\r\n
+ \ \"2603:1010:404:402::90/125\",\r\n \"2603:1010:404:402::340/122\",\r\n
+ \ \"2603:1010:404:402::580/122\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\",\r\n
+ \ \"2603:1020:206:402::90/125\",\r\n \"2603:1020:206:402::340/122\",\r\n
+ \ \"2603:1020:206:802::90/125\",\r\n \"2603:1020:206:802::2c0/122\",\r\n
+ \ \"2603:1020:206:c02::90/125\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\",\r\n \"2603:1020:605:402::90/125\",\r\n
+ \ \"2603:1020:605:402::340/122\",\r\n \"2603:1020:605:402::580/122\",\r\n
+ \ \"2603:1020:705:402::90/125\",\r\n \"2603:1020:705:402::340/122\",\r\n
+ \ \"2603:1020:705:802::90/125\",\r\n \"2603:1020:705:802::2c0/122\",\r\n
+ \ \"2603:1020:705:c02::90/125\",\r\n \"2603:1020:805:402::90/125\",\r\n
+ \ \"2603:1020:805:402::340/122\",\r\n \"2603:1020:805:802::90/125\",\r\n
+ \ \"2603:1020:805:802::2c0/122\",\r\n \"2603:1020:805:c02::90/125\",\r\n
+ \ \"2603:1020:905:402::90/125\",\r\n \"2603:1020:905:402::340/122\",\r\n
+ \ \"2603:1020:905:402::580/122\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\",\r\n
+ \ \"2603:1020:b04:402::90/125\",\r\n \"2603:1020:b04:402::340/122\",\r\n
+ \ \"2603:1020:b04:402::580/122\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\",\r\n \"2603:1020:e04::348/125\",\r\n
+ \ \"2603:1020:e04:402::90/125\",\r\n \"2603:1020:e04:402::340/122\",\r\n
+ \ \"2603:1020:e04:402::580/121\",\r\n \"2603:1020:e04:802::90/125\",\r\n
+ \ \"2603:1020:e04:802::2c0/122\",\r\n \"2603:1020:e04:c02::90/125\",\r\n
+ \ \"2603:1020:f04:402::90/125\",\r\n \"2603:1020:f04:402::340/122\",\r\n
+ \ \"2603:1020:f04:402::580/122\",\r\n \"2603:1020:1004:1::1a0/125\",\r\n
+ \ \"2603:1020:1004:400::90/125\",\r\n \"2603:1020:1004:400::3b8/125\",\r\n
+ \ \"2603:1020:1004:400::4c0/122\",\r\n \"2603:1020:1004:400::500/121\",\r\n
+ \ \"2603:1020:1004:800::150/125\",\r\n \"2603:1020:1004:800::180/121\",\r\n
+ \ \"2603:1020:1004:800::280/121\",\r\n \"2603:1020:1004:c02::300/121\",\r\n
+ \ \"2603:1020:1104::5a0/125\",\r\n \"2603:1020:1104:400::90/125\",\r\n
+ \ \"2603:1020:1104:400::380/121\",\r\n \"2603:1020:1104:400::540/122\",\r\n
+ \ \"2603:1030:f:1::2a8/125\",\r\n \"2603:1030:f:400::890/125\",\r\n
+ \ \"2603:1030:f:400::b40/122\",\r\n \"2603:1030:f:400::d80/122\",\r\n
+ \ \"2603:1030:f:400::e00/121\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\",\r\n
+ \ \"2603:1030:104:402::90/125\",\r\n \"2603:1030:104:402::340/122\",\r\n
+ \ \"2603:1030:104:402::580/122\",\r\n \"2603:1030:107::580/125\",\r\n
+ \ \"2603:1030:107:400::18/125\",\r\n \"2603:1030:107:400::300/121\",\r\n
+ \ \"2603:1030:107:400::500/122\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\",\r\n
+ \ \"2603:1030:302:402::c0/122\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\",\r\n
+ \ \"2603:1030:40c:402::90/125\",\r\n \"2603:1030:40c:402::340/122\",\r\n
+ \ \"2603:1030:40c:802::90/125\",\r\n \"2603:1030:40c:802::2c0/122\",\r\n
+ \ \"2603:1030:40c:c02::90/125\",\r\n \"2603:1030:504::1a0/125\",\r\n
+ \ \"2603:1030:504:402::90/125\",\r\n \"2603:1030:504:402::3b8/125\",\r\n
+ \ \"2603:1030:504:802::c0/125\",\r\n \"2603:1030:504:802::150/125\",\r\n
+ \ \"2603:1030:504:802::180/121\",\r\n \"2603:1030:504:c02::140/122\",\r\n
+ \ \"2603:1030:504:c02::300/121\",\r\n \"2603:1030:608:402::90/125\",\r\n
+ \ \"2603:1030:608:402::340/122\",\r\n \"2603:1030:608:402::580/122\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\",\r\n \"2603:1030:c06:400::890/125\",\r\n
+ \ \"2603:1030:c06:400::b40/122\",\r\n \"2603:1030:c06:802::90/125\",\r\n
+ \ \"2603:1030:c06:802::2c0/122\",\r\n \"2603:1030:c06:c02::90/125\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\",\r\n \"2603:1030:1005:402::90/125\",\r\n
+ \ \"2603:1030:1005:402::340/122\",\r\n \"2603:1030:1005:402::580/122\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\",\r\n
+ \ \"2603:1040:407:402::90/125\",\r\n \"2603:1040:407:402::340/122\",\r\n
+ \ \"2603:1040:407:802::90/125\",\r\n \"2603:1040:407:802::2c0/122\",\r\n
+ \ \"2603:1040:407:c02::90/125\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\",\r\n
+ \ \"2603:1040:a06:402::90/125\",\r\n \"2603:1040:a06:402::340/122\",\r\n
+ \ \"2603:1040:a06:802::90/125\",\r\n \"2603:1040:a06:802::2c0/122\",\r\n
+ \ \"2603:1040:a06:c02::90/125\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\",\r\n \"2603:1040:d04:1::1a0/125\",\r\n
+ \ \"2603:1040:d04:400::90/125\",\r\n \"2603:1040:d04:400::3b8/125\",\r\n
+ \ \"2603:1040:d04:400::4c0/122\",\r\n \"2603:1040:d04:400::500/121\",\r\n
+ \ \"2603:1040:d04:800::150/125\",\r\n \"2603:1040:d04:800::180/121\",\r\n
+ \ \"2603:1040:d04:800::280/121\",\r\n \"2603:1040:d04:c02::300/121\",\r\n
+ \ \"2603:1040:e05:402::100/122\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\",\r\n
+ \ \"2603:1040:1104::5a0/125\",\r\n \"2603:1040:1104:400::90/125\",\r\n
+ \ \"2603:1040:1104:400::380/121\",\r\n \"2603:1040:1104:400::480/122\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\",\r\n
+ \ \"2603:1050:403:400::98/125\",\r\n \"2603:1050:403:400::480/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n \"40.79.166.0/25\",\r\n
+ \ \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n \"40.79.174.0/25\",\r\n
+ \ \"2603:1010:6:402::90/125\",\r\n \"2603:1010:6:402::340/122\",\r\n
+ \ \"2603:1010:6:802::90/125\",\r\n \"2603:1010:6:802::2c0/122\",\r\n
+ \ \"2603:1010:6:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.80/29\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"2603:1010:101:402::90/125\",\r\n
+ \ \"2603:1010:101:402::340/122\",\r\n \"2603:1010:101:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.136.0/24\",\r\n \"20.195.137.0/25\",\r\n
+ \ \"191.233.203.136/29\",\r\n \"191.233.205.192/26\",\r\n
+ \ \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n \"191.234.149.64/26\",\r\n
+ \ \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n \"191.234.157.192/26\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.56/29\",\r\n \"13.71.176.0/25\",\r\n \"13.71.176.128/25\",\r\n
+ \ \"20.38.146.144/29\",\r\n \"20.38.149.0/25\",\r\n \"20.48.192.128/26\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CanadaEast\",\r\n \"id\":
+ \"AzureContainerRegistry.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.80/29\",\r\n
+ \ \"40.69.110.0/25\",\r\n \"40.69.116.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"2603:1030:1005:402::90/125\",\r\n \"2603:1030:1005:402::340/122\",\r\n
+ \ \"2603:1030:1005:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CentralIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n
+ \ \"20.192.101.128/26\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"52.140.110.192/26\",\r\n \"104.211.81.136/29\",\r\n \"2603:1040:a06:402::90/125\",\r\n
+ \ \"2603:1040:a06:402::340/122\",\r\n \"2603:1040:a06:802::90/125\",\r\n
+ \ \"2603:1040:a06:802::2c0/122\",\r\n \"2603:1040:a06:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.216/29\",\r\n \"13.89.175.0/25\",\r\n
+ \ \"20.40.224.64/26\",\r\n \"20.44.11.0/25\",\r\n \"20.44.11.128/26\",\r\n
+ \ \"20.44.12.0/25\",\r\n \"52.182.138.208/29\",\r\n \"52.182.142.0/25\",\r\n
+ \ \"52.182.142.128/25\",\r\n \"104.208.16.80/29\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.199.128/25\",\r\n \"40.78.202.72/29\",\r\n
+ \ \"168.61.140.128/25\",\r\n \"168.61.141.0/25\",\r\n \"168.61.141.128/25\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"2603:1030:f:1::2a8/125\",\r\n
+ \ \"2603:1030:f:400::890/125\",\r\n \"2603:1030:f:400::b40/122\",\r\n
+ \ \"2603:1030:f:400::d80/122\",\r\n \"2603:1030:f:400::e00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.0/29\",\r\n \"20.187.196.64/26\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.66.0/24\",\r\n \"20.42.67.0/24\",\r\n \"20.62.128.0/26\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.78.226.208/29\",\r\n \"40.78.231.0/24\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"52.168.112.192/26\",\r\n \"52.168.114.0/24\",\r\n
+ \ \"52.168.115.0/24\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.19.64/26\",\r\n \"20.44.22.0/24\",\r\n \"20.44.23.0/24\",\r\n
+ \ \"20.49.102.128/26\",\r\n \"20.65.0.0/24\",\r\n \"40.70.146.88/29\",\r\n
+ \ \"40.70.150.0/24\",\r\n \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"2603:1030:40c:402::90/125\",\r\n
+ \ \"2603:1030:40c:402::340/122\",\r\n \"2603:1030:40c:802::90/125\",\r\n
+ \ \"2603:1030:40c:802::2c0/122\",\r\n \"2603:1030:40c:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.128/25\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.89.120.0/24\",\r\n
+ \ \"40.89.121.0/25\",\r\n \"52.138.90.32/29\",\r\n \"52.138.93.0/25\",\r\n
+ \ \"52.138.93.128/25\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.46.64/26\",\r\n \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n
+ \ \"40.79.138.32/29\",\r\n \"40.79.141.0/26\",\r\n \"40.79.141.64/26\",\r\n
+ \ \"40.79.146.32/29\",\r\n \"40.79.148.128/26\",\r\n \"40.79.148.192/26\",\r\n
+ \ \"2603:1020:805:402::90/125\",\r\n \"2603:1020:805:402::340/122\",\r\n
+ \ \"2603:1020:805:802::90/125\",\r\n \"2603:1020:805:802::2c0/122\",\r\n
+ \ \"2603:1020:805:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.FranceSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.80/29\",\r\n
+ \ \"51.138.160.128/26\",\r\n \"2603:1020:905:402::90/125\",\r\n
+ \ \"2603:1020:905:402::340/122\",\r\n \"2603:1020:905:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.128/26\",\r\n \"51.116.58.24/29\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.88.64/26\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/26\",\r\n \"51.116.158.192/26\",\r\n \"51.116.242.144/29\",\r\n
+ \ \"51.116.250.144/29\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"20.191.160.128/26\",\r\n \"20.194.128.0/25\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"2603:1040:407:402::90/125\",\r\n
+ \ \"2603:1040:407:402::340/122\",\r\n \"2603:1040:407:802::90/125\",\r\n
+ \ \"2603:1040:407:802::2c0/122\",\r\n \"2603:1040:407:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.224.0/26\",\r\n \"40.74.100.160/29\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.128/26\",\r\n \"20.44.26.144/29\",\r\n
+ \ \"20.44.29.128/26\",\r\n \"20.44.29.192/26\",\r\n \"20.194.66.16/29\",\r\n
+ \ \"20.194.68.0/26\",\r\n \"20.194.68.64/26\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"52.231.18.56/29\",\r\n \"52.231.20.128/26\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.135.26.64/26\",\r\n \"52.231.146.192/29\",\r\n
+ \ \"2603:1040:e05:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.115.0/26\",\r\n \"52.162.104.192/26\",\r\n
+ \ \"52.162.106.160/29\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"2603:1030:608:402::90/125\",\r\n \"2603:1030:608:402::340/122\",\r\n
+ \ \"2603:1030:608:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.88/29\",\r\n
+ \ \"13.69.236.0/23\",\r\n \"13.69.238.0/24\",\r\n \"13.74.107.80/29\",\r\n
+ \ \"13.74.110.0/24\",\r\n \"52.138.226.80/29\",\r\n \"52.138.230.0/24\",\r\n
+ \ \"52.138.231.0/24\",\r\n \"52.146.131.128/26\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"5\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.0/25\",\r\n \"51.13.1.64/26\",\r\n \"51.120.98.160/29\",\r\n
+ \ \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n \"51.120.110.0/25\",\r\n
+ \ \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n \"51.120.234.0/26\",\r\n
+ \ \"2603:1020:e04::348/125\",\r\n \"2603:1020:e04:402::90/125\",\r\n
+ \ \"2603:1020:e04:402::340/122\",\r\n \"2603:1020:e04:402::580/121\",\r\n
+ \ \"2603:1020:e04:802::90/125\",\r\n \"2603:1020:e04:802::2c0/122\",\r\n
+ \ \"2603:1020:e04:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorwayWest\",\r\n \"id\":
+ \"AzureContainerRegistry.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.13.128.128/25\",\r\n
+ \ \"51.13.129.0/26\",\r\n \"51.120.218.24/29\",\r\n \"2603:1020:f04:402::90/125\",\r\n
+ \ \"2603:1020:f04:402::340/122\",\r\n \"2603:1020:f04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.128/26\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"2603:1000:104:402::90/125\",\r\n
+ \ \"2603:1000:104:402::340/122\",\r\n \"2603:1000:104:802::90/125\",\r\n
+ \ \"2603:1000:104:802::2c0/122\",\r\n \"2603:1000:104:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.64/26\",\r\n \"102.133.26.24/29\",\r\n
+ \ \"2603:1000:4:402::90/125\",\r\n \"2603:1000:4:402::340/122\",\r\n
+ \ \"2603:1000:4:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n
+ \ \"13.73.255.64/26\",\r\n \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n
+ \ \"20.49.90.16/29\",\r\n \"20.49.92.0/25\",\r\n \"20.49.92.128/25\",\r\n
+ \ \"20.49.93.0/26\",\r\n \"40.124.64.0/25\",\r\n \"104.214.18.184/29\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SoutheastAsia\",\r\n \"id\":
+ \"AzureContainerRegistry.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/25\",\r\n \"13.67.14.128/25\",\r\n \"20.195.64.128/26\",\r\n
+ \ \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n \"23.98.87.0/25\",\r\n
+ \ \"23.98.112.0/25\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.41.199.192/26\",\r\n
+ \ \"20.41.208.64/26\",\r\n \"40.78.194.80/29\",\r\n \"40.78.196.192/26\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n
+ \ \"51.107.58.24/29\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n
+ \ \"51.107.154.24/29\",\r\n \"51.107.192.0/26\",\r\n \"2603:1020:b04:402::90/125\",\r\n
+ \ \"2603:1020:b04:402::340/122\",\r\n \"2603:1020:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.192/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/26\",\r\n \"40.120.77.64/26\",\r\n \"65.52.248.192/26\",\r\n
+ \ \"65.52.250.16/29\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.96/29\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.128/25\",\r\n
+ \ \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n \"51.105.70.0/25\",\r\n
+ \ \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.140.146.200/29\",\r\n \"51.143.208.0/26\",\r\n \"2603:1020:705:402::90/125\",\r\n
+ \ \"2603:1020:705:402::340/122\",\r\n \"2603:1020:705:802::90/125\",\r\n
+ \ \"2603:1020:705:802::2c0/122\",\r\n \"2603:1020:705:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.56.96/29\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKWest\",\r\n \"id\":
+ \"AzureContainerRegistry.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n
+ \ \"2603:1020:605:402::90/125\",\r\n \"2603:1020:605:402::340/122\",\r\n
+ \ \"2603:1020:605:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.224/29\",\r\n
+ \ \"40.67.121.0/25\",\r\n \"40.67.122.128/26\",\r\n \"52.150.156.64/26\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.88/29\",\r\n
+ \ \"13.69.106.80/29\",\r\n \"13.69.110.0/24\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.236.186.80/29\",\r\n \"52.236.191.0/24\",\r\n \"2603:1020:206:402::90/125\",\r\n
+ \ \"2603:1020:206:402::340/122\",\r\n \"2603:1020:206:802::90/125\",\r\n
+ \ \"2603:1020:206:802::2c0/122\",\r\n \"2603:1020:206:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestIndia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.132.192/26\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.127.0/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"40.112.242.160/29\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n \"13.66.147.0/25\",\r\n
+ \ \"13.66.148.0/24\",\r\n \"40.64.112.0/24\",\r\n \"40.64.135.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"2603:1030:c06:400::890/125\",\r\n \"2603:1030:c06:400::b40/122\",\r\n
+ \ \"2603:1030:c06:802::90/125\",\r\n \"2603:1030:c06:802::2c0/122\",\r\n
+ \ \"2603:1030:c06:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB\",\r\n \"id\": \"AzureCosmosDB\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n \"13.64.113.68/32\",\r\n
+ \ \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.66.138.0/26\",\r\n
+ \ \"13.67.8.0/26\",\r\n \"13.68.28.135/32\",\r\n \"13.69.66.0/25\",\r\n
+ \ \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n \"13.69.226.0/25\",\r\n
+ \ \"13.70.74.136/29\",\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"13.71.170.0/28\",\r\n \"13.71.194.0/26\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.73.100.183/32\",\r\n \"13.73.254.224/27\",\r\n \"13.74.106.0/25\",\r\n
+ \ \"13.75.34.0/26\",\r\n \"13.75.134.84/32\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"13.77.50.0/28\",\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n
+ \ \"13.78.188.25/32\",\r\n \"13.79.34.236/32\",\r\n \"13.81.51.99/32\",\r\n
+ \ \"13.82.53.191/32\",\r\n \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n
+ \ \"13.85.16.188/32\",\r\n \"13.87.56.0/27\",\r\n \"13.87.122.0/27\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.88.253.180/32\",\r\n \"13.89.41.245/32\",\r\n
+ \ \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n \"13.89.224.229/32\",\r\n
+ \ \"13.90.199.155/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"13.94.201.5/32\",\r\n
+ \ \"13.95.234.68/32\",\r\n \"20.36.26.132/32\",\r\n \"20.36.42.8/32\",\r\n
+ \ \"20.36.75.163/32\",\r\n \"20.36.106.0/26\",\r\n \"20.36.114.0/28\",\r\n
+ \ \"20.36.123.96/27\",\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"20.37.228.32/27\",\r\n \"20.38.140.128/27\",\r\n \"20.38.146.0/26\",\r\n
+ \ \"20.39.15.64/27\",\r\n \"20.40.207.160/27\",\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"20.43.46.0/27\",\r\n \"20.44.2.64/26\",\r\n
+ \ \"20.44.10.0/26\",\r\n \"20.44.26.0/26\",\r\n \"20.45.115.160/27\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.45.198.96/27\",\r\n \"20.48.192.32/27\",\r\n
+ \ \"20.49.82.64/26\",\r\n \"20.49.90.64/26\",\r\n \"20.49.102.64/27\",\r\n
+ \ \"20.49.114.128/27\",\r\n \"20.49.126.160/27\",\r\n \"20.53.41.0/27\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"20.72.18.64/27\",\r\n \"20.72.26.64/26\",\r\n
+ \ \"20.150.166.192/27\",\r\n \"20.150.170.64/26\",\r\n \"20.150.178.0/26\",\r\n
+ \ \"20.150.186.0/26\",\r\n \"20.187.196.0/27\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"20.192.98.0/26\",\r\n \"20.192.166.192/27\",\r\n \"20.192.231.0/27\",\r\n
+ \ \"20.192.234.64/26\",\r\n \"20.193.202.64/26\",\r\n \"20.194.66.64/26\",\r\n
+ \ \"23.96.180.213/32\",\r\n \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"23.102.239.134/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.67.51.160/27\",\r\n \"40.67.58.64/26\",\r\n
+ \ \"40.68.44.85/32\",\r\n \"40.69.106.0/28\",\r\n \"40.70.0.140/32\",\r\n
+ \ \"40.70.220.202/32\",\r\n \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n
+ \ \"40.71.203.37/32\",\r\n \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n
+ \ \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.77.63.179/32\",\r\n
+ \ \"40.78.194.0/28\",\r\n \"40.78.203.32/27\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.78.236.192/26\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.79.163.72/29\",\r\n \"40.79.163.192/26\",\r\n
+ \ \"40.79.170.48/28\",\r\n \"40.79.178.0/28\",\r\n \"40.79.186.16/28\",\r\n
+ \ \"40.79.194.128/26\",\r\n \"40.80.50.0/26\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"40.80.173.0/27\",\r\n \"40.83.137.191/32\",\r\n \"40.85.178.211/32\",\r\n
+ \ \"40.86.229.245/32\",\r\n \"40.89.22.224/27\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.113.90.91/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"40.115.241.37/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"40.120.74.64/26\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"40.126.244.209/32\",\r\n \"51.12.43.0/27\",\r\n \"51.12.98.64/26\",\r\n
+ \ \"51.12.195.0/27\",\r\n \"51.12.202.64/26\",\r\n \"51.12.226.0/26\",\r\n
+ \ \"51.12.234.0/26\",\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.105.92.192/27\",\r\n \"51.107.52.224/27\",\r\n
+ \ \"51.107.58.64/26\",\r\n \"51.107.148.32/27\",\r\n \"51.107.154.64/26\",\r\n
+ \ \"51.116.50.224/27\",\r\n \"51.116.58.64/26\",\r\n \"51.116.146.224/27\",\r\n
+ \ \"51.116.154.128/26\",\r\n \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n
+ \ \"51.120.44.128/27\",\r\n \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n
+ \ \"51.120.210.0/26\",\r\n \"51.120.218.64/26\",\r\n \"51.120.228.160/27\",\r\n
+ \ \"51.137.166.128/27\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n
+ \ \"51.141.25.77/32\",\r\n \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n
+ \ \"51.143.189.37/32\",\r\n \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n
+ \ \"52.136.52.64/27\",\r\n \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n
+ \ \"52.136.136.70/32\",\r\n \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n
+ \ \"52.138.92.0/26\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.140.110.64/27\",\r\n \"52.143.136.41/32\",\r\n
+ \ \"52.146.79.160/27\",\r\n \"52.146.131.0/27\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.156.170.104/32\",\r\n \"52.158.234.203/32\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"52.162.106.0/26\",\r\n \"52.162.252.26/32\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.167.107.128/26\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n
+ \ \"52.170.204.83/32\",\r\n \"52.172.55.127/32\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"52.173.148.217/32\",\r\n \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n
+ \ \"52.174.253.239/32\",\r\n \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n
+ \ \"52.176.0.136/32\",\r\n \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n
+ \ \"52.176.155.127/32\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n
+ \ \"52.179.200.0/25\",\r\n \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n
+ \ \"52.180.177.137/32\",\r\n \"52.182.138.0/25\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"52.186.69.224/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n
+ \ \"52.226.21.178/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n \"52.231.207.31/32\",\r\n
+ \ \"52.232.59.220/32\",\r\n \"52.233.41.60/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n \"52.236.189.0/26\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"65.52.210.9/32\",\r\n \"65.52.251.128/26\",\r\n
+ \ \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n \"102.133.122.0/26\",\r\n
+ \ \"102.133.154.64/26\",\r\n \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n
+ \ \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n \"104.41.177.93/32\",\r\n
+ \ \"104.45.16.183/32\",\r\n \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n
+ \ \"104.46.177.64/27\",\r\n \"104.208.231.0/25\",\r\n \"104.210.89.99/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n
+ \ \"104.211.146.0/28\",\r\n \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"104.211.227.84/32\",\r\n
+ \ \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n \"104.214.26.177/32\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"157.55.170.133/32\",\r\n \"168.61.142.128/26\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.11.192/27\",\r\n
+ \ \"191.233.50.64/26\",\r\n \"191.233.204.128/27\",\r\n \"191.234.138.160/27\",\r\n
+ \ \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n \"191.234.179.157/32\",\r\n
+ \ \"191.239.179.124/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1000:4:402::c0/122\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\",\r\n
+ \ \"2603:1010:6:402::c0/122\",\r\n \"2603:1010:6:802::c0/122\",\r\n
+ \ \"2603:1010:6:c02::c0/122\",\r\n \"2603:1010:101:402::c0/122\",\r\n
+ \ \"2603:1010:304:402::c0/122\",\r\n \"2603:1010:404:402::c0/122\",\r\n
+ \ \"2603:1020:5:402::c0/122\",\r\n \"2603:1020:5:802::c0/122\",\r\n
+ \ \"2603:1020:5:c02::c0/122\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\",\r\n
+ \ \"2603:1020:305:402::c0/122\",\r\n \"2603:1020:405:402::c0/122\",\r\n
+ \ \"2603:1020:605:402::c0/122\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\",\r\n
+ \ \"2603:1020:805:402::c0/122\",\r\n \"2603:1020:805:802::c0/122\",\r\n
+ \ \"2603:1020:805:c02::c0/122\",\r\n \"2603:1020:905:402::c0/122\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\",\r\n \"2603:1020:b04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:402::c0/122\",\r\n \"2603:1020:c04:802::c0/122\",\r\n
+ \ \"2603:1020:c04:c02::c0/122\",\r\n \"2603:1020:d04:402::c0/122\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\",\r\n
+ \ \"2603:1020:f04:402::c0/122\",\r\n \"2603:1020:1004:1::60/123\",\r\n
+ \ \"2603:1020:1004:400::c0/122\",\r\n \"2603:1020:1004:400::280/122\",\r\n
+ \ \"2603:1020:1004:400::3c0/122\",\r\n \"2603:1020:1104::520/123\",\r\n
+ \ \"2603:1020:1104:400::c0/122\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\",\r\n
+ \ \"2603:1030:104:402::c0/122\",\r\n \"2603:1030:107::540/123\",\r\n
+ \ \"2603:1030:107:400::40/122\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\",\r\n
+ \ \"2603:1030:504::60/123\",\r\n \"2603:1030:504:402::c0/122\",\r\n
+ \ \"2603:1030:504:402::280/122\",\r\n \"2603:1030:504:402::3c0/122\",\r\n
+ \ \"2603:1030:504:802::200/122\",\r\n \"2603:1030:504:c02::3c0/122\",\r\n
+ \ \"2603:1030:608:402::c0/122\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\",\r\n
+ \ \"2603:1030:a07:402::c0/122\",\r\n \"2603:1030:b04:402::c0/122\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\",\r\n
+ \ \"2603:1030:1005:402::c0/122\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\",\r\n
+ \ \"2603:1040:207:402::c0/122\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\",\r\n
+ \ \"2603:1040:606:402::c0/122\",\r\n \"2603:1040:806:402::c0/122\",\r\n
+ \ \"2603:1040:904:402::c0/122\",\r\n \"2603:1040:904:802::c0/122\",\r\n
+ \ \"2603:1040:904:c02::c0/122\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\",\r\n
+ \ \"2603:1040:b04:402::c0/122\",\r\n \"2603:1040:c06:402::c0/122\",\r\n
+ \ \"2603:1040:d04:1::60/123\",\r\n \"2603:1040:d04:400::c0/122\",\r\n
+ \ \"2603:1040:d04:400::280/122\",\r\n \"2603:1040:d04:400::3c0/122\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\",\r\n
+ \ \"2603:1040:1104::520/123\",\r\n \"2603:1040:1104:400::c0/122\",\r\n
+ \ \"2603:1050:6:402::c0/122\",\r\n \"2603:1050:6:802::c0/122\",\r\n
+ \ \"2603:1050:6:c02::c0/122\",\r\n \"2603:1050:403:400::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.8/32\",\r\n \"20.36.106.0/26\",\r\n \"20.37.228.32/27\",\r\n
+ \ \"2603:1010:304:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral2\",\r\n \"id\":
+ \"AzureCosmosDB.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.36.75.163/32\",\r\n
+ \ \"20.36.114.0/28\",\r\n \"20.36.123.96/27\",\r\n \"2603:1010:404:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.136/29\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.75.134.84/32\",\r\n \"20.53.41.0/27\",\r\n \"40.79.163.72/29\",\r\n
+ \ \"40.79.163.192/26\",\r\n \"40.79.170.48/28\",\r\n \"40.126.244.209/32\",\r\n
+ \ \"52.156.170.104/32\",\r\n \"104.210.89.99/32\",\r\n \"2603:1010:6:402::c0/122\",\r\n
+ \ \"2603:1010:6:802::c0/122\",\r\n \"2603:1010:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.100.183/32\",\r\n \"13.77.50.0/28\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"104.46.177.64/27\",\r\n \"191.239.179.124/32\",\r\n
+ \ \"2603:1010:101:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.BrazilSouth\",\r\n \"id\": \"AzureCosmosDB.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.204.128/27\",\r\n
+ \ \"191.234.138.160/27\",\r\n \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n
+ \ \"191.234.179.157/32\",\r\n \"2603:1050:6:402::c0/122\",\r\n
+ \ \"2603:1050:6:802::c0/122\",\r\n \"2603:1050:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.0/28\",\r\n \"13.88.253.180/32\",\r\n
+ \ \"20.38.146.0/26\",\r\n \"20.48.192.32/27\",\r\n \"52.233.41.60/32\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.0/28\",\r\n \"40.86.229.245/32\",\r\n
+ \ \"40.89.22.224/27\",\r\n \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n
+ \ \"2603:1030:1005:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.CentralIndia\",\r\n \"id\":
+ \"AzureCosmosDB.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.192.98.0/26\",\r\n
+ \ \"40.80.50.0/26\",\r\n \"52.140.110.64/27\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.41.245/32\",\r\n \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n
+ \ \"13.89.224.229/32\",\r\n \"20.40.207.160/27\",\r\n \"20.44.10.0/26\",\r\n
+ \ \"40.77.63.179/32\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.173.148.217/32\",\r\n
+ \ \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n \"52.176.0.136/32\",\r\n
+ \ \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n \"52.176.155.127/32\",\r\n
+ \ \"52.182.138.0/25\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.96/27\",\r\n \"40.78.203.32/27\",\r\n
+ \ \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n \"52.180.177.137/32\",\r\n
+ \ \"168.61.142.128/26\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastAsia\",\r\n \"id\": \"AzureCosmosDB.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.0/26\",\r\n \"20.187.196.0/27\",\r\n \"23.102.239.134/32\",\r\n
+ \ \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1040:207:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastUS\",\r\n \"id\": \"AzureCosmosDB.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.53.191/32\",\r\n \"13.90.199.155/32\",\r\n
+ \ \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n \"40.71.203.37/32\",\r\n
+ \ \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.85.178.211/32\",\r\n \"52.146.79.160/27\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.170.204.83/32\",\r\n \"52.186.69.224/32\",\r\n
+ \ \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n \"52.226.21.178/32\",\r\n
+ \ \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.68.28.135/32\",\r\n
+ \ \"20.49.102.64/27\",\r\n \"40.70.0.140/32\",\r\n \"40.70.220.202/32\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"52.167.107.128/26\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n \"52.179.200.0/25\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"104.208.231.0/25\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.64/27\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n \"52.138.92.0/26\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.FranceCentral\",\r\n \"id\":
+ \"AzureCosmosDB.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.43.46.0/27\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"52.143.136.41/32\",\r\n \"2603:1020:805:402::c0/122\",\r\n
+ \ \"2603:1020:805:802::c0/122\",\r\n \"2603:1020:805:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.FranceSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.0/28\",\r\n \"51.105.92.192/27\",\r\n
+ \ \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n \"52.136.136.70/32\",\r\n
+ \ \"2603:1020:905:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.GermanyNorth\",\r\n \"id\":
+ \"AzureCosmosDB.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.116.50.224/27\",\r\n
+ \ \"51.116.58.64/26\",\r\n \"2603:1020:d04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.146.224/27\",\r\n \"51.116.154.128/26\",\r\n
+ \ \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n \"2603:1020:c04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:802::c0/122\",\r\n \"2603:1020:c04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"40.79.186.16/28\",\r\n \"40.79.194.128/26\",\r\n \"40.115.241.37/32\",\r\n
+ \ \"104.41.177.93/32\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"2603:1040:606:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.KoreaCentral\",\r\n \"id\":
+ \"AzureCosmosDB.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.44.26.0/26\",\r\n \"20.194.66.64/26\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.KoreaSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.173.0/27\",\r\n \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n
+ \ \"52.231.207.31/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCosmosDB.NorthCentralUS\",\r\n \"id\": \"AzureCosmosDB.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.128/27\",\r\n \"23.96.180.213/32\",\r\n
+ \ \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n \"52.162.106.0/26\",\r\n
+ \ \"52.162.252.26/32\",\r\n \"65.52.210.9/32\",\r\n \"157.55.170.133/32\",\r\n
+ \ \"2603:1030:608:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.NorthEurope\",\r\n \"id\": \"AzureCosmosDB.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.0/25\",\r\n \"13.74.106.0/25\",\r\n \"13.79.34.236/32\",\r\n
+ \ \"40.113.90.91/32\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.146.131.0/27\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n \"2603:1020:5:402::c0/122\",\r\n
+ \ \"2603:1020:5:802::c0/122\",\r\n \"2603:1020:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.128/27\",\r\n
+ \ \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n \"51.120.210.0/26\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.64/26\",\r\n
+ \ \"51.120.228.160/27\",\r\n \"2603:1020:f04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.0/26\",\r\n \"102.133.154.64/26\",\r\n
+ \ \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n
+ \ \"2603:1000:4:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SouthCentralUS\",\r\n \"id\":
+ \"AzureCosmosDB.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.73.254.224/27\",\r\n
+ \ \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n \"13.85.16.188/32\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.49.90.64/26\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n
+ \ \"104.214.26.177/32\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.8.0/26\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"40.78.236.192/26\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"40.78.194.0/28\",\r\n \"52.172.55.127/32\",\r\n
+ \ \"104.211.227.84/32\",\r\n \"2603:1040:c06:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.52.224/27\",\r\n \"51.107.58.64/26\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SwitzerlandWest\",\r\n \"id\":
+ \"AzureCosmosDB.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.107.148.32/27\",\r\n
+ \ \"51.107.154.64/26\",\r\n \"2603:1020:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UAECentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"2603:1040:b04:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.UAENorth\",\r\n \"id\": \"AzureCosmosDB.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.128/27\",\r\n \"40.120.74.64/26\",\r\n
+ \ \"65.52.251.128/26\",\r\n \"2603:1040:904:402::c0/122\",\r\n
+ \ \"2603:1040:904:802::c0/122\",\r\n \"2603:1040:904:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.143.189.37/32\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.137.166.128/27\",\r\n
+ \ \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n \"51.141.25.77/32\",\r\n
+ \ \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n \"2603:1020:605:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestCentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.0/26\",\r\n \"13.78.188.25/32\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"2603:1030:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestEurope\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.66.0/25\",\r\n \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n
+ \ \"13.81.51.99/32\",\r\n \"13.94.201.5/32\",\r\n \"13.95.234.68/32\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"40.68.44.85/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n \"52.174.253.239/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.232.59.220/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.236.189.0/26\",\r\n \"104.45.16.183/32\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.136.52.64/27\",\r\n \"104.211.146.0/28\",\r\n
+ \ \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"2603:1040:806:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n
+ \ \"13.64.113.68/32\",\r\n \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"20.49.126.160/27\",\r\n
+ \ \"40.83.137.191/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"2603:1030:a07:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.0/26\",\r\n
+ \ \"20.36.26.132/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.158.234.203/32\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"AzureDatabricks\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDatabricks\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.105.50/32\",\r\n \"13.70.107.141/32\",\r\n
+ \ \"13.71.184.74/32\",\r\n \"13.71.187.166/32\",\r\n \"13.75.164.249/32\",\r\n
+ \ \"13.75.218.172/32\",\r\n \"13.78.18.152/32\",\r\n \"13.78.19.235/32\",\r\n
+ \ \"13.86.58.215/32\",\r\n \"13.88.249.244/32\",\r\n \"20.36.120.68/30\",\r\n
+ \ \"20.37.64.68/30\",\r\n \"20.37.156.208/28\",\r\n \"20.37.195.16/29\",\r\n
+ \ \"20.37.224.68/30\",\r\n \"20.38.84.80/28\",\r\n \"20.38.136.120/29\",\r\n
+ \ \"20.39.8.68/30\",\r\n \"20.41.4.112/28\",\r\n \"20.41.65.136/29\",\r\n
+ \ \"20.41.192.68/30\",\r\n \"20.42.4.208/28\",\r\n \"20.42.129.160/28\",\r\n
+ \ \"20.42.224.68/30\",\r\n \"20.43.41.152/29\",\r\n \"20.43.65.144/29\",\r\n
+ \ \"20.43.130.96/28\",\r\n \"20.45.112.68/30\",\r\n \"20.45.192.68/30\",\r\n
+ \ \"20.46.12.200/29\",\r\n \"20.46.121.76/32\",\r\n \"20.72.16.32/29\",\r\n
+ \ \"20.150.160.104/30\",\r\n \"20.150.160.208/29\",\r\n \"20.186.83.56/32\",\r\n
+ \ \"20.189.106.192/28\",\r\n \"20.192.160.32/29\",\r\n \"20.192.225.24/29\",\r\n
+ \ \"20.194.4.102/32\",\r\n \"23.97.106.142/32\",\r\n \"23.97.201.41/32\",\r\n
+ \ \"23.100.0.135/32\",\r\n \"23.100.226.13/32\",\r\n \"23.101.147.147/32\",\r\n
+ \ \"23.101.152.95/32\",\r\n \"40.67.48.68/30\",\r\n \"40.70.58.221/32\",\r\n
+ \ \"40.74.30.80/28\",\r\n \"40.80.56.68/30\",\r\n \"40.80.168.68/30\",\r\n
+ \ \"40.80.188.0/28\",\r\n \"40.82.248.112/28\",\r\n \"40.83.176.199/32\",\r\n
+ \ \"40.83.178.242/32\",\r\n \"40.85.223.25/32\",\r\n \"40.86.167.110/32\",\r\n
+ \ \"40.89.16.68/30\",\r\n \"40.89.168.225/32\",\r\n \"40.89.170.184/32\",\r\n
+ \ \"40.89.171.101/32\",\r\n \"40.118.174.12/32\",\r\n \"40.119.9.208/28\",\r\n
+ \ \"40.123.212.253/32\",\r\n \"40.123.218.63/32\",\r\n \"40.123.219.125/32\",\r\n
+ \ \"40.123.225.135/32\",\r\n \"40.127.5.82/32\",\r\n \"40.127.5.124/32\",\r\n
+ \ \"40.127.147.196/32\",\r\n \"51.12.41.16/30\",\r\n \"51.12.47.16/29\",\r\n
+ \ \"51.12.193.16/30\",\r\n \"51.12.198.200/29\",\r\n \"51.103.18.111/32\",\r\n
+ \ \"51.104.25.136/30\",\r\n \"51.105.80.68/30\",\r\n \"51.105.88.68/30\",\r\n
+ \ \"51.107.48.120/30\",\r\n \"51.107.144.68/30\",\r\n \"51.120.40.120/30\",\r\n
+ \ \"51.120.224.68/30\",\r\n \"51.120.234.176/29\",\r\n \"51.137.160.120/29\",\r\n
+ \ \"51.138.96.158/32\",\r\n \"51.140.200.46/32\",\r\n \"51.140.203.27/32\",\r\n
+ \ \"51.140.204.4/32\",\r\n \"51.141.103.193/32\",\r\n \"51.143.192.68/30\",\r\n
+ \ \"52.136.48.68/30\",\r\n \"52.140.104.120/29\",\r\n \"52.141.6.71/32\",\r\n
+ \ \"52.141.6.181/32\",\r\n \"52.141.22.164/32\",\r\n \"52.146.50.16/32\",\r\n
+ \ \"52.150.136.68/30\",\r\n \"52.172.133.58/32\",\r\n \"52.187.0.85/32\",\r\n
+ \ \"52.187.3.203/32\",\r\n \"52.187.145.107/32\",\r\n \"52.228.81.136/29\",\r\n
+ \ \"52.230.27.216/32\",\r\n \"52.232.19.246/32\",\r\n \"52.246.160.72/32\",\r\n
+ \ \"52.247.0.200/32\",\r\n \"102.37.41.3/32\",\r\n \"102.133.56.68/30\",\r\n
+ \ \"102.133.216.96/29\",\r\n \"102.133.224.24/32\",\r\n \"104.41.54.118/32\",\r\n
+ \ \"104.45.7.191/32\",\r\n \"104.211.89.81/32\",\r\n \"104.211.101.14/32\",\r\n
+ \ \"104.211.103.82/32\",\r\n \"191.232.53.223/32\",\r\n \"191.233.8.32/29\",\r\n
+ \ \"191.234.160.82/32\",\r\n \"191.235.225.144/29\",\r\n
+ \ \"2603:1000:4::160/123\",\r\n \"2603:1000:104:1::160/123\",\r\n
+ \ \"2603:1010:6:1::160/123\",\r\n \"2603:1010:101::160/123\",\r\n
+ \ \"2603:1010:304::160/123\",\r\n \"2603:1010:404::160/123\",\r\n
+ \ \"2603:1020:5:1::160/123\",\r\n \"2603:1020:206:1::160/123\",\r\n
+ \ \"2603:1020:305::160/123\",\r\n \"2603:1020:405::160/123\",\r\n
+ \ \"2603:1020:605::160/123\",\r\n \"2603:1020:705:1::160/123\",\r\n
+ \ \"2603:1020:805:1::160/123\",\r\n \"2603:1020:905::160/123\",\r\n
+ \ \"2603:1020:a04:1::160/123\",\r\n \"2603:1020:b04::160/123\",\r\n
+ \ \"2603:1020:c04:1::160/123\",\r\n \"2603:1020:d04::160/123\",\r\n
+ \ \"2603:1020:e04:1::160/123\",\r\n \"2603:1020:f04::160/123\",\r\n
+ \ \"2603:1020:1004::160/123\",\r\n \"2603:1020:1104::160/123\",\r\n
+ \ \"2603:1030:f:1::160/123\",\r\n \"2603:1030:10:1::160/123\",\r\n
+ \ \"2603:1030:104:1::160/123\",\r\n \"2603:1030:107::160/123\",\r\n
+ \ \"2603:1030:210:1::160/123\",\r\n \"2603:1030:40b:1::160/123\",\r\n
+ \ \"2603:1030:40c:1::160/123\",\r\n \"2603:1030:504:1::160/123\",\r\n
+ \ \"2603:1030:608::160/123\",\r\n \"2603:1030:807:1::160/123\",\r\n
+ \ \"2603:1030:a07::160/123\",\r\n \"2603:1030:b04::160/123\",\r\n
+ \ \"2603:1030:c06:1::160/123\",\r\n \"2603:1030:f05:1::160/123\",\r\n
+ \ \"2603:1030:1005::160/123\",\r\n \"2603:1040:5:1::160/123\",\r\n
+ \ \"2603:1040:207::160/123\",\r\n \"2603:1040:407:1::160/123\",\r\n
+ \ \"2603:1040:606::160/123\",\r\n \"2603:1040:806::160/123\",\r\n
+ \ \"2603:1040:904:1::160/123\",\r\n \"2603:1040:a06:1::160/123\",\r\n
+ \ \"2603:1040:b04::160/123\",\r\n \"2603:1040:c06::160/123\",\r\n
+ \ \"2603:1040:d04::160/123\",\r\n \"2603:1040:f05:1::160/123\",\r\n
+ \ \"2603:1040:1104::160/123\",\r\n \"2603:1050:6:1::160/123\",\r\n
+ \ \"2603:1050:403::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement\",\r\n \"id\":
+ \"AzureDataExplorerManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.66.141.160/28\",\r\n
+ \ \"13.69.106.240/28\",\r\n \"13.69.229.176/28\",\r\n \"13.70.73.112/28\",\r\n
+ \ \"13.71.173.64/28\",\r\n \"13.71.196.64/28\",\r\n \"13.73.240.96/28\",\r\n
+ \ \"13.75.39.0/28\",\r\n \"13.77.52.240/28\",\r\n \"13.86.36.42/32\",\r\n
+ \ \"13.86.219.64/28\",\r\n \"13.87.57.224/28\",\r\n \"13.87.123.224/28\",\r\n
+ \ \"13.89.174.80/28\",\r\n \"20.36.242.104/32\",\r\n \"20.37.24.1/32\",\r\n
+ \ \"20.39.97.38/32\",\r\n \"20.39.99.177/32\",\r\n \"20.40.114.21/32\",\r\n
+ \ \"20.40.161.39/32\",\r\n \"20.43.89.90/32\",\r\n \"20.43.120.96/28\",\r\n
+ \ \"20.44.16.96/28\",\r\n \"20.44.27.96/28\",\r\n \"20.45.3.60/32\",\r\n
+ \ \"20.46.13.240/28\",\r\n \"20.46.146.7/32\",\r\n \"20.72.27.128/28\",\r\n
+ \ \"20.150.171.192/28\",\r\n \"20.150.245.112/28\",\r\n \"20.185.100.27/32\",\r\n
+ \ \"20.189.74.103/32\",\r\n \"20.192.235.128/28\",\r\n \"20.193.203.96/28\",\r\n
+ \ \"20.194.75.224/28\",\r\n \"23.98.82.240/28\",\r\n \"40.66.57.57/32\",\r\n
+ \ \"40.66.57.91/32\",\r\n \"40.67.188.68/32\",\r\n \"40.69.107.240/28\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"40.74.101.208/28\",\r\n \"40.74.147.80/28\",\r\n
+ \ \"40.78.195.240/28\",\r\n \"40.78.203.176/28\",\r\n \"40.79.131.224/28\",\r\n
+ \ \"40.79.179.208/28\",\r\n \"40.79.187.16/28\",\r\n \"40.80.234.9/32\",\r\n
+ \ \"40.80.250.168/32\",\r\n \"40.80.255.12/32\",\r\n \"40.81.28.50/32\",\r\n
+ \ \"40.81.43.47/32\",\r\n \"40.81.56.122/32\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"40.81.88.112/32\",\r\n \"40.81.89.242/32\",\r\n \"40.81.122.39/32\",\r\n
+ \ \"40.81.154.254/32\",\r\n \"40.81.184.86/32\",\r\n \"40.81.220.38/32\",\r\n
+ \ \"40.81.248.53/32\",\r\n \"40.81.249.251/32\",\r\n \"40.82.154.174/32\",\r\n
+ \ \"40.82.156.149/32\",\r\n \"40.82.188.208/32\",\r\n \"40.82.217.84/32\",\r\n
+ \ \"40.82.236.24/32\",\r\n \"40.89.56.69/32\",\r\n \"40.90.219.23/32\",\r\n
+ \ \"40.91.74.95/32\",\r\n \"40.119.3.195/32\",\r\n \"40.119.203.252/32\",\r\n
+ \ \"51.12.20.48/28\",\r\n \"51.12.28.48/28\",\r\n \"51.12.99.192/28\",\r\n
+ \ \"51.12.203.192/28\",\r\n \"51.104.8.112/28\",\r\n \"51.107.59.160/28\",\r\n
+ \ \"51.107.98.201/32\",\r\n \"51.107.155.160/28\",\r\n \"51.116.59.160/28\",\r\n
+ \ \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n \"51.120.99.80/28\",\r\n
+ \ \"51.120.219.192/28\",\r\n \"51.120.235.224/28\",\r\n \"51.140.212.0/28\",\r\n
+ \ \"51.145.176.215/32\",\r\n \"52.142.91.221/32\",\r\n \"52.159.55.120/32\",\r\n
+ \ \"52.162.110.176/28\",\r\n \"52.224.146.56/32\",\r\n \"52.231.148.16/28\",\r\n
+ \ \"52.232.230.201/32\",\r\n \"52.253.159.186/32\",\r\n \"52.253.225.186/32\",\r\n
+ \ \"52.253.226.110/32\",\r\n \"102.133.0.192/32\",\r\n \"102.133.28.112/28\",\r\n
+ \ \"102.133.130.206/32\",\r\n \"102.133.156.16/28\",\r\n
+ \ \"104.211.147.224/28\",\r\n \"191.233.25.183/32\",\r\n
+ \ \"191.233.50.208/28\",\r\n \"191.233.205.0/28\",\r\n \"2603:1000:4:1::380/121\",\r\n
+ \ \"2603:1000:4:402::150/124\",\r\n \"2603:1000:104:2::100/121\",\r\n
+ \ \"2603:1000:104:402::150/124\",\r\n \"2603:1010:6::600/121\",\r\n
+ \ \"2603:1010:6:402::150/124\",\r\n \"2603:1010:101:1::380/121\",\r\n
+ \ \"2603:1010:101:402::150/124\",\r\n \"2603:1010:304:1::380/121\",\r\n
+ \ \"2603:1010:304:402::150/124\",\r\n \"2603:1010:404:1::380/121\",\r\n
+ \ \"2603:1010:404:402::150/124\",\r\n \"2603:1020:5::600/121\",\r\n
+ \ \"2603:1020:5:402::150/124\",\r\n \"2603:1020:206::600/121\",\r\n
+ \ \"2603:1020:206:402::150/124\",\r\n \"2603:1020:305:402::150/124\",\r\n
+ \ \"2603:1020:405:402::150/124\",\r\n \"2603:1020:605:1::380/121\",\r\n
+ \ \"2603:1020:605:402::150/124\",\r\n \"2603:1020:705::600/121\",\r\n
+ \ \"2603:1020:705:402::150/124\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\",\r\n \"2603:1020:905:1::380/121\",\r\n
+ \ \"2603:1020:905:402::150/124\",\r\n \"2603:1020:a04::600/121\",\r\n
+ \ \"2603:1020:a04:402::150/124\",\r\n \"2603:1020:b04:1::380/121\",\r\n
+ \ \"2603:1020:b04:402::150/124\",\r\n \"2603:1020:c04::600/121\",\r\n
+ \ \"2603:1020:c04:402::150/124\",\r\n \"2603:1020:d04:1::380/121\",\r\n
+ \ \"2603:1020:d04:402::150/124\",\r\n \"2603:1020:e04::600/121\",\r\n
+ \ \"2603:1020:e04:402::150/124\",\r\n \"2603:1020:f04:1::380/121\",\r\n
+ \ \"2603:1020:f04:402::150/124\",\r\n \"2603:1020:1004:2::100/121\",\r\n
+ \ \"2603:1020:1004:800::d0/124\",\r\n \"2603:1020:1104:1::600/121\",\r\n
+ \ \"2603:1020:1104:400::150/124\",\r\n \"2603:1030:f:2::380/121\",\r\n
+ \ \"2603:1030:f:400::950/124\",\r\n \"2603:1030:10::600/121\",\r\n
+ \ \"2603:1030:10:402::150/124\",\r\n \"2603:1030:104::600/121\",\r\n
+ \ \"2603:1030:104:402::150/124\",\r\n \"2603:1030:107:1::300/121\",\r\n
+ \ \"2603:1030:107:400::e0/124\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\",\r\n \"2603:1030:40b:2::400/121\",\r\n
+ \ \"2603:1030:40b:400::950/124\",\r\n \"2603:1030:40c::600/121\",\r\n
+ \ \"2603:1030:40c:402::150/124\",\r\n \"2603:1030:504:2::180/121\",\r\n
+ \ \"2603:1030:504:802::d0/124\",\r\n \"2603:1030:608:1::380/121\",\r\n
+ \ \"2603:1030:608:402::150/124\",\r\n \"2603:1030:807::600/121\",\r\n
+ \ \"2603:1030:807:402::150/124\",\r\n \"2603:1030:a07:1::380/121\",\r\n
+ \ \"2603:1030:a07:402::8d0/124\",\r\n \"2603:1030:b04:1::380/121\",\r\n
+ \ \"2603:1030:b04:402::150/124\",\r\n \"2603:1030:c06:2::400/121\",\r\n
+ \ \"2603:1030:c06:400::950/124\",\r\n \"2603:1030:f05::600/121\",\r\n
+ \ \"2603:1030:f05:402::150/124\",\r\n \"2603:1030:1005:1::380/121\",\r\n
+ \ \"2603:1030:1005:402::150/124\",\r\n \"2603:1040:5::700/121\",\r\n
+ \ \"2603:1040:5:402::150/124\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\",\r\n \"2603:1040:407::600/121\",\r\n
+ \ \"2603:1040:407:402::150/124\",\r\n \"2603:1040:606:1::380/121\",\r\n
+ \ \"2603:1040:606:402::150/124\",\r\n \"2603:1040:806:1::380/121\",\r\n
+ \ \"2603:1040:806:402::150/124\",\r\n \"2603:1040:904::600/121\",\r\n
+ \ \"2603:1040:904:402::150/124\",\r\n \"2603:1040:a06::700/121\",\r\n
+ \ \"2603:1040:a06:402::150/124\",\r\n \"2603:1040:b04:1::380/121\",\r\n
+ \ \"2603:1040:b04:402::150/124\",\r\n \"2603:1040:c06:1::380/121\",\r\n
+ \ \"2603:1040:c06:402::150/124\",\r\n \"2603:1040:d04:2::280/121\",\r\n
+ \ \"2603:1040:d04:800::d0/124\",\r\n \"2603:1040:e05::180/121\",\r\n
+ \ \"2603:1040:f05::600/121\",\r\n \"2603:1040:f05:402::150/124\",\r\n
+ \ \"2603:1040:1104:1::680/121\",\r\n \"2603:1040:1104:400::150/124\",\r\n
+ \ \"2603:1050:6::600/121\",\r\n \"2603:1050:6:402::150/124\",\r\n
+ \ \"2603:1050:403:1::400/121\",\r\n \"2603:1050:403:400::2b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.EastAsia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.0/28\",\r\n \"20.189.74.103/32\",\r\n
+ \ \"40.81.28.50/32\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.EastUS\",\r\n \"id\":
+ \"AzureDataExplorerManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureDataExplorerManagement\",\r\n \"addressPrefixes\": [\r\n \"20.185.100.27/32\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"52.224.146.56/32\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.FranceCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.66.57.57/32\",\r\n \"40.66.57.91/32\",\r\n
+ \ \"40.79.131.224/28\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n
+ \ \"2603:1020:c04::600/121\",\r\n \"2603:1020:c04:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.SouthIndia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.195.240/28\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"2603:1040:c06:1::380/121\",\r\n \"2603:1040:c06:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.WestUS\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.WestUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.86.219.64/28\",\r\n
+ \ \"2603:1030:a07:1::380/121\",\r\n \"2603:1030:a07:402::8d0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake\",\r\n
+ \ \"id\": \"AzureDataLake\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\",\r\n
+ \ \"40.90.141.128/29\",\r\n \"40.90.141.167/32\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.145.192/26\",\r\n \"65.52.108.31/32\",\r\n \"65.52.108.38/32\",\r\n
+ \ \"104.44.88.66/31\",\r\n \"104.44.88.106/31\",\r\n \"104.44.88.112/31\",\r\n
+ \ \"104.44.88.176/31\",\r\n \"104.44.88.184/29\",\r\n \"104.44.89.39/32\",\r\n
+ \ \"104.44.89.42/32\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.194/31\",\r\n
+ \ \"104.44.91.64/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.93.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureDataLake.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.WestEurope\",\r\n
+ \ \"id\": \"AzureDataLake.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.141.167/32\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"104.44.90.194/31\",\r\n \"104.44.93.192/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces\",\r\n \"id\":
+ \"AzureDevSpaces\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.71.144/28\",\r\n \"13.70.78.176/28\",\r\n
+ \ \"13.71.175.112/28\",\r\n \"13.71.199.96/28\",\r\n \"13.73.244.128/28\",\r\n
+ \ \"13.74.111.128/28\",\r\n \"13.78.111.144/28\",\r\n \"13.86.221.224/28\",\r\n
+ \ \"20.37.157.64/28\",\r\n \"20.37.195.80/28\",\r\n \"20.38.85.128/28\",\r\n
+ \ \"20.39.11.64/28\",\r\n \"20.41.5.128/28\",\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\",\r\n \"20.42.131.192/27\",\r\n
+ \ \"20.42.230.64/28\",\r\n \"20.43.65.208/28\",\r\n \"20.43.130.240/28\",\r\n
+ \ \"20.189.108.32/28\",\r\n \"40.69.110.176/28\",\r\n \"40.70.151.80/28\",\r\n
+ \ \"40.74.30.144/28\",\r\n \"40.75.35.224/28\",\r\n \"40.78.239.0/28\",\r\n
+ \ \"40.78.251.224/27\",\r\n \"40.82.253.112/28\",\r\n \"40.89.17.192/28\",\r\n
+ \ \"40.119.9.240/28\",\r\n \"51.104.25.208/28\",\r\n \"51.105.77.64/28\",\r\n
+ \ \"52.150.139.144/28\",\r\n \"52.182.141.128/28\",\r\n \"52.228.81.224/28\",\r\n
+ \ \"104.214.161.48/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureDevSpaces.EastUS\",\r\n \"id\": \"AzureDevSpaces.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureDevSpaces\",\r\n \"addressPrefixes\": [\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.128/28\",\r\n \"40.70.151.80/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.11.64/28\",\r\n \"40.75.35.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.JapanEast\",\r\n
+ \ \"id\": \"AzureDevSpaces.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.78.111.144/28\",\r\n \"20.43.65.208/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.NorthEurope\",\r\n
+ \ \"id\": \"AzureDevSpaces.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.74.111.128/28\",\r\n \"20.38.85.128/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureDevSpaces.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.130.240/28\",\r\n \"40.78.239.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.224/28\",\r\n \"40.82.253.112/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.131.192/27\",\r\n \"40.78.251.224/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDigitalTwins\",\r\n
+ \ \"id\": \"AzureDigitalTwins\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDigitalTwins\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.125.120/29\",\r\n \"20.36.125.192/27\",\r\n
+ \ \"20.37.70.112/29\",\r\n \"20.37.70.192/27\",\r\n \"20.38.142.112/29\",\r\n
+ \ \"20.38.142.192/27\",\r\n \"20.39.2.134/32\",\r\n \"20.39.2.208/32\",\r\n
+ \ \"20.39.2.237/32\",\r\n \"20.39.3.11/32\",\r\n \"20.39.3.14/32\",\r\n
+ \ \"20.39.3.17/32\",\r\n \"20.39.3.38/32\",\r\n \"20.39.18.169/32\",\r\n
+ \ \"20.40.225.48/29\",\r\n \"20.40.225.128/27\",\r\n \"20.43.47.72/29\",\r\n
+ \ \"20.43.47.96/27\",\r\n \"20.45.116.80/29\",\r\n \"20.45.116.96/27\",\r\n
+ \ \"20.46.10.56/29\",\r\n \"20.46.10.96/27\",\r\n \"20.48.193.128/27\",\r\n
+ \ \"20.48.193.160/29\",\r\n \"20.49.103.112/29\",\r\n \"20.49.103.192/27\",\r\n
+ \ \"20.49.118.8/29\",\r\n \"20.49.118.32/27\",\r\n \"20.49.248.209/32\",\r\n
+ \ \"20.49.249.56/32\",\r\n \"20.49.249.78/32\",\r\n \"20.49.249.101/32\",\r\n
+ \ \"20.49.249.106/32\",\r\n \"20.49.249.156/32\",\r\n \"20.49.249.189/32\",\r\n
+ \ \"20.49.249.208/32\",\r\n \"20.49.249.236/32\",\r\n \"20.49.250.2/32\",\r\n
+ \ \"20.50.211.192/32\",\r\n \"20.50.212.99/32\",\r\n \"20.50.212.103/32\",\r\n
+ \ \"20.50.212.140/32\",\r\n \"20.50.213.6/32\",\r\n \"20.50.213.76/32\",\r\n
+ \ \"20.50.213.88/32\",\r\n \"20.50.213.93/32\",\r\n \"20.50.213.94/32\",\r\n
+ \ \"20.50.213.120/32\",\r\n \"20.51.8.96/27\",\r\n \"20.51.8.192/29\",\r\n
+ \ \"20.51.16.176/29\",\r\n \"20.51.17.0/27\",\r\n \"20.51.73.8/32\",\r\n
+ \ \"20.51.73.11/32\",\r\n \"20.51.73.22/31\",\r\n \"20.51.73.25/32\",\r\n
+ \ \"20.51.73.26/31\",\r\n \"20.51.73.36/32\",\r\n \"20.51.73.39/32\",\r\n
+ \ \"20.51.73.44/32\",\r\n \"20.53.44.88/29\",\r\n \"20.53.44.96/27\",\r\n
+ \ \"20.53.48.0/27\",\r\n \"20.53.48.32/29\",\r\n \"20.53.114.26/32\",\r\n
+ \ \"20.53.114.71/32\",\r\n \"20.53.114.84/32\",\r\n \"20.53.114.118/32\",\r\n
+ \ \"20.58.66.0/27\",\r\n \"20.58.66.32/29\",\r\n \"20.61.98.144/29\",\r\n
+ \ \"20.61.99.0/27\",\r\n \"20.62.129.32/27\",\r\n \"20.62.129.128/29\",\r\n
+ \ \"20.65.130.72/29\",\r\n \"20.65.130.96/27\",\r\n \"20.66.2.16/29\",\r\n
+ \ \"20.66.2.128/27\",\r\n \"20.72.20.0/27\",\r\n \"20.150.166.176/29\",\r\n
+ \ \"20.150.167.128/27\",\r\n \"20.185.75.6/32\",\r\n \"20.185.75.209/32\",\r\n
+ \ \"20.187.197.16/29\",\r\n \"20.187.197.128/27\",\r\n \"20.189.224.224/27\",\r\n
+ \ \"20.189.225.64/29\",\r\n \"20.191.161.96/27\",\r\n \"20.191.161.192/29\",\r\n
+ \ \"20.192.166.176/29\",\r\n \"20.192.167.128/27\",\r\n \"20.192.231.192/27\",\r\n
+ \ \"20.192.231.224/29\",\r\n \"20.193.3.89/32\",\r\n \"20.193.3.243/32\",\r\n
+ \ \"20.193.7.70/32\",\r\n \"20.193.7.132/32\",\r\n \"20.193.59.172/32\",\r\n
+ \ \"20.193.59.253/32\",\r\n \"20.194.72.136/29\",\r\n \"20.194.72.160/27\",\r\n
+ \ \"23.98.108.184/29\",\r\n \"23.98.109.0/27\",\r\n \"40.67.52.104/29\",\r\n
+ \ \"40.67.52.192/27\",\r\n \"40.80.173.208/29\",\r\n \"40.80.173.224/27\",\r\n
+ \ \"40.119.241.130/32\",\r\n \"40.119.241.148/32\",\r\n \"40.119.241.154/32\",\r\n
+ \ \"40.119.242.73/32\",\r\n \"40.119.242.79/32\",\r\n \"40.119.242.168/32\",\r\n
+ \ \"40.119.242.232/32\",\r\n \"40.119.243.20/32\",\r\n \"40.119.243.119/32\",\r\n
+ \ \"40.119.243.178/32\",\r\n \"40.124.97.243/32\",\r\n \"40.124.98.14/31\",\r\n
+ \ \"40.124.98.23/32\",\r\n \"40.124.98.34/31\",\r\n \"40.124.98.48/32\",\r\n
+ \ \"40.124.98.52/32\",\r\n \"40.124.98.70/32\",\r\n \"40.124.99.100/32\",\r\n
+ \ \"51.12.43.144/29\",\r\n \"51.12.43.160/27\",\r\n \"51.12.194.120/29\",\r\n
+ \ \"51.12.195.192/27\",\r\n \"51.13.136.128/27\",\r\n \"51.13.136.160/29\",\r\n
+ \ \"51.104.141.227/32\",\r\n \"51.107.241.64/27\",\r\n \"51.107.241.96/29\",\r\n
+ \ \"51.107.249.80/29\",\r\n \"51.107.249.96/27\",\r\n \"51.116.51.176/29\",\r\n
+ \ \"51.116.54.0/27\",\r\n \"51.116.148.120/29\",\r\n \"51.116.148.192/27\",\r\n
+ \ \"51.120.232.40/29\",\r\n \"51.120.232.128/27\",\r\n \"51.143.208.208/29\",\r\n
+ \ \"51.143.208.224/27\",\r\n \"52.136.52.248/29\",\r\n \"52.136.53.64/27\",\r\n
+ \ \"52.136.184.80/29\",\r\n \"52.136.184.96/27\",\r\n \"52.139.106.96/27\",\r\n
+ \ \"52.140.111.112/29\",\r\n \"52.140.111.192/27\",\r\n \"52.142.120.18/32\",\r\n
+ \ \"52.142.120.22/32\",\r\n \"52.142.120.57/32\",\r\n \"52.142.120.74/32\",\r\n
+ \ \"52.142.120.90/32\",\r\n \"52.142.120.104/32\",\r\n \"52.142.120.156/32\",\r\n
+ \ \"52.146.132.192/27\",\r\n \"52.146.132.224/29\",\r\n \"52.148.29.27/32\",\r\n
+ \ \"52.149.20.142/32\",\r\n \"52.149.234.152/32\",\r\n \"52.149.238.190/32\",\r\n
+ \ \"52.149.239.34/32\",\r\n \"52.150.156.248/29\",\r\n \"52.150.157.32/27\",\r\n
+ \ \"52.153.153.146/32\",\r\n \"52.153.153.246/32\",\r\n \"52.153.153.255/32\",\r\n
+ \ \"52.153.154.13/32\",\r\n \"52.153.154.40/32\",\r\n \"52.153.154.123/32\",\r\n
+ \ \"52.153.154.158/32\",\r\n \"52.153.154.161/32\",\r\n \"52.156.207.58/32\",\r\n
+ \ \"52.156.207.195/32\",\r\n \"52.161.185.49/32\",\r\n \"52.170.161.49/32\",\r\n
+ \ \"52.170.162.28/32\",\r\n \"52.172.112.168/29\",\r\n \"52.172.113.0/27\",\r\n
+ \ \"52.186.106.218/32\",\r\n \"52.191.16.191/32\",\r\n \"52.191.18.106/32\",\r\n
+ \ \"52.247.76.74/32\",\r\n \"52.247.76.167/32\",\r\n \"52.247.76.187/32\",\r\n
+ \ \"52.247.76.199/32\",\r\n \"52.247.76.216/32\",\r\n \"52.247.76.246/32\",\r\n
+ \ \"52.247.76.252/32\",\r\n \"52.247.77.7/32\",\r\n \"52.247.77.22/32\",\r\n
+ \ \"52.247.77.26/32\",\r\n \"52.250.39.158/32\",\r\n \"52.250.39.236/32\",\r\n
+ \ \"52.250.39.246/32\",\r\n \"52.250.39.250/32\",\r\n \"52.250.72.145/32\",\r\n
+ \ \"52.250.73.36/32\",\r\n \"52.250.73.178/32\",\r\n \"52.250.73.204/32\",\r\n
+ \ \"52.250.74.3/32\",\r\n \"52.253.224.146/32\",\r\n \"52.253.224.154/32\",\r\n
+ \ \"102.37.80.0/27\",\r\n \"102.37.80.32/29\",\r\n \"102.133.221.16/29\",\r\n
+ \ \"102.133.221.32/27\",\r\n \"104.46.178.120/29\",\r\n \"104.46.178.160/27\",\r\n
+ \ \"191.233.15.16/29\",\r\n \"191.233.15.32/27\",\r\n \"191.234.139.168/29\",\r\n
+ \ \"191.234.142.0/27\",\r\n \"2603:1020:e04::700/121\",\r\n
+ \ \"2603:1020:1004:1::540/122\",\r\n \"2603:1020:1004:2::/121\",\r\n
+ \ \"2603:1020:1104:1::380/122\",\r\n \"2603:1020:1104:1::680/121\",\r\n
+ \ \"2603:1030:f:2::500/121\",\r\n \"2603:1030:107::5c0/122\",\r\n
+ \ \"2603:1030:504::560/123\",\r\n \"2603:1030:504:2::/121\",\r\n
+ \ \"2603:1040:d04:1::540/122\",\r\n \"2603:1040:d04:2::80/121\",\r\n
+ \ \"2603:1040:f05::700/121\",\r\n \"2603:1040:1104:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid\",\r\n
+ \ \"id\": \"AzureEventGrid\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.56.240/28\",\r\n \"13.71.57.0/28\",\r\n \"13.73.248.128/25\",\r\n
+ \ \"13.86.56.32/27\",\r\n \"13.86.56.160/27\",\r\n \"13.88.73.16/28\",\r\n
+ \ \"13.88.73.32/27\",\r\n \"13.88.135.208/28\",\r\n \"13.91.193.0/28\",\r\n
+ \ \"20.36.121.0/25\",\r\n \"20.37.55.32/27\",\r\n \"20.37.65.0/25\",\r\n
+ \ \"20.37.82.224/27\",\r\n \"20.37.157.128/25\",\r\n \"20.37.196.0/25\",\r\n
+ \ \"20.37.225.0/25\",\r\n \"20.38.87.0/25\",\r\n \"20.38.137.0/25\",\r\n
+ \ \"20.39.11.128/25\",\r\n \"20.39.20.16/28\",\r\n \"20.39.80.112/28\",\r\n
+ \ \"20.39.80.128/28\",\r\n \"20.39.99.64/28\",\r\n \"20.39.99.240/28\",\r\n
+ \ \"20.40.152.128/27\",\r\n \"20.40.175.48/28\",\r\n \"20.40.175.64/28\",\r\n
+ \ \"20.41.66.0/25\",\r\n \"20.41.136.240/28\",\r\n \"20.41.195.0/25\",\r\n
+ \ \"20.42.7.0/25\",\r\n \"20.42.228.0/25\",\r\n \"20.43.42.128/25\",\r\n
+ \ \"20.43.66.128/25\",\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.39.176/28\",\r\n \"20.44.39.192/28\",\r\n
+ \ \"20.44.168.64/28\",\r\n \"20.44.205.112/28\",\r\n \"20.45.113.0/25\",\r\n
+ \ \"20.45.195.0/25\",\r\n \"20.46.152.112/28\",\r\n \"20.46.152.128/28\",\r\n
+ \ \"20.49.96.0/25\",\r\n \"20.52.90.128/25\",\r\n \"20.72.17.128/25\",\r\n
+ \ \"20.150.164.0/25\",\r\n \"20.189.108.128/25\",\r\n \"20.189.115.80/28\",\r\n
+ \ \"20.189.123.80/28\",\r\n \"20.189.125.32/27\",\r\n \"20.191.59.128/28\",\r\n
+ \ \"20.191.59.176/28\",\r\n \"20.192.164.0/25\",\r\n \"20.192.228.0/25\",\r\n
+ \ \"20.193.34.0/28\",\r\n \"20.193.34.32/28\",\r\n \"40.64.128.0/25\",\r\n
+ \ \"40.67.49.0/25\",\r\n \"40.74.31.128/25\",\r\n \"40.74.106.96/27\",\r\n
+ \ \"40.80.58.0/25\",\r\n \"40.80.170.0/25\",\r\n \"40.80.190.0/25\",\r\n
+ \ \"40.80.236.192/27\",\r\n \"40.81.93.240/28\",\r\n \"40.81.95.128/28\",\r\n
+ \ \"40.82.254.128/25\",\r\n \"40.89.18.0/25\",\r\n \"40.89.240.144/28\",\r\n
+ \ \"40.114.160.176/28\",\r\n \"40.114.160.192/28\",\r\n \"40.114.169.0/28\",\r\n
+ \ \"40.127.155.192/28\",\r\n \"40.127.251.144/28\",\r\n \"51.12.47.128/25\",\r\n
+ \ \"51.12.199.0/25\",\r\n \"51.104.27.128/25\",\r\n \"51.105.81.0/25\",\r\n
+ \ \"51.105.89.0/25\",\r\n \"51.107.4.128/27\",\r\n \"51.107.49.0/25\",\r\n
+ \ \"51.107.99.32/27\",\r\n \"51.107.145.0/25\",\r\n \"51.116.3.32/27\",\r\n
+ \ \"51.116.72.0/25\",\r\n \"51.116.100.208/28\",\r\n \"51.116.100.224/28\",\r\n
+ \ \"51.120.4.0/27\",\r\n \"51.120.41.0/25\",\r\n \"51.120.131.64/27\",\r\n
+ \ \"51.120.225.0/25\",\r\n \"51.132.161.160/28\",\r\n \"51.132.170.64/28\",\r\n
+ \ \"51.137.16.224/28\",\r\n \"51.137.142.32/28\",\r\n \"51.137.162.0/25\",\r\n
+ \ \"51.143.193.0/25\",\r\n \"52.136.49.0/25\",\r\n \"52.139.9.80/28\",\r\n
+ \ \"52.139.11.16/28\",\r\n \"52.139.85.16/28\",\r\n \"52.139.85.32/28\",\r\n
+ \ \"52.140.106.0/25\",\r\n \"52.142.152.144/28\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.149.248.0/28\",\r\n
+ \ \"52.149.248.64/27\",\r\n \"52.149.248.96/28\",\r\n \"52.150.140.0/25\",\r\n
+ \ \"52.154.57.48/28\",\r\n \"52.154.57.80/28\",\r\n \"52.154.68.16/28\",\r\n
+ \ \"52.154.68.32/28\",\r\n \"52.156.103.192/28\",\r\n \"52.159.49.144/28\",\r\n
+ \ \"52.159.51.160/28\",\r\n \"52.159.53.64/28\",\r\n \"52.159.53.112/28\",\r\n
+ \ \"52.160.136.16/28\",\r\n \"52.160.136.32/28\",\r\n \"52.161.186.128/28\",\r\n
+ \ \"52.161.186.208/28\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.170.171.192/28\",\r\n \"52.170.171.240/28\",\r\n
+ \ \"52.177.38.160/27\",\r\n \"52.185.176.112/28\",\r\n \"52.185.212.176/28\",\r\n
+ \ \"52.185.212.192/28\",\r\n \"52.186.36.16/28\",\r\n \"52.228.83.0/25\",\r\n
+ \ \"52.231.112.192/28\",\r\n \"52.231.112.224/28\",\r\n \"52.250.28.176/28\",\r\n
+ \ \"52.250.32.160/28\",\r\n \"52.252.213.192/28\",\r\n \"52.255.80.16/28\",\r\n
+ \ \"52.255.82.160/28\",\r\n \"102.37.162.0/25\",\r\n \"102.133.0.240/28\",\r\n
+ \ \"102.133.1.0/28\",\r\n \"102.133.57.0/25\",\r\n \"102.133.135.16/28\",\r\n
+ \ \"102.133.135.32/28\",\r\n \"191.233.9.128/25\",\r\n \"191.235.126.0/28\",\r\n
+ \ \"191.235.126.144/28\",\r\n \"191.235.227.0/25\",\r\n \"2603:1000:4::380/121\",\r\n
+ \ \"2603:1000:104:1::380/121\",\r\n \"2603:1010:6:1::380/121\",\r\n
+ \ \"2603:1010:101::380/121\",\r\n \"2603:1010:304::380/121\",\r\n
+ \ \"2603:1010:404::380/121\",\r\n \"2603:1020:5:1::380/121\",\r\n
+ \ \"2603:1020:206:1::380/121\",\r\n \"2603:1020:305::380/121\",\r\n
+ \ \"2603:1020:405::380/121\",\r\n \"2603:1020:605::380/121\",\r\n
+ \ \"2603:1020:705:1::380/121\",\r\n \"2603:1020:805:1::380/121\",\r\n
+ \ \"2603:1020:905::380/121\",\r\n \"2603:1020:a04:1::380/121\",\r\n
+ \ \"2603:1020:b04::380/121\",\r\n \"2603:1020:c04:1::380/121\",\r\n
+ \ \"2603:1020:d04::380/121\",\r\n \"2603:1020:e04:1::380/121\",\r\n
+ \ \"2603:1020:f04::380/121\",\r\n \"2603:1020:1004::380/121\",\r\n
+ \ \"2603:1020:1104::280/121\",\r\n \"2603:1030:f:1::380/121\",\r\n
+ \ \"2603:1030:10:1::380/121\",\r\n \"2603:1030:104:1::380/121\",\r\n
+ \ \"2603:1030:107::280/121\",\r\n \"2603:1030:210:1::380/121\",\r\n
+ \ \"2603:1030:40b:1::380/121\",\r\n \"2603:1030:40c:1::380/121\",\r\n
+ \ \"2603:1030:504:1::380/121\",\r\n \"2603:1030:608::380/121\",\r\n
+ \ \"2603:1030:807:1::380/121\",\r\n \"2603:1030:a07::380/121\",\r\n
+ \ \"2603:1030:b04::380/121\",\r\n \"2603:1030:c06:1::380/121\",\r\n
+ \ \"2603:1030:f05:1::380/121\",\r\n \"2603:1030:1005::380/121\",\r\n
+ \ \"2603:1040:5:1::380/121\",\r\n \"2603:1040:207::380/121\",\r\n
+ \ \"2603:1040:407:1::380/121\",\r\n \"2603:1040:606::380/121\",\r\n
+ \ \"2603:1040:806::380/121\",\r\n \"2603:1040:904:1::380/121\",\r\n
+ \ \"2603:1040:a06:1::380/121\",\r\n \"2603:1040:b04::380/121\",\r\n
+ \ \"2603:1040:c06::380/121\",\r\n \"2603:1040:d04::380/121\",\r\n
+ \ \"2603:1040:f05:1::380/121\",\r\n \"2603:1040:1104::280/121\",\r\n
+ \ \"2603:1050:6:1::380/121\",\r\n \"2603:1050:403::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.CanadaCentral\",\r\n
+ \ \"id\": \"AzureEventGrid.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.139.9.80/28\",\r\n \"52.139.11.16/28\",\r\n
+ \ \"52.228.83.0/25\",\r\n \"2603:1030:f05:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.EastUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.96.0/25\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.177.38.160/27\",\r\n \"2603:1030:40c:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureEventGrid.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.205.112/28\",\r\n \"2603:1040:5:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SouthIndia\",\r\n
+ \ \"id\": \"AzureEventGrid.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.195.0/25\",\r\n \"20.44.39.176/28\",\r\n
+ \ \"20.44.39.192/28\",\r\n \"2603:1040:c06::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UAENorth\",\r\n
+ \ \"id\": \"AzureEventGrid.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.137.0/25\",\r\n \"20.46.152.112/28\",\r\n
+ \ \"20.46.152.128/28\",\r\n \"2603:1040:904:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.27.128/25\",\r\n \"51.132.161.160/28\",\r\n
+ \ \"51.132.170.64/28\",\r\n \"2603:1020:705:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth2\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.193.0/25\",\r\n \"2603:1020:405::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.WestUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"40.64.128.0/25\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.156.103.192/28\",\r\n
+ \ \"52.250.28.176/28\",\r\n \"52.250.32.160/28\",\r\n \"2603:1030:c06:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFrontDoor.Backend\",\r\n
+ \ \"id\": \"AzureFrontDoor.Backend\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.16/29\",\r\n \"20.36.120.104/29\",\r\n
+ \ \"20.37.64.104/29\",\r\n \"20.37.156.120/29\",\r\n \"20.37.195.0/29\",\r\n
+ \ \"20.37.224.104/29\",\r\n \"20.38.84.72/29\",\r\n \"20.38.136.104/29\",\r\n
+ \ \"20.39.11.8/29\",\r\n \"20.41.4.88/29\",\r\n \"20.41.64.120/29\",\r\n
+ \ \"20.41.192.104/29\",\r\n \"20.42.4.120/29\",\r\n \"20.42.129.152/29\",\r\n
+ \ \"20.42.224.104/29\",\r\n \"20.43.41.136/29\",\r\n \"20.43.65.128/29\",\r\n
+ \ \"20.43.130.80/29\",\r\n \"20.45.112.104/29\",\r\n \"20.45.192.104/29\",\r\n
+ \ \"20.72.18.248/29\",\r\n \"20.150.160.96/29\",\r\n \"20.189.106.112/29\",\r\n
+ \ \"20.192.161.104/29\",\r\n \"20.192.225.48/29\",\r\n \"40.67.48.104/29\",\r\n
+ \ \"40.74.30.72/29\",\r\n \"40.80.56.104/29\",\r\n \"40.80.168.104/29\",\r\n
+ \ \"40.80.184.120/29\",\r\n \"40.82.248.248/29\",\r\n \"40.89.16.104/29\",\r\n
+ \ \"51.12.41.8/29\",\r\n \"51.12.193.8/29\",\r\n \"51.104.25.128/29\",\r\n
+ \ \"51.105.80.104/29\",\r\n \"51.105.88.104/29\",\r\n \"51.107.48.104/29\",\r\n
+ \ \"51.107.144.104/29\",\r\n \"51.120.40.104/29\",\r\n \"51.120.224.104/29\",\r\n
+ \ \"51.137.160.112/29\",\r\n \"51.143.192.104/29\",\r\n \"52.136.48.104/29\",\r\n
+ \ \"52.140.104.104/29\",\r\n \"52.150.136.120/29\",\r\n \"52.228.80.120/29\",\r\n
+ \ \"102.133.56.88/29\",\r\n \"102.133.216.88/29\",\r\n \"147.243.0.0/16\",\r\n
+ \ \"191.233.9.120/29\",\r\n \"191.235.225.128/29\",\r\n \"2603:1000:4::600/123\",\r\n
+ \ \"2603:1000:104::e0/123\",\r\n \"2603:1000:104::300/123\",\r\n
+ \ \"2603:1000:104:1::5c0/123\",\r\n \"2603:1000:104:1::7e0/123\",\r\n
+ \ \"2603:1010:6:1::5c0/123\",\r\n \"2603:1010:6:1::7e0/123\",\r\n
+ \ \"2603:1010:101::600/123\",\r\n \"2603:1010:304::600/123\",\r\n
+ \ \"2603:1010:404::600/123\",\r\n \"2603:1020:5:1::5c0/123\",\r\n
+ \ \"2603:1020:5:1::7e0/123\",\r\n \"2603:1020:206:1::5c0/123\",\r\n
+ \ \"2603:1020:206:1::7e0/123\",\r\n \"2603:1020:305::600/123\",\r\n
+ \ \"2603:1020:405::600/123\",\r\n \"2603:1020:605::600/123\",\r\n
+ \ \"2603:1020:705:1::5c0/123\",\r\n \"2603:1020:705:1::7e0/123\",\r\n
+ \ \"2603:1020:805:1::5c0/123\",\r\n \"2603:1020:805:1::7e0/123\",\r\n
+ \ \"2603:1020:905::600/123\",\r\n \"2603:1020:a04:1::5c0/123\",\r\n
+ \ \"2603:1020:a04:1::7e0/123\",\r\n \"2603:1020:b04::600/123\",\r\n
+ \ \"2603:1020:c04:1::5c0/123\",\r\n \"2603:1020:c04:1::7e0/123\",\r\n
+ \ \"2603:1020:d04::600/123\",\r\n \"2603:1020:e04:1::5c0/123\",\r\n
+ \ \"2603:1020:e04:1::7e0/123\",\r\n \"2603:1020:f04::600/123\",\r\n
+ \ \"2603:1020:1004::5c0/123\",\r\n \"2603:1020:1004::7e0/123\",\r\n
+ \ \"2603:1020:1104::680/123\",\r\n \"2603:1030:f:1::600/123\",\r\n
+ \ \"2603:1030:10:1::5c0/123\",\r\n \"2603:1030:10:1::7e0/123\",\r\n
+ \ \"2603:1030:104:1::5c0/123\",\r\n \"2603:1030:104:1::7e0/123\",\r\n
+ \ \"2603:1030:107::6a0/123\",\r\n \"2603:1030:210:1::5c0/123\",\r\n
+ \ \"2603:1030:210:1::7e0/123\",\r\n \"2603:1030:40b:1::5c0/123\",\r\n
+ \ \"2603:1030:40c:1::5c0/123\",\r\n \"2603:1030:40c:1::7e0/123\",\r\n
+ \ \"2603:1030:504:1::5c0/123\",\r\n \"2603:1030:504:1::7e0/123\",\r\n
+ \ \"2603:1030:608::600/123\",\r\n \"2603:1030:807:1::5c0/123\",\r\n
+ \ \"2603:1030:807:1::7e0/123\",\r\n \"2603:1030:a07::600/123\",\r\n
+ \ \"2603:1030:b04::600/123\",\r\n \"2603:1030:c06:1::5c0/123\",\r\n
+ \ \"2603:1030:f05:1::5c0/123\",\r\n \"2603:1030:f05:1::7e0/123\",\r\n
+ \ \"2603:1030:1005::600/123\",\r\n \"2603:1040:5::e0/123\",\r\n
+ \ \"2603:1040:5:1::5c0/123\",\r\n \"2603:1040:5:1::7e0/123\",\r\n
+ \ \"2603:1040:207::600/123\",\r\n \"2603:1040:407:1::5c0/123\",\r\n
+ \ \"2603:1040:407:1::7e0/123\",\r\n \"2603:1040:606::600/123\",\r\n
+ \ \"2603:1040:806::600/123\",\r\n \"2603:1040:904:1::5c0/123\",\r\n
+ \ \"2603:1040:904:1::7e0/123\",\r\n \"2603:1040:a06::e0/123\",\r\n
+ \ \"2603:1040:a06:1::5c0/123\",\r\n \"2603:1040:a06:1::7e0/123\",\r\n
+ \ \"2603:1040:b04::600/123\",\r\n \"2603:1040:c06::600/123\",\r\n
+ \ \"2603:1040:d04::5c0/123\",\r\n \"2603:1040:d04::7e0/123\",\r\n
+ \ \"2603:1040:f05:1::5c0/123\",\r\n \"2603:1040:f05:1::7e0/123\",\r\n
+ \ \"2603:1040:1104::680/123\",\r\n \"2603:1050:6:1::5c0/123\",\r\n
+ \ \"2603:1050:6:1::7e0/123\",\r\n \"2603:1050:403::5c0/123\",\r\n
+ \ \"2a01:111:2050::/44\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.FirstParty\",\r\n \"id\": \"AzureFrontDoor.FirstParty\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureFrontDoor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.107.3.0/24\",\r\n \"13.107.4.0/22\",\r\n \"13.107.9.0/24\",\r\n
+ \ \"13.107.12.0/23\",\r\n \"13.107.15.0/24\",\r\n \"13.107.16.0/24\",\r\n
+ \ \"13.107.18.0/23\",\r\n \"13.107.21.0/24\",\r\n \"13.107.22.0/24\",\r\n
+ \ \"13.107.37.0/24\",\r\n \"13.107.38.0/23\",\r\n \"13.107.40.0/24\",\r\n
+ \ \"13.107.42.0/23\",\r\n \"13.107.48.0/24\",\r\n \"13.107.50.0/24\",\r\n
+ \ \"13.107.52.0/24\",\r\n \"13.107.54.0/24\",\r\n \"13.107.56.0/24\",\r\n
+ \ \"13.107.64.0/18\",\r\n \"13.107.128.0/19\",\r\n \"13.107.245.0/24\",\r\n
+ \ \"13.107.254.0/23\",\r\n \"131.253.3.0/24\",\r\n \"131.253.21.0/24\",\r\n
+ \ \"131.253.33.0/24\",\r\n \"150.171.32.0/19\",\r\n \"202.89.233.96/28\",\r\n
+ \ \"204.79.197.0/24\",\r\n \"2620:1ec:4::/46\",\r\n \"2620:1ec:a::/47\",\r\n
+ \ \"2620:1ec:c::/47\",\r\n \"2620:1ec:12::/47\",\r\n \"2620:1ec:21::/48\",\r\n
+ \ \"2620:1ec:22::/48\",\r\n \"2620:1ec:26::/63\",\r\n \"2620:1ec:26:2::/64\",\r\n
+ \ \"2620:1ec:28::/48\",\r\n \"2620:1ec:34::/48\",\r\n \"2620:1ec:39::/48\",\r\n
+ \ \"2620:1ec:3e::/47\",\r\n \"2620:1ec:42::/47\",\r\n \"2620:1ec:44::/47\",\r\n
+ \ \"2620:1ec:8f0::/44\",\r\n \"2620:1ec:900::/44\",\r\n \"2620:1ec:a92::/48\",\r\n
+ \ \"2620:1ec:c11::/48\",\r\n \"2a01:111:2003::/48\",\r\n
+ \ \"2a01:111:202c::/46\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.Frontend\",\r\n \"id\": \"AzureFrontDoor.Frontend\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.8/29\",\r\n \"13.107.208.0/24\",\r\n \"13.107.213.0/24\",\r\n
+ \ \"13.107.219.0/24\",\r\n \"13.107.224.0/24\",\r\n \"13.107.246.0/24\",\r\n
+ \ \"13.107.253.0/24\",\r\n \"20.36.120.96/29\",\r\n \"20.37.64.96/29\",\r\n
+ \ \"20.37.156.112/29\",\r\n \"20.37.192.88/29\",\r\n \"20.37.224.96/29\",\r\n
+ \ \"20.38.84.64/29\",\r\n \"20.38.136.96/29\",\r\n \"20.39.11.0/29\",\r\n
+ \ \"20.41.4.80/29\",\r\n \"20.41.64.112/29\",\r\n \"20.41.192.96/29\",\r\n
+ \ \"20.42.4.112/29\",\r\n \"20.42.129.144/29\",\r\n \"20.42.224.96/29\",\r\n
+ \ \"20.43.41.128/29\",\r\n \"20.43.64.88/29\",\r\n \"20.43.128.104/29\",\r\n
+ \ \"20.45.112.96/29\",\r\n \"20.45.192.96/29\",\r\n \"20.72.18.240/29\",\r\n
+ \ \"20.150.160.72/29\",\r\n \"20.189.106.72/29\",\r\n \"20.192.161.96/29\",\r\n
+ \ \"20.192.225.40/29\",\r\n \"40.67.48.96/29\",\r\n \"40.74.30.64/29\",\r\n
+ \ \"40.80.56.96/29\",\r\n \"40.80.168.96/29\",\r\n \"40.80.184.112/29\",\r\n
+ \ \"40.82.248.72/29\",\r\n \"40.89.16.96/29\",\r\n \"51.12.41.0/29\",\r\n
+ \ \"51.12.193.0/29\",\r\n \"51.104.24.88/29\",\r\n \"51.105.80.96/29\",\r\n
+ \ \"51.105.88.96/29\",\r\n \"51.107.48.96/29\",\r\n \"51.107.144.96/29\",\r\n
+ \ \"51.120.40.96/29\",\r\n \"51.120.224.96/29\",\r\n \"51.137.160.88/29\",\r\n
+ \ \"51.143.192.96/29\",\r\n \"52.136.48.96/29\",\r\n \"52.140.104.96/29\",\r\n
+ \ \"52.150.136.112/29\",\r\n \"52.228.80.112/29\",\r\n \"102.133.56.80/29\",\r\n
+ \ \"102.133.216.80/29\",\r\n \"191.233.9.112/29\",\r\n \"191.235.224.88/29\",\r\n
+ \ \"2603:1000:4::5e0/123\",\r\n \"2603:1000:104::c0/123\",\r\n
+ \ \"2603:1000:104::160/123\",\r\n \"2603:1000:104:1::5a0/123\",\r\n
+ \ \"2603:1000:104:1::7c0/123\",\r\n \"2603:1010:6:1::5a0/123\",\r\n
+ \ \"2603:1010:6:1::7c0/123\",\r\n \"2603:1010:101::5e0/123\",\r\n
+ \ \"2603:1010:304::5e0/123\",\r\n \"2603:1010:404::5e0/123\",\r\n
+ \ \"2603:1020:5:1::5a0/123\",\r\n \"2603:1020:5:1::7c0/123\",\r\n
+ \ \"2603:1020:206:1::5a0/123\",\r\n \"2603:1020:206:1::7c0/123\",\r\n
+ \ \"2603:1020:305::5e0/123\",\r\n \"2603:1020:405::5e0/123\",\r\n
+ \ \"2603:1020:605::5e0/123\",\r\n \"2603:1020:705:1::5a0/123\",\r\n
+ \ \"2603:1020:705:1::7c0/123\",\r\n \"2603:1020:805:1::5a0/123\",\r\n
+ \ \"2603:1020:805:1::7c0/123\",\r\n \"2603:1020:905::5e0/123\",\r\n
+ \ \"2603:1020:a04:1::5a0/123\",\r\n \"2603:1020:a04:1::7c0/123\",\r\n
+ \ \"2603:1020:b04::5e0/123\",\r\n \"2603:1020:c04:1::5a0/123\",\r\n
+ \ \"2603:1020:c04:1::7c0/123\",\r\n \"2603:1020:d04::5e0/123\",\r\n
+ \ \"2603:1020:e04:1::5a0/123\",\r\n \"2603:1020:e04:1::7c0/123\",\r\n
+ \ \"2603:1020:f04::5e0/123\",\r\n \"2603:1020:1004::5a0/123\",\r\n
+ \ \"2603:1020:1004::7c0/123\",\r\n \"2603:1020:1104::5e0/123\",\r\n
+ \ \"2603:1030:f:1::5e0/123\",\r\n \"2603:1030:10:1::5a0/123\",\r\n
+ \ \"2603:1030:10:1::7c0/123\",\r\n \"2603:1030:104:1::5a0/123\",\r\n
+ \ \"2603:1030:104:1::7c0/123\",\r\n \"2603:1030:107::680/123\",\r\n
+ \ \"2603:1030:210:1::5a0/123\",\r\n \"2603:1030:210:1::7c0/123\",\r\n
+ \ \"2603:1030:40b:1::5a0/123\",\r\n \"2603:1030:40c:1::5a0/123\",\r\n
+ \ \"2603:1030:40c:1::7c0/123\",\r\n \"2603:1030:504:1::5a0/123\",\r\n
+ \ \"2603:1030:504:1::7c0/123\",\r\n \"2603:1030:608::5e0/123\",\r\n
+ \ \"2603:1030:807:1::5a0/123\",\r\n \"2603:1030:807:1::7c0/123\",\r\n
+ \ \"2603:1030:a07::5e0/123\",\r\n \"2603:1030:b04::5e0/123\",\r\n
+ \ \"2603:1030:c06:1::5a0/123\",\r\n \"2603:1030:f05:1::5a0/123\",\r\n
+ \ \"2603:1030:f05:1::7c0/123\",\r\n \"2603:1030:1005::5e0/123\",\r\n
+ \ \"2603:1040:5::c0/123\",\r\n \"2603:1040:5:1::5a0/123\",\r\n
+ \ \"2603:1040:5:1::7c0/123\",\r\n \"2603:1040:207::5e0/123\",\r\n
+ \ \"2603:1040:407:1::5a0/123\",\r\n \"2603:1040:407:1::7c0/123\",\r\n
+ \ \"2603:1040:606::5e0/123\",\r\n \"2603:1040:806::5e0/123\",\r\n
+ \ \"2603:1040:904:1::5a0/123\",\r\n \"2603:1040:904:1::7c0/123\",\r\n
+ \ \"2603:1040:a06::c0/123\",\r\n \"2603:1040:a06:1::5a0/123\",\r\n
+ \ \"2603:1040:a06:1::7c0/123\",\r\n \"2603:1040:b04::5e0/123\",\r\n
+ \ \"2603:1040:c06::5e0/123\",\r\n \"2603:1040:d04::5a0/123\",\r\n
+ \ \"2603:1040:d04::7c0/123\",\r\n \"2603:1040:f05:1::5a0/123\",\r\n
+ \ \"2603:1040:f05:1::7c0/123\",\r\n \"2603:1040:1104::5e0/123\",\r\n
+ \ \"2603:1050:6:1::5a0/123\",\r\n \"2603:1050:6:1::7c0/123\",\r\n
+ \ \"2603:1050:403::5a0/123\",\r\n \"2620:1ec:29::/48\",\r\n
+ \ \"2620:1ec:40::/47\",\r\n \"2620:1ec:46::/47\",\r\n \"2620:1ec:bdf::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureInformationProtection\",\r\n
+ \ \"id\": \"AzureInformationProtection\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureInformationProtection\",\r\n \"addressPrefixes\": [\r\n \"13.66.153.57/32\",\r\n
+ \ \"13.66.245.220/32\",\r\n \"13.66.251.171/32\",\r\n \"13.67.114.221/32\",\r\n
+ \ \"13.68.179.152/32\",\r\n \"13.76.139.8/32\",\r\n \"13.76.244.119/32\",\r\n
+ \ \"13.77.166.40/32\",\r\n \"13.77.203.47/32\",\r\n \"13.78.130.67/32\",\r\n
+ \ \"13.78.130.185/32\",\r\n \"13.78.178.191/32\",\r\n \"13.79.189.239/32\",\r\n
+ \ \"13.79.189.241/32\",\r\n \"13.82.198.231/32\",\r\n \"13.83.91.144/32\",\r\n
+ \ \"13.92.58.123/32\",\r\n \"13.92.61.93/32\",\r\n \"13.93.72.133/32\",\r\n
+ \ \"13.93.75.214/32\",\r\n \"13.94.98.184/32\",\r\n \"13.94.116.226/32\",\r\n
+ \ \"23.97.70.206/32\",\r\n \"23.99.106.184/32\",\r\n \"23.99.114.156/32\",\r\n
+ \ \"23.99.251.107/32\",\r\n \"23.101.112.34/32\",\r\n \"23.101.147.227/32\",\r\n
+ \ \"23.101.163.169/32\",\r\n \"40.69.191.65/32\",\r\n \"40.70.16.196/32\",\r\n
+ \ \"40.76.94.49/32\",\r\n \"40.83.177.47/32\",\r\n \"40.83.223.214/32\",\r\n
+ \ \"40.87.2.166/32\",\r\n \"40.87.67.213/32\",\r\n \"40.87.94.91/32\",\r\n
+ \ \"40.114.2.72/32\",\r\n \"40.117.180.9/32\",\r\n \"40.121.48.207/32\",\r\n
+ \ \"40.121.49.153/32\",\r\n \"40.121.90.82/32\",\r\n \"40.127.160.102/32\",\r\n
+ \ \"40.127.175.173/32\",\r\n \"51.136.18.12/32\",\r\n \"51.141.184.35/32\",\r\n
+ \ \"51.143.32.47/32\",\r\n \"51.143.88.135/32\",\r\n \"51.144.167.90/32\",\r\n
+ \ \"51.145.146.97/32\",\r\n \"52.162.33.18/32\",\r\n \"52.162.37.146/32\",\r\n
+ \ \"52.162.88.200/32\",\r\n \"52.162.95.132/32\",\r\n \"52.162.208.48/32\",\r\n
+ \ \"52.163.61.51/32\",\r\n \"52.163.85.21/32\",\r\n \"52.163.85.129/32\",\r\n
+ \ \"52.163.87.92/32\",\r\n \"52.163.89.155/32\",\r\n \"52.163.89.160/32\",\r\n
+ \ \"52.165.189.139/32\",\r\n \"52.167.1.118/32\",\r\n \"52.167.225.247/32\",\r\n
+ \ \"52.167.226.2/32\",\r\n \"52.167.227.104/32\",\r\n \"52.167.227.154/32\",\r\n
+ \ \"52.173.21.111/32\",\r\n \"52.173.89.54/32\",\r\n \"52.173.89.66/32\",\r\n
+ \ \"52.173.93.137/32\",\r\n \"52.176.44.178/32\",\r\n \"52.178.145.186/32\",\r\n
+ \ \"52.178.147.96/32\",\r\n \"52.179.136.129/32\",\r\n \"52.184.34.233/32\",\r\n
+ \ \"52.184.35.49/32\",\r\n \"52.232.110.114/32\",\r\n \"52.232.113.160/32\",\r\n
+ \ \"52.232.118.97/32\",\r\n \"52.232.119.81/32\",\r\n \"52.237.141.83/32\",\r\n
+ \ \"52.237.141.229/32\",\r\n \"52.250.56.125/32\",\r\n \"65.52.36.85/32\",\r\n
+ \ \"65.52.55.108/32\",\r\n \"65.52.176.250/32\",\r\n \"65.52.177.192/32\",\r\n
+ \ \"65.52.184.44/32\",\r\n \"65.52.184.218/32\",\r\n \"65.52.236.123/32\",\r\n
+ \ \"70.37.163.131/32\",\r\n \"94.245.88.160/32\",\r\n \"104.40.16.135/32\",\r\n
+ \ \"104.40.30.29/32\",\r\n \"104.41.143.145/32\",\r\n \"137.116.91.123/32\",\r\n
+ \ \"137.117.47.75/32\",\r\n \"138.91.121.248/32\",\r\n \"138.91.122.178/32\",\r\n
+ \ \"157.55.177.248/32\",\r\n \"157.55.185.205/32\",\r\n \"157.56.8.93/32\",\r\n
+ \ \"157.56.8.135/32\",\r\n \"157.56.9.127/32\",\r\n \"168.61.46.212/32\",\r\n
+ \ \"168.62.5.167/32\",\r\n \"168.62.8.139/32\",\r\n \"168.62.25.173/32\",\r\n
+ \ \"168.62.25.179/32\",\r\n \"168.62.48.148/32\",\r\n \"168.62.49.18/32\",\r\n
+ \ \"168.62.52.244/32\",\r\n \"168.62.53.73/32\",\r\n \"168.62.53.132/32\",\r\n
+ \ \"168.62.54.75/32\",\r\n \"168.62.54.211/32\",\r\n \"168.62.54.212/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub\",\r\n
+ \ \"id\": \"AzureIoTHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.96/27\",\r\n \"13.67.10.224/27\",\r\n
+ \ \"13.67.234.22/32\",\r\n \"13.69.71.0/25\",\r\n \"13.69.109.0/25\",\r\n
+ \ \"13.69.192.43/32\",\r\n \"13.69.230.64/27\",\r\n \"13.70.74.192/27\",\r\n
+ \ \"13.70.182.204/32\",\r\n \"13.70.182.210/32\",\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"13.71.150.19/32\",\r\n \"13.71.175.32/27\",\r\n
+ \ \"13.71.196.224/27\",\r\n \"13.73.115.51/32\",\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.74.108.192/27\",\r\n \"13.75.39.160/27\",\r\n
+ \ \"13.76.83.155/32\",\r\n \"13.76.217.46/32\",\r\n \"13.77.53.128/27\",\r\n
+ \ \"13.78.109.160/27\",\r\n \"13.78.129.154/32\",\r\n \"13.78.130.69/32\",\r\n
+ \ \"13.79.172.43/32\",\r\n \"13.82.93.138/32\",\r\n \"13.84.189.6/32\",\r\n
+ \ \"13.85.68.113/32\",\r\n \"13.86.221.0/25\",\r\n \"13.87.58.96/27\",\r\n
+ \ \"13.87.124.96/27\",\r\n \"13.89.174.160/27\",\r\n \"13.89.231.149/32\",\r\n
+ \ \"13.94.40.72/32\",\r\n \"13.95.15.251/32\",\r\n \"20.36.108.160/27\",\r\n
+ \ \"20.36.117.64/27\",\r\n \"20.36.123.32/27\",\r\n \"20.36.123.128/25\",\r\n
+ \ \"20.37.67.128/25\",\r\n \"20.37.68.0/27\",\r\n \"20.37.76.160/27\",\r\n
+ \ \"20.37.198.160/27\",\r\n \"20.37.199.0/25\",\r\n \"20.37.227.64/27\",\r\n
+ \ \"20.37.227.128/25\",\r\n \"20.38.128.128/27\",\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"20.38.147.192/27\",\r\n \"20.39.14.32/27\",\r\n
+ \ \"20.39.14.128/25\",\r\n \"20.40.206.192/27\",\r\n \"20.40.207.0/25\",\r\n
+ \ \"20.41.68.96/27\",\r\n \"20.41.68.128/25\",\r\n \"20.41.197.64/27\",\r\n
+ \ \"20.41.197.128/25\",\r\n \"20.42.230.160/27\",\r\n \"20.42.231.0/25\",\r\n
+ \ \"20.43.44.160/27\",\r\n \"20.43.45.0/25\",\r\n \"20.43.70.160/27\",\r\n
+ \ \"20.43.71.0/25\",\r\n \"20.43.121.64/27\",\r\n \"20.44.4.128/27\",\r\n
+ \ \"20.44.8.224/27\",\r\n \"20.44.17.96/27\",\r\n \"20.44.29.0/27\",\r\n
+ \ \"20.45.114.224/27\",\r\n \"20.45.115.0/25\",\r\n \"20.45.123.128/27\",\r\n
+ \ \"20.45.198.32/27\",\r\n \"20.45.198.128/25\",\r\n \"20.49.83.128/27\",\r\n
+ \ \"20.49.91.128/27\",\r\n \"20.49.99.96/27\",\r\n \"20.49.99.128/25\",\r\n
+ \ \"20.49.109.128/25\",\r\n \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n
+ \ \"20.49.113.32/27\",\r\n \"20.49.113.128/25\",\r\n \"20.49.120.96/27\",\r\n
+ \ \"20.49.120.128/25\",\r\n \"20.49.121.0/25\",\r\n \"20.50.65.128/25\",\r\n
+ \ \"20.50.68.0/27\",\r\n \"20.72.28.160/27\",\r\n \"20.150.165.192/27\",\r\n
+ \ \"20.150.166.0/25\",\r\n \"20.150.172.192/27\",\r\n \"20.150.179.224/27\",\r\n
+ \ \"20.150.187.224/27\",\r\n \"20.187.195.0/25\",\r\n \"20.188.0.51/32\",\r\n
+ \ \"20.188.3.145/32\",\r\n \"20.188.39.126/32\",\r\n \"20.189.109.192/27\",\r\n
+ \ \"20.192.99.224/27\",\r\n \"20.192.165.224/27\",\r\n \"20.192.166.0/25\",\r\n
+ \ \"20.192.230.32/27\",\r\n \"20.192.230.128/25\",\r\n \"20.192.238.0/27\",\r\n
+ \ \"20.193.206.0/27\",\r\n \"20.194.67.96/27\",\r\n \"23.96.222.45/32\",\r\n
+ \ \"23.96.223.89/32\",\r\n \"23.98.86.0/27\",\r\n \"23.98.104.192/27\",\r\n
+ \ \"23.98.106.0/25\",\r\n \"23.99.109.81/32\",\r\n \"23.100.4.253/32\",\r\n
+ \ \"23.100.8.130/32\",\r\n \"23.100.105.192/32\",\r\n \"23.101.29.228/32\",\r\n
+ \ \"23.102.235.31/32\",\r\n \"40.64.132.160/27\",\r\n \"40.64.134.0/25\",\r\n
+ \ \"40.67.51.0/25\",\r\n \"40.67.51.128/27\",\r\n \"40.67.60.128/27\",\r\n
+ \ \"40.69.108.128/27\",\r\n \"40.70.148.128/27\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.74.66.139/32\",\r\n \"40.74.125.44/32\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.76.71.185/32\",\r\n \"40.77.23.107/32\",\r\n
+ \ \"40.78.22.17/32\",\r\n \"40.78.196.96/27\",\r\n \"40.78.204.64/27\",\r\n
+ \ \"40.78.229.128/25\",\r\n \"40.78.238.0/27\",\r\n \"40.78.245.32/27\",\r\n
+ \ \"40.78.251.160/27\",\r\n \"40.79.114.144/32\",\r\n \"40.79.132.128/27\",\r\n
+ \ \"40.79.139.32/27\",\r\n \"40.79.148.0/27\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.79.163.32/27\",\r\n \"40.79.171.128/27\",\r\n \"40.79.180.96/27\",\r\n
+ \ \"40.79.187.224/27\",\r\n \"40.79.195.192/27\",\r\n \"40.80.51.128/27\",\r\n
+ \ \"40.80.62.64/27\",\r\n \"40.80.62.128/25\",\r\n \"40.80.172.64/27\",\r\n
+ \ \"40.80.172.128/25\",\r\n \"40.80.176.64/27\",\r\n \"40.83.177.42/32\",\r\n
+ \ \"40.84.53.157/32\",\r\n \"40.87.138.172/32\",\r\n \"40.87.143.97/32\",\r\n
+ \ \"40.89.20.192/27\",\r\n \"40.89.21.0/25\",\r\n \"40.112.221.188/32\",\r\n
+ \ \"40.112.223.235/32\",\r\n \"40.113.153.50/32\",\r\n \"40.113.176.160/27\",\r\n
+ \ \"40.113.176.192/27\",\r\n \"40.113.177.0/24\",\r\n \"40.114.53.146/32\",\r\n
+ \ \"40.118.27.192/32\",\r\n \"40.119.11.224/27\",\r\n \"40.120.75.160/27\",\r\n
+ \ \"40.127.132.17/32\",\r\n \"51.12.42.32/27\",\r\n \"51.12.42.128/25\",\r\n
+ \ \"51.12.100.64/27\",\r\n \"51.12.194.32/27\",\r\n \"51.12.194.128/25\",\r\n
+ \ \"51.12.204.64/27\",\r\n \"51.12.227.224/27\",\r\n \"51.12.235.224/27\",\r\n
+ \ \"51.104.30.0/25\",\r\n \"51.104.30.128/27\",\r\n \"51.105.69.0/27\",\r\n
+ \ \"51.105.75.192/27\",\r\n \"51.105.91.128/25\",\r\n \"51.105.92.0/27\",\r\n
+ \ \"51.107.51.64/27\",\r\n \"51.107.51.128/25\",\r\n \"51.107.60.96/27\",\r\n
+ \ \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n \"51.107.156.96/27\",\r\n
+ \ \"51.116.49.224/27\",\r\n \"51.116.50.0/25\",\r\n \"51.116.60.96/27\",\r\n
+ \ \"51.116.145.192/27\",\r\n \"51.116.146.0/25\",\r\n \"51.116.158.0/27\",\r\n
+ \ \"51.116.243.160/27\",\r\n \"51.116.251.128/27\",\r\n \"51.120.43.128/25\",\r\n
+ \ \"51.120.44.0/27\",\r\n \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n
+ \ \"51.120.211.224/27\",\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"51.137.164.160/27\",\r\n \"51.137.165.0/25\",\r\n \"51.140.84.251/32\",\r\n
+ \ \"51.140.126.10/32\",\r\n \"51.140.149.32/27\",\r\n \"51.140.212.160/27\",\r\n
+ \ \"51.140.226.207/32\",\r\n \"51.140.240.234/32\",\r\n \"51.141.49.253/32\",\r\n
+ \ \"51.144.118.31/32\",\r\n \"52.136.51.128/25\",\r\n \"52.136.52.0/27\",\r\n
+ \ \"52.136.132.236/32\",\r\n \"52.138.92.96/27\",\r\n \"52.138.229.0/27\",\r\n
+ \ \"52.140.108.160/27\",\r\n \"52.140.109.0/25\",\r\n \"52.147.10.141/32\",\r\n
+ \ \"52.147.10.149/32\",\r\n \"52.150.152.96/27\",\r\n \"52.150.153.128/25\",\r\n
+ \ \"52.151.6.77/32\",\r\n \"52.151.78.51/32\",\r\n \"52.158.236.252/32\",\r\n
+ \ \"52.161.15.247/32\",\r\n \"52.162.111.64/27\",\r\n \"52.163.212.39/32\",\r\n
+ \ \"52.163.215.122/32\",\r\n \"52.167.107.192/27\",\r\n \"52.167.155.89/32\",\r\n
+ \ \"52.168.180.95/32\",\r\n \"52.169.138.222/32\",\r\n \"52.172.203.144/32\",\r\n
+ \ \"52.175.221.106/32\",\r\n \"52.176.4.4/32\",\r\n \"52.176.92.27/32\",\r\n
+ \ \"52.177.196.50/32\",\r\n \"52.178.147.144/32\",\r\n \"52.179.159.231/32\",\r\n
+ \ \"52.180.165.88/32\",\r\n \"52.180.165.248/32\",\r\n \"52.180.177.125/32\",\r\n
+ \ \"52.182.139.224/27\",\r\n \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n
+ \ \"52.225.179.220/32\",\r\n \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n
+ \ \"52.225.187.149/32\",\r\n \"52.228.85.224/27\",\r\n \"52.228.86.0/25\",\r\n
+ \ \"52.231.20.32/27\",\r\n \"52.231.32.236/32\",\r\n \"52.231.148.128/27\",\r\n
+ \ \"52.231.205.15/32\",\r\n \"52.236.189.128/25\",\r\n \"52.237.27.123/32\",\r\n
+ \ \"52.242.31.77/32\",\r\n \"52.246.155.192/27\",\r\n \"52.250.225.32/27\",\r\n
+ \ \"65.52.252.160/27\",\r\n \"102.133.28.160/27\",\r\n \"102.133.59.0/25\",\r\n
+ \ \"102.133.59.128/27\",\r\n \"102.133.124.32/27\",\r\n \"102.133.156.64/27\",\r\n
+ \ \"102.133.218.192/27\",\r\n \"102.133.219.0/25\",\r\n \"102.133.251.128/27\",\r\n
+ \ \"104.40.49.44/32\",\r\n \"104.41.34.180/32\",\r\n \"104.43.252.98/32\",\r\n
+ \ \"104.46.115.237/32\",\r\n \"104.210.105.7/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"104.211.210.195/32\",\r\n \"104.214.34.123/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"157.55.253.43/32\",\r\n \"168.61.54.255/32\",\r\n
+ \ \"168.61.208.218/32\",\r\n \"191.233.11.160/27\",\r\n \"191.233.14.0/25\",\r\n
+ \ \"191.233.54.0/27\",\r\n \"191.233.205.128/27\",\r\n \"191.234.136.128/25\",\r\n
+ \ \"191.234.137.0/27\",\r\n \"191.234.147.224/27\",\r\n \"191.234.155.224/27\",\r\n
+ \ \"207.46.138.102/32\",\r\n \"2603:1000:4:402::300/123\",\r\n
+ \ \"2603:1000:104:402::300/123\",\r\n \"2603:1000:104:802::240/123\",\r\n
+ \ \"2603:1000:104:c02::240/123\",\r\n \"2603:1010:6:402::300/123\",\r\n
+ \ \"2603:1010:6:802::240/123\",\r\n \"2603:1010:6:c02::240/123\",\r\n
+ \ \"2603:1010:101:402::300/123\",\r\n \"2603:1010:304:402::300/123\",\r\n
+ \ \"2603:1010:404:402::300/123\",\r\n \"2603:1020:5:402::300/123\",\r\n
+ \ \"2603:1020:5:802::240/123\",\r\n \"2603:1020:5:c02::240/123\",\r\n
+ \ \"2603:1020:206:402::300/123\",\r\n \"2603:1020:206:802::240/123\",\r\n
+ \ \"2603:1020:206:c02::240/123\",\r\n \"2603:1020:305:402::300/123\",\r\n
+ \ \"2603:1020:405:402::300/123\",\r\n \"2603:1020:605:402::300/123\",\r\n
+ \ \"2603:1020:705:402::300/123\",\r\n \"2603:1020:705:802::240/123\",\r\n
+ \ \"2603:1020:705:c02::240/123\",\r\n \"2603:1020:805:402::300/123\",\r\n
+ \ \"2603:1020:805:802::240/123\",\r\n \"2603:1020:805:c02::240/123\",\r\n
+ \ \"2603:1020:905:402::300/123\",\r\n \"2603:1020:a04:402::300/123\",\r\n
+ \ \"2603:1020:a04:802::240/123\",\r\n \"2603:1020:a04:c02::240/123\",\r\n
+ \ \"2603:1020:b04:402::300/123\",\r\n \"2603:1020:c04:402::300/123\",\r\n
+ \ \"2603:1020:c04:802::240/123\",\r\n \"2603:1020:c04:c02::240/123\",\r\n
+ \ \"2603:1020:d04:402::300/123\",\r\n \"2603:1020:e04:402::300/123\",\r\n
+ \ \"2603:1020:e04:802::240/123\",\r\n \"2603:1020:e04:c02::240/123\",\r\n
+ \ \"2603:1020:f04:402::300/123\",\r\n \"2603:1020:1004:400::480/123\",\r\n
+ \ \"2603:1020:1004:800::100/123\",\r\n \"2603:1020:1004:800::240/123\",\r\n
+ \ \"2603:1020:1004:c02::2a0/123\",\r\n \"2603:1020:1104:400::300/123\",\r\n
+ \ \"2603:1030:f:400::b00/123\",\r\n \"2603:1030:10:402::300/123\",\r\n
+ \ \"2603:1030:10:802::240/123\",\r\n \"2603:1030:10:c02::240/123\",\r\n
+ \ \"2603:1030:104:402::300/123\",\r\n \"2603:1030:107:400::280/123\",\r\n
+ \ \"2603:1030:210:402::300/123\",\r\n \"2603:1030:210:802::240/123\",\r\n
+ \ \"2603:1030:210:c02::240/123\",\r\n \"2603:1030:40b:400::b00/123\",\r\n
+ \ \"2603:1030:40b:800::240/123\",\r\n \"2603:1030:40b:c00::240/123\",\r\n
+ \ \"2603:1030:40c:402::300/123\",\r\n \"2603:1030:40c:802::240/123\",\r\n
+ \ \"2603:1030:40c:c02::240/123\",\r\n \"2603:1030:504:802::100/123\",\r\n
+ \ \"2603:1030:504:c02::2a0/123\",\r\n \"2603:1030:608:402::300/123\",\r\n
+ \ \"2603:1030:807:402::300/123\",\r\n \"2603:1030:807:802::240/123\",\r\n
+ \ \"2603:1030:807:c02::240/123\",\r\n \"2603:1030:a07:402::980/123\",\r\n
+ \ \"2603:1030:b04:402::300/123\",\r\n \"2603:1030:c06:400::b00/123\",\r\n
+ \ \"2603:1030:c06:802::240/123\",\r\n \"2603:1030:c06:c02::240/123\",\r\n
+ \ \"2603:1030:f05:402::300/123\",\r\n \"2603:1030:f05:802::240/123\",\r\n
+ \ \"2603:1030:f05:c02::240/123\",\r\n \"2603:1030:1005:402::300/123\",\r\n
+ \ \"2603:1040:5:402::300/123\",\r\n \"2603:1040:5:802::240/123\",\r\n
+ \ \"2603:1040:5:c02::240/123\",\r\n \"2603:1040:207:402::300/123\",\r\n
+ \ \"2603:1040:407:402::300/123\",\r\n \"2603:1040:407:802::240/123\",\r\n
+ \ \"2603:1040:407:c02::240/123\",\r\n \"2603:1040:606:402::300/123\",\r\n
+ \ \"2603:1040:806:402::300/123\",\r\n \"2603:1040:904:402::300/123\",\r\n
+ \ \"2603:1040:904:802::240/123\",\r\n \"2603:1040:904:c02::240/123\",\r\n
+ \ \"2603:1040:a06:402::300/123\",\r\n \"2603:1040:a06:802::240/123\",\r\n
+ \ \"2603:1040:a06:c02::240/123\",\r\n \"2603:1040:b04:402::300/123\",\r\n
+ \ \"2603:1040:c06:402::300/123\",\r\n \"2603:1040:d04:400::480/123\",\r\n
+ \ \"2603:1040:d04:800::100/123\",\r\n \"2603:1040:d04:800::240/123\",\r\n
+ \ \"2603:1040:d04:c02::2a0/123\",\r\n \"2603:1040:f05:402::300/123\",\r\n
+ \ \"2603:1040:f05:802::240/123\",\r\n \"2603:1040:f05:c02::240/123\",\r\n
+ \ \"2603:1040:1104:400::300/123\",\r\n \"2603:1050:6:402::300/123\",\r\n
+ \ \"2603:1050:6:802::240/123\",\r\n \"2603:1050:6:c02::240/123\",\r\n
+ \ \"2603:1050:403:400::220/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.EastUS\",\r\n \"id\": \"AzureIoTHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.82.93.138/32\",\r\n \"20.49.109.128/25\",\r\n
+ \ \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.76.71.185/32\",\r\n \"40.78.229.128/25\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.114.53.146/32\",\r\n \"52.168.180.95/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"168.61.54.255/32\",\r\n \"2603:1030:210:402::300/123\",\r\n
+ \ \"2603:1030:210:802::240/123\",\r\n \"2603:1030:210:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureIoTHub.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.32/27\",\r\n \"20.39.14.128/25\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.79.114.144/32\",\r\n \"52.138.92.96/27\",\r\n
+ \ \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n \"52.225.179.220/32\",\r\n
+ \ \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n \"52.225.187.149/32\",\r\n
+ \ \"2603:1030:40b:400::b00/123\",\r\n \"2603:1030:40b:800::240/123\",\r\n
+ \ \"2603:1030:40b:c00::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayEast\",\r\n \"id\": \"AzureIoTHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.43.128/25\",\r\n \"51.120.44.0/27\",\r\n
+ \ \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n \"51.120.211.224/27\",\r\n
+ \ \"2603:1020:e04:402::300/123\",\r\n \"2603:1020:e04:802::240/123\",\r\n
+ \ \"2603:1020:e04:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayWest\",\r\n \"id\": \"AzureIoTHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"2603:1020:f04:402::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.SouthCentralUS\",\r\n \"id\":
+ \"AzureIoTHub.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.84.189.6/32\",\r\n \"13.85.68.113/32\",\r\n
+ \ \"20.45.123.128/27\",\r\n \"20.49.91.128/27\",\r\n \"40.119.11.224/27\",\r\n
+ \ \"104.214.34.123/32\",\r\n \"2603:1030:807:402::300/123\",\r\n
+ \ \"2603:1030:807:802::240/123\",\r\n \"2603:1030:807:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SouthIndia\",\r\n
+ \ \"id\": \"AzureIoTHub.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"20.41.197.64/27\",\r\n \"20.41.197.128/25\",\r\n
+ \ \"40.78.196.96/27\",\r\n \"104.211.210.195/32\",\r\n \"2603:1040:c06:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureIoTHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n
+ \ \"51.107.156.96/27\",\r\n \"2603:1020:b04:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.UAENorth\",\r\n
+ \ \"id\": \"AzureIoTHub.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"40.120.75.160/27\",\r\n \"65.52.252.160/27\",\r\n
+ \ \"2603:1040:904:402::300/123\",\r\n \"2603:1040:904:802::240/123\",\r\n
+ \ \"2603:1040:904:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.WestIndia\",\r\n \"id\": \"AzureIoTHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.128.128/27\",\r\n \"52.136.51.128/25\",\r\n
+ \ \"52.136.52.0/27\",\r\n \"2603:1040:806:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault\",\r\n
+ \ \"id\": \"AzureKeyVault\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"13.67.8.104/30\",\r\n \"13.68.24.216/32\",\r\n
+ \ \"13.68.29.203/32\",\r\n \"13.68.104.240/32\",\r\n \"13.69.64.72/30\",\r\n
+ \ \"13.69.227.72/30\",\r\n \"13.70.72.24/30\",\r\n \"13.70.138.129/32\",\r\n
+ \ \"13.71.170.40/30\",\r\n \"13.71.194.112/30\",\r\n \"13.72.250.239/32\",\r\n
+ \ \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n \"13.75.34.144/30\",\r\n
+ \ \"13.77.50.64/30\",\r\n \"13.78.106.88/30\",\r\n \"13.80.247.19/32\",\r\n
+ \ \"13.80.247.42/32\",\r\n \"13.84.174.143/32\",\r\n \"13.87.34.51/32\",\r\n
+ \ \"13.87.39.0/32\",\r\n \"13.87.56.80/30\",\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"13.89.61.248/32\",\r\n
+ \ \"13.89.170.200/30\",\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n
+ \ \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.36.114.16/30\",\r\n \"20.37.74.228/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.44.2.0/30\",\r\n \"20.45.90.72/29\",\r\n
+ \ \"20.45.90.80/30\",\r\n \"20.45.117.32/29\",\r\n \"20.45.117.40/30\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"20.48.197.104/29\",\r\n
+ \ \"20.48.197.112/30\",\r\n \"20.49.82.0/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.49.119.232/29\",\r\n \"20.49.119.240/28\",\r\n
+ \ \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n \"20.51.20.84/30\",\r\n
+ \ \"20.51.21.64/29\",\r\n \"20.52.88.144/29\",\r\n \"20.52.88.152/30\",\r\n
+ \ \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n \"20.53.48.40/29\",\r\n
+ \ \"20.53.49.96/30\",\r\n \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n
+ \ \"20.58.67.48/29\",\r\n \"20.58.67.56/30\",\r\n \"20.61.103.224/29\",\r\n
+ \ \"20.61.103.232/30\",\r\n \"20.62.60.128/27\",\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"20.66.2.28/30\",\r\n \"20.66.5.128/29\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"20.72.21.148/30\",\r\n \"20.72.21.192/29\",\r\n
+ \ \"20.72.26.0/30\",\r\n \"20.150.170.0/30\",\r\n \"20.150.181.28/30\",\r\n
+ \ \"20.150.181.164/30\",\r\n \"20.150.189.32/30\",\r\n \"20.150.244.36/30\",\r\n
+ \ \"20.150.245.56/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"20.186.41.83/32\",\r\n \"20.186.47.182/32\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n \"20.191.166.120/29\",\r\n
+ \ \"20.191.167.128/30\",\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"20.192.50.216/29\",\r\n \"20.192.50.224/30\",\r\n \"20.192.80.48/29\",\r\n
+ \ \"20.192.80.56/30\",\r\n \"20.192.234.0/30\",\r\n \"20.193.194.44/30\",\r\n
+ \ \"20.193.194.80/29\",\r\n \"20.193.202.0/30\",\r\n \"20.194.66.0/30\",\r\n
+ \ \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"20.195.74.168/29\",\r\n \"20.195.74.176/30\",\r\n
+ \ \"20.195.146.68/30\",\r\n \"20.195.146.192/29\",\r\n \"23.96.210.207/32\",\r\n
+ \ \"23.96.250.48/32\",\r\n \"23.97.50.43/32\",\r\n \"23.97.120.25/32\",\r\n
+ \ \"23.97.120.29/32\",\r\n \"23.97.120.39/32\",\r\n \"23.97.120.57/32\",\r\n
+ \ \"23.97.178.0/32\",\r\n \"23.99.132.207/32\",\r\n \"23.100.57.24/32\",\r\n
+ \ \"23.100.58.149/32\",\r\n \"23.101.21.103/32\",\r\n \"23.101.21.193/32\",\r\n
+ \ \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n \"23.101.159.107/32\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"40.65.188.244/32\",\r\n
+ \ \"40.65.189.219/32\",\r\n \"40.67.53.184/29\",\r\n \"40.67.53.224/30\",\r\n
+ \ \"40.67.58.0/30\",\r\n \"40.69.106.64/30\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.74.100.48/30\",\r\n \"40.76.196.75/32\",\r\n
+ \ \"40.76.212.37/32\",\r\n \"40.78.194.64/30\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"40.79.130.40/30\",\r\n \"40.79.163.156/30\",\r\n
+ \ \"40.79.173.4/30\",\r\n \"40.79.178.64/30\",\r\n \"40.84.47.24/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.85.229.9/32\",\r\n \"40.85.231.231/32\",\r\n
+ \ \"40.86.224.94/32\",\r\n \"40.86.231.180/32\",\r\n \"40.87.69.184/32\",\r\n
+ \ \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n \"40.89.180.10/32\",\r\n
+ \ \"40.89.180.25/32\",\r\n \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n
+ \ \"40.112.242.144/30\",\r\n \"40.117.157.122/32\",\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"40.124.64.128/30\",\r\n
+ \ \"51.12.17.232/29\",\r\n \"51.12.17.240/30\",\r\n \"51.12.25.204/30\",\r\n
+ \ \"51.12.28.32/29\",\r\n \"51.12.98.0/30\",\r\n \"51.12.202.0/30\",\r\n
+ \ \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.107.58.0/30\",\r\n \"51.107.154.0/30\",\r\n \"51.107.241.116/30\",\r\n
+ \ \"51.107.242.248/29\",\r\n \"51.107.250.44/30\",\r\n \"51.107.251.104/29\",\r\n
+ \ \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n \"51.116.58.0/30\",\r\n
+ \ \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n \"51.116.251.188/30\",\r\n
+ \ \"51.120.98.8/30\",\r\n \"51.120.218.0/30\",\r\n \"51.120.233.132/30\",\r\n
+ \ \"51.120.234.128/29\",\r\n \"51.138.210.132/30\",\r\n \"51.138.211.8/29\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n \"51.143.6.21/32\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n \"52.147.113.72/29\",\r\n
+ \ \"52.147.113.80/30\",\r\n \"52.148.84.142/32\",\r\n \"52.148.84.145/32\",\r\n
+ \ \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n
+ \ \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n \"52.161.31.139/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.169.232.147/32\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.175.236.86/32\",\r\n \"52.176.48.58/32\",\r\n
+ \ \"52.176.254.165/32\",\r\n \"52.177.71.51/32\",\r\n \"52.180.176.121/32\",\r\n
+ \ \"52.180.176.122/32\",\r\n \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n
+ \ \"52.183.93.92/32\",\r\n \"52.183.94.166/32\",\r\n \"52.184.155.181/32\",\r\n
+ \ \"52.184.158.37/32\",\r\n \"52.184.164.12/32\",\r\n \"52.187.161.13/32\",\r\n
+ \ \"52.187.163.139/32\",\r\n \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n
+ \ \"52.225.188.225/32\",\r\n \"52.225.191.36/32\",\r\n \"52.225.218.218/32\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"52.237.253.194/32\",\r\n \"52.246.157.4/30\",\r\n \"52.247.193.69/32\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"65.52.250.0/30\",\r\n \"102.37.81.88/29\",\r\n \"102.37.81.128/30\",\r\n
+ \ \"102.37.160.176/29\",\r\n \"102.37.160.184/30\",\r\n \"102.133.26.0/30\",\r\n
+ \ \"102.133.124.140/30\",\r\n \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n
+ \ \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.42.6.91/32\",\r\n \"104.42.136.180/32\",\r\n
+ \ \"104.43.161.34/32\",\r\n \"104.43.192.26/32\",\r\n \"104.44.136.42/32\",\r\n
+ \ \"104.46.40.31/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n \"104.208.26.47/32\",\r\n
+ \ \"104.210.195.61/32\",\r\n \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n
+ \ \"104.211.99.174/32\",\r\n \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n
+ \ \"104.211.167.57/32\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"104.214.18.168/30\",\r\n
+ \ \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n \"104.215.94.76/32\",\r\n
+ \ \"104.215.99.117/32\",\r\n \"104.215.139.166/32\",\r\n
+ \ \"104.215.140.132/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"168.62.108.27/32\",\r\n \"168.62.237.29/32\",\r\n \"168.63.167.27/32\",\r\n
+ \ \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n \"191.233.50.0/30\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1000:4::2a0/125\",\r\n \"2603:1000:4:402::80/125\",\r\n
+ \ \"2603:1000:104::660/125\",\r\n \"2603:1000:104:402::80/125\",\r\n
+ \ \"2603:1000:104:802::80/125\",\r\n \"2603:1000:104:c02::80/125\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\",\r\n
+ \ \"2603:1010:304::2a0/125\",\r\n \"2603:1010:304:402::80/125\",\r\n
+ \ \"2603:1010:404::2a0/125\",\r\n \"2603:1010:404:402::80/125\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\",\r\n
+ \ \"2603:1020:206::340/125\",\r\n \"2603:1020:206:402::80/125\",\r\n
+ \ \"2603:1020:206:802::80/125\",\r\n \"2603:1020:206:c02::80/125\",\r\n
+ \ \"2603:1020:305:402::80/125\",\r\n \"2603:1020:405:402::80/125\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\",\r\n
+ \ \"2603:1020:805::340/125\",\r\n \"2603:1020:805:402::80/125\",\r\n
+ \ \"2603:1020:805:802::80/125\",\r\n \"2603:1020:805:c02::80/125\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\",\r\n
+ \ \"2603:1020:a04::340/125\",\r\n \"2603:1020:a04:402::80/125\",\r\n
+ \ \"2603:1020:a04:802::80/125\",\r\n \"2603:1020:a04:c02::80/125\",\r\n
+ \ \"2603:1020:b04::2a0/125\",\r\n \"2603:1020:b04:402::80/125\",\r\n
+ \ \"2603:1020:c04::340/125\",\r\n \"2603:1020:c04:402::80/125\",\r\n
+ \ \"2603:1020:c04:802::80/125\",\r\n \"2603:1020:c04:c02::80/125\",\r\n
+ \ \"2603:1020:d04::2a0/125\",\r\n \"2603:1020:d04:402::80/125\",\r\n
+ \ \"2603:1020:e04::340/125\",\r\n \"2603:1020:e04:402::80/125\",\r\n
+ \ \"2603:1020:e04:802::80/125\",\r\n \"2603:1020:e04:c02::80/125\",\r\n
+ \ \"2603:1020:f04::2a0/125\",\r\n \"2603:1020:f04:402::80/125\",\r\n
+ \ \"2603:1020:1004:1::1f8/125\",\r\n \"2603:1020:1004:400::80/125\",\r\n
+ \ \"2603:1020:1004:400::2f8/125\",\r\n \"2603:1020:1004:800::140/125\",\r\n
+ \ \"2603:1020:1104:1::158/125\",\r\n \"2603:1020:1104:400::80/125\",\r\n
+ \ \"2603:1030:f:1::2a0/125\",\r\n \"2603:1030:f:400::880/125\",\r\n
+ \ \"2603:1030:10::340/125\",\r\n \"2603:1030:10:402::80/125\",\r\n
+ \ \"2603:1030:10:802::80/125\",\r\n \"2603:1030:10:c02::80/125\",\r\n
+ \ \"2603:1030:104::340/125\",\r\n \"2603:1030:104:402::80/125\",\r\n
+ \ \"2603:1030:107::738/125\",\r\n \"2603:1030:107:400::/125\",\r\n
+ \ \"2603:1030:107:400::10/125\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\",\r\n \"2603:1030:40c::340/125\",\r\n
+ \ \"2603:1030:40c:402::80/125\",\r\n \"2603:1030:40c:802::80/125\",\r\n
+ \ \"2603:1030:40c:c02::80/125\",\r\n \"2603:1030:504::1f8/125\",\r\n
+ \ \"2603:1030:504:402::80/125\",\r\n \"2603:1030:504:402::2f8/125\",\r\n
+ \ \"2603:1030:504:802::140/125\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\",\r\n \"2603:1030:807::340/125\",\r\n
+ \ \"2603:1030:807:402::80/125\",\r\n \"2603:1030:807:802::80/125\",\r\n
+ \ \"2603:1030:807:c02::80/125\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\",\r\n \"2603:1030:1005::2a0/125\",\r\n
+ \ \"2603:1030:1005:402::80/125\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\",\r\n \"2603:1040:207::2a0/125\",\r\n
+ \ \"2603:1040:207:402::80/125\",\r\n \"2603:1040:407::340/125\",\r\n
+ \ \"2603:1040:407:402::80/125\",\r\n \"2603:1040:407:802::80/125\",\r\n
+ \ \"2603:1040:407:c02::80/125\",\r\n \"2603:1040:606::2a0/125\",\r\n
+ \ \"2603:1040:606:402::80/125\",\r\n \"2603:1040:806::2a0/125\",\r\n
+ \ \"2603:1040:806:402::80/125\",\r\n \"2603:1040:904::340/125\",\r\n
+ \ \"2603:1040:904:402::80/125\",\r\n \"2603:1040:904:802::80/125\",\r\n
+ \ \"2603:1040:904:c02::80/125\",\r\n \"2603:1040:a06::440/125\",\r\n
+ \ \"2603:1040:a06:402::80/125\",\r\n \"2603:1040:a06:802::80/125\",\r\n
+ \ \"2603:1040:a06:c02::80/125\",\r\n \"2603:1040:b04::2a0/125\",\r\n
+ \ \"2603:1040:b04:402::80/125\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\",\r\n \"2603:1040:d04:1::1f8/125\",\r\n
+ \ \"2603:1040:d04:400::80/125\",\r\n \"2603:1040:d04:400::2f8/125\",\r\n
+ \ \"2603:1040:d04:800::140/125\",\r\n \"2603:1040:e05::20/125\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\",\r\n
+ \ \"2603:1040:1104:1::158/125\",\r\n \"2603:1040:1104:400::80/125\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\",\r\n
+ \ \"2603:1050:403:1::220/125\",\r\n \"2603:1050:403:400::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.53.48.40/29\",\r\n \"20.53.49.96/30\",\r\n \"2603:1010:304::2a0/125\",\r\n
+ \ \"2603:1010:304:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaCentral2\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.114.16/30\",\r\n
+ \ \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n \"2603:1010:404::2a0/125\",\r\n
+ \ \"2603:1010:404:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaEast\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.24/30\",\r\n
+ \ \"13.72.250.239/32\",\r\n \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n
+ \ \"40.79.163.156/30\",\r\n \"40.79.173.4/30\",\r\n \"52.237.253.194/32\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.138.129/32\",\r\n \"13.77.50.64/30\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.BrazilSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CanadaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.40/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.48.197.104/29\",\r\n \"20.48.197.112/30\",\r\n \"40.85.229.9/32\",\r\n
+ \ \"40.85.231.231/32\",\r\n \"52.246.157.4/30\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CanadaEast\",\r\n \"id\": \"AzureKeyVault.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.69.106.64/30\",\r\n \"40.86.224.94/32\",\r\n
+ \ \"40.86.231.180/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"2603:1030:1005::2a0/125\",\r\n \"2603:1030:1005:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralIndia\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n \"104.211.99.174/32\",\r\n
+ \ \"2603:1040:a06::440/125\",\r\n \"2603:1040:a06:402::80/125\",\r\n
+ \ \"2603:1040:a06:802::80/125\",\r\n \"2603:1040:a06:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.61.248/32\",\r\n \"13.89.170.200/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"23.99.132.207/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.176.48.58/32\",\r\n \"104.43.161.34/32\",\r\n
+ \ \"104.43.192.26/32\",\r\n \"104.208.26.47/32\",\r\n \"2603:1030:10::340/125\",\r\n
+ \ \"2603:1030:10:402::80/125\",\r\n \"2603:1030:10:802::80/125\",\r\n
+ \ \"2603:1030:10:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CentralUSEUAP\",\r\n \"id\":
+ \"AzureKeyVault.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"52.176.254.165/32\",\r\n
+ \ \"52.180.176.121/32\",\r\n \"52.180.176.122/32\",\r\n \"2603:1030:f:1::2a0/125\",\r\n
+ \ \"2603:1030:f:400::880/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastAsia\",\r\n \"id\": \"AzureKeyVault.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.144/30\",\r\n \"20.195.74.168/29\",\r\n
+ \ \"20.195.74.176/30\",\r\n \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n
+ \ \"2603:1040:207::2a0/125\",\r\n \"2603:1040:207:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.76.196.75/32\",\r\n \"40.76.212.37/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.87.69.184/32\",\r\n \"40.117.157.122/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastUS2\",\r\n \"id\": \"AzureKeyVault.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.24.216/32\",\r\n \"13.68.29.203/32\",\r\n
+ \ \"13.68.104.240/32\",\r\n \"20.62.60.128/27\",\r\n \"20.186.41.83/32\",\r\n
+ \ \"20.186.47.182/32\",\r\n \"23.101.159.107/32\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.84.47.24/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.177.71.51/32\",\r\n \"52.184.155.181/32\",\r\n \"52.184.158.37/32\",\r\n
+ \ \"52.184.164.12/32\",\r\n \"52.225.218.218/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"2603:1030:40c::340/125\",\r\n \"2603:1030:40c:402::80/125\",\r\n
+ \ \"2603:1030:40c:802::80/125\",\r\n \"2603:1030:40c:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.20.84/30\",\r\n \"20.51.21.64/29\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n
+ \ \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n \"52.225.188.225/32\",\r\n
+ \ \"52.225.191.36/32\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceCentral\",\r\n \"id\":
+ \"AzureKeyVault.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"40.79.130.40/30\",\r\n \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n
+ \ \"40.89.180.10/32\",\r\n \"40.89.180.25/32\",\r\n \"51.138.210.132/30\",\r\n
+ \ \"51.138.211.8/29\",\r\n \"2603:1020:805::340/125\",\r\n
+ \ \"2603:1020:805:402::80/125\",\r\n \"2603:1020:805:802::80/125\",\r\n
+ \ \"2603:1020:805:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceSouth\",\r\n \"id\": \"AzureKeyVault.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.64/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.GermanyNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n
+ \ \"51.116.58.0/30\",\r\n \"2603:1020:d04::2a0/125\",\r\n
+ \ \"2603:1020:d04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.GermanyWestCentral\",\r\n \"id\":
+ \"AzureKeyVault.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.52.88.144/29\",\r\n
+ \ \"20.52.88.152/30\",\r\n \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n
+ \ \"51.116.251.188/30\",\r\n \"2603:1020:c04::340/125\",\r\n
+ \ \"2603:1020:c04:402::80/125\",\r\n \"2603:1020:c04:802::80/125\",\r\n
+ \ \"2603:1020:c04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.JapanEast\",\r\n \"id\": \"AzureKeyVault.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.88/30\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.191.166.120/29\",\r\n \"20.191.167.128/30\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n
+ \ \"2603:1040:407::340/125\",\r\n \"2603:1040:407:402::80/125\",\r\n
+ \ \"2603:1040:407:802::80/125\",\r\n \"2603:1040:407:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.JapanWest\",\r\n
+ \ \"id\": \"AzureKeyVault.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n
+ \ \"40.74.100.48/30\",\r\n \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n
+ \ \"2603:1040:606::2a0/125\",\r\n \"2603:1040:606:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.66.0/30\",\r\n \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.113.72/29\",\r\n \"52.147.113.80/30\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"2603:1040:e05::20/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.232/29\",\r\n
+ \ \"20.49.119.240/28\",\r\n \"23.96.210.207/32\",\r\n \"23.96.250.48/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"168.62.108.27/32\",\r\n
+ \ \"168.62.237.29/32\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthEurope\",\r\n \"id\": \"AzureKeyVault.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.72/30\",\r\n \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n
+ \ \"23.100.57.24/32\",\r\n \"23.100.58.149/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n
+ \ \"52.169.232.147/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.NorwayEast\",\r\n
+ \ \"id\": \"AzureKeyVault.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.8/30\",\r\n
+ \ \"51.120.233.132/30\",\r\n \"51.120.234.128/29\",\r\n \"2603:1020:e04::340/125\",\r\n
+ \ \"2603:1020:e04:402::80/125\",\r\n \"2603:1020:e04:802::80/125\",\r\n
+ \ \"2603:1020:e04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorwayWest\",\r\n \"id\": \"AzureKeyVault.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n
+ \ \"51.120.218.0/30\",\r\n \"2603:1020:f04::2a0/125\",\r\n
+ \ \"2603:1020:f04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.176/29\",\r\n
+ \ \"102.37.160.184/30\",\r\n \"102.133.124.140/30\",\r\n
+ \ \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n \"2603:1000:104::660/125\",\r\n
+ \ \"2603:1000:104:402::80/125\",\r\n \"2603:1000:104:802::80/125\",\r\n
+ \ \"2603:1000:104:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaWest\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.81.88/29\",\r\n
+ \ \"102.37.81.128/30\",\r\n \"102.133.26.0/30\",\r\n \"2603:1000:4::2a0/125\",\r\n
+ \ \"2603:1000:4:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.84.174.143/32\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"40.124.64.128/30\",\r\n \"104.44.136.42/32\",\r\n \"104.210.195.61/32\",\r\n
+ \ \"104.214.18.168/30\",\r\n \"104.215.94.76/32\",\r\n \"104.215.99.117/32\",\r\n
+ \ \"2603:1030:807::340/125\",\r\n \"2603:1030:807:402::80/125\",\r\n
+ \ \"2603:1030:807:802::80/125\",\r\n \"2603:1030:807:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureKeyVault.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.104/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"23.97.50.43/32\",\r\n \"23.101.21.103/32\",\r\n
+ \ \"23.101.21.193/32\",\r\n \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n
+ \ \"40.65.188.244/32\",\r\n \"40.65.189.219/32\",\r\n \"52.148.84.142/32\",\r\n
+ \ \"52.148.84.145/32\",\r\n \"52.187.161.13/32\",\r\n \"52.187.163.139/32\",\r\n
+ \ \"104.215.139.166/32\",\r\n \"104.215.140.132/32\",\r\n
+ \ \"168.63.167.27/32\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthIndia\",\r\n \"id\": \"AzureKeyVault.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.64/30\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.107.58.0/30\",\r\n
+ \ \"51.107.241.116/30\",\r\n \"51.107.242.248/29\",\r\n \"2603:1020:a04::340/125\",\r\n
+ \ \"2603:1020:a04:402::80/125\",\r\n \"2603:1020:a04:802::80/125\",\r\n
+ \ \"2603:1020:a04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandWest\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.0/30\",\r\n \"51.107.250.44/30\",\r\n
+ \ \"51.107.251.104/29\",\r\n \"2603:1020:b04::2a0/125\",\r\n
+ \ \"2603:1020:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.UAECentral\",\r\n \"id\": \"AzureKeyVault.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.228/30\",\r\n \"20.45.90.72/29\",\r\n \"20.45.90.80/30\",\r\n
+ \ \"2603:1040:b04::2a0/125\",\r\n \"2603:1040:b04:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UAENorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"65.52.250.0/30\",\r\n
+ \ \"2603:1040:904::340/125\",\r\n \"2603:1040:904:402::80/125\",\r\n
+ \ \"2603:1040:904:802::80/125\",\r\n \"2603:1040:904:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"2603:1020:305:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKWest\",\r\n
+ \ \"id\": \"AzureKeyVault.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.58.67.48/29\",\r\n
+ \ \"20.58.67.56/30\",\r\n \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestCentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.112/30\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n
+ \ \"52.161.31.139/32\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestEurope\",\r\n \"id\": \"AzureKeyVault.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.72/30\",\r\n \"13.80.247.19/32\",\r\n \"13.80.247.42/32\",\r\n
+ \ \"20.61.103.224/29\",\r\n \"20.61.103.232/30\",\r\n \"23.97.178.0/32\",\r\n
+ \ \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"104.46.40.31/32\",\r\n \"2603:1020:206::340/125\",\r\n
+ \ \"2603:1020:206:402::80/125\",\r\n \"2603:1020:206:802::80/125\",\r\n
+ \ \"2603:1020:206:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestIndia\",\r\n \"id\": \"AzureKeyVault.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.80.48/29\",\r\n \"20.192.80.56/30\",\r\n
+ \ \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n \"104.211.167.57/32\",\r\n
+ \ \"2603:1040:806::2a0/125\",\r\n \"2603:1040:806:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.66.2.28/30\",\r\n
+ \ \"20.66.5.128/29\",\r\n \"40.112.242.144/30\",\r\n \"104.42.6.91/32\",\r\n
+ \ \"104.42.136.180/32\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestUS2\",\r\n \"id\": \"AzureKeyVault.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n
+ \ \"51.143.6.21/32\",\r\n \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n
+ \ \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n \"52.175.236.86/32\",\r\n
+ \ \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n \"52.183.93.92/32\",\r\n
+ \ \"52.183.94.166/32\",\r\n \"52.247.193.69/32\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning\",\r\n \"id\": \"AzureMachineLearning\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.87.135/32\",\r\n \"13.66.140.80/28\",\r\n
+ \ \"13.67.8.224/28\",\r\n \"13.69.64.192/28\",\r\n \"13.69.106.192/28\",\r\n
+ \ \"13.69.227.192/28\",\r\n \"13.70.72.144/28\",\r\n \"13.71.170.192/28\",\r\n
+ \ \"13.71.173.80/28\",\r\n \"13.71.194.240/28\",\r\n \"13.73.240.16/28\",\r\n
+ \ \"13.73.240.112/28\",\r\n \"13.73.240.240/28\",\r\n \"13.73.248.96/28\",\r\n
+ \ \"13.74.107.160/28\",\r\n \"13.75.36.16/28\",\r\n \"13.77.50.224/28\",\r\n
+ \ \"13.78.106.208/28\",\r\n \"13.86.195.35/32\",\r\n \"13.87.56.112/28\",\r\n
+ \ \"13.87.122.112/28\",\r\n \"13.87.160.129/32\",\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.36.106.80/28\",\r\n \"20.36.114.160/28\",\r\n \"20.37.67.80/28\",\r\n
+ \ \"20.37.74.208/28\",\r\n \"20.37.152.240/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.38.80.96/28\",\r\n \"20.38.128.48/28\",\r\n \"20.38.147.128/28\",\r\n
+ \ \"20.39.1.205/32\",\r\n \"20.39.11.80/28\",\r\n \"20.40.141.171/32\",\r\n
+ \ \"20.41.0.240/28\",\r\n \"20.41.64.80/28\",\r\n \"20.41.197.0/28\",\r\n
+ \ \"20.42.0.240/28\",\r\n \"20.42.129.16/28\",\r\n \"20.42.227.48/28\",\r\n
+ \ \"20.43.40.96/28\",\r\n \"20.43.64.96/28\",\r\n \"20.43.120.112/28\",\r\n
+ \ \"20.43.128.112/28\",\r\n \"20.44.3.32/28\",\r\n \"20.44.26.224/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"20.46.13.192/28\",\r\n \"20.72.16.48/28\",\r\n
+ \ \"20.150.161.128/28\",\r\n \"20.150.171.80/28\",\r\n \"20.150.179.64/28\",\r\n
+ \ \"20.150.187.64/28\",\r\n \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n
+ \ \"20.189.106.80/28\",\r\n \"20.192.99.64/28\",\r\n \"20.192.160.48/28\",\r\n
+ \ \"20.192.225.144/28\",\r\n \"20.192.235.16/28\",\r\n \"23.98.82.192/28\",\r\n
+ \ \"23.100.232.216/32\",\r\n \"40.66.61.146/32\",\r\n \"40.67.59.80/28\",\r\n
+ \ \"40.69.106.224/28\",\r\n \"40.70.146.192/28\",\r\n \"40.70.154.161/32\",\r\n
+ \ \"40.71.11.64/28\",\r\n \"40.74.24.96/28\",\r\n \"40.74.100.176/28\",\r\n
+ \ \"40.74.147.48/28\",\r\n \"40.75.35.48/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"40.78.202.80/28\",\r\n \"40.78.227.32/28\",\r\n \"40.78.234.128/28\",\r\n
+ \ \"40.78.242.176/28\",\r\n \"40.78.250.112/28\",\r\n \"40.79.130.192/28\",\r\n
+ \ \"40.79.138.128/28\",\r\n \"40.79.146.128/28\",\r\n \"40.79.154.64/28\",\r\n
+ \ \"40.79.162.48/28\",\r\n \"40.79.170.224/28\",\r\n \"40.79.178.224/28\",\r\n
+ \ \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n \"40.80.51.64/28\",\r\n
+ \ \"40.80.57.176/28\",\r\n \"40.80.169.160/28\",\r\n \"40.80.184.80/28\",\r\n
+ \ \"40.80.188.96/28\",\r\n \"40.81.27.228/32\",\r\n \"40.82.187.230/32\",\r\n
+ \ \"40.82.248.80/28\",\r\n \"40.89.17.208/28\",\r\n \"40.90.184.249/32\",\r\n
+ \ \"40.91.77.76/32\",\r\n \"40.112.242.176/28\",\r\n \"40.119.8.80/28\",\r\n
+ \ \"51.11.24.49/32\",\r\n \"51.12.47.32/28\",\r\n \"51.12.99.80/28\",\r\n
+ \ \"51.12.198.224/28\",\r\n \"51.12.203.80/28\",\r\n \"51.12.227.64/28\",\r\n
+ \ \"51.12.235.64/28\",\r\n \"51.104.8.64/27\",\r\n \"51.104.24.96/28\",\r\n
+ \ \"51.105.67.16/28\",\r\n \"51.105.75.128/28\",\r\n \"51.105.88.224/28\",\r\n
+ \ \"51.105.129.135/32\",\r\n \"51.107.59.48/28\",\r\n \"51.107.147.32/28\",\r\n
+ \ \"51.107.155.48/28\",\r\n \"51.116.49.176/28\",\r\n \"51.116.59.48/28\",\r\n
+ \ \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n \"51.116.250.224/28\",\r\n
+ \ \"51.120.99.64/28\",\r\n \"51.120.107.64/28\",\r\n \"51.120.211.64/28\",\r\n
+ \ \"51.120.219.80/28\",\r\n \"51.120.227.80/28\",\r\n \"51.120.234.224/28\",\r\n
+ \ \"51.137.161.224/28\",\r\n \"51.140.146.208/28\",\r\n \"51.140.210.208/28\",\r\n
+ \ \"51.144.184.47/32\",\r\n \"52.138.90.144/28\",\r\n \"52.138.226.160/28\",\r\n
+ \ \"52.139.3.33/32\",\r\n \"52.140.107.96/28\",\r\n \"52.141.25.58/32\",\r\n
+ \ \"52.141.26.97/32\",\r\n \"52.148.163.43/32\",\r\n \"52.150.136.80/28\",\r\n
+ \ \"52.151.111.249/32\",\r\n \"52.155.90.254/32\",\r\n \"52.155.115.7/32\",\r\n
+ \ \"52.156.193.50/32\",\r\n \"52.162.106.176/28\",\r\n \"52.167.106.160/28\",\r\n
+ \ \"52.177.164.219/32\",\r\n \"52.182.139.32/28\",\r\n \"52.184.87.76/32\",\r\n
+ \ \"52.185.70.56/32\",\r\n \"52.228.80.80/28\",\r\n \"52.230.56.136/32\",\r\n
+ \ \"52.231.18.192/28\",\r\n \"52.231.146.208/28\",\r\n \"52.236.186.192/28\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"52.246.155.128/28\",\r\n \"52.249.59.91/32\",\r\n
+ \ \"52.252.160.26/32\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"52.253.227.208/32\",\r\n \"52.255.214.109/32\",\r\n \"52.255.217.127/32\",\r\n
+ \ \"65.52.250.192/28\",\r\n \"102.133.27.32/28\",\r\n \"102.133.58.224/28\",\r\n
+ \ \"102.133.122.224/27\",\r\n \"102.133.155.32/28\",\r\n
+ \ \"102.133.251.64/28\",\r\n \"104.208.16.160/28\",\r\n \"104.208.144.160/28\",\r\n
+ \ \"104.211.81.144/28\",\r\n \"104.214.19.32/28\",\r\n \"191.233.8.48/28\",\r\n
+ \ \"191.233.203.144/28\",\r\n \"191.233.240.165/32\",\r\n
+ \ \"191.233.242.167/32\",\r\n \"191.234.147.64/28\",\r\n
+ \ \"191.234.155.64/28\",\r\n \"191.235.224.96/28\",\r\n \"2603:1000:4::300/122\",\r\n
+ \ \"2603:1000:104:1::2c0/122\",\r\n \"2603:1010:6:1::2c0/122\",\r\n
+ \ \"2603:1010:101::300/122\",\r\n \"2603:1010:304::300/122\",\r\n
+ \ \"2603:1010:404::300/122\",\r\n \"2603:1020:5:1::2c0/122\",\r\n
+ \ \"2603:1020:206:1::2c0/122\",\r\n \"2603:1020:305::300/122\",\r\n
+ \ \"2603:1020:405::300/122\",\r\n \"2603:1020:605::300/122\",\r\n
+ \ \"2603:1020:705:1::2c0/122\",\r\n \"2603:1020:805:1::2c0/122\",\r\n
+ \ \"2603:1020:905::300/122\",\r\n \"2603:1020:a04:1::2c0/122\",\r\n
+ \ \"2603:1020:b04::300/122\",\r\n \"2603:1020:c04:1::2c0/122\",\r\n
+ \ \"2603:1020:d04::300/122\",\r\n \"2603:1020:e04:1::2c0/122\",\r\n
+ \ \"2603:1020:f04::300/122\",\r\n \"2603:1020:1004::2c0/122\",\r\n
+ \ \"2603:1020:1104::240/122\",\r\n \"2603:1030:f:1::300/122\",\r\n
+ \ \"2603:1030:10:1::2c0/122\",\r\n \"2603:1030:104:1::2c0/122\",\r\n
+ \ \"2603:1030:107::240/122\",\r\n \"2603:1030:210:1::2c0/122\",\r\n
+ \ \"2603:1030:40b:1::2c0/122\",\r\n \"2603:1030:40c:1::2c0/122\",\r\n
+ \ \"2603:1030:504:1::2c0/122\",\r\n \"2603:1030:608::300/122\",\r\n
+ \ \"2603:1030:807:1::2c0/122\",\r\n \"2603:1030:a07::300/122\",\r\n
+ \ \"2603:1030:b04::300/122\",\r\n \"2603:1030:c06:1::2c0/122\",\r\n
+ \ \"2603:1030:f05:1::2c0/122\",\r\n \"2603:1030:1005::300/122\",\r\n
+ \ \"2603:1040:5:1::2c0/122\",\r\n \"2603:1040:207::300/122\",\r\n
+ \ \"2603:1040:407:1::2c0/122\",\r\n \"2603:1040:606::300/122\",\r\n
+ \ \"2603:1040:806::300/122\",\r\n \"2603:1040:904:1::2c0/122\",\r\n
+ \ \"2603:1040:a06:1::2c0/122\",\r\n \"2603:1040:b04::300/122\",\r\n
+ \ \"2603:1040:c06::300/122\",\r\n \"2603:1040:d04::2c0/122\",\r\n
+ \ \"2603:1040:f05:1::2c0/122\",\r\n \"2603:1040:1104::240/122\",\r\n
+ \ \"2603:1050:6:1::2c0/122\",\r\n \"2603:1050:403::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.AustraliaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.144/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n \"40.79.162.48/28\",\r\n
+ \ \"40.79.170.224/28\",\r\n \"2603:1010:6:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CanadaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.224/28\",\r\n \"40.89.17.208/28\",\r\n
+ \ \"2603:1030:1005::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.CentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.37.152.240/28\",\r\n \"52.182.139.32/28\",\r\n \"52.185.70.56/32\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"104.208.16.160/28\",\r\n \"2603:1030:10:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureMachineLearning.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.192/28\",\r\n \"40.78.202.80/28\",\r\n
+ \ \"2603:1030:f:1::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureMachineLearning.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n
+ \ \"51.116.250.224/28\",\r\n \"2603:1020:c04:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.JapanEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.208/28\",\r\n \"20.43.64.96/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n
+ \ \"52.155.115.7/32\",\r\n \"2603:1040:407:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.SouthIndia\",\r\n
+ \ \"id\": \"AzureMachineLearning.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.197.0/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"2603:1040:c06::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.WestCentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.240/28\",\r\n
+ \ \"52.150.136.80/28\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"2603:1030:b04::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor\",\r\n \"id\": \"AzureMonitor\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"5\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.96.175/32\",\r\n \"13.65.206.67/32\",\r\n
+ \ \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n \"13.66.37.172/32\",\r\n
+ \ \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.67.9.192/28\",\r\n \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n
+ \ \"13.67.15.0/32\",\r\n \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n
+ \ \"13.68.31.237/32\",\r\n \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n
+ \ \"13.68.109.212/32\",\r\n \"13.68.111.247/32\",\r\n \"13.69.51.175/32\",\r\n
+ \ \"13.69.51.218/32\",\r\n \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n
+ \ \"13.69.67.60/30\",\r\n \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n
+ \ \"13.69.106.208/28\",\r\n \"13.69.109.224/27\",\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.72.232/29\",\r\n \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n
+ \ \"13.70.124.27/32\",\r\n \"13.70.127.61/32\",\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.73.26.213/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n
+ \ \"13.75.38.0/28\",\r\n \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n
+ \ \"13.75.117.221/32\",\r\n \"13.75.119.169/32\",\r\n \"13.75.195.15/32\",\r\n
+ \ \"13.76.85.243/32\",\r\n \"13.76.87.86/32\",\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"13.77.150.166/32\",\r\n
+ \ \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n \"13.78.10.58/32\",\r\n
+ \ \"13.78.13.189/32\",\r\n \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n
+ \ \"13.78.109.112/29\",\r\n \"13.78.111.192/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"13.80.134.255/32\",\r\n \"13.82.100.176/32\",\r\n \"13.82.184.151/32\",\r\n
+ \ \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n \"13.84.149.186/32\",\r\n
+ \ \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n \"13.84.225.10/32\",\r\n
+ \ \"13.85.70.142/32\",\r\n \"13.86.218.224/28\",\r\n \"13.86.218.248/29\",\r\n
+ \ \"13.86.223.128/26\",\r\n \"13.87.56.248/29\",\r\n \"13.87.57.128/28\",\r\n
+ \ \"13.87.122.248/29\",\r\n \"13.87.123.128/28\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.88.230.43/32\",\r\n \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n
+ \ \"13.89.42.127/32\",\r\n \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n
+ \ \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n \"13.90.249.229/32\",\r\n
+ \ \"13.90.251.123/32\",\r\n \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n
+ \ \"13.92.40.198/32\",\r\n \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n
+ \ \"13.92.179.52/32\",\r\n \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n
+ \ \"13.92.254.218/32\",\r\n \"13.92.255.146/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"13.94.39.13/32\",\r\n
+ \ \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n \"20.36.114.200/29\",\r\n
+ \ \"20.36.114.208/28\",\r\n \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n
+ \ \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.37.192.68/31\",\r\n \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n
+ \ \"20.37.198.140/32\",\r\n \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.38.80.68/31\",\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"20.38.143.0/27\",\r\n \"20.38.143.44/30\",\r\n
+ \ \"20.38.146.152/29\",\r\n \"20.38.147.144/29\",\r\n \"20.38.152.32/27\",\r\n
+ \ \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.40.124.0/32\",\r\n \"20.40.137.91/32\",\r\n \"20.40.140.212/32\",\r\n
+ \ \"20.40.160.120/32\",\r\n \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n
+ \ \"20.40.206.128/28\",\r\n \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n
+ \ \"20.40.228.0/26\",\r\n \"20.41.49.208/32\",\r\n \"20.41.64.68/31\",\r\n
+ \ \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n \"20.41.69.16/28\",\r\n
+ \ \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n \"20.41.208.32/27\",\r\n
+ \ \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n \"20.42.73.128/25\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n
+ \ \"20.42.230.224/29\",\r\n \"20.42.230.232/31\",\r\n \"20.43.40.68/31\",\r\n
+ \ \"20.43.41.178/31\",\r\n \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n
+ \ \"20.43.44.224/28\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.43.98.234/32\",\r\n
+ \ \"20.43.99.158/32\",\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n \"20.44.3.48/28\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"20.44.16.0/29\",\r\n \"20.44.17.0/29\",\r\n \"20.44.26.152/29\",\r\n
+ \ \"20.44.26.248/29\",\r\n \"20.44.73.196/32\",\r\n \"20.44.192.217/32\",\r\n
+ \ \"20.45.122.152/29\",\r\n \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n
+ \ \"20.45.125.224/28\",\r\n \"20.46.10.224/27\",\r\n \"20.46.12.196/30\",\r\n
+ \ \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n \"20.48.193.224/27\",\r\n
+ \ \"20.49.83.32/28\",\r\n \"20.49.84.32/27\",\r\n \"20.49.91.32/28\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.49.99.44/31\",\r\n \"20.49.99.64/28\",\r\n
+ \ \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n \"20.49.109.46/31\",\r\n
+ \ \"20.49.109.80/28\",\r\n \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n
+ \ \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n \"20.49.114.48/31\",\r\n
+ \ \"20.49.120.64/28\",\r\n \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n
+ \ \"20.50.68.120/30\",\r\n \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n
+ \ \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n \"20.52.64.32/27\",\r\n
+ \ \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n \"20.66.2.192/26\",\r\n
+ \ \"20.72.20.48/28\",\r\n \"20.72.21.0/30\",\r\n \"20.72.21.32/27\",\r\n
+ \ \"20.72.28.192/27\",\r\n \"20.135.13.192/26\",\r\n \"20.150.167.184/29\",\r\n
+ \ \"20.150.171.208/29\",\r\n \"20.150.173.0/28\",\r\n \"20.150.178.152/29\",\r\n
+ \ \"20.150.181.96/28\",\r\n \"20.150.182.32/27\",\r\n \"20.150.186.152/29\",\r\n
+ \ \"20.150.241.64/29\",\r\n \"20.150.241.72/30\",\r\n \"20.150.241.96/27\",\r\n
+ \ \"20.187.197.192/27\",\r\n \"20.188.36.28/32\",\r\n \"20.189.109.144/28\",\r\n
+ \ \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n \"20.189.111.24/31\",\r\n
+ \ \"20.189.172.0/25\",\r\n \"20.189.225.128/27\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.50.192/28\",\r\n
+ \ \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n \"20.192.167.160/27\",\r\n
+ \ \"20.192.231.244/30\",\r\n \"20.192.235.144/28\",\r\n \"20.193.96.32/27\",\r\n
+ \ \"20.193.194.24/29\",\r\n \"20.193.194.32/29\",\r\n \"20.193.194.40/30\",\r\n
+ \ \"20.193.203.112/28\",\r\n \"20.193.204.64/27\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"23.96.28.38/32\",\r\n
+ \ \"23.96.245.125/32\",\r\n \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n
+ \ \"23.97.65.103/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"23.100.90.7/32\",\r\n \"23.100.94.221/32\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.100.228.32/32\",\r\n \"23.101.0.142/32\",\r\n
+ \ \"23.101.9.4/32\",\r\n \"23.101.13.65/32\",\r\n \"23.101.69.223/32\",\r\n
+ \ \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n \"23.101.239.238/32\",\r\n
+ \ \"23.102.44.211/32\",\r\n \"23.102.45.216/32\",\r\n \"23.102.66.132/32\",\r\n
+ \ \"23.102.77.48/32\",\r\n \"23.102.181.197/32\",\r\n \"40.64.132.128/28\",\r\n
+ \ \"40.64.132.240/28\",\r\n \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n
+ \ \"40.64.134.138/32\",\r\n \"40.67.52.224/27\",\r\n \"40.67.59.192/28\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.69.81.159/32\",\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.69.194.158/32\",\r\n \"40.70.23.205/32\",\r\n
+ \ \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n \"40.71.12.224/28\",\r\n
+ \ \"40.71.12.240/30\",\r\n \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n
+ \ \"40.71.14.112/30\",\r\n \"40.71.183.225/32\",\r\n \"40.74.24.68/31\",\r\n
+ \ \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n \"40.74.101.32/28\",\r\n
+ \ \"40.74.101.200/29\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.74.249.98/32\",\r\n \"40.75.34.40/29\",\r\n
+ \ \"40.75.35.64/29\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n \"40.77.24.27/32\",\r\n
+ \ \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.78.195.16/28\",\r\n
+ \ \"40.78.196.48/29\",\r\n \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.78.234.56/29\",\r\n
+ \ \"40.78.234.144/28\",\r\n \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n
+ \ \"40.78.247.64/26\",\r\n \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n
+ \ \"40.78.253.192/26\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.79.154.80/29\",\r\n \"40.79.156.32/29\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.79.179.8/29\",\r\n
+ \ \"40.79.179.16/28\",\r\n \"40.79.187.8/29\",\r\n \"40.79.190.160/27\",\r\n
+ \ \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n \"40.80.50.152/29\",\r\n
+ \ \"40.80.51.80/29\",\r\n \"40.80.180.160/27\",\r\n \"40.80.191.224/28\",\r\n
+ \ \"40.81.58.225/32\",\r\n \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n
+ \ \"40.84.189.107/32\",\r\n \"40.84.192.116/32\",\r\n \"40.85.180.90/32\",\r\n
+ \ \"40.85.201.168/32\",\r\n \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"40.86.201.128/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.89.153.171/32\",\r\n
+ \ \"40.89.189.61/32\",\r\n \"40.112.49.101/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.117.80.207/32\",\r\n
+ \ \"40.117.95.162/32\",\r\n \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n
+ \ \"40.117.197.224/32\",\r\n \"40.118.129.58/32\",\r\n \"40.119.4.128/32\",\r\n
+ \ \"40.119.8.72/31\",\r\n \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"40.120.75.32/28\",\r\n \"40.121.57.2/32\",\r\n
+ \ \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n \"40.121.163.228/32\",\r\n
+ \ \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"40.126.246.183/32\",\r\n \"40.127.75.125/32\",\r\n \"40.127.84.197/32\",\r\n
+ \ \"40.127.144.141/32\",\r\n \"51.11.97.96/27\",\r\n \"51.12.17.20/30\",\r\n
+ \ \"51.12.17.56/29\",\r\n \"51.12.17.128/29\",\r\n \"51.12.25.56/29\",\r\n
+ \ \"51.12.25.192/29\",\r\n \"51.12.25.200/30\",\r\n \"51.12.46.0/27\",\r\n
+ \ \"51.12.99.72/29\",\r\n \"51.12.102.192/27\",\r\n \"51.12.195.224/27\",\r\n
+ \ \"51.12.203.208/28\",\r\n \"51.12.205.96/27\",\r\n \"51.12.226.152/29\",\r\n
+ \ \"51.12.234.152/29\",\r\n \"51.12.237.32/27\",\r\n \"51.13.128.32/27\",\r\n
+ \ \"51.13.136.192/27\",\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.105.248.23/32\",\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n \"51.107.148.0/28\",\r\n
+ \ \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n \"51.107.156.48/29\",\r\n
+ \ \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n \"51.116.245.96/28\",\r\n
+ \ \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.219.208/28\",\r\n
+ \ \"51.120.232.34/31\",\r\n \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n
+ \ \"51.120.235.240/28\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.6.23/32\",\r\n
+ \ \"51.140.54.208/32\",\r\n \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n
+ \ \"51.140.148.48/28\",\r\n \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n
+ \ \"51.140.163.207/32\",\r\n \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n
+ \ \"51.140.211.160/28\",\r\n \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"51.143.165.22/32\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n \"51.145.44.242/32\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.138.31.112/32\",\r\n \"52.138.31.127/32\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"52.138.222.110/32\",\r\n
+ \ \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n \"52.139.8.32/32\",\r\n
+ \ \"52.139.106.160/27\",\r\n \"52.140.104.68/31\",\r\n \"52.140.108.96/28\",\r\n
+ \ \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n \"52.140.108.240/31\",\r\n
+ \ \"52.141.22.149/32\",\r\n \"52.141.22.239/32\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.150.36.187/32\",\r\n
+ \ \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n \"52.150.154.24/29\",\r\n
+ \ \"52.150.154.32/28\",\r\n \"52.151.11.176/32\",\r\n \"52.155.118.97/32\",\r\n
+ \ \"52.155.162.238/32\",\r\n \"52.156.40.142/32\",\r\n \"52.156.168.82/32\",\r\n
+ \ \"52.161.8.76/32\",\r\n \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n
+ \ \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n \"52.162.110.168/29\",\r\n
+ \ \"52.162.214.75/32\",\r\n \"52.163.94.131/32\",\r\n \"52.163.122.20/32\",\r\n
+ \ \"52.164.120.183/32\",\r\n \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n
+ \ \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n \"52.165.38.20/32\",\r\n
+ \ \"52.165.150.242/32\",\r\n \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n
+ \ \"52.167.221.184/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.169.4.236/32\",\r\n \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n
+ \ \"52.169.64.244/32\",\r\n \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n
+ \ \"52.172.113.64/27\",\r\n \"52.172.209.125/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.175.198.74/32\",\r\n \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.177.223.60/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.179.192.178/32\",\r\n
+ \ \"52.180.160.132/32\",\r\n \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n
+ \ \"52.180.182.209/32\",\r\n \"52.182.138.216/29\",\r\n \"52.182.139.48/29\",\r\n
+ \ \"52.183.41.109/32\",\r\n \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n
+ \ \"52.183.95.86/32\",\r\n \"52.183.127.155/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"52.185.132.101/32\",\r\n \"52.185.132.170/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.170.253/32\",\r\n \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n
+ \ \"52.224.162.220/32\",\r\n \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n
+ \ \"52.228.80.68/31\",\r\n \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n
+ \ \"52.228.86.152/29\",\r\n \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n
+ \ \"52.229.25.130/32\",\r\n \"52.229.37.75/32\",\r\n \"52.229.218.221/32\",\r\n
+ \ \"52.229.225.6/32\",\r\n \"52.230.224.237/32\",\r\n \"52.231.18.240/28\",\r\n
+ \ \"52.231.28.204/32\",\r\n \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n
+ \ \"52.231.67.208/32\",\r\n \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n
+ \ \"52.231.111.52/32\",\r\n \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n
+ \ \"52.232.35.33/32\",\r\n \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n
+ \ \"52.236.186.88/29\",\r\n \"52.236.186.208/28\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.237.157.70/32\",\r\n \"52.242.230.209/32\",\r\n \"52.246.154.152/29\",\r\n
+ \ \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n \"52.247.202.90/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"65.52.122.208/32\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"102.37.64.128/27\",\r\n
+ \ \"102.37.80.64/27\",\r\n \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n
+ \ \"102.133.122.152/29\",\r\n \"102.133.123.240/29\",\r\n
+ \ \"102.133.126.64/27\",\r\n \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n
+ \ \"102.133.162.233/32\",\r\n \"102.133.216.68/31\",\r\n
+ \ \"102.133.216.106/31\",\r\n \"102.133.218.144/28\",\r\n
+ \ \"102.133.218.244/30\",\r\n \"102.133.219.128/28\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"102.133.250.152/29\",\r\n
+ \ \"102.133.251.80/29\",\r\n \"104.40.222.36/32\",\r\n \"104.41.61.169/32\",\r\n
+ \ \"104.41.152.101/32\",\r\n \"104.41.157.59/32\",\r\n \"104.41.224.134/32\",\r\n
+ \ \"104.42.40.28/32\",\r\n \"104.44.140.84/32\",\r\n \"104.45.136.42/32\",\r\n
+ \ \"104.45.230.69/32\",\r\n \"104.45.232.72/32\",\r\n \"104.46.123.164/32\",\r\n
+ \ \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n \"104.208.33.155/32\",\r\n
+ \ \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"104.214.70.219/32\",\r\n
+ \ \"104.214.104.109/32\",\r\n \"104.214.164.128/27\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"111.221.88.173/32\",\r\n \"137.116.82.175/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"137.116.226.81/32\",\r\n
+ \ \"137.117.144.33/32\",\r\n \"138.91.9.98/32\",\r\n \"138.91.32.98/32\",\r\n
+ \ \"138.91.37.93/32\",\r\n \"157.55.177.6/32\",\r\n \"168.61.142.0/27\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"168.62.169.17/32\",\r\n \"168.63.174.169/32\",\r\n
+ \ \"168.63.242.221/32\",\r\n \"191.232.33.83/32\",\r\n \"191.232.161.75/32\",\r\n
+ \ \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.233.51.128/28\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.237.224.192/27\",\r\n
+ \ \"191.239.251.90/32\",\r\n \"207.46.224.101/32\",\r\n \"207.46.236.191/32\",\r\n
+ \ \"2603:1000:4::780/121\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\",\r\n
+ \ \"2603:1010:6::60/123\",\r\n \"2603:1010:6::1c0/122\",\r\n
+ \ \"2603:1010:6::300/123\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:1::280/122\",\r\n \"2603:1010:6:402::500/121\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\",\r\n
+ \ \"2603:1010:404::780/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::60/123\",\r\n \"2603:1020:5::1c0/122\",\r\n
+ \ \"2603:1020:5::300/123\",\r\n \"2603:1020:5::360/123\",\r\n
+ \ \"2603:1020:5::500/121\",\r\n \"2603:1020:5:1::280/122\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::60/123\",\r\n
+ \ \"2603:1020:206::1c0/122\",\r\n \"2603:1020:206::300/123\",\r\n
+ \ \"2603:1020:206::360/123\",\r\n \"2603:1020:206::500/121\",\r\n
+ \ \"2603:1020:206:1::280/122\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:305::780/121\",\r\n \"2603:1020:405::780/121\",\r\n
+ \ \"2603:1020:605::780/121\",\r\n \"2603:1020:605:1::280/123\",\r\n
+ \ \"2603:1020:605:1::300/121\",\r\n \"2603:1020:605:402::500/121\",\r\n
+ \ \"2603:1020:705::60/123\",\r\n \"2603:1020:705::1c0/122\",\r\n
+ \ \"2603:1020:705::300/123\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:1::280/122\",\r\n
+ \ \"2603:1020:705:402::500/121\",\r\n \"2603:1020:805::60/123\",\r\n
+ \ \"2603:1020:805::1c0/122\",\r\n \"2603:1020:805::300/123\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:1::280/122\",\r\n \"2603:1020:805:402::500/121\",\r\n
+ \ \"2603:1020:905::780/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::60/123\",\r\n \"2603:1020:a04::1c0/122\",\r\n
+ \ \"2603:1020:a04::300/123\",\r\n \"2603:1020:a04::360/123\",\r\n
+ \ \"2603:1020:a04::500/121\",\r\n \"2603:1020:a04:1::280/122\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04::780/121\",\r\n
+ \ \"2603:1020:b04:1::280/123\",\r\n \"2603:1020:b04:1::300/121\",\r\n
+ \ \"2603:1020:b04:402::500/121\",\r\n \"2603:1020:c01:2::b/128\",\r\n
+ \ \"2603:1020:c01:2::e/128\",\r\n \"2603:1020:c04::60/123\",\r\n
+ \ \"2603:1020:c04::1c0/122\",\r\n \"2603:1020:c04::300/123\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:1::280/122\",\r\n \"2603:1020:c04:402::500/121\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\",\r\n \"2603:1020:e04::60/123\",\r\n
+ \ \"2603:1020:e04::1c0/122\",\r\n \"2603:1020:e04::300/123\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:1::280/122\",\r\n \"2603:1020:e04:402::500/121\",\r\n
+ \ \"2603:1020:f04::780/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004::280/122\",\r\n \"2603:1020:1004:1::380/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::160/123\",\r\n
+ \ \"2603:1020:1104:1::180/122\",\r\n \"2603:1020:1104:1::1c0/123\",\r\n
+ \ \"2603:1020:1104:1::4c0/123\",\r\n \"2603:1020:1104:1::500/121\",\r\n
+ \ \"2603:1020:1104:400::440/123\",\r\n \"2603:1020:1104:400::480/121\",\r\n
+ \ \"2603:1030:7:5::e/128\",\r\n \"2603:1030:7:5::17/128\",\r\n
+ \ \"2603:1030:7:5::29/128\",\r\n \"2603:1030:7:5::32/128\",\r\n
+ \ \"2603:1030:7:6::10/128\",\r\n \"2603:1030:7:6::14/128\",\r\n
+ \ \"2603:1030:7:6::1b/128\",\r\n \"2603:1030:7:6::37/128\",\r\n
+ \ \"2603:1030:7:6::3f/128\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::60/123\",\r\n
+ \ \"2603:1030:104::1c0/122\",\r\n \"2603:1030:104::300/123\",\r\n
+ \ \"2603:1030:104::360/123\",\r\n \"2603:1030:104::500/121\",\r\n
+ \ \"2603:1030:104:1::280/122\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::80/121\",\r\n \"2603:1030:107:1::200/123\",\r\n
+ \ \"2603:1030:107:1::280/121\",\r\n \"2603:1030:107:400::3c0/123\",\r\n
+ \ \"2603:1030:107:400::480/121\",\r\n \"2603:1030:210::60/123\",\r\n
+ \ \"2603:1030:210::1c0/122\",\r\n \"2603:1030:210::300/123\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:1::280/122\",\r\n \"2603:1030:210:402::500/121\",\r\n
+ \ \"2603:1030:302:402::80/123\",\r\n \"2603:1030:302:402::100/121\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\",\r\n
+ \ \"2603:1030:504::380/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:1::280/122\",\r\n
+ \ \"2603:1030:504:c02::100/123\",\r\n \"2603:1030:504:c02::180/121\",\r\n
+ \ \"2603:1030:608::780/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:800:5::bfee:a418/128\",\r\n \"2603:1030:800:5::bfee:a429/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a42a/128\",\r\n \"2603:1030:800:5::bfee:a435/128\",\r\n
+ \ \"2603:1030:807::60/123\",\r\n \"2603:1030:807::1c0/122\",\r\n
+ \ \"2603:1030:807::300/123\",\r\n \"2603:1030:807::360/123\",\r\n
+ \ \"2603:1030:807::500/121\",\r\n \"2603:1030:807:1::280/122\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\",\r\n
+ \ \"2603:1030:c02:2::4e1/128\",\r\n \"2603:1030:c06:1::280/122\",\r\n
+ \ \"2603:1030:c06:2::80/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:d00::1d/128\",\r\n \"2603:1030:d00::48/128\",\r\n
+ \ \"2603:1030:d00::5a/128\",\r\n \"2603:1030:d00::82/128\",\r\n
+ \ \"2603:1030:d00::84/128\",\r\n \"2603:1030:d00::9a/128\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005::780/121\",\r\n
+ \ \"2603:1030:1005:1::280/123\",\r\n \"2603:1030:1005:1::300/121\",\r\n
+ \ \"2603:1030:1005:402::500/121\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2603:1040:207::780/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::60/123\",\r\n \"2603:1040:407::1c0/122\",\r\n
+ \ \"2603:1040:407::300/123\",\r\n \"2603:1040:407::360/123\",\r\n
+ \ \"2603:1040:407::500/121\",\r\n \"2603:1040:407:1::280/122\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606::780/121\",\r\n
+ \ \"2603:1040:606:1::280/123\",\r\n \"2603:1040:606:1::300/121\",\r\n
+ \ \"2603:1040:606:402::500/121\",\r\n \"2603:1040:806::780/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\",\r\n
+ \ \"2603:1040:b00:2::b/128\",\r\n \"2603:1040:b04::780/121\",\r\n
+ \ \"2603:1040:b04:1::280/123\",\r\n \"2603:1040:b04:1::300/121\",\r\n
+ \ \"2603:1040:b04:402::500/121\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04::280/122\",\r\n
+ \ \"2603:1040:d04:1::380/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::160/123\",\r\n
+ \ \"2603:1040:1104:1::180/122\",\r\n \"2603:1040:1104:1::1c0/123\",\r\n
+ \ \"2603:1040:1104:1::580/121\",\r\n \"2603:1040:1104:400::460/123\",\r\n
+ \ \"2603:1050:6::60/123\",\r\n \"2603:1050:6::1c0/122\",\r\n
+ \ \"2603:1050:6::300/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:1::280/122\",\r\n
+ \ \"2603:1050:6:402::580/121\",\r\n \"2603:1050:6:c02::2a0/123\",\r\n
+ \ \"2603:1050:403::280/122\",\r\n \"2603:1050:403:1::80/121\",\r\n
+ \ \"2603:1050:403:1::240/123\",\r\n \"2603:1050:403:1::300/121\",\r\n
+ \ \"2603:1050:403:400::580/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\",\r\n \"2a01:111:f100:4002::9d37:c0bd/128\",\r\n
+ \ \"2a01:111:f100:6000::4134:a6cf/128\",\r\n \"2a01:111:f100:7000::6fdd:5343/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:91e4/128\",\r\n \"2a01:111:f100:9001::1761:958a/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:9696/128\",\r\n \"2a01:111:f100:a001::4134:e463/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureMonitor\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.53.0.128/27\",\r\n \"20.53.48.64/27\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.200/29\",\r\n \"20.36.114.208/28\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.193.96.32/27\",\r\n \"2603:1010:404::780/121\",\r\n
+ \ \"2603:1010:404:1::280/123\",\r\n \"2603:1010:404:1::300/121\",\r\n
+ \ \"2603:1010:404:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaEast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.232/29\",\r\n
+ \ \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n \"13.70.124.27/32\",\r\n
+ \ \"13.70.127.61/32\",\r\n \"13.75.195.15/32\",\r\n \"20.37.192.68/31\",\r\n
+ \ \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n \"20.37.198.140/32\",\r\n
+ \ \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n \"20.40.124.0/32\",\r\n
+ \ \"20.43.98.234/32\",\r\n \"20.43.99.158/32\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.126.246.183/32\",\r\n
+ \ \"52.156.168.82/32\",\r\n \"2603:1010:6::60/123\",\r\n
+ \ \"2603:1010:6::1c0/122\",\r\n \"2603:1010:6::300/123\",\r\n
+ \ \"2603:1010:6::500/121\",\r\n \"2603:1010:6:1::280/122\",\r\n
+ \ \"2603:1010:6:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"20.40.160.120/32\",\r\n
+ \ \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n \"20.42.230.224/29\",\r\n
+ \ \"20.42.230.232/31\",\r\n \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n
+ \ \"23.101.239.238/32\",\r\n \"40.81.58.225/32\",\r\n \"40.127.75.125/32\",\r\n
+ \ \"40.127.84.197/32\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.BrazilSouth\",\r\n
+ \ \"id\": \"AzureMonitor.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.61.169/32\",\r\n \"191.232.33.83/32\",\r\n
+ \ \"191.232.161.75/32\",\r\n \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.239.251.90/32\",\r\n \"2603:1050:6::60/123\",\r\n
+ \ \"2603:1050:6::1c0/122\",\r\n \"2603:1050:6::300/123\",\r\n
+ \ \"2603:1050:6::360/123\",\r\n \"2603:1050:6::500/121\",\r\n
+ \ \"2603:1050:6:1::280/122\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaCentral\",\r\n \"id\":
+ \"AzureMonitor.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.88.230.43/32\",\r\n
+ \ \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n \"20.38.146.152/29\",\r\n
+ \ \"20.38.147.144/29\",\r\n \"20.48.193.224/27\",\r\n \"40.85.201.168/32\",\r\n
+ \ \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n \"52.138.31.112/32\",\r\n
+ \ \"52.138.31.127/32\",\r\n \"52.139.8.32/32\",\r\n \"52.228.80.68/31\",\r\n
+ \ \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n \"52.228.86.152/29\",\r\n
+ \ \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.246.154.152/29\",\r\n \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaEast\",\r\n \"id\": \"AzureMonitor.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.86.201.128/32\",\r\n \"52.139.106.160/27\",\r\n
+ \ \"2603:1030:1005::780/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralIndia\",\r\n
+ \ \"id\": \"AzureMonitor.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"40.80.50.152/29\",\r\n \"40.80.51.80/29\",\r\n \"52.140.104.68/31\",\r\n
+ \ \"52.140.108.96/28\",\r\n \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n
+ \ \"52.140.108.240/31\",\r\n \"52.172.209.125/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.89.42.127/32\",\r\n
+ \ \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n \"20.40.206.128/28\",\r\n
+ \ \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n
+ \ \"40.77.24.27/32\",\r\n \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n
+ \ \"52.165.38.20/32\",\r\n \"52.165.150.242/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.182.138.216/29\",\r\n
+ \ \"52.182.139.48/29\",\r\n \"52.230.224.237/32\",\r\n \"52.242.230.209/32\",\r\n
+ \ \"104.208.33.155/32\",\r\n \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"2603:1030:7:5::e/128\",\r\n
+ \ \"2603:1030:7:5::17/128\",\r\n \"2603:1030:7:5::29/128\",\r\n
+ \ \"2603:1030:7:5::32/128\",\r\n \"2603:1030:7:6::10/128\",\r\n
+ \ \"2603:1030:7:6::14/128\",\r\n \"2603:1030:7:6::1b/128\",\r\n
+ \ \"2603:1030:7:6::37/128\",\r\n \"2603:1030:7:6::3f/128\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CentralUSEUAP\",\r\n \"id\":
+ \"AzureMonitor.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.46.10.224/27\",\r\n
+ \ \"20.46.12.196/30\",\r\n \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n
+ \ \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n \"52.180.160.132/32\",\r\n
+ \ \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n \"52.180.182.209/32\",\r\n
+ \ \"168.61.142.0/27\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.Core\",\r\n
+ \ \"id\": \"AzureMonitor.Core\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.109.224/27\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.79.96/27\",\r\n \"13.71.177.32/27\",\r\n \"13.86.223.128/26\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n \"20.38.132.64/27\",\r\n
+ \ \"20.38.143.0/27\",\r\n \"20.38.152.32/27\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.41.208.32/27\",\r\n \"20.42.65.128/25\",\r\n \"20.44.11.192/26\",\r\n
+ \ \"20.46.10.224/27\",\r\n \"20.48.193.224/27\",\r\n \"20.49.84.32/27\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n
+ \ \"20.52.64.32/27\",\r\n \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n
+ \ \"20.53.46.64/27\",\r\n \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n
+ \ \"20.61.99.64/27\",\r\n \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.72.21.32/27\",\r\n \"20.72.28.192/27\",\r\n
+ \ \"20.150.182.32/27\",\r\n \"20.150.241.96/27\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.225.128/27\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"20.192.167.160/27\",\r\n \"20.193.96.32/27\",\r\n \"20.193.204.64/27\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"40.67.52.224/27\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.74.150.32/27\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.80.180.160/27\",\r\n \"40.120.8.192/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.12.46.0/27\",\r\n \"51.12.102.192/27\",\r\n
+ \ \"51.12.195.224/27\",\r\n \"51.12.205.96/27\",\r\n \"51.12.237.32/27\",\r\n
+ \ \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n \"51.105.70.128/27\",\r\n
+ \ \"51.107.128.96/27\",\r\n \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n
+ \ \"51.107.250.0/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.120.213.64/27\",\r\n \"51.120.232.160/27\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.139.106.160/27\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"168.61.142.0/27\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.237.224.192/27\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104:2::/123\",\r\n \"2603:1000:104:2::80/121\",\r\n
+ \ \"2603:1000:104:402::500/121\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:402::500/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304:1::280/123\",\r\n \"2603:1010:304:1::300/121\",\r\n
+ \ \"2603:1010:304:402::500/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:402::500/121\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:402::500/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:402::500/121\",\r\n \"2603:1020:d04:1::280/123\",\r\n
+ \ \"2603:1020:d04:1::300/121\",\r\n \"2603:1020:d04:402::500/121\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:402::500/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::4c0/123\",\r\n
+ \ \"2603:1020:1104:1::500/121\",\r\n \"2603:1020:1104:400::440/123\",\r\n
+ \ \"2603:1020:1104:400::480/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::360/123\",\r\n \"2603:1030:10::500/121\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::360/123\",\r\n
+ \ \"2603:1030:104::500/121\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::200/123\",\r\n \"2603:1030:107:1::280/121\",\r\n
+ \ \"2603:1030:107:400::3c0/123\",\r\n \"2603:1030:107:400::480/121\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2603:1030:302:402::80/123\",\r\n
+ \ \"2603:1030:302:402::100/121\",\r\n \"2603:1030:40b:2::240/123\",\r\n
+ \ \"2603:1030:40b:2::300/121\",\r\n \"2603:1030:40b:400::d00/121\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:402::500/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:c02::100/123\",\r\n
+ \ \"2603:1030:504:c02::180/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07:1::280/123\",\r\n
+ \ \"2603:1030:a07:1::300/121\",\r\n \"2603:1030:a07:402::380/121\",\r\n
+ \ \"2603:1030:b04:1::280/123\",\r\n \"2603:1030:b04:1::300/121\",\r\n
+ \ \"2603:1030:b04:402::500/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:f05::360/123\",\r\n \"2603:1030:f05::500/121\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:402::500/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:402::500/121\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:402::500/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::360/123\",\r\n \"2603:1040:f05::500/121\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::580/121\",\r\n
+ \ \"2603:1040:1104:400::460/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\",\r\n \"2603:1050:403:1::240/123\",\r\n
+ \ \"2603:1050:403:1::300/121\",\r\n \"2603:1050:403:400::580/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastAsia\",\r\n
+ \ \"id\": \"AzureMonitor.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.75.38.0/28\",\r\n
+ \ \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n \"13.75.117.221/32\",\r\n
+ \ \"13.75.119.169/32\",\r\n \"13.94.39.13/32\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.109.144/28\",\r\n \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n
+ \ \"20.189.111.24/31\",\r\n \"23.97.65.103/32\",\r\n \"23.100.90.7/32\",\r\n
+ \ \"23.100.94.221/32\",\r\n \"23.101.0.142/32\",\r\n \"23.101.9.4/32\",\r\n
+ \ \"23.101.13.65/32\",\r\n \"52.229.218.221/32\",\r\n \"52.229.225.6/32\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"2603:1040:207::780/121\",\r\n
+ \ \"2603:1040:207:1::280/123\",\r\n \"2603:1040:207:1::300/121\",\r\n
+ \ \"2603:1040:207:402::500/121\",\r\n \"2a01:111:f100:6000::4134:a6cf/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.82.100.176/32\",\r\n
+ \ \"13.82.184.151/32\",\r\n \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n
+ \ \"13.90.249.229/32\",\r\n \"13.90.251.123/32\",\r\n \"13.92.40.198/32\",\r\n
+ \ \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n \"13.92.179.52/32\",\r\n
+ \ \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n \"13.92.254.218/32\",\r\n
+ \ \"13.92.255.146/32\",\r\n \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n
+ \ \"20.42.73.128/25\",\r\n \"20.49.109.46/31\",\r\n \"20.49.109.80/28\",\r\n
+ \ \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n \"20.62.132.0/25\",\r\n
+ \ \"23.96.28.38/32\",\r\n \"40.71.12.224/28\",\r\n \"40.71.12.240/30\",\r\n
+ \ \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n \"40.71.14.112/30\",\r\n
+ \ \"40.71.183.225/32\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.79.154.80/29\",\r\n
+ \ \"40.79.156.32/29\",\r\n \"40.85.180.90/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.112.49.101/32\",\r\n \"40.117.80.207/32\",\r\n \"40.117.95.162/32\",\r\n
+ \ \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n \"40.117.197.224/32\",\r\n
+ \ \"40.121.57.2/32\",\r\n \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n
+ \ \"40.121.163.228/32\",\r\n \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n
+ \ \"52.150.36.187/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n \"52.224.162.220/32\",\r\n
+ \ \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n \"104.41.152.101/32\",\r\n
+ \ \"104.41.157.59/32\",\r\n \"104.45.136.42/32\",\r\n \"168.62.169.17/32\",\r\n
+ \ \"2603:1030:210::60/123\",\r\n \"2603:1030:210::1c0/122\",\r\n
+ \ \"2603:1030:210::300/123\",\r\n \"2603:1030:210::360/123\",\r\n
+ \ \"2603:1030:210::500/121\",\r\n \"2603:1030:210:1::280/122\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2\",\r\n \"id\":
+ \"AzureMonitor.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.68.31.237/32\",\r\n
+ \ \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n \"13.68.109.212/32\",\r\n
+ \ \"13.68.111.247/32\",\r\n \"20.41.49.208/32\",\r\n \"20.44.16.0/29\",\r\n
+ \ \"20.44.17.0/29\",\r\n \"20.44.73.196/32\",\r\n \"20.49.99.44/31\",\r\n
+ \ \"20.49.99.64/28\",\r\n \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n
+ \ \"40.70.23.205/32\",\r\n \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n
+ \ \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n \"52.167.221.184/32\",\r\n
+ \ \"52.177.223.60/32\",\r\n \"52.179.192.178/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"104.46.123.164/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"137.116.82.175/32\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.51.17.64/27\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.75.34.40/29\",\r\n \"40.75.35.64/29\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceCentral\",\r\n \"id\":
+ \"AzureMonitor.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.40.137.91/32\",\r\n
+ \ \"20.40.140.212/32\",\r\n \"20.43.40.68/31\",\r\n \"20.43.41.178/31\",\r\n
+ \ \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n \"20.43.44.224/28\",\r\n
+ \ \"20.188.36.28/32\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.89.153.171/32\",\r\n \"40.89.189.61/32\",\r\n
+ \ \"2603:1020:805::60/123\",\r\n \"2603:1020:805::1c0/122\",\r\n
+ \ \"2603:1020:805::300/123\",\r\n \"2603:1020:805::360/123\",\r\n
+ \ \"2603:1020:805::500/121\",\r\n \"2603:1020:805:1::280/122\",\r\n
+ \ \"2603:1020:805:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceSouth\",\r\n \"id\": \"AzureMonitor.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.8/29\",\r\n \"40.79.179.16/28\",\r\n \"2603:1020:905::780/121\",\r\n
+ \ \"2603:1020:905:1::280/123\",\r\n \"2603:1020:905:1::300/121\",\r\n
+ \ \"2603:1020:905:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyNorth\",\r\n \"id\": \"AzureMonitor.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.64/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyWestCentral\",\r\n \"id\":
+ \"AzureMonitor.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.32/27\",\r\n
+ \ \"51.116.149.0/27\",\r\n \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n
+ \ \"51.116.245.96/28\",\r\n \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n
+ \ \"2603:1020:c01:2::b/128\",\r\n \"2603:1020:c01:2::e/128\",\r\n
+ \ \"2603:1020:c04::60/123\",\r\n \"2603:1020:c04::1c0/122\",\r\n
+ \ \"2603:1020:c04::300/123\",\r\n \"2603:1020:c04::360/123\",\r\n
+ \ \"2603:1020:c04::500/121\",\r\n \"2603:1020:c04:1::280/122\",\r\n
+ \ \"2603:1020:c04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.JapanEast\",\r\n \"id\": \"AzureMonitor.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.26.213/32\",\r\n \"13.78.10.58/32\",\r\n \"13.78.13.189/32\",\r\n
+ \ \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n \"13.78.109.112/29\",\r\n
+ \ \"13.78.111.192/32\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.191.165.64/27\",\r\n
+ \ \"23.102.66.132/32\",\r\n \"23.102.77.48/32\",\r\n \"40.79.187.8/29\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n
+ \ \"52.155.118.97/32\",\r\n \"52.156.40.142/32\",\r\n \"52.185.132.101/32\",\r\n
+ \ \"52.185.132.170/32\",\r\n \"138.91.9.98/32\",\r\n \"2603:1040:407::60/123\",\r\n
+ \ \"2603:1040:407::1c0/122\",\r\n \"2603:1040:407::300/123\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:1::280/122\",\r\n \"2603:1040:407:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.JapanWest\",\r\n
+ \ \"id\": \"AzureMonitor.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.189.225.128/27\",\r\n
+ \ \"40.74.101.32/28\",\r\n \"40.74.101.200/29\",\r\n \"40.80.180.160/27\",\r\n
+ \ \"2603:1040:606::780/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.KoreaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.68/31\",\r\n \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n
+ \ \"20.41.69.16/28\",\r\n \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n
+ \ \"20.44.26.152/29\",\r\n \"20.44.26.248/29\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"52.141.22.149/32\",\r\n
+ \ \"52.141.22.239/32\",\r\n \"52.231.18.240/28\",\r\n \"52.231.28.204/32\",\r\n
+ \ \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n \"52.231.67.208/32\",\r\n
+ \ \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n \"52.231.111.52/32\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.KoreaSouth\",\r\n \"id\": \"AzureMonitor.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n
+ \ \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n
+ \ \"20.49.114.48/31\",\r\n \"20.135.13.192/26\",\r\n \"23.96.245.125/32\",\r\n
+ \ \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n \"23.100.228.32/32\",\r\n
+ \ \"40.80.191.224/28\",\r\n \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n
+ \ \"52.162.110.168/29\",\r\n \"52.162.214.75/32\",\r\n \"52.237.157.70/32\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"2603:1030:608::780/121\",\r\n
+ \ \"2603:1030:608:1::280/123\",\r\n \"2603:1030:608:1::300/121\",\r\n
+ \ \"2603:1030:608:402::500/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorthEurope\",\r\n \"id\":
+ \"AzureMonitor.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n \"20.38.80.68/31\",\r\n
+ \ \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n \"20.50.68.120/30\",\r\n
+ \ \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n \"23.102.44.211/32\",\r\n
+ \ \"23.102.45.216/32\",\r\n \"40.69.81.159/32\",\r\n \"40.69.194.158/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.127.144.141/32\",\r\n
+ \ \"52.138.222.110/32\",\r\n \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n
+ \ \"52.146.133.32/27\",\r\n \"52.155.162.238/32\",\r\n \"52.164.120.183/32\",\r\n
+ \ \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n \"52.169.4.236/32\",\r\n
+ \ \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n \"52.169.64.244/32\",\r\n
+ \ \"104.41.224.134/32\",\r\n \"137.116.226.81/32\",\r\n \"2603:1020:5::60/123\",\r\n
+ \ \"2603:1020:5::1c0/122\",\r\n \"2603:1020:5::300/123\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:1::280/122\",\r\n \"2603:1020:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:a001::4134:e463/128\",\r\n \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorwayEast\",\r\n \"id\":
+ \"AzureMonitor.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.232.34/31\",\r\n
+ \ \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n \"51.120.235.240/28\",\r\n
+ \ \"2603:1020:e04::60/123\",\r\n \"2603:1020:e04::1c0/122\",\r\n
+ \ \"2603:1020:e04::300/123\",\r\n \"2603:1020:e04::360/123\",\r\n
+ \ \"2603:1020:e04::500/121\",\r\n \"2603:1020:e04:1::280/122\",\r\n
+ \ \"2603:1020:e04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.NorwayWest\",\r\n \"id\": \"AzureMonitor.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n
+ \ \"51.120.219.208/28\",\r\n \"2603:1020:f04::780/121\",\r\n
+ \ \"2603:1020:f04:1::280/123\",\r\n \"2603:1020:f04:1::300/121\",\r\n
+ \ \"2603:1020:f04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureMonitor.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"102.133.122.152/29\",\r\n
+ \ \"102.133.123.240/29\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n \"102.133.162.233/32\",\r\n
+ \ \"102.133.216.68/31\",\r\n \"102.133.216.106/31\",\r\n
+ \ \"102.133.218.144/28\",\r\n \"102.133.218.244/30\",\r\n
+ \ \"102.133.219.128/28\",\r\n \"102.133.221.160/27\",\r\n
+ \ \"102.133.250.152/29\",\r\n \"102.133.251.80/29\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureMonitor.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n
+ \ \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n \"2603:1000:4::780/121\",\r\n
+ \ \"2603:1000:4:1::280/123\",\r\n \"2603:1000:4:1::300/121\",\r\n
+ \ \"2603:1000:4:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthCentralUS\",\r\n \"id\":
+ \"AzureMonitor.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.65.96.175/32\",\r\n
+ \ \"13.65.206.67/32\",\r\n \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n
+ \ \"13.66.37.172/32\",\r\n \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n
+ \ \"13.84.149.186/32\",\r\n \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n
+ \ \"13.84.225.10/32\",\r\n \"13.85.70.142/32\",\r\n \"20.45.122.152/29\",\r\n
+ \ \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n \"20.45.125.224/28\",\r\n
+ \ \"20.49.91.32/28\",\r\n \"20.49.93.192/26\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.102.181.197/32\",\r\n \"40.74.249.98/32\",\r\n
+ \ \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n \"40.84.189.107/32\",\r\n
+ \ \"40.84.192.116/32\",\r\n \"40.119.4.128/32\",\r\n \"40.119.8.72/31\",\r\n
+ \ \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"104.44.140.84/32\",\r\n \"104.214.70.219/32\",\r\n \"104.214.104.109/32\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"157.55.177.6/32\",\r\n \"2603:1030:800:5::bfee:a418/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a429/128\",\r\n \"2603:1030:800:5::bfee:a42a/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a435/128\",\r\n \"2603:1030:807::60/123\",\r\n
+ \ \"2603:1030:807::1c0/122\",\r\n \"2603:1030:807::300/123\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:1::280/122\",\r\n \"2603:1030:807:402::500/121\",\r\n
+ \ \"2a01:111:f100:4002::9d37:c0bd/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SoutheastAsia\",\r\n \"id\":
+ \"AzureMonitor.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.67.9.192/28\",\r\n
+ \ \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n \"13.67.15.0/32\",\r\n
+ \ \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n \"13.76.85.243/32\",\r\n
+ \ \"13.76.87.86/32\",\r\n \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n
+ \ \"20.44.192.217/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"40.78.234.56/29\",\r\n \"40.78.234.144/28\",\r\n \"52.163.94.131/32\",\r\n
+ \ \"52.163.122.20/32\",\r\n \"111.221.88.173/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"138.91.32.98/32\",\r\n \"138.91.37.93/32\",\r\n
+ \ \"168.63.174.169/32\",\r\n \"168.63.242.221/32\",\r\n \"207.46.224.101/32\",\r\n
+ \ \"207.46.236.191/32\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:7000::6fdd:5343/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SouthIndia\",\r\n \"id\":
+ \"AzureMonitor.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.41.208.32/27\",\r\n
+ \ \"40.78.195.16/28\",\r\n \"40.78.196.48/29\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureMonitor.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.242.0/27\",\r\n \"2603:1020:a04::60/123\",\r\n
+ \ \"2603:1020:a04::1c0/122\",\r\n \"2603:1020:a04::300/123\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:1::280/122\",\r\n \"2603:1020:a04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureMonitor.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n
+ \ \"51.107.148.0/28\",\r\n \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n
+ \ \"51.107.156.48/29\",\r\n \"51.107.192.160/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"2603:1020:b04::780/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAECentral\",\r\n
+ \ \"id\": \"AzureMonitor.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.71.0/27\",\r\n \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"2603:1040:b00:2::b/128\",\r\n
+ \ \"2603:1040:b04::780/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAENorth\",\r\n
+ \ \"id\": \"AzureMonitor.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.0/27\",\r\n
+ \ \"20.38.143.44/30\",\r\n \"20.38.152.32/27\",\r\n \"40.120.75.32/28\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.UKSouth\",\r\n \"id\": \"AzureMonitor.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.140.6.23/32\",\r\n \"51.140.54.208/32\",\r\n
+ \ \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n \"51.140.148.48/28\",\r\n
+ \ \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n \"51.140.163.207/32\",\r\n
+ \ \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n \"51.143.165.22/32\",\r\n
+ \ \"51.143.209.96/27\",\r\n \"51.145.44.242/32\",\r\n \"2603:1020:705::60/123\",\r\n
+ \ \"2603:1020:705::1c0/122\",\r\n \"2603:1020:705::300/123\",\r\n
+ \ \"2603:1020:705::360/123\",\r\n \"2603:1020:705::500/121\",\r\n
+ \ \"2603:1020:705:1::280/122\",\r\n \"2603:1020:705:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UKWest\",\r\n
+ \ \"id\": \"AzureMonitor.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.58.66.96/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.211.160/28\",\r\n
+ \ \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n \"2603:1020:605::780/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.WestCentralUS\",\r\n \"id\":
+ \"AzureMonitor.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n
+ \ \"52.150.154.24/29\",\r\n \"52.150.154.32/28\",\r\n \"52.161.8.76/32\",\r\n
+ \ \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestEurope\",\r\n
+ \ \"id\": \"AzureMonitor.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.51.175/32\",\r\n \"13.69.51.218/32\",\r\n
+ \ \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n \"13.69.67.60/30\",\r\n
+ \ \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n \"13.69.106.208/28\",\r\n
+ \ \"13.69.109.224/27\",\r\n \"13.80.134.255/32\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"23.101.69.223/32\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.74.24.68/31\",\r\n \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"51.105.248.23/32\",\r\n \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.232.35.33/32\",\r\n
+ \ \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n \"52.236.186.88/29\",\r\n
+ \ \"52.236.186.208/28\",\r\n \"104.40.222.36/32\",\r\n \"137.117.144.33/32\",\r\n
+ \ \"2603:1020:206::60/123\",\r\n \"2603:1020:206::1c0/122\",\r\n
+ \ \"2603:1020:206::300/123\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:1::280/122\",\r\n
+ \ \"2603:1020:206:402::500/121\",\r\n \"2a01:111:f100:9001::1761:91e4/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:958a/128\",\r\n \"2a01:111:f100:9001::1761:9696/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestIndia\",\r\n
+ \ \"id\": \"AzureMonitor.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"52.136.53.96/27\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"2603:1040:806::780/121\",\r\n \"2603:1040:806:1::280/123\",\r\n
+ \ \"2603:1040:806:1::300/121\",\r\n \"2603:1040:806:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestUS\",\r\n
+ \ \"id\": \"AzureMonitor.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.224/28\",\r\n
+ \ \"13.86.218.248/29\",\r\n \"13.86.223.128/26\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"20.49.120.64/28\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.189.172.0/25\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.118.129.58/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.122.208/32\",\r\n \"104.42.40.28/32\",\r\n \"104.45.230.69/32\",\r\n
+ \ \"104.45.232.72/32\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.WestUS2\",\r\n \"id\":
+ \"AzureMonitor.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.77.150.166/32\",\r\n \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.51.9.0/26\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"40.64.132.128/28\",\r\n \"40.64.132.240/28\",\r\n
+ \ \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n \"40.64.134.138/32\",\r\n
+ \ \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n \"40.78.253.192/26\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"52.151.11.176/32\",\r\n \"52.175.198.74/32\",\r\n
+ \ \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n \"52.183.41.109/32\",\r\n
+ \ \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n \"52.183.95.86/32\",\r\n
+ \ \"52.183.127.155/32\",\r\n \"52.191.170.253/32\",\r\n \"52.229.25.130/32\",\r\n
+ \ \"52.229.37.75/32\",\r\n \"52.247.202.90/32\",\r\n \"2603:1030:c02:2::4e1/128\",\r\n
+ \ \"2603:1030:c06:1::280/122\",\r\n \"2603:1030:c06:2::80/121\",\r\n
+ \ \"2603:1030:c06:2::240/123\",\r\n \"2603:1030:c06:2::300/121\",\r\n
+ \ \"2603:1030:c06:400::d00/121\",\r\n \"2603:1030:d00::1d/128\",\r\n
+ \ \"2603:1030:d00::48/128\",\r\n \"2603:1030:d00::5a/128\",\r\n
+ \ \"2603:1030:d00::82/128\",\r\n \"2603:1030:d00::84/128\",\r\n
+ \ \"2603:1030:d00::9a/128\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets\",\r\n \"id\": \"AzureOpenDatasets\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.32/28\",\r\n \"20.36.120.192/28\",\r\n
+ \ \"20.37.64.192/28\",\r\n \"20.37.156.224/28\",\r\n \"20.37.195.32/28\",\r\n
+ \ \"20.37.224.192/28\",\r\n \"20.38.84.112/28\",\r\n \"20.38.136.192/28\",\r\n
+ \ \"20.39.11.32/28\",\r\n \"20.41.4.192/28\",\r\n \"20.41.65.160/28\",\r\n
+ \ \"20.41.193.128/28\",\r\n \"20.42.4.224/28\",\r\n \"20.42.131.0/28\",\r\n
+ \ \"20.42.227.0/28\",\r\n \"20.43.41.160/28\",\r\n \"20.43.65.160/28\",\r\n
+ \ \"20.43.130.112/28\",\r\n \"20.45.112.192/28\",\r\n \"20.45.192.192/28\",\r\n
+ \ \"20.150.160.192/28\",\r\n \"20.189.106.208/28\",\r\n \"20.192.225.128/28\",\r\n
+ \ \"40.67.48.192/28\",\r\n \"40.74.30.112/28\",\r\n \"40.80.57.128/28\",\r\n
+ \ \"40.80.169.128/28\",\r\n \"40.80.188.32/28\",\r\n \"40.82.253.80/28\",\r\n
+ \ \"40.89.17.128/28\",\r\n \"51.12.41.32/28\",\r\n \"51.12.193.32/28\",\r\n
+ \ \"51.104.25.160/28\",\r\n \"51.105.80.192/28\",\r\n \"51.105.88.192/28\",\r\n
+ \ \"51.107.48.192/28\",\r\n \"51.107.144.192/28\",\r\n \"51.116.48.112/28\",\r\n
+ \ \"51.116.144.112/28\",\r\n \"51.120.40.192/28\",\r\n \"51.120.224.192/28\",\r\n
+ \ \"51.137.161.144/28\",\r\n \"51.143.192.192/28\",\r\n \"52.136.48.192/28\",\r\n
+ \ \"52.140.105.128/28\",\r\n \"52.150.139.80/28\",\r\n \"52.228.81.144/28\",\r\n
+ \ \"102.133.56.112/28\",\r\n \"102.133.216.112/28\",\r\n
+ \ \"191.235.225.160/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.AustraliaEast\",\r\n \"id\": \"AzureOpenDatasets.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.37.195.32/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.FranceSouth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.105.88.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.GermanyNorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.112/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAECentral\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.64.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAENorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.136.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UKWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.161.144/28\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets.WestEurope\",\r\n \"id\":
+ \"AzureOpenDatasets.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.30.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.WestUS2\",\r\n \"id\": \"AzureOpenDatasets.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.42.131.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal\",\r\n
+ \ \"id\": \"AzurePortal\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.35.35/32\",\r\n \"13.67.35.77/32\",\r\n \"13.68.130.251/32\",\r\n
+ \ \"13.68.235.98/32\",\r\n \"13.69.112.176/28\",\r\n \"13.69.126.92/32\",\r\n
+ \ \"13.71.190.228/32\",\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"13.77.1.236/32\",\r\n \"13.77.55.208/28\",\r\n
+ \ \"13.77.202.2/32\",\r\n \"13.78.49.187/32\",\r\n \"13.78.132.155/32\",\r\n
+ \ \"13.78.230.142/32\",\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"13.90.156.71/32\",\r\n \"13.92.138.76/32\",\r\n \"20.36.121.128/27\",\r\n
+ \ \"20.36.122.56/30\",\r\n \"20.36.125.104/29\",\r\n \"20.37.65.128/27\",\r\n
+ \ \"20.37.66.56/30\",\r\n \"20.37.70.96/29\",\r\n \"20.37.195.224/27\",\r\n
+ \ \"20.37.196.252/30\",\r\n \"20.37.198.64/27\",\r\n \"20.37.225.128/27\",\r\n
+ \ \"20.37.226.56/30\",\r\n \"20.37.229.152/29\",\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.38.137.160/27\",\r\n \"20.38.138.60/30\",\r\n
+ \ \"20.38.142.88/29\",\r\n \"20.38.149.208/28\",\r\n \"20.39.12.32/27\",\r\n
+ \ \"20.39.12.232/30\",\r\n \"20.40.200.0/27\",\r\n \"20.40.200.160/30\",\r\n
+ \ \"20.40.224.226/31\",\r\n \"20.40.225.32/29\",\r\n \"20.41.5.192/27\",\r\n
+ \ \"20.41.65.224/27\",\r\n \"20.41.67.88/30\",\r\n \"20.41.193.224/27\",\r\n
+ \ \"20.41.197.16/30\",\r\n \"20.42.6.192/27\",\r\n \"20.42.227.192/27\",\r\n
+ \ \"20.42.228.220/30\",\r\n \"20.42.228.224/27\",\r\n \"20.42.230.80/28\",\r\n
+ \ \"20.43.42.64/27\",\r\n \"20.43.43.164/30\",\r\n \"20.43.46.248/29\",\r\n
+ \ \"20.43.66.64/27\",\r\n \"20.43.67.92/30\",\r\n \"20.43.67.96/27\",\r\n
+ \ \"20.43.70.64/28\",\r\n \"20.43.123.160/28\",\r\n \"20.43.132.32/27\",\r\n
+ \ \"20.44.19.32/28\",\r\n \"20.45.112.124/30\",\r\n \"20.45.113.128/27\",\r\n
+ \ \"20.45.116.64/29\",\r\n \"20.45.125.240/28\",\r\n \"20.45.195.160/27\",\r\n
+ \ \"20.45.197.192/27\",\r\n \"20.45.197.228/30\",\r\n \"20.46.10.40/29\",\r\n
+ \ \"20.48.193.48/29\",\r\n \"20.49.99.16/28\",\r\n \"20.49.99.32/30\",\r\n
+ \ \"20.49.103.96/29\",\r\n \"20.49.109.36/30\",\r\n \"20.49.109.44/31\",\r\n
+ \ \"20.49.109.48/28\",\r\n \"20.49.115.184/29\",\r\n \"20.49.120.0/27\",\r\n
+ \ \"20.49.120.36/30\",\r\n \"20.49.126.156/30\",\r\n \"20.49.127.224/28\",\r\n
+ \ \"20.50.1.32/27\",\r\n \"20.50.1.160/27\",\r\n \"20.50.1.200/30\",\r\n
+ \ \"20.50.1.208/28\",\r\n \"20.50.65.72/30\",\r\n \"20.51.16.120/29\",\r\n
+ \ \"20.53.44.4/30\",\r\n \"20.53.44.64/29\",\r\n \"20.61.98.128/29\",\r\n
+ \ \"20.62.128.240/29\",\r\n \"20.72.20.96/27\",\r\n \"20.150.161.192/27\",\r\n
+ \ \"20.150.165.144/30\",\r\n \"20.150.166.160/29\",\r\n \"20.187.197.0/29\",\r\n
+ \ \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n \"20.189.109.160/27\",\r\n
+ \ \"20.189.224.208/29\",\r\n \"20.191.161.80/29\",\r\n \"20.192.161.192/27\",\r\n
+ \ \"20.192.164.180/30\",\r\n \"20.192.166.160/29\",\r\n \"20.192.228.128/27\",\r\n
+ \ \"20.192.230.0/30\",\r\n \"20.192.230.112/29\",\r\n \"20.194.72.56/29\",\r\n
+ \ \"23.98.104.80/28\",\r\n \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n
+ \ \"23.98.108.44/31\",\r\n \"23.98.108.168/29\",\r\n \"23.102.65.134/32\",\r\n
+ \ \"40.64.128.128/27\",\r\n \"40.64.132.88/30\",\r\n \"40.64.132.96/28\",\r\n
+ \ \"40.64.135.88/29\",\r\n \"40.65.114.234/32\",\r\n \"40.67.48.124/30\",\r\n
+ \ \"40.67.49.128/27\",\r\n \"40.67.50.192/27\",\r\n \"40.67.52.88/29\",\r\n
+ \ \"40.67.121.128/28\",\r\n \"40.71.15.144/28\",\r\n \"40.78.239.48/28\",\r\n
+ \ \"40.78.245.208/28\",\r\n \"40.79.189.96/28\",\r\n \"40.80.58.128/27\",\r\n
+ \ \"40.80.59.28/30\",\r\n \"40.80.59.32/27\",\r\n \"40.80.169.224/27\",\r\n
+ \ \"40.80.172.16/30\",\r\n \"40.80.173.192/29\",\r\n \"40.80.190.160/27\",\r\n
+ \ \"40.80.191.200/30\",\r\n \"40.82.253.224/27\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.89.18.160/27\",\r\n \"40.89.20.132/30\",\r\n
+ \ \"40.89.23.232/29\",\r\n \"40.113.117.57/32\",\r\n \"40.114.78.132/32\",\r\n
+ \ \"40.114.236.251/32\",\r\n \"40.117.86.243/32\",\r\n \"40.117.237.78/32\",\r\n
+ \ \"40.119.9.236/30\",\r\n \"51.12.41.20/30\",\r\n \"51.12.41.160/27\",\r\n
+ \ \"51.12.43.128/29\",\r\n \"51.12.193.20/30\",\r\n \"51.12.193.160/27\",\r\n
+ \ \"51.12.194.104/29\",\r\n \"51.13.136.8/29\",\r\n \"51.104.27.96/27\",\r\n
+ \ \"51.104.28.220/30\",\r\n \"51.104.28.224/28\",\r\n \"51.105.80.124/30\",\r\n
+ \ \"51.105.81.128/27\",\r\n \"51.105.89.160/27\",\r\n \"51.105.90.152/30\",\r\n
+ \ \"51.107.49.160/27\",\r\n \"51.107.50.60/30\",\r\n \"51.107.53.240/29\",\r\n
+ \ \"51.107.145.128/27\",\r\n \"51.107.146.56/30\",\r\n \"51.107.149.248/29\",\r\n
+ \ \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n \"51.116.51.160/29\",\r\n
+ \ \"51.116.144.192/27\",\r\n \"51.116.145.140/30\",\r\n \"51.116.148.104/29\",\r\n
+ \ \"51.120.41.160/27\",\r\n \"51.120.42.60/30\",\r\n \"51.120.225.128/27\",\r\n
+ \ \"51.120.226.56/30\",\r\n \"51.120.232.16/29\",\r\n \"51.137.162.160/27\",\r\n
+ \ \"51.137.164.80/30\",\r\n \"51.137.167.152/29\",\r\n \"51.140.69.25/32\",\r\n
+ \ \"51.140.138.84/32\",\r\n \"51.140.149.64/28\",\r\n \"51.143.192.124/30\",\r\n
+ \ \"51.143.193.128/27\",\r\n \"51.143.208.192/29\",\r\n \"51.145.3.27/32\",\r\n
+ \ \"51.145.21.195/32\",\r\n \"52.136.49.160/27\",\r\n \"52.136.51.72/30\",\r\n
+ \ \"52.136.52.232/29\",\r\n \"52.136.184.64/29\",\r\n \"52.140.105.224/27\",\r\n
+ \ \"52.140.107.112/28\",\r\n \"52.140.108.64/30\",\r\n \"52.140.111.96/29\",\r\n
+ \ \"52.146.132.80/29\",\r\n \"52.150.139.224/27\",\r\n \"52.150.140.216/30\",\r\n
+ \ \"52.150.152.16/28\",\r\n \"52.150.152.224/27\",\r\n \"52.150.156.232/29\",\r\n
+ \ \"52.161.101.86/32\",\r\n \"52.163.207.80/32\",\r\n \"52.172.112.152/29\",\r\n
+ \ \"52.172.181.227/32\",\r\n \"52.172.190.71/32\",\r\n \"52.172.191.4/32\",\r\n
+ \ \"52.172.215.87/32\",\r\n \"52.228.24.159/32\",\r\n \"52.228.83.160/27\",\r\n
+ \ \"52.228.84.84/30\",\r\n \"52.228.84.96/28\",\r\n \"52.233.66.46/32\",\r\n
+ \ \"52.243.76.246/32\",\r\n \"102.133.56.160/27\",\r\n \"102.133.58.192/30\",\r\n
+ \ \"102.133.61.176/29\",\r\n \"102.133.217.192/27\",\r\n
+ \ \"102.133.218.56/30\",\r\n \"102.133.221.0/29\",\r\n \"104.41.216.228/32\",\r\n
+ \ \"104.42.195.92/32\",\r\n \"104.46.178.96/29\",\r\n \"104.211.89.213/32\",\r\n
+ \ \"104.211.101.116/32\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"104.215.146.128/32\",\r\n
+ \ \"137.116.247.179/32\",\r\n \"191.233.10.96/27\",\r\n \"191.233.15.0/29\",\r\n
+ \ \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n \"191.234.139.144/29\",\r\n
+ \ \"191.235.227.160/27\",\r\n \"213.199.128.226/32\",\r\n
+ \ \"2603:1000:4::700/121\",\r\n \"2603:1000:104::200/121\",\r\n
+ \ \"2603:1000:104::400/121\",\r\n \"2603:1000:104:1::680/121\",\r\n
+ \ \"2603:1010:6::100/121\",\r\n \"2603:1010:6:1::680/121\",\r\n
+ \ \"2603:1010:101::700/121\",\r\n \"2603:1010:304::700/121\",\r\n
+ \ \"2603:1010:404::700/121\",\r\n \"2603:1020:5::100/121\",\r\n
+ \ \"2603:1020:5:1::680/121\",\r\n \"2603:1020:206::100/121\",\r\n
+ \ \"2603:1020:206:1::680/121\",\r\n \"2603:1020:305::700/121\",\r\n
+ \ \"2603:1020:405::700/121\",\r\n \"2603:1020:605::700/121\",\r\n
+ \ \"2603:1020:705::100/121\",\r\n \"2603:1020:705:1::680/121\",\r\n
+ \ \"2603:1020:805::100/121\",\r\n \"2603:1020:805:1::680/121\",\r\n
+ \ \"2603:1020:905::700/121\",\r\n \"2603:1020:a04::100/121\",\r\n
+ \ \"2603:1020:a04:1::680/121\",\r\n \"2603:1020:b04::700/121\",\r\n
+ \ \"2603:1020:c04::100/121\",\r\n \"2603:1020:c04:1::680/121\",\r\n
+ \ \"2603:1020:d04::700/121\",\r\n \"2603:1020:e04::100/121\",\r\n
+ \ \"2603:1020:e04:1::680/121\",\r\n \"2603:1020:f04::700/121\",\r\n
+ \ \"2603:1020:1004::680/121\",\r\n \"2603:1020:1004:1::100/121\",\r\n
+ \ \"2603:1020:1104::780/121\",\r\n \"2603:1030:f:1::700/121\",\r\n
+ \ \"2603:1030:10::100/121\",\r\n \"2603:1030:10:1::680/121\",\r\n
+ \ \"2603:1030:104::100/121\",\r\n \"2603:1030:104:1::680/121\",\r\n
+ \ \"2603:1030:107:1::/121\",\r\n \"2603:1030:210::100/121\",\r\n
+ \ \"2603:1030:210:1::680/121\",\r\n \"2603:1030:40b:1::680/121\",\r\n
+ \ \"2603:1030:40c::100/121\",\r\n \"2603:1030:40c:1::680/121\",\r\n
+ \ \"2603:1030:504::100/121\",\r\n \"2603:1030:504:1::680/121\",\r\n
+ \ \"2603:1030:608::700/121\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\",\r\n \"2603:1030:a07::700/121\",\r\n
+ \ \"2603:1030:b04::700/121\",\r\n \"2603:1030:c06:1::680/121\",\r\n
+ \ \"2603:1030:f05::100/121\",\r\n \"2603:1030:f05:1::680/121\",\r\n
+ \ \"2603:1030:1005::700/121\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\",\r\n \"2603:1040:207::700/121\",\r\n
+ \ \"2603:1040:407::100/121\",\r\n \"2603:1040:407:1::680/121\",\r\n
+ \ \"2603:1040:606::700/121\",\r\n \"2603:1040:806::700/121\",\r\n
+ \ \"2603:1040:904::100/121\",\r\n \"2603:1040:904:1::680/121\",\r\n
+ \ \"2603:1040:a06::200/121\",\r\n \"2603:1040:a06:1::680/121\",\r\n
+ \ \"2603:1040:b04::700/121\",\r\n \"2603:1040:c06::700/121\",\r\n
+ \ \"2603:1040:d04::680/121\",\r\n \"2603:1040:d04:1::100/121\",\r\n
+ \ \"2603:1040:f05::100/121\",\r\n \"2603:1040:f05:1::680/121\",\r\n
+ \ \"2603:1040:1104::780/121\",\r\n \"2603:1050:6::100/121\",\r\n
+ \ \"2603:1050:6:1::680/121\",\r\n \"2603:1050:403::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.AustraliaCentral\",\r\n
+ \ \"id\": \"AzurePortal.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.225.128/27\",\r\n \"20.37.226.56/30\",\r\n
+ \ \"20.37.229.152/29\",\r\n \"2603:1010:304::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.BrazilSouth\",\r\n
+ \ \"id\": \"AzurePortal.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n
+ \ \"191.234.139.144/29\",\r\n \"191.235.227.160/27\",\r\n
+ \ \"2603:1050:6::100/121\",\r\n \"2603:1050:6:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastAsia\",\r\n
+ \ \"id\": \"AzurePortal.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"20.187.197.0/29\",\r\n \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n
+ \ \"20.189.109.160/27\",\r\n \"2603:1040:207::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastUS2\",\r\n
+ \ \"id\": \"AzurePortal.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.192/27\",\r\n \"20.44.19.32/28\",\r\n \"20.49.99.16/28\",\r\n
+ \ \"20.49.99.32/30\",\r\n \"20.49.103.96/29\",\r\n \"2603:1030:40c::100/121\",\r\n
+ \ \"2603:1030:40c:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.FranceSouth\",\r\n \"id\": \"AzurePortal.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.160/27\",\r\n
+ \ \"51.105.90.152/30\",\r\n \"52.136.184.64/29\",\r\n \"2603:1020:905::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.GermanyNorth\",\r\n
+ \ \"id\": \"AzurePortal.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n
+ \ \"51.116.51.160/29\",\r\n \"2603:1020:d04::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.KoreaSouth\",\r\n
+ \ \"id\": \"AzurePortal.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.169.224/27\",\r\n \"40.80.172.16/30\",\r\n
+ \ \"40.80.173.192/29\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzurePortal.NorthEurope\",\r\n \"id\": \"AzurePortal.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.50.65.72/30\",\r\n \"52.146.132.80/29\",\r\n
+ \ \"104.41.216.228/32\",\r\n \"137.116.247.179/32\",\r\n
+ \ \"2603:1020:5::100/121\",\r\n \"2603:1020:5:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.SouthCentralUS\",\r\n
+ \ \"id\": \"AzurePortal.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"20.45.125.240/28\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.119.9.236/30\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.SoutheastAsia\",\r\n \"id\": \"AzurePortal.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"13.67.35.35/32\",\r\n
+ \ \"13.67.35.77/32\",\r\n \"20.43.132.32/27\",\r\n \"23.98.104.80/28\",\r\n
+ \ \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n \"23.98.108.44/31\",\r\n
+ \ \"23.98.108.168/29\",\r\n \"40.78.239.48/28\",\r\n \"52.163.207.80/32\",\r\n
+ \ \"104.215.146.128/32\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager\",\r\n \"id\": \"AzureResourceManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.176/28\",\r\n \"13.67.18.0/23\",\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"13.69.229.224/28\",\r\n \"13.69.234.0/23\",\r\n
+ \ \"13.70.74.64/28\",\r\n \"13.70.76.0/23\",\r\n \"13.71.173.192/28\",\r\n
+ \ \"13.71.196.80/28\",\r\n \"13.71.198.0/24\",\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"13.75.39.16/28\",\r\n \"13.77.53.32/28\",\r\n
+ \ \"13.77.55.0/25\",\r\n \"13.78.109.96/28\",\r\n \"13.86.219.80/28\",\r\n
+ \ \"13.86.222.0/24\",\r\n \"13.87.57.240/28\",\r\n \"13.87.60.0/23\",\r\n
+ \ \"13.87.123.240/28\",\r\n \"13.87.126.0/24\",\r\n \"13.89.180.0/23\",\r\n
+ \ \"20.36.108.48/28\",\r\n \"20.36.110.0/23\",\r\n \"20.36.115.144/28\",\r\n
+ \ \"20.36.118.0/23\",\r\n \"20.36.126.0/23\",\r\n \"20.37.76.48/28\",\r\n
+ \ \"20.37.78.0/23\",\r\n \"20.37.230.0/23\",\r\n \"20.38.128.32/28\",\r\n
+ \ \"20.38.130.0/23\",\r\n \"20.38.150.0/23\",\r\n \"20.40.206.240/28\",\r\n
+ \ \"20.40.226.0/23\",\r\n \"20.41.70.0/23\",\r\n \"20.43.120.224/28\",\r\n
+ \ \"20.43.124.0/23\",\r\n \"20.44.3.240/28\",\r\n \"20.44.6.0/23\",\r\n
+ \ \"20.44.8.16/28\",\r\n \"20.44.16.112/28\",\r\n \"20.44.20.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"20.45.88.0/23\",\r\n \"20.45.118.0/23\",\r\n
+ \ \"20.46.8.0/23\",\r\n \"20.48.194.0/23\",\r\n \"20.49.116.0/23\",\r\n
+ \ \"20.50.68.96/28\",\r\n \"20.51.10.0/23\",\r\n \"20.51.18.0/23\",\r\n
+ \ \"20.53.42.0/23\",\r\n \"20.58.64.0/23\",\r\n \"20.61.100.0/23\",\r\n
+ \ \"20.62.56.0/23\",\r\n \"20.62.130.0/23\",\r\n \"20.65.128.0/23\",\r\n
+ \ \"20.66.0.0/23\",\r\n \"20.72.28.64/26\",\r\n \"20.88.64.64/26\",\r\n
+ \ \"20.150.225.128/26\",\r\n \"20.150.242.0/23\",\r\n \"20.187.198.0/23\",\r\n
+ \ \"20.189.168.0/24\",\r\n \"20.189.226.0/23\",\r\n \"20.191.162.0/23\",\r\n
+ \ \"20.192.32.128/26\",\r\n \"20.192.40.0/23\",\r\n \"20.192.52.0/23\",\r\n
+ \ \"20.193.196.0/23\",\r\n \"20.193.204.0/26\",\r\n \"20.195.144.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.67.54.0/23\",\r\n \"40.67.59.208/28\",\r\n
+ \ \"40.67.62.0/23\",\r\n \"40.67.120.0/24\",\r\n \"40.69.108.32/28\",\r\n
+ \ \"40.69.112.0/22\",\r\n \"40.71.13.224/28\",\r\n \"40.74.102.0/28\",\r\n
+ \ \"40.75.35.32/28\",\r\n \"40.75.38.0/23\",\r\n \"40.78.196.32/28\",\r\n
+ \ \"40.78.198.0/23\",\r\n \"40.78.203.224/28\",\r\n \"40.78.206.0/23\",\r\n
+ \ \"40.78.234.176/28\",\r\n \"40.78.254.0/23\",\r\n \"40.79.131.240/28\",\r\n
+ \ \"40.79.134.0/23\",\r\n \"40.79.158.0/23\",\r\n \"40.79.180.0/28\",\r\n
+ \ \"40.79.182.0/23\",\r\n \"40.79.198.0/23\",\r\n \"40.80.174.0/23\",\r\n
+ \ \"40.80.178.0/23\",\r\n \"40.113.178.0/28\",\r\n \"40.120.80.0/23\",\r\n
+ \ \"51.11.64.0/24\",\r\n \"51.11.96.0/24\",\r\n \"51.12.44.0/23\",\r\n
+ \ \"51.12.101.64/26\",\r\n \"51.12.196.0/23\",\r\n \"51.12.205.0/26\",\r\n
+ \ \"51.104.8.224/28\",\r\n \"51.105.78.0/23\",\r\n \"51.105.94.0/23\",\r\n
+ \ \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n \"51.107.158.0/23\",\r\n
+ \ \"51.116.52.0/23\",\r\n \"51.116.60.32/28\",\r\n \"51.116.62.0/23\",\r\n
+ \ \"51.116.150.0/23\",\r\n \"51.116.156.32/28\",\r\n \"51.116.159.0/24\",\r\n
+ \ \"51.120.46.0/23\",\r\n \"51.120.100.32/28\",\r\n \"51.120.102.0/23\",\r\n
+ \ \"51.120.220.32/28\",\r\n \"51.120.222.0/23\",\r\n \"51.120.230.0/23\",\r\n
+ \ \"51.138.208.0/23\",\r\n \"51.140.212.16/28\",\r\n \"51.140.214.0/24\",\r\n
+ \ \"51.143.210.0/23\",\r\n \"52.136.54.0/23\",\r\n \"52.138.94.0/23\",\r\n
+ \ \"52.139.104.0/23\",\r\n \"52.146.134.0/23\",\r\n \"52.147.96.0/24\",\r\n
+ \ \"52.150.158.0/23\",\r\n \"52.162.110.224/28\",\r\n \"52.172.114.0/23\",\r\n
+ \ \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n \"52.231.148.64/28\",\r\n
+ \ \"52.231.150.0/24\",\r\n \"52.240.242.0/23\",\r\n \"65.52.252.48/28\",\r\n
+ \ \"65.52.254.0/23\",\r\n \"102.133.28.16/28\",\r\n \"102.133.30.0/23\",\r\n
+ \ \"102.133.62.0/23\",\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"104.46.160.0/24\",\r\n \"104.46.161.0/25\",\r\n
+ \ \"104.46.180.0/23\",\r\n \"104.214.162.0/23\",\r\n \"168.61.138.0/23\",\r\n
+ \ \"168.61.143.192/26\",\r\n \"191.233.52.0/23\",\r\n \"191.233.205.16/28\",\r\n
+ \ \"191.234.140.0/23\",\r\n \"191.234.158.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\",\r\n \"2603:1010:6::180/122\",\r\n
+ \ \"2603:1010:6:402::280/122\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\",\r\n \"2603:1010:304::6c0/122\",\r\n
+ \ \"2603:1010:304:402::280/122\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\",\r\n \"2603:1020:5::180/122\",\r\n
+ \ \"2603:1020:5:402::280/122\",\r\n \"2603:1020:206::180/122\",\r\n
+ \ \"2603:1020:206:402::280/122\",\r\n \"2603:1020:305::6c0/122\",\r\n
+ \ \"2603:1020:305:402::280/122\",\r\n \"2603:1020:405::6c0/122\",\r\n
+ \ \"2603:1020:405:402::280/122\",\r\n \"2603:1020:605::6c0/122\",\r\n
+ \ \"2603:1020:605:402::280/122\",\r\n \"2603:1020:705::180/122\",\r\n
+ \ \"2603:1020:705:402::280/122\",\r\n \"2603:1020:805::180/122\",\r\n
+ \ \"2603:1020:805:402::280/122\",\r\n \"2603:1020:905::6c0/122\",\r\n
+ \ \"2603:1020:905:402::280/122\",\r\n \"2603:1020:a04::180/122\",\r\n
+ \ \"2603:1020:a04:402::280/122\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\",\r\n \"2603:1020:c04::180/122\",\r\n
+ \ \"2603:1020:c04:402::280/122\",\r\n \"2603:1020:d04::6c0/122\",\r\n
+ \ \"2603:1020:d04:402::280/122\",\r\n \"2603:1020:e04::180/122\",\r\n
+ \ \"2603:1020:e04:3::300/120\",\r\n \"2603:1020:e04:402::280/122\",\r\n
+ \ \"2603:1020:f04::6c0/122\",\r\n \"2603:1020:f04:402::280/122\",\r\n
+ \ \"2603:1020:1004:1::400/120\",\r\n \"2603:1020:1004:400::180/122\",\r\n
+ \ \"2603:1020:1104:1::/120\",\r\n \"2603:1020:1104:400::280/122\",\r\n
+ \ \"2603:1030:f:1::6c0/122\",\r\n \"2603:1030:f:2::700/120\",\r\n
+ \ \"2603:1030:f:400::a80/122\",\r\n \"2603:1030:10::180/122\",\r\n
+ \ \"2603:1030:10:402::280/122\",\r\n \"2603:1030:104::180/122\",\r\n
+ \ \"2603:1030:104:402::280/122\",\r\n \"2603:1030:107:1::100/120\",\r\n
+ \ \"2603:1030:107:400::200/122\",\r\n \"2603:1030:210::180/122\",\r\n
+ \ \"2603:1030:210:402::280/122\",\r\n \"2603:1030:40b:2::40/122\",\r\n
+ \ \"2603:1030:40b:400::a80/122\",\r\n \"2603:1030:40c::180/122\",\r\n
+ \ \"2603:1030:40c:402::280/122\",\r\n \"2603:1030:504::400/120\",\r\n
+ \ \"2603:1030:504:402::180/122\",\r\n \"2603:1030:608::6c0/122\",\r\n
+ \ \"2603:1030:608:402::280/122\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\",\r\n \"2603:1030:a07::6c0/122\",\r\n
+ \ \"2603:1030:a07:402::900/122\",\r\n \"2603:1030:b04::6c0/122\",\r\n
+ \ \"2603:1030:b04:402::280/122\",\r\n \"2603:1030:c06:2::40/122\",\r\n
+ \ \"2603:1030:c06:400::a80/122\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\",\r\n \"2603:1030:1005::6c0/122\",\r\n
+ \ \"2603:1030:1005:402::280/122\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\",\r\n \"2603:1040:207::6c0/122\",\r\n
+ \ \"2603:1040:207:402::280/122\",\r\n \"2603:1040:407::180/122\",\r\n
+ \ \"2603:1040:407:402::280/122\",\r\n \"2603:1040:606::6c0/122\",\r\n
+ \ \"2603:1040:606:402::280/122\",\r\n \"2603:1040:806::6c0/122\",\r\n
+ \ \"2603:1040:806:402::280/122\",\r\n \"2603:1040:904::180/122\",\r\n
+ \ \"2603:1040:904:402::280/122\",\r\n \"2603:1040:a06::280/122\",\r\n
+ \ \"2603:1040:a06:402::280/122\",\r\n \"2603:1040:b04::6c0/122\",\r\n
+ \ \"2603:1040:b04:402::280/122\",\r\n \"2603:1040:c06::6c0/122\",\r\n
+ \ \"2603:1040:c06:402::280/122\",\r\n \"2603:1040:d04:1::400/120\",\r\n
+ \ \"2603:1040:d04:400::180/122\",\r\n \"2603:1040:f05::180/122\",\r\n
+ \ \"2603:1040:f05:2::100/120\",\r\n \"2603:1040:f05:402::280/122\",\r\n
+ \ \"2603:1040:1104:1::/120\",\r\n \"2603:1040:1104:400::280/122\",\r\n
+ \ \"2603:1050:6::180/122\",\r\n \"2603:1050:6:402::280/122\",\r\n
+ \ \"2603:1050:403:1::40/122\",\r\n \"2603:1050:403:400::440/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.115.144/28\",\r\n \"20.36.118.0/23\",\r\n
+ \ \"20.36.126.0/23\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.32/28\",\r\n \"13.77.55.0/25\",\r\n \"104.46.160.0/24\",\r\n
+ \ \"104.46.161.0/25\",\r\n \"104.46.180.0/23\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.CanadaCentral\",\r\n \"id\":
+ \"AzureResourceManager.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.71.173.192/28\",\r\n
+ \ \"20.38.150.0/23\",\r\n \"20.48.194.0/23\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.KoreaCentral\",\r\n \"id\":
+ \"AzureResourceManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.70.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n
+ \ \"2603:1040:f05::180/122\",\r\n \"2603:1040:f05:2::100/120\",\r\n
+ \ \"2603:1040:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaWest\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.28.16/28\",\r\n
+ \ \"102.133.30.0/23\",\r\n \"102.133.62.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthCentralUS\",\r\n \"id\":
+ \"AzureResourceManager.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"20.65.128.0/23\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SoutheastAsia\",\r\n \"id\":
+ \"AzureResourceManager.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.67.18.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.78.234.176/28\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureResourceManager.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"2603:1020:a04::180/122\",\r\n \"2603:1020:a04:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureResourceManager.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n
+ \ \"51.107.158.0/23\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.WestEurope\",\r\n \"id\":
+ \"AzureResourceManager.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"20.61.100.0/23\",\r\n \"40.113.178.0/28\",\r\n
+ \ \"2603:1020:206::180/122\",\r\n \"2603:1020:206:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR\",\r\n
+ \ \"id\": \"AzureSignalR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.145.0/26\",\r\n \"13.67.15.64/27\",\r\n \"13.69.113.0/24\",\r\n
+ \ \"13.69.232.128/25\",\r\n \"13.70.74.224/27\",\r\n \"13.71.199.32/27\",\r\n
+ \ \"13.73.244.64/27\",\r\n \"13.74.111.0/25\",\r\n \"13.78.109.224/27\",\r\n
+ \ \"13.89.175.128/26\",\r\n \"20.38.132.96/27\",\r\n \"20.38.143.192/27\",\r\n
+ \ \"20.38.149.224/27\",\r\n \"20.40.229.0/27\",\r\n \"20.42.64.128/25\",\r\n
+ \ \"20.42.72.0/25\",\r\n \"20.44.10.128/26\",\r\n \"20.44.17.128/26\",\r\n
+ \ \"20.45.123.192/27\",\r\n \"20.46.11.96/27\",\r\n \"20.48.196.192/27\",\r\n
+ \ \"20.49.91.192/27\",\r\n \"20.49.119.96/27\",\r\n \"20.51.12.32/27\",\r\n
+ \ \"20.51.17.224/27\",\r\n \"20.53.47.32/27\",\r\n \"20.61.102.64/27\",\r\n
+ \ \"20.62.59.32/27\",\r\n \"20.62.133.64/27\",\r\n \"20.65.132.224/27\",\r\n
+ \ \"20.66.3.224/27\",\r\n \"20.69.0.192/27\",\r\n \"20.135.13.160/27\",\r\n
+ \ \"20.150.174.160/27\",\r\n \"20.150.244.160/27\",\r\n \"20.189.170.0/24\",\r\n
+ \ \"20.191.166.64/27\",\r\n \"20.192.44.64/27\",\r\n \"20.194.73.192/27\",\r\n
+ \ \"20.195.65.192/27\",\r\n \"20.195.72.192/27\",\r\n \"23.98.86.64/27\",\r\n
+ \ \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n \"40.70.148.192/26\",\r\n
+ \ \"40.71.15.0/25\",\r\n \"40.78.204.96/27\",\r\n \"40.78.238.64/26\",\r\n
+ \ \"40.78.238.128/25\",\r\n \"40.78.245.64/26\",\r\n \"40.78.253.0/26\",\r\n
+ \ \"40.79.132.160/27\",\r\n \"40.79.139.96/27\",\r\n \"40.79.148.32/27\",\r\n
+ \ \"40.79.163.96/27\",\r\n \"40.79.171.192/27\",\r\n \"40.79.189.0/27\",\r\n
+ \ \"40.79.197.0/27\",\r\n \"40.80.53.32/27\",\r\n \"40.120.64.160/27\",\r\n
+ \ \"51.12.17.160/27\",\r\n \"51.12.46.192/27\",\r\n \"51.12.101.192/27\",\r\n
+ \ \"51.12.168.0/27\",\r\n \"51.104.9.64/27\",\r\n \"51.105.69.32/27\",\r\n
+ \ \"51.105.77.0/27\",\r\n \"51.107.128.128/27\",\r\n \"51.107.192.192/27\",\r\n
+ \ \"51.107.242.192/27\",\r\n \"51.107.250.192/27\",\r\n \"51.116.149.96/27\",\r\n
+ \ \"51.116.246.32/27\",\r\n \"51.120.213.96/27\",\r\n \"51.120.233.96/27\",\r\n
+ \ \"51.138.210.96/27\",\r\n \"51.143.212.128/27\",\r\n \"52.136.53.224/27\",\r\n
+ \ \"52.138.92.224/27\",\r\n \"52.138.229.128/25\",\r\n \"52.139.107.96/27\",\r\n
+ \ \"52.146.136.32/27\",\r\n \"52.167.109.0/26\",\r\n \"52.178.16.0/24\",\r\n
+ \ \"52.182.141.64/26\",\r\n \"52.231.20.96/27\",\r\n \"52.231.20.192/26\",\r\n
+ \ \"52.236.190.0/24\",\r\n \"102.37.160.32/27\",\r\n \"102.133.126.96/27\",\r\n
+ \ \"104.214.164.160/27\",\r\n \"191.233.207.128/27\",\r\n
+ \ \"191.238.72.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.AustraliaEast\",\r\n \"id\": \"AzureSignalR.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSignalR\",\r\n \"addressPrefixes\": [\r\n \"13.70.74.224/27\",\r\n
+ \ \"20.53.47.32/27\",\r\n \"40.79.163.96/27\",\r\n \"40.79.171.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.CanadaEast\",\r\n
+ \ \"id\": \"AzureSignalR.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n
+ \ \"52.139.107.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.EastUS\",\r\n \"id\": \"AzureSignalR.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSignalR\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.64.128/25\",\r\n \"20.42.72.0/25\",\r\n
+ \ \"20.62.133.64/27\",\r\n \"40.71.15.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.NorthEurope\",\r\n
+ \ \"id\": \"AzureSignalR.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.232.128/25\",\r\n \"13.74.111.0/25\",\r\n
+ \ \"52.138.229.128/25\",\r\n \"52.146.136.32/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSiteRecovery\",\r\n \"id\":
+ \"AzureSiteRecovery\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSiteRecovery\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.240/28\",\r\n \"13.67.10.96/28\",\r\n
+ \ \"13.69.67.80/28\",\r\n \"13.69.107.80/28\",\r\n \"13.69.230.16/28\",\r\n
+ \ \"13.70.74.96/28\",\r\n \"13.70.159.158/32\",\r\n \"13.71.173.224/28\",\r\n
+ \ \"13.71.196.144/28\",\r\n \"13.73.242.192/28\",\r\n \"13.74.108.144/28\",\r\n
+ \ \"13.75.39.80/28\",\r\n \"13.77.53.64/28\",\r\n \"13.78.109.128/28\",\r\n
+ \ \"13.82.88.226/32\",\r\n \"13.84.148.14/32\",\r\n \"13.86.219.176/28\",\r\n
+ \ \"13.87.37.4/32\",\r\n \"13.87.58.48/28\",\r\n \"13.87.124.48/28\",\r\n
+ \ \"13.89.174.144/28\",\r\n \"20.36.34.70/32\",\r\n \"20.36.69.62/32\",\r\n
+ \ \"20.36.108.96/28\",\r\n \"20.36.115.224/28\",\r\n \"20.36.120.80/28\",\r\n
+ \ \"20.37.64.80/28\",\r\n \"20.37.76.128/28\",\r\n \"20.37.156.96/28\",\r\n
+ \ \"20.37.192.112/28\",\r\n \"20.37.224.80/28\",\r\n \"20.38.80.112/28\",\r\n
+ \ \"20.38.128.80/28\",\r\n \"20.38.136.80/28\",\r\n \"20.38.147.160/28\",\r\n
+ \ \"20.39.8.80/28\",\r\n \"20.41.4.64/28\",\r\n \"20.41.64.96/28\",\r\n
+ \ \"20.41.192.80/28\",\r\n \"20.42.4.96/28\",\r\n \"20.42.129.128/28\",\r\n
+ \ \"20.42.224.80/28\",\r\n \"20.43.40.112/28\",\r\n \"20.43.64.112/28\",\r\n
+ \ \"20.43.121.16/28\",\r\n \"20.43.130.64/28\",\r\n \"20.44.4.80/28\",\r\n
+ \ \"20.44.8.176/28\",\r\n \"20.44.17.32/28\",\r\n \"20.44.27.192/28\",\r\n
+ \ \"20.45.75.232/32\",\r\n \"20.45.112.80/28\",\r\n \"20.45.123.96/28\",\r\n
+ \ \"20.45.192.80/28\",\r\n \"20.49.83.48/28\",\r\n \"20.49.91.48/28\",\r\n
+ \ \"20.72.16.0/28\",\r\n \"20.72.28.32/28\",\r\n \"20.150.160.80/28\",\r\n
+ \ \"20.150.172.48/28\",\r\n \"20.150.179.208/28\",\r\n \"20.150.187.208/28\",\r\n
+ \ \"20.189.106.96/28\",\r\n \"20.192.99.208/28\",\r\n \"20.192.160.0/28\",\r\n
+ \ \"20.192.225.0/28\",\r\n \"20.192.235.224/28\",\r\n \"20.193.203.208/28\",\r\n
+ \ \"20.194.67.48/28\",\r\n \"23.96.195.247/32\",\r\n \"23.98.83.80/28\",\r\n
+ \ \"40.67.48.80/28\",\r\n \"40.67.60.80/28\",\r\n \"40.69.108.64/28\",\r\n
+ \ \"40.69.144.231/32\",\r\n \"40.69.212.238/32\",\r\n \"40.70.148.96/28\",\r\n
+ \ \"40.71.14.0/28\",\r\n \"40.74.24.112/28\",\r\n \"40.74.147.176/28\",\r\n
+ \ \"40.75.35.80/28\",\r\n \"40.78.196.64/28\",\r\n \"40.78.204.16/28\",\r\n
+ \ \"40.78.229.48/28\",\r\n \"40.78.236.144/28\",\r\n \"40.78.243.160/28\",\r\n
+ \ \"40.78.251.96/28\",\r\n \"40.79.132.64/28\",\r\n \"40.79.139.0/28\",\r\n
+ \ \"40.79.146.192/28\",\r\n \"40.79.156.48/28\",\r\n \"40.79.163.16/28\",\r\n
+ \ \"40.79.171.96/28\",\r\n \"40.79.180.32/28\",\r\n \"40.79.187.176/28\",\r\n
+ \ \"40.79.195.160/28\",\r\n \"40.80.51.96/28\",\r\n \"40.80.56.80/28\",\r\n
+ \ \"40.80.168.80/28\",\r\n \"40.80.176.16/28\",\r\n \"40.80.184.96/28\",\r\n
+ \ \"40.82.248.96/28\",\r\n \"40.83.179.48/32\",\r\n \"40.89.16.80/28\",\r\n
+ \ \"40.119.9.192/28\",\r\n \"40.120.75.96/28\",\r\n \"40.123.219.238/32\",\r\n
+ \ \"51.12.47.0/28\",\r\n \"51.12.100.32/28\",\r\n \"51.12.198.112/28\",\r\n
+ \ \"51.12.204.32/28\",\r\n \"51.12.227.208/28\",\r\n \"51.12.235.208/28\",\r\n
+ \ \"51.104.9.0/28\",\r\n \"51.104.24.112/28\",\r\n \"51.105.67.192/28\",\r\n
+ \ \"51.105.75.160/28\",\r\n \"51.105.80.80/28\",\r\n \"51.105.88.80/28\",\r\n
+ \ \"51.107.48.80/28\",\r\n \"51.107.60.64/28\",\r\n \"51.107.68.31/32\",\r\n
+ \ \"51.107.144.80/28\",\r\n \"51.107.156.80/28\",\r\n \"51.107.231.223/32\",\r\n
+ \ \"51.116.48.80/28\",\r\n \"51.116.60.64/28\",\r\n \"51.116.144.80/28\",\r\n
+ \ \"51.116.156.176/28\",\r\n \"51.116.208.58/32\",\r\n \"51.116.243.128/28\",\r\n
+ \ \"51.116.251.48/28\",\r\n \"51.120.40.80/28\",\r\n \"51.120.100.64/28\",\r\n
+ \ \"51.120.107.208/28\",\r\n \"51.120.211.208/28\",\r\n \"51.120.220.64/28\",\r\n
+ \ \"51.120.224.80/28\",\r\n \"51.137.160.96/28\",\r\n \"51.140.43.158/32\",\r\n
+ \ \"51.140.212.80/28\",\r\n \"51.141.3.203/32\",\r\n \"51.142.209.167/32\",\r\n
+ \ \"51.143.192.80/28\",\r\n \"52.136.48.80/28\",\r\n \"52.136.139.227/32\",\r\n
+ \ \"52.138.92.64/28\",\r\n \"52.138.227.144/28\",\r\n \"52.140.104.80/28\",\r\n
+ \ \"52.143.138.106/32\",\r\n \"52.150.136.96/28\",\r\n \"52.161.20.168/32\",\r\n
+ \ \"52.162.111.0/28\",\r\n \"52.166.13.64/32\",\r\n \"52.167.107.80/28\",\r\n
+ \ \"52.172.46.220/32\",\r\n \"52.172.187.37/32\",\r\n \"52.175.17.132/32\",\r\n
+ \ \"52.175.146.69/32\",\r\n \"52.180.178.64/32\",\r\n \"52.182.139.192/28\",\r\n
+ \ \"52.183.45.166/32\",\r\n \"52.184.158.163/32\",\r\n \"52.185.150.140/32\",\r\n
+ \ \"52.187.58.193/32\",\r\n \"52.187.191.206/32\",\r\n \"52.225.188.170/32\",\r\n
+ \ \"52.228.36.192/32\",\r\n \"52.228.80.96/28\",\r\n \"52.229.125.98/32\",\r\n
+ \ \"52.231.20.16/28\",\r\n \"52.231.28.253/32\",\r\n \"52.231.148.96/28\",\r\n
+ \ \"52.231.198.185/32\",\r\n \"52.236.187.64/28\",\r\n \"52.246.155.160/28\",\r\n
+ \ \"65.52.252.192/28\",\r\n \"102.133.28.128/28\",\r\n \"102.133.59.160/28\",\r\n
+ \ \"102.133.72.51/32\",\r\n \"102.133.124.64/28\",\r\n \"102.133.156.96/28\",\r\n
+ \ \"102.133.160.44/32\",\r\n \"102.133.218.176/28\",\r\n
+ \ \"102.133.251.160/28\",\r\n \"104.210.113.114/32\",\r\n
+ \ \"104.211.177.6/32\",\r\n \"191.233.8.0/28\",\r\n \"191.233.51.192/28\",\r\n
+ \ \"191.233.205.80/28\",\r\n \"191.234.147.208/28\",\r\n
+ \ \"191.234.155.208/28\",\r\n \"191.234.185.172/32\",\r\n
+ \ \"191.235.224.112/28\",\r\n \"2603:1000:4::/123\",\r\n
+ \ \"2603:1000:4:402::2d0/125\",\r\n \"2603:1000:104:1::/123\",\r\n
+ \ \"2603:1000:104:402::2d0/125\",\r\n \"2603:1000:104:802::158/125\",\r\n
+ \ \"2603:1000:104:c02::158/125\",\r\n \"2603:1010:6:1::/123\",\r\n
+ \ \"2603:1010:6:402::2d0/125\",\r\n \"2603:1010:6:802::158/125\",\r\n
+ \ \"2603:1010:6:c02::158/125\",\r\n \"2603:1010:101::/123\",\r\n
+ \ \"2603:1010:101:402::2d0/125\",\r\n \"2603:1010:304::/123\",\r\n
+ \ \"2603:1010:304:402::2d0/125\",\r\n \"2603:1010:404::/123\",\r\n
+ \ \"2603:1010:404:402::2d0/125\",\r\n \"2603:1020:5:1::/123\",\r\n
+ \ \"2603:1020:5:402::2d0/125\",\r\n \"2603:1020:5:802::158/125\",\r\n
+ \ \"2603:1020:5:c02::158/125\",\r\n \"2603:1020:206:1::/123\",\r\n
+ \ \"2603:1020:206:402::2d0/125\",\r\n \"2603:1020:206:802::158/125\",\r\n
+ \ \"2603:1020:206:c02::158/125\",\r\n \"2603:1020:305::/123\",\r\n
+ \ \"2603:1020:305:402::2d0/125\",\r\n \"2603:1020:405::/123\",\r\n
+ \ \"2603:1020:405:402::2d0/125\",\r\n \"2603:1020:605::/123\",\r\n
+ \ \"2603:1020:605:402::2d0/125\",\r\n \"2603:1020:705:1::/123\",\r\n
+ \ \"2603:1020:705:402::2d0/125\",\r\n \"2603:1020:705:802::158/125\",\r\n
+ \ \"2603:1020:705:c02::158/125\",\r\n \"2603:1020:805:1::/123\",\r\n
+ \ \"2603:1020:805:402::2d0/125\",\r\n \"2603:1020:805:802::158/125\",\r\n
+ \ \"2603:1020:805:c02::158/125\",\r\n \"2603:1020:905::/123\",\r\n
+ \ \"2603:1020:905:402::2d0/125\",\r\n \"2603:1020:a04:1::/123\",\r\n
+ \ \"2603:1020:a04:402::2d0/125\",\r\n \"2603:1020:a04:802::158/125\",\r\n
+ \ \"2603:1020:a04:c02::158/125\",\r\n \"2603:1020:b04::/123\",\r\n
+ \ \"2603:1020:b04:402::2d0/125\",\r\n \"2603:1020:c04:1::/123\",\r\n
+ \ \"2603:1020:c04:402::2d0/125\",\r\n \"2603:1020:c04:802::158/125\",\r\n
+ \ \"2603:1020:c04:c02::158/125\",\r\n \"2603:1020:d04::/123\",\r\n
+ \ \"2603:1020:d04:402::2d0/125\",\r\n \"2603:1020:e04:1::/123\",\r\n
+ \ \"2603:1020:e04:402::2d0/125\",\r\n \"2603:1020:e04:802::158/125\",\r\n
+ \ \"2603:1020:e04:c02::158/125\",\r\n \"2603:1020:f04::/123\",\r\n
+ \ \"2603:1020:f04:402::2d0/125\",\r\n \"2603:1020:1004::/123\",\r\n
+ \ \"2603:1020:1004:400::1d0/125\",\r\n \"2603:1020:1004:400::2f0/125\",\r\n
+ \ \"2603:1020:1004:800::3e0/125\",\r\n \"2603:1020:1104::/123\",\r\n
+ \ \"2603:1020:1104:400::2d0/125\",\r\n \"2603:1030:f:1::/123\",\r\n
+ \ \"2603:1030:f:400::ad0/125\",\r\n \"2603:1030:10:1::/123\",\r\n
+ \ \"2603:1030:10:402::2d0/125\",\r\n \"2603:1030:10:802::158/125\",\r\n
+ \ \"2603:1030:10:c02::158/125\",\r\n \"2603:1030:104:1::/123\",\r\n
+ \ \"2603:1030:104:402::2d0/125\",\r\n \"2603:1030:107::/123\",\r\n
+ \ \"2603:1030:107:400::f8/125\",\r\n \"2603:1030:210:1::/123\",\r\n
+ \ \"2603:1030:210:402::2d0/125\",\r\n \"2603:1030:210:802::158/125\",\r\n
+ \ \"2603:1030:210:c02::158/125\",\r\n \"2603:1030:40b:1::/123\",\r\n
+ \ \"2603:1030:40b:400::ad0/125\",\r\n \"2603:1030:40b:800::158/125\",\r\n
+ \ \"2603:1030:40b:c00::158/125\",\r\n \"2603:1030:40c:1::/123\",\r\n
+ \ \"2603:1030:40c:402::2d0/125\",\r\n \"2603:1030:40c:802::158/125\",\r\n
+ \ \"2603:1030:40c:c02::158/125\",\r\n \"2603:1030:504:1::/123\",\r\n
+ \ \"2603:1030:504:402::1d0/125\",\r\n \"2603:1030:504:402::2f0/125\",\r\n
+ \ \"2603:1030:504:802::3e0/125\",\r\n \"2603:1030:504:c02::390/125\",\r\n
+ \ \"2603:1030:608::/123\",\r\n \"2603:1030:608:402::2d0/125\",\r\n
+ \ \"2603:1030:807:1::/123\",\r\n \"2603:1030:807:402::2d0/125\",\r\n
+ \ \"2603:1030:807:802::158/125\",\r\n \"2603:1030:807:c02::158/125\",\r\n
+ \ \"2603:1030:a07::/123\",\r\n \"2603:1030:a07:402::950/125\",\r\n
+ \ \"2603:1030:b04::/123\",\r\n \"2603:1030:b04:402::2d0/125\",\r\n
+ \ \"2603:1030:c06:1::/123\",\r\n \"2603:1030:c06:400::ad0/125\",\r\n
+ \ \"2603:1030:c06:802::158/125\",\r\n \"2603:1030:c06:c02::158/125\",\r\n
+ \ \"2603:1030:f05:1::/123\",\r\n \"2603:1030:f05:402::2d0/125\",\r\n
+ \ \"2603:1030:f05:802::158/125\",\r\n \"2603:1030:f05:c02::158/125\",\r\n
+ \ \"2603:1030:1005::/123\",\r\n \"2603:1030:1005:402::2d0/125\",\r\n
+ \ \"2603:1040:5:1::/123\",\r\n \"2603:1040:5:402::2d0/125\",\r\n
+ \ \"2603:1040:5:802::158/125\",\r\n \"2603:1040:5:c02::158/125\",\r\n
+ \ \"2603:1040:207::/123\",\r\n \"2603:1040:207:402::2d0/125\",\r\n
+ \ \"2603:1040:407:1::/123\",\r\n \"2603:1040:407:402::2d0/125\",\r\n
+ \ \"2603:1040:407:802::158/125\",\r\n \"2603:1040:407:c02::158/125\",\r\n
+ \ \"2603:1040:606::/123\",\r\n \"2603:1040:606:402::2d0/125\",\r\n
+ \ \"2603:1040:806::/123\",\r\n \"2603:1040:806:402::2d0/125\",\r\n
+ \ \"2603:1040:904:1::/123\",\r\n \"2603:1040:904:402::2d0/125\",\r\n
+ \ \"2603:1040:904:802::158/125\",\r\n \"2603:1040:904:c02::158/125\",\r\n
+ \ \"2603:1040:a06:1::/123\",\r\n \"2603:1040:a06:402::2d0/125\",\r\n
+ \ \"2603:1040:a06:802::158/125\",\r\n \"2603:1040:a06:c02::158/125\",\r\n
+ \ \"2603:1040:b04::/123\",\r\n \"2603:1040:b04:402::2d0/125\",\r\n
+ \ \"2603:1040:c06::/123\",\r\n \"2603:1040:c06:402::2d0/125\",\r\n
+ \ \"2603:1040:d04::/123\",\r\n \"2603:1040:d04:400::1d0/125\",\r\n
+ \ \"2603:1040:d04:400::2f0/125\",\r\n \"2603:1040:d04:800::3e0/125\",\r\n
+ \ \"2603:1040:f05:1::/123\",\r\n \"2603:1040:f05:402::2d0/125\",\r\n
+ \ \"2603:1040:f05:802::158/125\",\r\n \"2603:1040:f05:c02::158/125\",\r\n
+ \ \"2603:1040:1104::/123\",\r\n \"2603:1040:1104:400::2d0/125\",\r\n
+ \ \"2603:1050:6:1::/123\",\r\n \"2603:1050:6:402::2d0/125\",\r\n
+ \ \"2603:1050:6:802::158/125\",\r\n \"2603:1050:6:c02::158/125\",\r\n
+ \ \"2603:1050:403::/123\",\r\n \"2603:1050:403:400::1f0/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureTrafficManager\",\r\n
+ \ \"id\": \"AzureTrafficManager\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureTrafficManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.92.252/32\",\r\n \"13.65.95.152/32\",\r\n
+ \ \"13.75.124.254/32\",\r\n \"13.75.127.63/32\",\r\n \"13.75.152.253/32\",\r\n
+ \ \"13.75.153.124/32\",\r\n \"13.84.222.37/32\",\r\n \"23.96.236.252/32\",\r\n
+ \ \"23.101.191.199/32\",\r\n \"40.68.30.66/32\",\r\n \"40.68.31.178/32\",\r\n
+ \ \"40.78.67.110/32\",\r\n \"40.87.147.10/32\",\r\n \"40.87.151.34/32\",\r\n
+ \ \"40.114.5.197/32\",\r\n \"52.172.155.168/32\",\r\n \"52.172.158.37/32\",\r\n
+ \ \"52.173.90.107/32\",\r\n \"52.173.250.232/32\",\r\n \"52.240.144.45/32\",\r\n
+ \ \"52.240.151.125/32\",\r\n \"65.52.217.19/32\",\r\n \"104.41.187.209/32\",\r\n
+ \ \"104.41.190.203/32\",\r\n \"104.42.192.195/32\",\r\n \"104.45.149.110/32\",\r\n
+ \ \"104.215.91.84/32\",\r\n \"137.135.46.163/32\",\r\n \"137.135.47.215/32\",\r\n
+ \ \"137.135.80.149/32\",\r\n \"137.135.82.249/32\",\r\n \"191.232.208.52/32\",\r\n
+ \ \"191.232.214.62/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement\",\r\n \"id\": \"BatchNodeManagement\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.66.141.32/27\",\r\n \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n
+ \ \"13.66.227.193/32\",\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n
+ \ \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.70.73.0/27\",\r\n \"13.71.144.135/32\",\r\n \"13.71.172.96/27\",\r\n
+ \ \"13.71.195.160/27\",\r\n \"13.73.117.100/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.73.249.64/27\",\r\n \"13.74.107.128/27\",\r\n
+ \ \"13.75.36.96/27\",\r\n \"13.77.52.128/27\",\r\n \"13.77.80.138/32\",\r\n
+ \ \"13.78.108.128/27\",\r\n \"13.78.145.2/32\",\r\n \"13.78.145.73/32\",\r\n
+ \ \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n \"13.79.172.125/32\",\r\n
+ \ \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n \"13.81.59.254/32\",\r\n
+ \ \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.87.32.176/32\",\r\n \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n
+ \ \"13.87.57.96/27\",\r\n \"13.87.97.57/32\",\r\n \"13.87.97.82/32\",\r\n
+ \ \"13.87.100.219/32\",\r\n \"13.87.123.96/27\",\r\n \"13.89.55.147/32\",\r\n
+ \ \"13.89.171.224/27\",\r\n \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n
+ \ \"13.91.107.154/32\",\r\n \"13.92.114.103/32\",\r\n \"13.93.206.144/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.36.121.160/27\",\r\n
+ \ \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n \"20.37.196.128/27\",\r\n
+ \ \"20.37.225.160/27\",\r\n \"20.38.85.224/27\",\r\n \"20.38.137.192/27\",\r\n
+ \ \"20.38.146.224/27\",\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n
+ \ \"20.39.2.44/32\",\r\n \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n
+ \ \"20.39.3.186/32\",\r\n \"20.39.12.64/27\",\r\n \"20.40.137.186/32\",\r\n
+ \ \"20.40.149.165/32\",\r\n \"20.40.200.32/27\",\r\n \"20.41.5.224/27\",\r\n
+ \ \"20.41.66.128/27\",\r\n \"20.41.195.128/27\",\r\n \"20.42.6.224/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"20.43.42.96/27\",\r\n \"20.43.66.96/27\",\r\n
+ \ \"20.43.132.64/27\",\r\n \"20.44.4.112/29\",\r\n \"20.44.27.64/27\",\r\n
+ \ \"20.45.113.160/27\",\r\n \"20.45.122.224/27\",\r\n \"20.45.195.192/27\",\r\n
+ \ \"20.49.83.64/27\",\r\n \"20.49.91.64/27\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"20.72.17.64/27\",\r\n \"20.150.161.224/27\",\r\n \"20.150.172.0/27\",\r\n
+ \ \"20.150.179.96/27\",\r\n \"20.150.187.96/27\",\r\n \"20.189.109.0/27\",\r\n
+ \ \"20.192.99.96/27\",\r\n \"20.192.161.224/27\",\r\n \"20.192.228.160/27\",\r\n
+ \ \"20.192.235.192/27\",\r\n \"20.193.203.128/27\",\r\n \"23.96.12.112/32\",\r\n
+ \ \"23.96.101.73/32\",\r\n \"23.96.109.140/32\",\r\n \"23.96.232.67/32\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.97.97.29/32\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"23.98.82.160/27\",\r\n \"23.99.98.61/32\",\r\n
+ \ \"23.99.107.229/32\",\r\n \"23.99.195.236/32\",\r\n \"23.100.100.145/32\",\r\n
+ \ \"23.100.103.112/32\",\r\n \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n
+ \ \"23.102.185.64/32\",\r\n \"40.64.128.160/27\",\r\n \"40.67.49.160/27\",\r\n
+ \ \"40.67.60.0/27\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.69.107.128/27\",\r\n \"40.70.147.224/27\",\r\n
+ \ \"40.71.12.192/27\",\r\n \"40.74.101.0/27\",\r\n \"40.74.140.140/32\",\r\n
+ \ \"40.74.149.48/29\",\r\n \"40.74.177.177/32\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.77.18.99/32\",\r\n \"40.78.195.128/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"40.78.227.0/27\",\r\n \"40.78.234.96/27\",\r\n \"40.78.242.224/27\",\r\n
+ \ \"40.78.250.160/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"40.79.154.32/27\",\r\n \"40.79.162.96/27\",\r\n
+ \ \"40.79.170.192/27\",\r\n \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n
+ \ \"40.80.50.224/27\",\r\n \"40.80.58.160/27\",\r\n \"40.80.170.128/27\",\r\n
+ \ \"40.80.190.192/27\",\r\n \"40.82.255.64/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n
+ \ \"40.86.224.98/32\",\r\n \"40.86.224.104/32\",\r\n \"40.88.48.36/32\",\r\n
+ \ \"40.89.18.192/27\",\r\n \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n
+ \ \"40.89.67.77/32\",\r\n \"40.89.70.17/32\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.115.50.9/32\",\r\n \"40.118.208.127/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"51.12.41.192/27\",\r\n \"51.12.100.0/27\",\r\n \"51.12.193.192/27\",\r\n
+ \ \"51.12.204.0/27\",\r\n \"51.12.227.96/27\",\r\n \"51.12.235.96/27\",\r\n
+ \ \"51.104.28.0/27\",\r\n \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n
+ \ \"51.105.81.160/27\",\r\n \"51.105.89.192/27\",\r\n \"51.107.49.192/27\",\r\n
+ \ \"51.107.59.224/27\",\r\n \"51.107.145.160/27\",\r\n \"51.107.155.224/27\",\r\n
+ \ \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n \"51.116.144.224/27\",\r\n
+ \ \"51.116.154.32/27\",\r\n \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n
+ \ \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n \"51.120.107.96/27\",\r\n
+ \ \"51.120.211.96/27\",\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"51.137.162.192/27\",\r\n \"51.140.148.160/27\",\r\n \"51.140.184.59/32\",\r\n
+ \ \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n \"51.140.211.128/27\",\r\n
+ \ \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n \"51.141.8.64/32\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"52.136.49.192/27\",\r\n \"52.136.143.192/31\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.138.90.64/27\",\r\n \"52.138.226.128/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"52.148.148.46/32\",\r\n \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n
+ \ \"52.161.107.48/32\",\r\n \"52.162.110.32/27\",\r\n \"52.164.244.189/32\",\r\n
+ \ \"52.164.245.81/32\",\r\n \"52.165.44.224/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.167.106.128/27\",\r\n \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n
+ \ \"52.169.235.90/32\",\r\n \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n
+ \ \"52.174.35.218/32\",\r\n \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n
+ \ \"52.174.179.66/32\",\r\n \"52.174.180.164/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n
+ \ \"52.180.177.206/32\",\r\n \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n
+ \ \"52.180.181.239/32\",\r\n \"52.182.139.0/27\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"52.189.217.254/32\",\r\n \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n
+ \ \"52.225.185.38/32\",\r\n \"52.225.191.67/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.231.19.96/27\",\r\n \"52.231.32.70/31\",\r\n
+ \ \"52.231.32.82/32\",\r\n \"52.231.147.128/27\",\r\n \"52.231.200.112/31\",\r\n
+ \ \"52.231.200.126/32\",\r\n \"52.233.40.34/32\",\r\n \"52.233.157.9/32\",\r\n
+ \ \"52.233.157.78/32\",\r\n \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n
+ \ \"52.235.41.66/32\",\r\n \"52.236.186.128/26\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"52.246.154.224/27\",\r\n
+ \ \"52.249.60.22/32\",\r\n \"52.253.227.240/32\",\r\n \"65.52.199.156/32\",\r\n
+ \ \"65.52.199.188/32\",\r\n \"65.52.251.224/27\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"104.40.69.159/32\",\r\n \"104.40.183.25/32\",\r\n
+ \ \"104.41.2.182/32\",\r\n \"104.41.129.99/32\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.45.13.8/32\",\r\n
+ \ \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"104.47.149.96/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"104.208.144.128/27\",\r\n \"104.208.156.99/32\",\r\n
+ \ \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n \"104.210.115.52/32\",\r\n
+ \ \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n \"104.211.96.144/31\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"104.214.19.192/27\",\r\n
+ \ \"104.214.65.153/32\",\r\n \"111.221.104.48/32\",\r\n \"137.116.33.5/32\",\r\n
+ \ \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n \"137.116.37.146/32\",\r\n
+ \ \"137.116.46.180/32\",\r\n \"137.116.193.225/32\",\r\n
+ \ \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"138.91.1.114/32\",\r\n \"138.91.17.36/32\",\r\n \"157.55.167.71/32\",\r\n
+ \ \"157.55.210.88/32\",\r\n \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n
+ \ \"168.62.4.114/32\",\r\n \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n
+ \ \"168.63.5.53/32\",\r\n \"168.63.36.126/32\",\r\n \"168.63.133.23/32\",\r\n
+ \ \"168.63.208.148/32\",\r\n \"191.232.37.60/32\",\r\n \"191.233.10.0/27\",\r\n
+ \ \"191.233.76.85/32\",\r\n \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n
+ \ \"191.234.155.96/27\",\r\n \"191.235.227.192/27\",\r\n
+ \ \"191.236.37.239/32\",\r\n \"191.236.38.142/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"207.46.149.75/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1000:4::400/122\",\r\n \"2603:1000:104:1::340/122\",\r\n
+ \ \"2603:1010:6:1::340/122\",\r\n \"2603:1010:101::400/122\",\r\n
+ \ \"2603:1010:304::400/122\",\r\n \"2603:1010:404::400/122\",\r\n
+ \ \"2603:1020:5:1::340/122\",\r\n \"2603:1020:206:1::340/122\",\r\n
+ \ \"2603:1020:305::400/122\",\r\n \"2603:1020:405::400/122\",\r\n
+ \ \"2603:1020:605::400/122\",\r\n \"2603:1020:705:1::340/122\",\r\n
+ \ \"2603:1020:805:1::340/122\",\r\n \"2603:1020:905::400/122\",\r\n
+ \ \"2603:1020:a04:1::340/122\",\r\n \"2603:1020:b04::400/122\",\r\n
+ \ \"2603:1020:c04:1::340/122\",\r\n \"2603:1020:d04::400/122\",\r\n
+ \ \"2603:1020:e04:1::340/122\",\r\n \"2603:1020:f04::400/122\",\r\n
+ \ \"2603:1020:1004::340/122\",\r\n \"2603:1020:1104::300/122\",\r\n
+ \ \"2603:1030:f:1::400/122\",\r\n \"2603:1030:10:1::340/122\",\r\n
+ \ \"2603:1030:104:1::340/122\",\r\n \"2603:1030:107::300/122\",\r\n
+ \ \"2603:1030:210:1::340/122\",\r\n \"2603:1030:40b:1::340/122\",\r\n
+ \ \"2603:1030:40c:1::340/122\",\r\n \"2603:1030:504:1::340/122\",\r\n
+ \ \"2603:1030:608::400/122\",\r\n \"2603:1030:807:1::340/122\",\r\n
+ \ \"2603:1030:a07::400/122\",\r\n \"2603:1030:b04::400/122\",\r\n
+ \ \"2603:1030:c06:1::340/122\",\r\n \"2603:1030:f05:1::340/122\",\r\n
+ \ \"2603:1030:1005::400/122\",\r\n \"2603:1040:5:1::340/122\",\r\n
+ \ \"2603:1040:207::400/122\",\r\n \"2603:1040:407:1::340/122\",\r\n
+ \ \"2603:1040:606::400/122\",\r\n \"2603:1040:806::400/122\",\r\n
+ \ \"2603:1040:904:1::340/122\",\r\n \"2603:1040:a06:1::340/122\",\r\n
+ \ \"2603:1040:b04::400/122\",\r\n \"2603:1040:c06::400/122\",\r\n
+ \ \"2603:1040:d04::340/122\",\r\n \"2603:1040:f05:1::340/122\",\r\n
+ \ \"2603:1040:1104::300/122\",\r\n \"2603:1050:6:1::340/122\",\r\n
+ \ \"2603:1050:403::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaCentral\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.37.225.160/27\",\r\n
+ \ \"2603:1010:304::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaEast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.70.73.0/27\",\r\n
+ \ \"20.37.196.128/27\",\r\n \"40.79.162.96/27\",\r\n \"40.79.170.192/27\",\r\n
+ \ \"104.210.115.52/32\",\r\n \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n
+ \ \"2603:1010:6:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.117.100/32\",\r\n \"13.77.52.128/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"52.189.217.254/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"2603:1010:101::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.BrazilSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.97.29/32\",\r\n \"104.41.2.182/32\",\r\n \"191.232.37.60/32\",\r\n
+ \ \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n \"191.234.155.96/27\",\r\n
+ \ \"191.235.227.192/27\",\r\n \"2603:1050:6:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.96/27\",\r\n \"20.38.146.224/27\",\r\n
+ \ \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.233.40.34/32\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.246.154.224/27\",\r\n \"2603:1030:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.128/27\",\r\n \"40.86.224.98/32\",\r\n
+ \ \"40.86.224.104/32\",\r\n \"40.89.18.192/27\",\r\n \"52.235.41.66/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"2603:1030:1005::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralIndia\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.99.96/27\",\r\n \"40.80.50.224/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n
+ \ \"104.211.96.144/31\",\r\n \"2603:1040:a06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n
+ \ \"13.89.55.147/32\",\r\n \"13.89.171.224/27\",\r\n \"20.40.200.32/27\",\r\n
+ \ \"23.99.195.236/32\",\r\n \"40.77.18.99/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"52.165.44.224/32\",\r\n \"52.182.139.0/27\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n \"2603:1030:10:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.195.192/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n \"52.180.177.206/32\",\r\n
+ \ \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n \"52.180.181.239/32\",\r\n
+ \ \"2603:1030:f:1::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastAsia\",\r\n \"id\":
+ \"BatchNodeManagement.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.75.36.96/27\",\r\n
+ \ \"20.189.109.0/27\",\r\n \"23.99.98.61/32\",\r\n \"23.99.107.229/32\",\r\n
+ \ \"168.63.133.23/32\",\r\n \"168.63.208.148/32\",\r\n \"207.46.149.75/32\",\r\n
+ \ \"2603:1040:207::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastUS\",\r\n \"id\":
+ \"BatchNodeManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.92.114.103/32\",\r\n
+ \ \"20.42.6.224/27\",\r\n \"23.96.12.112/32\",\r\n \"23.96.101.73/32\",\r\n
+ \ \"23.96.109.140/32\",\r\n \"40.71.12.192/27\",\r\n \"40.78.227.0/27\",\r\n
+ \ \"40.79.154.32/27\",\r\n \"40.88.48.36/32\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"104.41.129.99/32\",\r\n \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n \"191.236.37.239/32\",\r\n
+ \ \"191.236.38.142/32\",\r\n \"2603:1030:210:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.77.80.138/32\",\r\n
+ \ \"20.41.5.224/27\",\r\n \"40.70.147.224/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"52.167.106.128/27\",\r\n \"104.208.144.128/27\",\r\n
+ \ \"104.208.156.99/32\",\r\n \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n
+ \ \"137.116.33.5/32\",\r\n \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n
+ \ \"137.116.37.146/32\",\r\n \"137.116.46.180/32\",\r\n \"2603:1030:40c:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n \"20.39.2.44/32\",\r\n
+ \ \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n \"20.39.3.186/32\",\r\n
+ \ \"20.39.12.64/27\",\r\n \"40.74.149.48/29\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n \"40.89.67.77/32\",\r\n
+ \ \"40.89.70.17/32\",\r\n \"52.138.90.64/27\",\r\n \"52.225.185.38/32\",\r\n
+ \ \"52.225.191.67/32\",\r\n \"52.253.227.240/32\",\r\n \"2603:1030:40b:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.FranceCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.40.137.186/32\",\r\n \"20.40.149.165/32\",\r\n
+ \ \"20.43.42.96/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"2603:1020:805:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.FranceSouth\",\r\n \"id\":
+ \"BatchNodeManagement.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.192/27\",\r\n
+ \ \"52.136.143.192/31\",\r\n \"2603:1020:905::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.GermanyNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n
+ \ \"2603:1020:d04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.GermanyWestCentral\",\r\n \"id\":
+ \"BatchNodeManagement.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.224/27\",\r\n \"51.116.154.32/27\",\r\n
+ \ \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n \"2603:1020:c04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.JapanEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.144.135/32\",\r\n \"13.78.108.128/27\",\r\n
+ \ \"20.43.66.96/27\",\r\n \"23.100.100.145/32\",\r\n \"23.100.103.112/32\",\r\n
+ \ \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n \"138.91.1.114/32\",\r\n
+ \ \"2603:1040:407:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.JapanWest\",\r\n \"id\":
+ \"BatchNodeManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.0/27\",\r\n
+ \ \"40.74.140.140/32\",\r\n \"40.80.58.160/27\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"138.91.17.36/32\",\r\n \"2603:1040:606::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.66.128/27\",\r\n \"20.44.27.64/27\",\r\n \"52.231.19.96/27\",\r\n
+ \ \"52.231.32.70/31\",\r\n \"52.231.32.82/32\",\r\n \"2603:1040:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.128/27\",\r\n \"52.231.147.128/27\",\r\n
+ \ \"52.231.200.112/31\",\r\n \"52.231.200.126/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorthCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.232.67/32\",\r\n \"40.80.190.192/27\",\r\n
+ \ \"52.162.110.32/27\",\r\n \"65.52.199.156/32\",\r\n \"65.52.199.188/32\",\r\n
+ \ \"157.55.167.71/32\",\r\n \"157.55.210.88/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"2603:1030:608::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.NorthEurope\",\r\n \"id\":
+ \"BatchNodeManagement.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.74.107.128/27\",\r\n \"13.79.172.125/32\",\r\n \"20.38.85.224/27\",\r\n
+ \ \"52.138.226.128/27\",\r\n \"52.164.244.189/32\",\r\n \"52.164.245.81/32\",\r\n
+ \ \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n \"52.169.235.90/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n
+ \ \"168.63.36.126/32\",\r\n \"2603:1020:5:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n
+ \ \"51.120.107.96/27\",\r\n \"51.120.211.96/27\",\r\n \"2603:1020:e04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"2603:1020:f04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"2603:1000:104:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n
+ \ \"2603:1000:4::400/122\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement.SouthCentralUS\",\r\n \"id\": \"BatchNodeManagement.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.73.249.64/27\",\r\n \"20.45.122.224/27\",\r\n \"20.49.91.64/27\",\r\n
+ \ \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n \"23.102.185.64/32\",\r\n
+ \ \"40.74.177.177/32\",\r\n \"52.249.60.22/32\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"104.214.19.192/27\",\r\n \"104.214.65.153/32\",\r\n \"2603:1030:807:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SoutheastAsia\",\r\n
+ \ \"id\": \"BatchNodeManagement.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n \"20.43.132.64/27\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.98.82.160/27\",\r\n
+ \ \"40.78.234.96/27\",\r\n \"111.221.104.48/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1040:5:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthIndia\",\r\n \"id\":
+ \"BatchNodeManagement.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.41.195.128/27\",\r\n
+ \ \"40.78.195.128/27\",\r\n \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"2603:1040:c06::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.49.192/27\",\r\n \"51.107.59.224/27\",\r\n
+ \ \"2603:1020:a04:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SwitzerlandWest\",\r\n \"id\":
+ \"BatchNodeManagement.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.107.145.160/27\",\r\n
+ \ \"51.107.155.224/27\",\r\n \"2603:1020:b04::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UAECentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n
+ \ \"2603:1040:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UAENorth\",\r\n \"id\":
+ \"BatchNodeManagement.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.38.137.192/27\",\r\n
+ \ \"65.52.251.224/27\",\r\n \"2603:1040:904:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.28.0/27\",\r\n
+ \ \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n \"51.140.148.160/27\",\r\n
+ \ \"51.140.184.59/32\",\r\n \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n
+ \ \"2603:1020:705:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UKSouth2\",\r\n \"id\":
+ \"BatchNodeManagement.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.32.176/32\",\r\n
+ \ \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n \"13.87.57.96/27\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"2603:1020:405::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.162.192/27\",\r\n
+ \ \"51.140.211.128/27\",\r\n \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n
+ \ \"51.141.8.64/32\",\r\n \"2603:1020:605::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.WestCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.160/27\",\r\n \"13.78.145.2/32\",\r\n
+ \ \"13.78.145.73/32\",\r\n \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n
+ \ \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n \"52.161.107.48/32\",\r\n
+ \ \"2603:1030:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestEurope\",\r\n \"id\":
+ \"BatchNodeManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n
+ \ \"13.81.59.254/32\",\r\n \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.115.50.9/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n \"52.174.35.218/32\",\r\n
+ \ \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n \"52.174.179.66/32\",\r\n
+ \ \"52.174.180.164/32\",\r\n \"52.233.157.9/32\",\r\n \"52.233.157.78/32\",\r\n
+ \ \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n \"52.236.186.128/26\",\r\n
+ \ \"104.40.183.25/32\",\r\n \"104.45.13.8/32\",\r\n \"104.47.149.96/32\",\r\n
+ \ \"137.116.193.225/32\",\r\n \"168.63.5.53/32\",\r\n \"191.233.76.85/32\",\r\n
+ \ \"2603:1020:206:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestIndia\",\r\n \"id\":
+ \"BatchNodeManagement.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"52.136.49.192/27\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"2603:1040:806::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n \"13.91.107.154/32\",\r\n
+ \ \"13.93.206.144/32\",\r\n \"40.82.255.64/27\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.118.208.127/32\",\r\n \"104.40.69.159/32\",\r\n \"168.62.4.114/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"2603:1030:a07::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS2\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.32/27\",\r\n
+ \ \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n \"13.66.227.193/32\",\r\n
+ \ \"40.64.128.160/27\",\r\n \"40.78.242.224/27\",\r\n \"40.78.250.160/27\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.148.148.46/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n \"2603:1030:c06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"CognitiveServicesManagement\",\r\n
+ \ \"id\": \"CognitiveServicesManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"5\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"CognitiveServicesManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.207/32\",\r\n \"13.65.241.39/32\",\r\n
+ \ \"13.66.56.76/32\",\r\n \"13.66.141.232/29\",\r\n \"13.66.142.0/26\",\r\n
+ \ \"13.67.10.80/29\",\r\n \"13.67.10.128/26\",\r\n \"13.68.82.4/32\",\r\n
+ \ \"13.68.211.223/32\",\r\n \"13.69.67.64/28\",\r\n \"13.69.67.128/26\",\r\n
+ \ \"13.69.230.0/29\",\r\n \"13.69.230.32/29\",\r\n \"13.70.74.88/29\",\r\n
+ \ \"13.70.74.120/29\",\r\n \"13.70.127.50/32\",\r\n \"13.70.149.125/32\",\r\n
+ \ \"13.71.173.216/29\",\r\n \"13.71.173.248/29\",\r\n \"13.71.196.136/29\",\r\n
+ \ \"13.71.196.168/29\",\r\n \"13.73.242.48/29\",\r\n \"13.73.242.128/26\",\r\n
+ \ \"13.73.249.0/27\",\r\n \"13.73.249.96/27\",\r\n \"13.73.249.128/28\",\r\n
+ \ \"13.73.253.122/31\",\r\n \"13.73.254.200/29\",\r\n \"13.73.254.208/29\",\r\n
+ \ \"13.73.254.216/30\",\r\n \"13.73.255.32/27\",\r\n \"13.74.139.192/32\",\r\n
+ \ \"13.75.39.64/29\",\r\n \"13.75.39.96/29\",\r\n \"13.75.92.220/32\",\r\n
+ \ \"13.75.137.81/32\",\r\n \"13.75.163.9/32\",\r\n \"13.75.168.111/32\",\r\n
+ \ \"13.77.55.152/29\",\r\n \"13.77.170.155/32\",\r\n \"13.78.17.188/32\",\r\n
+ \ \"13.78.70.7/32\",\r\n \"13.78.185.44/32\",\r\n \"13.78.187.168/32\",\r\n
+ \ \"13.83.68.180/32\",\r\n \"13.84.42.205/32\",\r\n \"13.86.178.10/32\",\r\n
+ \ \"13.86.184.142/32\",\r\n \"13.86.219.128/27\",\r\n \"13.86.219.160/29\",\r\n
+ \ \"13.87.216.38/32\",\r\n \"13.88.14.63/32\",\r\n \"13.88.26.200/32\",\r\n
+ \ \"13.91.58.176/32\",\r\n \"13.91.138.229/32\",\r\n \"13.92.179.108/32\",\r\n
+ \ \"13.93.122.1/32\",\r\n \"13.94.26.39/32\",\r\n \"20.36.120.224/27\",\r\n
+ \ \"20.36.121.192/27\",\r\n \"20.36.121.224/28\",\r\n \"20.36.125.128/26\",\r\n
+ \ \"20.37.64.224/27\",\r\n \"20.37.65.192/27\",\r\n \"20.37.65.224/28\",\r\n
+ \ \"20.37.68.36/30\",\r\n \"20.37.70.128/26\",\r\n \"20.37.70.224/27\",\r\n
+ \ \"20.37.71.208/28\",\r\n \"20.37.76.200/30\",\r\n \"20.37.156.204/30\",\r\n
+ \ \"20.37.157.96/27\",\r\n \"20.37.195.112/28\",\r\n \"20.37.195.192/27\",\r\n
+ \ \"20.37.196.160/27\",\r\n \"20.37.224.224/27\",\r\n \"20.37.225.192/27\",\r\n
+ \ \"20.37.225.224/28\",\r\n \"20.37.229.192/26\",\r\n \"20.38.84.108/30\",\r\n
+ \ \"20.38.85.160/27\",\r\n \"20.38.87.128/27\",\r\n \"20.38.87.160/28\",\r\n
+ \ \"20.38.136.240/28\",\r\n \"20.38.137.128/27\",\r\n \"20.38.137.224/27\",\r\n
+ \ \"20.38.141.12/30\",\r\n \"20.38.142.128/26\",\r\n \"20.38.142.224/27\",\r\n
+ \ \"20.38.143.240/28\",\r\n \"20.39.11.112/28\",\r\n \"20.39.12.0/27\",\r\n
+ \ \"20.39.12.96/27\",\r\n \"20.39.15.56/31\",\r\n \"20.39.15.60/30\",\r\n
+ \ \"20.40.125.208/32\",\r\n \"20.40.164.245/32\",\r\n \"20.40.170.73/32\",\r\n
+ \ \"20.40.187.210/32\",\r\n \"20.40.188.109/32\",\r\n \"20.40.190.135/32\",\r\n
+ \ \"20.40.190.225/32\",\r\n \"20.40.200.64/27\",\r\n \"20.40.200.96/28\",\r\n
+ \ \"20.40.207.152/29\",\r\n \"20.40.224.32/28\",\r\n \"20.40.224.48/30\",\r\n
+ \ \"20.40.224.56/29\",\r\n \"20.40.225.64/26\",\r\n \"20.40.225.192/26\",\r\n
+ \ \"20.40.229.64/28\",\r\n \"20.41.5.160/27\",\r\n \"20.41.65.192/27\",\r\n
+ \ \"20.41.66.160/27\",\r\n \"20.41.66.192/28\",\r\n \"20.41.69.40/29\",\r\n
+ \ \"20.41.69.56/30\",\r\n \"20.41.193.176/28\",\r\n \"20.41.193.192/27\",\r\n
+ \ \"20.41.195.160/27\",\r\n \"20.41.208.0/30\",\r\n \"20.42.4.204/30\",\r\n
+ \ \"20.42.6.144/28\",\r\n \"20.42.6.160/27\",\r\n \"20.42.7.128/27\",\r\n
+ \ \"20.42.131.240/28\",\r\n \"20.42.227.144/28\",\r\n \"20.42.227.160/27\",\r\n
+ \ \"20.42.228.128/27\",\r\n \"20.43.42.16/28\",\r\n \"20.43.42.32/27\",\r\n
+ \ \"20.43.43.0/27\",\r\n \"20.43.45.232/29\",\r\n \"20.43.45.244/30\",\r\n
+ \ \"20.43.47.0/26\",\r\n \"20.43.47.128/27\",\r\n \"20.43.66.16/28\",\r\n
+ \ \"20.43.66.32/27\",\r\n \"20.43.67.0/27\",\r\n \"20.43.88.240/32\",\r\n
+ \ \"20.43.121.0/29\",\r\n \"20.43.121.32/29\",\r\n \"20.43.131.48/28\",\r\n
+ \ \"20.43.132.0/27\",\r\n \"20.43.132.96/27\",\r\n \"20.44.8.160/29\",\r\n
+ \ \"20.44.8.192/29\",\r\n \"20.44.17.16/29\",\r\n \"20.44.17.48/29\",\r\n
+ \ \"20.44.27.120/29\",\r\n \"20.44.27.216/29\",\r\n \"20.45.67.213/32\",\r\n
+ \ \"20.45.112.224/27\",\r\n \"20.45.113.192/27\",\r\n \"20.45.113.224/28\",\r\n
+ \ \"20.45.116.128/26\",\r\n \"20.45.116.240/28\",\r\n \"20.45.192.126/31\",\r\n
+ \ \"20.45.195.128/27\",\r\n \"20.45.195.224/27\",\r\n \"20.45.196.0/28\",\r\n
+ \ \"20.45.198.88/29\",\r\n \"20.45.199.36/30\",\r\n \"20.46.10.128/26\",\r\n
+ \ \"20.46.10.192/27\",\r\n \"20.46.11.224/28\",\r\n \"20.48.192.64/29\",\r\n
+ \ \"20.48.192.80/30\",\r\n \"20.48.193.64/26\",\r\n \"20.48.193.192/27\",\r\n
+ \ \"20.48.196.240/28\",\r\n \"20.49.96.128/27\",\r\n \"20.49.96.160/28\",\r\n
+ \ \"20.49.102.56/29\",\r\n \"20.49.102.192/28\",\r\n \"20.49.102.208/30\",\r\n
+ \ \"20.49.102.216/29\",\r\n \"20.49.102.224/30\",\r\n \"20.49.103.128/26\",\r\n
+ \ \"20.49.114.160/29\",\r\n \"20.49.114.176/29\",\r\n \"20.49.114.184/30\",\r\n
+ \ \"20.49.114.224/27\",\r\n \"20.49.115.192/26\",\r\n \"20.49.118.64/27\",\r\n
+ \ \"20.49.119.208/28\",\r\n \"20.49.126.136/29\",\r\n \"20.49.126.144/29\",\r\n
+ \ \"20.49.126.152/30\",\r\n \"20.49.126.224/27\",\r\n \"20.50.1.16/28\",\r\n
+ \ \"20.50.68.126/31\",\r\n \"20.51.8.128/26\",\r\n \"20.51.8.224/27\",\r\n
+ \ \"20.51.12.192/27\",\r\n \"20.51.12.224/28\",\r\n \"20.51.16.192/26\",\r\n
+ \ \"20.51.17.32/27\",\r\n \"20.51.20.112/28\",\r\n \"20.52.64.16/29\",\r\n
+ \ \"20.52.72.48/29\",\r\n \"20.52.88.128/28\",\r\n \"20.53.41.32/29\",\r\n
+ \ \"20.53.41.40/30\",\r\n \"20.53.41.48/28\",\r\n \"20.53.44.0/30\",\r\n
+ \ \"20.53.44.128/26\",\r\n \"20.53.44.192/27\",\r\n \"20.53.47.80/28\",\r\n
+ \ \"20.53.48.176/28\",\r\n \"20.53.56.112/28\",\r\n \"20.58.66.64/27\",\r\n
+ \ \"20.58.67.32/28\",\r\n \"20.61.96.168/29\",\r\n \"20.61.96.176/29\",\r\n
+ \ \"20.61.96.188/30\",\r\n \"20.61.97.64/27\",\r\n \"20.61.98.64/31\",\r\n
+ \ \"20.61.98.192/26\",\r\n \"20.61.99.32/27\",\r\n \"20.61.103.80/28\",\r\n
+ \ \"20.62.58.0/26\",\r\n \"20.62.59.96/28\",\r\n \"20.62.128.144/30\",\r\n
+ \ \"20.62.129.64/26\",\r\n \"20.62.129.160/27\",\r\n \"20.62.134.80/28\",\r\n
+ \ \"20.65.130.0/26\",\r\n \"20.65.130.128/26\",\r\n \"20.65.133.96/28\",\r\n
+ \ \"20.66.2.64/26\",\r\n \"20.66.2.160/27\",\r\n \"20.66.4.240/28\",\r\n
+ \ \"20.69.0.240/28\",\r\n \"20.72.20.64/27\",\r\n \"20.72.20.128/26\",\r\n
+ \ \"20.72.21.8/29\",\r\n \"20.150.161.160/27\",\r\n \"20.150.164.128/27\",\r\n
+ \ \"20.150.164.160/28\",\r\n \"20.150.167.64/26\",\r\n \"20.150.174.136/29\",\r\n
+ \ \"20.150.241.80/29\",\r\n \"20.150.244.48/28\",\r\n \"20.150.244.128/27\",\r\n
+ \ \"20.184.58.62/32\",\r\n \"20.184.240.78/32\",\r\n \"20.184.241.66/32\",\r\n
+ \ \"20.184.241.238/32\",\r\n \"20.184.242.113/32\",\r\n \"20.184.242.115/32\",\r\n
+ \ \"20.184.242.189/32\",\r\n \"20.185.105.28/32\",\r\n \"20.187.195.152/29\",\r\n
+ \ \"20.187.196.192/30\",\r\n \"20.187.197.64/26\",\r\n \"20.187.197.160/27\",\r\n
+ \ \"20.189.108.64/27\",\r\n \"20.189.109.32/27\",\r\n \"20.189.109.64/28\",\r\n
+ \ \"20.189.111.200/30\",\r\n \"20.189.111.208/28\",\r\n \"20.189.225.0/26\",\r\n
+ \ \"20.189.225.96/27\",\r\n \"20.189.228.144/28\",\r\n \"20.191.160.8/29\",\r\n
+ \ \"20.191.160.20/30\",\r\n \"20.191.160.96/28\",\r\n \"20.191.160.112/30\",\r\n
+ \ \"20.191.161.128/26\",\r\n \"20.191.161.224/27\",\r\n \"20.191.166.96/28\",\r\n
+ \ \"20.192.44.96/28\",\r\n \"20.192.48.192/28\",\r\n \"20.192.50.80/28\",\r\n
+ \ \"20.192.50.208/29\",\r\n \"20.192.80.32/28\",\r\n \"20.192.161.144/28\",\r\n
+ \ \"20.192.161.160/27\",\r\n \"20.192.164.128/27\",\r\n \"20.192.167.64/26\",\r\n
+ \ \"20.192.184.84/30\",\r\n \"20.192.225.208/28\",\r\n \"20.192.225.224/27\",\r\n
+ \ \"20.192.228.192/27\",\r\n \"20.192.231.128/26\",\r\n \"20.193.194.0/28\",\r\n
+ \ \"20.193.194.48/29\",\r\n \"20.193.194.64/28\",\r\n \"20.194.72.64/26\",\r\n
+ \ \"20.194.72.192/27\",\r\n \"20.194.74.64/28\",\r\n \"20.195.65.240/29\",\r\n
+ \ \"20.195.72.240/28\",\r\n \"20.195.146.80/28\",\r\n \"23.96.13.121/32\",\r\n
+ \ \"23.96.229.148/32\",\r\n \"23.98.107.28/30\",\r\n \"23.98.107.200/29\",\r\n
+ \ \"23.98.107.208/28\",\r\n \"23.98.108.36/30\",\r\n \"23.98.108.40/31\",\r\n
+ \ \"23.98.108.192/26\",\r\n \"23.98.109.32/29\",\r\n \"23.100.0.32/32\",\r\n
+ \ \"23.100.57.171/32\",\r\n \"23.100.59.49/32\",\r\n \"40.64.128.192/27\",\r\n
+ \ \"40.64.134.140/30\",\r\n \"40.64.134.168/29\",\r\n \"40.64.134.176/28\",\r\n
+ \ \"40.64.135.80/29\",\r\n \"40.67.48.224/27\",\r\n \"40.67.49.192/27\",\r\n
+ \ \"40.67.49.224/28\",\r\n \"40.67.52.128/26\",\r\n \"40.67.53.160/28\",\r\n
+ \ \"40.69.73.194/32\",\r\n \"40.69.104.32/30\",\r\n \"40.69.111.36/30\",\r\n
+ \ \"40.70.47.165/32\",\r\n \"40.70.241.203/32\",\r\n \"40.74.30.108/30\",\r\n
+ \ \"40.74.31.64/26\",\r\n \"40.74.64.203/32\",\r\n \"40.78.20.224/32\",\r\n
+ \ \"40.78.204.0/29\",\r\n \"40.78.204.32/29\",\r\n \"40.79.132.48/29\",\r\n
+ \ \"40.79.132.80/29\",\r\n \"40.79.156.64/27\",\r\n \"40.79.176.32/30\",\r\n
+ \ \"40.79.187.168/29\",\r\n \"40.79.187.200/29\",\r\n \"40.80.57.208/28\",\r\n
+ \ \"40.80.57.224/27\",\r\n \"40.80.58.192/27\",\r\n \"40.80.63.152/30\",\r\n
+ \ \"40.80.63.224/28\",\r\n \"40.80.63.240/30\",\r\n \"40.80.169.192/27\",\r\n
+ \ \"40.80.170.160/27\",\r\n \"40.80.170.192/28\",\r\n \"40.80.172.28/30\",\r\n
+ \ \"40.80.176.0/28\",\r\n \"40.80.188.112/28\",\r\n \"40.80.190.128/27\",\r\n
+ \ \"40.80.190.224/27\",\r\n \"40.82.253.200/30\",\r\n \"40.82.253.208/28\",\r\n
+ \ \"40.82.255.0/26\",\r\n \"40.82.255.96/27\",\r\n \"40.85.230.100/32\",\r\n
+ \ \"40.86.227.247/32\",\r\n \"40.87.48.184/32\",\r\n \"40.88.22.25/32\",\r\n
+ \ \"40.89.17.240/28\",\r\n \"40.89.18.128/27\",\r\n \"40.89.18.224/27\",\r\n
+ \ \"40.89.23.36/30\",\r\n \"40.89.133.209/32\",\r\n \"40.89.134.214/32\",\r\n
+ \ \"40.90.138.4/32\",\r\n \"40.90.139.2/32\",\r\n \"40.90.139.36/32\",\r\n
+ \ \"40.90.139.163/32\",\r\n \"40.90.141.99/32\",\r\n \"40.112.254.71/32\",\r\n
+ \ \"40.113.124.208/32\",\r\n \"40.113.226.173/32\",\r\n \"40.115.248.103/32\",\r\n
+ \ \"40.117.154.42/32\",\r\n \"40.117.232.90/32\",\r\n \"40.119.2.134/32\",\r\n
+ \ \"40.119.11.216/29\",\r\n \"40.120.8.48/30\",\r\n \"40.121.217.232/32\",\r\n
+ \ \"40.122.42.111/32\",\r\n \"40.123.205.29/32\",\r\n \"40.123.210.248/32\",\r\n
+ \ \"40.123.214.182/32\",\r\n \"40.123.214.251/32\",\r\n \"40.123.218.49/32\",\r\n
+ \ \"40.127.76.4/32\",\r\n \"40.127.76.10/32\",\r\n \"40.127.165.113/32\",\r\n
+ \ \"51.11.97.80/29\",\r\n \"51.12.17.32/28\",\r\n \"51.12.17.136/29\",\r\n
+ \ \"51.12.17.144/28\",\r\n \"51.12.25.32/28\",\r\n \"51.12.25.208/29\",\r\n
+ \ \"51.12.41.48/28\",\r\n \"51.12.41.128/27\",\r\n \"51.12.41.224/27\",\r\n
+ \ \"51.12.43.192/26\",\r\n \"51.12.46.240/28\",\r\n \"51.12.193.48/28\",\r\n
+ \ \"51.12.193.128/27\",\r\n \"51.12.193.224/27\",\r\n \"51.12.195.128/26\",\r\n
+ \ \"51.13.1.0/29\",\r\n \"51.13.128.72/29\",\r\n \"51.13.136.64/26\",\r\n
+ \ \"51.13.137.192/28\",\r\n \"51.13.137.224/27\",\r\n \"51.104.25.240/28\",\r\n
+ \ \"51.104.27.64/27\",\r\n \"51.104.28.32/27\",\r\n \"51.104.31.160/29\",\r\n
+ \ \"51.104.31.168/30\",\r\n \"51.104.31.176/28\",\r\n \"51.105.67.176/29\",\r\n
+ \ \"51.105.67.208/29\",\r\n \"51.105.80.224/27\",\r\n \"51.105.81.192/27\",\r\n
+ \ \"51.105.81.224/28\",\r\n \"51.105.89.128/27\",\r\n \"51.105.89.224/27\",\r\n
+ \ \"51.105.90.0/28\",\r\n \"51.105.92.52/30\",\r\n \"51.105.170.64/32\",\r\n
+ \ \"51.107.48.240/28\",\r\n \"51.107.49.128/27\",\r\n \"51.107.49.224/27\",\r\n
+ \ \"51.107.52.216/29\",\r\n \"51.107.53.36/30\",\r\n \"51.107.53.40/29\",\r\n
+ \ \"51.107.84.104/32\",\r\n \"51.107.128.24/29\",\r\n \"51.107.144.224/27\",\r\n
+ \ \"51.107.145.192/27\",\r\n \"51.107.145.224/28\",\r\n \"51.107.148.20/30\",\r\n
+ \ \"51.107.148.64/28\",\r\n \"51.107.192.72/29\",\r\n \"51.107.241.0/26\",\r\n
+ \ \"51.107.241.128/27\",\r\n \"51.107.242.224/28\",\r\n \"51.107.249.0/26\",\r\n
+ \ \"51.107.249.128/27\",\r\n \"51.107.250.240/28\",\r\n \"51.116.48.144/28\",\r\n
+ \ \"51.116.48.160/27\",\r\n \"51.116.49.0/27\",\r\n \"51.116.51.192/26\",\r\n
+ \ \"51.116.54.176/28\",\r\n \"51.116.55.64/28\",\r\n \"51.116.144.144/28\",\r\n
+ \ \"51.116.144.160/27\",\r\n \"51.116.145.0/27\",\r\n \"51.116.148.128/26\",\r\n
+ \ \"51.116.149.208/28\",\r\n \"51.120.40.240/28\",\r\n \"51.120.41.128/27\",\r\n
+ \ \"51.120.41.224/27\",\r\n \"51.120.109.192/29\",\r\n \"51.120.224.224/27\",\r\n
+ \ \"51.120.225.192/27\",\r\n \"51.120.225.224/28\",\r\n \"51.120.232.64/26\",\r\n
+ \ \"51.120.233.144/28\",\r\n \"51.120.233.160/27\",\r\n \"51.120.237.0/29\",\r\n
+ \ \"51.124.95.46/32\",\r\n \"51.124.140.143/32\",\r\n \"51.137.162.128/27\",\r\n
+ \ \"51.137.162.224/27\",\r\n \"51.137.163.0/28\",\r\n \"51.137.166.28/30\",\r\n
+ \ \"51.137.166.44/30\",\r\n \"51.137.166.48/28\",\r\n \"51.137.167.192/26\",\r\n
+ \ \"51.138.40.194/32\",\r\n \"51.138.41.75/32\",\r\n \"51.138.160.4/30\",\r\n
+ \ \"51.138.210.144/28\",\r\n \"51.140.5.56/32\",\r\n \"51.140.105.165/32\",\r\n
+ \ \"51.140.202.0/32\",\r\n \"51.143.192.224/27\",\r\n \"51.143.193.192/27\",\r\n
+ \ \"51.143.193.224/28\",\r\n \"51.143.208.128/30\",\r\n \"51.143.209.0/26\",\r\n
+ \ \"51.143.209.64/27\",\r\n \"51.143.212.160/28\",\r\n \"51.144.83.210/32\",\r\n
+ \ \"52.136.48.240/28\",\r\n \"52.136.49.128/27\",\r\n \"52.136.49.224/27\",\r\n
+ \ \"52.136.53.0/26\",\r\n \"52.136.184.128/26\",\r\n \"52.136.184.192/27\",\r\n
+ \ \"52.136.185.160/28\",\r\n \"52.138.41.171/32\",\r\n \"52.138.92.172/30\",\r\n
+ \ \"52.139.106.0/26\",\r\n \"52.139.106.128/27\",\r\n \"52.139.107.192/28\",\r\n
+ \ \"52.140.105.192/27\",\r\n \"52.140.106.160/27\",\r\n \"52.140.106.192/28\",\r\n
+ \ \"52.140.110.96/29\",\r\n \"52.140.110.104/30\",\r\n \"52.140.110.112/28\",\r\n
+ \ \"52.140.110.160/30\",\r\n \"52.140.111.128/26\",\r\n \"52.140.111.224/27\",\r\n
+ \ \"52.142.81.236/32\",\r\n \"52.142.83.87/32\",\r\n \"52.142.84.66/32\",\r\n
+ \ \"52.142.85.51/32\",\r\n \"52.143.91.192/28\",\r\n \"52.146.79.144/28\",\r\n
+ \ \"52.146.79.224/27\",\r\n \"52.146.131.32/28\",\r\n \"52.146.131.48/30\",\r\n
+ \ \"52.146.131.96/27\",\r\n \"52.146.132.128/26\",\r\n \"52.146.133.0/27\",\r\n
+ \ \"52.146.137.16/28\",\r\n \"52.147.43.145/32\",\r\n \"52.147.44.12/32\",\r\n
+ \ \"52.147.97.4/30\",\r\n \"52.147.112.0/26\",\r\n \"52.147.112.64/27\",\r\n
+ \ \"52.147.112.208/28\",\r\n \"52.149.31.64/28\",\r\n \"52.150.139.192/27\",\r\n
+ \ \"52.150.140.160/27\",\r\n \"52.150.140.192/28\",\r\n \"52.150.154.200/29\",\r\n
+ \ \"52.150.154.208/28\",\r\n \"52.150.156.32/30\",\r\n \"52.150.156.40/30\",\r\n
+ \ \"52.150.157.64/26\",\r\n \"52.150.157.128/27\",\r\n \"52.152.207.160/28\",\r\n
+ \ \"52.152.207.192/28\",\r\n \"52.155.218.251/32\",\r\n \"52.156.93.240/28\",\r\n
+ \ \"52.156.103.64/27\",\r\n \"52.156.103.96/28\",\r\n \"52.161.16.73/32\",\r\n
+ \ \"52.162.110.248/29\",\r\n \"52.162.111.24/29\",\r\n \"52.163.56.146/32\",\r\n
+ \ \"52.168.112.0/26\",\r\n \"52.171.134.140/32\",\r\n \"52.172.112.0/28\",\r\n
+ \ \"52.172.112.16/29\",\r\n \"52.172.112.192/26\",\r\n \"52.172.113.32/27\",\r\n
+ \ \"52.172.116.16/28\",\r\n \"52.172.187.21/32\",\r\n \"52.173.240.242/32\",\r\n
+ \ \"52.174.60.141/32\",\r\n \"52.174.146.221/32\",\r\n \"52.175.18.186/32\",\r\n
+ \ \"52.175.35.166/32\",\r\n \"52.179.13.227/32\",\r\n \"52.179.14.109/32\",\r\n
+ \ \"52.179.113.96/27\",\r\n \"52.179.113.128/28\",\r\n \"52.180.162.194/32\",\r\n
+ \ \"52.180.166.172/32\",\r\n \"52.180.178.146/32\",\r\n \"52.180.179.119/32\",\r\n
+ \ \"52.183.33.203/32\",\r\n \"52.186.33.48/28\",\r\n \"52.186.91.216/32\",\r\n
+ \ \"52.187.20.181/32\",\r\n \"52.187.39.99/32\",\r\n \"52.190.33.56/32\",\r\n
+ \ \"52.190.33.61/32\",\r\n \"52.190.33.154/32\",\r\n \"52.191.160.229/32\",\r\n
+ \ \"52.191.173.81/32\",\r\n \"52.224.200.129/32\",\r\n \"52.225.176.80/32\",\r\n
+ \ \"52.228.83.128/27\",\r\n \"52.228.83.224/27\",\r\n \"52.228.84.0/28\",\r\n
+ \ \"52.229.16.14/32\",\r\n \"52.231.74.63/32\",\r\n \"52.231.79.142/32\",\r\n
+ \ \"52.231.148.200/30\",\r\n \"52.231.159.35/32\",\r\n \"52.233.163.218/32\",\r\n
+ \ \"52.237.137.4/32\",\r\n \"52.249.207.163/32\",\r\n \"52.255.83.208/28\",\r\n
+ \ \"52.255.84.176/28\",\r\n \"52.255.84.192/28\",\r\n \"52.255.124.16/28\",\r\n
+ \ \"52.255.124.80/28\",\r\n \"52.255.124.96/28\",\r\n \"65.52.205.19/32\",\r\n
+ \ \"65.52.252.208/28\",\r\n \"102.37.81.64/28\",\r\n \"102.37.160.144/28\",\r\n
+ \ \"102.133.28.72/29\",\r\n \"102.133.28.104/29\",\r\n \"102.133.56.144/28\",\r\n
+ \ \"102.133.56.224/27\",\r\n \"102.133.61.192/26\",\r\n \"102.133.75.174/32\",\r\n
+ \ \"102.133.123.248/29\",\r\n \"102.133.124.24/29\",\r\n
+ \ \"102.133.124.88/29\",\r\n \"102.133.124.96/29\",\r\n \"102.133.156.128/29\",\r\n
+ \ \"102.133.161.242/32\",\r\n \"102.133.162.109/32\",\r\n
+ \ \"102.133.162.196/32\",\r\n \"102.133.162.221/32\",\r\n
+ \ \"102.133.163.185/32\",\r\n \"102.133.217.80/28\",\r\n
+ \ \"102.133.217.96/27\",\r\n \"102.133.218.0/27\",\r\n \"102.133.220.192/30\",\r\n
+ \ \"102.133.221.64/26\",\r\n \"102.133.221.128/27\",\r\n
+ \ \"102.133.236.198/32\",\r\n \"104.42.100.80/32\",\r\n \"104.42.194.173/32\",\r\n
+ \ \"104.42.239.93/32\",\r\n \"104.44.89.44/32\",\r\n \"104.46.112.239/32\",\r\n
+ \ \"104.46.176.164/30\",\r\n \"104.46.176.176/28\",\r\n \"104.46.178.4/30\",\r\n
+ \ \"104.46.178.192/26\",\r\n \"104.46.179.0/27\",\r\n \"104.46.183.128/28\",\r\n
+ \ \"104.46.239.137/32\",\r\n \"104.211.88.173/32\",\r\n \"104.211.222.193/32\",\r\n
+ \ \"104.214.49.162/32\",\r\n \"104.214.233.86/32\",\r\n \"104.215.9.217/32\",\r\n
+ \ \"137.117.70.195/32\",\r\n \"137.135.45.32/32\",\r\n \"168.61.158.107/32\",\r\n
+ \ \"168.61.165.229/32\",\r\n \"168.63.20.177/32\",\r\n \"191.232.39.30/32\",\r\n
+ \ \"191.232.162.204/32\",\r\n \"191.233.10.48/28\",\r\n \"191.233.10.64/27\",\r\n
+ \ \"191.233.10.128/27\",\r\n \"191.233.15.64/26\",\r\n \"191.233.205.72/29\",\r\n
+ \ \"191.233.205.104/29\",\r\n \"191.234.138.136/29\",\r\n
+ \ \"191.234.138.148/30\",\r\n \"191.234.139.192/26\",\r\n
+ \ \"191.234.142.32/27\",\r\n \"191.235.227.128/27\",\r\n
+ \ \"191.235.227.224/27\",\r\n \"191.235.228.0/28\",\r\n \"191.238.72.80/28\",\r\n
+ \ \"2603:1000:4::680/122\",\r\n \"2603:1000:104::180/122\",\r\n
+ \ \"2603:1000:104::380/122\",\r\n \"2603:1000:104:1::640/122\",\r\n
+ \ \"2603:1010:6::80/122\",\r\n \"2603:1010:6:1::640/122\",\r\n
+ \ \"2603:1010:101::680/122\",\r\n \"2603:1010:304::680/122\",\r\n
+ \ \"2603:1010:404::680/122\",\r\n \"2603:1020:5::80/122\",\r\n
+ \ \"2603:1020:5:1::640/122\",\r\n \"2603:1020:206::80/122\",\r\n
+ \ \"2603:1020:206:1::640/122\",\r\n \"2603:1020:305::680/122\",\r\n
+ \ \"2603:1020:405::680/122\",\r\n \"2603:1020:605::680/122\",\r\n
+ \ \"2603:1020:705::80/122\",\r\n \"2603:1020:705:1::640/122\",\r\n
+ \ \"2603:1020:805::80/122\",\r\n \"2603:1020:805:1::640/122\",\r\n
+ \ \"2603:1020:905::680/122\",\r\n \"2603:1020:a04::80/122\",\r\n
+ \ \"2603:1020:a04:1::640/122\",\r\n \"2603:1020:b04::680/122\",\r\n
+ \ \"2603:1020:c04::80/122\",\r\n \"2603:1020:c04:1::640/122\",\r\n
+ \ \"2603:1020:d04::680/122\",\r\n \"2603:1020:e04::80/122\",\r\n
+ \ \"2603:1020:e04::358/125\",\r\n \"2603:1020:e04:1::640/122\",\r\n
+ \ \"2603:1020:e04:2::/122\",\r\n \"2603:1020:e04:3::280/122\",\r\n
+ \ \"2603:1020:f04::680/122\",\r\n \"2603:1020:f04:2::/122\",\r\n
+ \ \"2603:1020:1004::640/122\",\r\n \"2603:1020:1004:1::80/122\",\r\n
+ \ \"2603:1020:1004:1::1f0/125\",\r\n \"2603:1020:1004:1::300/122\",\r\n
+ \ \"2603:1020:1004:1::740/122\",\r\n \"2603:1020:1104::700/121\",\r\n
+ \ \"2603:1020:1104:1::150/125\",\r\n \"2603:1020:1104:1::480/122\",\r\n
+ \ \"2603:1030:f:1::2b8/125\",\r\n \"2603:1030:f:1::680/122\",\r\n
+ \ \"2603:1030:f:2::600/121\",\r\n \"2603:1030:10::80/122\",\r\n
+ \ \"2603:1030:10:1::640/122\",\r\n \"2603:1030:104::80/122\",\r\n
+ \ \"2603:1030:104:1::640/122\",\r\n \"2603:1030:107::730/125\",\r\n
+ \ \"2603:1030:107::740/122\",\r\n \"2603:1030:107::780/122\",\r\n
+ \ \"2603:1030:210::80/122\",\r\n \"2603:1030:210:1::640/122\",\r\n
+ \ \"2603:1030:40b:1::640/122\",\r\n \"2603:1030:40c::80/122\",\r\n
+ \ \"2603:1030:40c:1::640/122\",\r\n \"2603:1030:504::80/122\",\r\n
+ \ \"2603:1030:504::1f0/125\",\r\n \"2603:1030:504::300/122\",\r\n
+ \ \"2603:1030:504:1::640/122\",\r\n \"2603:1030:504:2::200/122\",\r\n
+ \ \"2603:1030:608::680/122\",\r\n \"2603:1030:807::80/122\",\r\n
+ \ \"2603:1030:807:1::640/122\",\r\n \"2603:1030:a07::680/122\",\r\n
+ \ \"2603:1030:b04::680/122\",\r\n \"2603:1030:c06:1::640/122\",\r\n
+ \ \"2603:1030:f05::80/122\",\r\n \"2603:1030:f05:1::640/122\",\r\n
+ \ \"2603:1030:1005::680/122\",\r\n \"2603:1040:5::180/122\",\r\n
+ \ \"2603:1040:5:1::640/122\",\r\n \"2603:1040:207::680/122\",\r\n
+ \ \"2603:1040:407::80/122\",\r\n \"2603:1040:407:1::640/122\",\r\n
+ \ \"2603:1040:606::680/122\",\r\n \"2603:1040:806::680/122\",\r\n
+ \ \"2603:1040:904::80/122\",\r\n \"2603:1040:904:1::640/122\",\r\n
+ \ \"2603:1040:a06::180/122\",\r\n \"2603:1040:a06:1::640/122\",\r\n
+ \ \"2603:1040:b04::680/122\",\r\n \"2603:1040:c06::680/122\",\r\n
+ \ \"2603:1040:d04::640/122\",\r\n \"2603:1040:d04:1::80/122\",\r\n
+ \ \"2603:1040:d04:1::1f0/125\",\r\n \"2603:1040:d04:1::300/122\",\r\n
+ \ \"2603:1040:d04:1::740/122\",\r\n \"2603:1040:f05::80/122\",\r\n
+ \ \"2603:1040:f05::358/125\",\r\n \"2603:1040:f05:1::640/122\",\r\n
+ \ \"2603:1040:f05:2::80/121\",\r\n \"2603:1040:1104::700/121\",\r\n
+ \ \"2603:1040:1104:1::150/125\",\r\n \"2603:1040:1104:1::500/122\",\r\n
+ \ \"2603:1050:6::80/122\",\r\n \"2603:1050:6:1::640/122\",\r\n
+ \ \"2603:1050:403::640/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory\",\r\n \"id\": \"DataFactory\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"13.67.10.208/28\",\r\n
+ \ \"13.69.67.192/28\",\r\n \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n
+ \ \"13.69.230.96/28\",\r\n \"13.70.74.144/28\",\r\n \"13.71.175.80/28\",\r\n
+ \ \"13.71.199.0/28\",\r\n \"13.73.244.32/28\",\r\n \"13.73.253.96/29\",\r\n
+ \ \"13.74.108.224/28\",\r\n \"13.75.39.112/28\",\r\n \"13.77.53.160/28\",\r\n
+ \ \"13.78.109.192/28\",\r\n \"13.86.219.208/28\",\r\n \"13.89.174.192/28\",\r\n
+ \ \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n \"13.104.252.224/28\",\r\n
+ \ \"13.104.253.48/28\",\r\n \"13.104.254.128/28\",\r\n \"20.36.117.208/28\",\r\n
+ \ \"20.36.124.32/28\",\r\n \"20.36.124.128/25\",\r\n \"20.36.125.0/26\",\r\n
+ \ \"20.37.68.144/28\",\r\n \"20.37.69.128/25\",\r\n \"20.37.70.0/26\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.37.193.0/25\",\r\n
+ \ \"20.37.193.128/26\",\r\n \"20.37.198.224/29\",\r\n \"20.37.228.16/28\",\r\n
+ \ \"20.37.228.192/26\",\r\n \"20.37.229.0/25\",\r\n \"20.38.80.192/26\",\r\n
+ \ \"20.38.82.0/23\",\r\n \"20.38.141.16/28\",\r\n \"20.38.141.128/25\",\r\n
+ \ \"20.38.142.0/26\",\r\n \"20.38.147.224/28\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"20.40.206.224/29\",\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n
+ \ \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n \"20.41.197.112/29\",\r\n
+ \ \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n \"20.42.2.0/23\",\r\n
+ \ \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n
+ \ \"20.43.44.208/29\",\r\n \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n
+ \ \"20.43.70.120/29\",\r\n \"20.43.121.48/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.44.10.64/28\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.45.123.160/28\",\r\n \"20.49.83.224/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"20.49.111.0/29\",\r\n \"20.49.114.24/29\",\r\n
+ \ \"20.49.118.128/25\",\r\n \"20.50.68.56/29\",\r\n \"20.52.64.0/28\",\r\n
+ \ \"20.53.0.48/28\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n \"20.72.22.0/23\",\r\n
+ \ \"20.72.28.48/28\",\r\n \"20.150.162.0/23\",\r\n \"20.150.173.16/28\",\r\n
+ \ \"20.150.181.112/28\",\r\n \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n
+ \ \"20.189.109.232/29\",\r\n \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n
+ \ \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n \"20.192.162.0/23\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"20.192.226.0/23\",\r\n \"20.192.238.96/28\",\r\n
+ \ \"20.193.205.144/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n \"23.98.106.128/29\",\r\n
+ \ \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n \"40.64.132.232/29\",\r\n
+ \ \"40.69.108.160/28\",\r\n \"40.69.111.48/28\",\r\n \"40.70.148.160/28\",\r\n
+ \ \"40.71.14.32/28\",\r\n \"40.74.24.192/26\",\r\n \"40.74.26.0/23\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"40.78.196.128/28\",\r\n
+ \ \"40.78.229.96/28\",\r\n \"40.78.236.176/28\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n
+ \ \"40.79.146.240/28\",\r\n \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n
+ \ \"40.79.187.208/28\",\r\n \"40.79.195.224/28\",\r\n \"40.80.51.160/28\",\r\n
+ \ \"40.80.56.128/25\",\r\n \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n
+ \ \"40.80.168.128/25\",\r\n \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n
+ \ \"40.80.176.96/28\",\r\n \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n
+ \ \"40.82.249.64/26\",\r\n \"40.82.250.0/23\",\r\n \"40.89.16.128/25\",\r\n
+ \ \"40.89.17.0/26\",\r\n \"40.89.20.224/29\",\r\n \"40.113.176.232/29\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"40.120.8.56/29\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"40.122.0.16/28\",\r\n
+ \ \"51.12.18.0/23\",\r\n \"51.12.26.0/23\",\r\n \"51.12.101.176/28\",\r\n
+ \ \"51.12.206.16/28\",\r\n \"51.12.229.64/28\",\r\n \"51.12.237.64/28\",\r\n
+ \ \"51.13.128.0/28\",\r\n \"51.104.9.32/28\",\r\n \"51.104.24.128/25\",\r\n
+ \ \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n \"51.105.67.240/28\",\r\n
+ \ \"51.105.75.240/28\",\r\n \"51.105.92.176/28\",\r\n \"51.105.93.64/26\",\r\n
+ \ \"51.105.93.128/25\",\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n
+ \ \"51.107.52.128/26\",\r\n \"51.107.128.0/28\",\r\n \"51.107.148.80/28\",\r\n
+ \ \"51.107.149.0/25\",\r\n \"51.107.149.128/26\",\r\n \"51.107.192.80/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"51.120.44.208/28\",\r\n \"51.120.45.64/26\",\r\n
+ \ \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n \"51.120.109.96/28\",\r\n
+ \ \"51.120.213.32/28\",\r\n \"51.120.228.224/27\",\r\n \"51.120.229.64/26\",\r\n
+ \ \"51.120.229.128/25\",\r\n \"51.120.238.0/23\",\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.138.160.16/28\",\r\n
+ \ \"51.140.212.112/28\",\r\n \"52.138.92.128/28\",\r\n \"52.138.229.32/28\",\r\n
+ \ \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n \"52.140.108.208/29\",\r\n
+ \ \"52.150.136.192/26\",\r\n \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n
+ \ \"52.150.155.0/24\",\r\n \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n
+ \ \"52.162.111.48/28\",\r\n \"52.167.107.224/28\",\r\n \"52.176.232.16/28\",\r\n
+ \ \"52.182.141.16/28\",\r\n \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n
+ \ \"52.228.86.144/29\",\r\n \"52.231.20.64/28\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\",\r\n \"52.236.187.112/28\",\r\n \"52.246.155.224/28\",\r\n
+ \ \"52.250.228.0/29\",\r\n \"102.37.64.96/28\",\r\n \"102.133.60.48/28\",\r\n
+ \ \"102.133.60.192/26\",\r\n \"102.133.61.0/25\",\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n \"191.233.12.0/23\",\r\n
+ \ \"191.233.54.224/28\",\r\n \"191.233.205.160/28\",\r\n
+ \ \"191.234.137.32/29\",\r\n \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n
+ \ \"191.234.149.0/28\",\r\n \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n
+ \ \"191.235.225.0/26\",\r\n \"2603:1000:4::440/122\",\r\n
+ \ \"2603:1000:4::500/121\",\r\n \"2603:1000:4:402::330/124\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\",\r\n \"2603:1010:304::440/122\",\r\n
+ \ \"2603:1010:304::500/121\",\r\n \"2603:1010:304:402::330/124\",\r\n
+ \ \"2603:1010:404::440/122\",\r\n \"2603:1010:404::500/121\",\r\n
+ \ \"2603:1010:404:402::330/124\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\",\r\n \"2603:1020:305::440/122\",\r\n
+ \ \"2603:1020:305::500/121\",\r\n \"2603:1020:305:402::330/124\",\r\n
+ \ \"2603:1020:405::440/122\",\r\n \"2603:1020:405::500/121\",\r\n
+ \ \"2603:1020:405:402::330/124\",\r\n \"2603:1020:605::440/122\",\r\n
+ \ \"2603:1020:605::500/121\",\r\n \"2603:1020:605:402::330/124\",\r\n
+ \ \"2603:1020:705:1::480/121\",\r\n \"2603:1020:705:1::500/122\",\r\n
+ \ \"2603:1020:705:1::700/121\",\r\n \"2603:1020:705:1::780/122\",\r\n
+ \ \"2603:1020:705:402::330/124\",\r\n \"2603:1020:705:802::210/124\",\r\n
+ \ \"2603:1020:705:c02::210/124\",\r\n \"2603:1020:805:1::480/121\",\r\n
+ \ \"2603:1020:805:1::500/122\",\r\n \"2603:1020:805:1::700/121\",\r\n
+ \ \"2603:1020:805:1::780/122\",\r\n \"2603:1020:805:402::330/124\",\r\n
+ \ \"2603:1020:805:802::210/124\",\r\n \"2603:1020:805:c02::210/124\",\r\n
+ \ \"2603:1020:905::440/122\",\r\n \"2603:1020:905::500/121\",\r\n
+ \ \"2603:1020:905:402::330/124\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\",\r\n
+ \ \"2603:1020:b04::440/122\",\r\n \"2603:1020:b04::500/121\",\r\n
+ \ \"2603:1020:b04:402::330/124\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\",\r\n
+ \ \"2603:1020:d04::440/122\",\r\n \"2603:1020:d04::500/121\",\r\n
+ \ \"2603:1020:d04:402::330/124\",\r\n \"2603:1020:e04:1::480/121\",\r\n
+ \ \"2603:1020:e04:1::500/122\",\r\n \"2603:1020:e04:1::700/121\",\r\n
+ \ \"2603:1020:e04:1::780/122\",\r\n \"2603:1020:e04:402::330/124\",\r\n
+ \ \"2603:1020:e04:802::210/124\",\r\n \"2603:1020:e04:c02::210/124\",\r\n
+ \ \"2603:1020:f04::440/122\",\r\n \"2603:1020:f04::500/121\",\r\n
+ \ \"2603:1020:f04:402::330/124\",\r\n \"2603:1020:1004::480/121\",\r\n
+ \ \"2603:1020:1004::500/122\",\r\n \"2603:1020:1004::700/121\",\r\n
+ \ \"2603:1020:1004::780/122\",\r\n \"2603:1020:1004:400::240/124\",\r\n
+ \ \"2603:1020:1004:800::340/124\",\r\n \"2603:1020:1004:c02::380/124\",\r\n
+ \ \"2603:1020:1104::600/121\",\r\n \"2603:1020:1104:400::500/124\",\r\n
+ \ \"2603:1030:f:1::440/122\",\r\n \"2603:1030:f:1::500/121\",\r\n
+ \ \"2603:1030:f:400::b30/124\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\",\r\n
+ \ \"2603:1030:104:1::480/121\",\r\n \"2603:1030:104:1::500/122\",\r\n
+ \ \"2603:1030:104:1::700/121\",\r\n \"2603:1030:104:1::780/122\",\r\n
+ \ \"2603:1030:104:402::330/124\",\r\n \"2603:1030:107::600/121\",\r\n
+ \ \"2603:1030:107:400::380/124\",\r\n \"2603:1030:210:1::480/121\",\r\n
+ \ \"2603:1030:210:1::500/122\",\r\n \"2603:1030:210:1::700/121\",\r\n
+ \ \"2603:1030:210:1::780/122\",\r\n \"2603:1030:210:402::330/124\",\r\n
+ \ \"2603:1030:210:802::210/124\",\r\n \"2603:1030:210:c02::210/124\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\",\r\n \"2603:1030:40c:1::480/121\",\r\n
+ \ \"2603:1030:40c:1::500/122\",\r\n \"2603:1030:40c:1::700/121\",\r\n
+ \ \"2603:1030:40c:1::780/122\",\r\n \"2603:1030:40c:402::330/124\",\r\n
+ \ \"2603:1030:40c:802::210/124\",\r\n \"2603:1030:40c:c02::210/124\",\r\n
+ \ \"2603:1030:504:1::480/121\",\r\n \"2603:1030:504:1::500/122\",\r\n
+ \ \"2603:1030:504:1::700/121\",\r\n \"2603:1030:504:1::780/122\",\r\n
+ \ \"2603:1030:504:402::240/124\",\r\n \"2603:1030:504:802::340/124\",\r\n
+ \ \"2603:1030:504:c02::380/124\",\r\n \"2603:1030:608::440/122\",\r\n
+ \ \"2603:1030:608::500/121\",\r\n \"2603:1030:608:402::330/124\",\r\n
+ \ \"2603:1030:807:1::480/121\",\r\n \"2603:1030:807:1::500/122\",\r\n
+ \ \"2603:1030:807:1::700/121\",\r\n \"2603:1030:807:1::780/122\",\r\n
+ \ \"2603:1030:807:402::330/124\",\r\n \"2603:1030:807:802::210/124\",\r\n
+ \ \"2603:1030:807:c02::210/124\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\",\r\n
+ \ \"2603:1030:b04::440/122\",\r\n \"2603:1030:b04::500/121\",\r\n
+ \ \"2603:1030:b04:402::330/124\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\",\r\n
+ \ \"2603:1030:f05:1::480/121\",\r\n \"2603:1030:f05:1::500/122\",\r\n
+ \ \"2603:1030:f05:1::700/121\",\r\n \"2603:1030:f05:1::780/122\",\r\n
+ \ \"2603:1030:f05:402::330/124\",\r\n \"2603:1030:f05:802::210/124\",\r\n
+ \ \"2603:1030:f05:c02::210/124\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\",\r\n
+ \ \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\",\r\n \"2603:1040:207::440/122\",\r\n
+ \ \"2603:1040:207::500/121\",\r\n \"2603:1040:207:402::330/124\",\r\n
+ \ \"2603:1040:407:1::480/121\",\r\n \"2603:1040:407:1::500/122\",\r\n
+ \ \"2603:1040:407:1::700/121\",\r\n \"2603:1040:407:1::780/122\",\r\n
+ \ \"2603:1040:407:402::330/124\",\r\n \"2603:1040:407:802::210/124\",\r\n
+ \ \"2603:1040:407:c02::210/124\",\r\n \"2603:1040:606::440/122\",\r\n
+ \ \"2603:1040:606::500/121\",\r\n \"2603:1040:606:402::330/124\",\r\n
+ \ \"2603:1040:806::440/122\",\r\n \"2603:1040:806::500/121\",\r\n
+ \ \"2603:1040:806:402::330/124\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\",\r\n
+ \ \"2603:1040:a06::/121\",\r\n \"2603:1040:a06::80/122\",\r\n
+ \ \"2603:1040:a06:1::480/121\",\r\n \"2603:1040:a06:1::500/122\",\r\n
+ \ \"2603:1040:a06:1::700/121\",\r\n \"2603:1040:a06:1::780/122\",\r\n
+ \ \"2603:1040:a06:402::330/124\",\r\n \"2603:1040:a06:802::210/124\",\r\n
+ \ \"2603:1040:a06:c02::210/124\",\r\n \"2603:1040:b04::440/122\",\r\n
+ \ \"2603:1040:b04::500/121\",\r\n \"2603:1040:b04:402::330/124\",\r\n
+ \ \"2603:1040:c06::440/122\",\r\n \"2603:1040:c06::500/121\",\r\n
+ \ \"2603:1040:c06:402::330/124\",\r\n \"2603:1040:d04::480/121\",\r\n
+ \ \"2603:1040:d04::500/122\",\r\n \"2603:1040:d04::700/121\",\r\n
+ \ \"2603:1040:d04::780/122\",\r\n \"2603:1040:d04:400::240/124\",\r\n
+ \ \"2603:1040:d04:800::340/124\",\r\n \"2603:1040:d04:c02::380/124\",\r\n
+ \ \"2603:1040:f05:1::480/121\",\r\n \"2603:1040:f05:1::500/122\",\r\n
+ \ \"2603:1040:f05:1::700/121\",\r\n \"2603:1040:f05:1::780/122\",\r\n
+ \ \"2603:1040:f05:402::330/124\",\r\n \"2603:1040:f05:802::210/124\",\r\n
+ \ \"2603:1040:f05:c02::210/124\",\r\n \"2603:1040:1104::600/121\",\r\n
+ \ \"2603:1040:1104:400::500/124\",\r\n \"2603:1050:6:1::480/121\",\r\n
+ \ \"2603:1050:6:1::500/122\",\r\n \"2603:1050:6:1::700/121\",\r\n
+ \ \"2603:1050:6:1::780/122\",\r\n \"2603:1050:6:402::330/124\",\r\n
+ \ \"2603:1050:6:802::210/124\",\r\n \"2603:1050:6:c02::210/124\",\r\n
+ \ \"2603:1050:403::480/121\",\r\n \"2603:1050:403::500/122\",\r\n
+ \ \"2603:1050:403:400::240/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.AustraliaEast\",\r\n \"id\": \"DataFactory.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.144/28\",\r\n \"20.37.193.0/25\",\r\n \"20.37.193.128/26\",\r\n
+ \ \"20.37.198.224/29\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.AustraliaSoutheast\",\r\n
+ \ \"id\": \"DataFactory.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.160/28\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.BrazilSouth\",\r\n \"id\": \"DataFactory.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.205.160/28\",\r\n \"191.234.137.32/29\",\r\n
+ \ \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n \"191.234.149.0/28\",\r\n
+ \ \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n \"191.235.225.0/26\",\r\n
+ \ \"2603:1050:6:1::480/121\",\r\n \"2603:1050:6:1::500/122\",\r\n
+ \ \"2603:1050:6:1::700/121\",\r\n \"2603:1050:6:1::780/122\",\r\n
+ \ \"2603:1050:6:402::330/124\",\r\n \"2603:1050:6:802::210/124\",\r\n
+ \ \"2603:1050:6:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.CanadaCentral\",\r\n \"id\": \"DataFactory.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.175.80/28\",\r\n \"20.38.147.224/28\",\r\n
+ \ \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n \"52.228.86.144/29\",\r\n
+ \ \"52.246.155.224/28\",\r\n \"2603:1030:f05:1::480/121\",\r\n
+ \ \"2603:1030:f05:1::500/122\",\r\n \"2603:1030:f05:1::700/121\",\r\n
+ \ \"2603:1030:f05:1::780/122\",\r\n \"2603:1030:f05:402::330/124\",\r\n
+ \ \"2603:1030:f05:802::210/124\",\r\n \"2603:1030:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CanadaEast\",\r\n
+ \ \"id\": \"DataFactory.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.160/28\",\r\n
+ \ \"40.69.111.48/28\",\r\n \"40.89.16.128/25\",\r\n \"40.89.17.0/26\",\r\n
+ \ \"40.89.20.224/29\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralIndia\",\r\n
+ \ \"id\": \"DataFactory.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.121.48/28\",\r\n \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n
+ \ \"40.80.51.160/28\",\r\n \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n
+ \ \"52.140.108.208/29\",\r\n \"2603:1040:a06::/121\",\r\n
+ \ \"2603:1040:a06::80/122\",\r\n \"2603:1040:a06:1::480/121\",\r\n
+ \ \"2603:1040:a06:1::500/122\",\r\n \"2603:1040:a06:1::700/121\",\r\n
+ \ \"2603:1040:a06:1::780/122\",\r\n \"2603:1040:a06:402::330/124\",\r\n
+ \ \"2603:1040:a06:802::210/124\",\r\n \"2603:1040:a06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralUS\",\r\n
+ \ \"id\": \"DataFactory.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.89.174.192/28\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.40.206.224/29\",\r\n
+ \ \"20.44.10.64/28\",\r\n \"52.182.141.16/28\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.EastAsia\",\r\n
+ \ \"id\": \"DataFactory.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.75.39.112/28\",\r\n
+ \ \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n \"20.189.109.232/29\",\r\n
+ \ \"2603:1040:207::440/122\",\r\n \"2603:1040:207::500/121\",\r\n
+ \ \"2603:1040:207:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS\",\r\n \"id\": \"DataFactory.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.2.0/23\",\r\n \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n
+ \ \"20.49.111.0/29\",\r\n \"40.71.14.32/28\",\r\n \"40.78.229.96/28\",\r\n
+ \ \"2603:1030:210:1::480/121\",\r\n \"2603:1030:210:1::500/122\",\r\n
+ \ \"2603:1030:210:1::700/121\",\r\n \"2603:1030:210:1::780/122\",\r\n
+ \ \"2603:1030:210:402::330/124\",\r\n \"2603:1030:210:802::210/124\",\r\n
+ \ \"2603:1030:210:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2\",\r\n \"id\": \"DataFactory.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"40.70.148.160/28\",\r\n \"52.167.107.224/28\",\r\n
+ \ \"2603:1030:40c:1::480/121\",\r\n \"2603:1030:40c:1::500/122\",\r\n
+ \ \"2603:1030:40c:1::700/121\",\r\n \"2603:1030:40c:1::780/122\",\r\n
+ \ \"2603:1030:40c:402::330/124\",\r\n \"2603:1030:40c:802::210/124\",\r\n
+ \ \"2603:1030:40c:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2EUAP\",\r\n \"id\": \"DataFactory.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"52.138.92.128/28\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.FranceCentral\",\r\n \"id\": \"DataFactory.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n \"20.43.44.208/29\",\r\n
+ \ \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n \"40.79.146.240/28\",\r\n
+ \ \"2603:1020:805:1::480/121\",\r\n \"2603:1020:805:1::500/122\",\r\n
+ \ \"2603:1020:805:1::700/121\",\r\n \"2603:1020:805:1::780/122\",\r\n
+ \ \"2603:1020:805:402::330/124\",\r\n \"2603:1020:805:802::210/124\",\r\n
+ \ \"2603:1020:805:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.GermanyWestCentral\",\r\n \"id\":
+ \"DataFactory.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.0/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanEast\",\r\n
+ \ \"id\": \"DataFactory.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.78.109.192/28\",\r\n
+ \ \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n \"20.43.70.120/29\",\r\n
+ \ \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n \"40.79.187.208/28\",\r\n
+ \ \"40.79.195.224/28\",\r\n \"2603:1040:407:1::480/121\",\r\n
+ \ \"2603:1040:407:1::500/122\",\r\n \"2603:1040:407:1::700/121\",\r\n
+ \ \"2603:1040:407:1::780/122\",\r\n \"2603:1040:407:402::330/124\",\r\n
+ \ \"2603:1040:407:802::210/124\",\r\n \"2603:1040:407:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanWest\",\r\n
+ \ \"id\": \"DataFactory.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.56.128/25\",\r\n
+ \ \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n \"40.80.176.96/28\",\r\n
+ \ \"2603:1040:606::440/122\",\r\n \"2603:1040:606::500/121\",\r\n
+ \ \"2603:1040:606:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.KoreaCentral\",\r\n \"id\": \"DataFactory.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"52.231.20.64/28\",\r\n \"2603:1040:f05:1::480/121\",\r\n
+ \ \"2603:1040:f05:1::500/122\",\r\n \"2603:1040:f05:1::700/121\",\r\n
+ \ \"2603:1040:f05:1::780/122\",\r\n \"2603:1040:f05:402::330/124\",\r\n
+ \ \"2603:1040:f05:802::210/124\",\r\n \"2603:1040:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.KoreaSouth\",\r\n
+ \ \"id\": \"DataFactory.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.168.128/25\",\r\n
+ \ \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"DataFactory.NorthCentralUS\",\r\n \"id\": \"DataFactory.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.24/29\",\r\n \"20.49.118.128/25\",\r\n
+ \ \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n \"52.162.111.48/28\",\r\n
+ \ \"2603:1030:608::440/122\",\r\n \"2603:1030:608::500/121\",\r\n
+ \ \"2603:1030:608:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.NorthEurope\",\r\n \"id\": \"DataFactory.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.230.96/28\",\r\n \"13.74.108.224/28\",\r\n
+ \ \"20.38.80.192/26\",\r\n \"20.38.82.0/23\",\r\n \"20.50.68.56/29\",\r\n
+ \ \"52.138.229.32/28\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.NorwayEast\",\r\n
+ \ \"id\": \"DataFactory.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.208/28\",\r\n
+ \ \"51.120.45.64/26\",\r\n \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n
+ \ \"51.120.109.96/28\",\r\n \"51.120.213.32/28\",\r\n \"51.120.238.0/23\",\r\n
+ \ \"2603:1020:e04:1::480/121\",\r\n \"2603:1020:e04:1::500/122\",\r\n
+ \ \"2603:1020:e04:1::700/121\",\r\n \"2603:1020:e04:1::780/122\",\r\n
+ \ \"2603:1020:e04:402::330/124\",\r\n \"2603:1020:e04:802::210/124\",\r\n
+ \ \"2603:1020:e04:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthAfricaNorth\",\r\n \"id\":
+ \"DataFactory.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthCentralUS\",\r\n \"id\":
+ \"DataFactory.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.32/28\",\r\n
+ \ \"13.73.253.96/29\",\r\n \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n
+ \ \"20.45.123.160/28\",\r\n \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"2603:1030:807:1::480/121\",\r\n
+ \ \"2603:1030:807:1::500/122\",\r\n \"2603:1030:807:1::700/121\",\r\n
+ \ \"2603:1030:807:1::780/122\",\r\n \"2603:1030:807:402::330/124\",\r\n
+ \ \"2603:1030:807:802::210/124\",\r\n \"2603:1030:807:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SoutheastAsia\",\r\n
+ \ \"id\": \"DataFactory.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.10.208/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n
+ \ \"23.98.106.128/29\",\r\n \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n
+ \ \"40.78.236.176/28\",\r\n \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthIndia\",\r\n \"id\": \"DataFactory.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n
+ \ \"20.41.197.112/29\",\r\n \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"40.78.196.128/28\",\r\n \"2603:1040:c06::440/122\",\r\n
+ \ \"2603:1040:c06::500/121\",\r\n \"2603:1040:c06:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SwitzerlandNorth\",\r\n
+ \ \"id\": \"DataFactory.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n \"51.107.52.128/26\",\r\n
+ \ \"51.107.128.0/28\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UAENorth\",\r\n
+ \ \"id\": \"DataFactory.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.38.141.16/28\",\r\n
+ \ \"20.38.141.128/25\",\r\n \"20.38.142.0/26\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKSouth\",\r\n
+ \ \"id\": \"DataFactory.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.32/28\",\r\n
+ \ \"51.104.24.128/25\",\r\n \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n
+ \ \"51.105.67.240/28\",\r\n \"51.105.75.240/28\",\r\n \"2603:1020:705:1::480/121\",\r\n
+ \ \"2603:1020:705:1::500/122\",\r\n \"2603:1020:705:1::700/121\",\r\n
+ \ \"2603:1020:705:1::780/122\",\r\n \"2603:1020:705:402::330/124\",\r\n
+ \ \"2603:1020:705:802::210/124\",\r\n \"2603:1020:705:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKWest\",\r\n
+ \ \"id\": \"DataFactory.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.140.212.112/28\",\r\n
+ \ \"2603:1020:605::440/122\",\r\n \"2603:1020:605::500/121\",\r\n
+ \ \"2603:1020:605:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestCentralUS\",\r\n \"id\": \"DataFactory.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.199.0/28\",\r\n \"52.150.136.192/26\",\r\n
+ \ \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n \"52.150.155.0/24\",\r\n
+ \ \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n \"2603:1030:b04::440/122\",\r\n
+ \ \"2603:1030:b04::500/121\",\r\n \"2603:1030:b04:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestEurope\",\r\n
+ \ \"id\": \"DataFactory.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.192/28\",\r\n
+ \ \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n \"40.74.24.192/26\",\r\n
+ \ \"40.74.26.0/23\",\r\n \"40.113.176.232/29\",\r\n \"52.236.187.112/28\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestUS\",\r\n \"id\": \"DataFactory.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.219.208/28\",\r\n \"40.82.249.64/26\",\r\n
+ \ \"40.82.250.0/23\",\r\n \"52.250.228.0/29\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestUS2\",\r\n
+ \ \"id\": \"DataFactory.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"40.64.132.232/29\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n
+ \ \"13.69.226.128/25\",\r\n \"13.71.171.0/24\",\r\n \"13.74.106.128/25\",\r\n
+ \ \"13.75.35.0/24\",\r\n \"13.77.51.0/24\",\r\n \"13.78.107.0/24\",\r\n
+ \ \"40.78.242.0/25\",\r\n \"40.79.138.192/26\",\r\n \"40.120.64.224/27\",\r\n
+ \ \"51.107.129.64/27\",\r\n \"51.140.147.0/24\",\r\n \"65.52.252.128/27\",\r\n
+ \ \"102.133.251.96/27\",\r\n \"104.211.80.0/24\",\r\n \"191.233.202.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.51.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.202.0/24\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.171.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.80.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.35.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.138.192/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.107.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.128/25\",\r\n \"13.74.106.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.251.96/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.224/27\",\r\n \"65.52.252.128/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.147.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n \"40.78.242.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub\",\r\n
+ \ \"id\": \"EventHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureEventHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.195.117/32\",\r\n \"13.65.209.24/32\",\r\n
+ \ \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n \"13.66.149.0/26\",\r\n
+ \ \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n
+ \ \"13.69.111.128/26\",\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n
+ \ \"13.69.253.135/32\",\r\n \"13.69.255.140/32\",\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.71.30.214/32\",\r\n
+ \ \"13.71.123.78/32\",\r\n \"13.71.154.11/32\",\r\n \"13.71.170.16/28\",\r\n
+ \ \"13.71.177.128/26\",\r\n \"13.71.194.64/27\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"13.74.107.0/26\",\r\n \"13.75.34.64/26\",\r\n \"13.76.179.223/32\",\r\n
+ \ \"13.76.216.217/32\",\r\n \"13.77.50.32/27\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"13.78.149.209/32\",\r\n \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n
+ \ \"13.84.145.196/32\",\r\n \"13.87.34.139/32\",\r\n \"13.87.34.243/32\",\r\n
+ \ \"13.87.56.32/27\",\r\n \"13.87.102.63/32\",\r\n \"13.87.102.68/32\",\r\n
+ \ \"13.87.122.32/27\",\r\n \"13.88.20.117/32\",\r\n \"13.88.26.28/32\",\r\n
+ \ \"13.89.58.37/32\",\r\n \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n
+ \ \"13.89.178.112/28\",\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n
+ \ \"13.91.61.11/32\",\r\n \"13.92.124.151/32\",\r\n \"13.92.180.208/32\",\r\n
+ \ \"13.92.190.184/32\",\r\n \"13.93.226.138/32\",\r\n \"13.94.47.61/32\",\r\n
+ \ \"20.36.46.142/32\",\r\n \"20.36.74.130/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"20.36.114.32/27\",\r\n \"20.36.144.64/26\",\r\n \"20.37.74.0/27\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.42.68.64/26\",\r\n \"20.42.74.0/26\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.43.126.64/26\",\r\n
+ \ \"20.44.2.128/26\",\r\n \"20.44.13.64/26\",\r\n \"20.44.26.64/26\",\r\n
+ \ \"20.44.31.128/26\",\r\n \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n
+ \ \"20.47.216.64/26\",\r\n \"20.49.93.64/27\",\r\n \"20.49.93.128/27\",\r\n
+ \ \"20.49.95.128/26\",\r\n \"20.50.72.64/26\",\r\n \"20.50.80.64/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"20.52.64.128/26\",\r\n \"20.72.27.192/26\",\r\n
+ \ \"20.83.192.0/26\",\r\n \"20.89.0.64/26\",\r\n \"20.150.160.224/27\",\r\n
+ \ \"20.150.170.160/27\",\r\n \"20.150.175.64/26\",\r\n \"20.150.178.64/26\",\r\n
+ \ \"20.150.182.0/27\",\r\n \"20.150.186.64/26\",\r\n \"20.150.189.128/26\",\r\n
+ \ \"20.151.32.64/26\",\r\n \"20.192.33.64/26\",\r\n \"20.192.98.64/26\",\r\n
+ \ \"20.192.102.0/26\",\r\n \"20.192.161.64/27\",\r\n \"20.192.225.160/27\",\r\n
+ \ \"20.192.234.32/27\",\r\n \"20.193.202.32/27\",\r\n \"20.193.204.192/26\",\r\n
+ \ \"20.194.68.192/26\",\r\n \"20.194.80.0/26\",\r\n \"20.194.128.192/26\",\r\n
+ \ \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n \"23.96.214.181/32\",\r\n
+ \ \"23.96.253.236/32\",\r\n \"23.97.67.90/32\",\r\n \"23.97.97.36/32\",\r\n
+ \ \"23.97.103.3/32\",\r\n \"23.97.120.51/32\",\r\n \"23.97.226.21/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"23.99.7.105/32\",\r\n
+ \ \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n \"23.99.80.186/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"23.100.14.185/32\",\r\n \"23.100.100.84/32\",\r\n \"23.101.3.68/32\",\r\n
+ \ \"23.101.8.229/32\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"23.102.128.15/32\",\r\n \"23.102.160.39/32\",\r\n
+ \ \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n \"23.102.165.127/32\",\r\n
+ \ \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n \"23.102.234.49/32\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.67.58.128/26\",\r\n \"40.67.72.64/26\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"40.69.29.216/32\",\r\n
+ \ \"40.69.106.32/27\",\r\n \"40.69.217.246/32\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n \"40.74.146.16/28\",\r\n
+ \ \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n \"40.76.29.197/32\",\r\n
+ \ \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n \"40.78.110.196/32\",\r\n
+ \ \"40.78.194.32/27\",\r\n \"40.78.202.32/27\",\r\n \"40.78.226.128/26\",\r\n
+ \ \"40.78.234.0/27\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"40.79.44.59/32\",\r\n
+ \ \"40.79.74.86/32\",\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n
+ \ \"40.79.142.0/26\",\r\n \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n
+ \ \"40.79.155.0/26\",\r\n \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n
+ \ \"40.79.170.32/28\",\r\n \"40.79.174.128/26\",\r\n \"40.79.178.32/27\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"40.80.50.64/26\",\r\n
+ \ \"40.83.191.202/32\",\r\n \"40.83.222.100/32\",\r\n \"40.84.150.241/32\",\r\n
+ \ \"40.84.185.67/32\",\r\n \"40.85.226.62/32\",\r\n \"40.85.229.32/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.86.176.23/32\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"40.89.122.0/26\",\r\n
+ \ \"40.112.185.115/32\",\r\n \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.117.88.66/32\",\r\n \"40.120.75.64/27\",\r\n
+ \ \"40.120.78.0/26\",\r\n \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n
+ \ \"40.121.148.193/32\",\r\n \"40.122.173.108/32\",\r\n \"40.122.213.155/32\",\r\n
+ \ \"40.124.65.64/26\",\r\n \"40.127.83.123/32\",\r\n \"40.127.132.254/32\",\r\n
+ \ \"51.11.192.128/26\",\r\n \"51.12.98.160/27\",\r\n \"51.12.102.64/26\",\r\n
+ \ \"51.12.202.160/27\",\r\n \"51.12.206.64/26\",\r\n \"51.12.226.64/26\",\r\n
+ \ \"51.12.234.64/26\",\r\n \"51.13.0.192/26\",\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.107.58.128/27\",\r\n
+ \ \"51.107.129.0/26\",\r\n \"51.107.154.128/27\",\r\n \"51.116.58.128/27\",\r\n
+ \ \"51.116.154.192/27\",\r\n \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n
+ \ \"51.116.246.192/26\",\r\n \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n
+ \ \"51.120.98.128/27\",\r\n \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n
+ \ \"51.120.218.160/27\",\r\n \"51.132.192.192/26\",\r\n \"51.140.80.99/32\",\r\n
+ \ \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n \"51.140.146.32/28\",\r\n
+ \ \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n \"51.140.189.108/32\",\r\n
+ \ \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n \"51.141.14.168/32\",\r\n
+ \ \"51.141.50.179/32\",\r\n \"51.144.238.23/32\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"52.138.90.0/28\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"52.151.58.121/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"52.162.106.64/26\",\r\n \"52.165.34.144/32\",\r\n
+ \ \"52.165.179.109/32\",\r\n \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.169.18.8/32\",\r\n
+ \ \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.175.35.235/32\",\r\n \"52.176.47.198/32\",\r\n
+ \ \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n \"52.178.211.227/32\",\r\n
+ \ \"52.179.6.240/32\",\r\n \"52.179.8.35/32\",\r\n \"52.179.157.59/32\",\r\n
+ \ \"52.180.180.228/32\",\r\n \"52.180.182.75/32\",\r\n \"52.182.138.128/26\",\r\n
+ \ \"52.182.143.64/26\",\r\n \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"52.191.213.188/32\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"52.226.36.235/32\",\r\n \"52.231.18.16/28\",\r\n
+ \ \"52.231.29.105/32\",\r\n \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n
+ \ \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n \"52.231.200.153/32\",\r\n
+ \ \"52.231.207.155/32\",\r\n \"52.232.27.189/32\",\r\n \"52.233.30.41/32\",\r\n
+ \ \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n \"52.236.186.0/26\",\r\n
+ \ \"52.237.33.36/32\",\r\n \"52.237.33.104/32\",\r\n \"52.237.143.176/32\",\r\n
+ \ \"52.242.20.204/32\",\r\n \"52.243.36.161/32\",\r\n \"52.246.154.64/26\",\r\n
+ \ \"52.246.159.0/26\",\r\n \"65.52.129.16/32\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"102.37.65.0/26\",\r\n \"102.37.72.64/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"102.133.122.64/26\",\r\n \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n
+ \ \"102.133.250.64/26\",\r\n \"102.133.254.0/26\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.40.150.139/32\",\r\n \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n
+ \ \"104.41.63.213/32\",\r\n \"104.41.201.10/32\",\r\n \"104.42.97.95/32\",\r\n
+ \ \"104.43.18.219/32\",\r\n \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n
+ \ \"104.43.192.222/32\",\r\n \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.16.0/26\",\r\n \"104.208.144.0/26\",\r\n
+ \ \"104.208.237.147/32\",\r\n \"104.209.186.70/32\",\r\n
+ \ \"104.210.14.49/32\",\r\n \"104.210.106.31/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"104.211.224.190/32\",\r\n
+ \ \"104.211.224.238/32\",\r\n \"104.214.18.128/27\",\r\n
+ \ \"104.214.70.229/32\",\r\n \"137.116.48.46/32\",\r\n \"137.116.77.157/32\",\r\n
+ \ \"137.116.91.178/32\",\r\n \"137.116.157.26/32\",\r\n \"137.116.158.30/32\",\r\n
+ \ \"137.117.85.236/32\",\r\n \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n
+ \ \"137.135.102.226/32\",\r\n \"138.91.1.105/32\",\r\n \"138.91.17.38/32\",\r\n
+ \ \"138.91.17.85/32\",\r\n \"138.91.193.184/32\",\r\n \"168.61.92.197/32\",\r\n
+ \ \"168.61.143.128/26\",\r\n \"168.61.148.205/32\",\r\n \"168.62.52.235/32\",\r\n
+ \ \"168.62.234.250/32\",\r\n \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n
+ \ \"168.63.141.27/32\",\r\n \"191.233.9.64/27\",\r\n \"191.233.73.228/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"191.237.47.93/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"191.237.224.0/26\",\r\n \"191.238.99.131/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"191.239.64.142/32\",\r\n \"191.239.64.144/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"207.46.153.127/32\",\r\n
+ \ \"207.46.154.16/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1000:4::240/122\",\r\n
+ \ \"2603:1000:4:402::1c0/123\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\",\r\n \"2603:1010:304::240/122\",\r\n
+ \ \"2603:1010:304:402::1c0/123\",\r\n \"2603:1010:404::240/122\",\r\n
+ \ \"2603:1010:404:402::1c0/123\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\",\r\n \"2603:1020:305::240/122\",\r\n
+ \ \"2603:1020:305:402::1c0/123\",\r\n \"2603:1020:405::240/122\",\r\n
+ \ \"2603:1020:405:402::1c0/123\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\",\r\n \"2603:1020:905::240/122\",\r\n
+ \ \"2603:1020:905:402::1c0/123\",\r\n \"2603:1020:a04:1::240/122\",\r\n
+ \ \"2603:1020:a04:402::1c0/123\",\r\n \"2603:1020:a04:802::160/123\",\r\n
+ \ \"2603:1020:a04:c02::160/123\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\",\r\n \"2603:1020:d04::240/122\",\r\n
+ \ \"2603:1020:d04:402::1c0/123\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\",\r\n \"2603:1020:1004::240/122\",\r\n
+ \ \"2603:1020:1004:400::2c0/123\",\r\n \"2603:1020:1004:c02::c0/123\",\r\n
+ \ \"2603:1020:1104:400::1c0/123\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\",\r\n \"2603:1030:104:1::240/122\",\r\n
+ \ \"2603:1030:104:402::1c0/123\",\r\n \"2603:1030:107:400::140/123\",\r\n
+ \ \"2603:1030:210:1::240/122\",\r\n \"2603:1030:210:402::1c0/123\",\r\n
+ \ \"2603:1030:210:802::160/123\",\r\n \"2603:1030:210:c02::160/123\",\r\n
+ \ \"2603:1030:40b:1::240/122\",\r\n \"2603:1030:40b:400::9c0/123\",\r\n
+ \ \"2603:1030:40b:800::160/123\",\r\n \"2603:1030:40b:c00::160/123\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\",\r\n
+ \ \"2603:1030:504:1::240/122\",\r\n \"2603:1030:504:402::2c0/123\",\r\n
+ \ \"2603:1030:504:802::240/123\",\r\n \"2603:1030:504:c02::c0/123\",\r\n
+ \ \"2603:1030:608::240/122\",\r\n \"2603:1030:608:402::1c0/123\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\",\r\n
+ \ \"2603:1030:a07::240/122\",\r\n \"2603:1030:a07:402::140/123\",\r\n
+ \ \"2603:1030:b04::240/122\",\r\n \"2603:1030:b04:402::1c0/123\",\r\n
+ \ \"2603:1030:c06:1::240/122\",\r\n \"2603:1030:c06:400::9c0/123\",\r\n
+ \ \"2603:1030:c06:802::160/123\",\r\n \"2603:1030:c06:c02::160/123\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\",\r\n
+ \ \"2603:1040:5:1::240/122\",\r\n \"2603:1040:5:402::1c0/123\",\r\n
+ \ \"2603:1040:5:802::160/123\",\r\n \"2603:1040:5:c02::160/123\",\r\n
+ \ \"2603:1040:207::240/122\",\r\n \"2603:1040:207:402::1c0/123\",\r\n
+ \ \"2603:1040:407:1::240/122\",\r\n \"2603:1040:407:402::1c0/123\",\r\n
+ \ \"2603:1040:407:802::160/123\",\r\n \"2603:1040:407:c02::160/123\",\r\n
+ \ \"2603:1040:606::240/122\",\r\n \"2603:1040:606:402::1c0/123\",\r\n
+ \ \"2603:1040:806::240/122\",\r\n \"2603:1040:806:402::1c0/123\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\",\r\n
+ \ \"2603:1040:b04::240/122\",\r\n \"2603:1040:b04:402::1c0/123\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\",\r\n
+ \ \"2603:1040:d04::240/122\",\r\n \"2603:1040:d04:400::2c0/123\",\r\n
+ \ \"2603:1040:d04:c02::c0/123\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\",\r\n \"2603:1040:1104:400::1c0/123\",\r\n
+ \ \"2603:1050:6:1::240/122\",\r\n \"2603:1050:6:402::1c0/123\",\r\n
+ \ \"2603:1050:6:802::160/123\",\r\n \"2603:1050:6:c02::160/123\",\r\n
+ \ \"2603:1050:403::240/122\",\r\n \"2603:1050:403:400::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.46.142/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"2603:1010:304::240/122\",\r\n \"2603:1010:304:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral2\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.130/32\",\r\n \"20.36.114.32/27\",\r\n
+ \ \"2603:1010:404::240/122\",\r\n \"2603:1010:404:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaEast\",\r\n
+ \ \"id\": \"EventHub.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n \"40.79.170.32/28\",\r\n
+ \ \"40.79.174.128/26\",\r\n \"104.210.106.31/32\",\r\n \"191.239.64.142/32\",\r\n
+ \ \"191.239.64.144/32\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.AustraliaSoutheast\",\r\n \"id\":
+ \"EventHub.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.77.50.32/27\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.127.83.123/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.BrazilSouth\",\r\n \"id\": \"EventHub.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n
+ \ \"23.97.97.36/32\",\r\n \"23.97.103.3/32\",\r\n \"104.41.63.213/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"2603:1050:6:1::240/122\",\r\n
+ \ \"2603:1050:6:402::1c0/123\",\r\n \"2603:1050:6:802::160/123\",\r\n
+ \ \"2603:1050:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CanadaCentral\",\r\n \"id\": \"EventHub.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.16/28\",\r\n \"13.71.177.128/26\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.151.32.64/26\",\r\n \"40.85.226.62/32\",\r\n
+ \ \"40.85.229.32/32\",\r\n \"52.233.30.41/32\",\r\n \"52.237.33.36/32\",\r\n
+ \ \"52.237.33.104/32\",\r\n \"52.246.154.64/26\",\r\n \"52.246.159.0/26\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CanadaEast\",\r\n
+ \ \"id\": \"EventHub.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.32/27\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"52.242.20.204/32\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralIndia\",\r\n
+ \ \"id\": \"EventHub.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.30.214/32\",\r\n
+ \ \"20.43.126.64/26\",\r\n \"20.192.98.64/26\",\r\n \"20.192.102.0/26\",\r\n
+ \ \"40.80.50.64/26\",\r\n \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralUS\",\r\n
+ \ \"id\": \"EventHub.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.89.58.37/32\",\r\n
+ \ \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n \"13.89.178.112/28\",\r\n
+ \ \"20.44.13.64/26\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.122.173.108/32\",\r\n
+ \ \"40.122.213.155/32\",\r\n \"52.165.34.144/32\",\r\n \"52.165.179.109/32\",\r\n
+ \ \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.176.47.198/32\",\r\n \"52.182.138.128/26\",\r\n \"52.182.143.64/26\",\r\n
+ \ \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n \"104.43.192.222/32\",\r\n
+ \ \"104.208.16.0/26\",\r\n \"168.61.148.205/32\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CentralUSEUAP\",\r\n \"id\": \"EventHub.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.32/27\",\r\n \"52.180.180.228/32\",\r\n
+ \ \"52.180.182.75/32\",\r\n \"168.61.143.128/26\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastAsia\",\r\n \"id\": \"EventHub.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.64/26\",\r\n \"13.94.47.61/32\",\r\n \"23.97.67.90/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.101.3.68/32\",\r\n \"23.101.8.229/32\",\r\n
+ \ \"23.102.234.49/32\",\r\n \"52.175.35.235/32\",\r\n \"168.63.141.27/32\",\r\n
+ \ \"207.46.153.127/32\",\r\n \"207.46.154.16/32\",\r\n \"2603:1040:207::240/122\",\r\n
+ \ \"2603:1040:207:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS\",\r\n \"id\": \"EventHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n \"13.92.124.151/32\",\r\n
+ \ \"13.92.180.208/32\",\r\n \"13.92.190.184/32\",\r\n \"20.42.68.64/26\",\r\n
+ \ \"20.42.74.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.76.29.197/32\",\r\n \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n
+ \ \"40.78.226.128/26\",\r\n \"40.79.155.0/26\",\r\n \"40.117.88.66/32\",\r\n
+ \ \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n \"40.121.148.193/32\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.179.6.240/32\",\r\n
+ \ \"52.179.8.35/32\",\r\n \"52.191.213.188/32\",\r\n \"52.226.36.235/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"137.117.85.236/32\",\r\n
+ \ \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n \"137.135.102.226/32\",\r\n
+ \ \"168.62.52.235/32\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.237.47.93/32\",\r\n \"2603:1030:210:1::240/122\",\r\n
+ \ \"2603:1030:210:402::1c0/123\",\r\n \"2603:1030:210:802::160/123\",\r\n
+ \ \"2603:1030:210:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS2\",\r\n \"id\": \"EventHub.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"20.36.144.64/26\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.79.44.59/32\",\r\n \"40.79.74.86/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.179.157.59/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.144.0/26\",\r\n \"104.208.237.147/32\",\r\n
+ \ \"104.209.186.70/32\",\r\n \"104.210.14.49/32\",\r\n \"137.116.48.46/32\",\r\n
+ \ \"137.116.77.157/32\",\r\n \"137.116.91.178/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"EventHub.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"20.47.216.64/26\",\r\n
+ \ \"40.74.146.16/28\",\r\n \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n
+ \ \"40.89.122.0/26\",\r\n \"52.138.90.0/28\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"2603:1030:40b:1::240/122\",\r\n
+ \ \"2603:1030:40b:400::9c0/123\",\r\n \"2603:1030:40b:800::160/123\",\r\n
+ \ \"2603:1030:40b:c00::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceCentral\",\r\n \"id\": \"EventHub.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n \"40.79.142.0/26\",\r\n
+ \ \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n \"51.11.192.128/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceSouth\",\r\n \"id\": \"EventHub.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.32/27\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"2603:1020:905::240/122\",\r\n \"2603:1020:905:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyNorth\",\r\n
+ \ \"id\": \"EventHub.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.116.58.128/27\",\r\n
+ \ \"2603:1020:d04::240/122\",\r\n \"2603:1020:d04:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyWestCentral\",\r\n
+ \ \"id\": \"EventHub.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.64.128/26\",\r\n \"51.116.154.192/27\",\r\n
+ \ \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n \"51.116.246.192/26\",\r\n
+ \ \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanEast\",\r\n \"id\": \"EventHub.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.154.11/32\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"20.89.0.64/26\",\r\n \"20.194.128.192/26\",\r\n \"23.100.100.84/32\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"52.243.36.161/32\",\r\n
+ \ \"138.91.1.105/32\",\r\n \"2603:1040:407:1::240/122\",\r\n
+ \ \"2603:1040:407:402::1c0/123\",\r\n \"2603:1040:407:802::160/123\",\r\n
+ \ \"2603:1040:407:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanWest\",\r\n \"id\": \"EventHub.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n
+ \ \"138.91.17.38/32\",\r\n \"138.91.17.85/32\",\r\n \"2603:1040:606::240/122\",\r\n
+ \ \"2603:1040:606:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaCentral\",\r\n \"id\": \"EventHub.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.64/26\",\r\n \"20.44.31.128/26\",\r\n \"20.194.68.192/26\",\r\n
+ \ \"20.194.80.0/26\",\r\n \"52.231.18.16/28\",\r\n \"52.231.29.105/32\",\r\n
+ \ \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaSouth\",\r\n \"id\": \"EventHub.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n
+ \ \"52.231.200.153/32\",\r\n \"52.231.207.155/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"EventHub.NorthCentralUS\",\r\n
+ \ \"id\": \"EventHub.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.214.181/32\",\r\n \"23.96.253.236/32\",\r\n
+ \ \"52.162.106.64/26\",\r\n \"52.237.143.176/32\",\r\n \"168.62.234.250/32\",\r\n
+ \ \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"2603:1030:608::240/122\",\r\n
+ \ \"2603:1030:608:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorthEurope\",\r\n \"id\": \"EventHub.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n \"13.69.253.135/32\",\r\n
+ \ \"13.69.255.140/32\",\r\n \"13.74.107.0/26\",\r\n \"20.50.72.64/26\",\r\n
+ \ \"20.50.80.64/26\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"40.69.29.216/32\",\r\n \"40.69.217.246/32\",\r\n
+ \ \"40.127.132.254/32\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.169.18.8/32\",\r\n \"52.178.211.227/32\",\r\n \"104.41.201.10/32\",\r\n
+ \ \"168.61.92.197/32\",\r\n \"191.238.99.131/32\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayEast\",\r\n \"id\": \"EventHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.192/26\",\r\n \"51.120.98.128/27\",\r\n
+ \ \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayWest\",\r\n \"id\": \"EventHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.160/27\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaNorth\",\r\n \"id\": \"EventHub.SouthAfricaNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricanorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.64/26\",\r\n \"102.133.122.64/26\",\r\n
+ \ \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n \"102.133.250.64/26\",\r\n
+ \ \"102.133.254.0/26\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaWest\",\r\n \"id\": \"EventHub.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.0/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"2603:1000:4::240/122\",\r\n \"2603:1000:4:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SouthCentralUS\",\r\n
+ \ \"id\": \"EventHub.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.209.24/32\",\r\n \"13.84.145.196/32\",\r\n
+ \ \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n \"20.49.93.64/27\",\r\n
+ \ \"20.49.93.128/27\",\r\n \"20.49.95.128/26\",\r\n \"23.102.128.15/32\",\r\n
+ \ \"23.102.160.39/32\",\r\n \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n
+ \ \"23.102.165.127/32\",\r\n \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n
+ \ \"40.84.150.241/32\",\r\n \"40.84.185.67/32\",\r\n \"40.124.65.64/26\",\r\n
+ \ \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.214.18.128/27\",\r\n \"104.214.70.229/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SoutheastAsia\",\r\n
+ \ \"id\": \"EventHub.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.76.179.223/32\",\r\n \"13.76.216.217/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"40.78.234.0/27\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"104.43.18.219/32\",\r\n \"137.116.157.26/32\",\r\n
+ \ \"137.116.158.30/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1040:5:1::240/122\",\r\n
+ \ \"2603:1040:5:402::1c0/123\",\r\n \"2603:1040:5:802::160/123\",\r\n
+ \ \"2603:1040:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthIndia\",\r\n \"id\": \"EventHub.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.123.78/32\",\r\n \"40.78.194.32/27\",\r\n
+ \ \"104.211.224.190/32\",\r\n \"104.211.224.238/32\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandNorth\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.128/27\",\r\n \"51.107.129.0/26\",\r\n
+ \ \"2603:1020:a04:1::240/122\",\r\n \"2603:1020:a04:402::1c0/123\",\r\n
+ \ \"2603:1020:a04:802::160/123\",\r\n \"2603:1020:a04:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.128/27\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAECentral\",\r\n \"id\": \"EventHub.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.0/27\",\r\n \"2603:1040:b04::240/122\",\r\n
+ \ \"2603:1040:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAENorth\",\r\n \"id\": \"EventHub.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.75.64/27\",\r\n \"40.120.78.0/26\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.UKSouth\",\r\n
+ \ \"id\": \"EventHub.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.132.192.192/26\",\r\n
+ \ \"51.140.80.99/32\",\r\n \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n
+ \ \"51.140.146.32/28\",\r\n \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n
+ \ \"51.140.189.108/32\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UKWest\",\r\n \"id\": \"EventHub.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n
+ \ \"51.141.14.168/32\",\r\n \"51.141.50.179/32\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestCentralUS\",\r\n \"id\": \"EventHub.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.64/27\",\r\n \"13.78.149.209/32\",\r\n
+ \ \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"2603:1030:b04::240/122\",\r\n
+ \ \"2603:1030:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestEurope\",\r\n \"id\": \"EventHub.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n \"13.69.111.128/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"23.97.226.21/32\",\r\n \"23.100.14.185/32\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"51.144.238.23/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n
+ \ \"52.232.27.189/32\",\r\n \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n
+ \ \"52.236.186.0/26\",\r\n \"65.52.129.16/32\",\r\n \"104.40.150.139/32\",\r\n
+ \ \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"191.233.73.228/32\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestIndia\",\r\n \"id\": \"EventHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"2603:1040:806::240/122\",\r\n
+ \ \"2603:1040:806:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS\",\r\n \"id\": \"EventHub.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.195.117/32\",\r\n \"13.88.20.117/32\",\r\n
+ \ \"13.88.26.28/32\",\r\n \"13.91.61.11/32\",\r\n \"13.93.226.138/32\",\r\n
+ \ \"23.99.7.105/32\",\r\n \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n
+ \ \"23.99.80.186/32\",\r\n \"40.78.110.196/32\",\r\n \"40.83.191.202/32\",\r\n
+ \ \"40.83.222.100/32\",\r\n \"40.86.176.23/32\",\r\n \"40.112.185.115/32\",\r\n
+ \ \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.42.97.95/32\",\r\n \"138.91.193.184/32\",\r\n \"2603:1030:a07::240/122\",\r\n
+ \ \"2603:1030:a07:402::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS2\",\r\n \"id\": \"EventHub.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n
+ \ \"13.66.149.0/26\",\r\n \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.83.192.0/26\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"52.151.58.121/32\",\r\n
+ \ \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n \"2603:1030:c06:1::240/122\",\r\n
+ \ \"2603:1030:c06:400::9c0/123\",\r\n \"2603:1030:c06:802::160/123\",\r\n
+ \ \"2603:1030:c06:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager\",\r\n \"id\": \"GatewayManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.66.140.144/29\",\r\n
+ \ \"13.67.9.128/29\",\r\n \"13.69.64.224/29\",\r\n \"13.69.227.224/29\",\r\n
+ \ \"13.70.72.208/29\",\r\n \"13.70.185.130/32\",\r\n \"13.71.170.240/29\",\r\n
+ \ \"13.71.194.232/29\",\r\n \"13.75.36.8/29\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"13.78.108.16/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"13.85.74.21/32\",\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"13.87.122.104/29\",\r\n \"13.89.171.96/29\",\r\n
+ \ \"13.91.249.235/32\",\r\n \"13.91.254.232/32\",\r\n \"13.92.84.128/32\",\r\n
+ \ \"13.93.112.146/32\",\r\n \"13.93.117.26/32\",\r\n \"20.36.42.151/32\",\r\n
+ \ \"20.36.42.152/32\",\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.36.114.24/29\",\r\n \"20.36.120.72/29\",\r\n
+ \ \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n \"20.37.64.72/29\",\r\n
+ \ \"20.37.74.88/29\",\r\n \"20.37.152.72/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"20.38.80.72/29\",\r\n \"20.38.136.72/29\",\r\n
+ \ \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"20.40.173.147/32\",\r\n
+ \ \"20.41.0.72/29\",\r\n \"20.41.64.72/29\",\r\n \"20.41.192.72/29\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"20.42.128.72/29\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"20.43.40.72/29\",\r\n \"20.43.64.72/29\",\r\n \"20.43.128.72/29\",\r\n
+ \ \"20.44.3.16/29\",\r\n \"20.45.112.72/29\",\r\n \"20.45.192.72/29\",\r\n
+ \ \"20.46.13.128/26\",\r\n \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n
+ \ \"20.72.16.64/26\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"20.150.160.64/29\",\r\n \"20.150.161.0/26\",\r\n \"20.150.171.64/29\",\r\n
+ \ \"20.189.104.72/29\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"20.192.160.64/26\",\r\n \"20.192.224.192/26\",\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"20.194.75.128/26\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.67.48.72/29\",\r\n \"40.67.59.64/29\",\r\n
+ \ \"40.69.106.88/29\",\r\n \"40.70.146.224/29\",\r\n \"40.71.11.96/29\",\r\n
+ \ \"40.74.24.72/29\",\r\n \"40.74.100.168/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"40.79.130.224/29\",\r\n \"40.79.178.88/29\",\r\n
+ \ \"40.80.56.72/29\",\r\n \"40.80.168.72/29\",\r\n \"40.80.184.72/29\",\r\n
+ \ \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n \"40.81.180.83/32\",\r\n
+ \ \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n \"40.81.189.42/32\",\r\n
+ \ \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n \"40.82.248.240/29\",\r\n
+ \ \"40.88.222.179/32\",\r\n \"40.88.223.53/32\",\r\n \"40.89.16.72/29\",\r\n
+ \ \"40.89.217.100/32\",\r\n \"40.89.217.109/32\",\r\n \"40.90.186.21/32\",\r\n
+ \ \"40.90.186.91/32\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"40.112.242.168/29\",\r\n \"40.115.248.200/32\",\r\n \"40.115.254.17/32\",\r\n
+ \ \"40.119.8.64/29\",\r\n \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n
+ \ \"51.12.40.192/26\",\r\n \"51.12.192.192/26\",\r\n \"51.104.24.72/29\",\r\n
+ \ \"51.105.80.72/29\",\r\n \"51.105.88.72/29\",\r\n \"51.107.48.72/29\",\r\n
+ \ \"51.107.59.32/29\",\r\n \"51.107.144.72/29\",\r\n \"51.107.155.32/29\",\r\n
+ \ \"51.116.48.72/29\",\r\n \"51.116.59.32/29\",\r\n \"51.116.144.72/29\",\r\n
+ \ \"51.116.155.96/29\",\r\n \"51.120.40.72/29\",\r\n \"51.120.98.168/29\",\r\n
+ \ \"51.120.219.64/29\",\r\n \"51.120.224.72/29\",\r\n \"51.120.235.128/26\",\r\n
+ \ \"51.137.160.72/29\",\r\n \"51.140.63.41/32\",\r\n \"51.140.114.209/32\",\r\n
+ \ \"51.140.148.16/29\",\r\n \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n
+ \ \"51.141.29.178/32\",\r\n \"51.142.209.124/32\",\r\n \"51.142.210.184/32\",\r\n
+ \ \"51.143.192.72/29\",\r\n \"52.136.48.72/29\",\r\n \"52.136.137.15/32\",\r\n
+ \ \"52.136.137.16/32\",\r\n \"52.138.70.115/32\",\r\n \"52.138.71.153/32\",\r\n
+ \ \"52.138.90.40/29\",\r\n \"52.139.87.129/32\",\r\n \"52.139.87.150/32\",\r\n
+ \ \"52.140.104.72/29\",\r\n \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n
+ \ \"52.143.136.58/31\",\r\n \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"52.148.30.6/32\",\r\n \"52.149.24.100/32\",\r\n
+ \ \"52.149.26.14/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"52.162.106.168/29\",\r\n \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n
+ \ \"52.165.221.72/32\",\r\n \"52.169.225.171/32\",\r\n \"52.169.231.163/32\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"52.173.250.124/32\",\r\n \"52.177.204.204/32\",\r\n
+ \ \"52.177.207.219/32\",\r\n \"52.179.10.142/32\",\r\n \"52.180.178.35/32\",\r\n
+ \ \"52.180.178.191/32\",\r\n \"52.180.182.210/32\",\r\n \"52.184.255.23/32\",\r\n
+ \ \"52.191.140.123/32\",\r\n \"52.191.170.38/32\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.229.161.220/32\",\r\n \"52.229.166.101/32\",\r\n \"52.231.18.224/29\",\r\n
+ \ \"52.231.24.186/32\",\r\n \"52.231.35.84/32\",\r\n \"52.231.146.200/29\",\r\n
+ \ \"52.231.203.87/32\",\r\n \"52.231.204.175/32\",\r\n \"52.237.24.145/32\",\r\n
+ \ \"52.237.30.255/32\",\r\n \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n
+ \ \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n \"52.251.12.161/32\",\r\n
+ \ \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n \"52.253.232.235/32\",\r\n
+ \ \"52.253.239.162/32\",\r\n \"65.52.250.24/29\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"102.133.27.16/29\",\r\n \"102.133.56.72/29\",\r\n
+ \ \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n \"104.211.81.208/29\",\r\n
+ \ \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n \"104.211.191.94/32\",\r\n
+ \ \"104.214.19.64/29\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"168.62.208.162/32\",\r\n \"168.62.209.95/32\",\r\n
+ \ \"191.233.8.64/26\",\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1000:4::40/122\",\r\n
+ \ \"2603:1000:104:1::40/122\",\r\n \"2603:1010:6:1::40/122\",\r\n
+ \ \"2603:1010:101::40/122\",\r\n \"2603:1010:304::40/122\",\r\n
+ \ \"2603:1010:404::40/122\",\r\n \"2603:1020:5:1::40/122\",\r\n
+ \ \"2603:1020:206:1::40/122\",\r\n \"2603:1020:305::40/122\",\r\n
+ \ \"2603:1020:405::40/122\",\r\n \"2603:1020:605::40/122\",\r\n
+ \ \"2603:1020:705:1::40/122\",\r\n \"2603:1020:805:1::40/122\",\r\n
+ \ \"2603:1020:905::40/122\",\r\n \"2603:1020:a04:1::40/122\",\r\n
+ \ \"2603:1020:b04::40/122\",\r\n \"2603:1020:c04:1::40/122\",\r\n
+ \ \"2603:1020:d04::40/122\",\r\n \"2603:1020:e04:1::40/122\",\r\n
+ \ \"2603:1020:f04::40/122\",\r\n \"2603:1020:1004::40/122\",\r\n
+ \ \"2603:1020:1104::40/122\",\r\n \"2603:1030:f:1::40/122\",\r\n
+ \ \"2603:1030:10:1::40/122\",\r\n \"2603:1030:104:1::40/122\",\r\n
+ \ \"2603:1030:107::40/122\",\r\n \"2603:1030:210:1::40/122\",\r\n
+ \ \"2603:1030:40b:1::40/122\",\r\n \"2603:1030:40c:1::40/122\",\r\n
+ \ \"2603:1030:504:1::40/122\",\r\n \"2603:1030:608::40/122\",\r\n
+ \ \"2603:1030:807:1::40/122\",\r\n \"2603:1030:a07::40/122\",\r\n
+ \ \"2603:1030:b04::40/122\",\r\n \"2603:1030:c06:1::40/122\",\r\n
+ \ \"2603:1030:f05:1::40/122\",\r\n \"2603:1030:1005::40/122\",\r\n
+ \ \"2603:1040:5:1::40/122\",\r\n \"2603:1040:207::40/122\",\r\n
+ \ \"2603:1040:407:1::40/122\",\r\n \"2603:1040:606::40/122\",\r\n
+ \ \"2603:1040:806::40/122\",\r\n \"2603:1040:904:1::40/122\",\r\n
+ \ \"2603:1040:a06:1::40/122\",\r\n \"2603:1040:b04::40/122\",\r\n
+ \ \"2603:1040:c06::40/122\",\r\n \"2603:1040:d04::40/122\",\r\n
+ \ \"2603:1040:f05:1::40/122\",\r\n \"2603:1040:1104::40/122\",\r\n
+ \ \"2603:1050:6:1::40/122\",\r\n \"2603:1050:403::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.151/32\",\r\n \"20.36.42.152/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"2603:1010:304::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n \"20.36.114.24/29\",\r\n
+ \ \"20.36.120.72/29\",\r\n \"2603:1010:404::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaEast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.208/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n \"2603:1010:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.185.130/32\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"20.40.173.147/32\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"2603:1010:101::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.BrazilSouth\",\r\n
+ \ \"id\": \"GatewayManager.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1050:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaCentral\",\r\n
+ \ \"id\": \"GatewayManager.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.240/29\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.237.24.145/32\",\r\n \"52.237.30.255/32\",\r\n \"2603:1030:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaEast\",\r\n
+ \ \"id\": \"GatewayManager.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.88/29\",\r\n \"40.89.16.72/29\",\r\n \"52.139.87.129/32\",\r\n
+ \ \"52.139.87.150/32\",\r\n \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n
+ \ \"2603:1030:1005::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.CentralIndia\",\r\n \"id\":
+ \"GatewayManager.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"52.140.104.72/29\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"104.211.81.208/29\",\r\n \"2603:1040:a06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUS\",\r\n
+ \ \"id\": \"GatewayManager.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.96/29\",\r\n \"20.37.152.72/29\",\r\n
+ \ \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n \"52.165.221.72/32\",\r\n
+ \ \"52.173.250.124/32\",\r\n \"2603:1030:10:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUSEUAP\",\r\n
+ \ \"id\": \"GatewayManager.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.72/29\",\r\n \"20.46.13.128/26\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"52.180.178.35/32\",\r\n \"52.180.178.191/32\",\r\n
+ \ \"52.180.182.210/32\",\r\n \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n
+ \ \"52.253.232.235/32\",\r\n \"52.253.239.162/32\",\r\n \"2603:1030:f:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastAsia\",\r\n
+ \ \"id\": \"GatewayManager.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.8/29\",\r\n \"20.189.104.72/29\",\r\n \"52.229.161.220/32\",\r\n
+ \ \"52.229.166.101/32\",\r\n \"2603:1040:207::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS\",\r\n
+ \ \"id\": \"GatewayManager.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.92.84.128/32\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"40.71.11.96/29\",\r\n \"40.88.222.179/32\",\r\n
+ \ \"40.88.223.53/32\",\r\n \"52.179.10.142/32\",\r\n \"2603:1030:210:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.0.72/29\",\r\n
+ \ \"40.70.146.224/29\",\r\n \"52.177.204.204/32\",\r\n \"52.177.207.219/32\",\r\n
+ \ \"52.184.255.23/32\",\r\n \"52.251.12.161/32\",\r\n \"2603:1030:40c:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2EUAP\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"52.138.70.115/32\",\r\n
+ \ \"52.138.71.153/32\",\r\n \"52.138.90.40/29\",\r\n \"2603:1030:40b:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceCentral\",\r\n
+ \ \"id\": \"GatewayManager.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.72/29\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"40.79.130.224/29\",\r\n \"52.143.136.58/31\",\r\n \"2603:1020:805:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceSouth\",\r\n
+ \ \"id\": \"GatewayManager.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.88/29\",\r\n \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n
+ \ \"51.105.88.72/29\",\r\n \"52.136.137.15/32\",\r\n \"52.136.137.16/32\",\r\n
+ \ \"2603:1020:905::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.GermanyNorth\",\r\n \"id\":
+ \"GatewayManager.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.116.48.72/29\",\r\n
+ \ \"51.116.59.32/29\",\r\n \"2603:1020:d04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.GermanyWestCentral\",\r\n
+ \ \"id\": \"GatewayManager.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.72/29\",\r\n \"51.116.155.96/29\",\r\n
+ \ \"2603:1020:c04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.JapanEast\",\r\n \"id\": \"GatewayManager.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.108.16/29\",\r\n \"20.43.64.72/29\",\r\n \"40.115.248.200/32\",\r\n
+ \ \"40.115.254.17/32\",\r\n \"2603:1040:407:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.JapanWest\",\r\n
+ \ \"id\": \"GatewayManager.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.168/29\",\r\n \"40.80.56.72/29\",\r\n
+ \ \"40.81.180.83/32\",\r\n \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n
+ \ \"40.81.189.42/32\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"2603:1040:606::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.KoreaCentral\",\r\n \"id\":
+ \"GatewayManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.64.72/29\",\r\n
+ \ \"20.194.75.128/26\",\r\n \"52.231.18.224/29\",\r\n \"52.231.24.186/32\",\r\n
+ \ \"52.231.35.84/32\",\r\n \"2603:1040:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.KoreaSouth\",\r\n
+ \ \"id\": \"GatewayManager.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.168.72/29\",\r\n \"40.89.217.100/32\",\r\n
+ \ \"40.89.217.109/32\",\r\n \"52.231.146.200/29\",\r\n \"52.231.203.87/32\",\r\n
+ \ \"52.231.204.175/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"GatewayManager.NorthCentralUS\",\r\n \"id\": \"GatewayManager.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.80.184.72/29\",\r\n \"52.162.106.168/29\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"2603:1030:608::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorthEurope\",\r\n
+ \ \"id\": \"GatewayManager.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.224/29\",\r\n \"20.38.80.72/29\",\r\n
+ \ \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n \"52.169.225.171/32\",\r\n
+ \ \"52.169.231.163/32\",\r\n \"2603:1020:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayEast\",\r\n
+ \ \"id\": \"GatewayManager.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.72/29\",\r\n
+ \ \"51.120.98.168/29\",\r\n \"51.120.235.128/26\",\r\n \"2603:1020:e04:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayWest\",\r\n
+ \ \"id\": \"GatewayManager.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.219.64/29\",\r\n
+ \ \"51.120.224.72/29\",\r\n \"2603:1020:f04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthAfricaNorth\",\r\n
+ \ \"id\": \"GatewayManager.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n
+ \ \"2603:1000:104:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SouthAfricaWest\",\r\n \"id\":
+ \"GatewayManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.27.16/29\",\r\n
+ \ \"102.133.56.72/29\",\r\n \"2603:1000:4::40/122\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.85.74.21/32\",\r\n \"40.119.8.64/29\",\r\n
+ \ \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"104.214.19.64/29\",\r\n \"2603:1030:807:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SoutheastAsia\",\r\n
+ \ \"id\": \"GatewayManager.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.128/29\",\r\n \"20.43.128.72/29\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"40.90.186.21/32\",\r\n \"40.90.186.91/32\",\r\n
+ \ \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n \"2603:1040:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthIndia\",\r\n
+ \ \"id\": \"GatewayManager.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.72/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"2603:1040:c06::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SwitzerlandNorth\",\r\n
+ \ \"id\": \"GatewayManager.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.48.72/29\",\r\n \"51.107.59.32/29\",\r\n
+ \ \"2603:1020:a04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SwitzerlandWest\",\r\n \"id\":
+ \"GatewayManager.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.107.144.72/29\",\r\n
+ \ \"51.107.155.32/29\",\r\n \"2603:1020:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAECentral\",\r\n
+ \ \"id\": \"GatewayManager.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.64.72/29\",\r\n \"20.37.74.88/29\",\r\n \"2603:1040:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAENorth\",\r\n
+ \ \"id\": \"GatewayManager.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.136.72/29\",\r\n \"65.52.250.24/29\",\r\n
+ \ \"2603:1040:904:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.UKSouth\",\r\n \"id\": \"GatewayManager.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.24.72/29\",\r\n \"51.140.63.41/32\",\r\n
+ \ \"51.140.114.209/32\",\r\n \"51.140.148.16/29\",\r\n \"2603:1020:705:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKSouth2\",\r\n
+ \ \"id\": \"GatewayManager.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"51.143.192.72/29\",\r\n \"2603:1020:405::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKWest\",\r\n
+ \ \"id\": \"GatewayManager.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.72/29\",\r\n
+ \ \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n \"51.141.29.178/32\",\r\n
+ \ \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n \"2603:1020:605::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.232/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"52.148.30.6/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"2603:1030:b04::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.WestEurope\",\r\n \"id\": \"GatewayManager.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.224/29\",\r\n \"13.93.112.146/32\",\r\n
+ \ \"13.93.117.26/32\",\r\n \"40.74.24.72/29\",\r\n \"2603:1020:206:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestIndia\",\r\n
+ \ \"id\": \"GatewayManager.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n
+ \ \"52.136.48.72/29\",\r\n \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n
+ \ \"104.211.191.94/32\",\r\n \"2603:1040:806::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS\",\r\n
+ \ \"id\": \"GatewayManager.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.91.249.235/32\",\r\n
+ \ \"13.91.254.232/32\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"40.82.248.240/29\",\r\n \"40.112.242.168/29\",\r\n \"168.62.208.162/32\",\r\n
+ \ \"168.62.209.95/32\",\r\n \"2603:1030:a07::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS2\",\r\n
+ \ \"id\": \"GatewayManager.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.144/29\",\r\n
+ \ \"20.42.128.72/29\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"52.149.24.100/32\",\r\n \"52.149.26.14/32\",\r\n \"52.191.140.123/32\",\r\n
+ \ \"52.191.170.38/32\",\r\n \"2603:1030:c06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement\",\r\n
+ \ \"id\": \"GuestAndHybridManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAutomation\",\r\n \"addressPrefixes\": [\r\n \"13.65.24.129/32\",\r\n
+ \ \"13.66.138.94/31\",\r\n \"13.66.141.224/29\",\r\n \"13.66.145.80/28\",\r\n
+ \ \"13.67.8.110/31\",\r\n \"13.67.10.72/29\",\r\n \"13.69.64.78/31\",\r\n
+ \ \"13.69.67.48/29\",\r\n \"13.69.107.64/29\",\r\n \"13.69.109.128/31\",\r\n
+ \ \"13.69.109.176/28\",\r\n \"13.69.227.78/31\",\r\n \"13.69.229.248/29\",\r\n
+ \ \"13.70.72.30/31\",\r\n \"13.70.74.80/29\",\r\n \"13.70.123.166/32\",\r\n
+ \ \"13.71.170.46/31\",\r\n \"13.71.173.208/29\",\r\n \"13.71.175.144/28\",\r\n
+ \ \"13.71.194.118/31\",\r\n \"13.71.196.128/29\",\r\n \"13.71.199.176/28\",\r\n
+ \ \"13.73.242.40/29\",\r\n \"13.73.242.210/31\",\r\n \"13.73.244.208/28\",\r\n
+ \ \"13.74.107.92/31\",\r\n \"13.74.108.136/29\",\r\n \"13.75.34.150/31\",\r\n
+ \ \"13.75.39.104/29\",\r\n \"13.77.1.26/32\",\r\n \"13.77.1.212/32\",\r\n
+ \ \"13.77.50.70/31\",\r\n \"13.77.53.56/29\",\r\n \"13.77.55.192/28\",\r\n
+ \ \"13.78.59.184/32\",\r\n \"13.78.106.94/31\",\r\n \"13.78.109.120/29\",\r\n
+ \ \"13.78.111.208/28\",\r\n \"13.86.219.200/29\",\r\n \"13.86.221.216/31\",\r\n
+ \ \"13.86.223.64/28\",\r\n \"13.87.56.86/31\",\r\n \"13.87.58.72/29\",\r\n
+ \ \"13.87.122.86/31\",\r\n \"13.87.124.72/29\",\r\n \"13.88.240.74/32\",\r\n
+ \ \"13.88.244.195/32\",\r\n \"13.89.170.206/31\",\r\n \"13.89.174.136/29\",\r\n
+ \ \"13.89.178.96/28\",\r\n \"13.94.240.75/32\",\r\n \"20.36.39.150/32\",\r\n
+ \ \"20.36.106.70/31\",\r\n \"20.36.108.128/29\",\r\n \"20.36.108.240/28\",\r\n
+ \ \"20.36.114.22/31\",\r\n \"20.36.117.32/29\",\r\n \"20.36.117.144/28\",\r\n
+ \ \"20.37.74.226/31\",\r\n \"20.37.76.120/29\",\r\n \"20.38.128.104/29\",\r\n
+ \ \"20.38.128.168/31\",\r\n \"20.38.132.0/28\",\r\n \"20.38.147.152/29\",\r\n
+ \ \"20.38.149.128/31\",\r\n \"20.42.64.32/31\",\r\n \"20.42.72.128/31\",\r\n
+ \ \"20.42.72.144/28\",\r\n \"20.43.120.248/29\",\r\n \"20.43.121.120/31\",\r\n
+ \ \"20.43.123.48/28\",\r\n \"20.44.2.6/31\",\r\n \"20.44.4.104/29\",\r\n
+ \ \"20.44.8.200/29\",\r\n \"20.44.10.120/31\",\r\n \"20.44.17.8/29\",\r\n
+ \ \"20.44.17.216/31\",\r\n \"20.44.19.16/28\",\r\n \"20.44.27.112/29\",\r\n
+ \ \"20.44.29.48/31\",\r\n \"20.44.29.96/28\",\r\n \"20.45.123.88/29\",\r\n
+ \ \"20.45.123.232/31\",\r\n \"20.49.82.24/29\",\r\n \"20.49.90.24/29\",\r\n
+ \ \"20.72.27.176/29\",\r\n \"20.150.171.216/29\",\r\n \"20.150.172.224/31\",\r\n
+ \ \"20.150.179.192/29\",\r\n \"20.150.181.24/31\",\r\n \"20.150.181.176/28\",\r\n
+ \ \"20.150.187.192/29\",\r\n \"20.150.189.24/31\",\r\n \"20.192.99.192/29\",\r\n
+ \ \"20.192.101.24/31\",\r\n \"20.192.184.64/28\",\r\n \"20.192.234.176/28\",\r\n
+ \ \"20.192.235.8/29\",\r\n \"20.192.238.120/31\",\r\n \"20.193.202.176/28\",\r\n
+ \ \"20.193.203.192/29\",\r\n \"20.194.66.24/29\",\r\n \"23.96.225.107/32\",\r\n
+ \ \"23.96.225.182/32\",\r\n \"23.98.83.64/29\",\r\n \"23.98.86.56/31\",\r\n
+ \ \"40.67.60.96/29\",\r\n \"40.67.60.108/31\",\r\n \"40.69.106.70/31\",\r\n
+ \ \"40.69.108.88/29\",\r\n \"40.69.110.240/28\",\r\n \"40.70.146.78/31\",\r\n
+ \ \"40.70.148.48/29\",\r\n \"40.71.10.206/31\",\r\n \"40.71.13.240/29\",\r\n
+ \ \"40.71.30.252/32\",\r\n \"40.74.146.82/31\",\r\n \"40.74.149.32/29\",\r\n
+ \ \"40.74.150.16/28\",\r\n \"40.75.35.128/29\",\r\n \"40.75.35.216/31\",\r\n
+ \ \"40.78.194.70/31\",\r\n \"40.78.196.88/29\",\r\n \"40.78.202.130/31\",\r\n
+ \ \"40.78.203.248/29\",\r\n \"40.78.229.40/29\",\r\n \"40.78.236.128/29\",\r\n
+ \ \"40.78.238.56/31\",\r\n \"40.78.239.32/28\",\r\n \"40.78.242.172/31\",\r\n
+ \ \"40.78.243.24/29\",\r\n \"40.78.250.108/31\",\r\n \"40.78.250.216/29\",\r\n
+ \ \"40.79.130.46/31\",\r\n \"40.79.132.40/29\",\r\n \"40.79.138.44/31\",\r\n
+ \ \"40.79.138.152/29\",\r\n \"40.79.139.208/28\",\r\n \"40.79.146.44/31\",\r\n
+ \ \"40.79.146.152/29\",\r\n \"40.79.156.40/29\",\r\n \"40.79.163.8/29\",\r\n
+ \ \"40.79.163.152/31\",\r\n \"40.79.170.248/29\",\r\n \"40.79.171.224/31\",\r\n
+ \ \"40.79.173.16/28\",\r\n \"40.79.178.70/31\",\r\n \"40.79.180.56/29\",\r\n
+ \ \"40.79.180.208/28\",\r\n \"40.79.187.160/29\",\r\n \"40.79.189.56/31\",\r\n
+ \ \"40.79.194.120/29\",\r\n \"40.79.197.32/31\",\r\n \"40.80.51.88/29\",\r\n
+ \ \"40.80.53.0/31\",\r\n \"40.80.176.48/29\",\r\n \"40.80.180.0/31\",\r\n
+ \ \"40.80.180.96/28\",\r\n \"40.85.168.201/32\",\r\n \"40.89.129.151/32\",\r\n
+ \ \"40.89.132.62/32\",\r\n \"40.89.137.16/32\",\r\n \"40.89.157.7/32\",\r\n
+ \ \"40.114.77.89/32\",\r\n \"40.114.85.4/32\",\r\n \"40.118.103.191/32\",\r\n
+ \ \"40.120.8.32/28\",\r\n \"40.120.64.48/28\",\r\n \"40.120.75.48/29\",\r\n
+ \ \"51.11.97.0/31\",\r\n \"51.11.97.64/28\",\r\n \"51.12.99.208/29\",\r\n
+ \ \"51.12.203.72/29\",\r\n \"51.12.227.192/29\",\r\n \"51.12.235.192/29\",\r\n
+ \ \"51.104.8.240/29\",\r\n \"51.104.9.96/31\",\r\n \"51.105.67.168/29\",\r\n
+ \ \"51.105.69.80/31\",\r\n \"51.105.75.152/29\",\r\n \"51.105.77.48/31\",\r\n
+ \ \"51.105.77.80/28\",\r\n \"51.107.60.80/29\",\r\n \"51.107.60.92/31\",\r\n
+ \ \"51.107.60.208/28\",\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"51.116.60.80/29\",\r\n \"51.116.60.224/28\",\r\n
+ \ \"51.116.156.160/29\",\r\n \"51.116.158.56/31\",\r\n \"51.116.158.80/28\",\r\n
+ \ \"51.116.243.144/29\",\r\n \"51.116.243.216/31\",\r\n \"51.116.251.32/29\",\r\n
+ \ \"51.116.251.184/31\",\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"51.120.220.80/29\",\r\n
+ \ \"51.120.220.92/31\",\r\n \"51.120.220.176/28\",\r\n \"51.140.6.15/32\",\r\n
+ \ \"51.140.51.174/32\",\r\n \"51.140.212.104/29\",\r\n \"52.138.90.52/31\",\r\n
+ \ \"52.138.92.80/29\",\r\n \"52.138.227.136/29\",\r\n \"52.138.229.64/31\",\r\n
+ \ \"52.138.229.80/28\",\r\n \"52.147.97.0/31\",\r\n \"52.151.62.99/32\",\r\n
+ \ \"52.161.14.192/32\",\r\n \"52.161.28.108/32\",\r\n \"52.162.110.240/29\",\r\n
+ \ \"52.162.111.128/31\",\r\n \"52.163.228.23/32\",\r\n \"52.167.107.72/29\",\r\n
+ \ \"52.167.109.64/31\",\r\n \"52.169.105.82/32\",\r\n \"52.172.153.216/32\",\r\n
+ \ \"52.172.155.142/32\",\r\n \"52.178.223.62/32\",\r\n \"52.180.166.238/32\",\r\n
+ \ \"52.180.179.25/32\",\r\n \"52.182.139.56/29\",\r\n \"52.182.141.12/31\",\r\n
+ \ \"52.182.141.144/28\",\r\n \"52.183.5.195/32\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"52.231.148.120/29\",\r\n \"52.231.148.208/28\",\r\n \"52.236.186.240/29\",\r\n
+ \ \"52.236.189.72/31\",\r\n \"52.240.241.64/28\",\r\n \"52.246.155.152/29\",\r\n
+ \ \"52.246.157.0/31\",\r\n \"65.52.250.6/31\",\r\n \"65.52.252.120/29\",\r\n
+ \ \"102.37.64.32/28\",\r\n \"102.133.26.6/31\",\r\n \"102.133.28.144/29\",\r\n
+ \ \"102.133.124.16/29\",\r\n \"102.133.156.112/29\",\r\n
+ \ \"102.133.251.176/29\",\r\n \"102.133.253.32/28\",\r\n
+ \ \"104.41.9.106/32\",\r\n \"104.41.178.182/32\",\r\n \"104.208.163.218/32\",\r\n
+ \ \"104.209.137.89/32\",\r\n \"104.210.80.208/32\",\r\n \"104.210.158.71/32\",\r\n
+ \ \"104.214.164.32/28\",\r\n \"104.215.254.56/32\",\r\n \"168.61.140.48/28\",\r\n
+ \ \"191.232.170.251/32\",\r\n \"191.233.51.144/29\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1000:4:402::2c0/124\",\r\n \"2603:1000:104:402::2c0/124\",\r\n
+ \ \"2603:1000:104:802::200/124\",\r\n \"2603:1000:104:c02::200/124\",\r\n
+ \ \"2603:1010:6:402::2c0/124\",\r\n \"2603:1010:6:802::200/124\",\r\n
+ \ \"2603:1010:6:c02::200/124\",\r\n \"2603:1010:101:402::2c0/124\",\r\n
+ \ \"2603:1010:304:402::2c0/124\",\r\n \"2603:1010:404:402::2c0/124\",\r\n
+ \ \"2603:1020:5:402::2c0/124\",\r\n \"2603:1020:5:802::200/124\",\r\n
+ \ \"2603:1020:5:c02::200/124\",\r\n \"2603:1020:206:402::2c0/124\",\r\n
+ \ \"2603:1020:206:802::200/124\",\r\n \"2603:1020:206:c02::200/124\",\r\n
+ \ \"2603:1020:305:402::2c0/124\",\r\n \"2603:1020:405:402::2c0/124\",\r\n
+ \ \"2603:1020:605:402::2c0/124\",\r\n \"2603:1020:705:402::2c0/124\",\r\n
+ \ \"2603:1020:705:802::200/124\",\r\n \"2603:1020:705:c02::200/124\",\r\n
+ \ \"2603:1020:805:402::2c0/124\",\r\n \"2603:1020:805:802::200/124\",\r\n
+ \ \"2603:1020:805:c02::200/124\",\r\n \"2603:1020:905:402::2c0/124\",\r\n
+ \ \"2603:1020:a04:402::2c0/124\",\r\n \"2603:1020:a04:802::200/124\",\r\n
+ \ \"2603:1020:a04:c02::200/124\",\r\n \"2603:1020:b04:402::2c0/124\",\r\n
+ \ \"2603:1020:c04:402::2c0/124\",\r\n \"2603:1020:c04:802::200/124\",\r\n
+ \ \"2603:1020:c04:c02::200/124\",\r\n \"2603:1020:d04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:402::2c0/124\",\r\n \"2603:1020:e04:802::200/124\",\r\n
+ \ \"2603:1020:e04:c02::200/124\",\r\n \"2603:1020:f04:402::2c0/124\",\r\n
+ \ \"2603:1020:1004:400::1c0/124\",\r\n \"2603:1020:1004:400::2e0/124\",\r\n
+ \ \"2603:1020:1004:400::3a0/124\",\r\n \"2603:1020:1004:800::3d0/124\",\r\n
+ \ \"2603:1020:1004:800::3f0/124\",\r\n \"2603:1020:1104:400::2c0/124\",\r\n
+ \ \"2603:1030:f:400::ac0/124\",\r\n \"2603:1030:10:402::2c0/124\",\r\n
+ \ \"2603:1030:10:802::200/124\",\r\n \"2603:1030:10:c02::200/124\",\r\n
+ \ \"2603:1030:104:402::2c0/124\",\r\n \"2603:1030:107:400::240/124\",\r\n
+ \ \"2603:1030:210:402::2c0/124\",\r\n \"2603:1030:210:802::200/124\",\r\n
+ \ \"2603:1030:210:c02::200/124\",\r\n \"2603:1030:40b:400::ac0/124\",\r\n
+ \ \"2603:1030:40b:800::200/124\",\r\n \"2603:1030:40b:c00::200/124\",\r\n
+ \ \"2603:1030:40c:402::2c0/124\",\r\n \"2603:1030:40c:802::200/124\",\r\n
+ \ \"2603:1030:40c:c02::200/124\",\r\n \"2603:1030:504:402::1c0/124\",\r\n
+ \ \"2603:1030:504:402::2e0/124\",\r\n \"2603:1030:504:402::3a0/124\",\r\n
+ \ \"2603:1030:504:402::440/124\",\r\n \"2603:1030:504:802::3c0/123\",\r\n
+ \ \"2603:1030:504:802::3f0/124\",\r\n \"2603:1030:608:402::2c0/124\",\r\n
+ \ \"2603:1030:807:402::2c0/124\",\r\n \"2603:1030:807:802::200/124\",\r\n
+ \ \"2603:1030:807:c02::200/124\",\r\n \"2603:1030:a07:402::940/124\",\r\n
+ \ \"2603:1030:b04:402::2c0/124\",\r\n \"2603:1030:c06:400::ac0/124\",\r\n
+ \ \"2603:1030:c06:802::200/124\",\r\n \"2603:1030:c06:c02::200/124\",\r\n
+ \ \"2603:1030:f05:402::2c0/124\",\r\n \"2603:1030:f05:802::200/124\",\r\n
+ \ \"2603:1030:f05:c02::200/124\",\r\n \"2603:1030:1005:402::2c0/124\",\r\n
+ \ \"2603:1040:5:402::2c0/124\",\r\n \"2603:1040:5:802::200/124\",\r\n
+ \ \"2603:1040:5:c02::200/124\",\r\n \"2603:1040:207:402::2c0/124\",\r\n
+ \ \"2603:1040:407:402::2c0/124\",\r\n \"2603:1040:407:802::200/124\",\r\n
+ \ \"2603:1040:407:c02::200/124\",\r\n \"2603:1040:606:402::2c0/124\",\r\n
+ \ \"2603:1040:806:402::2c0/124\",\r\n \"2603:1040:904:402::2c0/124\",\r\n
+ \ \"2603:1040:904:802::200/124\",\r\n \"2603:1040:904:c02::200/124\",\r\n
+ \ \"2603:1040:a06:402::2c0/124\",\r\n \"2603:1040:a06:802::200/124\",\r\n
+ \ \"2603:1040:a06:c02::200/124\",\r\n \"2603:1040:b04:402::2c0/124\",\r\n
+ \ \"2603:1040:c06:402::2c0/124\",\r\n \"2603:1040:d04:400::1c0/124\",\r\n
+ \ \"2603:1040:d04:400::2e0/124\",\r\n \"2603:1040:d04:400::3a0/124\",\r\n
+ \ \"2603:1040:d04:800::3d0/124\",\r\n \"2603:1040:d04:800::3f0/124\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\",\r\n \"2603:1040:1104:400::2c0/124\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\",\r\n \"2603:1050:403:400::1e0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.BrazilSouth\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"104.41.9.106/32\",\r\n \"191.232.170.251/32\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.KoreaCentral\",\r\n \"id\":
+ \"GuestAndHybridManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.27.112/29\",\r\n \"20.44.29.48/31\",\r\n
+ \ \"20.44.29.96/28\",\r\n \"20.194.66.24/29\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.NorwayEast\",\r\n \"id\":
+ \"GuestAndHybridManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAutomation\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"2603:1020:e04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:802::200/124\",\r\n \"2603:1020:e04:c02::200/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.NorwayWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.220.80/29\",\r\n \"51.120.220.92/31\",\r\n
+ \ \"51.120.220.176/28\",\r\n \"2603:1020:f04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"2603:1020:b04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n
+ \ \"id\": \"HDInsight\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.66.141.144/29\",\r\n
+ \ \"13.67.9.152/29\",\r\n \"13.69.65.8/29\",\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.70.73.96/29\",\r\n \"13.71.172.240/29\",\r\n \"13.71.196.48/29\",\r\n
+ \ \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n \"13.74.153.132/32\",\r\n
+ \ \"13.75.38.112/29\",\r\n \"13.75.152.195/32\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n
+ \ \"13.77.52.8/29\",\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n
+ \ \"13.82.225.233/32\",\r\n \"13.86.218.240/29\",\r\n \"13.87.58.32/29\",\r\n
+ \ \"13.87.124.32/29\",\r\n \"13.89.171.120/29\",\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.36.123.88/29\",\r\n \"20.37.68.40/29\",\r\n
+ \ \"20.37.76.96/29\",\r\n \"20.37.228.0/29\",\r\n \"20.38.139.88/29\",\r\n
+ \ \"20.39.15.48/29\",\r\n \"20.40.207.144/29\",\r\n \"20.41.69.32/29\",\r\n
+ \ \"20.41.197.120/29\",\r\n \"20.43.45.224/29\",\r\n \"20.43.120.8/29\",\r\n
+ \ \"20.44.4.64/29\",\r\n \"20.44.16.8/29\",\r\n \"20.44.26.240/29\",\r\n
+ \ \"20.45.115.128/29\",\r\n \"20.45.198.80/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"20.49.114.56/29\",\r\n \"20.49.126.128/29\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"20.61.96.160/29\",\r\n \"20.72.20.40/29\",\r\n
+ \ \"20.150.167.176/29\",\r\n \"20.150.172.232/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"20.189.111.192/29\",\r\n \"20.191.160.0/29\",\r\n \"20.192.48.216/29\",\r\n
+ \ \"20.192.235.248/29\",\r\n \"20.193.194.16/29\",\r\n \"20.193.203.200/29\",\r\n
+ \ \"23.98.107.192/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"40.64.134.160/29\",\r\n \"40.67.50.248/29\",\r\n
+ \ \"40.67.60.64/29\",\r\n \"40.69.107.8/29\",\r\n \"40.71.13.160/29\",\r\n
+ \ \"40.71.175.99/32\",\r\n \"40.74.101.192/29\",\r\n \"40.74.125.69/32\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.78.195.8/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.79.180.16/29\",\r\n \"40.79.187.0/29\",\r\n
+ \ \"40.80.63.144/29\",\r\n \"40.80.172.120/29\",\r\n \"40.89.22.88/29\",\r\n
+ \ \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n \"40.89.157.135/32\",\r\n
+ \ \"51.12.17.48/29\",\r\n \"51.12.25.48/29\",\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.105.92.56/29\",\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"51.116.49.168/29\",\r\n \"51.116.60.48/29\",\r\n \"51.116.145.168/29\",\r\n
+ \ \"51.116.156.48/29\",\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"51.120.220.48/29\",\r\n \"51.120.228.40/29\",\r\n \"51.137.166.32/29\",\r\n
+ \ \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"52.136.52.40/29\",\r\n
+ \ \"52.140.108.248/29\",\r\n \"52.146.79.136/29\",\r\n \"52.146.130.184/29\",\r\n
+ \ \"52.150.154.192/29\",\r\n \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n
+ \ \"52.162.110.160/29\",\r\n \"52.164.210.96/32\",\r\n \"52.166.243.90/32\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"52.175.38.134/32\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"52.228.37.66/32\",\r\n
+ \ \"52.228.45.222/32\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"52.231.36.209/32\",\r\n \"52.231.39.142/32\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\",\r\n \"65.52.252.96/29\",\r\n
+ \ \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n \"102.133.124.0/29\",\r\n
+ \ \"102.133.219.176/29\",\r\n \"104.46.176.168/29\",\r\n
+ \ \"104.210.84.115/32\",\r\n \"104.211.216.210/32\",\r\n
+ \ \"104.211.223.67/32\",\r\n \"138.91.29.150/32\",\r\n \"138.91.141.162/32\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"168.61.48.131/32\",\r\n
+ \ \"168.61.49.99/32\",\r\n \"191.233.10.184/29\",\r\n \"191.233.51.152/29\",\r\n
+ \ \"191.233.204.240/29\",\r\n \"191.234.138.128/29\",\r\n
+ \ \"191.235.84.104/32\",\r\n \"191.235.87.113/32\",\r\n \"2603:1000:4:402::320/124\",\r\n
+ \ \"2603:1000:104:402::320/124\",\r\n \"2603:1010:6:402::320/124\",\r\n
+ \ \"2603:1010:101:402::320/124\",\r\n \"2603:1010:304:402::320/124\",\r\n
+ \ \"2603:1010:404:402::320/124\",\r\n \"2603:1020:5:402::320/124\",\r\n
+ \ \"2603:1020:206:402::320/124\",\r\n \"2603:1020:305:402::320/124\",\r\n
+ \ \"2603:1020:405:402::320/124\",\r\n \"2603:1020:605:402::320/124\",\r\n
+ \ \"2603:1020:705:402::320/124\",\r\n \"2603:1020:805:402::320/124\",\r\n
+ \ \"2603:1020:905:402::320/124\",\r\n \"2603:1020:a04:402::320/124\",\r\n
+ \ \"2603:1020:b04:402::320/124\",\r\n \"2603:1020:c04:402::320/124\",\r\n
+ \ \"2603:1020:d04:402::320/124\",\r\n \"2603:1020:e04::790/124\",\r\n
+ \ \"2603:1020:e04:402::320/124\",\r\n \"2603:1020:f04:402::320/124\",\r\n
+ \ \"2603:1020:1004:1::1e0/124\",\r\n \"2603:1020:1104:1::140/124\",\r\n
+ \ \"2603:1030:f:2::4b0/124\",\r\n \"2603:1030:f:400::b20/124\",\r\n
+ \ \"2603:1030:10:402::320/124\",\r\n \"2603:1030:104:402::320/124\",\r\n
+ \ \"2603:1030:107::720/124\",\r\n \"2603:1030:210:402::320/124\",\r\n
+ \ \"2603:1030:40b:400::b20/124\",\r\n \"2603:1030:40c:402::320/124\",\r\n
+ \ \"2603:1030:504::1e0/124\",\r\n \"2603:1030:608:402::320/124\",\r\n
+ \ \"2603:1030:807:402::320/124\",\r\n \"2603:1030:a07:402::9a0/124\",\r\n
+ \ \"2603:1030:b04:402::320/124\",\r\n \"2603:1030:c06:400::b20/124\",\r\n
+ \ \"2603:1030:f05:402::320/124\",\r\n \"2603:1030:1005:402::320/124\",\r\n
+ \ \"2603:1040:5:402::320/124\",\r\n \"2603:1040:207:402::320/124\",\r\n
+ \ \"2603:1040:407:402::320/124\",\r\n \"2603:1040:606:402::320/124\",\r\n
+ \ \"2603:1040:806:402::320/124\",\r\n \"2603:1040:904:402::320/124\",\r\n
+ \ \"2603:1040:a06:402::320/124\",\r\n \"2603:1040:b04:402::320/124\",\r\n
+ \ \"2603:1040:c06:402::320/124\",\r\n \"2603:1040:d04:1::1e0/124\",\r\n
+ \ \"2603:1040:f05::790/124\",\r\n \"2603:1040:f05:402::320/124\",\r\n
+ \ \"2603:1040:1104:1::140/124\",\r\n \"2603:1050:6:402::320/124\",\r\n
+ \ \"2603:1050:403:400::420/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.AustraliaCentral\",\r\n \"id\":
+ \"HDInsight.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.37.228.0/29\",\r\n \"2603:1010:304:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaEast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.73.96/29\",\r\n \"13.75.152.195/32\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"104.210.84.115/32\",\r\n \"2603:1010:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaSoutheast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n \"13.77.52.8/29\",\r\n
+ \ \"104.46.176.168/29\",\r\n \"2603:1010:101:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.BrazilSouth\",\r\n
+ \ \"id\": \"HDInsight.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"191.233.204.240/29\",\r\n
+ \ \"191.234.138.128/29\",\r\n \"191.235.84.104/32\",\r\n
+ \ \"191.235.87.113/32\",\r\n \"2603:1050:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaCentral\",\r\n
+ \ \"id\": \"HDInsight.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.240/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"52.228.37.66/32\",\r\n \"52.228.45.222/32\",\r\n \"2603:1030:f05:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaEast\",\r\n
+ \ \"id\": \"HDInsight.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.69.107.8/29\",\r\n
+ \ \"40.89.22.88/29\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"2603:1030:1005:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.CentralIndia\",\r\n \"id\": \"HDInsight.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.8/29\",\r\n \"52.140.108.248/29\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"2603:1040:a06:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUS\",\r\n
+ \ \"id\": \"HDInsight.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.120/29\",\r\n
+ \ \"20.40.207.144/29\",\r\n \"2603:1030:10:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUSEUAP\",\r\n
+ \ \"id\": \"HDInsight.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.80/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"2603:1030:f:2::4b0/124\",\r\n
+ \ \"2603:1030:f:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.EastAsia\",\r\n \"id\": \"HDInsight.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.38.112/29\",\r\n \"20.189.111.192/29\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"52.175.38.134/32\",\r\n \"2603:1040:207:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS\",\r\n
+ \ \"id\": \"HDInsight.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.82.225.233/32\",\r\n
+ \ \"40.71.13.160/29\",\r\n \"40.71.175.99/32\",\r\n \"52.146.79.136/29\",\r\n
+ \ \"168.61.48.131/32\",\r\n \"168.61.49.99/32\",\r\n \"2603:1030:210:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2\",\r\n
+ \ \"id\": \"HDInsight.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.44.16.8/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"2603:1030:40c:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2EUAP\",\r\n
+ \ \"id\": \"HDInsight.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.39.15.48/29\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n
+ \ \"2603:1030:40b:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.FranceCentral\",\r\n \"id\": \"HDInsight.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.45.224/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.89.157.135/32\",\r\n \"2603:1020:805:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.FranceSouth\",\r\n
+ \ \"id\": \"HDInsight.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.79.180.16/29\",\r\n
+ \ \"51.105.92.56/29\",\r\n \"2603:1020:905:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyNorth\",\r\n
+ \ \"id\": \"HDInsight.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.116.49.168/29\",\r\n
+ \ \"51.116.60.48/29\",\r\n \"2603:1020:d04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyWestCentral\",\r\n
+ \ \"id\": \"HDInsight.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.168/29\",\r\n \"51.116.156.48/29\",\r\n
+ \ \"2603:1020:c04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.JapanEast\",\r\n \"id\": \"HDInsight.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n \"20.191.160.0/29\",\r\n
+ \ \"40.79.187.0/29\",\r\n \"2603:1040:407:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.JapanWest\",\r\n
+ \ \"id\": \"HDInsight.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.192/29\",\r\n
+ \ \"40.74.125.69/32\",\r\n \"40.80.63.144/29\",\r\n \"138.91.29.150/32\",\r\n
+ \ \"2603:1040:606:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaCentral\",\r\n \"id\": \"HDInsight.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.32/29\",\r\n \"20.44.26.240/29\",\r\n \"52.231.36.209/32\",\r\n
+ \ \"52.231.39.142/32\",\r\n \"2603:1040:f05::790/124\",\r\n
+ \ \"2603:1040:f05:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaSouth\",\r\n \"id\": \"HDInsight.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.172.120/29\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthCentralUS\",\r\n
+ \ \"id\": \"HDInsight.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.56/29\",\r\n \"52.162.110.160/29\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"2603:1030:608:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthEurope\",\r\n
+ \ \"id\": \"HDInsight.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.74.153.132/32\",\r\n \"52.146.130.184/29\",\r\n \"52.164.210.96/32\",\r\n
+ \ \"2603:1020:5:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.NorwayEast\",\r\n \"id\": \"HDInsight.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"2603:1020:e04::790/124\",\r\n \"2603:1020:e04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorwayWest\",\r\n
+ \ \"id\": \"HDInsight.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.120.220.48/29\",\r\n
+ \ \"51.120.228.40/29\",\r\n \"2603:1020:f04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthAfricaNorth\",\r\n
+ \ \"id\": \"HDInsight.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.124.0/29\",\r\n \"102.133.219.176/29\",\r\n
+ \ \"2603:1000:104:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthAfricaWest\",\r\n \"id\": \"HDInsight.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n
+ \ \"2603:1000:4:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthCentralUS\",\r\n \"id\": \"HDInsight.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n
+ \ \"2603:1030:807:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SoutheastAsia\",\r\n \"id\": \"HDInsight.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.152/29\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"23.98.107.192/29\",\r\n \"2603:1040:5:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthIndia\",\r\n
+ \ \"id\": \"HDInsight.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.41.197.120/29\",\r\n
+ \ \"40.78.195.8/29\",\r\n \"104.211.216.210/32\",\r\n \"104.211.223.67/32\",\r\n
+ \ \"2603:1040:c06:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SwitzerlandNorth\",\r\n \"id\":
+ \"HDInsight.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"2603:1020:a04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SwitzerlandWest\",\r\n
+ \ \"id\": \"HDInsight.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"2603:1020:b04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UAECentral\",\r\n \"id\": \"HDInsight.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.40/29\",\r\n \"20.37.76.96/29\",\r\n \"2603:1040:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UAENorth\",\r\n
+ \ \"id\": \"HDInsight.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.88/29\",\r\n
+ \ \"65.52.252.96/29\",\r\n \"2603:1040:904:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UKNorth\",\r\n
+ \ \"id\": \"HDInsight.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.87.124.32/29\",\r\n
+ \ \"2603:1020:305:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKSouth\",\r\n \"id\": \"HDInsight.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n
+ \ \"2603:1020:705:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKWest\",\r\n \"id\": \"HDInsight.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.166.32/29\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"2603:1020:605:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestCentralUS\",\r\n
+ \ \"id\": \"HDInsight.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.48/29\",\r\n \"52.150.154.192/29\",\r\n
+ \ \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n \"2603:1030:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestEurope\",\r\n
+ \ \"id\": \"HDInsight.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.8/29\",\r\n
+ \ \"20.61.96.160/29\",\r\n \"52.166.243.90/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"2603:1020:206:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.WestUS\",\r\n \"id\": \"HDInsight.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.86.218.240/29\",\r\n
+ \ \"20.49.126.128/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"138.91.141.162/32\",\r\n \"2603:1030:a07:402::9a0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestUS2\",\r\n
+ \ \"id\": \"HDInsight.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.144/29\",\r\n
+ \ \"40.64.134.160/29\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"2603:1030:c06:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps\",\r\n \"id\": \"LogicApps\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.82.17/32\",\r\n \"13.65.82.190/32\",\r\n
+ \ \"13.65.86.56/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.52.232/32\",\r\n
+ \ \"13.66.128.68/32\",\r\n \"13.66.201.169/32\",\r\n \"13.66.210.167/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.66.246.219/32\",\r\n \"13.67.13.224/27\",\r\n
+ \ \"13.67.91.135/32\",\r\n \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n
+ \ \"13.67.236.76/32\",\r\n \"13.67.236.125/32\",\r\n \"13.69.71.160/27\",\r\n
+ \ \"13.69.109.144/28\",\r\n \"13.69.231.160/27\",\r\n \"13.69.233.16/28\",\r\n
+ \ \"13.70.78.192/27\",\r\n \"13.70.159.205/32\",\r\n \"13.71.146.140/32\",\r\n
+ \ \"13.71.158.3/32\",\r\n \"13.71.158.120/32\",\r\n \"13.71.184.150/32\",\r\n
+ \ \"13.71.186.1/32\",\r\n \"13.71.199.128/27\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.4.207/32\",\r\n \"13.73.114.207/32\",\r\n \"13.73.115.153/32\",\r\n
+ \ \"13.73.244.144/28\",\r\n \"13.73.244.160/27\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.94.173/32\",\r\n \"13.75.149.4/32\",\r\n \"13.75.153.66/32\",\r\n
+ \ \"13.76.4.194/32\",\r\n \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n
+ \ \"13.77.3.139/32\",\r\n \"13.77.53.224/27\",\r\n \"13.77.55.128/28\",\r\n
+ \ \"13.77.56.167/32\",\r\n \"13.77.58.136/32\",\r\n \"13.77.149.159/32\",\r\n
+ \ \"13.77.152.21/32\",\r\n \"13.78.18.168/32\",\r\n \"13.78.20.232/32\",\r\n
+ \ \"13.78.21.155/32\",\r\n \"13.78.35.229/32\",\r\n \"13.78.42.223/32\",\r\n
+ \ \"13.78.43.164/32\",\r\n \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n
+ \ \"13.78.111.160/27\",\r\n \"13.78.129.20/32\",\r\n \"13.78.137.179/32\",\r\n
+ \ \"13.78.137.247/32\",\r\n \"13.78.141.75/32\",\r\n \"13.78.148.140/32\",\r\n
+ \ \"13.78.151.161/32\",\r\n \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n
+ \ \"13.84.43.45/32\",\r\n \"13.84.159.168/32\",\r\n \"13.85.79.155/32\",\r\n
+ \ \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.58.160/27\",\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n \"13.91.252.184/32\",\r\n
+ \ \"13.92.98.111/32\",\r\n \"13.95.147.65/32\",\r\n \"13.95.155.53/32\",\r\n
+ \ \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n \"20.36.117.96/27\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.37.76.224/27\",\r\n
+ \ \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n \"20.38.149.144/28\",\r\n
+ \ \"20.38.149.160/27\",\r\n \"20.42.64.48/28\",\r\n \"20.42.72.160/27\",\r\n
+ \ \"20.43.121.192/27\",\r\n \"20.43.121.224/28\",\r\n \"20.44.4.176/28\",\r\n
+ \ \"20.44.4.192/27\",\r\n \"20.44.17.224/27\",\r\n \"20.45.64.29/32\",\r\n
+ \ \"20.45.64.87/32\",\r\n \"20.45.67.134/31\",\r\n \"20.45.67.170/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.72.54/32\",\r\n \"20.45.72.72/32\",\r\n
+ \ \"20.45.75.193/32\",\r\n \"20.45.75.200/32\",\r\n \"20.45.75.236/32\",\r\n
+ \ \"20.45.79.239/32\",\r\n \"20.72.30.160/28\",\r\n \"20.72.30.192/27\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.150.173.192/27\",\r\n \"20.150.181.32/27\",\r\n
+ \ \"20.188.33.169/32\",\r\n \"20.188.39.105/32\",\r\n \"20.192.184.0/27\",\r\n
+ \ \"20.192.238.128/27\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"20.193.206.128/27\",\r\n \"23.96.200.77/32\",\r\n \"23.96.200.227/32\",\r\n
+ \ \"23.96.203.46/32\",\r\n \"23.96.210.49/32\",\r\n \"23.96.212.28/32\",\r\n
+ \ \"23.96.253.219/32\",\r\n \"23.97.68.172/32\",\r\n \"23.97.210.126/32\",\r\n
+ \ \"23.97.211.179/32\",\r\n \"23.97.218.130/32\",\r\n \"23.99.125.99/32\",\r\n
+ \ \"23.100.29.190/32\",\r\n \"23.100.82.16/32\",\r\n \"23.100.86.139/32\",\r\n
+ \ \"23.100.87.24/32\",\r\n \"23.100.87.56/32\",\r\n \"23.100.124.84/32\",\r\n
+ \ \"23.100.127.172/32\",\r\n \"23.101.132.208/32\",\r\n \"23.101.136.201/32\",\r\n
+ \ \"23.101.139.153/32\",\r\n \"23.101.183.225/32\",\r\n \"23.101.191.106/32\",\r\n
+ \ \"23.102.70.174/32\",\r\n \"40.67.60.176/28\",\r\n \"40.67.60.192/27\",\r\n
+ \ \"40.68.209.23/32\",\r\n \"40.68.222.65/32\",\r\n \"40.69.110.192/27\",\r\n
+ \ \"40.69.110.224/28\",\r\n \"40.70.26.154/32\",\r\n \"40.70.27.236/32\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.70.29.214/32\",\r\n \"40.70.131.151/32\",\r\n
+ \ \"40.74.64.207/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.68.85/32\",\r\n
+ \ \"40.74.74.21/32\",\r\n \"40.74.76.213/32\",\r\n \"40.74.77.205/32\",\r\n
+ \ \"40.74.81.13/32\",\r\n \"40.74.85.215/32\",\r\n \"40.74.131.151/32\",\r\n
+ \ \"40.74.132.29/32\",\r\n \"40.74.136.23/32\",\r\n \"40.74.140.4/32\",\r\n
+ \ \"40.74.140.162/32\",\r\n \"40.74.140.173/32\",\r\n \"40.74.142.133/32\",\r\n
+ \ \"40.74.143.215/32\",\r\n \"40.74.149.96/27\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.204.224/27\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"40.78.245.144/28\",\r\n \"40.78.245.160/27\",\r\n \"40.79.44.7/32\",\r\n
+ \ \"40.79.139.144/28\",\r\n \"40.79.139.160/27\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.160/27\",\r\n \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n
+ \ \"40.80.180.16/28\",\r\n \"40.80.180.32/27\",\r\n \"40.83.73.39/32\",\r\n
+ \ \"40.83.75.165/32\",\r\n \"40.83.77.208/32\",\r\n \"40.83.98.194/32\",\r\n
+ \ \"40.83.100.69/32\",\r\n \"40.83.127.19/32\",\r\n \"40.83.164.80/32\",\r\n
+ \ \"40.84.25.234/32\",\r\n \"40.84.30.147/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n
+ \ \"40.85.250.212/32\",\r\n \"40.85.252.47/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.86.203.228/32\",\r\n \"40.86.216.241/32\",\r\n \"40.86.217.241/32\",\r\n
+ \ \"40.86.226.149/32\",\r\n \"40.86.228.93/32\",\r\n \"40.89.186.28/32\",\r\n
+ \ \"40.89.186.30/32\",\r\n \"40.89.188.169/32\",\r\n \"40.89.190.104/32\",\r\n
+ \ \"40.89.191.161/32\",\r\n \"40.112.90.39/32\",\r\n \"40.112.92.104/32\",\r\n
+ \ \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n \"40.113.3.202/32\",\r\n
+ \ \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n \"40.113.11.17/32\",\r\n
+ \ \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n \"40.113.20.202/32\",\r\n
+ \ \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n \"40.113.218.230/32\",\r\n
+ \ \"40.114.8.21/32\",\r\n \"40.114.12.31/32\",\r\n \"40.114.13.216/32\",\r\n
+ \ \"40.114.14.143/32\",\r\n \"40.114.40.186/32\",\r\n \"40.114.51.5/32\",\r\n
+ \ \"40.114.82.191/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"40.120.64.0/27\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"40.121.91.41/32\",\r\n \"40.122.41.236/32\",\r\n \"40.122.46.197/32\",\r\n
+ \ \"40.122.170.198/32\",\r\n \"40.126.227.199/32\",\r\n \"40.126.240.14/32\",\r\n
+ \ \"40.126.249.73/32\",\r\n \"40.126.252.33/32\",\r\n \"40.126.252.85/32\",\r\n
+ \ \"40.126.252.107/32\",\r\n \"40.127.80.231/32\",\r\n \"40.127.83.170/32\",\r\n
+ \ \"40.127.84.38/32\",\r\n \"40.127.86.12/32\",\r\n \"40.127.91.18/32\",\r\n
+ \ \"40.127.93.92/32\",\r\n \"51.11.97.16/28\",\r\n \"51.11.97.32/27\",\r\n
+ \ \"51.12.100.112/28\",\r\n \"51.12.102.160/27\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.12.204.192/27\",\r\n \"51.12.229.32/27\",\r\n \"51.104.9.112/28\",\r\n
+ \ \"51.105.69.96/27\",\r\n \"51.107.60.160/27\",\r\n \"51.107.60.192/28\",\r\n
+ \ \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.104/32\",\r\n
+ \ \"51.116.168.222/32\",\r\n \"51.116.171.49/32\",\r\n \"51.116.171.209/32\",\r\n
+ \ \"51.116.175.0/32\",\r\n \"51.116.175.17/32\",\r\n \"51.116.175.51/32\",\r\n
+ \ \"51.116.233.22/32\",\r\n \"51.116.233.33/32\",\r\n \"51.116.233.35/32\",\r\n
+ \ \"51.116.233.40/32\",\r\n \"51.116.233.87/32\",\r\n \"51.116.243.224/27\",\r\n
+ \ \"51.120.100.160/27\",\r\n \"51.120.109.32/28\",\r\n \"51.120.220.128/27\",\r\n
+ \ \"51.120.220.160/28\",\r\n \"51.140.28.225/32\",\r\n \"51.140.73.85/32\",\r\n
+ \ \"51.140.74.14/32\",\r\n \"51.140.78.44/32\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.137.190/32\",\r\n
+ \ \"51.140.142.28/32\",\r\n \"51.140.153.135/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.140.158.24/32\",\r\n \"51.141.45.238/32\",\r\n \"51.141.47.136/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.54.185/32\",\r\n \"51.141.112.112/32\",\r\n \"51.141.113.36/32\",\r\n
+ \ \"51.141.114.77/32\",\r\n \"51.141.118.119/32\",\r\n \"51.141.119.63/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"51.144.182.201/32\",\r\n
+ \ \"52.143.156.55/32\",\r\n \"52.143.158.203/32\",\r\n \"52.143.162.83/32\",\r\n
+ \ \"52.143.164.15/32\",\r\n \"52.143.164.80/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.147.97.32/27\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"52.161.8.128/32\",\r\n \"52.161.9.108/32\",\r\n \"52.161.18.218/32\",\r\n
+ \ \"52.161.19.82/32\",\r\n \"52.161.26.172/32\",\r\n \"52.161.27.190/32\",\r\n
+ \ \"52.162.111.144/28\",\r\n \"52.162.111.160/27\",\r\n \"52.162.208.216/32\",\r\n
+ \ \"52.162.213.231/32\",\r\n \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n
+ \ \"52.163.230.166/32\",\r\n \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n
+ \ \"52.169.220.174/32\",\r\n \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n
+ \ \"52.172.50.24/32\",\r\n \"52.172.51.140/32\",\r\n \"52.172.52.0/32\",\r\n
+ \ \"52.172.55.231/32\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n
+ \ \"52.175.33.254/32\",\r\n \"52.175.198.132/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"52.182.141.160/27\",\r\n \"52.183.29.132/32\",\r\n
+ \ \"52.183.30.10/32\",\r\n \"52.183.30.169/32\",\r\n \"52.183.39.67/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"52.187.226.96/32\",\r\n
+ \ \"52.187.226.139/32\",\r\n \"52.187.227.245/32\",\r\n \"52.187.229.130/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.187.231.184/32\",\r\n \"52.189.214.42/32\",\r\n
+ \ \"52.189.216.28/32\",\r\n \"52.189.220.75/32\",\r\n \"52.189.222.77/32\",\r\n
+ \ \"52.228.39.244/32\",\r\n \"52.229.120.45/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.229.126.25/32\",\r\n \"52.231.23.16/28\",\r\n \"52.231.23.32/27\",\r\n
+ \ \"52.232.128.155/32\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n
+ \ \"65.52.8.225/32\",\r\n \"65.52.9.64/32\",\r\n \"65.52.9.96/32\",\r\n
+ \ \"65.52.10.183/32\",\r\n \"65.52.60.5/32\",\r\n \"65.52.175.34/32\",\r\n
+ \ \"65.52.185.96/32\",\r\n \"65.52.185.218/32\",\r\n \"65.52.186.153/32\",\r\n
+ \ \"65.52.186.190/32\",\r\n \"65.52.186.225/32\",\r\n \"65.52.211.164/32\",\r\n
+ \ \"70.37.50.6/32\",\r\n \"70.37.54.122/32\",\r\n \"102.133.28.208/28\",\r\n
+ \ \"102.133.28.224/27\",\r\n \"102.133.72.37/32\",\r\n \"102.133.72.98/32\",\r\n
+ \ \"102.133.72.113/32\",\r\n \"102.133.72.132/32\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.179/32\",\r\n \"102.133.72.183/32\",\r\n
+ \ \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n \"102.133.75.169/32\",\r\n
+ \ \"102.133.75.191/32\",\r\n \"102.133.156.176/28\",\r\n
+ \ \"102.133.224.125/32\",\r\n \"102.133.226.199/32\",\r\n
+ \ \"102.133.227.103/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.6/32\",\r\n
+ \ \"102.133.228.9/32\",\r\n \"102.133.230.4/32\",\r\n \"102.133.230.82/32\",\r\n
+ \ \"102.133.231.9/32\",\r\n \"102.133.231.51/32\",\r\n \"102.133.231.117/32\",\r\n
+ \ \"102.133.231.188/32\",\r\n \"102.133.251.224/27\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.40.218.37/32\",\r\n
+ \ \"104.41.0.115/32\",\r\n \"104.41.33.103/32\",\r\n \"104.41.162.245/32\",\r\n
+ \ \"104.41.163.102/32\",\r\n \"104.41.168.76/32\",\r\n \"104.41.173.132/32\",\r\n
+ \ \"104.41.179.165/32\",\r\n \"104.41.181.59/32\",\r\n \"104.41.182.232/32\",\r\n
+ \ \"104.42.38.32/32\",\r\n \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n
+ \ \"104.42.236.93/32\",\r\n \"104.43.166.135/32\",\r\n \"104.43.243.39/32\",\r\n
+ \ \"104.45.9.52/32\",\r\n \"104.45.153.81/32\",\r\n \"104.46.32.99/32\",\r\n
+ \ \"104.46.34.93/32\",\r\n \"104.46.34.208/32\",\r\n \"104.46.39.63/32\",\r\n
+ \ \"104.46.42.167/32\",\r\n \"104.46.98.208/32\",\r\n \"104.46.106.158/32\",\r\n
+ \ \"104.47.138.214/32\",\r\n \"104.208.25.27/32\",\r\n \"104.208.140.40/32\",\r\n
+ \ \"104.208.155.200/32\",\r\n \"104.208.158.174/32\",\r\n
+ \ \"104.209.131.77/32\",\r\n \"104.209.133.254/32\",\r\n
+ \ \"104.209.134.133/32\",\r\n \"104.210.89.222/32\",\r\n
+ \ \"104.210.89.244/32\",\r\n \"104.210.90.241/32\",\r\n \"104.210.91.55/32\",\r\n
+ \ \"104.210.144.48/32\",\r\n \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n
+ \ \"104.211.74.145/32\",\r\n \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n
+ \ \"104.211.101.108/32\",\r\n \"104.211.102.62/32\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"104.211.225.152/32\",\r\n \"104.211.227.229/32\",\r\n
+ \ \"104.211.229.115/32\",\r\n \"104.211.230.126/32\",\r\n
+ \ \"104.211.230.129/32\",\r\n \"104.211.231.39/32\",\r\n
+ \ \"104.214.137.243/32\",\r\n \"104.214.161.64/27\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.88.156/32\",\r\n \"104.215.89.144/32\",\r\n
+ \ \"104.215.90.86/32\",\r\n \"104.215.90.189/32\",\r\n \"104.215.90.203/32\",\r\n
+ \ \"104.215.93.125/32\",\r\n \"104.215.176.31/32\",\r\n \"104.215.176.81/32\",\r\n
+ \ \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n \"104.215.179.133/32\",\r\n
+ \ \"104.215.180.203/32\",\r\n \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n
+ \ \"111.221.85.74/32\",\r\n \"137.116.44.82/32\",\r\n \"137.116.80.70/32\",\r\n
+ \ \"137.116.85.245/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.117.72.32/32\",\r\n \"137.135.106.54/32\",\r\n \"138.91.17.47/32\",\r\n
+ \ \"138.91.25.99/32\",\r\n \"138.91.26.45/32\",\r\n \"138.91.188.137/32\",\r\n
+ \ \"157.55.210.61/32\",\r\n \"157.55.212.238/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n \"157.56.167.147/32\",\r\n
+ \ \"168.61.86.120/32\",\r\n \"168.61.152.201/32\",\r\n \"168.61.172.83/32\",\r\n
+ \ \"168.61.172.225/32\",\r\n \"168.61.173.172/32\",\r\n \"168.61.217.177/32\",\r\n
+ \ \"168.62.109.110/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"168.62.248.37/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.136.37/32\",\r\n
+ \ \"168.63.200.173/32\",\r\n \"191.232.32.19/32\",\r\n \"191.232.32.100/32\",\r\n
+ \ \"191.232.34.78/32\",\r\n \"191.232.34.249/32\",\r\n \"191.232.35.177/32\",\r\n
+ \ \"191.232.36.213/32\",\r\n \"191.233.54.240/28\",\r\n \"191.233.68.51/32\",\r\n
+ \ \"191.233.207.0/28\",\r\n \"191.233.207.32/27\",\r\n \"191.234.161.28/32\",\r\n
+ \ \"191.234.161.168/32\",\r\n \"191.234.162.131/32\",\r\n
+ \ \"191.234.162.178/32\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.234.182.26/32\",\r\n \"191.235.82.221/32\",\r\n \"191.235.86.199/32\",\r\n
+ \ \"191.235.91.7/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"191.235.180.188/32\",\r\n \"191.237.255.116/32\",\r\n
+ \ \"191.238.41.107/32\",\r\n \"191.238.161.62/32\",\r\n \"191.238.163.65/32\",\r\n
+ \ \"191.239.67.132/32\",\r\n \"191.239.82.62/32\",\r\n \"191.239.161.74/32\",\r\n
+ \ \"191.239.177.86/32\",\r\n \"207.46.148.176/32\",\r\n \"2603:1000:4:402::3c0/124\",\r\n
+ \ \"2603:1000:4:402::3e0/123\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1000:104:402::3e0/123\",\r\n \"2603:1010:6:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3e0/123\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:101:402::3e0/123\",\r\n \"2603:1010:304:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3e0/123\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1010:404:402::3e0/123\",\r\n \"2603:1020:5:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3e0/123\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:206:402::3e0/123\",\r\n \"2603:1020:305:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3e0/123\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:405:402::3e0/123\",\r\n \"2603:1020:605:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3e0/123\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:705:402::3e0/123\",\r\n \"2603:1020:805:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3e0/123\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:905:402::3e0/123\",\r\n \"2603:1020:a04:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3e0/123\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:b04:402::3e0/123\",\r\n \"2603:1020:c04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3e0/123\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\",\r\n \"2603:1020:e04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3e0/123\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:f04:402::3e0/123\",\r\n \"2603:1020:1004:400::250/124\",\r\n
+ \ \"2603:1020:1004:400::260/123\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1020:1104:400::520/123\",\r\n \"2603:1030:f:400::bc0/124\",\r\n
+ \ \"2603:1030:f:400::be0/123\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:10:402::3e0/123\",\r\n \"2603:1030:104:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3e0/123\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:107:400::3a0/123\",\r\n \"2603:1030:210:402::3c0/124\",\r\n
+ \ \"2603:1030:210:402::3e0/123\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40b:400::be0/123\",\r\n \"2603:1030:40c:402::3c0/124\",\r\n
+ \ \"2603:1030:40c:402::3e0/123\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:504:402::260/123\",\r\n \"2603:1030:608:402::3c0/124\",\r\n
+ \ \"2603:1030:608:402::3e0/123\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:807:402::3e0/123\",\r\n \"2603:1030:a07:402::340/124\",\r\n
+ \ \"2603:1030:a07:402::360/123\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:b04:402::3e0/123\",\r\n \"2603:1030:c06:400::bc0/124\",\r\n
+ \ \"2603:1030:c06:400::be0/123\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\",\r\n \"2603:1030:1005:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3e0/123\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:5:402::3e0/123\",\r\n \"2603:1040:207:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3e0/123\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:407:402::3e0/123\",\r\n \"2603:1040:606:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3e0/123\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:806:402::3e0/123\",\r\n \"2603:1040:904:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3e0/123\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\",\r\n \"2603:1040:b04:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3e0/123\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:c06:402::3e0/123\",\r\n \"2603:1040:d04:400::250/124\",\r\n
+ \ \"2603:1040:d04:400::260/123\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:f05:402::3e0/123\",\r\n \"2603:1040:1104:400::510/124\",\r\n
+ \ \"2603:1040:1104:400::520/123\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:6:402::3e0/123\",\r\n \"2603:1050:403:400::180/123\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.AustraliaCentral\",\r\n \"id\":
+ \"LogicApps.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:304:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.CanadaCentral\",\r\n
+ \ \"id\": \"LogicApps.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.184.150/32\",\r\n \"13.71.186.1/32\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"20.38.149.144/28\",\r\n \"20.38.149.160/27\",\r\n
+ \ \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n \"40.85.250.212/32\",\r\n
+ \ \"40.85.252.47/32\",\r\n \"52.228.39.244/32\",\r\n \"52.233.29.79/32\",\r\n
+ \ \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.CentralIndia\",\r\n \"id\": \"LogicApps.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.192/27\",\r\n
+ \ \"20.43.121.224/28\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.74.145/32\",\r\n
+ \ \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n \"104.211.101.108/32\",\r\n
+ \ \"104.211.102.62/32\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.GermanyNorth\",\r\n \"id\": \"LogicApps.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.NorthEurope\",\r\n \"id\": \"LogicApps.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"13.69.231.160/27\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.79.173.49/32\",\r\n \"40.112.90.39/32\",\r\n
+ \ \"40.112.92.104/32\",\r\n \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n
+ \ \"40.113.3.202/32\",\r\n \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n
+ \ \"40.113.11.17/32\",\r\n \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n
+ \ \"40.113.20.202/32\",\r\n \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n
+ \ \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"168.61.86.120/32\",\r\n \"191.235.180.188/32\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SoutheastAsia\",\r\n
+ \ \"id\": \"LogicApps.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.13.224/27\",\r\n \"13.67.91.135/32\",\r\n
+ \ \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n \"13.76.4.194/32\",\r\n
+ \ \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n \"52.163.230.166/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"104.215.176.31/32\",\r\n
+ \ \"104.215.176.81/32\",\r\n \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n
+ \ \"104.215.179.133/32\",\r\n \"104.215.180.203/32\",\r\n
+ \ \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n \"111.221.85.74/32\",\r\n
+ \ \"2603:1040:5:402::3c0/124\",\r\n \"2603:1040:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SwitzerlandWest\",\r\n
+ \ \"id\": \"LogicApps.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"2603:1020:b04:402::3c0/124\",\r\n \"2603:1020:b04:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKNorth\",\r\n
+ \ \"id\": \"LogicApps.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:305:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKSouth2\",\r\n
+ \ \"id\": \"LogicApps.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.58.144/28\",\r\n \"13.87.58.160/27\",\r\n
+ \ \"2603:1020:405:402::3c0/124\",\r\n \"2603:1020:405:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestIndia\",\r\n
+ \ \"id\": \"LogicApps.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"2603:1040:806:402::3c0/124\",\r\n \"2603:1040:806:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestUS\",\r\n
+ \ \"id\": \"LogicApps.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"40.83.164.80/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.42.38.32/32\",\r\n
+ \ \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n \"104.42.236.93/32\",\r\n
+ \ \"138.91.188.137/32\",\r\n \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n
+ \ \"157.56.167.147/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:a07:402::360/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicAppsManagement\",\r\n
+ \ \"id\": \"LogicAppsManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.128.68/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.67.236.76/32\",\r\n \"13.69.109.144/28\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.71.146.140/32\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.115.153/32\",\r\n \"13.73.244.144/28\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.153.66/32\",\r\n \"13.77.55.128/28\",\r\n \"13.78.43.164/32\",\r\n
+ \ \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n \"13.78.137.247/32\",\r\n
+ \ \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n \"13.84.43.45/32\",\r\n
+ \ \"13.85.79.155/32\",\r\n \"13.86.221.240/28\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.124.144/28\",\r\n \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"13.95.155.53/32\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.38.128.176/28\",\r\n
+ \ \"20.38.149.144/28\",\r\n \"20.42.64.48/28\",\r\n \"20.43.121.224/28\",\r\n
+ \ \"20.44.4.176/28\",\r\n \"20.45.64.29/32\",\r\n \"20.45.64.87/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.75.193/32\",\r\n \"20.72.30.160/28\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"23.97.68.172/32\",\r\n \"40.67.60.176/28\",\r\n \"40.69.110.224/28\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.81.13/32\",\r\n
+ \ \"40.74.85.215/32\",\r\n \"40.74.140.173/32\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.239.16/28\",\r\n \"40.78.245.144/28\",\r\n
+ \ \"40.79.44.7/32\",\r\n \"40.79.139.144/28\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n \"40.80.180.16/28\",\r\n
+ \ \"40.83.98.194/32\",\r\n \"40.84.25.234/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.112.90.39/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"51.11.97.16/28\",\r\n \"51.12.100.112/28\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.104.9.112/28\",\r\n \"51.107.60.192/28\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"51.116.60.144/28\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.222/32\",\r\n
+ \ \"51.116.171.209/32\",\r\n \"51.116.175.0/32\",\r\n \"51.116.233.40/32\",\r\n
+ \ \"51.120.109.32/28\",\r\n \"51.120.220.160/28\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.160.90.237/32\",\r\n \"52.161.8.128/32\",\r\n \"52.161.19.82/32\",\r\n
+ \ \"52.161.26.172/32\",\r\n \"52.162.111.144/28\",\r\n \"52.163.93.214/32\",\r\n
+ \ \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n
+ \ \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n \"52.172.51.140/32\",\r\n
+ \ \"52.172.157.194/32\",\r\n \"52.172.184.192/32\",\r\n \"52.172.191.194/32\",\r\n
+ \ \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n \"52.183.30.10/32\",\r\n
+ \ \"52.183.39.67/32\",\r\n \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.189.216.28/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.231.23.16/28\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.30.218/32\",\r\n \"65.52.9.64/32\",\r\n
+ \ \"65.52.211.164/32\",\r\n \"102.133.28.208/28\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n
+ \ \"102.133.156.176/28\",\r\n \"102.133.224.125/32\",\r\n
+ \ \"102.133.226.199/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.9/32\",\r\n
+ \ \"104.43.243.39/32\",\r\n \"104.210.89.222/32\",\r\n \"104.210.89.244/32\",\r\n
+ \ \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.157.237/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.165.81/32\",\r\n \"104.211.225.152/32\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.181.6/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.135.106.54/32\",\r\n \"138.91.188.137/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.200.173/32\",\r\n
+ \ \"191.233.54.240/28\",\r\n \"191.233.207.0/28\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.235.86.199/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"2603:1000:4:402::3c0/124\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3c0/124\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3c0/124\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3c0/124\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3c0/124\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3c0/124\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3c0/124\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:1004:400::250/124\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1030:f:400::bc0/124\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3c0/124\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:210:402::3c0/124\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40c:402::3c0/124\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:608:402::3c0/124\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:c06:400::bc0/124\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3c0/124\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3c0/124\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3c0/124\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3c0/124\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3c0/124\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:d04:400::250/124\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:1104:400::510/124\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftCloudAppSecurity\",\r\n \"id\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.26.88/32\",\r\n \"13.64.28.87/32\",\r\n
+ \ \"13.64.29.32/32\",\r\n \"13.64.29.161/32\",\r\n \"13.64.30.76/32\",\r\n
+ \ \"13.64.30.117/32\",\r\n \"13.64.30.118/32\",\r\n \"13.64.31.116/32\",\r\n
+ \ \"13.64.196.27/32\",\r\n \"13.64.198.19/32\",\r\n \"13.64.198.97/32\",\r\n
+ \ \"13.64.199.41/32\",\r\n \"13.64.252.115/32\",\r\n \"13.66.134.18/32\",\r\n
+ \ \"13.66.142.80/28\",\r\n \"13.66.158.8/32\",\r\n \"13.66.168.209/32\",\r\n
+ \ \"13.66.173.192/32\",\r\n \"13.66.210.205/32\",\r\n \"13.67.10.192/28\",\r\n
+ \ \"13.67.48.221/32\",\r\n \"13.69.67.96/28\",\r\n \"13.69.107.96/28\",\r\n
+ \ \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n \"13.70.74.160/27\",\r\n
+ \ \"13.71.175.0/27\",\r\n \"13.71.196.192/27\",\r\n \"13.73.242.224/27\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"13.75.39.128/27\",\r\n
+ \ \"13.76.43.73/32\",\r\n \"13.76.129.255/32\",\r\n \"13.77.53.96/27\",\r\n
+ \ \"13.77.80.28/32\",\r\n \"13.77.136.80/32\",\r\n \"13.77.148.229/32\",\r\n
+ \ \"13.77.160.162/32\",\r\n \"13.77.163.148/32\",\r\n \"13.77.165.61/32\",\r\n
+ \ \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n \"13.80.125.22/32\",\r\n
+ \ \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n \"13.81.212.71/32\",\r\n
+ \ \"13.86.176.189/32\",\r\n \"13.86.176.211/32\",\r\n \"13.86.219.224/27\",\r\n
+ \ \"13.86.235.202/32\",\r\n \"13.86.239.236/32\",\r\n \"13.88.224.38/32\",\r\n
+ \ \"13.88.224.211/32\",\r\n \"13.88.224.222/32\",\r\n \"13.88.226.74/32\",\r\n
+ \ \"13.88.227.7/32\",\r\n \"13.89.178.0/28\",\r\n \"13.91.61.249/32\",\r\n
+ \ \"13.91.91.243/32\",\r\n \"13.91.98.185/32\",\r\n \"13.93.32.114/32\",\r\n
+ \ \"13.93.113.192/32\",\r\n \"13.93.196.52/32\",\r\n \"13.93.216.68/32\",\r\n
+ \ \"13.93.233.42/32\",\r\n \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n
+ \ \"13.95.30.46/32\",\r\n \"20.36.220.93/32\",\r\n \"20.36.222.59/32\",\r\n
+ \ \"20.36.222.60/32\",\r\n \"20.36.240.76/32\",\r\n \"20.36.244.208/32\",\r\n
+ \ \"20.36.245.0/32\",\r\n \"20.36.245.182/32\",\r\n \"20.36.245.235/32\",\r\n
+ \ \"20.36.246.188/32\",\r\n \"20.36.248.40/32\",\r\n \"20.40.106.50/31\",\r\n
+ \ \"20.40.107.84/32\",\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"20.40.160.184/32\",\r\n \"20.40.161.119/32\",\r\n
+ \ \"20.40.161.131/32\",\r\n \"20.40.161.132/32\",\r\n \"20.40.161.135/32\",\r\n
+ \ \"20.40.161.140/30\",\r\n \"20.40.161.160/31\",\r\n \"20.40.162.86/32\",\r\n
+ \ \"20.40.162.200/32\",\r\n \"20.40.163.88/32\",\r\n \"20.40.163.96/31\",\r\n
+ \ \"20.40.163.130/32\",\r\n \"20.40.163.133/32\",\r\n \"20.40.163.178/31\",\r\n
+ \ \"20.42.29.162/32\",\r\n \"20.42.31.48/32\",\r\n \"20.42.31.251/32\",\r\n
+ \ \"20.44.8.208/28\",\r\n \"20.44.17.64/28\",\r\n \"20.44.72.173/32\",\r\n
+ \ \"20.44.72.217/32\",\r\n \"20.44.73.253/32\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.184.57.4/32\",\r\n \"20.184.57.218/32\",\r\n \"20.184.58.46/32\",\r\n
+ \ \"20.184.58.110/32\",\r\n \"20.184.60.77/32\",\r\n \"20.184.61.67/32\",\r\n
+ \ \"20.184.61.253/32\",\r\n \"20.184.63.158/32\",\r\n \"20.184.63.216/32\",\r\n
+ \ \"20.184.63.232/32\",\r\n \"20.188.72.248/32\",\r\n \"23.97.54.160/32\",\r\n
+ \ \"23.97.55.165/32\",\r\n \"23.98.83.96/28\",\r\n \"23.100.67.153/32\",\r\n
+ \ \"40.65.169.46/32\",\r\n \"40.65.169.97/32\",\r\n \"40.65.169.196/32\",\r\n
+ \ \"40.65.169.236/32\",\r\n \"40.65.170.17/32\",\r\n \"40.65.170.26/32\",\r\n
+ \ \"40.65.170.80/30\",\r\n \"40.65.170.112/31\",\r\n \"40.65.170.123/32\",\r\n
+ \ \"40.65.170.125/32\",\r\n \"40.65.170.128/32\",\r\n \"40.65.170.133/32\",\r\n
+ \ \"40.65.170.137/32\",\r\n \"40.65.233.253/32\",\r\n \"40.65.235.54/32\",\r\n
+ \ \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n \"40.66.57.203/32\",\r\n
+ \ \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n \"40.66.59.195/32\",\r\n
+ \ \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n \"40.66.60.101/32\",\r\n
+ \ \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n \"40.66.60.185/32\",\r\n
+ \ \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n \"40.66.60.208/31\",\r\n
+ \ \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n \"40.66.60.216/31\",\r\n
+ \ \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n \"40.66.60.222/32\",\r\n
+ \ \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n \"40.66.60.232/32\",\r\n
+ \ \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n \"40.66.61.193/32\",\r\n
+ \ \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n \"40.66.62.9/32\",\r\n
+ \ \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n \"40.66.62.154/32\",\r\n
+ \ \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n \"40.66.63.255/32\",\r\n
+ \ \"40.67.152.91/32\",\r\n \"40.67.152.227/32\",\r\n \"40.67.154.160/32\",\r\n
+ \ \"40.67.155.146/32\",\r\n \"40.67.159.55/32\",\r\n \"40.67.216.253/32\",\r\n
+ \ \"40.67.219.133/32\",\r\n \"40.67.251.0/32\",\r\n \"40.67.254.233/32\",\r\n
+ \ \"40.68.245.184/32\",\r\n \"40.69.108.96/27\",\r\n \"40.70.0.255/32\",\r\n
+ \ \"40.70.29.49/32\",\r\n \"40.70.29.200/32\",\r\n \"40.70.148.112/28\",\r\n
+ \ \"40.70.184.90/32\",\r\n \"40.71.14.16/28\",\r\n \"40.74.1.235/32\",\r\n
+ \ \"40.74.6.204/32\",\r\n \"40.76.78.217/32\",\r\n \"40.78.23.204/32\",\r\n
+ \ \"40.78.56.129/32\",\r\n \"40.78.229.64/28\",\r\n \"40.78.236.160/28\",\r\n
+ \ \"40.78.245.0/28\",\r\n \"40.78.251.128/28\",\r\n \"40.79.132.96/28\",\r\n
+ \ \"40.79.139.16/28\",\r\n \"40.79.146.224/28\",\r\n \"40.79.156.112/28\",\r\n
+ \ \"40.79.180.64/27\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.81.56.80/32\",\r\n \"40.81.57.138/32\",\r\n
+ \ \"40.81.57.141/32\",\r\n \"40.81.57.144/32\",\r\n \"40.81.57.157/32\",\r\n
+ \ \"40.81.57.164/32\",\r\n \"40.81.57.169/32\",\r\n \"40.81.58.180/32\",\r\n
+ \ \"40.81.58.184/32\",\r\n \"40.81.58.193/32\",\r\n \"40.81.59.4/32\",\r\n
+ \ \"40.81.59.90/32\",\r\n \"40.81.59.93/32\",\r\n \"40.81.62.162/32\",\r\n
+ \ \"40.81.62.179/32\",\r\n \"40.81.62.193/32\",\r\n \"40.81.62.199/32\",\r\n
+ \ \"40.81.62.206/32\",\r\n \"40.81.62.209/32\",\r\n \"40.81.62.212/32\",\r\n
+ \ \"40.81.62.220/30\",\r\n \"40.81.62.224/32\",\r\n \"40.81.62.255/32\",\r\n
+ \ \"40.81.63.1/32\",\r\n \"40.81.63.2/32\",\r\n \"40.81.63.4/31\",\r\n
+ \ \"40.81.63.7/32\",\r\n \"40.81.63.8/32\",\r\n \"40.81.63.235/32\",\r\n
+ \ \"40.81.63.245/32\",\r\n \"40.81.63.248/32\",\r\n \"40.81.120.13/32\",\r\n
+ \ \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n \"40.81.120.187/32\",\r\n
+ \ \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n \"40.81.121.66/32\",\r\n
+ \ \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n \"40.81.121.107/32\",\r\n
+ \ \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n \"40.81.121.127/32\",\r\n
+ \ \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n \"40.81.121.175/32\",\r\n
+ \ \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n \"40.81.122.76/32\",\r\n
+ \ \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n \"40.81.123.157/32\",\r\n
+ \ \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n \"40.81.127.25/32\",\r\n
+ \ \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n \"40.81.127.229/32\",\r\n
+ \ \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n \"40.81.152.126/32\",\r\n
+ \ \"40.81.152.171/32\",\r\n \"40.81.152.172/32\",\r\n \"40.81.156.153/32\",\r\n
+ \ \"40.81.156.154/31\",\r\n \"40.81.156.156/32\",\r\n \"40.81.159.35/32\",\r\n
+ \ \"40.81.159.77/32\",\r\n \"40.82.184.80/32\",\r\n \"40.82.185.36/32\",\r\n
+ \ \"40.82.185.117/32\",\r\n \"40.82.185.229/32\",\r\n \"40.82.186.166/32\",\r\n
+ \ \"40.82.186.168/31\",\r\n \"40.82.186.176/31\",\r\n \"40.82.186.180/32\",\r\n
+ \ \"40.82.186.182/32\",\r\n \"40.82.186.185/32\",\r\n \"40.82.186.214/32\",\r\n
+ \ \"40.82.186.231/32\",\r\n \"40.82.187.161/32\",\r\n \"40.82.187.162/31\",\r\n
+ \ \"40.82.187.164/32\",\r\n \"40.82.187.177/32\",\r\n \"40.82.187.178/31\",\r\n
+ \ \"40.82.187.199/32\",\r\n \"40.82.187.200/32\",\r\n \"40.82.187.202/32\",\r\n
+ \ \"40.82.187.204/30\",\r\n \"40.82.187.208/30\",\r\n \"40.82.187.212/31\",\r\n
+ \ \"40.82.187.218/32\",\r\n \"40.82.187.223/32\",\r\n \"40.82.190.163/32\",\r\n
+ \ \"40.82.191.58/32\",\r\n \"40.84.2.83/32\",\r\n \"40.84.4.93/32\",\r\n
+ \ \"40.84.4.119/32\",\r\n \"40.84.5.28/32\",\r\n \"40.84.49.16/32\",\r\n
+ \ \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n \"40.89.142.184/32\",\r\n
+ \ \"40.89.143.43/32\",\r\n \"40.90.184.197/32\",\r\n \"40.90.185.64/32\",\r\n
+ \ \"40.90.191.153/32\",\r\n \"40.90.218.196/31\",\r\n \"40.90.218.198/32\",\r\n
+ \ \"40.90.218.203/32\",\r\n \"40.90.219.121/32\",\r\n \"40.90.219.184/32\",\r\n
+ \ \"40.90.220.37/32\",\r\n \"40.90.220.190/32\",\r\n \"40.90.220.196/32\",\r\n
+ \ \"40.90.222.64/32\",\r\n \"40.91.74.37/32\",\r\n \"40.91.78.105/32\",\r\n
+ \ \"40.91.114.40/29\",\r\n \"40.91.114.48/31\",\r\n \"40.91.122.25/32\",\r\n
+ \ \"40.91.122.38/32\",\r\n \"40.91.126.157/32\",\r\n \"40.91.127.44/32\",\r\n
+ \ \"40.91.198.19/32\",\r\n \"40.113.121.176/32\",\r\n \"40.114.112.147/32\",\r\n
+ \ \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n \"40.115.25.50/32\",\r\n
+ \ \"40.115.71.111/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.118.211.172/32\",\r\n \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n
+ \ \"40.119.154.72/32\",\r\n \"40.119.203.98/31\",\r\n \"40.119.203.158/31\",\r\n
+ \ \"40.119.203.208/31\",\r\n \"40.119.207.131/32\",\r\n \"40.119.207.144/32\",\r\n
+ \ \"40.119.207.164/32\",\r\n \"40.119.207.166/32\",\r\n \"40.119.207.174/32\",\r\n
+ \ \"40.119.207.182/32\",\r\n \"40.119.207.193/32\",\r\n \"40.119.207.200/32\",\r\n
+ \ \"40.119.215.167/32\",\r\n \"40.121.134.1/32\",\r\n \"40.124.53.69/32\",\r\n
+ \ \"51.11.26.92/32\",\r\n \"51.11.26.95/32\",\r\n \"51.104.9.16/28\",\r\n
+ \ \"51.105.37.244/32\",\r\n \"51.105.67.224/28\",\r\n \"51.105.75.176/28\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.1.10/32\",\r\n
+ \ \"51.140.8.108/32\",\r\n \"51.140.8.180/32\",\r\n \"51.140.35.95/32\",\r\n
+ \ \"51.140.52.106/32\",\r\n \"51.140.78.213/32\",\r\n \"51.140.105.124/32\",\r\n
+ \ \"51.140.125.227/32\",\r\n \"51.140.164.179/32\",\r\n \"51.140.191.146/32\",\r\n
+ \ \"51.140.212.128/27\",\r\n \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n
+ \ \"51.141.2.189/32\",\r\n \"51.141.7.11/32\",\r\n \"51.143.58.207/32\",\r\n
+ \ \"51.143.111.58/32\",\r\n \"51.143.120.236/32\",\r\n \"51.143.120.242/32\",\r\n
+ \ \"51.143.122.59/32\",\r\n \"51.143.122.60/32\",\r\n \"51.144.56.60/32\",\r\n
+ \ \"51.145.108.227/32\",\r\n \"51.145.108.250/32\",\r\n \"51.145.181.195/32\",\r\n
+ \ \"51.145.181.214/32\",\r\n \"52.137.56.200/32\",\r\n \"52.137.89.147/32\",\r\n
+ \ \"52.138.227.160/28\",\r\n \"52.139.1.70/32\",\r\n \"52.139.1.156/32\",\r\n
+ \ \"52.139.1.158/31\",\r\n \"52.139.1.200/32\",\r\n \"52.139.1.218/32\",\r\n
+ \ \"52.139.2.0/32\",\r\n \"52.139.16.105/32\",\r\n \"52.139.18.234/32\",\r\n
+ \ \"52.139.18.236/32\",\r\n \"52.139.19.71/32\",\r\n \"52.139.19.187/32\",\r\n
+ \ \"52.139.19.215/32\",\r\n \"52.139.19.247/32\",\r\n \"52.139.20.31/32\",\r\n
+ \ \"52.139.20.118/32\",\r\n \"52.139.21.70/32\",\r\n \"52.139.245.1/32\",\r\n
+ \ \"52.139.245.21/32\",\r\n \"52.139.245.40/32\",\r\n \"52.139.245.48/32\",\r\n
+ \ \"52.139.251.219/32\",\r\n \"52.139.252.105/32\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.143.73.88/32\",\r\n \"52.143.74.31/32\",\r\n \"52.148.115.188/32\",\r\n
+ \ \"52.148.115.194/32\",\r\n \"52.148.115.238/32\",\r\n \"52.148.116.37/32\",\r\n
+ \ \"52.148.161.45/32\",\r\n \"52.148.161.53/32\",\r\n \"52.151.237.243/32\",\r\n
+ \ \"52.151.238.5/32\",\r\n \"52.151.244.65/32\",\r\n \"52.151.247.27/32\",\r\n
+ \ \"52.153.240.107/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.157.19.228/32\",\r\n \"52.157.20.142/32\",\r\n \"52.157.218.219/32\",\r\n
+ \ \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n \"52.157.232.147/32\",\r\n
+ \ \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n \"52.157.233.133/32\",\r\n
+ \ \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n \"52.157.234.222/32\",\r\n
+ \ \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n \"52.157.236.195/32\",\r\n
+ \ \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n \"52.157.237.255/32\",\r\n
+ \ \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n \"52.157.239.132/32\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.167.107.96/28\",\r\n \"52.169.192.237/32\",\r\n
+ \ \"52.174.56.180/32\",\r\n \"52.177.85.43/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.179.155.177/32\",\r\n \"52.179.194.73/32\",\r\n
+ \ \"52.179.198.41/32\",\r\n \"52.182.139.208/28\",\r\n \"52.183.24.254/32\",\r\n
+ \ \"52.183.30.204/32\",\r\n \"52.183.75.62/32\",\r\n \"52.184.165.82/32\",\r\n
+ \ \"52.188.217.236/32\",\r\n \"52.189.208.36/32\",\r\n \"52.189.213.36/32\",\r\n
+ \ \"52.189.213.124/32\",\r\n \"52.189.218.253/32\",\r\n \"52.190.26.220/32\",\r\n
+ \ \"52.190.31.62/32\",\r\n \"52.191.129.65/32\",\r\n \"52.191.237.188/32\",\r\n
+ \ \"52.191.238.65/32\",\r\n \"52.224.188.157/32\",\r\n \"52.224.188.168/32\",\r\n
+ \ \"52.224.190.225/32\",\r\n \"52.224.191.62/32\",\r\n \"52.224.201.216/32\",\r\n
+ \ \"52.224.201.223/32\",\r\n \"52.224.202.86/32\",\r\n \"52.224.202.91/32\",\r\n
+ \ \"52.225.225.218/32\",\r\n \"52.225.231.232/32\",\r\n \"52.232.224.227/32\",\r\n
+ \ \"52.232.225.84/32\",\r\n \"52.232.228.217/32\",\r\n \"52.232.245.96/32\",\r\n
+ \ \"52.236.187.80/28\",\r\n \"52.249.25.160/32\",\r\n \"52.249.25.165/32\",\r\n
+ \ \"65.52.138.123/32\",\r\n \"65.52.229.200/32\",\r\n \"104.40.28.202/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.42.15.41/32\",\r\n \"104.42.34.58/32\",\r\n
+ \ \"104.42.38.254/32\",\r\n \"104.42.54.24/32\",\r\n \"104.42.75.120/32\",\r\n
+ \ \"104.42.211.215/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.45.168.103/32\",\r\n \"104.45.168.104/32\",\r\n \"104.45.168.106/32\",\r\n
+ \ \"104.45.168.108/32\",\r\n \"104.45.168.111/32\",\r\n \"104.45.168.114/32\",\r\n
+ \ \"104.45.170.70/32\",\r\n \"104.45.170.127/32\",\r\n \"104.45.170.161/32\",\r\n
+ \ \"104.45.170.173/32\",\r\n \"104.45.170.174/31\",\r\n \"104.45.170.176/32\",\r\n
+ \ \"104.45.170.178/32\",\r\n \"104.45.170.180/32\",\r\n \"104.45.170.182/31\",\r\n
+ \ \"104.45.170.184/31\",\r\n \"104.45.170.186/32\",\r\n \"104.45.170.188/32\",\r\n
+ \ \"104.45.170.191/32\",\r\n \"104.45.170.194/32\",\r\n \"104.45.170.196/32\",\r\n
+ \ \"104.46.116.211/32\",\r\n \"104.46.121.72/32\",\r\n \"104.46.122.189/32\",\r\n
+ \ \"104.208.216.221/32\",\r\n \"104.209.35.177/32\",\r\n
+ \ \"104.209.168.251/32\",\r\n \"104.210.0.32/32\",\r\n \"104.211.9.226/32\",\r\n
+ \ \"104.214.225.33/32\",\r\n \"137.116.52.31/32\",\r\n \"138.91.147.71/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.96/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.128/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n
+ \ \"40.66.57.203/32\",\r\n \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n
+ \ \"40.66.59.195/32\",\r\n \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n
+ \ \"40.66.60.101/32\",\r\n \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n
+ \ \"40.66.60.185/32\",\r\n \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n
+ \ \"40.66.60.208/31\",\r\n \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n
+ \ \"40.66.60.216/31\",\r\n \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n
+ \ \"40.66.60.222/32\",\r\n \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n
+ \ \"40.66.60.232/32\",\r\n \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n
+ \ \"40.66.61.193/32\",\r\n \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n
+ \ \"40.66.62.9/32\",\r\n \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n
+ \ \"40.66.62.154/32\",\r\n \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n
+ \ \"40.66.63.255/32\",\r\n \"40.79.132.96/28\",\r\n \"40.79.139.16/28\",\r\n
+ \ \"40.79.146.224/28\",\r\n \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n
+ \ \"40.89.142.184/32\",\r\n \"40.89.143.43/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"40.67.251.0/32\",\r\n
+ \ \"40.67.254.233/32\",\r\n \"52.138.227.160/28\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.169.192.237/32\",\r\n \"65.52.229.200/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.242.224/27\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.188.72.248/32\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.124.53.69/32\",\r\n \"52.153.240.107/32\",\r\n
+ \ \"52.249.25.160/32\",\r\n \"52.249.25.165/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.106.50/31\",\r\n \"20.40.107.84/32\",\r\n
+ \ \"40.81.120.13/32\",\r\n \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n
+ \ \"40.81.120.187/32\",\r\n \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n
+ \ \"40.81.121.66/32\",\r\n \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n
+ \ \"40.81.121.107/32\",\r\n \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n
+ \ \"40.81.121.127/32\",\r\n \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n
+ \ \"40.81.121.175/32\",\r\n \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n
+ \ \"40.81.122.76/32\",\r\n \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n
+ \ \"40.81.123.157/32\",\r\n \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n
+ \ \"40.81.127.25/32\",\r\n \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n
+ \ \"40.81.127.229/32\",\r\n \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.212.128/27\",\r\n
+ \ \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n \"51.141.2.189/32\",\r\n
+ \ \"51.141.7.11/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.96/28\",\r\n
+ \ \"13.69.107.96/28\",\r\n \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n
+ \ \"13.80.125.22/32\",\r\n \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n
+ \ \"13.81.212.71/32\",\r\n \"13.93.32.114/32\",\r\n \"13.93.113.192/32\",\r\n
+ \ \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n \"13.95.30.46/32\",\r\n
+ \ \"40.67.216.253/32\",\r\n \"40.67.219.133/32\",\r\n \"40.68.245.184/32\",\r\n
+ \ \"40.74.1.235/32\",\r\n \"40.74.6.204/32\",\r\n \"40.91.198.19/32\",\r\n
+ \ \"40.113.121.176/32\",\r\n \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n
+ \ \"40.115.25.50/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n \"40.119.154.72/32\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.144.56.60/32\",\r\n \"51.145.181.195/32\",\r\n \"51.145.181.214/32\",\r\n
+ \ \"52.137.56.200/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.157.218.219/32\",\r\n \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n
+ \ \"52.157.232.147/32\",\r\n \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n
+ \ \"52.157.233.133/32\",\r\n \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n
+ \ \"52.157.234.222/32\",\r\n \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n
+ \ \"52.157.236.195/32\",\r\n \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n
+ \ \"52.157.237.255/32\",\r\n \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n
+ \ \"52.157.239.132/32\",\r\n \"52.174.56.180/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.236.187.80/28\",\r\n \"65.52.138.123/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.214.225.33/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftContainerRegistry\",\r\n \"id\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n \"13.67.8.112/29\",\r\n
+ \ \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"13.69.227.80/29\",\r\n
+ \ \"13.70.72.128/29\",\r\n \"13.71.170.48/29\",\r\n \"13.71.194.120/29\",\r\n
+ \ \"13.74.107.72/29\",\r\n \"13.75.34.152/29\",\r\n \"13.77.50.72/29\",\r\n
+ \ \"13.78.106.192/29\",\r\n \"13.87.56.88/29\",\r\n \"13.87.122.88/29\",\r\n
+ \ \"13.89.170.208/29\",\r\n \"20.37.74.64/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"20.44.2.16/29\",\r\n \"20.44.26.136/29\",\r\n \"20.45.122.136/29\",\r\n
+ \ \"20.49.82.8/29\",\r\n \"20.49.90.8/29\",\r\n \"20.72.26.8/29\",\r\n
+ \ \"20.150.170.16/29\",\r\n \"20.150.178.136/29\",\r\n \"20.150.186.136/29\",\r\n
+ \ \"20.192.98.136/29\",\r\n \"20.192.234.16/29\",\r\n \"20.193.202.8/29\",\r\n
+ \ \"20.194.66.8/29\",\r\n \"23.98.82.104/29\",\r\n \"40.67.58.16/29\",\r\n
+ \ \"40.69.106.72/29\",\r\n \"40.70.146.80/29\",\r\n \"40.71.10.208/29\",\r\n
+ \ \"40.74.100.56/29\",\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n
+ \ \"40.78.194.72/29\",\r\n \"40.78.202.64/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.78.234.40/29\",\r\n \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n
+ \ \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n \"40.79.146.24/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"40.79.162.24/29\",\r\n \"40.79.170.8/29\",\r\n
+ \ \"40.79.178.72/29\",\r\n \"40.79.186.0/29\",\r\n \"40.79.194.88/29\",\r\n
+ \ \"40.80.50.136/29\",\r\n \"40.112.242.152/29\",\r\n \"40.120.74.8/29\",\r\n
+ \ \"51.12.98.16/29\",\r\n \"51.12.202.16/29\",\r\n \"51.12.226.136/29\",\r\n
+ \ \"51.12.234.136/29\",\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.107.58.16/29\",\r\n \"51.107.154.16/29\",\r\n \"51.116.58.16/29\",\r\n
+ \ \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n \"51.116.250.136/29\",\r\n
+ \ \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n \"51.120.210.136/29\",\r\n
+ \ \"51.120.218.16/29\",\r\n \"51.140.146.192/29\",\r\n \"51.140.210.88/29\",\r\n
+ \ \"52.138.90.24/29\",\r\n \"52.138.226.72/29\",\r\n \"52.162.106.152/29\",\r\n
+ \ \"52.167.106.72/29\",\r\n \"52.182.138.200/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"52.231.146.88/29\",\r\n \"52.236.186.72/29\",\r\n \"52.246.154.136/29\",\r\n
+ \ \"65.52.250.8/29\",\r\n \"102.133.26.16/29\",\r\n \"102.133.122.136/29\",\r\n
+ \ \"102.133.154.16/29\",\r\n \"102.133.250.136/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"104.208.144.72/29\",\r\n \"104.211.81.128/29\",\r\n
+ \ \"104.211.146.72/29\",\r\n \"104.214.18.176/29\",\r\n \"191.233.50.8/29\",\r\n
+ \ \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1000:4:402::88/125\",\r\n
+ \ \"2603:1000:104:402::88/125\",\r\n \"2603:1000:104:802::88/125\",\r\n
+ \ \"2603:1000:104:c02::88/125\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\",\r\n
+ \ \"2603:1010:101:402::88/125\",\r\n \"2603:1010:304:402::88/125\",\r\n
+ \ \"2603:1010:404:402::88/125\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\",\r\n \"2603:1020:305:402::88/125\",\r\n
+ \ \"2603:1020:405:402::88/125\",\r\n \"2603:1020:605:402::88/125\",\r\n
+ \ \"2603:1020:705:402::88/125\",\r\n \"2603:1020:705:802::88/125\",\r\n
+ \ \"2603:1020:705:c02::88/125\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\",\r\n
+ \ \"2603:1020:905:402::88/125\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\",\r\n
+ \ \"2603:1020:b04:402::88/125\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\",\r\n
+ \ \"2603:1020:d04:402::88/125\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\",\r\n
+ \ \"2603:1020:f04:402::88/125\",\r\n \"2603:1020:1004:400::88/125\",\r\n
+ \ \"2603:1020:1004:400::3b0/125\",\r\n \"2603:1020:1004:800::148/125\",\r\n
+ \ \"2603:1020:1104:400::88/125\",\r\n \"2603:1030:f:400::888/125\",\r\n
+ \ \"2603:1030:10:402::88/125\",\r\n \"2603:1030:10:802::88/125\",\r\n
+ \ \"2603:1030:10:c02::88/125\",\r\n \"2603:1030:104:402::88/125\",\r\n
+ \ \"2603:1030:107:400::8/125\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\",\r\n
+ \ \"2603:1030:504:402::88/125\",\r\n \"2603:1030:504:402::3b0/125\",\r\n
+ \ \"2603:1030:504:802::148/125\",\r\n \"2603:1030:504:802::3e8/125\",\r\n
+ \ \"2603:1030:608:402::88/125\",\r\n \"2603:1030:807:402::88/125\",\r\n
+ \ \"2603:1030:807:802::88/125\",\r\n \"2603:1030:807:c02::88/125\",\r\n
+ \ \"2603:1030:a07:402::88/125\",\r\n \"2603:1030:b04:402::88/125\",\r\n
+ \ \"2603:1030:c06:400::888/125\",\r\n \"2603:1030:c06:802::88/125\",\r\n
+ \ \"2603:1030:c06:c02::88/125\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\",\r\n
+ \ \"2603:1030:1005:402::88/125\",\r\n \"2603:1040:5:402::88/125\",\r\n
+ \ \"2603:1040:5:802::88/125\",\r\n \"2603:1040:5:c02::88/125\",\r\n
+ \ \"2603:1040:207:402::88/125\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\",\r\n
+ \ \"2603:1040:606:402::88/125\",\r\n \"2603:1040:806:402::88/125\",\r\n
+ \ \"2603:1040:904:402::88/125\",\r\n \"2603:1040:904:802::88/125\",\r\n
+ \ \"2603:1040:904:c02::88/125\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\",\r\n
+ \ \"2603:1040:b04:402::88/125\",\r\n \"2603:1040:c06:402::88/125\",\r\n
+ \ \"2603:1040:d04:400::88/125\",\r\n \"2603:1040:d04:400::3b0/125\",\r\n
+ \ \"2603:1040:d04:800::148/125\",\r\n \"2603:1040:f05:402::88/125\",\r\n
+ \ \"2603:1040:f05:802::88/125\",\r\n \"2603:1040:f05:c02::88/125\",\r\n
+ \ \"2603:1040:1104:400::88/125\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\",\r\n
+ \ \"2603:1050:403:400::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.128/29\",\r\n \"40.79.162.24/29\",\r\n
+ \ \"40.79.170.8/29\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.72/29\",\r\n \"2603:1010:101:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.48/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"52.246.154.136/29\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.72/29\",\r\n \"2603:1030:1005:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.192.98.136/29\",\r\n \"40.80.50.136/29\",\r\n
+ \ \"104.211.81.128/29\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.208/29\",\r\n \"52.182.138.200/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"2603:1030:10:402::88/125\",\r\n
+ \ \"2603:1030:10:802::88/125\",\r\n \"2603:1030:10:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.64/29\",\r\n \"2603:1030:f:400::888/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.152/29\",\r\n \"2603:1040:207:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.71.10.208/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.70.146.80/29\",\r\n \"52.167.106.72/29\",\r\n
+ \ \"104.208.144.72/29\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n \"52.138.90.24/29\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n
+ \ \"40.79.146.24/29\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.72/29\",\r\n \"2603:1020:905:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.16/29\",\r\n \"2603:1020:d04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n
+ \ \"51.116.250.136/29\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.192/29\",\r\n \"40.79.186.0/29\",\r\n
+ \ \"40.79.194.88/29\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.56/29\",\r\n \"2603:1040:606:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.136/29\",\r\n \"20.194.66.8/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"2603:1040:f05:402::88/125\",\r\n \"2603:1040:f05:802::88/125\",\r\n
+ \ \"2603:1040:f05:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.88/29\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.152/29\",\r\n \"2603:1030:608:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.80/29\",\r\n \"13.74.107.72/29\",\r\n
+ \ \"52.138.226.72/29\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n
+ \ \"51.120.210.136/29\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.16/29\",\r\n \"2603:1020:f04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.136/29\",\r\n \"102.133.154.16/29\",\r\n
+ \ \"102.133.250.136/29\",\r\n \"2603:1000:104:402::88/125\",\r\n
+ \ \"2603:1000:104:802::88/125\",\r\n \"2603:1000:104:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.16/29\",\r\n \"2603:1000:4:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.122.136/29\",\r\n \"20.49.90.8/29\",\r\n \"104.214.18.176/29\",\r\n
+ \ \"2603:1030:807:402::88/125\",\r\n \"2603:1030:807:802::88/125\",\r\n
+ \ \"2603:1030:807:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.112/29\",\r\n \"23.98.82.104/29\",\r\n \"40.78.234.40/29\",\r\n
+ \ \"2603:1040:5:402::88/125\",\r\n \"2603:1040:5:802::88/125\",\r\n
+ \ \"2603:1040:5:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.72/29\",\r\n \"2603:1040:c06:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.16/29\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.16/29\",\r\n \"2603:1020:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.64/29\",\r\n \"2603:1040:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.8/29\",\r\n \"65.52.250.8/29\",\r\n \"2603:1040:904:402::88/125\",\r\n
+ \ \"2603:1040:904:802::88/125\",\r\n \"2603:1040:904:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.140.146.192/29\",\r\n \"2603:1020:705:402::88/125\",\r\n
+ \ \"2603:1020:705:802::88/125\",\r\n \"2603:1020:705:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.56.88/29\",\r\n \"2603:1020:405:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.88/29\",\r\n \"2603:1020:605:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.194.120/29\",\r\n \"2603:1030:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"52.236.186.72/29\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"104.211.146.72/29\",\r\n
+ \ \"2603:1040:806:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.112.242.152/29\",\r\n
+ \ \"2603:1030:a07:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS2\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n
+ \ \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n \"2603:1030:c06:400::888/125\",\r\n
+ \ \"2603:1030:c06:802::88/125\",\r\n \"2603:1030:c06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerBI\",\r\n
+ \ \"id\": \"PowerBI\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerBI\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.4/31\",\r\n \"13.73.248.48/28\",\r\n \"13.73.248.64/27\",\r\n
+ \ \"20.36.120.122/31\",\r\n \"20.36.120.124/30\",\r\n \"20.36.120.208/29\",\r\n
+ \ \"20.37.64.122/31\",\r\n \"20.37.64.124/30\",\r\n \"20.37.64.208/29\",\r\n
+ \ \"20.37.156.200/30\",\r\n \"20.37.156.240/28\",\r\n \"20.37.157.0/29\",\r\n
+ \ \"20.37.157.16/28\",\r\n \"20.37.157.32/27\",\r\n \"20.37.195.24/31\",\r\n
+ \ \"20.37.195.48/29\",\r\n \"20.37.195.64/28\",\r\n \"20.37.195.128/26\",\r\n
+ \ \"20.37.224.122/31\",\r\n \"20.37.224.124/30\",\r\n \"20.37.224.208/29\",\r\n
+ \ \"20.38.84.104/31\",\r\n \"20.38.84.128/25\",\r\n \"20.38.85.0/25\",\r\n
+ \ \"20.38.86.0/24\",\r\n \"20.38.136.70/31\",\r\n \"20.38.136.208/30\",\r\n
+ \ \"20.38.136.216/29\",\r\n \"20.39.11.26/31\",\r\n \"20.39.11.28/30\",\r\n
+ \ \"20.39.11.48/28\",\r\n \"20.41.4.104/31\",\r\n \"20.41.4.108/30\",\r\n
+ \ \"20.41.4.208/28\",\r\n \"20.41.4.224/27\",\r\n \"20.41.5.0/25\",\r\n
+ \ \"20.41.65.146/31\",\r\n \"20.41.65.148/30\",\r\n \"20.41.65.152/29\",\r\n
+ \ \"20.41.192.122/31\",\r\n \"20.41.192.124/30\",\r\n \"20.41.193.144/29\",\r\n
+ \ \"20.42.0.70/31\",\r\n \"20.42.4.240/29\",\r\n \"20.42.6.0/27\",\r\n
+ \ \"20.42.6.64/26\",\r\n \"20.42.131.32/31\",\r\n \"20.42.131.40/29\",\r\n
+ \ \"20.42.131.48/29\",\r\n \"20.42.131.128/26\",\r\n \"20.42.224.122/31\",\r\n
+ \ \"20.42.227.16/28\",\r\n \"20.42.227.32/29\",\r\n \"20.42.227.64/26\",\r\n
+ \ \"20.43.41.176/31\",\r\n \"20.43.41.184/29\",\r\n \"20.43.41.192/26\",\r\n
+ \ \"20.43.65.152/31\",\r\n \"20.43.65.176/29\",\r\n \"20.43.65.192/28\",\r\n
+ \ \"20.43.65.224/27\",\r\n \"20.43.130.192/31\",\r\n \"20.43.130.196/30\",\r\n
+ \ \"20.43.130.200/29\",\r\n \"20.43.130.208/28\",\r\n \"20.43.130.224/28\",\r\n
+ \ \"20.43.131.0/27\",\r\n \"20.43.131.64/26\",\r\n \"20.45.192.122/31\",\r\n
+ \ \"20.45.192.124/31\",\r\n \"20.45.192.208/30\",\r\n \"20.45.192.216/29\",\r\n
+ \ \"20.45.192.224/28\",\r\n \"20.48.196.232/29\",\r\n \"20.50.0.0/24\",\r\n
+ \ \"20.51.21.160/30\",\r\n \"20.65.133.80/29\",\r\n \"20.72.16.22/31\",\r\n
+ \ \"20.72.16.44/30\",\r\n \"20.72.20.32/29\",\r\n \"20.150.160.110/31\",\r\n
+ \ \"20.150.160.124/30\",\r\n \"20.150.161.144/29\",\r\n \"20.189.104.70/31\",\r\n
+ \ \"20.189.106.224/27\",\r\n \"20.189.108.0/27\",\r\n \"20.192.160.22/31\",\r\n
+ \ \"20.192.161.112/30\",\r\n \"20.192.161.120/29\",\r\n \"20.192.225.34/31\",\r\n
+ \ \"20.192.225.36/30\",\r\n \"20.192.225.192/29\",\r\n \"40.74.24.70/31\",\r\n
+ \ \"40.74.30.128/29\",\r\n \"40.74.30.160/27\",\r\n \"40.74.30.192/26\",\r\n
+ \ \"40.74.31.0/26\",\r\n \"40.80.56.122/31\",\r\n \"40.80.57.144/29\",\r\n
+ \ \"40.80.57.160/28\",\r\n \"40.80.168.122/31\",\r\n \"40.80.168.124/30\",\r\n
+ \ \"40.80.169.144/29\",\r\n \"40.80.184.70/31\",\r\n \"40.80.188.48/28\",\r\n
+ \ \"40.80.188.64/27\",\r\n \"40.80.188.128/25\",\r\n \"40.80.189.0/24\",\r\n
+ \ \"40.82.248.68/31\",\r\n \"40.82.253.96/28\",\r\n \"40.82.253.128/26\",\r\n
+ \ \"40.82.254.0/25\",\r\n \"40.89.16.122/31\",\r\n \"40.89.17.144/28\",\r\n
+ \ \"40.89.17.160/27\",\r\n \"40.119.8.76/30\",\r\n \"40.119.11.64/26\",\r\n
+ \ \"51.12.17.16/30\",\r\n \"51.12.17.24/29\",\r\n \"51.12.25.8/29\",\r\n
+ \ \"51.12.46.230/31\",\r\n \"51.12.47.28/30\",\r\n \"51.12.198.210/31\",\r\n
+ \ \"51.104.25.140/31\",\r\n \"51.104.25.152/30\",\r\n \"51.104.25.176/28\",\r\n
+ \ \"51.104.25.192/29\",\r\n \"51.104.27.0/26\",\r\n \"51.105.88.122/31\",\r\n
+ \ \"51.105.88.124/30\",\r\n \"51.105.88.208/28\",\r\n \"51.107.48.124/31\",\r\n
+ \ \"51.107.48.208/30\",\r\n \"51.107.48.216/29\",\r\n \"51.107.144.122/31\",\r\n
+ \ \"51.107.144.124/30\",\r\n \"51.107.144.208/29\",\r\n \"51.116.48.68/31\",\r\n
+ \ \"51.116.48.128/30\",\r\n \"51.116.48.136/29\",\r\n \"51.116.144.68/31\",\r\n
+ \ \"51.116.144.128/30\",\r\n \"51.116.144.136/29\",\r\n \"51.116.149.232/29\",\r\n
+ \ \"51.120.40.124/31\",\r\n \"51.120.40.208/30\",\r\n \"51.120.40.216/29\",\r\n
+ \ \"51.120.224.122/31\",\r\n \"51.120.224.124/30\",\r\n \"51.120.224.208/29\",\r\n
+ \ \"51.137.160.70/31\",\r\n \"51.137.161.160/27\",\r\n \"51.137.161.192/27\",\r\n
+ \ \"52.136.48.120/31\",\r\n \"52.136.48.124/30\",\r\n \"52.136.48.208/29\",\r\n
+ \ \"52.136.48.224/28\",\r\n \"52.140.105.144/28\",\r\n \"52.140.105.160/28\",\r\n
+ \ \"52.150.139.76/31\",\r\n \"52.150.139.96/30\",\r\n \"52.150.139.112/28\",\r\n
+ \ \"52.150.139.128/28\",\r\n \"52.150.139.160/27\",\r\n \"52.228.81.160/31\",\r\n
+ \ \"52.228.81.168/29\",\r\n \"52.228.81.176/28\",\r\n \"52.228.81.192/27\",\r\n
+ \ \"102.37.160.160/29\",\r\n \"102.133.56.98/31\",\r\n \"102.133.56.100/30\",\r\n
+ \ \"102.133.56.104/29\",\r\n \"102.133.216.104/31\",\r\n
+ \ \"102.133.216.108/30\",\r\n \"102.133.217.64/29\",\r\n
+ \ \"191.233.8.22/31\",\r\n \"191.233.10.32/30\",\r\n \"191.233.10.40/29\",\r\n
+ \ \"191.235.225.152/31\",\r\n \"191.235.225.156/30\",\r\n
+ \ \"191.235.225.176/28\",\r\n \"191.235.225.192/28\",\r\n
+ \ \"191.235.225.224/27\",\r\n \"191.238.72.128/28\",\r\n
+ \ \"2603:1000:4::620/123\",\r\n \"2603:1000:4::640/122\",\r\n
+ \ \"2603:1000:104::100/122\",\r\n \"2603:1000:104::140/123\",\r\n
+ \ \"2603:1000:104::320/123\",\r\n \"2603:1000:104::340/122\",\r\n
+ \ \"2603:1000:104:1::5e0/123\",\r\n \"2603:1000:104:1::600/122\",\r\n
+ \ \"2603:1010:6::/122\",\r\n \"2603:1010:6::40/123\",\r\n
+ \ \"2603:1010:6:1::5e0/123\",\r\n \"2603:1010:6:1::600/122\",\r\n
+ \ \"2603:1010:101::620/123\",\r\n \"2603:1010:101::640/122\",\r\n
+ \ \"2603:1010:304::620/123\",\r\n \"2603:1010:304::640/122\",\r\n
+ \ \"2603:1010:404::620/123\",\r\n \"2603:1010:404::640/122\",\r\n
+ \ \"2603:1020:5::/122\",\r\n \"2603:1020:5::40/123\",\r\n
+ \ \"2603:1020:5:1::5e0/123\",\r\n \"2603:1020:5:1::600/122\",\r\n
+ \ \"2603:1020:206::/122\",\r\n \"2603:1020:206::40/123\",\r\n
+ \ \"2603:1020:206:1::5e0/123\",\r\n \"2603:1020:206:1::600/122\",\r\n
+ \ \"2603:1020:305::620/123\",\r\n \"2603:1020:305::640/122\",\r\n
+ \ \"2603:1020:405::620/123\",\r\n \"2603:1020:405::640/122\",\r\n
+ \ \"2603:1020:605::620/123\",\r\n \"2603:1020:605::640/122\",\r\n
+ \ \"2603:1020:705::/122\",\r\n \"2603:1020:705::40/123\",\r\n
+ \ \"2603:1020:705:1::5e0/123\",\r\n \"2603:1020:705:1::600/122\",\r\n
+ \ \"2603:1020:805::/122\",\r\n \"2603:1020:805::40/123\",\r\n
+ \ \"2603:1020:805:1::5e0/123\",\r\n \"2603:1020:805:1::600/122\",\r\n
+ \ \"2603:1020:905::620/123\",\r\n \"2603:1020:905::640/122\",\r\n
+ \ \"2603:1020:a04::/122\",\r\n \"2603:1020:a04::40/123\",\r\n
+ \ \"2603:1020:a04:1::5e0/123\",\r\n \"2603:1020:a04:1::600/122\",\r\n
+ \ \"2603:1020:b04::620/123\",\r\n \"2603:1020:b04::640/122\",\r\n
+ \ \"2603:1020:c04::/122\",\r\n \"2603:1020:c04::40/123\",\r\n
+ \ \"2603:1020:c04:1::5e0/123\",\r\n \"2603:1020:c04:1::600/122\",\r\n
+ \ \"2603:1020:d04::620/123\",\r\n \"2603:1020:d04::640/122\",\r\n
+ \ \"2603:1020:e04::/122\",\r\n \"2603:1020:e04::40/123\",\r\n
+ \ \"2603:1020:e04:1::5e0/123\",\r\n \"2603:1020:e04:1::600/122\",\r\n
+ \ \"2603:1020:f04::620/123\",\r\n \"2603:1020:f04::640/122\",\r\n
+ \ \"2603:1020:1004::5e0/123\",\r\n \"2603:1020:1004::600/122\",\r\n
+ \ \"2603:1020:1004:1::/122\",\r\n \"2603:1020:1004:1::40/123\",\r\n
+ \ \"2603:1020:1104::6a0/123\",\r\n \"2603:1020:1104::6c0/122\",\r\n
+ \ \"2603:1030:f:1::620/123\",\r\n \"2603:1030:f:1::640/122\",\r\n
+ \ \"2603:1030:10::/122\",\r\n \"2603:1030:10::40/123\",\r\n
+ \ \"2603:1030:10:1::5e0/123\",\r\n \"2603:1030:10:1::600/122\",\r\n
+ \ \"2603:1030:104::/122\",\r\n \"2603:1030:104::40/123\",\r\n
+ \ \"2603:1030:104:1::5e0/123\",\r\n \"2603:1030:104:1::600/122\",\r\n
+ \ \"2603:1030:107::6c0/122\",\r\n \"2603:1030:107::700/123\",\r\n
+ \ \"2603:1030:210::/122\",\r\n \"2603:1030:210::40/123\",\r\n
+ \ \"2603:1030:210:1::5e0/123\",\r\n \"2603:1030:210:1::600/122\",\r\n
+ \ \"2603:1030:40b:1::5e0/123\",\r\n \"2603:1030:40b:1::600/122\",\r\n
+ \ \"2603:1030:40c::/122\",\r\n \"2603:1030:40c::40/123\",\r\n
+ \ \"2603:1030:40c:1::5e0/123\",\r\n \"2603:1030:40c:1::600/122\",\r\n
+ \ \"2603:1030:504::/122\",\r\n \"2603:1030:504::40/123\",\r\n
+ \ \"2603:1030:504:1::5e0/123\",\r\n \"2603:1030:504:1::600/122\",\r\n
+ \ \"2603:1030:608::620/123\",\r\n \"2603:1030:608::640/122\",\r\n
+ \ \"2603:1030:807::/122\",\r\n \"2603:1030:807::40/123\",\r\n
+ \ \"2603:1030:807:1::5e0/123\",\r\n \"2603:1030:807:1::600/122\",\r\n
+ \ \"2603:1030:a07::620/123\",\r\n \"2603:1030:a07::640/122\",\r\n
+ \ \"2603:1030:b04::620/123\",\r\n \"2603:1030:b04::640/122\",\r\n
+ \ \"2603:1030:c06:1::5e0/123\",\r\n \"2603:1030:c06:1::600/122\",\r\n
+ \ \"2603:1030:f05::/122\",\r\n \"2603:1030:f05::40/123\",\r\n
+ \ \"2603:1030:f05:1::5e0/123\",\r\n \"2603:1030:f05:1::600/122\",\r\n
+ \ \"2603:1030:1005::620/123\",\r\n \"2603:1030:1005::640/122\",\r\n
+ \ \"2603:1040:5::100/122\",\r\n \"2603:1040:5::140/123\",\r\n
+ \ \"2603:1040:5:1::5e0/123\",\r\n \"2603:1040:5:1::600/122\",\r\n
+ \ \"2603:1040:207::620/123\",\r\n \"2603:1040:207::640/122\",\r\n
+ \ \"2603:1040:407::/122\",\r\n \"2603:1040:407::40/123\",\r\n
+ \ \"2603:1040:407:1::5e0/123\",\r\n \"2603:1040:407:1::600/122\",\r\n
+ \ \"2603:1040:606::620/123\",\r\n \"2603:1040:606::640/122\",\r\n
+ \ \"2603:1040:806::620/123\",\r\n \"2603:1040:806::640/122\",\r\n
+ \ \"2603:1040:904::/122\",\r\n \"2603:1040:904::40/123\",\r\n
+ \ \"2603:1040:904:1::5e0/123\",\r\n \"2603:1040:904:1::600/122\",\r\n
+ \ \"2603:1040:a06::100/122\",\r\n \"2603:1040:a06::140/123\",\r\n
+ \ \"2603:1040:a06:1::5e0/123\",\r\n \"2603:1040:a06:1::600/122\",\r\n
+ \ \"2603:1040:b04::620/123\",\r\n \"2603:1040:b04::640/122\",\r\n
+ \ \"2603:1040:c06::620/123\",\r\n \"2603:1040:c06::640/122\",\r\n
+ \ \"2603:1040:d04::5e0/123\",\r\n \"2603:1040:d04::600/122\",\r\n
+ \ \"2603:1040:d04:1::/122\",\r\n \"2603:1040:d04:1::40/123\",\r\n
+ \ \"2603:1040:f05::/122\",\r\n \"2603:1040:f05::40/123\",\r\n
+ \ \"2603:1040:f05:1::5e0/123\",\r\n \"2603:1040:f05:1::600/122\",\r\n
+ \ \"2603:1040:1104::6a0/123\",\r\n \"2603:1040:1104::6c0/122\",\r\n
+ \ \"2603:1050:6::/122\",\r\n \"2603:1050:6::40/123\",\r\n
+ \ \"2603:1050:6:1::5e0/123\",\r\n \"2603:1050:6:1::600/122\",\r\n
+ \ \"2603:1050:403::5e0/123\",\r\n \"2603:1050:403::600/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline\",\r\n
+ \ \"id\": \"PowerQueryOnline\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.120.120/31\",\r\n \"20.37.64.120/31\",\r\n
+ \ \"20.37.152.70/31\",\r\n \"20.37.192.70/31\",\r\n \"20.37.224.120/31\",\r\n
+ \ \"20.38.80.70/31\",\r\n \"20.38.136.68/31\",\r\n \"20.39.11.24/31\",\r\n
+ \ \"20.41.0.68/30\",\r\n \"20.41.64.70/31\",\r\n \"20.41.65.144/31\",\r\n
+ \ \"20.41.192.120/31\",\r\n \"20.42.4.200/30\",\r\n \"20.42.128.70/31\",\r\n
+ \ \"20.42.129.184/29\",\r\n \"20.42.224.120/31\",\r\n \"20.43.40.70/31\",\r\n
+ \ \"20.43.64.70/31\",\r\n \"20.43.128.70/31\",\r\n \"20.45.112.120/31\",\r\n
+ \ \"20.45.192.120/31\",\r\n \"20.72.16.20/31\",\r\n \"20.150.160.108/31\",\r\n
+ \ \"20.189.104.68/31\",\r\n \"20.192.160.20/31\",\r\n \"20.192.225.32/31\",\r\n
+ \ \"40.67.48.120/31\",\r\n \"40.74.30.104/30\",\r\n \"40.80.56.120/31\",\r\n
+ \ \"40.80.168.120/31\",\r\n \"40.80.184.68/31\",\r\n \"40.82.253.72/29\",\r\n
+ \ \"40.89.16.120/31\",\r\n \"40.119.8.74/31\",\r\n \"51.12.46.228/31\",\r\n
+ \ \"51.12.198.208/31\",\r\n \"51.104.24.70/31\",\r\n \"51.105.80.120/31\",\r\n
+ \ \"51.105.88.120/31\",\r\n \"51.107.48.70/31\",\r\n \"51.107.144.120/31\",\r\n
+ \ \"51.116.48.70/31\",\r\n \"51.116.144.70/31\",\r\n \"51.120.40.70/31\",\r\n
+ \ \"51.120.224.120/31\",\r\n \"51.137.160.68/31\",\r\n \"51.143.192.120/31\",\r\n
+ \ \"52.140.104.70/31\",\r\n \"52.150.139.72/30\",\r\n \"52.228.80.70/31\",\r\n
+ \ \"102.133.56.96/31\",\r\n \"102.133.216.70/31\",\r\n \"191.233.8.20/31\",\r\n
+ \ \"191.235.224.70/31\",\r\n \"2603:1000:4::200/123\",\r\n
+ \ \"2603:1000:104:1::200/123\",\r\n \"2603:1010:6:1::200/123\",\r\n
+ \ \"2603:1010:101::200/123\",\r\n \"2603:1010:304::200/123\",\r\n
+ \ \"2603:1010:404::200/123\",\r\n \"2603:1020:5:1::200/123\",\r\n
+ \ \"2603:1020:206:1::200/123\",\r\n \"2603:1020:305::200/123\",\r\n
+ \ \"2603:1020:405::200/123\",\r\n \"2603:1020:605::200/123\",\r\n
+ \ \"2603:1020:705:1::200/123\",\r\n \"2603:1020:805:1::200/123\",\r\n
+ \ \"2603:1020:905::200/123\",\r\n \"2603:1020:a04:1::200/123\",\r\n
+ \ \"2603:1020:b04::200/123\",\r\n \"2603:1020:c04:1::200/123\",\r\n
+ \ \"2603:1020:d04::200/123\",\r\n \"2603:1020:e04:1::200/123\",\r\n
+ \ \"2603:1020:f04::200/123\",\r\n \"2603:1020:1004::200/123\",\r\n
+ \ \"2603:1020:1104::200/123\",\r\n \"2603:1030:f:1::200/123\",\r\n
+ \ \"2603:1030:10:1::200/123\",\r\n \"2603:1030:104:1::200/123\",\r\n
+ \ \"2603:1030:107::200/123\",\r\n \"2603:1030:210:1::200/123\",\r\n
+ \ \"2603:1030:40b:1::200/123\",\r\n \"2603:1030:40c:1::200/123\",\r\n
+ \ \"2603:1030:504:1::200/123\",\r\n \"2603:1030:608::200/123\",\r\n
+ \ \"2603:1030:807:1::200/123\",\r\n \"2603:1030:a07::200/123\",\r\n
+ \ \"2603:1030:b04::200/123\",\r\n \"2603:1030:c06:1::200/123\",\r\n
+ \ \"2603:1030:f05:1::200/123\",\r\n \"2603:1030:1005::200/123\",\r\n
+ \ \"2603:1040:5:1::200/123\",\r\n \"2603:1040:207::200/123\",\r\n
+ \ \"2603:1040:407:1::200/123\",\r\n \"2603:1040:606::200/123\",\r\n
+ \ \"2603:1040:806::200/123\",\r\n \"2603:1040:904:1::200/123\",\r\n
+ \ \"2603:1040:a06:1::200/123\",\r\n \"2603:1040:b04::200/123\",\r\n
+ \ \"2603:1040:c06::200/123\",\r\n \"2603:1040:d04::200/123\",\r\n
+ \ \"2603:1040:f05:1::200/123\",\r\n \"2603:1040:1104::200/123\",\r\n
+ \ \"2603:1050:6:1::200/123\",\r\n \"2603:1050:403::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.120/31\",\r\n \"2603:1010:304::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral2\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.120/31\",\r\n \"2603:1010:404::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.224.120/31\",\r\n \"2603:1010:101::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.CentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.152.70/31\",\r\n \"2603:1030:10:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.EastUS2\",\r\n
+ \ \"id\": \"PowerQueryOnline.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.0.68/30\",\r\n \"2603:1030:40c:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.FranceCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.40.70/31\",\r\n \"2603:1020:805:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.JapanWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.56.120/31\",\r\n \"2603:1040:606::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.KoreaSouth\",\r\n
+ \ \"id\": \"PowerQueryOnline.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.168.120/31\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.NorwayEast\",\r\n
+ \ \"id\": \"PowerQueryOnline.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.70/31\",\r\n \"2603:1020:e04:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SouthCentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.119.8.74/31\",\r\n \"2603:1030:807:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SwitzerlandWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.120/31\",\r\n \"2603:1020:b04::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.UKSouth2\",\r\n
+ \ \"id\": \"PowerQueryOnline.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.192.120/31\",\r\n \"2603:1020:405::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.WestUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"40.82.253.72/29\",\r\n \"2603:1030:a07::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus\",\r\n
+ \ \"id\": \"ServiceBus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.68.110.36/32\",\r\n
+ \ \"13.69.64.64/29\",\r\n \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n
+ \ \"13.69.227.64/29\",\r\n \"13.69.233.192/26\",\r\n \"13.70.72.16/29\",\r\n
+ \ \"13.70.114.0/26\",\r\n \"13.70.186.33/32\",\r\n \"13.71.114.157/32\",\r\n
+ \ \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n \"13.71.194.96/28\",\r\n
+ \ \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n \"13.75.34.128/28\",\r\n
+ \ \"13.76.141.36/32\",\r\n \"13.77.50.16/28\",\r\n \"13.78.94.187/32\",\r\n
+ \ \"13.78.106.80/29\",\r\n \"13.85.81.218/32\",\r\n \"13.87.35.8/32\",\r\n
+ \ \"13.87.56.64/28\",\r\n \"13.87.122.64/28\",\r\n \"13.88.10.93/32\",\r\n
+ \ \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n \"20.36.106.224/27\",\r\n
+ \ \"20.36.114.128/27\",\r\n \"20.36.144.0/26\",\r\n \"20.37.74.32/27\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.42.65.0/26\",\r\n \"20.42.68.0/26\",\r\n
+ \ \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n \"20.43.126.0/26\",\r\n
+ \ \"20.44.2.8/29\",\r\n \"20.44.13.0/26\",\r\n \"20.44.26.128/29\",\r\n
+ \ \"20.44.31.64/26\",\r\n \"20.45.122.128/29\",\r\n \"20.45.126.128/26\",\r\n
+ \ \"20.47.216.0/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n
+ \ \"20.50.201.0/26\",\r\n \"20.52.64.64/26\",\r\n \"20.72.27.144/29\",\r\n
+ \ \"20.72.27.160/28\",\r\n \"20.89.0.0/26\",\r\n \"20.150.160.216/29\",\r\n
+ \ \"20.150.170.8/29\",\r\n \"20.150.175.0/26\",\r\n \"20.150.178.128/29\",\r\n
+ \ \"20.150.182.64/28\",\r\n \"20.150.186.128/29\",\r\n \"20.150.189.48/28\",\r\n
+ \ \"20.150.189.64/26\",\r\n \"20.151.32.0/26\",\r\n \"20.192.32.240/28\",\r\n
+ \ \"20.192.98.128/29\",\r\n \"20.192.101.192/26\",\r\n \"20.192.160.40/29\",\r\n
+ \ \"20.192.225.56/29\",\r\n \"20.192.234.8/29\",\r\n \"20.193.204.104/29\",\r\n
+ \ \"20.193.204.112/28\",\r\n \"20.194.67.208/29\",\r\n \"20.194.68.128/28\",\r\n
+ \ \"20.194.128.128/26\",\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"23.97.120.37/32\",\r\n \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n
+ \ \"23.98.112.128/26\",\r\n \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n
+ \ \"40.67.58.8/29\",\r\n \"40.67.72.0/26\",\r\n \"40.68.127.68/32\",\r\n
+ \ \"40.69.106.16/28\",\r\n \"40.70.146.64/29\",\r\n \"40.70.151.128/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n \"40.75.34.16/29\",\r\n
+ \ \"40.78.194.16/28\",\r\n \"40.78.202.16/28\",\r\n \"40.78.226.192/29\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"40.78.242.144/29\",\r\n \"40.78.247.192/26\",\r\n
+ \ \"40.78.250.80/29\",\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"40.79.154.88/29\",\r\n \"40.79.162.16/29\",\r\n \"40.79.166.128/26\",\r\n
+ \ \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n \"40.79.178.16/28\",\r\n
+ \ \"40.79.186.64/27\",\r\n \"40.79.194.80/29\",\r\n \"40.80.50.128/29\",\r\n
+ \ \"40.86.91.130/32\",\r\n \"40.89.121.192/26\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"40.124.65.0/26\",\r\n \"51.11.192.64/26\",\r\n \"51.12.98.8/29\",\r\n
+ \ \"51.12.101.224/28\",\r\n \"51.12.202.8/29\",\r\n \"51.12.206.0/28\",\r\n
+ \ \"51.12.226.128/29\",\r\n \"51.12.234.128/29\",\r\n \"51.13.0.128/26\",\r\n
+ \ \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n \"51.105.74.128/29\",\r\n
+ \ \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n \"51.107.154.8/29\",\r\n
+ \ \"51.116.58.8/29\",\r\n \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n
+ \ \"51.116.246.128/26\",\r\n \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n
+ \ \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n \"51.120.109.208/28\",\r\n
+ \ \"51.120.210.128/29\",\r\n \"51.120.218.8/29\",\r\n \"51.132.192.128/26\",\r\n
+ \ \"51.140.43.12/32\",\r\n \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n
+ \ \"51.140.210.64/28\",\r\n \"51.141.1.129/32\",\r\n \"51.142.210.16/32\",\r\n
+ \ \"52.138.71.95/32\",\r\n \"52.138.90.16/29\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"52.161.17.198/32\",\r\n \"52.162.106.128/28\",\r\n \"52.167.106.64/29\",\r\n
+ \ \"52.167.109.128/26\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"52.172.220.188/32\",\r\n \"52.178.17.64/26\",\r\n
+ \ \"52.180.178.204/32\",\r\n \"52.182.138.192/29\",\r\n \"52.182.143.0/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"52.231.146.64/28\",\r\n \"52.232.119.191/32\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"52.242.36.0/32\",\r\n \"52.246.154.128/29\",\r\n
+ \ \"52.246.158.192/26\",\r\n \"65.52.219.186/32\",\r\n \"65.52.250.64/27\",\r\n
+ \ \"102.37.64.192/26\",\r\n \"102.37.72.0/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"104.208.16.64/29\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"104.211.81.16/29\",\r\n \"104.211.146.16/28\",\r\n
+ \ \"104.211.190.88/32\",\r\n \"104.214.18.160/29\",\r\n \"168.61.142.56/29\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.8.40/29\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"191.237.224.64/26\",\r\n
+ \ \"207.46.138.15/32\",\r\n \"2603:1000:4::220/123\",\r\n
+ \ \"2603:1000:4:402::170/125\",\r\n \"2603:1000:104:1::220/123\",\r\n
+ \ \"2603:1000:104:402::170/125\",\r\n \"2603:1000:104:802::150/125\",\r\n
+ \ \"2603:1000:104:c02::150/125\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\",\r\n \"2603:1010:404::220/123\",\r\n
+ \ \"2603:1010:404:402::170/125\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\",\r\n \"2603:1020:305::220/123\",\r\n
+ \ \"2603:1020:305:402::170/125\",\r\n \"2603:1020:405::220/123\",\r\n
+ \ \"2603:1020:405:402::170/125\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\",\r\n \"2603:1020:a04:1::220/123\",\r\n
+ \ \"2603:1020:a04:402::170/125\",\r\n \"2603:1020:a04:802::150/125\",\r\n
+ \ \"2603:1020:a04:c02::150/125\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\",\r\n \"2603:1020:1004::220/123\",\r\n
+ \ \"2603:1020:1004:800::e0/124\",\r\n \"2603:1020:1004:800::f0/125\",\r\n
+ \ \"2603:1020:1004:800::358/125\",\r\n \"2603:1020:1004:800::3c0/124\",\r\n
+ \ \"2603:1020:1004:800::3e8/125\",\r\n \"2603:1020:1004:c02::180/123\",\r\n
+ \ \"2603:1020:1004:c02::1a0/125\",\r\n \"2603:1020:1104:400::170/125\",\r\n
+ \ \"2603:1030:f:1::220/123\",\r\n \"2603:1030:f:400::970/125\",\r\n
+ \ \"2603:1030:10:1::220/123\",\r\n \"2603:1030:10:402::170/125\",\r\n
+ \ \"2603:1030:10:802::150/125\",\r\n \"2603:1030:10:c02::150/125\",\r\n
+ \ \"2603:1030:104:1::220/123\",\r\n \"2603:1030:104:402::170/125\",\r\n
+ \ \"2603:1030:107:400::d8/125\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\",\r\n \"2603:1030:504:1::220/123\",\r\n
+ \ \"2603:1030:504:802::e0/124\",\r\n \"2603:1030:504:802::f0/125\",\r\n
+ \ \"2603:1030:504:802::358/125\",\r\n \"2603:1030:608::220/123\",\r\n
+ \ \"2603:1030:608:402::170/125\",\r\n \"2603:1030:807:1::220/123\",\r\n
+ \ \"2603:1030:807:402::170/125\",\r\n \"2603:1030:807:802::150/125\",\r\n
+ \ \"2603:1030:807:c02::150/125\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\",\r\n \"2603:1030:b04::220/123\",\r\n
+ \ \"2603:1030:b04:402::170/125\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\",\r\n \"2603:1040:207::220/123\",\r\n
+ \ \"2603:1040:207:402::170/125\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\",\r\n \"2603:1040:606::220/123\",\r\n
+ \ \"2603:1040:606:402::170/125\",\r\n \"2603:1040:806::220/123\",\r\n
+ \ \"2603:1040:806:402::170/125\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\",\r\n \"2603:1040:c06::220/123\",\r\n
+ \ \"2603:1040:c06:402::170/125\",\r\n \"2603:1040:d04::220/123\",\r\n
+ \ \"2603:1040:d04:800::e0/124\",\r\n \"2603:1040:d04:800::f0/125\",\r\n
+ \ \"2603:1040:d04:800::358/125\",\r\n \"2603:1040:d04:800::3c0/125\",\r\n
+ \ \"2603:1040:d04:800::3e8/125\",\r\n \"2603:1040:f05:1::220/123\",\r\n
+ \ \"2603:1040:f05:402::170/125\",\r\n \"2603:1040:f05:802::150/125\",\r\n
+ \ \"2603:1040:f05:c02::150/125\",\r\n \"2603:1040:1104:400::170/125\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\",\r\n
+ \ \"2603:1050:403::220/123\",\r\n \"2603:1050:403:400::148/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaCentral\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.224/27\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaCentral2\",\r\n \"id\":
+ \"ServiceBus.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.36.114.128/27\",\r\n
+ \ \"2603:1010:404::220/123\",\r\n \"2603:1010:404:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaEast\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.16/29\",\r\n \"13.70.114.0/26\",\r\n \"40.79.162.16/29\",\r\n
+ \ \"40.79.166.128/26\",\r\n \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaSoutheast\",\r\n \"id\":
+ \"ServiceBus.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.70.186.33/32\",\r\n
+ \ \"13.77.50.16/28\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.BrazilSouth\",\r\n \"id\": \"ServiceBus.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.CanadaCentral\",\r\n
+ \ \"id\": \"ServiceBus.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.151.32.0/26\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.246.154.128/29\",\r\n \"52.246.158.192/26\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CanadaEast\",\r\n \"id\": \"ServiceBus.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.16/28\",\r\n \"52.242.36.0/32\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralIndia\",\r\n \"id\": \"ServiceBus.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.126.0/26\",\r\n \"20.192.98.128/29\",\r\n
+ \ \"20.192.101.192/26\",\r\n \"40.80.50.128/29\",\r\n \"52.172.220.188/32\",\r\n
+ \ \"104.211.81.16/29\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUS\",\r\n \"id\": \"ServiceBus.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n
+ \ \"20.44.13.0/26\",\r\n \"40.86.91.130/32\",\r\n \"52.182.138.192/29\",\r\n
+ \ \"52.182.143.0/26\",\r\n \"104.208.16.64/29\",\r\n \"2603:1030:10:1::220/123\",\r\n
+ \ \"2603:1030:10:402::170/125\",\r\n \"2603:1030:10:802::150/125\",\r\n
+ \ \"2603:1030:10:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUSEUAP\",\r\n \"id\": \"ServiceBus.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.16/28\",\r\n \"52.180.178.204/32\",\r\n
+ \ \"168.61.142.56/29\",\r\n \"2603:1030:f:1::220/123\",\r\n
+ \ \"2603:1030:f:400::970/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastAsia\",\r\n \"id\": \"ServiceBus.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.128/28\",\r\n \"207.46.138.15/32\",\r\n
+ \ \"2603:1040:207::220/123\",\r\n \"2603:1040:207:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.EastUS\",\r\n
+ \ \"id\": \"ServiceBus.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.0/26\",\r\n
+ \ \"20.42.68.0/26\",\r\n \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.78.226.192/29\",\r\n \"40.79.154.88/29\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2\",\r\n \"id\": \"ServiceBus.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.110.36/32\",\r\n \"20.36.144.0/26\",\r\n \"40.70.146.64/29\",\r\n
+ \ \"40.70.151.128/26\",\r\n \"52.167.106.64/29\",\r\n \"52.167.109.128/26\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2EUAP\",\r\n \"id\": \"ServiceBus.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.216.0/26\",\r\n \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n
+ \ \"40.75.34.16/29\",\r\n \"40.89.121.192/26\",\r\n \"52.138.71.95/32\",\r\n
+ \ \"52.138.90.16/29\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceCentral\",\r\n \"id\": \"ServiceBus.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"51.11.192.64/26\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceSouth\",\r\n \"id\": \"ServiceBus.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.16/28\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyNorth\",\r\n \"id\": \"ServiceBus.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.8/29\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyWestCentral\",\r\n \"id\":
+ \"ServiceBus.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.64/26\",\r\n
+ \ \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n \"51.116.246.128/26\",\r\n
+ \ \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanEast\",\r\n \"id\": \"ServiceBus.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.94.187/32\",\r\n \"13.78.106.80/29\",\r\n
+ \ \"20.89.0.0/26\",\r\n \"20.194.128.128/26\",\r\n \"40.79.186.64/27\",\r\n
+ \ \"40.79.194.80/29\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanWest\",\r\n \"id\": \"ServiceBus.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"2603:1040:606::220/123\",\r\n \"2603:1040:606:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaCentral\",\r\n
+ \ \"id\": \"ServiceBus.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.128/29\",\r\n \"20.44.31.64/26\",\r\n \"20.194.67.208/29\",\r\n
+ \ \"20.194.68.128/28\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"2603:1040:f05:1::220/123\",\r\n \"2603:1040:f05:402::170/125\",\r\n
+ \ \"2603:1040:f05:802::150/125\",\r\n \"2603:1040:f05:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaSouth\",\r\n
+ \ \"id\": \"ServiceBus.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"52.231.146.64/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.128/28\",\r\n \"65.52.219.186/32\",\r\n
+ \ \"2603:1030:608::220/123\",\r\n \"2603:1030:608:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthEurope\",\r\n
+ \ \"id\": \"ServiceBus.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.64/29\",\r\n
+ \ \"13.69.233.192/26\",\r\n \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n
+ \ \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayEast\",\r\n \"id\": \"ServiceBus.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.128/26\",\r\n \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n
+ \ \"51.120.109.208/28\",\r\n \"51.120.210.128/29\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayWest\",\r\n \"id\": \"ServiceBus.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.218.8/29\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthAfricaNorth\",\r\n \"id\":
+ \"ServiceBus.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"102.37.72.0/26\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"2603:1000:104:1::220/123\",\r\n \"2603:1000:104:402::170/125\",\r\n
+ \ \"2603:1000:104:802::150/125\",\r\n \"2603:1000:104:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthAfricaWest\",\r\n
+ \ \"id\": \"ServiceBus.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"102.37.64.192/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"2603:1000:4::220/123\",\r\n \"2603:1000:4:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.85.81.218/32\",\r\n \"20.45.122.128/29\",\r\n
+ \ \"20.45.126.128/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"40.124.65.0/26\",\r\n \"104.214.18.160/29\",\r\n
+ \ \"2603:1030:807:1::220/123\",\r\n \"2603:1030:807:402::170/125\",\r\n
+ \ \"2603:1030:807:802::150/125\",\r\n \"2603:1030:807:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SoutheastAsia\",\r\n
+ \ \"id\": \"ServiceBus.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.76.141.36/32\",\r\n
+ \ \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n \"23.98.112.128/26\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthIndia\",\r\n \"id\": \"ServiceBus.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.114.157/32\",\r\n \"40.78.194.16/28\",\r\n
+ \ \"2603:1040:c06::220/123\",\r\n \"2603:1040:c06:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n
+ \ \"2603:1020:a04:1::220/123\",\r\n \"2603:1020:a04:402::170/125\",\r\n
+ \ \"2603:1020:a04:802::150/125\",\r\n \"2603:1020:a04:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandWest\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.8/29\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAECentral\",\r\n \"id\": \"ServiceBus.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.32/27\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAENorth\",\r\n \"id\": \"ServiceBus.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"65.52.250.64/27\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth\",\r\n \"id\": \"ServiceBus.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n
+ \ \"51.105.74.128/29\",\r\n \"51.132.192.128/26\",\r\n \"51.140.43.12/32\",\r\n
+ \ \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth2\",\r\n \"id\": \"ServiceBus.UKSouth2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.35.8/32\",\r\n \"13.87.56.64/28\",\r\n
+ \ \"2603:1020:405::220/123\",\r\n \"2603:1020:405:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.UKWest\",\r\n
+ \ \"id\": \"ServiceBus.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.64/28\",\r\n
+ \ \"51.141.1.129/32\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestCentralUS\",\r\n \"id\": \"ServiceBus.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.96/28\",\r\n \"52.161.17.198/32\",\r\n
+ \ \"2603:1030:b04::220/123\",\r\n \"2603:1030:b04:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestEurope\",\r\n
+ \ \"id\": \"ServiceBus.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.64/29\",\r\n
+ \ \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n \"20.50.201.0/26\",\r\n
+ \ \"40.68.127.68/32\",\r\n \"52.178.17.64/26\",\r\n \"52.232.119.191/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestIndia\",\r\n \"id\": \"ServiceBus.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.16/28\",\r\n \"104.211.190.88/32\",\r\n
+ \ \"2603:1040:806::220/123\",\r\n \"2603:1040:806:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestUS\",\r\n
+ \ \"id\": \"ServiceBus.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.10.93/32\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestUS2\",\r\n \"id\": \"ServiceBus.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n \"40.78.242.144/29\",\r\n
+ \ \"40.78.247.192/26\",\r\n \"40.78.250.80/29\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric\",\r\n \"id\": \"ServiceFabric\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.152/29\",\r\n \"13.66.167.194/32\",\r\n
+ \ \"13.66.226.151/32\",\r\n \"13.67.9.136/29\",\r\n \"13.69.64.232/29\",\r\n
+ \ \"13.69.109.136/30\",\r\n \"13.69.227.232/29\",\r\n \"13.70.72.216/29\",\r\n
+ \ \"13.70.78.172/30\",\r\n \"13.71.170.224/29\",\r\n \"13.71.170.248/29\",\r\n
+ \ \"13.71.195.48/29\",\r\n \"13.74.80.74/32\",\r\n \"13.74.111.144/30\",\r\n
+ \ \"13.75.36.80/29\",\r\n \"13.75.41.166/32\",\r\n \"13.75.42.35/32\",\r\n
+ \ \"13.77.52.0/29\",\r\n \"13.78.108.24/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"13.87.32.204/32\",\r\n \"13.87.56.240/29\",\r\n
+ \ \"13.87.98.166/32\",\r\n \"13.87.122.240/29\",\r\n \"13.89.171.104/29\",\r\n
+ \ \"13.91.7.211/32\",\r\n \"13.91.252.58/32\",\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.36.40.70/32\",\r\n \"20.36.72.79/32\",\r\n \"20.36.107.16/29\",\r\n
+ \ \"20.36.114.192/29\",\r\n \"20.37.74.80/29\",\r\n \"20.38.149.192/30\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"20.44.3.24/29\",\r\n
+ \ \"20.44.10.124/30\",\r\n \"20.44.19.0/30\",\r\n \"20.44.29.52/30\",\r\n
+ \ \"20.45.79.240/32\",\r\n \"20.45.123.244/30\",\r\n \"20.49.82.4/30\",\r\n
+ \ \"20.49.90.4/30\",\r\n \"20.72.26.4/30\",\r\n \"20.150.171.72/29\",\r\n
+ \ \"20.150.181.160/30\",\r\n \"20.150.189.28/30\",\r\n \"20.150.225.4/30\",\r\n
+ \ \"20.184.2.84/32\",\r\n \"20.192.32.224/30\",\r\n \"20.192.101.28/30\",\r\n
+ \ \"20.192.235.0/29\",\r\n \"20.193.202.24/29\",\r\n \"20.193.204.100/30\",\r\n
+ \ \"20.194.66.4/30\",\r\n \"23.96.200.228/32\",\r\n \"23.96.210.6/32\",\r\n
+ \ \"23.96.214.100/32\",\r\n \"23.98.86.60/30\",\r\n \"23.99.11.219/32\",\r\n
+ \ \"23.100.199.230/32\",\r\n \"40.67.59.72/29\",\r\n \"40.69.107.0/29\",\r\n
+ \ \"40.69.166.6/32\",\r\n \"40.70.146.232/29\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.74.100.240/29\",\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"40.78.195.0/29\",\r\n
+ \ \"40.78.202.120/29\",\r\n \"40.78.238.60/30\",\r\n \"40.78.245.192/30\",\r\n
+ \ \"40.78.253.64/30\",\r\n \"40.79.114.102/32\",\r\n \"40.79.130.232/29\",\r\n
+ \ \"40.79.139.192/30\",\r\n \"40.79.148.80/30\",\r\n \"40.79.165.80/29\",\r\n
+ \ \"40.79.171.228/30\",\r\n \"40.79.173.0/30\",\r\n \"40.79.179.0/29\",\r\n
+ \ \"40.79.189.60/30\",\r\n \"40.79.197.36/30\",\r\n \"40.80.53.4/30\",\r\n
+ \ \"40.84.62.189/32\",\r\n \"40.84.133.64/32\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"40.86.230.174/32\",\r\n \"40.89.168.15/32\",\r\n \"40.112.243.176/29\",\r\n
+ \ \"40.113.23.157/32\",\r\n \"40.113.88.37/32\",\r\n \"40.115.64.123/32\",\r\n
+ \ \"40.115.113.228/32\",\r\n \"40.120.74.4/30\",\r\n \"40.123.204.26/32\",\r\n
+ \ \"51.12.99.64/29\",\r\n \"51.12.101.168/30\",\r\n \"51.12.203.64/29\",\r\n
+ \ \"51.12.204.240/30\",\r\n \"51.105.69.84/30\",\r\n \"51.105.77.52/30\",\r\n
+ \ \"51.107.59.40/29\",\r\n \"51.107.76.20/32\",\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"51.116.59.40/29\",\r\n \"51.116.155.104/29\",\r\n
+ \ \"51.116.208.26/32\",\r\n \"51.116.232.27/32\",\r\n \"51.116.245.160/30\",\r\n
+ \ \"51.116.253.128/30\",\r\n \"51.120.68.23/32\",\r\n \"51.120.98.240/29\",\r\n
+ \ \"51.120.109.28/30\",\r\n \"51.120.164.23/32\",\r\n \"51.120.219.72/29\",\r\n
+ \ \"51.140.148.24/29\",\r\n \"51.140.184.27/32\",\r\n \"51.140.211.16/29\",\r\n
+ \ \"51.141.8.30/32\",\r\n \"52.136.136.27/32\",\r\n \"52.138.70.82/32\",\r\n
+ \ \"52.138.92.168/30\",\r\n \"52.138.143.55/32\",\r\n \"52.138.229.68/30\",\r\n
+ \ \"52.143.136.15/32\",\r\n \"52.143.184.15/32\",\r\n \"52.151.38.144/32\",\r\n
+ \ \"52.158.236.247/32\",\r\n \"52.162.107.176/29\",\r\n \"52.163.90.165/32\",\r\n
+ \ \"52.163.94.113/32\",\r\n \"52.165.37.188/32\",\r\n \"52.167.0.27/32\",\r\n
+ \ \"52.167.109.68/30\",\r\n \"52.167.227.220/32\",\r\n \"52.174.163.204/32\",\r\n
+ \ \"52.174.164.254/32\",\r\n \"52.178.30.193/32\",\r\n \"52.180.176.84/32\",\r\n
+ \ \"52.182.141.56/30\",\r\n \"52.182.172.232/32\",\r\n \"52.225.184.94/32\",\r\n
+ \ \"52.225.185.159/32\",\r\n \"52.230.8.61/32\",\r\n \"52.231.18.232/29\",\r\n
+ \ \"52.231.32.81/32\",\r\n \"52.231.147.16/29\",\r\n \"52.231.200.124/32\",\r\n
+ \ \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n \"52.246.157.8/30\",\r\n
+ \ \"65.52.250.224/29\",\r\n \"102.37.48.12/32\",\r\n \"102.133.27.24/29\",\r\n
+ \ \"102.133.72.31/32\",\r\n \"102.133.155.24/29\",\r\n \"102.133.160.28/32\",\r\n
+ \ \"102.133.235.169/32\",\r\n \"102.133.251.216/30\",\r\n
+ \ \"104.41.9.53/32\",\r\n \"104.41.187.29/32\",\r\n \"104.42.181.121/32\",\r\n
+ \ \"104.43.213.84/32\",\r\n \"104.45.19.250/32\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"104.210.107.69/32\",\r\n \"104.211.81.216/29\",\r\n \"104.211.103.201/32\",\r\n
+ \ \"104.211.146.240/29\",\r\n \"104.211.164.163/32\",\r\n
+ \ \"104.211.228.68/32\",\r\n \"104.214.19.72/29\",\r\n \"104.215.78.146/32\",\r\n
+ \ \"137.116.252.9/32\",\r\n \"137.135.33.49/32\",\r\n \"168.61.142.48/30\",\r\n
+ \ \"191.233.50.24/29\",\r\n \"191.233.203.216/29\",\r\n \"191.234.149.32/30\",\r\n
+ \ \"191.234.157.128/30\",\r\n \"207.46.234.62/32\",\r\n \"2603:1000:4:402::98/125\",\r\n
+ \ \"2603:1000:104:402::98/125\",\r\n \"2603:1000:104:802::98/125\",\r\n
+ \ \"2603:1000:104:c02::98/125\",\r\n \"2603:1010:6:402::98/125\",\r\n
+ \ \"2603:1010:6:802::98/125\",\r\n \"2603:1010:6:c02::98/125\",\r\n
+ \ \"2603:1010:101:402::98/125\",\r\n \"2603:1010:304:402::98/125\",\r\n
+ \ \"2603:1010:404:402::98/125\",\r\n \"2603:1020:5:402::98/125\",\r\n
+ \ \"2603:1020:5:802::98/125\",\r\n \"2603:1020:5:c02::98/125\",\r\n
+ \ \"2603:1020:206:402::98/125\",\r\n \"2603:1020:206:802::98/125\",\r\n
+ \ \"2603:1020:206:c02::98/125\",\r\n \"2603:1020:305:402::98/125\",\r\n
+ \ \"2603:1020:405:402::98/125\",\r\n \"2603:1020:605:402::98/125\",\r\n
+ \ \"2603:1020:705:402::98/125\",\r\n \"2603:1020:705:802::98/125\",\r\n
+ \ \"2603:1020:705:c02::98/125\",\r\n \"2603:1020:805:402::98/125\",\r\n
+ \ \"2603:1020:805:802::98/125\",\r\n \"2603:1020:805:c02::98/125\",\r\n
+ \ \"2603:1020:905:402::98/125\",\r\n \"2603:1020:a04:402::98/125\",\r\n
+ \ \"2603:1020:a04:802::98/125\",\r\n \"2603:1020:a04:c02::98/125\",\r\n
+ \ \"2603:1020:b04:402::98/125\",\r\n \"2603:1020:c04:402::98/125\",\r\n
+ \ \"2603:1020:c04:802::98/125\",\r\n \"2603:1020:c04:c02::98/125\",\r\n
+ \ \"2603:1020:d04:402::98/125\",\r\n \"2603:1020:e04:402::98/125\",\r\n
+ \ \"2603:1020:e04:802::98/125\",\r\n \"2603:1020:e04:c02::98/125\",\r\n
+ \ \"2603:1020:f04:402::98/125\",\r\n \"2603:1020:1004:400::98/125\",\r\n
+ \ \"2603:1020:1004:800::158/125\",\r\n \"2603:1020:1004:800::350/125\",\r\n
+ \ \"2603:1020:1104:400::98/125\",\r\n \"2603:1030:f:400::898/125\",\r\n
+ \ \"2603:1030:10:402::98/125\",\r\n \"2603:1030:10:802::98/125\",\r\n
+ \ \"2603:1030:10:c02::98/125\",\r\n \"2603:1030:104:402::98/125\",\r\n
+ \ \"2603:1030:107:400::d0/125\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\",\r\n
+ \ \"2603:1030:40b:400::898/125\",\r\n \"2603:1030:40b:800::98/125\",\r\n
+ \ \"2603:1030:40b:c00::98/125\",\r\n \"2603:1030:40c:402::98/125\",\r\n
+ \ \"2603:1030:40c:802::98/125\",\r\n \"2603:1030:40c:c02::98/125\",\r\n
+ \ \"2603:1030:504:402::98/125\",\r\n \"2603:1030:504:802::c8/125\",\r\n
+ \ \"2603:1030:504:802::158/125\",\r\n \"2603:1030:504:802::350/125\",\r\n
+ \ \"2603:1030:608:402::98/125\",\r\n \"2603:1030:807:402::98/125\",\r\n
+ \ \"2603:1030:807:802::98/125\",\r\n \"2603:1030:807:c02::98/125\",\r\n
+ \ \"2603:1030:a07:402::98/125\",\r\n \"2603:1030:b04:402::98/125\",\r\n
+ \ \"2603:1030:c06:400::898/125\",\r\n \"2603:1030:c06:802::98/125\",\r\n
+ \ \"2603:1030:c06:c02::98/125\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\",\r\n
+ \ \"2603:1030:1005:402::98/125\",\r\n \"2603:1040:5:402::98/125\",\r\n
+ \ \"2603:1040:5:802::98/125\",\r\n \"2603:1040:5:c02::98/125\",\r\n
+ \ \"2603:1040:207:402::98/125\",\r\n \"2603:1040:407:402::98/125\",\r\n
+ \ \"2603:1040:407:802::98/125\",\r\n \"2603:1040:407:c02::98/125\",\r\n
+ \ \"2603:1040:606:402::98/125\",\r\n \"2603:1040:806:402::98/125\",\r\n
+ \ \"2603:1040:904:402::98/125\",\r\n \"2603:1040:904:802::98/125\",\r\n
+ \ \"2603:1040:904:c02::98/125\",\r\n \"2603:1040:a06:402::98/125\",\r\n
+ \ \"2603:1040:a06:802::98/125\",\r\n \"2603:1040:a06:c02::98/125\",\r\n
+ \ \"2603:1040:b04:402::98/125\",\r\n \"2603:1040:c06:402::98/125\",\r\n
+ \ \"2603:1040:d04:400::98/125\",\r\n \"2603:1040:d04:800::158/125\",\r\n
+ \ \"2603:1040:d04:800::350/125\",\r\n \"2603:1040:f05:402::98/125\",\r\n
+ \ \"2603:1040:f05:802::98/125\",\r\n \"2603:1040:f05:c02::98/125\",\r\n
+ \ \"2603:1040:1104:400::98/125\",\r\n \"2603:1050:6:402::98/125\",\r\n
+ \ \"2603:1050:6:802::98/125\",\r\n \"2603:1050:6:c02::98/125\",\r\n
+ \ \"2603:1050:403:400::140/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.CanadaCentral\",\r\n \"id\":
+ \"ServiceFabric.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.71.170.224/29\",\r\n
+ \ \"13.71.170.248/29\",\r\n \"20.38.149.192/30\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"52.246.157.8/30\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS2EUAP\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.79.114.102/32\",\r\n \"52.138.70.82/32\",\r\n \"52.138.92.168/30\",\r\n
+ \ \"52.225.184.94/32\",\r\n \"52.225.185.159/32\",\r\n \"2603:1030:40b:400::898/125\",\r\n
+ \ \"2603:1030:40b:800::98/125\",\r\n \"2603:1030:40b:c00::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.FranceSouth\",\r\n
+ \ \"id\": \"ServiceFabric.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.0/29\",\r\n \"52.136.136.27/32\",\r\n
+ \ \"2603:1020:905:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.JapanWest\",\r\n \"id\": \"ServiceFabric.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.240/29\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"2603:1040:606:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.SwitzerlandWest\",\r\n \"id\":
+ \"ServiceFabric.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"2603:1020:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.UAECentral\",\r\n
+ \ \"id\": \"ServiceFabric.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.80/29\",\r\n \"20.45.79.240/32\",\r\n \"2603:1040:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.WestCentralUS\",\r\n
+ \ \"id\": \"ServiceFabric.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.48/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"2603:1030:b04:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.WestEurope\",\r\n \"id\": \"ServiceFabric.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.64.232/29\",\r\n \"13.69.109.136/30\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"52.174.163.204/32\",\r\n \"52.174.164.254/32\",\r\n
+ \ \"52.178.30.193/32\",\r\n \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n
+ \ \"104.45.19.250/32\",\r\n \"2603:1020:206:402::98/125\",\r\n
+ \ \"2603:1020:206:802::98/125\",\r\n \"2603:1020:206:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql\",\r\n \"id\":
+ \"Sql\",\r\n \"properties\": {\r\n \"changeNumber\": \"3\",\r\n
+ \ \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.66.136.0/26\",\r\n \"13.66.136.192/29\",\r\n
+ \ \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n \"13.66.229.222/32\",\r\n
+ \ \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n \"13.66.230.64/32\",\r\n
+ \ \"13.66.230.103/32\",\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n
+ \ \"13.67.17.0/26\",\r\n \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n
+ \ \"13.67.59.217/32\",\r\n \"13.67.215.62/32\",\r\n \"13.68.22.44/32\",\r\n
+ \ \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.70.148.251/32\",\r\n \"13.70.155.163/32\",\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.73.109.251/32\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n
+ \ \"13.77.7.78/32\",\r\n \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n
+ \ \"13.77.49.32/29\",\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n
+ \ \"13.78.104.32/29\",\r\n \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n
+ \ \"13.78.144.57/32\",\r\n \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n
+ \ \"13.78.151.189/32\",\r\n \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n
+ \ \"13.78.178.151/32\",\r\n \"13.78.248.32/27\",\r\n \"13.84.223.76/32\",\r\n
+ \ \"13.85.65.48/32\",\r\n \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n
+ \ \"13.86.216.0/25\",\r\n \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n
+ \ \"13.86.217.0/25\",\r\n \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n
+ \ \"13.86.217.224/29\",\r\n \"13.87.16.64/27\",\r\n \"13.87.17.0/27\",\r\n
+ \ \"13.87.33.234/32\",\r\n \"13.87.34.7/32\",\r\n \"13.87.34.19/32\",\r\n
+ \ \"13.87.38.138/32\",\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"13.89.36.110/32\",\r\n \"13.89.37.61/32\",\r\n
+ \ \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n \"13.89.168.0/26\",\r\n
+ \ \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n
+ \ \"20.36.105.32/29\",\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n
+ \ \"20.36.113.32/29\",\r\n \"20.37.71.64/26\",\r\n \"20.37.71.128/26\",\r\n
+ \ \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n \"20.37.73.64/27\",\r\n
+ \ \"20.37.73.96/29\",\r\n \"20.38.143.64/26\",\r\n \"20.38.143.128/26\",\r\n
+ \ \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n \"20.38.145.0/27\",\r\n
+ \ \"20.38.152.24/29\",\r\n \"20.40.228.128/25\",\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.43.47.192/26\",\r\n \"20.44.0.0/27\",\r\n
+ \ \"20.44.1.0/27\",\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n
+ \ \"20.44.25.0/27\",\r\n \"20.45.120.0/27\",\r\n \"20.45.121.0/27\",\r\n
+ \ \"20.45.121.32/29\",\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n
+ \ \"20.46.11.128/26\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"20.49.80.0/27\",\r\n \"20.49.80.32/29\",\r\n
+ \ \"20.49.81.0/27\",\r\n \"20.49.88.0/27\",\r\n \"20.49.88.32/29\",\r\n
+ \ \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"20.51.17.160/27\",\r\n \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n
+ \ \"20.53.46.128/25\",\r\n \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n
+ \ \"20.53.48.192/26\",\r\n \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n
+ \ \"20.53.56.128/26\",\r\n \"20.58.66.128/25\",\r\n \"20.61.99.192/26\",\r\n
+ \ \"20.61.102.0/26\",\r\n \"20.62.58.128/25\",\r\n \"20.62.132.160/27\",\r\n
+ \ \"20.62.132.192/27\",\r\n \"20.62.133.0/26\",\r\n \"20.65.132.160/27\",\r\n
+ \ \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n \"20.66.3.64/26\",\r\n
+ \ \"20.66.3.128/26\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"20.72.21.224/27\",\r\n \"20.72.24.64/27\",\r\n
+ \ \"20.72.24.128/27\",\r\n \"20.72.25.128/27\",\r\n \"20.88.64.0/27\",\r\n
+ \ \"20.150.168.0/27\",\r\n \"20.150.168.32/29\",\r\n \"20.150.169.0/27\",\r\n
+ \ \"20.150.176.0/27\",\r\n \"20.150.176.32/29\",\r\n \"20.150.177.0/27\",\r\n
+ \ \"20.150.184.0/27\",\r\n \"20.150.184.32/29\",\r\n \"20.150.185.0/27\",\r\n
+ \ \"20.150.241.128/25\",\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"20.191.165.160/27\",\r\n \"20.191.165.192/27\",\r\n
+ \ \"20.191.166.0/26\",\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.48.32/27\",\r\n \"20.192.48.64/27\",\r\n
+ \ \"20.192.48.128/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"20.192.167.224/27\",\r\n \"20.192.232.0/27\",\r\n
+ \ \"20.192.233.0/27\",\r\n \"20.192.233.32/29\",\r\n \"20.193.192.0/27\",\r\n
+ \ \"20.193.192.64/26\",\r\n \"20.193.200.0/27\",\r\n \"20.193.200.32/29\",\r\n
+ \ \"20.193.201.0/27\",\r\n \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n
+ \ \"20.194.65.0/27\",\r\n \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n
+ \ \"20.195.65.32/27\",\r\n \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"20.195.146.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"23.96.178.199/32\",\r\n \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n
+ \ \"23.96.205.215/32\",\r\n \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n
+ \ \"23.96.247.75/32\",\r\n \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.98.55.75/32\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.98.162.75/32\",\r\n
+ \ \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n \"23.98.170.75/32\",\r\n
+ \ \"23.98.170.76/31\",\r\n \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n
+ \ \"23.99.10.185/32\",\r\n \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n
+ \ \"23.99.34.78/32\",\r\n \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n
+ \ \"23.99.57.14/32\",\r\n \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n
+ \ \"23.99.90.75/32\",\r\n \"23.99.91.130/32\",\r\n \"23.99.102.124/32\",\r\n
+ \ \"23.99.118.196/32\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"23.101.64.10/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"23.102.16.130/32\",\r\n \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n
+ \ \"23.102.52.155/32\",\r\n \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n
+ \ \"23.102.69.95/32\",\r\n \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n
+ \ \"23.102.172.251/32\",\r\n \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n
+ \ \"23.102.179.187/32\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.67.53.0/25\",\r\n \"40.67.56.0/27\",\r\n \"40.67.56.32/29\",\r\n
+ \ \"40.67.57.0/27\",\r\n \"40.68.37.158/32\",\r\n \"40.68.215.206/32\",\r\n
+ \ \"40.68.220.16/32\",\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n
+ \ \"40.69.105.32/29\",\r\n \"40.69.132.90/32\",\r\n \"40.69.143.202/32\",\r\n
+ \ \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n \"40.70.144.0/26\",\r\n
+ \ \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n \"40.71.8.0/26\",\r\n
+ \ \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n \"40.71.9.192/26\",\r\n
+ \ \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n \"40.71.211.227/32\",\r\n
+ \ \"40.71.226.18/32\",\r\n \"40.74.51.145/32\",\r\n \"40.74.53.36/32\",\r\n
+ \ \"40.74.60.91/32\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"40.74.144.0/27\",\r\n \"40.74.144.32/29\",\r\n
+ \ \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n \"40.74.254.156/32\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"40.76.2.172/32\",\r\n \"40.76.26.90/32\",\r\n
+ \ \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n \"40.76.66.9/32\",\r\n
+ \ \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n \"40.76.219.185/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.78.192.0/27\",\r\n
+ \ \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n \"40.78.193.32/29\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"40.78.224.0/26\",\r\n
+ \ \"40.78.224.128/26\",\r\n \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n
+ \ \"40.78.232.0/26\",\r\n \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"40.79.152.0/26\",\r\n \"40.79.152.192/26\",\r\n
+ \ \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.79.176.0/27\",\r\n
+ \ \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n \"40.79.177.32/29\",\r\n
+ \ \"40.79.184.0/27\",\r\n \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n
+ \ \"40.79.192.0/27\",\r\n \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n
+ \ \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n \"40.80.49.0/27\",\r\n
+ \ \"40.83.178.165/32\",\r\n \"40.83.186.249/32\",\r\n \"40.84.5.64/32\",\r\n
+ \ \"40.84.54.249/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n \"40.86.75.134/32\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"40.112.139.250/32\",\r\n
+ \ \"40.112.240.0/27\",\r\n \"40.112.246.0/27\",\r\n \"40.113.14.53/32\",\r\n
+ \ \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n \"40.113.20.38/32\",\r\n
+ \ \"40.113.93.91/32\",\r\n \"40.113.200.119/32\",\r\n \"40.114.40.118/32\",\r\n
+ \ \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n \"40.114.46.128/32\",\r\n
+ \ \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.118.12.208/32\",\r\n \"40.118.129.167/32\",\r\n
+ \ \"40.118.170.1/32\",\r\n \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n
+ \ \"40.118.249.123/32\",\r\n \"40.118.250.19/32\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"40.121.143.204/32\",\r\n
+ \ \"40.121.149.49/32\",\r\n \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"40.126.228.153/32\",\r\n \"40.126.230.223/32\",\r\n
+ \ \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n \"40.126.250.24/32\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"51.12.46.32/27\",\r\n
+ \ \"51.12.46.64/27\",\r\n \"51.12.46.128/26\",\r\n \"51.12.96.0/27\",\r\n
+ \ \"51.12.96.32/29\",\r\n \"51.12.97.0/27\",\r\n \"51.12.198.32/27\",\r\n
+ \ \"51.12.198.64/27\",\r\n \"51.12.198.128/26\",\r\n \"51.12.200.0/27\",\r\n
+ \ \"51.12.200.32/29\",\r\n \"51.12.201.0/27\",\r\n \"51.12.201.32/29\",\r\n
+ \ \"51.12.224.0/27\",\r\n \"51.12.224.32/29\",\r\n \"51.12.225.0/27\",\r\n
+ \ \"51.12.232.0/27\",\r\n \"51.12.232.32/29\",\r\n \"51.12.233.0/27\",\r\n
+ \ \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n \"51.13.137.64/26\",\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.152.0/27\",\r\n \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"51.107.250.64/26\",\r\n \"51.107.250.128/26\",\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"51.120.96.0/27\",\r\n
+ \ \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n \"51.120.104.0/27\",\r\n
+ \ \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n \"51.120.208.0/27\",\r\n
+ \ \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n \"51.120.216.0/27\",\r\n
+ \ \"51.120.217.0/27\",\r\n \"51.120.217.32/29\",\r\n \"51.120.232.192/26\",\r\n
+ \ \"51.120.233.0/26\",\r\n \"51.138.210.0/26\",\r\n \"51.140.77.9/32\",\r\n
+ \ \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n \"51.140.144.0/27\",\r\n
+ \ \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n \"51.140.180.9/32\",\r\n
+ \ \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n \"51.140.184.12/32\",\r\n
+ \ \"51.140.208.64/27\",\r\n \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n
+ \ \"51.140.209.32/29\",\r\n \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n
+ \ \"51.141.15.53/32\",\r\n \"51.141.25.212/32\",\r\n \"51.142.211.129/32\",\r\n
+ \ \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n \"51.143.212.64/26\",\r\n
+ \ \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n \"52.136.185.0/25\",\r\n
+ \ \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n \"52.138.89.0/27\",\r\n
+ \ \"52.138.89.32/29\",\r\n \"52.138.224.0/26\",\r\n \"52.138.224.128/26\",\r\n
+ \ \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n \"52.138.229.72/29\",\r\n
+ \ \"52.139.106.192/26\",\r\n \"52.139.107.0/26\",\r\n \"52.146.133.128/25\",\r\n
+ \ \"52.147.112.160/27\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"52.162.104.0/26\",\r\n
+ \ \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n \"52.162.125.1/32\",\r\n
+ \ \"52.162.241.250/32\",\r\n \"52.165.184.67/32\",\r\n \"52.166.76.0/32\",\r\n
+ \ \"52.166.131.195/32\",\r\n \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n
+ \ \"52.167.105.0/26\",\r\n \"52.167.117.226/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.171.56.10/32\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n \"52.173.205.59/32\",\r\n
+ \ \"52.175.33.150/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.177.185.181/32\",\r\n
+ \ \"52.177.197.103/32\",\r\n \"52.177.200.215/32\",\r\n \"52.179.16.95/32\",\r\n
+ \ \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n \"52.179.167.70/32\",\r\n
+ \ \"52.179.178.184/32\",\r\n \"52.180.176.154/31\",\r\n \"52.180.183.226/32\",\r\n
+ \ \"52.182.136.0/26\",\r\n \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n
+ \ \"52.183.250.62/32\",\r\n \"52.184.192.175/32\",\r\n \"52.184.231.0/32\",\r\n
+ \ \"52.185.152.149/32\",\r\n \"52.187.15.214/32\",\r\n \"52.187.76.130/32\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.225.188.46/32\",\r\n \"52.225.188.113/32\",\r\n
+ \ \"52.225.222.124/32\",\r\n \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n
+ \ \"52.228.39.117/32\",\r\n \"52.229.17.93/32\",\r\n \"52.229.122.195/32\",\r\n
+ \ \"52.229.123.147/32\",\r\n \"52.229.124.23/32\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"52.231.144.0/27\",\r\n \"52.231.145.0/27\",\r\n
+ \ \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n \"52.231.206.133/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"52.237.28.86/32\",\r\n
+ \ \"52.237.219.227/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"52.243.32.19/32\",\r\n
+ \ \"52.243.43.186/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"52.246.251.248/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"65.52.208.91/32\",\r\n \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n
+ \ \"65.52.218.82/32\",\r\n \"65.52.225.245/32\",\r\n \"65.52.226.209/32\",\r\n
+ \ \"65.52.248.0/27\",\r\n \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n
+ \ \"102.37.80.96/27\",\r\n \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n
+ \ \"102.37.160.0/27\",\r\n \"102.37.160.64/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"102.133.120.0/27\",\r\n
+ \ \"102.133.120.32/29\",\r\n \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n
+ \ \"102.133.152.32/29\",\r\n \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n
+ \ \"102.133.248.0/27\",\r\n \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n
+ \ \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n \"104.40.54.130/32\",\r\n
+ \ \"104.40.82.151/32\",\r\n \"104.40.155.247/32\",\r\n \"104.40.168.64/26\",\r\n
+ \ \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n \"104.40.169.32/29\",\r\n
+ \ \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n \"104.40.220.28/32\",\r\n
+ \ \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n \"104.40.237.111/32\",\r\n
+ \ \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n \"104.41.13.233/32\",\r\n
+ \ \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n \"104.41.57.82/32\",\r\n
+ \ \"104.41.59.170/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.41.168.103/32\",\r\n \"104.41.169.34/32\",\r\n \"104.41.202.30/32\",\r\n
+ \ \"104.41.205.195/32\",\r\n \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n
+ \ \"104.41.211.98/32\",\r\n \"104.42.120.235/32\",\r\n \"104.42.127.95/32\",\r\n
+ \ \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n \"104.42.192.190/32\",\r\n
+ \ \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n \"104.42.237.198/32\",\r\n
+ \ \"104.42.238.205/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.43.164.21/32\",\r\n \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n
+ \ \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n \"104.45.158.30/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n
+ \ \"104.46.183.0/26\",\r\n \"104.47.157.97/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"104.210.32.128/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"104.211.144.0/27\",\r\n
+ \ \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n \"104.211.145.32/29\",\r\n
+ \ \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n \"104.211.190.46/32\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n
+ \ \"104.214.17.0/26\",\r\n \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n
+ \ \"104.214.73.137/32\",\r\n \"104.214.78.242/32\",\r\n \"104.214.148.156/32\",\r\n
+ \ \"104.214.150.17/32\",\r\n \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n
+ \ \"111.221.106.161/32\",\r\n \"137.116.31.224/27\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"137.116.203.91/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"137.135.109.63/32\",\r\n \"137.135.186.126/32\",\r\n
+ \ \"137.135.189.158/32\",\r\n \"137.135.205.85/32\",\r\n
+ \ \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n \"138.91.58.227/32\",\r\n
+ \ \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n \"138.91.240.14/32\",\r\n
+ \ \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n \"138.91.251.139/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"168.62.115.112/28\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"168.63.13.214/32\",\r\n
+ \ \"168.63.98.91/32\",\r\n \"168.63.175.68/32\",\r\n \"191.233.15.160/27\",\r\n
+ \ \"191.233.15.192/27\",\r\n \"191.233.48.0/27\",\r\n \"191.233.48.32/29\",\r\n
+ \ \"191.233.49.0/27\",\r\n \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n
+ \ \"191.233.200.0/27\",\r\n \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"191.234.142.160/27\",\r\n \"191.234.142.192/27\",\r\n
+ \ \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n \"191.234.145.0/27\",\r\n
+ \ \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n \"191.235.170.58/32\",\r\n
+ \ \"191.235.193.75/32\",\r\n \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n
+ \ \"191.235.193.139/32\",\r\n \"191.235.193.140/31\",\r\n
+ \ \"191.235.209.79/32\",\r\n \"191.236.119.31/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.237.219.202/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"191.237.240.43/32\",\r\n
+ \ \"191.237.240.44/32\",\r\n \"191.237.240.46/32\",\r\n \"191.238.6.43/32\",\r\n
+ \ \"191.238.6.44/31\",\r\n \"191.238.6.46/32\",\r\n \"191.238.68.11/32\",\r\n
+ \ \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"191.239.12.154/32\",\r\n \"191.239.189.48/32\",\r\n
+ \ \"191.239.192.109/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1000:4::280/123\",\r\n \"2603:1000:4:1::200/121\",\r\n
+ \ \"2603:1000:4:400::/123\",\r\n \"2603:1000:4:401::/123\",\r\n
+ \ \"2603:1000:104::640/123\",\r\n \"2603:1000:104::680/121\",\r\n
+ \ \"2603:1000:104:400::/123\",\r\n \"2603:1000:104:401::/123\",\r\n
+ \ \"2603:1000:104:800::/123\",\r\n \"2603:1000:104:801::/123\",\r\n
+ \ \"2603:1000:104:c00::/123\",\r\n \"2603:1000:104:c01::/123\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\",\r\n \"2603:1010:304::280/123\",\r\n
+ \ \"2603:1010:304:1::200/121\",\r\n \"2603:1010:304:400::/123\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\",\r\n
+ \ \"2603:1020:705::320/123\",\r\n \"2603:1020:705::380/121\",\r\n
+ \ \"2603:1020:705:400::/123\",\r\n \"2603:1020:705:401::/123\",\r\n
+ \ \"2603:1020:705:800::/123\",\r\n \"2603:1020:705:801::/123\",\r\n
+ \ \"2603:1020:705:c00::/123\",\r\n \"2603:1020:705:c01::/123\",\r\n
+ \ \"2603:1020:805::320/123\",\r\n \"2603:1020:805::380/121\",\r\n
+ \ \"2603:1020:805:400::/123\",\r\n \"2603:1020:805:401::/123\",\r\n
+ \ \"2603:1020:805:800::/123\",\r\n \"2603:1020:805:801::/123\",\r\n
+ \ \"2603:1020:805:c00::/123\",\r\n \"2603:1020:805:c01::/123\",\r\n
+ \ \"2603:1020:905::280/123\",\r\n \"2603:1020:905:1::200/121\",\r\n
+ \ \"2603:1020:905:400::/123\",\r\n \"2603:1020:a04::320/123\",\r\n
+ \ \"2603:1020:a04::380/121\",\r\n \"2603:1020:a04:400::/123\",\r\n
+ \ \"2603:1020:a04:401::/123\",\r\n \"2603:1020:a04:800::/123\",\r\n
+ \ \"2603:1020:a04:801::/123\",\r\n \"2603:1020:a04:c00::/123\",\r\n
+ \ \"2603:1020:a04:c01::/123\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\",\r\n
+ \ \"2603:1020:c04::320/123\",\r\n \"2603:1020:c04::380/121\",\r\n
+ \ \"2603:1020:c04:400::/123\",\r\n \"2603:1020:c04:401::/123\",\r\n
+ \ \"2603:1020:c04:800::/123\",\r\n \"2603:1020:c04:801::/123\",\r\n
+ \ \"2603:1020:c04:c00::/123\",\r\n \"2603:1020:c04:c01::/123\",\r\n
+ \ \"2603:1020:d04::280/123\",\r\n \"2603:1020:d04:1::200/121\",\r\n
+ \ \"2603:1020:d04:400::/123\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\",\r\n
+ \ \"2603:1020:1004:1::520/123\",\r\n \"2603:1020:1004:1::580/121\",\r\n
+ \ \"2603:1020:1004:400::400/123\",\r\n \"2603:1020:1004:402::/123\",\r\n
+ \ \"2603:1020:1004:403::/123\",\r\n \"2603:1020:1004:802::/123\",\r\n
+ \ \"2603:1020:1004:803::/123\",\r\n \"2603:1020:1004:c03::/123\",\r\n
+ \ \"2603:1020:1004:c04::/123\",\r\n \"2603:1020:1104::500/123\",\r\n
+ \ \"2603:1020:1104:1::300/121\",\r\n \"2603:1020:1104:400::420/123\",\r\n
+ \ \"2603:1020:1104:402::/123\",\r\n \"2603:1030:f:1::280/123\",\r\n
+ \ \"2603:1030:f:2::200/121\",\r\n \"2603:1030:f:402::/122\",\r\n
+ \ \"2603:1030:f:403::/122\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\",\r\n \"2603:1030:104::320/123\",\r\n
+ \ \"2603:1030:104::380/121\",\r\n \"2603:1030:104:400::/123\",\r\n
+ \ \"2603:1030:104:401::/123\",\r\n \"2603:1030:107:1::380/123\",\r\n
+ \ \"2603:1030:107:401::40/122\",\r\n \"2603:1030:107:402::40/123\",\r\n
+ \ \"2603:1030:210::320/123\",\r\n \"2603:1030:210::380/121\",\r\n
+ \ \"2603:1030:210:400::/123\",\r\n \"2603:1030:210:401::/123\",\r\n
+ \ \"2603:1030:210:800::/123\",\r\n \"2603:1030:210:801::/123\",\r\n
+ \ \"2603:1030:210:c00::/123\",\r\n \"2603:1030:210:c01::/123\",\r\n
+ \ \"2603:1030:40b:2::200/123\",\r\n \"2603:1030:40b:2::280/121\",\r\n
+ \ \"2603:1030:40b:402::/122\",\r\n \"2603:1030:40b:403::/122\",\r\n
+ \ \"2603:1030:40b:802::/122\",\r\n \"2603:1030:40b:803::/122\",\r\n
+ \ \"2603:1030:40b:c02::/122\",\r\n \"2603:1030:40b:c03::/122\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\",\r\n
+ \ \"2603:1030:504::520/123\",\r\n \"2603:1030:504::580/121\",\r\n
+ \ \"2603:1030:504:400::/123\",\r\n \"2603:1030:504:401::/123\",\r\n
+ \ \"2603:1030:504:800::/123\",\r\n \"2603:1030:504:801::/123\",\r\n
+ \ \"2603:1030:504:c00::/123\",\r\n \"2603:1030:504:c01::/123\",\r\n
+ \ \"2603:1030:608::280/123\",\r\n \"2603:1030:608:1::200/121\",\r\n
+ \ \"2603:1030:608:400::/123\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\",\r\n \"2603:1030:a07::280/123\",\r\n
+ \ \"2603:1030:a07:1::200/121\",\r\n \"2603:1030:a07:400::/123\",\r\n
+ \ \"2603:1030:b04::280/123\",\r\n \"2603:1030:b04:1::200/121\",\r\n
+ \ \"2603:1030:b04:400::/123\",\r\n \"2603:1030:c06:2::200/123\",\r\n
+ \ \"2603:1030:c06:2::280/121\",\r\n \"2603:1030:c06:401::/123\",\r\n
+ \ \"2603:1030:c06:402::/123\",\r\n \"2603:1030:c06:800::/123\",\r\n
+ \ \"2603:1030:c06:801::/123\",\r\n \"2603:1030:c06:c00::/123\",\r\n
+ \ \"2603:1030:c06:c01::/123\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\",\r\n
+ \ \"2603:1040:5::420/123\",\r\n \"2603:1040:5::480/121\",\r\n
+ \ \"2603:1040:5:400::/123\",\r\n \"2603:1040:5:401::/123\",\r\n
+ \ \"2603:1040:5:800::/123\",\r\n \"2603:1040:5:801::/123\",\r\n
+ \ \"2603:1040:5:c00::/123\",\r\n \"2603:1040:5:c01::/123\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\",\r\n
+ \ \"2603:1040:407::320/123\",\r\n \"2603:1040:407::380/121\",\r\n
+ \ \"2603:1040:407:400::/123\",\r\n \"2603:1040:407:401::/123\",\r\n
+ \ \"2603:1040:407:800::/123\",\r\n \"2603:1040:407:801::/123\",\r\n
+ \ \"2603:1040:407:c00::/123\",\r\n \"2603:1040:407:c01::/123\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\",\r\n
+ \ \"2603:1040:904::320/123\",\r\n \"2603:1040:904::380/121\",\r\n
+ \ \"2603:1040:904:400::/123\",\r\n \"2603:1040:904:401::/123\",\r\n
+ \ \"2603:1040:904:800::/123\",\r\n \"2603:1040:904:801::/123\",\r\n
+ \ \"2603:1040:904:c00::/123\",\r\n \"2603:1040:904:c01::/123\",\r\n
+ \ \"2603:1040:a06::420/123\",\r\n \"2603:1040:a06::480/121\",\r\n
+ \ \"2603:1040:a06:400::/123\",\r\n \"2603:1040:a06:401::/123\",\r\n
+ \ \"2603:1040:a06:800::/123\",\r\n \"2603:1040:a06:801::/123\",\r\n
+ \ \"2603:1040:a06:c00::/123\",\r\n \"2603:1040:a06:c01::/123\",\r\n
+ \ \"2603:1040:b04::280/123\",\r\n \"2603:1040:b04:1::200/121\",\r\n
+ \ \"2603:1040:b04:400::/123\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\",\r\n \"2603:1040:d04:1::520/123\",\r\n
+ \ \"2603:1040:d04:1::580/121\",\r\n \"2603:1040:d04:400::400/123\",\r\n
+ \ \"2603:1040:d04:402::/123\",\r\n \"2603:1040:d04:403::/123\",\r\n
+ \ \"2603:1040:d04:802::/123\",\r\n \"2603:1040:d04:803::/123\",\r\n
+ \ \"2603:1040:d04:c03::/123\",\r\n \"2603:1040:d04:c04::/123\",\r\n
+ \ \"2603:1040:e05::/123\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\",\r\n \"2603:1040:1104::500/123\",\r\n
+ \ \"2603:1040:1104:1::300/121\",\r\n \"2603:1040:1104:400::440/123\",\r\n
+ \ \"2603:1040:1104:402::/123\",\r\n \"2603:1050:6::320/123\",\r\n
+ \ \"2603:1050:6::380/121\",\r\n \"2603:1050:6:400::/123\",\r\n
+ \ \"2603:1050:6:401::/123\",\r\n \"2603:1050:6:800::/123\",\r\n
+ \ \"2603:1050:6:801::/123\",\r\n \"2603:1050:6:c00::/122\",\r\n
+ \ \"2603:1050:6:c01::/122\",\r\n \"2603:1050:403:1::200/123\",\r\n
+ \ \"2603:1050:403:1::280/121\",\r\n \"2603:1050:403:402::/123\",\r\n
+ \ \"2603:1050:403:403::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral\",\r\n \"id\": \"Sql.AustraliaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n \"20.36.105.32/29\",\r\n
+ \ \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n \"20.53.48.192/26\",\r\n
+ \ \"2603:1010:304::280/123\",\r\n \"2603:1010:304:1::200/121\",\r\n
+ \ \"2603:1010:304:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral2\",\r\n \"id\": \"Sql.AustraliaCentral2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n \"20.36.113.32/29\",\r\n
+ \ \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n \"20.53.56.128/26\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaEast\",\r\n \"id\": \"Sql.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"20.53.46.128/25\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.126.228.153/32\",\r\n
+ \ \"40.126.230.223/32\",\r\n \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n
+ \ \"40.126.250.24/32\",\r\n \"52.237.219.227/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Sql.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.70.148.251/32\",\r\n
+ \ \"13.70.155.163/32\",\r\n \"13.73.109.251/32\",\r\n \"13.77.7.78/32\",\r\n
+ \ \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n \"13.77.49.32/29\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n \"104.46.183.0/26\",\r\n
+ \ \"191.239.189.48/32\",\r\n \"191.239.192.109/32\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.BrazilSouth\",\r\n \"id\": \"Sql.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n
+ \ \"104.41.13.233/32\",\r\n \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n
+ \ \"104.41.57.82/32\",\r\n \"104.41.59.170/32\",\r\n \"191.233.200.0/27\",\r\n
+ \ \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n \"191.234.142.160/27\",\r\n
+ \ \"191.234.142.192/27\",\r\n \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n
+ \ \"191.234.145.0/27\",\r\n \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n
+ \ \"2603:1050:6::320/123\",\r\n \"2603:1050:6::380/121\",\r\n
+ \ \"2603:1050:6:400::/123\",\r\n \"2603:1050:6:401::/123\",\r\n
+ \ \"2603:1050:6:800::/123\",\r\n \"2603:1050:6:801::/123\",\r\n
+ \ \"2603:1050:6:c00::/122\",\r\n \"2603:1050:6:c01::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CanadaCentral\",\r\n
+ \ \"id\": \"Sql.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n
+ \ \"20.38.145.0/27\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n
+ \ \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n \"52.228.39.117/32\",\r\n
+ \ \"52.237.28.86/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CanadaEast\",\r\n \"id\": \"Sql.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n \"40.69.105.32/29\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"52.139.106.192/26\",\r\n
+ \ \"52.139.107.0/26\",\r\n \"52.229.122.195/32\",\r\n \"52.229.123.147/32\",\r\n
+ \ \"52.229.124.23/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CentralIndia\",\r\n
+ \ \"id\": \"Sql.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n
+ \ \"40.80.49.0/27\",\r\n \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"2603:1040:a06::420/123\",\r\n
+ \ \"2603:1040:a06::480/121\",\r\n \"2603:1040:a06:400::/123\",\r\n
+ \ \"2603:1040:a06:401::/123\",\r\n \"2603:1040:a06:800::/123\",\r\n
+ \ \"2603:1040:a06:801::/123\",\r\n \"2603:1040:a06:c00::/123\",\r\n
+ \ \"2603:1040:a06:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUS\",\r\n \"id\": \"Sql.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.215.62/32\",\r\n \"13.89.36.110/32\",\r\n
+ \ \"13.89.37.61/32\",\r\n \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n
+ \ \"13.89.168.0/26\",\r\n \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n
+ \ \"20.40.228.128/25\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"40.69.132.90/32\",\r\n
+ \ \"40.69.143.202/32\",\r\n \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.86.75.134/32\",\r\n \"40.113.200.119/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"52.165.184.67/32\",\r\n
+ \ \"52.173.205.59/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.182.136.0/26\",\r\n
+ \ \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n \"104.43.164.21/32\",\r\n
+ \ \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUSEUAP\",\r\n \"id\": \"Sql.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n \"20.46.11.128/26\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"52.180.176.154/31\",\r\n
+ \ \"52.180.183.226/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"2603:1030:f:1::280/123\",\r\n \"2603:1030:f:2::200/121\",\r\n
+ \ \"2603:1030:f:402::/122\",\r\n \"2603:1030:f:403::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastAsia\",\r\n
+ \ \"id\": \"Sql.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.99.102.124/32\",\r\n \"23.99.118.196/32\",\r\n \"52.175.33.150/32\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS\",\r\n
+ \ \"id\": \"Sql.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.62.132.160/27\",\r\n \"20.62.132.192/27\",\r\n
+ \ \"20.62.133.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"40.71.8.0/26\",\r\n \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n
+ \ \"40.71.9.192/26\",\r\n \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n
+ \ \"40.71.211.227/32\",\r\n \"40.71.226.18/32\",\r\n \"40.76.2.172/32\",\r\n
+ \ \"40.76.26.90/32\",\r\n \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n
+ \ \"40.76.66.9/32\",\r\n \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n
+ \ \"40.76.219.185/32\",\r\n \"40.78.224.0/26\",\r\n \"40.78.224.128/26\",\r\n
+ \ \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n \"40.79.152.0/26\",\r\n
+ \ \"40.79.152.192/26\",\r\n \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n
+ \ \"40.114.40.118/32\",\r\n \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n
+ \ \"40.114.46.128/32\",\r\n \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.121.143.204/32\",\r\n \"40.121.149.49/32\",\r\n
+ \ \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.179.16.95/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.45.158.30/32\",\r\n \"137.135.109.63/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.238.6.43/32\",\r\n \"191.238.6.44/31\",\r\n
+ \ \"191.238.6.46/32\",\r\n \"2603:1030:210::320/123\",\r\n
+ \ \"2603:1030:210::380/121\",\r\n \"2603:1030:210:400::/123\",\r\n
+ \ \"2603:1030:210:401::/123\",\r\n \"2603:1030:210:800::/123\",\r\n
+ \ \"2603:1030:210:801::/123\",\r\n \"2603:1030:210:c00::/123\",\r\n
+ \ \"2603:1030:210:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2\",\r\n \"id\": \"Sql.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.22.44/32\",\r\n \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n
+ \ \"20.62.58.128/25\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.70.144.0/26\",\r\n \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.84.5.64/32\",\r\n \"40.84.54.249/32\",\r\n
+ \ \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n \"52.167.105.0/26\",\r\n
+ \ \"52.167.117.226/32\",\r\n \"52.177.185.181/32\",\r\n \"52.177.197.103/32\",\r\n
+ \ \"52.177.200.215/32\",\r\n \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n
+ \ \"52.179.167.70/32\",\r\n \"52.179.178.184/32\",\r\n \"52.184.192.175/32\",\r\n
+ \ \"52.184.231.0/32\",\r\n \"52.225.222.124/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS2EUAP\",\r\n
+ \ \"id\": \"Sql.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.51.17.160/27\",\r\n
+ \ \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n \"40.74.144.0/27\",\r\n
+ \ \"40.74.144.32/29\",\r\n \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n
+ \ \"52.138.89.0/27\",\r\n \"52.138.89.32/29\",\r\n \"52.225.188.46/32\",\r\n
+ \ \"52.225.188.113/32\",\r\n \"2603:1030:40b:2::200/123\",\r\n
+ \ \"2603:1030:40b:2::280/121\",\r\n \"2603:1030:40b:402::/122\",\r\n
+ \ \"2603:1030:40b:403::/122\",\r\n \"2603:1030:40b:802::/122\",\r\n
+ \ \"2603:1030:40b:803::/122\",\r\n \"2603:1030:40b:c02::/122\",\r\n
+ \ \"2603:1030:40b:c03::/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2Stage\",\r\n \"id\": \"Sql.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.31.224/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceCentral\",\r\n \"id\": \"Sql.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.47.192/26\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"51.138.210.0/26\",\r\n \"2603:1020:805::320/123\",\r\n
+ \ \"2603:1020:805::380/121\",\r\n \"2603:1020:805:400::/123\",\r\n
+ \ \"2603:1020:805:401::/123\",\r\n \"2603:1020:805:800::/123\",\r\n
+ \ \"2603:1020:805:801::/123\",\r\n \"2603:1020:805:c00::/123\",\r\n
+ \ \"2603:1020:805:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceSouth\",\r\n \"id\": \"Sql.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.176.0/27\",\r\n \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n
+ \ \"40.79.177.32/29\",\r\n \"52.136.185.0/25\",\r\n \"2603:1020:905::280/123\",\r\n
+ \ \"2603:1020:905:1::200/121\",\r\n \"2603:1020:905:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyNorth\",\r\n
+ \ \"id\": \"Sql.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"2603:1020:d04::280/123\",\r\n
+ \ \"2603:1020:d04:1::200/121\",\r\n \"2603:1020:d04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyWestCentral\",\r\n
+ \ \"id\": \"Sql.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"2603:1020:c04::320/123\",\r\n
+ \ \"2603:1020:c04::380/121\",\r\n \"2603:1020:c04:400::/123\",\r\n
+ \ \"2603:1020:c04:401::/123\",\r\n \"2603:1020:c04:800::/123\",\r\n
+ \ \"2603:1020:c04:801::/123\",\r\n \"2603:1020:c04:c00::/123\",\r\n
+ \ \"2603:1020:c04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanEast\",\r\n \"id\": \"Sql.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n \"13.78.104.32/29\",\r\n
+ \ \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n \"20.191.165.160/27\",\r\n
+ \ \"20.191.165.192/27\",\r\n \"20.191.166.0/26\",\r\n \"23.102.69.95/32\",\r\n
+ \ \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n \"40.79.184.0/27\",\r\n
+ \ \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n \"40.79.192.0/27\",\r\n
+ \ \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n \"52.185.152.149/32\",\r\n
+ \ \"52.243.32.19/32\",\r\n \"52.243.43.186/32\",\r\n \"104.41.168.103/32\",\r\n
+ \ \"104.41.169.34/32\",\r\n \"191.237.240.43/32\",\r\n \"191.237.240.44/32\",\r\n
+ \ \"191.237.240.46/32\",\r\n \"2603:1040:407::320/123\",\r\n
+ \ \"2603:1040:407::380/121\",\r\n \"2603:1040:407:400::/123\",\r\n
+ \ \"2603:1040:407:401::/123\",\r\n \"2603:1040:407:800::/123\",\r\n
+ \ \"2603:1040:407:801::/123\",\r\n \"2603:1040:407:c00::/123\",\r\n
+ \ \"2603:1040:407:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanWest\",\r\n \"id\": \"Sql.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"104.214.148.156/32\",\r\n \"104.214.150.17/32\",\r\n
+ \ \"191.238.68.11/32\",\r\n \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaCentral\",\r\n \"id\": \"Sql.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n \"20.44.25.0/27\",\r\n
+ \ \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n \"20.194.65.0/27\",\r\n
+ \ \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaSouth\",\r\n \"id\": \"Sql.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.112.160/27\",\r\n \"52.231.144.0/27\",\r\n
+ \ \"52.231.145.0/27\",\r\n \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n
+ \ \"52.231.206.133/32\",\r\n \"2603:1040:e05::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUS\",\r\n
+ \ \"id\": \"Sql.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"23.96.178.199/32\",\r\n
+ \ \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n \"23.96.205.215/32\",\r\n
+ \ \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n \"23.96.247.75/32\",\r\n
+ \ \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n \"23.98.55.75/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"52.162.104.0/26\",\r\n \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n
+ \ \"52.162.125.1/32\",\r\n \"52.162.241.250/32\",\r\n \"65.52.208.91/32\",\r\n
+ \ \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n \"65.52.218.82/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"2603:1030:608::280/123\",\r\n
+ \ \"2603:1030:608:1::200/121\",\r\n \"2603:1030:608:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUSStage\",\r\n
+ \ \"id\": \"Sql.NorthCentralUSStage\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"168.62.115.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.NorthEurope\",\r\n \"id\": \"Sql.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"23.102.16.130/32\",\r\n
+ \ \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n \"23.102.52.155/32\",\r\n
+ \ \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.113.14.53/32\",\r\n \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n
+ \ \"40.113.20.38/32\",\r\n \"40.113.93.91/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"52.138.224.0/26\",\r\n
+ \ \"52.138.224.128/26\",\r\n \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n
+ \ \"52.138.229.72/29\",\r\n \"52.146.133.128/25\",\r\n \"65.52.225.245/32\",\r\n
+ \ \"65.52.226.209/32\",\r\n \"104.41.202.30/32\",\r\n \"104.41.205.195/32\",\r\n
+ \ \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n \"104.41.211.98/32\",\r\n
+ \ \"137.135.186.126/32\",\r\n \"137.135.189.158/32\",\r\n
+ \ \"137.135.205.85/32\",\r\n \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n
+ \ \"138.91.58.227/32\",\r\n \"191.235.170.58/32\",\r\n \"191.235.193.75/32\",\r\n
+ \ \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n \"191.235.193.139/32\",\r\n
+ \ \"191.235.193.140/31\",\r\n \"191.235.209.79/32\",\r\n
+ \ \"191.237.219.202/32\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayEast\",\r\n \"id\": \"Sql.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.96.0/27\",\r\n \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n
+ \ \"51.120.104.0/27\",\r\n \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n
+ \ \"51.120.208.0/27\",\r\n \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n
+ \ \"51.120.232.192/26\",\r\n \"51.120.233.0/26\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayWest\",\r\n \"id\": \"Sql.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n
+ \ \"51.13.137.64/26\",\r\n \"51.120.216.0/27\",\r\n \"51.120.217.0/27\",\r\n
+ \ \"51.120.217.32/29\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Sql.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.0/27\",\r\n
+ \ \"102.37.160.64/26\",\r\n \"102.133.120.0/27\",\r\n \"102.133.120.32/29\",\r\n
+ \ \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n \"102.133.152.32/29\",\r\n
+ \ \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n \"102.133.248.0/27\",\r\n
+ \ \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n \"2603:1000:104::640/123\",\r\n
+ \ \"2603:1000:104::680/121\",\r\n \"2603:1000:104:400::/123\",\r\n
+ \ \"2603:1000:104:401::/123\",\r\n \"2603:1000:104:800::/123\",\r\n
+ \ \"2603:1000:104:801::/123\",\r\n \"2603:1000:104:c00::/123\",\r\n
+ \ \"2603:1000:104:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthAfricaWest\",\r\n \"id\": \"Sql.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.80.96/27\",\r\n
+ \ \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"2603:1000:4::280/123\",\r\n
+ \ \"2603:1000:4:1::200/121\",\r\n \"2603:1000:4:400::/123\",\r\n
+ \ \"2603:1000:4:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthCentralUS\",\r\n \"id\": \"Sql.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.84.223.76/32\",\r\n \"13.85.65.48/32\",\r\n
+ \ \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n \"20.45.120.0/27\",\r\n
+ \ \"20.45.121.0/27\",\r\n \"20.45.121.32/29\",\r\n \"20.49.88.0/27\",\r\n
+ \ \"20.49.88.32/29\",\r\n \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n
+ \ \"20.65.132.160/27\",\r\n \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n
+ \ \"23.98.162.75/32\",\r\n \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n
+ \ \"23.98.170.75/32\",\r\n \"23.98.170.76/31\",\r\n \"23.102.172.251/32\",\r\n
+ \ \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n \"23.102.179.187/32\",\r\n
+ \ \"40.74.254.156/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"52.171.56.10/32\",\r\n \"52.183.250.62/32\",\r\n
+ \ \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n \"104.214.17.0/26\",\r\n
+ \ \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n \"104.214.73.137/32\",\r\n
+ \ \"104.214.78.242/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SoutheastAsia\",\r\n \"id\": \"Sql.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n \"13.67.17.0/26\",\r\n
+ \ \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n \"13.67.59.217/32\",\r\n
+ \ \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n \"20.195.65.32/27\",\r\n
+ \ \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"40.78.232.0/26\",\r\n
+ \ \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n \"52.187.15.214/32\",\r\n
+ \ \"52.187.76.130/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n \"111.221.106.161/32\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"168.63.175.68/32\",\r\n \"2603:1040:5::420/123\",\r\n
+ \ \"2603:1040:5::480/121\",\r\n \"2603:1040:5:400::/123\",\r\n
+ \ \"2603:1040:5:401::/123\",\r\n \"2603:1040:5:800::/123\",\r\n
+ \ \"2603:1040:5:801::/123\",\r\n \"2603:1040:5:c00::/123\",\r\n
+ \ \"2603:1040:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthIndia\",\r\n \"id\": \"Sql.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.192.0/27\",\r\n \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n
+ \ \"40.78.193.32/29\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SwitzerlandNorth\",\r\n \"id\": \"Sql.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"2603:1020:a04::320/123\",\r\n \"2603:1020:a04::380/121\",\r\n
+ \ \"2603:1020:a04:400::/123\",\r\n \"2603:1020:a04:401::/123\",\r\n
+ \ \"2603:1020:a04:800::/123\",\r\n \"2603:1020:a04:801::/123\",\r\n
+ \ \"2603:1020:a04:c00::/123\",\r\n \"2603:1020:a04:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SwitzerlandWest\",\r\n
+ \ \"id\": \"Sql.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.107.152.0/27\",\r\n
+ \ \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n \"51.107.250.64/26\",\r\n
+ \ \"51.107.250.128/26\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAECentral\",\r\n
+ \ \"id\": \"Sql.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.37.71.64/26\",\r\n
+ \ \"20.37.71.128/26\",\r\n \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n
+ \ \"20.37.73.64/27\",\r\n \"20.37.73.96/29\",\r\n \"2603:1040:b04::280/123\",\r\n
+ \ \"2603:1040:b04:1::200/121\",\r\n \"2603:1040:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAENorth\",\r\n
+ \ \"id\": \"Sql.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.64/26\",\r\n
+ \ \"20.38.143.128/26\",\r\n \"20.38.152.24/29\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"65.52.248.0/27\",\r\n
+ \ \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n \"2603:1040:904::320/123\",\r\n
+ \ \"2603:1040:904::380/121\",\r\n \"2603:1040:904:400::/123\",\r\n
+ \ \"2603:1040:904:401::/123\",\r\n \"2603:1040:904:800::/123\",\r\n
+ \ \"2603:1040:904:801::/123\",\r\n \"2603:1040:904:c00::/123\",\r\n
+ \ \"2603:1040:904:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKNorth\",\r\n \"id\": \"Sql.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"51.142.211.129/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.UKSouth\",\r\n \"id\": \"Sql.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.140.77.9/32\",\r\n \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n
+ \ \"51.140.144.0/27\",\r\n \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n
+ \ \"51.140.180.9/32\",\r\n \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n
+ \ \"51.140.184.12/32\",\r\n \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n
+ \ \"51.143.212.64/26\",\r\n \"2603:1020:705::320/123\",\r\n
+ \ \"2603:1020:705::380/121\",\r\n \"2603:1020:705:400::/123\",\r\n
+ \ \"2603:1020:705:401::/123\",\r\n \"2603:1020:705:800::/123\",\r\n
+ \ \"2603:1020:705:801::/123\",\r\n \"2603:1020:705:c00::/123\",\r\n
+ \ \"2603:1020:705:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKWest\",\r\n \"id\": \"Sql.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.58.66.128/25\",\r\n \"51.140.208.64/27\",\r\n
+ \ \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n \"51.140.209.32/29\",\r\n
+ \ \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n \"51.141.15.53/32\",\r\n
+ \ \"51.141.25.212/32\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestCentralUS\",\r\n
+ \ \"id\": \"Sql.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.78.144.57/32\",\r\n
+ \ \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n \"13.78.151.189/32\",\r\n
+ \ \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n \"13.78.178.151/32\",\r\n
+ \ \"13.78.248.32/27\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"2603:1030:b04::280/123\",\r\n
+ \ \"2603:1030:b04:1::200/121\",\r\n \"2603:1030:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestEurope\",\r\n
+ \ \"id\": \"Sql.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"20.61.99.192/26\",\r\n \"20.61.102.0/26\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.101.64.10/32\",\r\n \"40.68.37.158/32\",\r\n
+ \ \"40.68.215.206/32\",\r\n \"40.68.220.16/32\",\r\n \"40.74.51.145/32\",\r\n
+ \ \"40.74.53.36/32\",\r\n \"40.74.60.91/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.118.12.208/32\",\r\n \"52.166.76.0/32\",\r\n \"52.166.131.195/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"104.40.155.247/32\",\r\n
+ \ \"104.40.168.64/26\",\r\n \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n
+ \ \"104.40.169.32/29\",\r\n \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n
+ \ \"104.40.220.28/32\",\r\n \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n
+ \ \"104.40.237.111/32\",\r\n \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.47.157.97/32\",\r\n
+ \ \"137.116.203.91/32\",\r\n \"168.63.13.214/32\",\r\n \"168.63.98.91/32\",\r\n
+ \ \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestIndia\",\r\n \"id\": \"Sql.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n
+ \ \"104.211.144.0/27\",\r\n \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n
+ \ \"104.211.145.32/29\",\r\n \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n
+ \ \"104.211.190.46/32\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestUS\",\r\n
+ \ \"id\": \"Sql.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.86.216.0/25\",\r\n
+ \ \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n \"13.86.217.0/25\",\r\n
+ \ \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n \"13.86.217.224/29\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.66.3.64/26\",\r\n \"20.66.3.128/26\",\r\n
+ \ \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n \"23.99.10.185/32\",\r\n
+ \ \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n \"23.99.34.78/32\",\r\n
+ \ \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n \"23.99.57.14/32\",\r\n
+ \ \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n \"23.99.90.75/32\",\r\n
+ \ \"23.99.91.130/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.83.178.165/32\",\r\n
+ \ \"40.83.186.249/32\",\r\n \"40.112.139.250/32\",\r\n \"40.112.240.0/27\",\r\n
+ \ \"40.112.246.0/27\",\r\n \"40.118.129.167/32\",\r\n \"40.118.170.1/32\",\r\n
+ \ \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n \"40.118.249.123/32\",\r\n
+ \ \"40.118.250.19/32\",\r\n \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n
+ \ \"104.40.54.130/32\",\r\n \"104.40.82.151/32\",\r\n \"104.42.120.235/32\",\r\n
+ \ \"104.42.127.95/32\",\r\n \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n
+ \ \"104.42.192.190/32\",\r\n \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n
+ \ \"104.42.237.198/32\",\r\n \"104.42.238.205/32\",\r\n \"104.210.32.128/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n
+ \ \"138.91.240.14/32\",\r\n \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n
+ \ \"138.91.251.139/32\",\r\n \"191.236.119.31/32\",\r\n \"191.239.12.154/32\",\r\n
+ \ \"2603:1030:a07::280/123\",\r\n \"2603:1030:a07:1::200/121\",\r\n
+ \ \"2603:1030:a07:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestUS2\",\r\n \"id\": \"Sql.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.66.136.0/26\",\r\n
+ \ \"13.66.136.192/29\",\r\n \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n
+ \ \"13.66.229.222/32\",\r\n \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n
+ \ \"13.66.230.64/32\",\r\n \"13.66.230.103/32\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.229.17.93/32\",\r\n \"52.246.251.248/32\",\r\n
+ \ \"2603:1030:c06:2::200/123\",\r\n \"2603:1030:c06:2::280/121\",\r\n
+ \ \"2603:1030:c06:401::/123\",\r\n \"2603:1030:c06:402::/123\",\r\n
+ \ \"2603:1030:c06:800::/123\",\r\n \"2603:1030:c06:801::/123\",\r\n
+ \ \"2603:1030:c06:c00::/123\",\r\n \"2603:1030:c06:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"SqlManagement\",\r\n
+ \ \"id\": \"SqlManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"SqlManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.155.40/32\",\r\n \"13.66.140.96/27\",\r\n
+ \ \"13.66.141.192/27\",\r\n \"13.67.8.192/27\",\r\n \"13.67.10.32/27\",\r\n
+ \ \"13.69.64.96/27\",\r\n \"13.69.67.0/27\",\r\n \"13.69.106.96/27\",\r\n
+ \ \"13.69.107.32/27\",\r\n \"13.69.227.96/27\",\r\n \"13.69.229.192/27\",\r\n
+ \ \"13.70.72.160/27\",\r\n \"13.70.73.224/27\",\r\n \"13.71.119.167/32\",\r\n
+ \ \"13.71.123.234/32\",\r\n \"13.71.170.160/27\",\r\n \"13.71.173.96/27\",\r\n
+ \ \"13.71.195.0/27\",\r\n \"13.71.196.96/27\",\r\n \"13.73.240.192/27\",\r\n
+ \ \"13.73.242.0/27\",\r\n \"13.73.249.176/28\",\r\n \"13.74.107.96/27\",\r\n
+ \ \"13.74.107.224/27\",\r\n \"13.75.36.32/27\",\r\n \"13.75.39.32/27\",\r\n
+ \ \"13.77.50.192/27\",\r\n \"13.77.53.0/27\",\r\n \"13.78.106.224/27\",\r\n
+ \ \"13.78.109.64/27\",\r\n \"13.78.181.246/32\",\r\n \"13.78.182.82/32\",\r\n
+ \ \"13.84.52.76/32\",\r\n \"13.86.219.96/27\",\r\n \"13.87.39.133/32\",\r\n
+ \ \"13.87.39.173/32\",\r\n \"13.87.56.192/27\",\r\n \"13.87.58.0/27\",\r\n
+ \ \"13.87.122.192/27\",\r\n \"13.87.124.0/27\",\r\n \"13.89.170.224/27\",\r\n
+ \ \"13.89.174.96/27\",\r\n \"13.92.242.41/32\",\r\n \"13.94.47.38/32\",\r\n
+ \ \"13.104.248.32/27\",\r\n \"13.104.248.96/27\",\r\n \"20.36.46.202/32\",\r\n
+ \ \"20.36.46.220/32\",\r\n \"20.36.75.75/32\",\r\n \"20.36.75.114/32\",\r\n
+ \ \"20.36.108.0/27\",\r\n \"20.36.108.64/27\",\r\n \"20.36.115.160/27\",\r\n
+ \ \"20.36.115.192/27\",\r\n \"20.36.123.0/28\",\r\n \"20.37.67.64/28\",\r\n
+ \ \"20.37.76.0/27\",\r\n \"20.37.76.64/27\",\r\n \"20.37.198.96/28\",\r\n
+ \ \"20.37.227.0/28\",\r\n \"20.38.87.208/28\",\r\n \"20.38.128.0/27\",\r\n
+ \ \"20.38.139.64/28\",\r\n \"20.38.146.192/27\",\r\n \"20.38.147.32/27\",\r\n
+ \ \"20.39.12.240/28\",\r\n \"20.40.200.176/28\",\r\n \"20.41.67.96/28\",\r\n
+ \ \"20.41.197.32/28\",\r\n \"20.42.131.34/31\",\r\n \"20.42.230.96/28\",\r\n
+ \ \"20.43.43.176/28\",\r\n \"20.43.70.80/28\",\r\n \"20.43.120.192/27\",\r\n
+ \ \"20.44.4.0/26\",\r\n \"20.44.8.128/27\",\r\n \"20.44.16.160/27\",\r\n
+ \ \"20.44.26.192/27\",\r\n \"20.44.27.160/27\",\r\n \"20.45.75.228/32\",\r\n
+ \ \"20.45.75.230/32\",\r\n \"20.45.114.208/28\",\r\n \"20.45.122.192/27\",\r\n
+ \ \"20.45.126.32/27\",\r\n \"20.45.197.240/28\",\r\n \"20.49.83.160/27\",\r\n
+ \ \"20.49.83.192/27\",\r\n \"20.49.91.160/27\",\r\n \"20.49.93.96/27\",\r\n
+ \ \"20.49.99.48/28\",\r\n \"20.49.109.64/28\",\r\n \"20.49.113.16/28\",\r\n
+ \ \"20.49.120.48/28\",\r\n \"20.50.1.224/28\",\r\n \"20.72.21.16/28\",\r\n
+ \ \"20.72.28.224/27\",\r\n \"20.72.30.128/27\",\r\n \"20.150.165.160/28\",\r\n
+ \ \"20.150.170.32/27\",\r\n \"20.150.170.128/27\",\r\n \"20.150.172.96/27\",\r\n
+ \ \"20.150.178.192/26\",\r\n \"20.150.186.192/26\",\r\n \"20.187.194.208/28\",\r\n
+ \ \"20.192.98.192/26\",\r\n \"20.192.165.192/28\",\r\n \"20.192.230.16/28\",\r\n
+ \ \"20.192.238.32/27\",\r\n \"20.192.238.64/27\",\r\n \"20.193.205.160/27\",\r\n
+ \ \"20.193.205.192/27\",\r\n \"20.194.67.128/26\",\r\n \"23.96.185.63/32\",\r\n
+ \ \"23.96.243.93/32\",\r\n \"23.97.120.24/32\",\r\n \"23.98.82.128/27\",\r\n
+ \ \"23.98.83.32/27\",\r\n \"23.98.104.144/28\",\r\n \"23.99.97.255/32\",\r\n
+ \ \"40.64.132.112/28\",\r\n \"40.65.124.161/32\",\r\n \"40.67.50.224/28\",\r\n
+ \ \"40.67.58.32/27\",\r\n \"40.67.60.32/27\",\r\n \"40.69.106.192/27\",\r\n
+ \ \"40.69.108.0/27\",\r\n \"40.69.161.215/32\",\r\n \"40.70.72.228/32\",\r\n
+ \ \"40.70.146.96/27\",\r\n \"40.70.148.64/27\",\r\n \"40.71.10.224/27\",\r\n
+ \ \"40.71.13.192/27\",\r\n \"40.71.215.148/32\",\r\n \"40.74.100.192/27\",\r\n
+ \ \"40.74.101.224/27\",\r\n \"40.74.147.0/27\",\r\n \"40.74.147.96/27\",\r\n
+ \ \"40.74.147.128/27\",\r\n \"40.74.254.227/32\",\r\n \"40.75.34.64/27\",\r\n
+ \ \"40.75.35.0/27\",\r\n \"40.78.194.192/27\",\r\n \"40.78.196.0/27\",\r\n
+ \ \"40.78.203.128/27\",\r\n \"40.78.203.192/27\",\r\n \"40.78.226.224/27\",\r\n
+ \ \"40.78.229.0/27\",\r\n \"40.78.234.64/27\",\r\n \"40.78.234.224/27\",\r\n
+ \ \"40.78.242.192/27\",\r\n \"40.78.243.128/27\",\r\n \"40.78.250.128/27\",\r\n
+ \ \"40.78.251.64/27\",\r\n \"40.79.32.162/32\",\r\n \"40.79.130.160/27\",\r\n
+ \ \"40.79.132.0/27\",\r\n \"40.79.138.64/27\",\r\n \"40.79.138.160/27\",\r\n
+ \ \"40.79.146.64/27\",\r\n \"40.79.146.160/27\",\r\n \"40.79.154.0/27\",\r\n
+ \ \"40.79.154.224/27\",\r\n \"40.79.156.0/27\",\r\n \"40.79.162.64/27\",\r\n
+ \ \"40.79.162.160/27\",\r\n \"40.79.170.160/27\",\r\n \"40.79.171.0/27\",\r\n
+ \ \"40.79.178.192/27\",\r\n \"40.79.179.224/27\",\r\n \"40.79.186.96/27\",\r\n
+ \ \"40.79.187.128/27\",\r\n \"40.79.194.0/27\",\r\n \"40.79.195.128/27\",\r\n
+ \ \"40.80.50.192/27\",\r\n \"40.80.51.32/27\",\r\n \"40.80.62.0/28\",\r\n
+ \ \"40.80.172.32/28\",\r\n \"40.89.20.144/28\",\r\n \"40.112.243.128/27\",\r\n
+ \ \"40.120.75.192/26\",\r\n \"40.123.207.224/32\",\r\n \"40.123.219.239/32\",\r\n
+ \ \"40.126.238.47/32\",\r\n \"40.127.3.232/32\",\r\n \"51.12.42.0/28\",\r\n
+ \ \"51.12.98.32/27\",\r\n \"51.12.98.128/27\",\r\n \"51.12.194.0/28\",\r\n
+ \ \"51.12.202.32/27\",\r\n \"51.12.202.128/27\",\r\n \"51.12.226.192/26\",\r\n
+ \ \"51.12.234.192/26\",\r\n \"51.104.8.192/27\",\r\n \"51.104.28.240/28\",\r\n
+ \ \"51.105.66.192/27\",\r\n \"51.105.67.128/27\",\r\n \"51.105.74.192/27\",\r\n
+ \ \"51.105.75.32/27\",\r\n \"51.105.83.0/28\",\r\n \"51.105.90.160/28\",\r\n
+ \ \"51.107.51.0/28\",\r\n \"51.107.58.32/27\",\r\n \"51.107.60.0/27\",\r\n
+ \ \"51.107.147.0/28\",\r\n \"51.107.154.32/27\",\r\n \"51.107.156.0/27\",\r\n
+ \ \"51.116.49.144/28\",\r\n \"51.116.58.32/27\",\r\n \"51.116.60.0/27\",\r\n
+ \ \"51.116.145.144/28\",\r\n \"51.116.154.96/27\",\r\n \"51.116.156.0/27\",\r\n
+ \ \"51.116.242.192/26\",\r\n \"51.116.243.32/27\",\r\n \"51.116.250.192/27\",\r\n
+ \ \"51.116.253.96/27\",\r\n \"51.120.43.64/28\",\r\n \"51.120.98.32/27\",\r\n
+ \ \"51.120.100.0/27\",\r\n \"51.120.106.192/26\",\r\n \"51.120.210.192/26\",\r\n
+ \ \"51.120.218.32/27\",\r\n \"51.120.218.128/27\",\r\n \"51.120.227.64/28\",\r\n
+ \ \"51.137.164.96/28\",\r\n \"51.140.121.92/32\",\r\n \"51.140.127.51/32\",\r\n
+ \ \"51.140.146.224/27\",\r\n \"51.140.210.224/27\",\r\n \"51.140.212.32/27\",\r\n
+ \ \"51.141.38.88/32\",\r\n \"51.141.39.175/32\",\r\n \"51.142.213.97/32\",\r\n
+ \ \"51.142.215.251/32\",\r\n \"51.143.195.0/28\",\r\n \"52.136.51.80/28\",\r\n
+ \ \"52.136.139.224/32\",\r\n \"52.136.140.157/32\",\r\n \"52.138.90.96/27\",\r\n
+ \ \"52.138.226.96/27\",\r\n \"52.138.226.224/27\",\r\n \"52.140.108.80/28\",\r\n
+ \ \"52.143.136.162/32\",\r\n \"52.143.139.82/32\",\r\n \"52.150.139.78/31\",\r\n
+ \ \"52.150.152.32/28\",\r\n \"52.162.107.128/27\",\r\n \"52.162.110.192/27\",\r\n
+ \ \"52.164.200.174/32\",\r\n \"52.165.237.178/32\",\r\n \"52.166.50.138/32\",\r\n
+ \ \"52.167.106.96/27\",\r\n \"52.167.106.224/27\",\r\n \"52.169.6.70/32\",\r\n
+ \ \"52.172.193.99/32\",\r\n \"52.172.204.185/32\",\r\n \"52.173.243.204/32\",\r\n
+ \ \"52.175.156.251/32\",\r\n \"52.182.138.224/27\",\r\n \"52.182.139.96/27\",\r\n
+ \ \"52.183.64.43/32\",\r\n \"52.185.145.40/32\",\r\n \"52.185.154.136/32\",\r\n
+ \ \"52.187.185.17/32\",\r\n \"52.225.130.171/32\",\r\n \"52.228.84.112/28\",\r\n
+ \ \"52.230.122.197/32\",\r\n \"52.231.18.160/27\",\r\n \"52.231.19.224/27\",\r\n
+ \ \"52.231.30.200/32\",\r\n \"52.231.34.21/32\",\r\n \"52.231.146.224/27\",\r\n
+ \ \"52.231.148.32/27\",\r\n \"52.231.202.76/32\",\r\n \"52.231.206.187/32\",\r\n
+ \ \"52.233.30.2/32\",\r\n \"52.233.38.82/32\",\r\n \"52.233.130.100/32\",\r\n
+ \ \"52.235.36.131/32\",\r\n \"52.236.186.96/27\",\r\n \"52.236.187.32/27\",\r\n
+ \ \"52.237.244.169/32\",\r\n \"52.242.36.170/32\",\r\n \"52.243.87.200/32\",\r\n
+ \ \"52.246.154.192/27\",\r\n \"52.246.155.32/27\",\r\n \"52.255.51.21/32\",\r\n
+ \ \"65.52.252.0/27\",\r\n \"65.52.252.64/27\",\r\n \"102.133.27.224/27\",\r\n
+ \ \"102.133.28.32/27\",\r\n \"102.133.58.208/28\",\r\n \"102.133.72.35/32\",\r\n
+ \ \"102.133.72.42/32\",\r\n \"102.133.122.192/27\",\r\n \"102.133.123.192/27\",\r\n
+ \ \"102.133.155.224/27\",\r\n \"102.133.156.32/27\",\r\n
+ \ \"102.133.160.35/32\",\r\n \"102.133.218.128/28\",\r\n
+ \ \"102.133.250.192/27\",\r\n \"102.133.251.32/27\",\r\n
+ \ \"104.42.96.175/32\",\r\n \"104.208.16.96/27\",\r\n \"104.208.144.96/27\",\r\n
+ \ \"104.211.81.160/27\",\r\n \"104.211.146.192/27\",\r\n
+ \ \"104.211.187.232/32\",\r\n \"104.214.19.0/27\",\r\n \"104.214.108.80/32\",\r\n
+ \ \"104.215.17.87/32\",\r\n \"191.232.163.58/32\",\r\n \"191.233.11.128/28\",\r\n
+ \ \"191.233.54.32/27\",\r\n \"191.233.54.192/27\",\r\n \"191.233.203.160/27\",\r\n
+ \ \"191.233.205.32/27\",\r\n \"191.234.136.64/28\",\r\n \"191.234.146.192/26\",\r\n
+ \ \"191.234.154.192/26\",\r\n \"2603:1000:4:402::380/122\",\r\n
+ \ \"2603:1000:104:402::380/122\",\r\n \"2603:1000:104:802::260/123\",\r\n
+ \ \"2603:1000:104:802::280/123\",\r\n \"2603:1000:104:c02::260/123\",\r\n
+ \ \"2603:1000:104:c02::280/123\",\r\n \"2603:1010:6:402::380/122\",\r\n
+ \ \"2603:1010:6:802::260/123\",\r\n \"2603:1010:6:802::280/123\",\r\n
+ \ \"2603:1010:6:c02::260/123\",\r\n \"2603:1010:6:c02::280/123\",\r\n
+ \ \"2603:1010:101:402::380/122\",\r\n \"2603:1010:304:402::380/122\",\r\n
+ \ \"2603:1010:404:402::380/122\",\r\n \"2603:1020:5:402::380/122\",\r\n
+ \ \"2603:1020:5:802::260/123\",\r\n \"2603:1020:5:802::280/123\",\r\n
+ \ \"2603:1020:5:c02::260/123\",\r\n \"2603:1020:5:c02::280/123\",\r\n
+ \ \"2603:1020:206:402::380/122\",\r\n \"2603:1020:206:802::260/123\",\r\n
+ \ \"2603:1020:206:802::280/123\",\r\n \"2603:1020:206:c02::260/123\",\r\n
+ \ \"2603:1020:206:c02::280/123\",\r\n \"2603:1020:305:402::380/122\",\r\n
+ \ \"2603:1020:405:402::380/122\",\r\n \"2603:1020:605:402::380/122\",\r\n
+ \ \"2603:1020:705:402::380/122\",\r\n \"2603:1020:705:802::260/123\",\r\n
+ \ \"2603:1020:705:802::280/123\",\r\n \"2603:1020:705:c02::260/123\",\r\n
+ \ \"2603:1020:705:c02::280/123\",\r\n \"2603:1020:805:402::380/122\",\r\n
+ \ \"2603:1020:805:802::260/123\",\r\n \"2603:1020:805:802::280/123\",\r\n
+ \ \"2603:1020:805:c02::260/123\",\r\n \"2603:1020:805:c02::280/123\",\r\n
+ \ \"2603:1020:905:402::380/122\",\r\n \"2603:1020:a04:402::380/122\",\r\n
+ \ \"2603:1020:a04:802::260/123\",\r\n \"2603:1020:a04:802::280/123\",\r\n
+ \ \"2603:1020:a04:c02::260/123\",\r\n \"2603:1020:a04:c02::280/123\",\r\n
+ \ \"2603:1020:b04:402::380/122\",\r\n \"2603:1020:c04:402::380/122\",\r\n
+ \ \"2603:1020:c04:802::260/123\",\r\n \"2603:1020:c04:802::280/123\",\r\n
+ \ \"2603:1020:c04:c02::260/123\",\r\n \"2603:1020:c04:c02::280/123\",\r\n
+ \ \"2603:1020:d04:402::380/122\",\r\n \"2603:1020:e04:3::400/123\",\r\n
+ \ \"2603:1020:e04:402::380/122\",\r\n \"2603:1020:e04:802::260/123\",\r\n
+ \ \"2603:1020:e04:802::280/123\",\r\n \"2603:1020:e04:c02::260/123\",\r\n
+ \ \"2603:1020:e04:c02::280/123\",\r\n \"2603:1020:f04:402::380/122\",\r\n
+ \ \"2603:1020:1004:1::500/123\",\r\n \"2603:1020:1004:400::200/122\",\r\n
+ \ \"2603:1020:1004:800::300/122\",\r\n \"2603:1020:1004:c02::2c0/122\",\r\n
+ \ \"2603:1020:1104:1::1e0/123\",\r\n \"2603:1020:1104:400::340/122\",\r\n
+ \ \"2603:1030:f:2::6e0/123\",\r\n \"2603:1030:f:400::b80/122\",\r\n
+ \ \"2603:1030:10:402::380/122\",\r\n \"2603:1030:10:802::260/123\",\r\n
+ \ \"2603:1030:10:802::280/123\",\r\n \"2603:1030:10:c02::260/123\",\r\n
+ \ \"2603:1030:10:c02::280/123\",\r\n \"2603:1030:104:402::380/122\",\r\n
+ \ \"2603:1030:107:1::220/123\",\r\n \"2603:1030:107:400::2c0/122\",\r\n
+ \ \"2603:1030:210:402::380/122\",\r\n \"2603:1030:210:802::260/123\",\r\n
+ \ \"2603:1030:210:802::280/123\",\r\n \"2603:1030:210:c02::260/123\",\r\n
+ \ \"2603:1030:210:c02::280/123\",\r\n \"2603:1030:40b:400::b80/122\",\r\n
+ \ \"2603:1030:40b:800::260/123\",\r\n \"2603:1030:40b:800::280/123\",\r\n
+ \ \"2603:1030:40b:c00::260/123\",\r\n \"2603:1030:40b:c00::280/123\",\r\n
+ \ \"2603:1030:40c:402::380/122\",\r\n \"2603:1030:40c:802::260/123\",\r\n
+ \ \"2603:1030:40c:802::280/123\",\r\n \"2603:1030:40c:c02::260/123\",\r\n
+ \ \"2603:1030:40c:c02::280/123\",\r\n \"2603:1030:504::500/123\",\r\n
+ \ \"2603:1030:504:402::200/122\",\r\n \"2603:1030:504:802::300/122\",\r\n
+ \ \"2603:1030:504:c02::2c0/122\",\r\n \"2603:1030:608:402::380/122\",\r\n
+ \ \"2603:1030:807:402::380/122\",\r\n \"2603:1030:807:802::260/123\",\r\n
+ \ \"2603:1030:807:802::280/123\",\r\n \"2603:1030:807:c02::260/123\",\r\n
+ \ \"2603:1030:807:c02::280/123\",\r\n \"2603:1030:a07:402::300/122\",\r\n
+ \ \"2603:1030:b04:402::380/122\",\r\n \"2603:1030:c06:400::b80/122\",\r\n
+ \ \"2603:1030:c06:802::260/123\",\r\n \"2603:1030:c06:802::280/123\",\r\n
+ \ \"2603:1030:c06:c02::260/123\",\r\n \"2603:1030:c06:c02::280/123\",\r\n
+ \ \"2603:1030:f05:402::380/122\",\r\n \"2603:1030:f05:802::260/123\",\r\n
+ \ \"2603:1030:f05:802::280/123\",\r\n \"2603:1030:f05:c02::260/123\",\r\n
+ \ \"2603:1030:f05:c02::280/123\",\r\n \"2603:1030:1005:402::380/122\",\r\n
+ \ \"2603:1040:5:402::380/122\",\r\n \"2603:1040:5:802::260/123\",\r\n
+ \ \"2603:1040:5:802::280/123\",\r\n \"2603:1040:5:c02::260/123\",\r\n
+ \ \"2603:1040:5:c02::280/123\",\r\n \"2603:1040:207:402::380/122\",\r\n
+ \ \"2603:1040:407:402::380/122\",\r\n \"2603:1040:407:802::260/123\",\r\n
+ \ \"2603:1040:407:802::280/123\",\r\n \"2603:1040:407:c02::260/123\",\r\n
+ \ \"2603:1040:407:c02::280/123\",\r\n \"2603:1040:606:402::380/122\",\r\n
+ \ \"2603:1040:806:402::380/122\",\r\n \"2603:1040:904:402::380/122\",\r\n
+ \ \"2603:1040:904:802::260/123\",\r\n \"2603:1040:904:802::280/123\",\r\n
+ \ \"2603:1040:904:c02::260/123\",\r\n \"2603:1040:904:c02::280/123\",\r\n
+ \ \"2603:1040:a06:402::380/122\",\r\n \"2603:1040:a06:802::260/123\",\r\n
+ \ \"2603:1040:a06:802::280/123\",\r\n \"2603:1040:a06:c02::260/123\",\r\n
+ \ \"2603:1040:a06:c02::280/123\",\r\n \"2603:1040:b04:402::380/122\",\r\n
+ \ \"2603:1040:c06:402::380/122\",\r\n \"2603:1040:d04:1::500/123\",\r\n
+ \ \"2603:1040:d04:400::200/122\",\r\n \"2603:1040:d04:800::300/122\",\r\n
+ \ \"2603:1040:d04:c02::2c0/122\",\r\n \"2603:1040:f05:2::240/123\",\r\n
+ \ \"2603:1040:f05:402::380/122\",\r\n \"2603:1040:f05:802::260/123\",\r\n
+ \ \"2603:1040:f05:802::280/123\",\r\n \"2603:1040:f05:c02::260/123\",\r\n
+ \ \"2603:1040:f05:c02::280/123\",\r\n \"2603:1040:1104:1::1e0/123\",\r\n
+ \ \"2603:1040:1104:400::340/122\",\r\n \"2603:1050:6:402::380/122\",\r\n
+ \ \"2603:1050:6:802::260/123\",\r\n \"2603:1050:6:802::280/123\",\r\n
+ \ \"2603:1050:6:c02::260/123\",\r\n \"2603:1050:6:c02::280/123\",\r\n
+ \ \"2603:1050:403:400::260/123\",\r\n \"2603:1050:403:400::280/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage\",\r\n
+ \ \"id\": \"Storage\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureStorage\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n \"13.65.160.16/28\",\r\n
+ \ \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.67.155.16/28\",\r\n
+ \ \"13.68.120.64/28\",\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.69.40.16/28\",\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.71.200.64/28\",\r\n \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n
+ \ \"13.71.202.16/28\",\r\n \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n
+ \ \"13.72.235.64/28\",\r\n \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n
+ \ \"13.72.237.48/28\",\r\n \"13.72.237.64/28\",\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n
+ \ \"13.74.208.144/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"13.76.104.16/28\",\r\n \"13.77.8.16/28\",\r\n
+ \ \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n \"13.77.8.96/28\",\r\n
+ \ \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n \"13.77.8.192/27\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"13.77.184.64/28\",\r\n \"13.78.152.64/28\",\r\n \"13.78.240.16/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n \"13.82.152.48/28\",\r\n
+ \ \"13.82.152.80/28\",\r\n \"13.83.72.16/28\",\r\n \"13.84.56.16/28\",\r\n
+ \ \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n \"13.87.40.64/28\",\r\n
+ \ \"13.87.40.96/28\",\r\n \"13.87.104.64/28\",\r\n \"13.87.104.96/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"13.95.96.176/28\",\r\n
+ \ \"13.95.240.16/28\",\r\n \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n
+ \ \"20.38.96.0/19\",\r\n \"20.47.0.0/18\",\r\n \"20.60.0.0/16\",\r\n
+ \ \"20.150.0.0/17\",\r\n \"20.157.32.0/19\",\r\n \"20.157.128.0/19\",\r\n
+ \ \"23.96.64.64/26\",\r\n \"23.97.112.64/26\",\r\n \"23.98.49.0/26\",\r\n
+ \ \"23.98.49.192/26\",\r\n \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n
+ \ \"23.98.55.144/28\",\r\n \"23.98.56.0/26\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.98.160.64/26\",\r\n \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n
+ \ \"23.98.192.64/26\",\r\n \"23.98.255.64/26\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"23.99.160.64/26\",\r\n \"23.99.160.192/28\",\r\n \"23.102.206.0/28\",\r\n
+ \ \"23.102.206.128/28\",\r\n \"23.102.206.192/28\",\r\n \"40.68.176.16/28\",\r\n
+ \ \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n \"40.68.232.48/28\",\r\n
+ \ \"40.69.176.16/28\",\r\n \"40.70.88.0/28\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.78.72.16/28\",\r\n
+ \ \"40.78.112.64/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.79.88.16/28\",\r\n \"40.83.24.16/28\",\r\n \"40.83.24.80/28\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.104.176/28\",\r\n \"40.83.104.208/28\",\r\n
+ \ \"40.83.225.32/28\",\r\n \"40.83.227.16/28\",\r\n \"40.84.8.32/28\",\r\n
+ \ \"40.84.11.80/28\",\r\n \"40.85.105.32/28\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"40.86.232.64/28\",\r\n
+ \ \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n \"40.86.232.176/28\",\r\n
+ \ \"40.86.232.192/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"40.113.27.176/28\",\r\n \"40.114.152.16/28\",\r\n
+ \ \"40.114.152.48/28\",\r\n \"40.115.169.32/28\",\r\n \"40.115.175.16/28\",\r\n
+ \ \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n \"40.115.229.16/28\",\r\n
+ \ \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n \"40.115.231.112/28\",\r\n
+ \ \"40.115.231.128/28\",\r\n \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n
+ \ \"40.116.232.48/28\",\r\n \"40.116.232.96/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"40.118.72.176/28\",\r\n
+ \ \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n \"40.118.73.208/28\",\r\n
+ \ \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"51.140.16.16/28\",\r\n \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n
+ \ \"51.140.168.112/28\",\r\n \"51.140.168.128/28\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/23\",\r\n \"51.141.130.0/25\",\r\n \"52.161.112.16/28\",\r\n
+ \ \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n \"52.161.168.32/28\",\r\n
+ \ \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n \"52.162.56.64/27\",\r\n
+ \ \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n \"52.163.176.16/28\",\r\n
+ \ \"52.163.232.16/28\",\r\n \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n
+ \ \"52.164.232.32/28\",\r\n \"52.164.232.64/28\",\r\n \"52.165.104.16/28\",\r\n
+ \ \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n \"52.165.104.112/28\",\r\n
+ \ \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n \"52.165.136.32/28\",\r\n
+ \ \"52.165.240.64/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n
+ \ \"52.167.240.16/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.171.144.32/27\",\r\n
+ \ \"52.171.144.80/28\",\r\n \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n
+ \ \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n \"52.174.224.32/28\",\r\n
+ \ \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n \"52.174.224.128/28\",\r\n
+ \ \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.177.208.80/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.179.24.16/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n \"52.182.176.32/28\",\r\n
+ \ \"52.182.176.64/27\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n
+ \ \"52.184.168.32/28\",\r\n \"52.184.168.96/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.80/28\",\r\n
+ \ \"52.185.112.112/28\",\r\n \"52.185.233.0/24\",\r\n \"52.186.112.32/27\",\r\n
+ \ \"52.187.141.32/27\",\r\n \"52.189.177.0/24\",\r\n \"52.190.240.16/28\",\r\n
+ \ \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n \"52.190.240.112/28\",\r\n
+ \ \"52.190.240.128/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.225.40.32/27\",\r\n \"52.225.136.16/28\",\r\n \"52.225.136.32/28\",\r\n
+ \ \"52.225.240.0/28\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.228.232.0/28\",\r\n
+ \ \"52.229.80.64/27\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n
+ \ \"52.231.80.128/28\",\r\n \"52.231.80.160/27\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.232.232.16/28\",\r\n \"52.232.232.32/28\",\r\n
+ \ \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n \"52.232.232.128/27\",\r\n
+ \ \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.236.40.16/28\",\r\n
+ \ \"52.236.40.32/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.238.56.16/28\",\r\n
+ \ \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n \"52.238.56.112/28\",\r\n
+ \ \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n \"52.238.200.32/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.128.0/20\",\r\n
+ \ \"52.239.144.0/22\",\r\n \"52.239.148.0/27\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.152.0/21\",\r\n \"52.239.160.0/22\",\r\n \"52.239.164.0/24\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/21\",\r\n \"52.239.176.128/25\",\r\n
+ \ \"52.239.177.0/24\",\r\n \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n
+ \ \"52.239.184.0/22\",\r\n \"52.239.188.0/23\",\r\n \"52.239.190.0/24\",\r\n
+ \ \"52.239.191.0/28\",\r\n \"52.239.192.0/21\",\r\n \"52.239.200.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.206.0/23\",\r\n \"52.239.208.0/20\",\r\n
+ \ \"52.239.224.0/19\",\r\n \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n
+ \ \"52.240.60.16/28\",\r\n \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n
+ \ \"52.241.88.16/28\",\r\n \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n
+ \ \"52.245.40.0/24\",\r\n \"104.41.232.16/28\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.46.31.16/28\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n
+ \ \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n \"104.211.104.128/28\",\r\n
+ \ \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n \"104.211.109.80/28\",\r\n
+ \ \"104.211.109.96/28\",\r\n \"104.211.168.16/28\",\r\n \"104.211.232.16/28\",\r\n
+ \ \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n \"104.211.232.176/28\",\r\n
+ \ \"104.214.40.16/28\",\r\n \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n
+ \ \"104.215.32.64/27\",\r\n \"104.215.35.32/27\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/25\",\r\n \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n
+ \ \"137.116.96.0/25\",\r\n \"137.116.96.128/26\",\r\n \"137.135.192.64/26\",\r\n
+ \ \"137.135.192.192/26\",\r\n \"137.135.193.192/26\",\r\n
+ \ \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.61.120.32/27\",\r\n
+ \ \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.62.0.0/26\",\r\n \"168.62.1.128/26\",\r\n \"168.62.32.0/26\",\r\n
+ \ \"168.62.32.192/26\",\r\n \"168.62.33.128/26\",\r\n \"168.62.96.128/25\",\r\n
+ \ \"168.62.128.128/26\",\r\n \"168.63.0.0/26\",\r\n \"168.63.2.64/26\",\r\n
+ \ \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n \"168.63.32.0/26\",\r\n
+ \ \"168.63.33.192/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"168.63.128.0/26\",\r\n
+ \ \"168.63.128.128/25\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n
+ \ \"168.63.130.128/26\",\r\n \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n
+ \ \"168.63.156.192/26\",\r\n \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n
+ \ \"168.63.161.64/26\",\r\n \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n
+ \ \"168.63.162.32/27\",\r\n \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n
+ \ \"168.63.162.192/26\",\r\n \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n
+ \ \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n \"191.232.221.32/28\",\r\n
+ \ \"191.233.128.0/24\",\r\n \"191.235.192.192/26\",\r\n \"191.235.193.32/28\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.192/26\",\r\n
+ \ \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n \"191.237.32.240/28\",\r\n
+ \ \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.237.232.32/28\",\r\n \"191.237.232.128/28\",\r\n
+ \ \"191.237.238.32/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\",\r\n
+ \ \"191.238.64.64/26\",\r\n \"191.238.64.192/28\",\r\n \"191.238.66.0/26\",\r\n
+ \ \"191.239.192.0/26\",\r\n \"191.239.203.0/28\",\r\n \"191.239.224.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.35.0/24\",\r\n \"20.150.124.0/24\",\r\n \"52.239.216.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral2\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.36.0/24\",\r\n \"20.150.103.0/24\",\r\n \"52.239.218.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaEast\",\r\n
+ \ \"id\": \"Storage.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.72.235.64/28\",\r\n
+ \ \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n \"13.72.237.48/28\",\r\n
+ \ \"13.72.237.64/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"20.38.112.0/23\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.150.66.0/24\",\r\n
+ \ \"20.150.92.0/24\",\r\n \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n \"104.46.31.16/28\",\r\n
+ \ \"191.238.66.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.AustraliaSoutheast\",\r\n \"id\": \"Storage.AustraliaSoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.8.16/28\",\r\n \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n
+ \ \"13.77.8.96/28\",\r\n \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n
+ \ \"13.77.8.192/27\",\r\n \"20.47.38.0/24\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n \"191.239.192.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.BrazilSouth\",\r\n
+ \ \"id\": \"Storage.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.60.36.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"23.97.112.64/26\",\r\n \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n
+ \ \"191.232.221.32/28\",\r\n \"191.233.128.0/24\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaCentral\",\r\n \"id\": \"Storage.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.0/25\",\r\n \"20.47.40.0/24\",\r\n \"20.60.42.0/23\",\r\n
+ \ \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.100.0/24\",\r\n \"20.157.52.0/24\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaEast\",\r\n \"id\": \"Storage.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.60.142.0/23\",\r\n
+ \ \"20.150.1.0/25\",\r\n \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"40.86.232.64/28\",\r\n \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n
+ \ \"40.86.232.176/28\",\r\n \"40.86.232.192/28\",\r\n \"52.229.80.64/27\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralIndia\",\r\n
+ \ \"id\": \"Storage.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.150.114.0/24\",\r\n \"52.239.135.64/26\",\r\n
+ \ \"52.239.202.0/24\",\r\n \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n
+ \ \"104.211.104.128/28\",\r\n \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n
+ \ \"104.211.109.80/28\",\r\n \"104.211.109.96/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUS\",\r\n \"id\":
+ \"Storage.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.67.155.16/28\",\r\n
+ \ \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n \"20.47.58.0/23\",\r\n
+ \ \"20.60.18.0/24\",\r\n \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n
+ \ \"20.60.194.0/23\",\r\n \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n
+ \ \"20.150.63.0/24\",\r\n \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.95.0/24\",\r\n \"20.157.34.0/23\",\r\n \"23.99.160.64/26\",\r\n
+ \ \"23.99.160.192/28\",\r\n \"40.69.176.16/28\",\r\n \"40.83.24.16/28\",\r\n
+ \ \"40.83.24.80/28\",\r\n \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n
+ \ \"52.165.104.16/28\",\r\n \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n
+ \ \"52.165.104.112/28\",\r\n \"52.165.136.32/28\",\r\n \"52.165.240.64/28\",\r\n
+ \ \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n
+ \ \"52.182.176.32/28\",\r\n \"52.182.176.64/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.112/28\",\r\n
+ \ \"52.228.232.0/28\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.238.200.32/27\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.177.32/27\",\r\n \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.234.0/23\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUSEUAP\",\r\n
+ \ \"id\": \"Storage.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.150.23.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n
+ \ \"52.185.112.80/28\",\r\n \"52.239.177.0/27\",\r\n \"52.239.238.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastAsia\",\r\n
+ \ \"id\": \"Storage.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.43.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"40.83.104.176/28\",\r\n
+ \ \"40.83.104.208/28\",\r\n \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n
+ \ \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n \"52.239.128.0/24\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"168.63.128.0/26\",\r\n \"168.63.128.128/25\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n \"168.63.130.128/26\",\r\n
+ \ \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n \"168.63.156.192/26\",\r\n
+ \ \"191.237.238.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS\",\r\n \"id\": \"Storage.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n
+ \ \"13.82.152.48/28\",\r\n \"13.82.152.80/28\",\r\n \"20.38.98.0/24\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.60.0.0/24\",\r\n \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.60.0/22\",\r\n \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.146.0/23\",\r\n \"20.150.32.0/23\",\r\n \"20.150.90.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"23.96.64.64/26\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"52.179.24.16/28\",\r\n
+ \ \"52.186.112.32/27\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.239.152.0/22\",\r\n
+ \ \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n \"52.239.214.0/23\",\r\n
+ \ \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.252.0/24\",\r\n
+ \ \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n \"52.240.60.16/28\",\r\n
+ \ \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"168.62.32.0/26\",\r\n \"168.62.32.192/26\",\r\n
+ \ \"168.62.33.128/26\",\r\n \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n
+ \ \"191.237.32.240/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastUS2\",\r\n
+ \ \"id\": \"Storage.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.68.120.64/28\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"20.38.100.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.60.56.0/22\",\r\n
+ \ \"20.60.132.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.150.29.0/24\",\r\n
+ \ \"20.150.36.0/24\",\r\n \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n
+ \ \"20.150.82.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n
+ \ \"20.157.48.0/23\",\r\n \"23.102.206.0/28\",\r\n \"23.102.206.128/28\",\r\n
+ \ \"23.102.206.192/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.84.8.32/28\",\r\n \"40.84.11.80/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n \"52.167.240.16/28\",\r\n
+ \ \"52.177.208.80/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.184.168.96/27\",\r\n \"52.225.136.16/28\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.240.0/28\",\r\n \"52.232.232.16/28\",\r\n
+ \ \"52.232.232.32/28\",\r\n \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n
+ \ \"52.232.232.128/27\",\r\n \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n
+ \ \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n
+ \ \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n \"52.239.184.0/25\",\r\n
+ \ \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.185.32/27\",\r\n
+ \ \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n \"52.239.192.96/27\",\r\n
+ \ \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n \"52.239.198.0/25\",\r\n
+ \ \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n \"52.239.207.32/28\",\r\n
+ \ \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/26\",\r\n \"137.116.2.96/29\",\r\n \"137.116.2.104/30\",\r\n
+ \ \"137.116.2.108/32\",\r\n \"137.116.2.110/31\",\r\n \"137.116.2.112/32\",\r\n
+ \ \"137.116.2.114/32\",\r\n \"137.116.2.116/30\",\r\n \"137.116.2.120/29\",\r\n
+ \ \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n \"137.116.96.0/25\",\r\n
+ \ \"137.116.96.128/26\",\r\n \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.239.224.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2EUAP\",\r\n \"id\": \"Storage.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.6.0/24\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.150.108.0/24\",\r\n \"40.70.88.0/30\",\r\n \"40.70.88.4/31\",\r\n
+ \ \"40.70.88.6/32\",\r\n \"40.70.88.8/31\",\r\n \"40.70.88.10/32\",\r\n
+ \ \"40.70.88.12/32\",\r\n \"40.70.88.14/31\",\r\n \"40.79.88.16/30\",\r\n
+ \ \"40.79.88.20/31\",\r\n \"40.79.88.22/32\",\r\n \"40.79.88.24/31\",\r\n
+ \ \"40.79.88.26/32\",\r\n \"40.79.88.28/32\",\r\n \"40.79.88.30/31\",\r\n
+ \ \"52.184.168.32/30\",\r\n \"52.184.168.36/31\",\r\n \"52.184.168.38/32\",\r\n
+ \ \"52.184.168.40/31\",\r\n \"52.184.168.42/32\",\r\n \"52.184.168.44/32\",\r\n
+ \ \"52.184.168.46/31\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2Stage\",\r\n \"id\": \"Storage.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.2.64/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceCentral\",\r\n \"id\": \"Storage.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.44.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"52.239.134.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.241.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceSouth\",\r\n \"id\": \"Storage.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.28.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.150.19.0/24\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyNorth\",\r\n
+ \ \"id\": \"Storage.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.115.0/24\",\r\n
+ \ \"20.47.45.0/24\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyWestCentral\",\r\n
+ \ \"id\": \"Storage.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.118.0/24\",\r\n \"20.47.27.0/24\",\r\n \"20.60.22.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.JapanEast\",\r\n \"id\":
+ \"Storage.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"20.38.116.0/23\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n
+ \ \"20.157.38.0/24\",\r\n \"23.98.57.64/26\",\r\n \"40.115.169.32/28\",\r\n
+ \ \"40.115.175.16/28\",\r\n \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n
+ \ \"40.115.229.16/28\",\r\n \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n
+ \ \"40.115.231.112/28\",\r\n \"40.115.231.128/28\",\r\n \"52.239.144.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.JapanWest\",\r\n
+ \ \"id\": \"Storage.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.10.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.157.56.0/24\",\r\n \"23.98.56.0/26\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n \"104.215.32.64/27\",\r\n
+ \ \"104.215.35.32/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaCentral\",\r\n \"id\": \"Storage.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.46.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n \"52.231.80.128/28\",\r\n
+ \ \"52.231.80.160/27\",\r\n \"52.239.148.0/27\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.190.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaSouth\",\r\n \"id\": \"Storage.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.47.0/24\",\r\n \"20.150.14.0/23\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n
+ \ \"52.239.190.192/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUS\",\r\n \"id\": \"Storage.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"23.98.49.0/26\",\r\n \"23.98.49.192/26\",\r\n
+ \ \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n \"23.98.55.144/28\",\r\n
+ \ \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n \"40.116.232.48/28\",\r\n
+ \ \"40.116.232.96/28\",\r\n \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n
+ \ \"52.162.56.64/27\",\r\n \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.62.96.128/26\",\r\n \"168.62.96.210/32\",\r\n
+ \ \"168.62.96.224/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUSStage\",\r\n \"id\": \"Storage.NorthCentralUSStage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"168.62.96.192/29\",\r\n \"168.62.96.200/30\",\r\n
+ \ \"168.62.96.204/32\",\r\n \"168.62.96.206/31\",\r\n \"168.62.96.208/32\",\r\n
+ \ \"168.62.96.212/30\",\r\n \"168.62.96.216/29\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorthEurope\",\r\n
+ \ \"id\": \"Storage.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n \"13.74.208.144/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.144.0/23\",\r\n \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n
+ \ \"20.150.48.0/24\",\r\n \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"40.85.105.32/28\",\r\n \"40.113.27.176/28\",\r\n
+ \ \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n \"52.164.232.32/28\",\r\n
+ \ \"52.164.232.64/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.236.40.16/28\",\r\n \"52.236.40.32/28\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/24\",\r\n
+ \ \"104.41.232.16/28\",\r\n \"137.135.192.64/26\",\r\n \"137.135.192.192/26\",\r\n
+ \ \"137.135.193.192/26\",\r\n \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n
+ \ \"168.61.120.32/27\",\r\n \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n
+ \ \"168.63.32.0/26\",\r\n \"168.63.33.192/26\",\r\n \"191.235.192.192/26\",\r\n
+ \ \"191.235.193.32/28\",\r\n \"191.235.255.192/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayEast\",\r\n
+ \ \"id\": \"Storage.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.120.0/24\",\r\n
+ \ \"20.47.48.0/24\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayWest\",\r\n
+ \ \"id\": \"Storage.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.150.0.0/24\",\r\n \"20.150.56.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Storage.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.128/25\",\r\n \"20.47.50.0/24\",\r\n \"20.60.190.0/23\",\r\n
+ \ \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.101.0/24\",\r\n
+ \ \"52.239.232.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthAfricaWest\",\r\n \"id\": \"Storage.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.0/25\",\r\n \"20.47.51.0/24\",\r\n \"20.60.8.0/24\",\r\n
+ \ \"20.150.20.0/25\",\r\n \"52.239.232.128/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.SouthCentralUS\",\r\n
+ \ \"id\": \"Storage.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n
+ \ \"13.65.160.16/28\",\r\n \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n
+ \ \"13.84.56.16/28\",\r\n \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n
+ \ \"20.38.104.0/23\",\r\n \"20.47.0.0/27\",\r\n \"20.47.24.0/23\",\r\n
+ \ \"20.47.29.0/24\",\r\n \"20.60.48.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n \"20.150.70.0/24\",\r\n
+ \ \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n \"23.98.160.64/26\",\r\n
+ \ \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n \"23.98.192.64/26\",\r\n
+ \ \"23.98.255.64/26\",\r\n \"52.171.144.32/27\",\r\n \"52.171.144.80/28\",\r\n
+ \ \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n \"52.185.233.0/24\",\r\n
+ \ \"52.189.177.0/24\",\r\n \"52.239.158.0/23\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n \"104.214.40.16/28\",\r\n
+ \ \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"168.62.128.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SoutheastAsia\",\r\n \"id\": \"Storage.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.76.104.16/28\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.150.17.128/25\",\r\n
+ \ \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n \"20.150.127.0/24\",\r\n
+ \ \"52.163.176.16/28\",\r\n \"52.163.232.16/28\",\r\n \"52.187.141.32/27\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.197.0/24\",\r\n \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n
+ \ \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n \"168.63.161.64/26\",\r\n
+ \ \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n \"168.63.162.32/27\",\r\n
+ \ \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n \"168.63.162.192/26\",\r\n
+ \ \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n \"191.238.64.64/26\",\r\n
+ \ \"191.238.64.192/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthIndia\",\r\n \"id\": \"Storage.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.52.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.150.24.0/24\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.239.135.128/26\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"104.211.232.16/28\",\r\n \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n
+ \ \"104.211.232.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandNorth\",\r\n \"id\": \"Storage.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.53.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n
+ \ \"52.239.251.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandWest\",\r\n \"id\": \"Storage.SwitzerlandWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.26.0/24\",\r\n \"20.60.176.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"52.239.250.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.UAECentral\",\r\n
+ \ \"id\": \"Storage.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"52.239.233.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UAENorth\",\r\n
+ \ \"id\": \"Storage.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.60.21.0/24\",\r\n \"52.239.233.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKSouth\",\r\n
+ \ \"id\": \"Storage.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.60.17.0/24\",\r\n
+ \ \"20.60.166.0/23\",\r\n \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.69.0/24\",\r\n \"51.140.16.16/28\",\r\n
+ \ \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n \"51.140.168.112/28\",\r\n
+ \ \"51.140.168.128/28\",\r\n \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"52.239.187.0/25\",\r\n \"52.239.231.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKWest\",\r\n
+ \ \"id\": \"Storage.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.56.0/24\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n
+ \ \"20.150.110.0/24\",\r\n \"20.157.46.0/24\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n \"51.141.128.128/25\",\r\n
+ \ \"51.141.129.128/26\",\r\n \"52.239.240.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestCentralUS\",\r\n
+ \ \"id\": \"Storage.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.71.200.64/28\",\r\n
+ \ \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n \"13.71.202.16/28\",\r\n
+ \ \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n \"13.78.152.64/28\",\r\n
+ \ \"13.78.240.16/28\",\r\n \"20.47.4.0/24\",\r\n \"20.60.4.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"52.161.112.16/28\",\r\n \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n
+ \ \"52.161.168.32/28\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.WestEurope\",\r\n \"id\": \"Storage.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.40.16/28\",\r\n \"13.95.96.176/28\",\r\n \"13.95.240.16/28\",\r\n
+ \ \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.60.26.0/23\",\r\n \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n
+ \ \"20.60.196.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"40.68.176.16/28\",\r\n \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n
+ \ \"40.68.232.48/28\",\r\n \"40.114.152.16/28\",\r\n \"40.114.152.48/28\",\r\n
+ \ \"40.118.72.176/28\",\r\n \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n
+ \ \"40.118.73.208/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n
+ \ \"52.174.224.32/28\",\r\n \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n
+ \ \"52.174.224.128/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.63.0.0/26\",\r\n
+ \ \"168.63.2.64/26\",\r\n \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"191.237.232.32/28\",\r\n
+ \ \"191.237.232.128/28\",\r\n \"191.239.203.0/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestIndia\",\r\n \"id\":
+ \"Storage.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n \"104.211.168.16/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS\",\r\n
+ \ \"id\": \"Storage.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.83.72.16/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.22.0/23\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n
+ \ \"20.157.32.0/24\",\r\n \"20.157.57.0/24\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"40.78.72.16/28\",\r\n \"40.78.112.64/28\",\r\n \"40.83.225.32/28\",\r\n
+ \ \"40.83.227.16/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.190.240.16/28\",\r\n \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n
+ \ \"52.190.240.112/28\",\r\n \"52.190.240.128/28\",\r\n \"52.225.40.32/27\",\r\n
+ \ \"52.238.56.16/28\",\r\n \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n
+ \ \"52.238.56.112/28\",\r\n \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n \"52.241.88.16/28\",\r\n
+ \ \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n \"168.62.0.0/26\",\r\n
+ \ \"168.62.1.128/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS2\",\r\n
+ \ \"id\": \"Storage.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.77.184.64/28\",\r\n
+ \ \"20.38.99.0/24\",\r\n \"20.47.62.0/23\",\r\n \"20.60.20.0/24\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n
+ \ \"52.239.210.0/23\",\r\n \"52.239.236.0/23\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"StorageSyncService\",\r\n
+ \ \"id\": \"StorageSyncService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.176.196/32\",\r\n \"13.73.248.112/29\",\r\n
+ \ \"13.75.153.240/32\",\r\n \"13.76.81.46/32\",\r\n \"20.36.120.216/29\",\r\n
+ \ \"20.37.64.216/29\",\r\n \"20.37.157.80/29\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"20.37.224.216/29\",\r\n \"20.38.85.152/29\",\r\n \"20.38.136.224/29\",\r\n
+ \ \"20.39.11.96/29\",\r\n \"20.41.5.144/29\",\r\n \"20.41.65.184/29\",\r\n
+ \ \"20.41.193.160/29\",\r\n \"20.42.4.248/29\",\r\n \"20.42.131.224/29\",\r\n
+ \ \"20.42.227.128/29\",\r\n \"20.43.42.8/29\",\r\n \"20.43.66.0/29\",\r\n
+ \ \"20.43.131.40/29\",\r\n \"20.45.71.151/32\",\r\n \"20.45.112.216/29\",\r\n
+ \ \"20.45.192.248/29\",\r\n \"20.45.208.0/29\",\r\n \"20.50.1.0/29\",\r\n
+ \ \"20.72.27.184/29\",\r\n \"20.150.172.40/29\",\r\n \"20.189.108.56/29\",\r\n
+ \ \"20.192.32.232/29\",\r\n \"20.193.205.128/29\",\r\n \"23.100.106.151/32\",\r\n
+ \ \"23.102.225.54/32\",\r\n \"40.67.48.208/29\",\r\n \"40.80.57.192/29\",\r\n
+ \ \"40.80.169.176/29\",\r\n \"40.80.188.24/29\",\r\n \"40.82.253.192/29\",\r\n
+ \ \"40.89.17.232/29\",\r\n \"40.112.150.67/32\",\r\n \"40.113.94.67/32\",\r\n
+ \ \"40.123.47.110/32\",\r\n \"40.123.216.130/32\",\r\n \"51.12.101.240/29\",\r\n
+ \ \"51.12.204.248/29\",\r\n \"51.104.25.224/29\",\r\n \"51.105.80.208/29\",\r\n
+ \ \"51.105.88.248/29\",\r\n \"51.107.48.224/29\",\r\n \"51.107.144.216/29\",\r\n
+ \ \"51.116.60.244/30\",\r\n \"51.116.245.168/30\",\r\n \"51.120.40.224/29\",\r\n
+ \ \"51.120.224.216/29\",\r\n \"51.137.161.240/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"51.140.202.34/32\",\r\n \"51.143.192.208/29\",\r\n \"52.136.48.216/29\",\r\n
+ \ \"52.136.131.99/32\",\r\n \"52.140.105.184/29\",\r\n \"52.143.166.54/32\",\r\n
+ \ \"52.150.139.104/29\",\r\n \"52.161.25.233/32\",\r\n \"52.176.149.179/32\",\r\n
+ \ \"52.183.27.204/32\",\r\n \"52.225.171.85/32\",\r\n \"52.228.42.41/32\",\r\n
+ \ \"52.228.81.248/29\",\r\n \"52.231.67.75/32\",\r\n \"52.231.159.38/32\",\r\n
+ \ \"52.235.36.119/32\",\r\n \"65.52.62.167/32\",\r\n \"102.133.56.128/29\",\r\n
+ \ \"102.133.75.173/32\",\r\n \"102.133.175.72/32\",\r\n \"104.40.191.8/32\",\r\n
+ \ \"104.41.148.238/32\",\r\n \"104.41.161.113/32\",\r\n \"104.208.61.223/32\",\r\n
+ \ \"104.210.219.252/32\",\r\n \"104.211.73.56/32\",\r\n \"104.211.231.18/32\",\r\n
+ \ \"191.233.9.96/29\",\r\n \"191.235.225.216/29\",\r\n \"191.237.253.115/32\",\r\n
+ \ \"2603:1000:4::340/123\",\r\n \"2603:1000:104:1::300/123\",\r\n
+ \ \"2603:1010:6:1::300/123\",\r\n \"2603:1010:101::340/123\",\r\n
+ \ \"2603:1010:304::340/123\",\r\n \"2603:1010:404::340/123\",\r\n
+ \ \"2603:1020:5:1::300/123\",\r\n \"2603:1020:206:1::300/123\",\r\n
+ \ \"2603:1020:305::340/123\",\r\n \"2603:1020:405::340/123\",\r\n
+ \ \"2603:1020:605::340/123\",\r\n \"2603:1020:705:1::300/123\",\r\n
+ \ \"2603:1020:805:1::300/123\",\r\n \"2603:1020:905::340/123\",\r\n
+ \ \"2603:1020:a04:1::300/123\",\r\n \"2603:1020:b04::340/123\",\r\n
+ \ \"2603:1020:c04:1::300/123\",\r\n \"2603:1020:d04::340/123\",\r\n
+ \ \"2603:1020:e04:1::300/123\",\r\n \"2603:1020:e04:802::2a0/123\",\r\n
+ \ \"2603:1020:f04::340/123\",\r\n \"2603:1020:1004::300/123\",\r\n
+ \ \"2603:1020:1004:800::120/123\",\r\n \"2603:1020:1104:400::320/123\",\r\n
+ \ \"2603:1030:f:1::340/123\",\r\n \"2603:1030:f:400::dc0/123\",\r\n
+ \ \"2603:1030:10:1::300/123\",\r\n \"2603:1030:104:1::300/123\",\r\n
+ \ \"2603:1030:107:400::2a0/123\",\r\n \"2603:1030:210:1::300/123\",\r\n
+ \ \"2603:1030:40b:1::300/123\",\r\n \"2603:1030:40c:1::300/123\",\r\n
+ \ \"2603:1030:504:1::300/123\",\r\n \"2603:1030:504:802::120/123\",\r\n
+ \ \"2603:1030:608::340/123\",\r\n \"2603:1030:807:1::300/123\",\r\n
+ \ \"2603:1030:a07::340/123\",\r\n \"2603:1030:b04::340/123\",\r\n
+ \ \"2603:1030:c06:1::300/123\",\r\n \"2603:1030:f05:1::300/123\",\r\n
+ \ \"2603:1030:1005::340/123\",\r\n \"2603:1040:5:1::300/123\",\r\n
+ \ \"2603:1040:207::340/123\",\r\n \"2603:1040:407:1::300/123\",\r\n
+ \ \"2603:1040:606::340/123\",\r\n \"2603:1040:806::340/123\",\r\n
+ \ \"2603:1040:904:1::300/123\",\r\n \"2603:1040:a06:1::300/123\",\r\n
+ \ \"2603:1040:b04::340/123\",\r\n \"2603:1040:c06::340/123\",\r\n
+ \ \"2603:1040:d04::300/123\",\r\n \"2603:1040:d04:800::120/123\",\r\n
+ \ \"2603:1040:f05:1::300/123\",\r\n \"2603:1040:f05:802::2a0/123\",\r\n
+ \ \"2603:1040:1104:400::320/123\",\r\n \"2603:1050:6:1::300/123\",\r\n
+ \ \"2603:1050:6:802::2a0/123\",\r\n \"2603:1050:403::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.216/29\",\r\n \"2603:1010:304::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral2\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.216/29\",\r\n \"2603:1010:404::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaEast\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.153.240/32\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"2603:1010:6:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.CanadaEast\",\r\n \"id\":
+ \"StorageSyncService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.89.17.232/29\",\r\n \"52.235.36.119/32\",\r\n
+ \ \"2603:1030:1005::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.EastUS2\",\r\n \"id\":
+ \"StorageSyncService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.144/29\",\r\n \"40.123.47.110/32\",\r\n
+ \ \"2603:1030:40c:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.FranceSouth\",\r\n \"id\":
+ \"StorageSyncService.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.88.248/29\",\r\n \"52.136.131.99/32\",\r\n
+ \ \"2603:1020:905::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.SouthAfricaWest\",\r\n \"id\":
+ \"StorageSyncService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.56.128/29\",\r\n \"102.133.75.173/32\",\r\n
+ \ \"2603:1000:4::340/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"StorageSyncService.SouthIndia\",\r\n \"id\": \"StorageSyncService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"StorageSyncService\",\r\n \"addressPrefixes\": [\r\n \"20.41.193.160/29\",\r\n
+ \ \"104.211.231.18/32\",\r\n \"2603:1040:c06::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.SwitzerlandWest\",\r\n
+ \ \"id\": \"StorageSyncService.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.216/29\",\r\n \"2603:1020:b04::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.UKSouth\",\r\n
+ \ \"id\": \"StorageSyncService.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.25.224/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"2603:1020:705:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"WindowsVirtualDesktop\",\r\n \"id\": \"WindowsVirtualDesktop\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.251.49/32\",\r\n \"13.67.68.78/32\",\r\n \"13.68.76.104/32\",\r\n
+ \ \"13.69.82.138/32\",\r\n \"13.69.156.85/32\",\r\n \"13.70.40.201/32\",\r\n
+ \ \"13.70.120.215/32\",\r\n \"13.71.5.20/32\",\r\n \"13.71.67.87/32\",\r\n
+ \ \"13.71.81.161/32\",\r\n \"13.71.113.6/32\",\r\n \"13.73.237.154/32\",\r\n
+ \ \"13.75.114.143/32\",\r\n \"13.75.171.61/32\",\r\n \"13.75.198.169/32\",\r\n
+ \ \"13.76.88.89/32\",\r\n \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n
+ \ \"13.77.45.213/32\",\r\n \"13.77.140.58/32\",\r\n \"13.79.243.194/32\",\r\n
+ \ \"13.88.221.28/32\",\r\n \"13.88.254.98/32\",\r\n \"20.36.33.29/32\",\r\n
+ \ \"20.36.33.170/32\",\r\n \"20.36.35.190/32\",\r\n \"20.36.38.195/32\",\r\n
+ \ \"20.36.39.50/32\",\r\n \"20.36.39.171/32\",\r\n \"20.36.41.74/32\",\r\n
+ \ \"20.41.77.252/32\",\r\n \"20.45.64.86/32\",\r\n \"20.45.67.112/32\",\r\n
+ \ \"20.45.67.185/32\",\r\n \"20.45.79.3/32\",\r\n \"20.45.79.24/32\",\r\n
+ \ \"20.45.79.91/32\",\r\n \"20.45.79.96/32\",\r\n \"20.45.79.168/32\",\r\n
+ \ \"20.46.45.161/32\",\r\n \"20.46.46.252/32\",\r\n \"20.188.3.1/32\",\r\n
+ \ \"20.188.39.108/32\",\r\n \"20.188.41.240/32\",\r\n \"20.188.45.82/32\",\r\n
+ \ \"20.190.43.99/32\",\r\n \"23.97.108.170/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"23.98.133.187/32\",\r\n \"23.99.141.138/32\",\r\n \"23.100.50.154/32\",\r\n
+ \ \"23.100.98.36/32\",\r\n \"23.101.5.54/32\",\r\n \"23.101.220.135/32\",\r\n
+ \ \"23.102.229.113/32\",\r\n \"40.65.122.222/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.69.31.73/32\",\r\n \"40.69.90.166/32\",\r\n \"40.69.102.46/32\",\r\n
+ \ \"40.69.149.151/32\",\r\n \"40.70.189.87/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"40.75.30.117/32\",\r\n \"40.80.80.48/32\",\r\n \"40.83.79.39/32\",\r\n
+ \ \"40.85.241.159/32\",\r\n \"40.86.204.245/32\",\r\n \"40.86.205.216/32\",\r\n
+ \ \"40.86.208.118/32\",\r\n \"40.86.222.183/32\",\r\n \"40.89.129.146/32\",\r\n
+ \ \"40.89.154.76/32\",\r\n \"40.113.199.138/32\",\r\n \"40.113.200.58/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"40.115.136.175/32\",\r\n \"40.119.163.43/32\",\r\n
+ \ \"40.119.167.95/32\",\r\n \"40.120.39.124/32\",\r\n \"40.122.28.196/32\",\r\n
+ \ \"40.122.212.20/32\",\r\n \"40.123.228.58/32\",\r\n \"40.123.230.81/32\",\r\n
+ \ \"40.123.230.179/32\",\r\n \"40.123.230.249/32\",\r\n \"40.127.3.207/32\",\r\n
+ \ \"51.11.13.248/32\",\r\n \"51.11.241.142/32\",\r\n \"51.104.49.88/32\",\r\n
+ \ \"51.105.54.123/32\",\r\n \"51.107.68.172/32\",\r\n \"51.107.69.35/32\",\r\n
+ \ \"51.107.78.168/32\",\r\n \"51.107.85.67/32\",\r\n \"51.107.85.110/32\",\r\n
+ \ \"51.107.86.7/32\",\r\n \"51.107.86.99/32\",\r\n \"51.116.171.102/32\",\r\n
+ \ \"51.116.182.248/32\",\r\n \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n
+ \ \"51.116.225.55/32\",\r\n \"51.116.236.74/32\",\r\n \"51.116.236.84/32\",\r\n
+ \ \"51.120.69.158/32\",\r\n \"51.120.70.135/32\",\r\n \"51.120.70.141/32\",\r\n
+ \ \"51.120.77.155/32\",\r\n \"51.120.78.142/32\",\r\n \"51.120.79.212/32\",\r\n
+ \ \"51.120.88.120/32\",\r\n \"51.132.29.107/32\",\r\n \"51.136.28.200/32\",\r\n
+ \ \"51.137.89.79/32\",\r\n \"51.140.57.159/32\",\r\n \"51.140.206.110/32\",\r\n
+ \ \"51.140.231.223/32\",\r\n \"51.140.255.55/32\",\r\n \"51.141.30.31/32\",\r\n
+ \ \"51.141.122.89/32\",\r\n \"51.141.173.236/32\",\r\n \"51.143.39.79/32\",\r\n
+ \ \"51.143.164.192/32\",\r\n \"51.143.169.107/32\",\r\n \"51.145.17.75/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"52.138.20.115/32\",\r\n \"52.138.28.23/32\",\r\n
+ \ \"52.141.37.201/32\",\r\n \"52.141.56.101/32\",\r\n \"52.142.161.0/32\",\r\n
+ \ \"52.142.162.226/32\",\r\n \"52.143.96.87/32\",\r\n \"52.143.182.208/32\",\r\n
+ \ \"52.147.3.93/32\",\r\n \"52.147.160.158/32\",\r\n \"52.151.53.196/32\",\r\n
+ \ \"52.155.111.124/32\",\r\n \"52.156.171.127/32\",\r\n \"52.163.209.255/32\",\r\n
+ \ \"52.164.126.124/32\",\r\n \"52.165.218.15/32\",\r\n \"52.167.163.135/32\",\r\n
+ \ \"52.167.171.53/32\",\r\n \"52.169.5.116/32\",\r\n \"52.171.36.33/32\",\r\n
+ \ \"52.172.34.74/32\",\r\n \"52.172.40.215/32\",\r\n \"52.172.133.5/32\",\r\n
+ \ \"52.172.194.109/32\",\r\n \"52.172.210.235/32\",\r\n \"52.172.217.34/32\",\r\n
+ \ \"52.172.223.46/32\",\r\n \"52.173.89.168/32\",\r\n \"52.175.144.120/32\",\r\n
+ \ \"52.175.253.156/32\",\r\n \"52.177.123.162/32\",\r\n \"52.177.172.247/32\",\r\n
+ \ \"52.183.19.64/32\",\r\n \"52.183.130.137/32\",\r\n \"52.185.202.152/32\",\r\n
+ \ \"52.187.127.152/32\",\r\n \"52.189.194.14/32\",\r\n \"52.189.215.151/32\",\r\n
+ \ \"52.189.233.158/32\",\r\n \"52.191.129.231/32\",\r\n \"52.228.29.164/32\",\r\n
+ \ \"52.229.117.254/32\",\r\n \"52.229.125.45/32\",\r\n \"52.229.207.180/32\",\r\n
+ \ \"52.231.13.193/32\",\r\n \"52.231.38.211/32\",\r\n \"52.231.93.224/32\",\r\n
+ \ \"52.231.98.58/32\",\r\n \"52.231.155.130/32\",\r\n \"52.231.156.19/32\",\r\n
+ \ \"52.231.164.163/32\",\r\n \"52.231.166.199/32\",\r\n \"52.231.195.7/32\",\r\n
+ \ \"52.231.197.195/32\",\r\n \"52.231.206.162/32\",\r\n \"52.233.16.198/32\",\r\n
+ \ \"52.237.20.14/32\",\r\n \"52.237.201.246/32\",\r\n \"52.237.253.245/32\",\r\n
+ \ \"52.242.86.101/32\",\r\n \"52.243.65.107/32\",\r\n \"52.243.74.213/32\",\r\n
+ \ \"52.246.165.140/32\",\r\n \"52.246.177.221/32\",\r\n \"52.246.191.98/32\",\r\n
+ \ \"52.247.122.225/32\",\r\n \"52.247.123.0/32\",\r\n \"52.255.40.105/32\",\r\n
+ \ \"52.255.61.145/32\",\r\n \"65.52.71.120/32\",\r\n \"65.52.158.177/32\",\r\n
+ \ \"70.37.83.67/32\",\r\n \"70.37.86.126/32\",\r\n \"70.37.99.24/32\",\r\n
+ \ \"102.37.42.159/32\",\r\n \"102.133.64.36/32\",\r\n \"102.133.64.68/32\",\r\n
+ \ \"102.133.64.91/32\",\r\n \"102.133.64.111/32\",\r\n \"102.133.72.250/32\",\r\n
+ \ \"102.133.75.8/32\",\r\n \"102.133.75.32/32\",\r\n \"102.133.75.35/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\",\r\n
+ \ \"104.40.156.194/32\",\r\n \"104.41.45.182/32\",\r\n \"104.41.166.159/32\",\r\n
+ \ \"104.43.169.4/32\",\r\n \"104.46.237.209/32\",\r\n \"104.208.28.82/32\",\r\n
+ \ \"104.209.233.222/32\",\r\n \"104.210.150.160/32\",\r\n
+ \ \"104.211.78.17/32\",\r\n \"104.211.114.61/32\",\r\n \"104.211.138.88/32\",\r\n
+ \ \"104.211.140.190/32\",\r\n \"104.211.155.114/32\",\r\n
+ \ \"104.211.165.123/32\",\r\n \"104.211.184.150/32\",\r\n
+ \ \"104.211.188.151/32\",\r\n \"104.211.211.213/32\",\r\n
+ \ \"104.211.216.230/32\",\r\n \"104.211.242.104/32\",\r\n
+ \ \"104.214.60.144/32\",\r\n \"104.214.237.23/32\",\r\n \"104.215.51.3/32\",\r\n
+ \ \"104.215.103.51/32\",\r\n \"104.215.112.85/32\",\r\n \"137.116.49.12/32\",\r\n
+ \ \"137.116.248.148/32\",\r\n \"137.117.171.26/32\",\r\n
+ \ \"137.135.243.65/32\",\r\n \"138.91.44.13/32\",\r\n \"168.61.167.193/32\",\r\n
+ \ \"168.63.31.54/32\",\r\n \"168.63.71.119/32\",\r\n \"168.63.137.213/32\",\r\n
+ \ \"191.232.49.74/32\",\r\n \"191.232.166.149/32\",\r\n \"191.232.235.70/32\",\r\n
+ \ \"191.232.238.73/32\",\r\n \"191.234.191.63/32\",\r\n \"191.235.65.127/32\",\r\n
+ \ \"191.235.73.211/32\",\r\n \"191.235.78.126/32\",\r\n \"191.239.248.16/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.171.102/32\",\r\n \"51.116.182.248/32\",\r\n
+ \ \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n \"51.116.225.55/32\",\r\n
+ \ \"51.116.236.74/32\",\r\n \"51.116.236.84/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.JapanWest\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.237.154/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"52.175.144.120/32\",\r\n \"104.46.237.209/32\",\r\n \"104.215.51.3/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.127.3.207/32\",\r\n \"102.37.42.159/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.68.78/32\",\r\n \"13.76.88.89/32\",\r\n
+ \ \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"52.163.209.255/32\",\r\n \"52.187.127.152/32\",\r\n \"138.91.44.13/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.WestEurope\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.82.138/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"51.136.28.200/32\",\r\n \"51.137.89.79/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"65.52.158.177/32\",\r\n \"104.40.156.194/32\",\r\n
+ \ \"104.214.237.23/32\",\r\n \"137.117.171.26/32\",\r\n \"168.63.31.54/32\"\r\n
+ \ ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1580866'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 08:51:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - a1a5076c-7ab6-4ff9-be6d-6de2a613bc75
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"East
+ US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOTNETCORE|3.1","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3737'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"East
+ US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOTNETCORE|3.1","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3737'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm",
+ "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx",
+ "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion":
+ "", "pythonVersion": "", "nodeVersion": "", "powerShellVersion": "", "linuxFxVersion":
+ "DOTNETCORE|3.1", "requestTracingEnabled": false, "remoteDebuggingEnabled":
+ false, "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled":
+ false, "publishingUsername": "$cli-webapp-nwr000002", "scmType": "None", "use32BitWorkerProcess":
+ true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode":
+ "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot",
+ "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments":
+ {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "vnetRouteAllEnabled":
+ false, "vnetPrivatePortsCount": 0, "localMySqlEnabled": false, "ipSecurityRestrictions":
+ [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all",
+ "description": "Allow all access"}, {"ipAddress": "AzureFrontDoor.Backend",
+ "action": "Allow", "tag": "ServiceTag", "priority": 200, "name": "afd", "headers":
+ {"x-azure-fdid": ["12345678-abcd-1234-abcd-12345678910a"]}}], "scmIpSecurityRestrictions":
+ [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all",
+ "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false,
+ "http20Enabled": true, "minTlsVersion": "1.2", "scmMinTlsVersion": "1.0", "ftpsState":
+ "AllAllowed", "preWarmedInstanceCount": 0}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1661'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"East
+ US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOTNETCORE|3.1","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"AzureFrontDoor.Backend","action":"Allow","tag":"ServiceTag","priority":200,"name":"afd","headers":{"x-azure-fdid":["12345678-abcd-1234-abcd-12345678910a"]}},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3900'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:41 GMT
+ etag:
+ - '"1D7310B55AFB9E0"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1191'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --service-tag
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-081.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOTNETCORE|3.1"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:51:41.4166667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app,linux","inboundIpAddress":"20.49.97.4","possibleInboundIpAddresses":"20.49.97.4","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-bn1-081.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.177.39.2,52.232.208.24,52.232.209.56,52.232.212.180,52.167.13.214,52.232.212.233,20.49.97.4","possibleOutboundIpAddresses":"52.177.39.2,52.232.208.24,52.232.209.56,52.232.212.180,52.167.13.214,52.232.212.233,52.232.213.56,52.232.213.85,52.232.213.90,52.232.213.100,52.232.213.122,52.232.208.182,52.247.76.89,52.247.76.111,52.247.76.163,52.247.76.166,52.247.76.170,52.247.76.201,20.49.97.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-081","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6194'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:42 GMT
+ etag:
+ - '"1D7310B637BA08B"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --service-tag
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/East%20US%202/serviceTags?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"Public\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/serviceTags/Public\",\r\n
+ \ \"type\": \"Microsoft.Network/serviceTags\",\r\n \"changeNumber\": \"71\",\r\n
+ \ \"cloud\": \"Public\",\r\n \"values\": [\r\n {\r\n \"name\": \"ActionGroup\",\r\n
+ \ \"id\": \"ActionGroup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.60.119/32\",\r\n \"13.66.143.220/30\",\r\n
+ \ \"13.66.202.14/32\",\r\n \"13.66.248.225/32\",\r\n \"13.66.249.211/32\",\r\n
+ \ \"13.67.10.124/30\",\r\n \"13.69.109.132/30\",\r\n \"13.71.199.112/30\",\r\n
+ \ \"13.77.53.216/30\",\r\n \"13.77.172.102/32\",\r\n \"13.77.183.209/32\",\r\n
+ \ \"13.78.109.156/30\",\r\n \"13.84.49.247/32\",\r\n \"13.84.51.172/32\",\r\n
+ \ \"13.84.52.58/32\",\r\n \"13.86.221.220/30\",\r\n \"13.106.38.142/32\",\r\n
+ \ \"13.106.38.148/32\",\r\n \"13.106.54.3/32\",\r\n \"13.106.54.19/32\",\r\n
+ \ \"13.106.57.181/32\",\r\n \"13.106.57.196/31\",\r\n \"20.38.149.132/30\",\r\n
+ \ \"20.42.64.36/30\",\r\n \"20.43.121.124/30\",\r\n \"20.44.17.220/30\",\r\n
+ \ \"20.45.123.236/30\",\r\n \"20.72.27.152/30\",\r\n \"20.150.172.228/30\",\r\n
+ \ \"20.192.238.124/30\",\r\n \"20.193.202.4/30\",\r\n \"40.68.195.137/32\",\r\n
+ \ \"40.68.201.58/32\",\r\n \"40.68.201.65/32\",\r\n \"40.68.201.206/32\",\r\n
+ \ \"40.68.201.211/32\",\r\n \"40.68.204.18/32\",\r\n \"40.115.37.106/32\",\r\n
+ \ \"40.121.219.215/32\",\r\n \"40.121.221.62/32\",\r\n \"40.121.222.201/32\",\r\n
+ \ \"40.121.223.186/32\",\r\n \"51.12.101.172/30\",\r\n \"51.12.204.244/30\",\r\n
+ \ \"51.104.9.100/30\",\r\n \"52.183.20.244/32\",\r\n \"52.183.31.0/32\",\r\n
+ \ \"52.183.94.59/32\",\r\n \"52.184.145.166/32\",\r\n \"168.61.142.52/30\",\r\n
+ \ \"191.233.50.4/30\",\r\n \"191.233.207.64/26\",\r\n \"2603:1000:4:402::178/125\",\r\n
+ \ \"2603:1000:104:402::178/125\",\r\n \"2603:1010:6:402::178/125\",\r\n
+ \ \"2603:1010:101:402::178/125\",\r\n \"2603:1010:304:402::178/125\",\r\n
+ \ \"2603:1010:404:402::178/125\",\r\n \"2603:1020:5:402::178/125\",\r\n
+ \ \"2603:1020:206:402::178/125\",\r\n \"2603:1020:305:402::178/125\",\r\n
+ \ \"2603:1020:405:402::178/125\",\r\n \"2603:1020:605:402::178/125\",\r\n
+ \ \"2603:1020:705:402::178/125\",\r\n \"2603:1020:805:402::178/125\",\r\n
+ \ \"2603:1020:905:402::178/125\",\r\n \"2603:1020:a04:402::178/125\",\r\n
+ \ \"2603:1020:b04:402::178/125\",\r\n \"2603:1020:c04:402::178/125\",\r\n
+ \ \"2603:1020:d04:402::178/125\",\r\n \"2603:1020:e04:402::178/125\",\r\n
+ \ \"2603:1020:f04:402::178/125\",\r\n \"2603:1020:1004:800::f8/125\",\r\n
+ \ \"2603:1020:1104:400::178/125\",\r\n \"2603:1030:f:400::978/125\",\r\n
+ \ \"2603:1030:10:402::178/125\",\r\n \"2603:1030:104:402::178/125\",\r\n
+ \ \"2603:1030:107:400::f0/125\",\r\n \"2603:1030:210:402::178/125\",\r\n
+ \ \"2603:1030:40b:400::978/125\",\r\n \"2603:1030:40c:402::178/125\",\r\n
+ \ \"2603:1030:504:802::f8/125\",\r\n \"2603:1030:608:402::178/125\",\r\n
+ \ \"2603:1030:807:402::178/125\",\r\n \"2603:1030:a07:402::8f8/125\",\r\n
+ \ \"2603:1030:b04:402::178/125\",\r\n \"2603:1030:c06:400::978/125\",\r\n
+ \ \"2603:1030:f05:402::178/125\",\r\n \"2603:1030:1005:402::178/125\",\r\n
+ \ \"2603:1040:5:402::178/125\",\r\n \"2603:1040:207:402::178/125\",\r\n
+ \ \"2603:1040:407:402::178/125\",\r\n \"2603:1040:606:402::178/125\",\r\n
+ \ \"2603:1040:806:402::178/125\",\r\n \"2603:1040:904:402::178/125\",\r\n
+ \ \"2603:1040:a06:402::178/125\",\r\n \"2603:1040:b04:402::178/125\",\r\n
+ \ \"2603:1040:c06:402::178/125\",\r\n \"2603:1040:d04:800::f8/125\",\r\n
+ \ \"2603:1040:f05:402::178/125\",\r\n \"2603:1040:1104:400::178/125\",\r\n
+ \ \"2603:1050:6:402::178/125\",\r\n \"2603:1050:403:400::1f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:304:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral2\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:404:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaEast\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:6:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CanadaEast\",\r\n
+ \ \"id\": \"ActionGroup.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:1005:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUS\",\r\n
+ \ \"id\": \"ActionGroup.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:10:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUSEUAP\",\r\n
+ \ \"id\": \"ActionGroup.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"168.61.142.52/30\",\r\n
+ \ \"2603:1030:f:400::978/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastAsia\",\r\n \"id\": \"ActionGroup.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1040:207:402::178/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.EastUS2\",\r\n \"id\":
+ \"ActionGroup.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.17.220/30\",\r\n \"52.184.145.166/32\",\r\n
+ \ \"2603:1030:40c:402::178/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastUS2EUAP\",\r\n \"id\": \"ActionGroup.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1030:40b:400::978/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.FranceCentral\",\r\n \"id\":
+ \"ActionGroup.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:805:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.FranceSouth\",\r\n
+ \ \"id\": \"ActionGroup.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:905:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyNorth\",\r\n
+ \ \"id\": \"ActionGroup.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyWestCentral\",\r\n
+ \ \"id\": \"ActionGroup.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:c04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.JapanWest\",\r\n
+ \ \"id\": \"ActionGroup.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:606:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.KoreaCentral\",\r\n
+ \ \"id\": \"ActionGroup.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1040:f05:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorthEurope\",\r\n
+ \ \"id\": \"ActionGroup.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:5:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayEast\",\r\n
+ \ \"id\": \"ActionGroup.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:e04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayWest\",\r\n
+ \ \"id\": \"ActionGroup.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:f04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaNorth\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:104:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaWest\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthIndia\",\r\n
+ \ \"id\": \"ActionGroup.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:c06:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:a04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandWest\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAECentral\",\r\n
+ \ \"id\": \"ActionGroup.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAENorth\",\r\n
+ \ \"id\": \"ActionGroup.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:904:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKNorth\",\r\n
+ \ \"id\": \"ActionGroup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:305:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKSouth2\",\r\n
+ \ \"id\": \"ActionGroup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:405:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKWest\",\r\n
+ \ \"id\": \"ActionGroup.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:605:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestIndia\",\r\n
+ \ \"id\": \"ActionGroup.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:806:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestUS\",\r\n
+ \ \"id\": \"ActionGroup.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.221.220/30\",\r\n \"2603:1030:a07:402::8f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement\",\r\n
+ \ \"id\": \"ApiManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.39.16/32\",\r\n \"13.66.138.92/31\",\r\n \"13.66.140.176/28\",\r\n
+ \ \"13.67.8.108/31\",\r\n \"13.67.9.208/28\",\r\n \"13.69.64.76/31\",\r\n
+ \ \"13.69.66.144/28\",\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.71.49.1/32\",\r\n
+ \ \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n \"13.71.194.116/31\",\r\n
+ \ \"13.71.196.32/28\",\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n
+ \ \"13.75.217.184/32\",\r\n \"13.75.221.78/32\",\r\n \"13.77.50.68/31\",\r\n
+ \ \"13.77.52.224/28\",\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"13.86.102.66/32\",\r\n
+ \ \"13.87.56.84/31\",\r\n \"13.87.57.144/28\",\r\n \"13.87.122.84/31\",\r\n
+ \ \"13.87.123.144/28\",\r\n \"13.89.170.204/31\",\r\n \"13.89.174.64/28\",\r\n
+ \ \"20.36.106.68/31\",\r\n \"20.36.107.176/28\",\r\n \"20.36.114.20/31\",\r\n
+ \ \"20.36.115.128/28\",\r\n \"20.37.52.67/32\",\r\n \"20.37.74.224/31\",\r\n
+ \ \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n \"20.39.80.2/32\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"20.40.125.155/32\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"20.44.2.4/31\",\r\n \"20.44.3.224/28\",\r\n \"20.44.33.246/32\",\r\n
+ \ \"20.44.72.3/32\",\r\n \"20.46.13.224/28\",\r\n \"20.46.144.85/32\",\r\n
+ \ \"20.72.26.16/28\",\r\n \"20.150.167.160/28\",\r\n \"20.150.170.224/28\",\r\n
+ \ \"20.188.77.119/32\",\r\n \"20.192.50.64/28\",\r\n \"20.192.234.160/28\",\r\n
+ \ \"20.193.192.48/28\",\r\n \"20.193.202.160/28\",\r\n \"20.194.74.240/28\",\r\n
+ \ \"23.96.224.175/32\",\r\n \"23.101.67.140/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.66.60.111/32\",\r\n \"40.67.58.224/28\",\r\n \"40.69.106.68/31\",\r\n
+ \ \"40.69.107.224/28\",\r\n \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n
+ \ \"40.71.10.204/31\",\r\n \"40.71.13.128/28\",\r\n \"40.74.100.52/31\",\r\n
+ \ \"40.74.101.48/28\",\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"40.78.194.68/31\",\r\n \"40.78.195.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"40.79.130.44/31\",\r\n \"40.79.131.192/28\",\r\n
+ \ \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n \"40.80.232.185/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"40.81.89.24/32\",\r\n \"40.81.185.8/32\",\r\n
+ \ \"40.82.157.167/32\",\r\n \"40.90.185.46/32\",\r\n \"40.112.242.148/31\",\r\n
+ \ \"40.112.243.240/28\",\r\n \"51.12.17.0/28\",\r\n \"51.12.25.16/28\",\r\n
+ \ \"51.12.98.224/28\",\r\n \"51.12.202.224/28\",\r\n \"51.107.0.91/32\",\r\n
+ \ \"51.107.59.0/28\",\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n
+ \ \"51.116.0.0/32\",\r\n \"51.116.59.0/28\",\r\n \"51.116.96.0/32\",\r\n
+ \ \"51.116.155.64/28\",\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n \"51.120.234.240/28\",\r\n
+ \ \"51.137.136.0/32\",\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"51.143.127.203/32\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"51.145.179.78/32\",\r\n \"52.139.20.34/32\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"52.139.152.27/32\",\r\n \"52.140.238.179/32\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"52.224.186.99/32\",\r\n \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n
+ \ \"52.231.146.84/31\",\r\n \"52.231.147.176/28\",\r\n \"52.253.135.58/32\",\r\n
+ \ \"52.253.159.160/32\",\r\n \"52.253.229.253/32\",\r\n \"65.52.164.91/32\",\r\n
+ \ \"65.52.173.247/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n \"102.133.28.0/28\",\r\n
+ \ \"102.133.130.197/32\",\r\n \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n
+ \ \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n \"104.211.81.28/31\",\r\n
+ \ \"104.211.81.240/28\",\r\n \"104.211.146.68/31\",\r\n \"104.211.147.144/28\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"137.117.160.56/32\",\r\n
+ \ \"191.232.18.181/32\",\r\n \"191.233.24.179/32\",\r\n \"191.233.50.192/28\",\r\n
+ \ \"191.233.203.28/31\",\r\n \"191.233.203.240/28\",\r\n
+ \ \"191.238.241.97/32\",\r\n \"2603:1000:4:402::140/124\",\r\n
+ \ \"2603:1000:104:402::140/124\",\r\n \"2603:1010:6:402::140/124\",\r\n
+ \ \"2603:1010:101:402::140/124\",\r\n \"2603:1010:304:402::140/124\",\r\n
+ \ \"2603:1010:404:402::140/124\",\r\n \"2603:1020:5:402::140/124\",\r\n
+ \ \"2603:1020:206:402::140/124\",\r\n \"2603:1020:305:402::140/124\",\r\n
+ \ \"2603:1020:405:402::140/124\",\r\n \"2603:1020:605:402::140/124\",\r\n
+ \ \"2603:1020:705:402::140/124\",\r\n \"2603:1020:805:402::140/124\",\r\n
+ \ \"2603:1020:905:402::140/124\",\r\n \"2603:1020:a04:402::140/124\",\r\n
+ \ \"2603:1020:b04:402::140/124\",\r\n \"2603:1020:c04:402::140/124\",\r\n
+ \ \"2603:1020:d04:402::140/124\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\",\r\n \"2603:1020:f04:402::140/124\",\r\n
+ \ \"2603:1020:1004:1::700/124\",\r\n \"2603:1020:1004:800::c0/124\",\r\n
+ \ \"2603:1020:1104:1::3c0/124\",\r\n \"2603:1020:1104:400::140/124\",\r\n
+ \ \"2603:1030:f:2::490/124\",\r\n \"2603:1030:f:400::940/124\",\r\n
+ \ \"2603:1030:10:402::140/124\",\r\n \"2603:1030:104:402::140/124\",\r\n
+ \ \"2603:1030:107:400::c0/124\",\r\n \"2603:1030:210:402::140/124\",\r\n
+ \ \"2603:1030:40b:400::940/124\",\r\n \"2603:1030:40c:402::140/124\",\r\n
+ \ \"2603:1030:504:2::80/124\",\r\n \"2603:1030:608:402::140/124\",\r\n
+ \ \"2603:1030:807:402::140/124\",\r\n \"2603:1030:a07:402::8c0/124\",\r\n
+ \ \"2603:1030:b04:402::140/124\",\r\n \"2603:1030:c06:400::940/124\",\r\n
+ \ \"2603:1030:f05:402::140/124\",\r\n \"2603:1030:1005:402::140/124\",\r\n
+ \ \"2603:1040:5:402::140/124\",\r\n \"2603:1040:207:402::140/124\",\r\n
+ \ \"2603:1040:407:402::140/124\",\r\n \"2603:1040:606:402::140/124\",\r\n
+ \ \"2603:1040:806:402::140/124\",\r\n \"2603:1040:904:402::140/124\",\r\n
+ \ \"2603:1040:a06:402::140/124\",\r\n \"2603:1040:b04:402::140/124\",\r\n
+ \ \"2603:1040:c06:402::140/124\",\r\n \"2603:1040:d04:1::700/124\",\r\n
+ \ \"2603:1040:d04:800::c0/124\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\",\r\n \"2603:1040:1104:1::400/124\",\r\n
+ \ \"2603:1040:1104:400::140/124\",\r\n \"2603:1050:6:402::140/124\",\r\n
+ \ \"2603:1050:403:400::2a0/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.AustraliaCentral\",\r\n \"id\":
+ \"ApiManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.106.68/31\",\r\n
+ \ \"20.36.107.176/28\",\r\n \"20.37.52.67/32\",\r\n \"2603:1010:304:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.20/31\",\r\n \"20.36.115.128/28\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"2603:1010:404:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaEast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.75.217.184/32\",\r\n
+ \ \"13.75.221.78/32\",\r\n \"20.40.125.155/32\",\r\n \"2603:1010:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.68/31\",\r\n \"13.77.52.224/28\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"2603:1010:101:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.BrazilSouth\",\r\n \"id\": \"ApiManagement.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.24.179/32\",\r\n \"191.233.203.28/31\",\r\n
+ \ \"191.233.203.240/28\",\r\n \"2603:1050:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaCentral\",\r\n
+ \ \"id\": \"ApiManagement.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n
+ \ \"52.139.20.34/32\",\r\n \"2603:1030:f05:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaEast\",\r\n
+ \ \"id\": \"ApiManagement.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.68/31\",\r\n \"40.69.107.224/28\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"2603:1030:1005:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralIndia\",\r\n
+ \ \"id\": \"ApiManagement.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.49.1/32\",\r\n \"104.211.81.28/31\",\r\n \"104.211.81.240/28\",\r\n
+ \ \"2603:1040:a06:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.CentralUS\",\r\n \"id\": \"ApiManagement.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.102.66/32\",\r\n \"13.89.170.204/31\",\r\n
+ \ \"13.89.174.64/28\",\r\n \"2603:1030:10:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"ApiManagement.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"52.253.159.160/32\",\r\n \"2603:1030:f:2::490/124\",\r\n
+ \ \"2603:1030:f:400::940/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.EastAsia\",\r\n \"id\": \"ApiManagement.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n \"52.139.152.27/32\",\r\n
+ \ \"65.52.164.91/32\",\r\n \"65.52.173.247/32\",\r\n \"2603:1040:207:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS\",\r\n
+ \ \"id\": \"ApiManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.10.204/31\",\r\n
+ \ \"40.71.13.128/28\",\r\n \"52.224.186.99/32\",\r\n \"2603:1030:210:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.72.3/32\",\r\n
+ \ \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n \"2603:1030:40c:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"52.253.229.253/32\",\r\n \"2603:1030:40b:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceCentral\",\r\n
+ \ \"id\": \"ApiManagement.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.66.60.111/32\",\r\n \"40.79.130.44/31\",\r\n
+ \ \"40.79.131.192/28\",\r\n \"2603:1020:805:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceSouth\",\r\n
+ \ \"id\": \"ApiManagement.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.80.2/32\",\r\n \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n
+ \ \"2603:1020:905:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.GermanyNorth\",\r\n \"id\":
+ \"ApiManagement.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.116.0.0/32\",\r\n
+ \ \"51.116.59.0/28\",\r\n \"2603:1020:d04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"ApiManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.96.0/32\",\r\n \"51.116.155.64/28\",\r\n
+ \ \"2603:1020:c04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.JapanEast\",\r\n \"id\": \"ApiManagement.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"52.140.238.179/32\",\r\n \"2603:1040:407:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.JapanWest\",\r\n
+ \ \"id\": \"ApiManagement.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.52/31\",\r\n \"40.74.101.48/28\",\r\n
+ \ \"40.81.185.8/32\",\r\n \"2603:1040:606:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.KoreaCentral\",\r\n
+ \ \"id\": \"ApiManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.74.240/28\",\r\n \"40.82.157.167/32\",\r\n
+ \ \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.KoreaSouth\",\r\n \"id\": \"ApiManagement.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.232.185/32\",\r\n \"52.231.146.84/31\",\r\n
+ \ \"52.231.147.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"ApiManagement.NorthCentralUS\",\r\n \"id\": \"ApiManagement.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.224.175/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"2603:1030:608:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorthEurope\",\r\n \"id\": \"ApiManagement.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n
+ \ \"2603:1020:5:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayEast\",\r\n \"id\": \"ApiManagement.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.234.240/28\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayWest\",\r\n \"id\": \"ApiManagement.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n
+ \ \"2603:1020:f04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"ApiManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.130.197/32\",\r\n
+ \ \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n \"2603:1000:104:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"ApiManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n
+ \ \"102.133.28.0/28\",\r\n \"2603:1000:4:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"20.188.77.119/32\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"191.238.241.97/32\",\r\n
+ \ \"2603:1030:807:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SoutheastAsia\",\r\n \"id\":
+ \"ApiManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.108/31\",\r\n
+ \ \"13.67.9.208/28\",\r\n \"40.90.185.46/32\",\r\n \"2603:1040:5:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthIndia\",\r\n
+ \ \"id\": \"ApiManagement.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.33.246/32\",\r\n \"40.78.194.68/31\",\r\n
+ \ \"40.78.195.224/28\",\r\n \"2603:1040:c06:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.0.91/32\",\r\n \"51.107.59.0/28\",\r\n \"2603:1020:a04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n \"2603:1020:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UAECentral\",\r\n
+ \ \"id\": \"ApiManagement.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.224/31\",\r\n \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n
+ \ \"2603:1040:b04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UAENorth\",\r\n \"id\": \"ApiManagement.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.144.85/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"2603:1040:904:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKNorth\",\r\n \"id\": \"ApiManagement.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.84/31\",\r\n \"13.87.123.144/28\",\r\n
+ \ \"2603:1020:305:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKSouth\",\r\n \"id\": \"ApiManagement.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"2603:1020:705:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UKWest\",\r\n
+ \ \"id\": \"ApiManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.136.0/32\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"2603:1020:605:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.116/31\",\r\n \"13.71.196.32/28\",\r\n
+ \ \"52.253.135.58/32\",\r\n \"2603:1030:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestEurope\",\r\n
+ \ \"id\": \"ApiManagement.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.76/31\",\r\n \"13.69.66.144/28\",\r\n \"23.101.67.140/32\",\r\n
+ \ \"51.145.179.78/32\",\r\n \"137.117.160.56/32\",\r\n \"2603:1020:206:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestIndia\",\r\n
+ \ \"id\": \"ApiManagement.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.89.24/32\",\r\n \"104.211.146.68/31\",\r\n
+ \ \"104.211.147.144/28\",\r\n \"2603:1040:806:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS\",\r\n
+ \ \"id\": \"ApiManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.39.16/32\",\r\n
+ \ \"40.112.242.148/31\",\r\n \"40.112.243.240/28\",\r\n \"2603:1030:a07:402::8c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS2\",\r\n
+ \ \"id\": \"ApiManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.92/31\",\r\n
+ \ \"13.66.140.176/28\",\r\n \"51.143.127.203/32\",\r\n \"2603:1030:c06:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppConfiguration\",\r\n
+ \ \"id\": \"AppConfiguration\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppConfiguration\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.72/29\",\r\n \"13.66.143.192/28\",\r\n
+ \ \"13.66.143.208/29\",\r\n \"13.67.10.112/29\",\r\n \"13.67.13.192/28\",\r\n
+ \ \"13.67.13.208/29\",\r\n \"13.69.67.112/29\",\r\n \"13.69.67.240/28\",\r\n
+ \ \"13.69.71.128/29\",\r\n \"13.69.107.72/29\",\r\n \"13.69.112.144/28\",\r\n
+ \ \"13.69.112.160/29\",\r\n \"13.69.230.8/29\",\r\n \"13.69.230.40/29\",\r\n
+ \ \"13.69.231.144/28\",\r\n \"13.70.74.128/29\",\r\n \"13.70.78.144/28\",\r\n
+ \ \"13.70.78.160/29\",\r\n \"13.71.175.64/28\",\r\n \"13.71.175.96/28\",\r\n
+ \ \"13.71.196.176/28\",\r\n \"13.71.199.80/28\",\r\n \"13.73.242.56/29\",\r\n
+ \ \"13.73.244.96/28\",\r\n \"13.73.244.112/29\",\r\n \"13.73.255.128/26\",\r\n
+ \ \"13.74.108.160/28\",\r\n \"13.74.108.240/28\",\r\n \"13.77.53.88/29\",\r\n
+ \ \"13.77.53.192/28\",\r\n \"13.77.53.208/29\",\r\n \"13.78.109.144/29\",\r\n
+ \ \"13.78.109.208/28\",\r\n \"13.78.111.128/29\",\r\n \"13.86.219.192/29\",\r\n
+ \ \"13.86.221.192/28\",\r\n \"13.86.221.208/29\",\r\n \"13.87.58.64/29\",\r\n
+ \ \"13.87.58.80/28\",\r\n \"13.87.58.128/29\",\r\n \"13.87.124.64/29\",\r\n
+ \ \"13.87.124.80/28\",\r\n \"13.87.124.128/29\",\r\n \"13.89.175.208/28\",\r\n
+ \ \"13.89.178.16/29\",\r\n \"13.89.178.32/29\",\r\n \"20.36.108.120/29\",\r\n
+ \ \"20.36.108.136/29\",\r\n \"20.36.108.144/28\",\r\n \"20.36.115.248/29\",\r\n
+ \ \"20.36.117.40/29\",\r\n \"20.36.117.48/28\",\r\n \"20.36.123.16/28\",\r\n
+ \ \"20.36.124.64/26\",\r\n \"20.37.67.96/28\",\r\n \"20.37.69.64/26\",\r\n
+ \ \"20.37.76.112/29\",\r\n \"20.37.76.144/28\",\r\n \"20.37.76.192/29\",\r\n
+ \ \"20.37.198.144/28\",\r\n \"20.37.227.32/28\",\r\n \"20.37.228.128/26\",\r\n
+ \ \"20.38.128.96/29\",\r\n \"20.38.128.112/28\",\r\n \"20.38.128.160/29\",\r\n
+ \ \"20.38.139.96/28\",\r\n \"20.38.141.64/26\",\r\n \"20.38.147.176/28\",\r\n
+ \ \"20.38.147.240/28\",\r\n \"20.39.14.16/28\",\r\n \"20.40.206.144/28\",\r\n
+ \ \"20.40.206.160/28\",\r\n \"20.40.224.128/26\",\r\n \"20.41.68.64/28\",\r\n
+ \ \"20.41.69.192/26\",\r\n \"20.41.197.48/28\",\r\n \"20.42.64.16/28\",\r\n
+ \ \"20.42.230.144/28\",\r\n \"20.43.44.144/28\",\r\n \"20.43.46.128/26\",\r\n
+ \ \"20.43.70.128/28\",\r\n \"20.43.121.40/29\",\r\n \"20.43.121.96/28\",\r\n
+ \ \"20.43.121.112/29\",\r\n \"20.44.4.96/29\",\r\n \"20.44.4.120/29\",\r\n
+ \ \"20.44.4.160/28\",\r\n \"20.44.8.168/29\",\r\n \"20.44.10.96/28\",\r\n
+ \ \"20.44.10.112/29\",\r\n \"20.44.17.56/29\",\r\n \"20.44.17.192/28\",\r\n
+ \ \"20.44.17.208/29\",\r\n \"20.44.27.224/28\",\r\n \"20.44.29.32/28\",\r\n
+ \ \"20.45.116.0/26\",\r\n \"20.45.123.120/29\",\r\n \"20.45.123.176/28\",\r\n
+ \ \"20.45.123.224/29\",\r\n \"20.45.126.0/27\",\r\n \"20.45.198.0/27\",\r\n
+ \ \"20.45.199.64/26\",\r\n \"20.48.192.192/26\",\r\n \"20.49.83.96/27\",\r\n
+ \ \"20.49.91.96/27\",\r\n \"20.49.99.80/28\",\r\n \"20.49.103.0/26\",\r\n
+ \ \"20.49.109.96/28\",\r\n \"20.49.115.64/26\",\r\n \"20.49.120.80/28\",\r\n
+ \ \"20.49.127.64/26\",\r\n \"20.50.1.240/28\",\r\n \"20.50.65.96/28\",\r\n
+ \ \"20.51.8.0/26\",\r\n \"20.51.16.0/26\",\r\n \"20.53.41.192/26\",\r\n
+ \ \"20.61.98.0/26\",\r\n \"20.62.128.64/26\",\r\n \"20.72.20.192/26\",\r\n
+ \ \"20.72.28.128/27\",\r\n \"20.150.165.176/28\",\r\n \"20.150.167.0/26\",\r\n
+ \ \"20.150.172.64/27\",\r\n \"20.150.173.32/27\",\r\n \"20.150.179.200/29\",\r\n
+ \ \"20.150.181.0/28\",\r\n \"20.150.181.16/29\",\r\n \"20.150.181.128/27\",\r\n
+ \ \"20.150.187.200/29\",\r\n \"20.150.189.0/28\",\r\n \"20.150.189.16/29\",\r\n
+ \ \"20.150.190.32/27\",\r\n \"20.187.194.224/28\",\r\n \"20.187.196.128/26\",\r\n
+ \ \"20.189.224.64/26\",\r\n \"20.191.160.192/26\",\r\n \"20.192.99.200/29\",\r\n
+ \ \"20.192.101.0/28\",\r\n \"20.192.101.16/29\",\r\n \"20.192.167.0/26\",\r\n
+ \ \"20.192.231.64/26\",\r\n \"20.192.235.240/29\",\r\n \"20.192.238.112/29\",\r\n
+ \ \"20.192.238.192/27\",\r\n \"20.193.203.224/27\",\r\n \"20.194.67.64/27\",\r\n
+ \ \"23.98.83.72/29\",\r\n \"23.98.86.32/28\",\r\n \"23.98.86.48/29\",\r\n
+ \ \"23.98.104.176/28\",\r\n \"23.98.108.64/26\",\r\n \"40.64.132.144/28\",\r\n
+ \ \"40.67.52.0/26\",\r\n \"40.67.60.72/29\",\r\n \"40.67.60.112/28\",\r\n
+ \ \"40.67.60.160/29\",\r\n \"40.69.108.80/29\",\r\n \"40.69.108.176/28\",\r\n
+ \ \"40.69.110.160/29\",\r\n \"40.70.148.56/29\",\r\n \"40.70.151.48/28\",\r\n
+ \ \"40.70.151.64/29\",\r\n \"40.71.13.248/29\",\r\n \"40.71.14.120/29\",\r\n
+ \ \"40.71.15.128/28\",\r\n \"40.74.149.40/29\",\r\n \"40.74.149.56/29\",\r\n
+ \ \"40.74.149.80/28\",\r\n \"40.75.35.72/29\",\r\n \"40.75.35.192/28\",\r\n
+ \ \"40.75.35.208/29\",\r\n \"40.78.196.80/29\",\r\n \"40.78.196.144/28\",\r\n
+ \ \"40.78.196.160/29\",\r\n \"40.78.204.8/29\",\r\n \"40.78.204.144/28\",\r\n
+ \ \"40.78.204.192/29\",\r\n \"40.78.229.80/28\",\r\n \"40.78.229.112/28\",\r\n
+ \ \"40.78.236.136/29\",\r\n \"40.78.238.32/28\",\r\n \"40.78.238.48/29\",\r\n
+ \ \"40.78.243.176/28\",\r\n \"40.78.245.128/28\",\r\n \"40.78.251.144/28\",\r\n
+ \ \"40.78.251.208/28\",\r\n \"40.79.132.88/29\",\r\n \"40.79.139.64/28\",\r\n
+ \ \"40.79.139.128/28\",\r\n \"40.79.146.208/28\",\r\n \"40.79.148.64/28\",\r\n
+ \ \"40.79.156.96/28\",\r\n \"40.79.163.64/29\",\r\n \"40.79.163.128/28\",\r\n
+ \ \"40.79.163.144/29\",\r\n \"40.79.165.96/27\",\r\n \"40.79.171.112/28\",\r\n
+ \ \"40.79.171.176/28\",\r\n \"40.79.180.48/29\",\r\n \"40.79.180.128/28\",\r\n
+ \ \"40.79.180.144/29\",\r\n \"40.79.187.192/29\",\r\n \"40.79.189.32/28\",\r\n
+ \ \"40.79.189.48/29\",\r\n \"40.79.195.176/28\",\r\n \"40.79.195.240/28\",\r\n
+ \ \"40.80.51.112/28\",\r\n \"40.80.51.176/28\",\r\n \"40.80.62.32/28\",\r\n
+ \ \"40.80.172.48/28\",\r\n \"40.80.173.64/26\",\r\n \"40.80.176.40/29\",\r\n
+ \ \"40.80.176.56/29\",\r\n \"40.80.176.112/28\",\r\n \"40.80.191.240/28\",\r\n
+ \ \"40.89.20.160/28\",\r\n \"40.89.23.128/26\",\r\n \"40.119.11.192/28\",\r\n
+ \ \"40.120.75.128/27\",\r\n \"51.11.192.0/28\",\r\n \"51.11.192.16/29\",\r\n
+ \ \"51.12.43.64/26\",\r\n \"51.12.99.216/29\",\r\n \"51.12.100.48/28\",\r\n
+ \ \"51.12.100.96/29\",\r\n \"51.12.102.128/27\",\r\n \"51.12.195.64/26\",\r\n
+ \ \"51.12.204.48/28\",\r\n \"51.12.204.96/28\",\r\n \"51.12.206.32/27\",\r\n
+ \ \"51.12.227.200/29\",\r\n \"51.12.229.0/28\",\r\n \"51.12.229.16/29\",\r\n
+ \ \"51.12.235.200/29\",\r\n \"51.12.237.0/28\",\r\n \"51.12.237.16/29\",\r\n
+ \ \"51.104.9.48/28\",\r\n \"51.104.29.224/28\",\r\n \"51.105.67.184/29\",\r\n
+ \ \"51.105.67.216/29\",\r\n \"51.105.69.64/28\",\r\n \"51.105.75.224/28\",\r\n
+ \ \"51.105.77.32/28\",\r\n \"51.105.83.64/26\",\r\n \"51.105.90.176/28\",\r\n
+ \ \"51.105.93.0/26\",\r\n \"51.107.51.48/28\",\r\n \"51.107.53.128/26\",\r\n
+ \ \"51.107.60.56/29\",\r\n \"51.107.60.128/28\",\r\n \"51.107.60.144/29\",\r\n
+ \ \"51.107.147.48/28\",\r\n \"51.107.148.192/26\",\r\n \"51.107.156.64/29\",\r\n
+ \ \"51.107.156.136/29\",\r\n \"51.107.156.144/28\",\r\n \"51.116.49.192/28\",\r\n
+ \ \"51.116.51.64/26\",\r\n \"51.116.60.56/29\",\r\n \"51.116.60.88/29\",\r\n
+ \ \"51.116.60.128/28\",\r\n \"51.116.145.176/28\",\r\n \"51.116.148.0/26\",\r\n
+ \ \"51.116.156.56/29\",\r\n \"51.116.156.168/29\",\r\n \"51.116.158.32/28\",\r\n
+ \ \"51.116.158.48/29\",\r\n \"51.116.243.152/29\",\r\n \"51.116.243.192/28\",\r\n
+ \ \"51.116.243.208/29\",\r\n \"51.116.245.128/27\",\r\n \"51.116.251.40/29\",\r\n
+ \ \"51.116.251.160/28\",\r\n \"51.116.251.176/29\",\r\n \"51.116.253.64/27\",\r\n
+ \ \"51.120.43.96/28\",\r\n \"51.120.45.0/26\",\r\n \"51.120.100.56/29\",\r\n
+ \ \"51.120.100.128/28\",\r\n \"51.120.100.144/29\",\r\n \"51.120.107.200/29\",\r\n
+ \ \"51.120.109.0/28\",\r\n \"51.120.109.16/29\",\r\n \"51.120.110.160/27\",\r\n
+ \ \"51.120.211.200/29\",\r\n \"51.120.213.0/28\",\r\n \"51.120.213.16/29\",\r\n
+ \ \"51.120.220.56/29\",\r\n \"51.120.220.96/28\",\r\n \"51.120.220.112/29\",\r\n
+ \ \"51.120.227.96/28\",\r\n \"51.120.229.0/26\",\r\n \"51.137.164.128/28\",\r\n
+ \ \"51.137.167.0/26\",\r\n \"51.140.148.40/29\",\r\n \"51.140.149.16/29\",\r\n
+ \ \"51.140.212.96/29\",\r\n \"51.140.212.192/28\",\r\n \"51.140.212.208/29\",\r\n
+ \ \"51.143.195.64/26\",\r\n \"51.143.208.64/26\",\r\n \"52.136.51.96/28\",\r\n
+ \ \"52.136.52.128/26\",\r\n \"52.138.92.88/29\",\r\n \"52.138.92.144/28\",\r\n
+ \ \"52.138.92.160/29\",\r\n \"52.138.227.176/28\",\r\n \"52.138.229.48/28\",\r\n
+ \ \"52.140.108.112/28\",\r\n \"52.140.108.128/28\",\r\n \"52.140.111.0/26\",\r\n
+ \ \"52.146.131.192/26\",\r\n \"52.150.152.64/28\",\r\n \"52.150.156.128/26\",\r\n
+ \ \"52.162.111.32/28\",\r\n \"52.162.111.112/28\",\r\n \"52.167.107.112/28\",\r\n
+ \ \"52.167.107.240/28\",\r\n \"52.172.112.64/26\",\r\n \"52.182.141.0/29\",\r\n
+ \ \"52.182.141.32/28\",\r\n \"52.182.141.48/29\",\r\n \"52.228.85.208/28\",\r\n
+ \ \"52.231.20.8/29\",\r\n \"52.231.20.80/28\",\r\n \"52.231.23.0/29\",\r\n
+ \ \"52.231.148.112/29\",\r\n \"52.231.148.176/28\",\r\n \"52.231.148.192/29\",\r\n
+ \ \"52.236.186.248/29\",\r\n \"52.236.187.96/28\",\r\n \"52.236.189.64/29\",\r\n
+ \ \"52.246.155.176/28\",\r\n \"52.246.155.240/28\",\r\n \"52.246.157.32/27\",\r\n
+ \ \"65.52.252.112/29\",\r\n \"65.52.252.224/28\",\r\n \"65.52.252.240/29\",\r\n
+ \ \"102.133.28.96/29\",\r\n \"102.133.28.152/29\",\r\n \"102.133.28.192/28\",\r\n
+ \ \"102.133.58.240/28\",\r\n \"102.133.60.128/26\",\r\n \"102.133.124.80/29\",\r\n
+ \ \"102.133.124.112/28\",\r\n \"102.133.124.128/29\",\r\n
+ \ \"102.133.156.120/29\",\r\n \"102.133.156.152/29\",\r\n
+ \ \"102.133.156.160/28\",\r\n \"102.133.218.160/28\",\r\n
+ \ \"102.133.220.128/26\",\r\n \"102.133.251.88/29\",\r\n
+ \ \"102.133.251.192/28\",\r\n \"102.133.251.208/29\",\r\n
+ \ \"104.46.177.192/26\",\r\n \"104.214.161.0/29\",\r\n \"104.214.161.16/28\",\r\n
+ \ \"104.214.161.32/29\",\r\n \"168.61.142.96/27\",\r\n \"191.233.11.144/28\",\r\n
+ \ \"191.233.14.128/26\",\r\n \"191.233.51.224/27\",\r\n \"191.233.205.112/28\",\r\n
+ \ \"191.233.205.176/28\",\r\n \"191.234.136.96/28\",\r\n
+ \ \"191.234.139.64/26\",\r\n \"191.234.147.200/29\",\r\n
+ \ \"191.234.149.16/28\",\r\n \"191.234.149.128/29\",\r\n
+ \ \"191.234.149.192/27\",\r\n \"191.234.155.200/29\",\r\n
+ \ \"191.234.157.16/28\",\r\n \"191.234.157.32/29\",\r\n \"191.234.157.96/27\",\r\n
+ \ \"2603:1000:4:402::2e0/123\",\r\n \"2603:1000:104:402::2e0/123\",\r\n
+ \ \"2603:1000:104:802::220/123\",\r\n \"2603:1000:104:c02::220/123\",\r\n
+ \ \"2603:1010:6:402::2e0/123\",\r\n \"2603:1010:6:802::220/123\",\r\n
+ \ \"2603:1010:6:c02::220/123\",\r\n \"2603:1010:101:402::2e0/123\",\r\n
+ \ \"2603:1010:304:402::2e0/123\",\r\n \"2603:1010:404:402::2e0/123\",\r\n
+ \ \"2603:1020:5:402::2e0/123\",\r\n \"2603:1020:5:802::220/123\",\r\n
+ \ \"2603:1020:5:c02::220/123\",\r\n \"2603:1020:206:402::2e0/123\",\r\n
+ \ \"2603:1020:206:802::220/123\",\r\n \"2603:1020:206:c02::220/123\",\r\n
+ \ \"2603:1020:305:402::2e0/123\",\r\n \"2603:1020:405:402::2e0/123\",\r\n
+ \ \"2603:1020:605:402::2e0/123\",\r\n \"2603:1020:705:402::2e0/123\",\r\n
+ \ \"2603:1020:705:802::220/123\",\r\n \"2603:1020:705:c02::220/123\",\r\n
+ \ \"2603:1020:805:402::2e0/123\",\r\n \"2603:1020:805:802::220/123\",\r\n
+ \ \"2603:1020:805:c02::220/123\",\r\n \"2603:1020:905:402::2e0/123\",\r\n
+ \ \"2603:1020:a04:402::2e0/123\",\r\n \"2603:1020:a04:802::220/123\",\r\n
+ \ \"2603:1020:a04:c02::220/123\",\r\n \"2603:1020:b04:402::2e0/123\",\r\n
+ \ \"2603:1020:c04:402::2e0/123\",\r\n \"2603:1020:c04:802::220/123\",\r\n
+ \ \"2603:1020:c04:c02::220/123\",\r\n \"2603:1020:d04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:3::2c0/122\",\r\n \"2603:1020:e04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:802::220/123\",\r\n \"2603:1020:e04:c02::220/123\",\r\n
+ \ \"2603:1020:f04:402::2e0/123\",\r\n \"2603:1020:1004:1::340/122\",\r\n
+ \ \"2603:1020:1004:400::1e0/123\",\r\n \"2603:1020:1004:400::380/123\",\r\n
+ \ \"2603:1020:1004:c02::280/123\",\r\n \"2603:1020:1104:1::100/122\",\r\n
+ \ \"2603:1020:1104:400::2e0/123\",\r\n \"2603:1030:f:2::680/122\",\r\n
+ \ \"2603:1030:f:400::ae0/123\",\r\n \"2603:1030:10:402::2e0/123\",\r\n
+ \ \"2603:1030:10:802::220/123\",\r\n \"2603:1030:10:c02::220/123\",\r\n
+ \ \"2603:1030:104:402::2e0/123\",\r\n \"2603:1030:107::7c0/122\",\r\n
+ \ \"2603:1030:107:400::260/123\",\r\n \"2603:1030:210:402::2e0/123\",\r\n
+ \ \"2603:1030:210:802::220/123\",\r\n \"2603:1030:210:c02::220/123\",\r\n
+ \ \"2603:1030:40b:400::ae0/123\",\r\n \"2603:1030:40b:800::220/123\",\r\n
+ \ \"2603:1030:40b:c00::220/123\",\r\n \"2603:1030:40c:402::2e0/123\",\r\n
+ \ \"2603:1030:40c:802::220/123\",\r\n \"2603:1030:40c:c02::220/123\",\r\n
+ \ \"2603:1030:504::340/122\",\r\n \"2603:1030:504:402::1e0/123\",\r\n
+ \ \"2603:1030:504:402::380/123\",\r\n \"2603:1030:504:802::260/123\",\r\n
+ \ \"2603:1030:504:c02::280/123\",\r\n \"2603:1030:608:402::2e0/123\",\r\n
+ \ \"2603:1030:807:402::2e0/123\",\r\n \"2603:1030:807:802::220/123\",\r\n
+ \ \"2603:1030:807:c02::220/123\",\r\n \"2603:1030:a07:402::960/123\",\r\n
+ \ \"2603:1030:b04:402::2e0/123\",\r\n \"2603:1030:c06:400::ae0/123\",\r\n
+ \ \"2603:1030:c06:802::220/123\",\r\n \"2603:1030:c06:c02::220/123\",\r\n
+ \ \"2603:1030:f05:402::2e0/123\",\r\n \"2603:1030:f05:802::220/123\",\r\n
+ \ \"2603:1030:f05:c02::220/123\",\r\n \"2603:1030:1005:402::2e0/123\",\r\n
+ \ \"2603:1040:5:402::2e0/123\",\r\n \"2603:1040:5:802::220/123\",\r\n
+ \ \"2603:1040:5:c02::220/123\",\r\n \"2603:1040:207:402::2e0/123\",\r\n
+ \ \"2603:1040:407:402::2e0/123\",\r\n \"2603:1040:407:802::220/123\",\r\n
+ \ \"2603:1040:407:c02::220/123\",\r\n \"2603:1040:606:402::2e0/123\",\r\n
+ \ \"2603:1040:806:402::2e0/123\",\r\n \"2603:1040:904:402::2e0/123\",\r\n
+ \ \"2603:1040:904:802::220/123\",\r\n \"2603:1040:904:c02::220/123\",\r\n
+ \ \"2603:1040:a06:402::2e0/123\",\r\n \"2603:1040:a06:802::220/123\",\r\n
+ \ \"2603:1040:a06:c02::220/123\",\r\n \"2603:1040:b04:402::2e0/123\",\r\n
+ \ \"2603:1040:c06:402::2e0/123\",\r\n \"2603:1040:d04:1::340/122\",\r\n
+ \ \"2603:1040:d04:400::1e0/123\",\r\n \"2603:1040:d04:400::380/123\",\r\n
+ \ \"2603:1040:d04:c02::280/123\",\r\n \"2603:1040:f05:2::200/122\",\r\n
+ \ \"2603:1040:f05:402::2e0/123\",\r\n \"2603:1040:f05:802::220/123\",\r\n
+ \ \"2603:1040:f05:c02::220/123\",\r\n \"2603:1040:1104:1::100/122\",\r\n
+ \ \"2603:1040:1104:400::2e0/123\",\r\n \"2603:1050:6:402::2e0/123\",\r\n
+ \ \"2603:1050:6:802::220/123\",\r\n \"2603:1050:6:c02::220/123\",\r\n
+ \ \"2603:1050:403:400::200/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApplicationInsightsAvailability\",\r\n \"id\":
+ \"ApplicationInsightsAvailability\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ApplicationInsightsAvailability\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.97.224/27\",\r\n \"13.86.98.0/27\",\r\n
+ \ \"13.86.98.48/28\",\r\n \"13.86.98.64/28\",\r\n \"20.37.156.64/27\",\r\n
+ \ \"20.37.192.80/29\",\r\n \"20.38.80.80/28\",\r\n \"20.40.104.96/27\",\r\n
+ \ \"20.40.104.128/27\",\r\n \"20.40.124.176/28\",\r\n \"20.40.124.240/28\",\r\n
+ \ \"20.40.125.80/28\",\r\n \"20.40.129.32/27\",\r\n \"20.40.129.64/26\",\r\n
+ \ \"20.40.129.128/27\",\r\n \"20.42.4.64/27\",\r\n \"20.42.35.32/28\",\r\n
+ \ \"20.42.35.64/26\",\r\n \"20.42.35.128/28\",\r\n \"20.42.129.32/27\",\r\n
+ \ \"20.43.40.80/28\",\r\n \"20.43.64.80/29\",\r\n \"20.43.128.96/29\",\r\n
+ \ \"20.45.5.160/27\",\r\n \"20.45.5.192/26\",\r\n \"20.189.106.64/29\",\r\n
+ \ \"23.100.224.16/28\",\r\n \"23.100.224.32/27\",\r\n \"23.100.224.64/26\",\r\n
+ \ \"23.100.225.0/28\",\r\n \"40.74.24.80/28\",\r\n \"40.80.186.128/26\",\r\n
+ \ \"40.91.82.48/28\",\r\n \"40.91.82.64/26\",\r\n \"40.91.82.128/28\",\r\n
+ \ \"40.119.8.96/27\",\r\n \"51.104.24.80/29\",\r\n \"51.105.9.128/27\",\r\n
+ \ \"51.105.9.160/28\",\r\n \"51.137.160.80/29\",\r\n \"51.144.56.96/27\",\r\n
+ \ \"51.144.56.128/26\",\r\n \"52.139.250.96/27\",\r\n \"52.139.250.128/27\",\r\n
+ \ \"52.140.232.160/27\",\r\n \"52.140.232.192/28\",\r\n \"52.158.28.64/26\",\r\n
+ \ \"52.229.216.48/28\",\r\n \"52.229.216.64/27\",\r\n \"191.233.26.64/28\",\r\n
+ \ \"191.233.26.128/28\",\r\n \"191.233.26.176/28\",\r\n \"191.235.224.80/29\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApplicationInsightsAvailability.JapanEast\",\r\n
+ \ \"id\": \"ApplicationInsightsAvailability.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ApplicationInsightsAvailability\",\r\n \"addressPrefixes\": [\r\n
+ \ \"20.43.64.80/29\",\r\n \"52.140.232.160/27\",\r\n \"52.140.232.192/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService\",\r\n
+ \ \"id\": \"AppService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.110/32\",\r\n \"13.65.30.245/32\",\r\n
+ \ \"13.65.37.122/32\",\r\n \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n
+ \ \"13.65.42.183/32\",\r\n \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n
+ \ \"13.65.89.91/32\",\r\n \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n
+ \ \"13.65.95.109/32\",\r\n \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n
+ \ \"13.65.210.166/32\",\r\n \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n
+ \ \"13.65.243.110/32\",\r\n \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n
+ \ \"13.66.39.88/32\",\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.67.9.0/25\",\r\n
+ \ \"13.67.56.225/32\",\r\n \"13.67.63.90/32\",\r\n \"13.67.129.26/32\",\r\n
+ \ \"13.67.141.98/32\",\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.69.68.0/23\",\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n \"13.71.122.35/32\",\r\n
+ \ \"13.71.123.138/32\",\r\n \"13.71.149.151/32\",\r\n \"13.71.170.128/27\",\r\n
+ \ \"13.71.194.192/27\",\r\n \"13.73.1.134/32\",\r\n \"13.73.26.73/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.74.41.233/32\",\r\n
+ \ \"13.74.147.218/32\",\r\n \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n
+ \ \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n \"13.75.47.15/32\",\r\n
+ \ \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n \"13.75.115.40/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"13.77.7.175/32\",\r\n \"13.77.50.96/27\",\r\n \"13.77.82.141/32\",\r\n
+ \ \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"13.78.59.237/32\",\r\n
+ \ \"13.78.106.96/27\",\r\n \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n
+ \ \"13.78.150.96/32\",\r\n \"13.78.184.89/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n \"13.82.175.96/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"13.89.57.7/32\",\r\n
+ \ \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n \"13.90.143.69/32\",\r\n
+ \ \"13.90.213.204/32\",\r\n \"13.91.40.166/32\",\r\n \"13.91.242.166/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n \"13.93.220.109/32\",\r\n
+ \ \"13.93.231.75/32\",\r\n \"13.94.47.87/32\",\r\n \"13.94.143.57/32\",\r\n
+ \ \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n \"13.95.82.181/32\",\r\n
+ \ \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n \"13.95.238.192/32\",\r\n
+ \ \"20.36.43.207/32\",\r\n \"20.36.72.230/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n \"20.37.66.0/27\",\r\n
+ \ \"20.37.74.96/27\",\r\n \"20.37.196.192/27\",\r\n \"20.37.226.0/27\",\r\n
+ \ \"20.38.138.0/27\",\r\n \"20.38.146.160/27\",\r\n \"20.39.11.104/29\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"20.41.66.224/27\",\r\n \"20.41.195.192/27\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.42.128.96/27\",\r\n \"20.42.228.160/27\",\r\n
+ \ \"20.43.43.32/27\",\r\n \"20.43.67.32/27\",\r\n \"20.43.132.128/25\",\r\n
+ \ \"20.44.2.32/27\",\r\n \"20.44.26.160/27\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.45.196.16/29\",\r\n \"20.49.82.32/27\",\r\n \"20.49.90.32/27\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"20.49.104.0/25\",\r\n \"20.50.2.0/23\",\r\n
+ \ \"20.50.64.0/25\",\r\n \"20.72.26.32/27\",\r\n \"20.150.170.192/27\",\r\n
+ \ \"20.150.178.160/27\",\r\n \"20.150.186.160/27\",\r\n \"20.188.98.74/32\",\r\n
+ \ \"20.189.104.96/27\",\r\n \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n
+ \ \"20.192.98.160/27\",\r\n \"20.192.234.128/27\",\r\n \"20.193.202.128/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"23.96.0.52/32\",\r\n \"23.96.1.109/32\",\r\n
+ \ \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n \"23.96.96.142/32\",\r\n
+ \ \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n \"23.96.113.128/32\",\r\n
+ \ \"23.96.124.25/32\",\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n
+ \ \"23.96.207.177/32\",\r\n \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n
+ \ \"23.97.56.169/32\",\r\n \"23.97.79.119/32\",\r\n \"23.97.96.32/32\",\r\n
+ \ \"23.97.160.56/32\",\r\n \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n
+ \ \"23.97.195.129/32\",\r\n \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n
+ \ \"23.97.216.47/32\",\r\n \"23.97.224.11/32\",\r\n \"23.98.64.36/32\",\r\n
+ \ \"23.98.64.158/32\",\r\n \"23.99.0.12/32\",\r\n \"23.99.65.65/32\",\r\n
+ \ \"23.99.91.55/32\",\r\n \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n
+ \ \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n \"23.99.192.132/32\",\r\n
+ \ \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n \"23.99.224.56/32\",\r\n
+ \ \"23.100.1.29/32\",\r\n \"23.100.46.198/32\",\r\n \"23.100.48.106/32\",\r\n
+ \ \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n \"23.100.56.27/32\",\r\n
+ \ \"23.100.72.240/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"23.101.27.182/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.101.67.245/32\",\r\n \"23.101.118.145/32\",\r\n \"23.101.119.44/32\",\r\n
+ \ \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n \"23.101.125.65/32\",\r\n
+ \ \"23.101.147.117/32\",\r\n \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n
+ \ \"23.101.172.244/32\",\r\n \"23.101.180.75/32\",\r\n \"23.101.203.117/32\",\r\n
+ \ \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"23.101.224.24/32\",\r\n \"23.101.230.162/32\",\r\n \"23.102.12.43/32\",\r\n
+ \ \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n \"23.102.25.149/32\",\r\n
+ \ \"23.102.28.178/32\",\r\n \"23.102.154.38/32\",\r\n \"23.102.161.217/32\",\r\n
+ \ \"23.102.191.170/32\",\r\n \"40.64.128.224/27\",\r\n \"40.67.58.192/27\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.106.96/27\",\r\n \"40.69.190.41/32\",\r\n
+ \ \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n \"40.69.218.150/32\",\r\n
+ \ \"40.70.27.35/32\",\r\n \"40.70.147.0/25\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.74.100.128/27\",\r\n
+ \ \"40.74.133.20/32\",\r\n \"40.74.245.188/32\",\r\n \"40.74.253.108/32\",\r\n
+ \ \"40.74.255.112/32\",\r\n \"40.76.5.137/32\",\r\n \"40.76.192.15/32\",\r\n
+ \ \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n \"40.76.223.101/32\",\r\n
+ \ \"40.77.56.174/32\",\r\n \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n
+ \ \"40.78.48.219/32\",\r\n \"40.78.194.96/27\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"40.79.65.200/32\",\r\n \"40.79.130.128/27\",\r\n \"40.79.154.192/27\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.79.178.96/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.80.50.160/27\",\r\n \"40.80.58.224/27\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.80.170.224/27\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"40.82.191.84/32\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.82.255.128/25\",\r\n \"40.83.16.172/32\",\r\n \"40.83.72.59/32\",\r\n
+ \ \"40.83.124.73/32\",\r\n \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n
+ \ \"40.83.182.206/32\",\r\n \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n
+ \ \"40.84.54.203/32\",\r\n \"40.84.59.174/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.85.74.227/32\",\r\n
+ \ \"40.85.92.115/32\",\r\n \"40.85.96.208/32\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n \"40.86.86.144/32\",\r\n
+ \ \"40.86.91.212/32\",\r\n \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n
+ \ \"40.86.225.89/32\",\r\n \"40.86.230.96/32\",\r\n \"40.87.65.131/32\",\r\n
+ \ \"40.87.70.95/32\",\r\n \"40.89.19.0/27\",\r\n \"40.89.131.148/32\",\r\n
+ \ \"40.89.141.103/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.112.142.148/32\",\r\n \"40.112.143.134/32\",\r\n
+ \ \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n \"40.112.165.44/32\",\r\n
+ \ \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n \"40.112.192.69/32\",\r\n
+ \ \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n \"40.113.2.52/32\",\r\n
+ \ \"40.113.65.9/32\",\r\n \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n
+ \ \"40.113.90.202/32\",\r\n \"40.113.126.251/32\",\r\n \"40.113.131.37/32\",\r\n
+ \ \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n
+ \ \"40.114.228.161/32\",\r\n \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n
+ \ \"40.115.55.251/32\",\r\n \"40.115.98.85/32\",\r\n \"40.115.179.121/32\",\r\n
+ \ \"40.115.251.148/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n
+ \ \"40.118.96.231/32\",\r\n \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n
+ \ \"40.118.102.46/32\",\r\n \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n
+ \ \"40.118.246.51/32\",\r\n \"40.118.255.59/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.120.74.32/27\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n \"40.124.12.75/32\",\r\n
+ \ \"40.124.13.58/32\",\r\n \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n
+ \ \"40.126.242.59/32\",\r\n \"40.126.245.169/32\",\r\n \"40.127.132.204/32\",\r\n
+ \ \"40.127.139.252/32\",\r\n \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n
+ \ \"51.12.98.192/27\",\r\n \"51.12.202.192/27\",\r\n \"51.12.226.160/27\",\r\n
+ \ \"51.12.234.160/27\",\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.105.90.32/27\",\r\n \"51.105.172.25/32\",\r\n
+ \ \"51.107.50.0/27\",\r\n \"51.107.58.160/27\",\r\n \"51.107.146.0/27\",\r\n
+ \ \"51.107.154.160/27\",\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n \"51.116.242.160/27\",\r\n
+ \ \"51.116.250.160/27\",\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"51.120.218.192/27\",\r\n
+ \ \"51.120.226.0/27\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.137.163.32/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.140.210.96/27\",\r\n \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n
+ \ \"51.141.12.112/32\",\r\n \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n
+ \ \"51.141.45.207/32\",\r\n \"51.141.90.252/32\",\r\n \"51.143.102.21/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n
+ \ \"51.144.116.43/32\",\r\n \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n
+ \ \"52.136.50.0/27\",\r\n \"52.136.138.55/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.140.106.224/27\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"52.150.140.224/27\",\r\n \"52.151.62.51/32\",\r\n \"52.160.40.218/32\",\r\n
+ \ \"52.161.96.193/32\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"52.172.54.225/32\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"52.173.28.95/32\",\r\n \"52.173.36.83/32\",\r\n
+ \ \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n \"52.173.83.49/32\",\r\n
+ \ \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n \"52.173.94.173/32\",\r\n
+ \ \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n \"52.173.139.125/32\",\r\n
+ \ \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n \"52.173.184.147/32\",\r\n
+ \ \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.175.158.219/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.176.2.229/32\",\r\n
+ \ \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n \"52.176.6.37/32\",\r\n
+ \ \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n \"52.176.149.197/32\",\r\n
+ \ \"52.176.165.69/32\",\r\n \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n
+ \ \"52.177.206.73/32\",\r\n \"52.178.29.39/32\",\r\n \"52.178.37.244/32\",\r\n
+ \ \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n \"52.178.46.181/32\",\r\n
+ \ \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n \"52.178.89.129/32\",\r\n
+ \ \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n \"52.178.105.179/32\",\r\n
+ \ \"52.178.114.226/32\",\r\n \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n
+ \ \"52.178.179.169/32\",\r\n \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n
+ \ \"52.178.208.12/32\",\r\n \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n
+ \ \"52.179.97.15/32\",\r\n \"52.179.188.206/32\",\r\n \"52.180.178.6/32\",\r\n
+ \ \"52.180.183.66/32\",\r\n \"52.183.82.125/32\",\r\n \"52.184.162.135/32\",\r\n
+ \ \"52.184.193.103/32\",\r\n \"52.184.193.104/32\",\r\n \"52.187.17.126/32\",\r\n
+ \ \"52.187.36.104/32\",\r\n \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n
+ \ \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n \"52.189.213.49/32\",\r\n
+ \ \"52.225.179.39/32\",\r\n \"52.225.190.65/32\",\r\n \"52.226.134.64/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"52.229.115.84/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n \"52.231.38.95/32\",\r\n
+ \ \"52.231.77.58/32\",\r\n \"52.231.146.96/27\",\r\n \"52.231.200.101/32\",\r\n
+ \ \"52.231.200.179/32\",\r\n \"52.232.19.237/32\",\r\n \"52.232.26.228/32\",\r\n
+ \ \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n \"52.232.127.196/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"52.234.209.94/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n
+ \ \"52.237.246.162/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"52.243.39.89/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"52.252.160.21/32\",\r\n \"52.253.224.223/32\",\r\n
+ \ \"52.255.35.249/32\",\r\n \"52.255.54.134/32\",\r\n \"65.52.24.41/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"65.52.213.73/32\",\r\n \"65.52.217.59/32\",\r\n
+ \ \"65.52.218.253/32\",\r\n \"65.52.250.96/27\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n \"102.133.122.160/27\",\r\n
+ \ \"102.133.154.32/27\",\r\n \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"104.40.3.53/32\",\r\n \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n
+ \ \"104.40.53.219/32\",\r\n \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n
+ \ \"104.40.92.107/32\",\r\n \"104.40.129.89/32\",\r\n \"104.40.147.180/32\",\r\n
+ \ \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n \"104.40.179.243/32\",\r\n
+ \ \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n \"104.40.187.26/32\",\r\n
+ \ \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n \"104.40.215.219/32\",\r\n
+ \ \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n \"104.41.9.139/32\",\r\n
+ \ \"104.41.13.179/32\",\r\n \"104.41.63.108/32\",\r\n \"104.41.186.103/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.42.53.248/32\",\r\n
+ \ \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n \"104.42.148.55/32\",\r\n
+ \ \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n \"104.42.188.146/32\",\r\n
+ \ \"104.42.231.5/32\",\r\n \"104.43.129.105/32\",\r\n \"104.43.140.101/32\",\r\n
+ \ \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n \"104.43.246.71/32\",\r\n
+ \ \"104.43.254.102/32\",\r\n \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"104.45.129.178/32\",\r\n \"104.45.141.247/32\",\r\n
+ \ \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n \"104.45.154.200/32\",\r\n
+ \ \"104.45.226.98/32\",\r\n \"104.45.231.79/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.46.101.59/32\",\r\n
+ \ \"104.47.137.62/32\",\r\n \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n
+ \ \"104.47.164.119/32\",\r\n \"104.208.48.107/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"104.210.38.149/32\",\r\n \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n
+ \ \"104.210.145.181/32\",\r\n \"104.210.147.57/32\",\r\n
+ \ \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.211.26.212/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"104.211.146.96/27\",\r\n \"104.211.160.159/32\",\r\n
+ \ \"104.211.179.11/32\",\r\n \"104.211.184.197/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"104.215.11.176/32\",\r\n
+ \ \"104.215.58.230/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n
+ \ \"111.221.95.27/32\",\r\n \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"137.117.9.212/32\",\r\n \"137.117.17.70/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.117.166.35/32\",\r\n \"137.117.175.14/32\",\r\n
+ \ \"137.117.203.130/32\",\r\n \"137.117.211.244/32\",\r\n
+ \ \"137.117.218.101/32\",\r\n \"137.117.224.218/32\",\r\n
+ \ \"137.117.225.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"138.91.0.30/32\",\r\n \"138.91.16.18/32\",\r\n \"138.91.224.84/32\",\r\n
+ \ \"138.91.225.40/32\",\r\n \"138.91.240.81/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.61.152.29/32\",\r\n \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n
+ \ \"168.61.218.125/32\",\r\n \"168.62.20.37/32\",\r\n \"168.62.48.183/32\",\r\n
+ \ \"168.62.180.173/32\",\r\n \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.53.239/32\",\r\n \"168.63.107.5/32\",\r\n
+ \ \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n \"191.233.50.32/27\",\r\n
+ \ \"191.233.82.44/32\",\r\n \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.16.188/32\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n \"191.235.177.30/32\",\r\n
+ \ \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"191.236.16.12/32\",\r\n \"191.236.59.67/32\",\r\n
+ \ \"191.236.80.12/32\",\r\n \"191.236.106.123/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"191.236.192.121/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n
+ \ \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"191.239.58.162/32\",\r\n \"191.239.188.11/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1000:4:402::a0/123\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\",\r\n
+ \ \"2603:1010:101:402::a0/123\",\r\n \"2603:1010:304:402::a0/123\",\r\n
+ \ \"2603:1010:404:402::a0/123\",\r\n \"2603:1020:5:402::a0/123\",\r\n
+ \ \"2603:1020:5:802::a0/123\",\r\n \"2603:1020:5:c02::a0/123\",\r\n
+ \ \"2603:1020:206:402::a0/123\",\r\n \"2603:1020:206:802::a0/123\",\r\n
+ \ \"2603:1020:206:c02::a0/123\",\r\n \"2603:1020:305:402::a0/123\",\r\n
+ \ \"2603:1020:405:402::a0/123\",\r\n \"2603:1020:605:402::a0/123\",\r\n
+ \ \"2603:1020:705:402::a0/123\",\r\n \"2603:1020:705:802::a0/123\",\r\n
+ \ \"2603:1020:705:c02::a0/123\",\r\n \"2603:1020:805:402::a0/123\",\r\n
+ \ \"2603:1020:805:802::a0/123\",\r\n \"2603:1020:805:c02::a0/123\",\r\n
+ \ \"2603:1020:905:402::a0/123\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\",\r\n
+ \ \"2603:1020:b04:402::a0/123\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\",\r\n
+ \ \"2603:1020:d04:402::a0/123\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\",\r\n
+ \ \"2603:1020:f04:402::a0/123\",\r\n \"2603:1020:1004:400::a0/123\",\r\n
+ \ \"2603:1020:1004:800::160/123\",\r\n \"2603:1020:1004:800::360/123\",\r\n
+ \ \"2603:1020:1104:400::a0/123\",\r\n \"2603:1030:f:400::8a0/123\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\",\r\n \"2603:1030:104:402::a0/123\",\r\n
+ \ \"2603:1030:107:400::20/123\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\",\r\n
+ \ \"2603:1030:40b:400::8a0/123\",\r\n \"2603:1030:40b:800::a0/123\",\r\n
+ \ \"2603:1030:40b:c00::a0/123\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\",\r\n
+ \ \"2603:1030:504:402::a0/123\",\r\n \"2603:1030:504:802::160/123\",\r\n
+ \ \"2603:1030:504:802::360/123\",\r\n \"2603:1030:504:c02::3a0/123\",\r\n
+ \ \"2603:1030:608:402::a0/123\",\r\n \"2603:1030:807:402::a0/123\",\r\n
+ \ \"2603:1030:807:802::a0/123\",\r\n \"2603:1030:807:c02::a0/123\",\r\n
+ \ \"2603:1030:a07:402::a0/123\",\r\n \"2603:1030:b04:402::a0/123\",\r\n
+ \ \"2603:1030:c06:400::8a0/123\",\r\n \"2603:1030:c06:802::a0/123\",\r\n
+ \ \"2603:1030:c06:c02::a0/123\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\",\r\n
+ \ \"2603:1030:1005:402::a0/123\",\r\n \"2603:1040:5:402::a0/123\",\r\n
+ \ \"2603:1040:5:802::a0/123\",\r\n \"2603:1040:5:c02::a0/123\",\r\n
+ \ \"2603:1040:207:402::a0/123\",\r\n \"2603:1040:407:402::a0/123\",\r\n
+ \ \"2603:1040:407:802::a0/123\",\r\n \"2603:1040:407:c02::a0/123\",\r\n
+ \ \"2603:1040:606:402::a0/123\",\r\n \"2603:1040:806:402::a0/123\",\r\n
+ \ \"2603:1040:904:402::a0/123\",\r\n \"2603:1040:904:802::a0/123\",\r\n
+ \ \"2603:1040:904:c02::a0/123\",\r\n \"2603:1040:a06:402::a0/123\",\r\n
+ \ \"2603:1040:a06:802::a0/123\",\r\n \"2603:1040:a06:c02::a0/123\",\r\n
+ \ \"2603:1040:b04:402::a0/123\",\r\n \"2603:1040:c06:402::a0/123\",\r\n
+ \ \"2603:1040:d04:400::a0/123\",\r\n \"2603:1040:d04:800::160/123\",\r\n
+ \ \"2603:1040:d04:800::360/123\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\",\r\n
+ \ \"2603:1040:1104:400::a0/123\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\",\r\n
+ \ \"2603:1050:403:400::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaCentral\",\r\n \"id\":
+ \"AppService.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.43.207/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.37.226.0/27\",\r\n \"2603:1010:304:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppService.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.230/32\",\r\n \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n
+ \ \"2603:1010:404:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaEast\",\r\n \"id\": \"AppService.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"20.37.196.192/27\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n \"40.126.242.59/32\",\r\n
+ \ \"40.126.245.169/32\",\r\n \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n
+ \ \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n \"52.237.246.162/32\",\r\n
+ \ \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppService.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.77.7.175/32\",\r\n
+ \ \"13.77.50.96/27\",\r\n \"20.42.228.160/27\",\r\n \"23.101.224.24/32\",\r\n
+ \ \"23.101.230.162/32\",\r\n \"52.189.213.49/32\",\r\n \"52.255.35.249/32\",\r\n
+ \ \"52.255.54.134/32\",\r\n \"191.239.188.11/32\",\r\n \"2603:1010:101:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.BrazilSouth\",\r\n
+ \ \"id\": \"AppService.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.96.32/32\",\r\n \"104.41.9.139/32\",\r\n \"104.41.13.179/32\",\r\n
+ \ \"104.41.63.108/32\",\r\n \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaCentral\",\r\n
+ \ \"id\": \"AppService.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.128/27\",\r\n \"20.38.146.160/27\",\r\n
+ \ \"40.82.191.84/32\",\r\n \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaEast\",\r\n
+ \ \"id\": \"AppService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.96/27\",\r\n \"40.86.225.89/32\",\r\n
+ \ \"40.86.230.96/32\",\r\n \"40.89.19.0/27\",\r\n \"52.229.115.84/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"2603:1030:1005:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CentralIndia\",\r\n
+ \ \"id\": \"AppService.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.98.160/27\",\r\n \"40.80.50.160/27\",\r\n
+ \ \"52.140.106.224/27\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"2603:1040:a06:402::a0/123\",\r\n \"2603:1040:a06:802::a0/123\",\r\n
+ \ \"2603:1040:a06:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUS\",\r\n \"id\": \"AppService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.129.26/32\",\r\n \"13.67.141.98/32\",\r\n
+ \ \"13.89.57.7/32\",\r\n \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n
+ \ \"23.99.192.132/32\",\r\n \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n
+ \ \"23.99.224.56/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.118.145/32\",\r\n
+ \ \"23.101.119.44/32\",\r\n \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n
+ \ \"23.101.125.65/32\",\r\n \"40.69.190.41/32\",\r\n \"40.77.56.174/32\",\r\n
+ \ \"40.83.16.172/32\",\r\n \"40.86.86.144/32\",\r\n \"40.86.91.212/32\",\r\n
+ \ \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.173.28.95/32\",\r\n
+ \ \"52.173.36.83/32\",\r\n \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n
+ \ \"52.173.83.49/32\",\r\n \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n
+ \ \"52.173.94.173/32\",\r\n \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n
+ \ \"52.173.139.125/32\",\r\n \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n
+ \ \"52.173.184.147/32\",\r\n \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n
+ \ \"52.176.2.229/32\",\r\n \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n
+ \ \"52.176.6.37/32\",\r\n \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n
+ \ \"52.176.149.197/32\",\r\n \"52.176.165.69/32\",\r\n \"104.43.129.105/32\",\r\n
+ \ \"104.43.140.101/32\",\r\n \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n
+ \ \"104.43.246.71/32\",\r\n \"104.43.254.102/32\",\r\n \"168.61.152.29/32\",\r\n
+ \ \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n \"168.61.218.125/32\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUSEUAP\",\r\n \"id\": \"AppService.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.196.16/29\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"52.180.178.6/32\",\r\n \"52.180.183.66/32\",\r\n \"104.208.48.107/32\",\r\n
+ \ \"2603:1030:f:400::8a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.EastAsia\",\r\n \"id\": \"AppService.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n
+ \ \"13.75.47.15/32\",\r\n \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n
+ \ \"13.75.115.40/32\",\r\n \"13.94.47.87/32\",\r\n \"20.189.104.96/27\",\r\n
+ \ \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n \"23.97.79.119/32\",\r\n
+ \ \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"40.83.72.59/32\",\r\n \"40.83.124.73/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"191.234.16.188/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1040:207:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS\",\r\n
+ \ \"id\": \"AppService.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n
+ \ \"13.82.175.96/32\",\r\n \"13.90.143.69/32\",\r\n \"13.90.213.204/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.49.104.0/25\",\r\n \"23.96.0.52/32\",\r\n
+ \ \"23.96.1.109/32\",\r\n \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n
+ \ \"23.96.96.142/32\",\r\n \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n
+ \ \"23.96.113.128/32\",\r\n \"23.96.124.25/32\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.76.5.137/32\",\r\n
+ \ \"40.76.192.15/32\",\r\n \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n
+ \ \"40.76.223.101/32\",\r\n \"40.79.154.192/27\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.87.65.131/32\",\r\n \"40.87.70.95/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.179.97.15/32\",\r\n
+ \ \"52.226.134.64/32\",\r\n \"52.234.209.94/32\",\r\n \"104.45.129.178/32\",\r\n
+ \ \"104.45.141.247/32\",\r\n \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n
+ \ \"104.45.154.200/32\",\r\n \"104.211.26.212/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"168.62.48.183/32\",\r\n \"168.62.180.173/32\",\r\n \"191.236.16.12/32\",\r\n
+ \ \"191.236.59.67/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2\",\r\n
+ \ \"id\": \"AppService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.77.82.141/32\",\r\n \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"23.101.147.117/32\",\r\n \"40.70.27.35/32\",\r\n
+ \ \"40.70.147.0/25\",\r\n \"40.79.65.200/32\",\r\n \"40.84.54.203/32\",\r\n
+ \ \"40.84.59.174/32\",\r\n \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n
+ \ \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n \"52.177.206.73/32\",\r\n
+ \ \"52.179.188.206/32\",\r\n \"52.184.162.135/32\",\r\n \"52.184.193.103/32\",\r\n
+ \ \"52.184.193.104/32\",\r\n \"104.46.101.59/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n \"191.236.192.121/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2EUAP\",\r\n
+ \ \"id\": \"AppService.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.11.104/29\",\r\n \"52.225.179.39/32\",\r\n
+ \ \"52.225.190.65/32\",\r\n \"52.253.224.223/32\",\r\n \"2603:1030:40b:400::8a0/123\",\r\n
+ \ \"2603:1030:40b:800::a0/123\",\r\n \"2603:1030:40b:c00::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.FranceCentral\",\r\n
+ \ \"id\": \"AppService.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.43.32/27\",\r\n \"40.79.130.128/27\",\r\n
+ \ \"40.89.131.148/32\",\r\n \"40.89.141.103/32\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"2603:1020:805:402::a0/123\",\r\n \"2603:1020:805:802::a0/123\",\r\n
+ \ \"2603:1020:805:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.FranceSouth\",\r\n \"id\": \"AppService.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.79.178.96/27\",\r\n \"51.105.90.32/27\",\r\n
+ \ \"52.136.138.55/32\",\r\n \"2603:1020:905:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.GermanyNorth\",\r\n
+ \ \"id\": \"AppService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"2603:1020:d04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.GermanyWestCentral\",\r\n \"id\":
+ \"AppService.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n
+ \ \"51.116.242.160/27\",\r\n \"51.116.250.160/27\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.JapanEast\",\r\n
+ \ \"id\": \"AppService.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.149.151/32\",\r\n \"13.73.1.134/32\",\r\n
+ \ \"13.73.26.73/32\",\r\n \"13.78.59.237/32\",\r\n \"13.78.106.96/27\",\r\n
+ \ \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n \"20.43.67.32/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.115.179.121/32\",\r\n \"40.115.251.148/32\",\r\n
+ \ \"52.243.39.89/32\",\r\n \"104.41.186.103/32\",\r\n \"138.91.0.30/32\",\r\n
+ \ \"2603:1040:407:402::a0/123\",\r\n \"2603:1040:407:802::a0/123\",\r\n
+ \ \"2603:1040:407:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.JapanWest\",\r\n \"id\": \"AppService.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.128/27\",\r\n \"40.74.133.20/32\",\r\n
+ \ \"40.80.58.224/27\",\r\n \"52.175.158.219/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.215.11.176/32\",\r\n \"104.215.58.230/32\",\r\n \"138.91.16.18/32\",\r\n
+ \ \"2603:1040:606:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.KoreaCentral\",\r\n \"id\": \"AppService.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.66.224/27\",\r\n \"20.44.26.160/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n
+ \ \"52.231.38.95/32\",\r\n \"52.231.77.58/32\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.KoreaSouth\",\r\n
+ \ \"id\": \"AppService.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.224/27\",\r\n \"52.231.146.96/27\",\r\n
+ \ \"52.231.200.101/32\",\r\n \"52.231.200.179/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AppService.NorthCentralUS\",\r\n
+ \ \"id\": \"AppService.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n \"23.96.207.177/32\",\r\n
+ \ \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n \"23.100.72.240/32\",\r\n
+ \ \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n \"23.101.172.244/32\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.252.160.21/32\",\r\n \"65.52.24.41/32\",\r\n \"65.52.213.73/32\",\r\n
+ \ \"65.52.217.59/32\",\r\n \"65.52.218.253/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"2603:1030:608:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorthEurope\",\r\n \"id\": \"AppService.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.74.41.233/32\",\r\n \"13.74.147.218/32\",\r\n
+ \ \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"20.50.64.0/25\",\r\n
+ \ \"23.100.48.106/32\",\r\n \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n
+ \ \"23.100.56.27/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.102.12.43/32\",\r\n \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n
+ \ \"23.102.25.149/32\",\r\n \"23.102.28.178/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n
+ \ \"40.69.218.150/32\",\r\n \"40.85.74.227/32\",\r\n \"40.85.92.115/32\",\r\n
+ \ \"40.85.96.208/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.113.2.52/32\",\r\n \"40.113.65.9/32\",\r\n
+ \ \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n \"40.113.90.202/32\",\r\n
+ \ \"40.115.98.85/32\",\r\n \"40.127.132.204/32\",\r\n \"40.127.139.252/32\",\r\n
+ \ \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n \"52.178.179.169/32\",\r\n
+ \ \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n \"52.178.208.12/32\",\r\n
+ \ \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"168.63.53.239/32\",\r\n \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n
+ \ \"191.235.177.30/32\",\r\n \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"2603:1020:5:402::a0/123\",\r\n \"2603:1020:5:802::a0/123\",\r\n
+ \ \"2603:1020:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorwayEast\",\r\n \"id\": \"AppService.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.NorwayWest\",\r\n
+ \ \"id\": \"AppService.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.192/27\",\r\n \"51.120.226.0/27\",\r\n
+ \ \"2603:1020:f04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaNorth\",\r\n \"id\":
+ \"AppService.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.160/27\",\r\n \"102.133.154.32/27\",\r\n
+ \ \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaWest\",\r\n \"id\":
+ \"AppService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n
+ \ \"2603:1000:4:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthCentralUS\",\r\n \"id\": \"AppService.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.30.245/32\",\r\n \"13.65.37.122/32\",\r\n
+ \ \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n \"13.65.42.183/32\",\r\n
+ \ \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n \"13.65.89.91/32\",\r\n
+ \ \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n \"13.65.95.109/32\",\r\n
+ \ \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n \"13.65.210.166/32\",\r\n
+ \ \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n \"13.65.243.110/32\",\r\n
+ \ \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n \"13.66.39.88/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.49.90.32/27\",\r\n \"23.101.180.75/32\",\r\n \"23.102.154.38/32\",\r\n
+ \ \"23.102.161.217/32\",\r\n \"23.102.191.170/32\",\r\n \"40.74.245.188/32\",\r\n
+ \ \"40.74.253.108/32\",\r\n \"40.74.255.112/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.124.12.75/32\",\r\n \"40.124.13.58/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n \"104.210.145.181/32\",\r\n
+ \ \"104.210.147.57/32\",\r\n \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"2603:1030:807:402::a0/123\",\r\n \"2603:1030:807:802::a0/123\",\r\n
+ \ \"2603:1030:807:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SoutheastAsia\",\r\n \"id\": \"AppService.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.9.0/25\",\r\n \"13.67.56.225/32\",\r\n
+ \ \"13.67.63.90/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"20.43.132.128/25\",\r\n \"20.188.98.74/32\",\r\n \"23.97.56.169/32\",\r\n
+ \ \"23.98.64.36/32\",\r\n \"23.98.64.158/32\",\r\n \"23.101.27.182/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.187.17.126/32\",\r\n \"52.187.36.104/32\",\r\n
+ \ \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n \"111.221.95.27/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"2603:1040:5:402::a0/123\",\r\n \"2603:1040:5:802::a0/123\",\r\n
+ \ \"2603:1040:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthIndia\",\r\n \"id\": \"AppService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.122.35/32\",\r\n \"13.71.123.138/32\",\r\n
+ \ \"20.41.195.192/27\",\r\n \"40.78.194.96/27\",\r\n \"52.172.54.225/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"2603:1040:c06:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SwitzerlandNorth\",\r\n \"id\":
+ \"AppService.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"51.107.50.0/27\",\r\n
+ \ \"51.107.58.160/27\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppService.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.146.0/27\",\r\n \"51.107.154.160/27\",\r\n
+ \ \"2603:1020:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAECentral\",\r\n \"id\": \"AppService.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.66.0/27\",\r\n \"20.37.74.96/27\",\r\n
+ \ \"2603:1040:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAENorth\",\r\n \"id\": \"AppService.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.138.0/27\",\r\n \"40.120.74.32/27\",\r\n
+ \ \"65.52.250.96/27\",\r\n \"2603:1040:904:402::a0/123\",\r\n
+ \ \"2603:1040:904:802::a0/123\",\r\n \"2603:1040:904:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKNorth\",\r\n
+ \ \"id\": \"AppService.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:305:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth\",\r\n
+ \ \"id\": \"AppService.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"2603:1020:705:402::a0/123\",\r\n
+ \ \"2603:1020:705:802::a0/123\",\r\n \"2603:1020:705:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth2\",\r\n
+ \ \"id\": \"AppService.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:405:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKWest\",\r\n
+ \ \"id\": \"AppService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.163.32/27\",\r\n \"51.140.210.96/27\",\r\n
+ \ \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n \"51.141.12.112/32\",\r\n
+ \ \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n \"51.141.45.207/32\",\r\n
+ \ \"51.141.90.252/32\",\r\n \"2603:1020:605:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestCentralUS\",\r\n
+ \ \"id\": \"AppService.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.192/27\",\r\n \"13.78.150.96/32\",\r\n
+ \ \"13.78.184.89/32\",\r\n \"52.150.140.224/27\",\r\n \"52.161.96.193/32\",\r\n
+ \ \"2603:1030:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestEurope\",\r\n \"id\": \"AppService.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.68.0/23\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.94.143.57/32\",\r\n \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n
+ \ \"13.95.82.181/32\",\r\n \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n
+ \ \"13.95.238.192/32\",\r\n \"20.50.2.0/23\",\r\n \"23.97.160.56/32\",\r\n
+ \ \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n \"23.97.195.129/32\",\r\n
+ \ \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n \"23.97.216.47/32\",\r\n
+ \ \"23.97.224.11/32\",\r\n \"23.100.1.29/32\",\r\n \"23.101.67.245/32\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.113.126.251/32\",\r\n
+ \ \"40.113.131.37/32\",\r\n \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n
+ \ \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n \"40.114.228.161/32\",\r\n
+ \ \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n \"40.115.55.251/32\",\r\n
+ \ \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n \"40.118.96.231/32\",\r\n
+ \ \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n \"40.118.102.46/32\",\r\n
+ \ \"51.105.172.25/32\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n \"51.144.116.43/32\",\r\n
+ \ \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.178.29.39/32\",\r\n
+ \ \"52.178.37.244/32\",\r\n \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n
+ \ \"52.178.46.181/32\",\r\n \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n
+ \ \"52.178.89.129/32\",\r\n \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n
+ \ \"52.178.105.179/32\",\r\n \"52.178.114.226/32\",\r\n \"52.232.19.237/32\",\r\n
+ \ \"52.232.26.228/32\",\r\n \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n
+ \ \"52.232.127.196/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"104.40.129.89/32\",\r\n
+ \ \"104.40.147.180/32\",\r\n \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n
+ \ \"104.40.179.243/32\",\r\n \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n
+ \ \"104.40.187.26/32\",\r\n \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n
+ \ \"104.40.215.219/32\",\r\n \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.47.137.62/32\",\r\n
+ \ \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n \"104.47.164.119/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"137.117.166.35/32\",\r\n
+ \ \"137.117.175.14/32\",\r\n \"137.117.203.130/32\",\r\n
+ \ \"137.117.211.244/32\",\r\n \"137.117.218.101/32\",\r\n
+ \ \"137.117.224.218/32\",\r\n \"137.117.225.87/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.107.5/32\",\r\n \"191.233.82.44/32\",\r\n
+ \ \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n \"2603:1020:206:402::a0/123\",\r\n
+ \ \"2603:1020:206:802::a0/123\",\r\n \"2603:1020:206:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestIndia\",\r\n
+ \ \"id\": \"AppService.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.50.0/27\",\r\n \"104.211.146.96/27\",\r\n
+ \ \"104.211.160.159/32\",\r\n \"104.211.179.11/32\",\r\n
+ \ \"104.211.184.197/32\",\r\n \"2603:1040:806:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestUS\",\r\n
+ \ \"id\": \"AppService.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.73.110/32\",\r\n \"13.91.40.166/32\",\r\n
+ \ \"13.91.242.166/32\",\r\n \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n
+ \ \"13.93.220.109/32\",\r\n \"13.93.231.75/32\",\r\n \"23.99.0.12/32\",\r\n
+ \ \"23.99.65.65/32\",\r\n \"23.99.91.55/32\",\r\n \"23.100.46.198/32\",\r\n
+ \ \"23.101.203.117/32\",\r\n \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n
+ \ \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n \"40.78.48.219/32\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.82.255.128/25\",\r\n
+ \ \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n \"40.83.182.206/32\",\r\n
+ \ \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n \"40.112.142.148/32\",\r\n
+ \ \"40.112.143.134/32\",\r\n \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n
+ \ \"40.112.165.44/32\",\r\n \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n
+ \ \"40.112.192.69/32\",\r\n \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n
+ \ \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n \"40.118.246.51/32\",\r\n
+ \ \"40.118.255.59/32\",\r\n \"52.160.40.218/32\",\r\n \"104.40.3.53/32\",\r\n
+ \ \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n \"104.40.53.219/32\",\r\n
+ \ \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n \"104.40.92.107/32\",\r\n
+ \ \"104.42.53.248/32\",\r\n \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n
+ \ \"104.42.148.55/32\",\r\n \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n
+ \ \"104.42.188.146/32\",\r\n \"104.42.231.5/32\",\r\n \"104.45.226.98/32\",\r\n
+ \ \"104.45.231.79/32\",\r\n \"104.210.38.149/32\",\r\n \"137.117.9.212/32\",\r\n
+ \ \"137.117.17.70/32\",\r\n \"138.91.224.84/32\",\r\n \"138.91.225.40/32\",\r\n
+ \ \"138.91.240.81/32\",\r\n \"168.62.20.37/32\",\r\n \"191.236.80.12/32\",\r\n
+ \ \"191.236.106.123/32\",\r\n \"191.239.58.162/32\",\r\n
+ \ \"2603:1030:a07:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestUS2\",\r\n \"id\": \"AppService.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"20.42.128.96/27\",\r\n
+ \ \"40.64.128.224/27\",\r\n \"51.143.102.21/32\",\r\n \"52.151.62.51/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.183.82.125/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"2603:1030:c06:400::8a0/123\",\r\n
+ \ \"2603:1030:c06:802::a0/123\",\r\n \"2603:1030:c06:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement\",\r\n
+ \ \"id\": \"AppServiceManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppServiceManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n \"13.66.140.0/26\",\r\n
+ \ \"13.67.8.128/26\",\r\n \"13.69.64.128/26\",\r\n \"13.69.227.128/26\",\r\n
+ \ \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"13.71.170.64/26\",\r\n
+ \ \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n \"13.71.194.128/26\",\r\n
+ \ \"13.73.240.128/26\",\r\n \"13.73.242.64/26\",\r\n \"13.75.34.192/26\",\r\n
+ \ \"13.75.127.117/32\",\r\n \"13.77.50.128/26\",\r\n \"13.78.106.128/26\",\r\n
+ \ \"13.78.109.0/26\",\r\n \"13.87.56.128/26\",\r\n \"13.87.122.128/26\",\r\n
+ \ \"13.89.171.0/26\",\r\n \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n
+ \ \"13.94.149.179/32\",\r\n \"20.36.106.128/26\",\r\n \"20.36.114.64/26\",\r\n
+ \ \"20.37.74.128/26\",\r\n \"20.43.120.128/26\",\r\n \"20.44.2.192/26\",\r\n
+ \ \"20.44.27.0/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.82.128/26\",\r\n
+ \ \"20.49.90.128/26\",\r\n \"20.72.26.192/26\",\r\n \"20.150.171.0/26\",\r\n
+ \ \"20.150.179.0/26\",\r\n \"20.150.187.0/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"20.192.234.192/26\",\r\n \"20.193.202.192/26\",\r\n \"20.194.66.128/26\",\r\n
+ \ \"23.96.195.3/32\",\r\n \"23.100.226.236/32\",\r\n \"23.102.188.65/32\",\r\n
+ \ \"40.67.59.0/26\",\r\n \"40.69.106.128/26\",\r\n \"40.70.146.128/26\",\r\n
+ \ \"40.71.11.0/26\",\r\n \"40.71.13.64/26\",\r\n \"40.74.100.64/26\",\r\n
+ \ \"40.78.194.128/26\",\r\n \"40.79.130.64/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"40.79.178.128/26\",\r\n \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n
+ \ \"40.83.125.161/32\",\r\n \"40.90.240.166/32\",\r\n \"40.91.126.196/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"40.119.4.111/32\",\r\n \"40.120.74.128/26\",\r\n
+ \ \"40.124.47.188/32\",\r\n \"51.12.99.0/26\",\r\n \"51.12.203.0/26\",\r\n
+ \ \"51.12.227.0/26\",\r\n \"51.12.235.0/26\",\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.107.58.192/26\",\r\n \"51.107.154.192/26\",\r\n
+ \ \"51.116.58.192/26\",\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"51.120.219.0/26\",\r\n
+ \ \"51.140.146.64/26\",\r\n \"51.140.210.128/26\",\r\n \"52.151.25.45/32\",\r\n
+ \ \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"52.178.177.147/32\",\r\n \"52.178.184.149/32\",\r\n
+ \ \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n \"52.187.56.50/32\",\r\n
+ \ \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n \"52.187.63.37/32\",\r\n
+ \ \"52.224.105.172/32\",\r\n \"52.225.177.15/32\",\r\n \"52.225.177.153/32\",\r\n
+ \ \"52.231.18.64/26\",\r\n \"52.231.146.128/26\",\r\n \"52.246.157.64/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.172.237/32\",\r\n \"65.52.193.203/32\",\r\n
+ \ \"65.52.250.128/26\",\r\n \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n
+ \ \"102.133.26.192/26\",\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"104.43.242.137/32\",\r\n
+ \ \"104.44.129.141/32\",\r\n \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n
+ \ \"104.44.134.255/32\",\r\n \"104.208.54.11/32\",\r\n \"104.211.81.64/26\",\r\n
+ \ \"104.211.146.128/26\",\r\n \"104.214.18.192/26\",\r\n
+ \ \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"168.61.143.0/26\",\r\n \"191.233.50.128/26\",\r\n \"191.233.203.64/26\",\r\n
+ \ \"191.234.147.0/26\",\r\n \"191.234.155.0/26\",\r\n \"191.236.154.88/32\",\r\n
+ \ \"2603:1000:4:402::100/122\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\",\r\n \"2603:1010:101:402::100/122\",\r\n
+ \ \"2603:1010:304:402::100/122\",\r\n \"2603:1010:404:402::100/122\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\",\r\n
+ \ \"2603:1020:305:402::100/122\",\r\n \"2603:1020:405:402::100/122\",\r\n
+ \ \"2603:1020:605:402::100/122\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\",\r\n
+ \ \"2603:1020:805:402::100/122\",\r\n \"2603:1020:805:802::100/122\",\r\n
+ \ \"2603:1020:805:c02::100/122\",\r\n \"2603:1020:905:402::100/122\",\r\n
+ \ \"2603:1020:a04:402::100/122\",\r\n \"2603:1020:a04:802::100/122\",\r\n
+ \ \"2603:1020:a04:c02::100/122\",\r\n \"2603:1020:b04:402::100/122\",\r\n
+ \ \"2603:1020:c04:402::100/122\",\r\n \"2603:1020:c04:802::100/122\",\r\n
+ \ \"2603:1020:c04:c02::100/122\",\r\n \"2603:1020:d04:402::100/122\",\r\n
+ \ \"2603:1020:e04:402::100/122\",\r\n \"2603:1020:e04:802::100/122\",\r\n
+ \ \"2603:1020:e04:c02::100/122\",\r\n \"2603:1020:f04:402::100/122\",\r\n
+ \ \"2603:1020:1004:400::440/122\",\r\n \"2603:1020:1004:800::80/122\",\r\n
+ \ \"2603:1020:1004:800::200/122\",\r\n \"2603:1020:1004:800::380/122\",\r\n
+ \ \"2603:1020:1104:400::100/122\",\r\n \"2603:1030:f:400::900/122\",\r\n
+ \ \"2603:1030:10:402::100/122\",\r\n \"2603:1030:10:802::100/122\",\r\n
+ \ \"2603:1030:10:c02::100/122\",\r\n \"2603:1030:104:402::100/122\",\r\n
+ \ \"2603:1030:107:400::80/122\",\r\n \"2603:1030:210:402::100/122\",\r\n
+ \ \"2603:1030:210:802::100/122\",\r\n \"2603:1030:210:c02::100/122\",\r\n
+ \ \"2603:1030:40b:400::900/122\",\r\n \"2603:1030:40b:800::100/122\",\r\n
+ \ \"2603:1030:40b:c00::100/122\",\r\n \"2603:1030:40c:402::100/122\",\r\n
+ \ \"2603:1030:40c:802::100/122\",\r\n \"2603:1030:40c:c02::100/122\",\r\n
+ \ \"2603:1030:504:402::400/122\",\r\n \"2603:1030:504:802::80/122\",\r\n
+ \ \"2603:1030:504:802::380/122\",\r\n \"2603:1030:608:402::100/122\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\",\r\n \"2603:1030:a07:402::880/122\",\r\n
+ \ \"2603:1030:b04:402::100/122\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\",\r\n
+ \ \"2603:1030:f05:402::100/122\",\r\n \"2603:1030:f05:802::100/122\",\r\n
+ \ \"2603:1030:f05:c02::100/122\",\r\n \"2603:1030:1005:402::100/122\",\r\n
+ \ \"2603:1040:5:402::100/122\",\r\n \"2603:1040:5:802::100/122\",\r\n
+ \ \"2603:1040:5:c02::100/122\",\r\n \"2603:1040:207:402::100/122\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\",\r\n \"2603:1040:606:402::100/122\",\r\n
+ \ \"2603:1040:806:402::100/122\",\r\n \"2603:1040:904:402::100/122\",\r\n
+ \ \"2603:1040:904:802::100/122\",\r\n \"2603:1040:904:c02::100/122\",\r\n
+ \ \"2603:1040:a06:402::100/122\",\r\n \"2603:1040:a06:802::100/122\",\r\n
+ \ \"2603:1040:a06:c02::100/122\",\r\n \"2603:1040:b04:402::100/122\",\r\n
+ \ \"2603:1040:c06:402::100/122\",\r\n \"2603:1040:d04:400::440/122\",\r\n
+ \ \"2603:1040:d04:800::80/122\",\r\n \"2603:1040:d04:800::200/122\",\r\n
+ \ \"2603:1040:d04:800::380/122\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\",\r\n
+ \ \"2603:1040:1104:400::100/122\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\",\r\n
+ \ \"2603:1050:403:400::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaCentral\",\r\n \"id\":
+ \"AppServiceManagement.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.128/26\",\r\n \"2603:1010:304:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.64/26\",\r\n \"2603:1010:404:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.128/26\",\r\n \"2603:1010:101:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.BrazilSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.64/26\",\r\n \"191.234.147.0/26\",\r\n
+ \ \"191.234.155.0/26\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.64/26\",\r\n \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n
+ \ \"52.246.157.64/26\",\r\n \"2603:1030:f05:402::100/122\",\r\n
+ \ \"2603:1030:f05:802::100/122\",\r\n \"2603:1030:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.128/26\",\r\n \"2603:1030:1005:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.128/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"104.211.81.64/26\",\r\n \"2603:1040:a06:402::100/122\",\r\n
+ \ \"2603:1040:a06:802::100/122\",\r\n \"2603:1040:a06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.0/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"104.43.242.137/32\",\r\n \"2603:1030:10:402::100/122\",\r\n
+ \ \"2603:1030:10:802::100/122\",\r\n \"2603:1030:10:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastAsia\",\r\n
+ \ \"id\": \"AppServiceManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.192/26\",\r\n \"13.75.127.117/32\",\r\n
+ \ \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n \"40.83.125.161/32\",\r\n
+ \ \"65.52.172.237/32\",\r\n \"2603:1040:207:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastUS\",\r\n
+ \ \"id\": \"AppServiceManagement.EastUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.0/26\",\r\n
+ \ \"40.71.13.64/26\",\r\n \"40.90.240.166/32\",\r\n \"52.224.105.172/32\",\r\n
+ \ \"2603:1030:210:402::100/122\",\r\n \"2603:1030:210:802::100/122\",\r\n
+ \ \"2603:1030:210:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.128/26\",\r\n
+ \ \"2603:1030:40c:402::100/122\",\r\n \"2603:1030:40c:802::100/122\",\r\n
+ \ \"2603:1030:40c:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2EUAP\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"52.225.177.15/32\",\r\n
+ \ \"52.225.177.153/32\",\r\n \"2603:1030:40b:400::900/122\",\r\n
+ \ \"2603:1030:40b:800::100/122\",\r\n \"2603:1030:40b:c00::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.64/26\",\r\n \"2603:1020:805:402::100/122\",\r\n
+ \ \"2603:1020:805:802::100/122\",\r\n \"2603:1020:805:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.128/26\",\r\n \"2603:1020:905:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.192/26\",\r\n \"2603:1020:d04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"2603:1020:c04:402::100/122\",\r\n
+ \ \"2603:1020:c04:802::100/122\",\r\n \"2603:1020:c04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.JapanEast\",\r\n
+ \ \"id\": \"AppServiceManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.128/26\",\r\n \"13.78.109.0/26\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.JapanWest\",\r\n \"id\":
+ \"AppServiceManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.100.64/26\",\r\n
+ \ \"2603:1040:606:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.KoreaCentral\",\r\n \"id\":
+ \"AppServiceManagement.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.0/26\",\r\n
+ \ \"20.194.66.128/26\",\r\n \"52.231.18.64/26\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.KoreaSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.128/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorthCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"23.96.195.3/32\",\r\n
+ \ \"23.100.226.236/32\",\r\n \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.193.203/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"191.236.154.88/32\",\r\n \"2603:1030:608:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorthEurope\",\r\n
+ \ \"id\": \"AppServiceManagement.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.128/26\",\r\n \"52.178.177.147/32\",\r\n
+ \ \"52.178.184.149/32\",\r\n \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorwayEast\",\r\n \"id\":
+ \"AppServiceManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"2603:1020:e04:402::100/122\",\r\n
+ \ \"2603:1020:e04:802::100/122\",\r\n \"2603:1020:e04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorwayWest\",\r\n
+ \ \"id\": \"AppServiceManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.219.0/26\",\r\n \"2603:1020:f04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.192/26\",\r\n \"2603:1000:4:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.128/26\",\r\n
+ \ \"13.73.242.64/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.90.128/26\",\r\n
+ \ \"23.102.188.65/32\",\r\n \"40.119.4.111/32\",\r\n \"40.124.47.188/32\",\r\n
+ \ \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n \"104.44.129.141/32\",\r\n
+ \ \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n \"104.44.134.255/32\",\r\n
+ \ \"104.214.18.192/26\",\r\n \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.SoutheastAsia\",\r\n \"id\":
+ \"AppServiceManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.128/26\",\r\n
+ \ \"52.187.56.50/32\",\r\n \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n
+ \ \"52.187.63.37/32\",\r\n \"2603:1040:5:402::100/122\",\r\n
+ \ \"2603:1040:5:802::100/122\",\r\n \"2603:1040:5:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.128/26\",\r\n \"2603:1040:c06:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.192/26\",\r\n \"2603:1020:a04:402::100/122\",\r\n
+ \ \"2603:1020:a04:802::100/122\",\r\n \"2603:1020:a04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.192/26\",\r\n \"2603:1020:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAECentral\",\r\n
+ \ \"id\": \"AppServiceManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.128/26\",\r\n \"2603:1040:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAENorth\",\r\n
+ \ \"id\": \"AppServiceManagement.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.128/26\",\r\n \"65.52.250.128/26\",\r\n
+ \ \"2603:1040:904:402::100/122\",\r\n \"2603:1040:904:802::100/122\",\r\n
+ \ \"2603:1040:904:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKSouth\",\r\n \"id\":
+ \"AppServiceManagement.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.140.146.64/26\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UKSouth2\",\r\n
+ \ \"id\": \"AppServiceManagement.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.56.128/26\",\r\n
+ \ \"2603:1020:405:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKWest\",\r\n \"id\":
+ \"AppServiceManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.128/26\",\r\n
+ \ \"2603:1020:605:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.128/26\",\r\n
+ \ \"2603:1030:b04:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestEurope\",\r\n \"id\":
+ \"AppServiceManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.128/26\",\r\n
+ \ \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n \"13.94.149.179/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.128/26\",\r\n \"2603:1040:806:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"2603:1030:a07:402::880/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS2\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.0/26\",\r\n
+ \ \"40.91.126.196/32\",\r\n \"52.151.25.45/32\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectory\",\r\n
+ \ \"id\": \"AzureActiveDirectory\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAD\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n \"13.66.141.64/27\",\r\n
+ \ \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n \"13.69.229.96/27\",\r\n
+ \ \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n \"13.71.195.224/27\",\r\n
+ \ \"13.71.201.64/26\",\r\n \"13.73.240.32/27\",\r\n \"13.74.104.0/26\",\r\n
+ \ \"13.74.249.156/32\",\r\n \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n
+ \ \"13.77.52.160/27\",\r\n \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n
+ \ \"13.79.37.247/32\",\r\n \"13.86.219.0/27\",\r\n \"13.87.16.0/26\",\r\n
+ \ \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n \"13.89.174.0/27\",\r\n
+ \ \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n \"20.37.75.96/27\",\r\n
+ \ \"20.40.228.64/28\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.9.80/28\",\r\n
+ \ \"20.51.16.128/27\",\r\n \"20.61.98.160/27\",\r\n \"20.61.99.128/28\",\r\n
+ \ \"20.62.58.80/28\",\r\n \"20.62.129.0/27\",\r\n \"20.62.129.240/28\",\r\n
+ \ \"20.65.132.96/28\",\r\n \"20.66.2.32/27\",\r\n \"20.66.3.16/28\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.187.197.240/28\",\r\n \"20.190.128.0/18\",\r\n
+ \ \"20.194.73.0/28\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"20.195.64.240/28\",\r\n \"23.101.0.70/32\",\r\n
+ \ \"23.101.6.190/32\",\r\n \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n
+ \ \"40.71.13.0/27\",\r\n \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n
+ \ \"40.78.195.160/27\",\r\n \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n
+ \ \"40.79.179.128/27\",\r\n \"40.83.144.56/32\",\r\n \"40.126.0.0/18\",\r\n
+ \ \"51.140.148.192/27\",\r\n \"51.140.208.0/26\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.146.133.80/28\",\r\n \"52.150.157.0/27\",\r\n \"52.159.175.31/32\",\r\n
+ \ \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n \"52.161.110.169/32\",\r\n
+ \ \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n \"52.169.218.0/32\",\r\n
+ \ \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n \"52.178.27.112/32\",\r\n
+ \ \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n \"52.180.177.87/32\",\r\n
+ \ \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n \"52.180.183.8/32\",\r\n
+ \ \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n \"52.187.117.83/32\",\r\n
+ \ \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n \"52.225.188.89/32\",\r\n
+ \ \"52.226.169.40/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.40.168.0/26\",\r\n \"104.41.159.212/32\",\r\n
+ \ \"104.45.138.161/32\",\r\n \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\",\r\n \"2603:1006:2000::/48\",\r\n
+ \ \"2603:1007:200::/48\",\r\n \"2603:1016:1400::/48\",\r\n
+ \ \"2603:1017::/48\",\r\n \"2603:1026:3000::/48\",\r\n \"2603:1027:1::/48\",\r\n
+ \ \"2603:1036:3000::/48\",\r\n \"2603:1037:1::/48\",\r\n
+ \ \"2603:1046:2000::/48\",\r\n \"2603:1047:1::/48\",\r\n
+ \ \"2603:1056:2000::/48\",\r\n \"2603:1057:2::/48\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectoryDomainServices\",\r\n
+ \ \"id\": \"AzureActiveDirectoryDomainServices\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureIdentity\",\r\n \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n
+ \ \"13.66.141.64/27\",\r\n \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n
+ \ \"13.69.229.96/27\",\r\n \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n
+ \ \"13.71.195.224/27\",\r\n \"13.73.240.32/27\",\r\n \"13.74.249.156/32\",\r\n
+ \ \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n \"13.77.52.160/27\",\r\n
+ \ \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n \"13.79.37.247/32\",\r\n
+ \ \"13.86.219.0/27\",\r\n \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n
+ \ \"13.89.174.0/27\",\r\n \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n
+ \ \"20.37.75.96/27\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.16.128/27\",\r\n
+ \ \"20.61.98.160/27\",\r\n \"20.62.129.0/27\",\r\n \"20.66.2.32/27\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"23.101.0.70/32\",\r\n \"23.101.6.190/32\",\r\n
+ \ \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n \"40.71.13.0/27\",\r\n
+ \ \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n \"40.78.195.160/27\",\r\n
+ \ \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n \"40.79.179.128/27\",\r\n
+ \ \"40.83.144.56/32\",\r\n \"51.140.148.192/27\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.150.157.0/27\",\r\n \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n
+ \ \"52.161.110.169/32\",\r\n \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n
+ \ \"52.169.218.0/32\",\r\n \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n
+ \ \"52.178.27.112/32\",\r\n \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n
+ \ \"52.180.177.87/32\",\r\n \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n
+ \ \"52.180.183.8/32\",\r\n \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n
+ \ \"52.187.117.83/32\",\r\n \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n
+ \ \"52.225.188.89/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.41.159.212/32\",\r\n \"104.45.138.161/32\",\r\n
+ \ \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureAdvancedThreatProtection\",\r\n \"id\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.72.105.31/32\",\r\n \"13.72.105.76/32\",\r\n
+ \ \"13.93.176.195/32\",\r\n \"13.93.176.215/32\",\r\n \"20.36.120.112/29\",\r\n
+ \ \"20.37.64.112/29\",\r\n \"20.37.156.192/29\",\r\n \"20.37.195.8/29\",\r\n
+ \ \"20.37.224.112/29\",\r\n \"20.38.84.96/29\",\r\n \"20.38.136.112/29\",\r\n
+ \ \"20.39.11.16/29\",\r\n \"20.41.4.96/29\",\r\n \"20.41.65.128/29\",\r\n
+ \ \"20.41.192.112/29\",\r\n \"20.42.4.192/29\",\r\n \"20.42.129.176/29\",\r\n
+ \ \"20.42.224.112/29\",\r\n \"20.43.41.144/29\",\r\n \"20.43.65.136/29\",\r\n
+ \ \"20.43.130.88/29\",\r\n \"20.45.112.112/29\",\r\n \"20.45.192.112/29\",\r\n
+ \ \"20.72.16.24/29\",\r\n \"20.150.160.112/29\",\r\n \"20.184.13.55/32\",\r\n
+ \ \"20.184.14.129/32\",\r\n \"20.189.106.120/29\",\r\n \"20.192.160.24/29\",\r\n
+ \ \"20.192.225.16/29\",\r\n \"40.65.107.78/32\",\r\n \"40.65.111.206/32\",\r\n
+ \ \"40.67.48.112/29\",\r\n \"40.74.30.96/29\",\r\n \"40.80.56.112/29\",\r\n
+ \ \"40.80.168.112/29\",\r\n \"40.80.188.16/29\",\r\n \"40.82.253.64/29\",\r\n
+ \ \"40.85.133.119/32\",\r\n \"40.85.133.178/32\",\r\n \"40.87.44.77/32\",\r\n
+ \ \"40.87.45.222/32\",\r\n \"40.89.16.112/29\",\r\n \"40.119.9.224/29\",\r\n
+ \ \"51.12.46.232/29\",\r\n \"51.12.198.192/29\",\r\n \"51.104.25.144/29\",\r\n
+ \ \"51.105.80.112/29\",\r\n \"51.105.88.112/29\",\r\n \"51.107.48.112/29\",\r\n
+ \ \"51.107.144.112/29\",\r\n \"51.120.40.112/29\",\r\n \"51.120.224.112/29\",\r\n
+ \ \"51.137.161.128/29\",\r\n \"51.143.183.3/32\",\r\n \"51.143.183.52/32\",\r\n
+ \ \"51.143.192.112/29\",\r\n \"52.136.48.112/29\",\r\n \"52.140.104.112/29\",\r\n
+ \ \"52.150.139.64/29\",\r\n \"52.170.0.116/32\",\r\n \"52.170.1.228/32\",\r\n
+ \ \"52.170.249.197/32\",\r\n \"52.174.66.179/32\",\r\n \"52.174.66.180/32\",\r\n
+ \ \"52.225.176.98/32\",\r\n \"52.225.181.34/32\",\r\n \"52.225.183.206/32\",\r\n
+ \ \"52.228.81.128/29\",\r\n \"104.42.25.10/32\",\r\n \"104.42.29.8/32\",\r\n
+ \ \"168.63.46.233/32\",\r\n \"168.63.46.241/32\",\r\n \"191.233.8.24/29\",\r\n
+ \ \"191.235.225.136/29\",\r\n \"2603:1000:4::140/123\",\r\n
+ \ \"2603:1000:104:1::140/123\",\r\n \"2603:1010:6:1::140/123\",\r\n
+ \ \"2603:1010:101::140/123\",\r\n \"2603:1010:304::140/123\",\r\n
+ \ \"2603:1010:404::140/123\",\r\n \"2603:1020:5:1::140/123\",\r\n
+ \ \"2603:1020:206:1::140/123\",\r\n \"2603:1020:305::140/123\",\r\n
+ \ \"2603:1020:405::140/123\",\r\n \"2603:1020:605::140/123\",\r\n
+ \ \"2603:1020:705:1::140/123\",\r\n \"2603:1020:805:1::140/123\",\r\n
+ \ \"2603:1020:905::140/123\",\r\n \"2603:1020:a04:1::140/123\",\r\n
+ \ \"2603:1020:b04::140/123\",\r\n \"2603:1020:c04:1::140/123\",\r\n
+ \ \"2603:1020:d04::140/123\",\r\n \"2603:1020:e04:1::140/123\",\r\n
+ \ \"2603:1020:f04::140/123\",\r\n \"2603:1020:1004::140/123\",\r\n
+ \ \"2603:1020:1104::140/123\",\r\n \"2603:1030:f:1::140/123\",\r\n
+ \ \"2603:1030:10:1::140/123\",\r\n \"2603:1030:104:1::140/123\",\r\n
+ \ \"2603:1030:107::140/123\",\r\n \"2603:1030:210:1::140/123\",\r\n
+ \ \"2603:1030:40b:1::140/123\",\r\n \"2603:1030:40c:1::140/123\",\r\n
+ \ \"2603:1030:504:1::140/123\",\r\n \"2603:1030:608::140/123\",\r\n
+ \ \"2603:1030:807:1::140/123\",\r\n \"2603:1030:a07::140/123\",\r\n
+ \ \"2603:1030:b04::140/123\",\r\n \"2603:1030:c06:1::140/123\",\r\n
+ \ \"2603:1030:f05:1::140/123\",\r\n \"2603:1030:1005::140/123\",\r\n
+ \ \"2603:1040:5:1::140/123\",\r\n \"2603:1040:207::140/123\",\r\n
+ \ \"2603:1040:407:1::140/123\",\r\n \"2603:1040:606::140/123\",\r\n
+ \ \"2603:1040:806::140/123\",\r\n \"2603:1040:904:1::140/123\",\r\n
+ \ \"2603:1040:a06:1::140/123\",\r\n \"2603:1040:b04::140/123\",\r\n
+ \ \"2603:1040:c06::140/123\",\r\n \"2603:1040:d04::140/123\",\r\n
+ \ \"2603:1040:f05:1::140/123\",\r\n \"2603:1040:1104::140/123\",\r\n
+ \ \"2603:1050:6:1::140/123\",\r\n \"2603:1050:403::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"40.89.16.112/29\",\r\n
+ \ \"2603:1030:1005::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR\",\r\n
+ \ \"id\": \"AzureAPIForFHIR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"13.69.233.32/31\",\r\n
+ \ \"13.70.78.170/31\",\r\n \"13.71.175.130/31\",\r\n \"13.71.199.118/31\",\r\n
+ \ \"13.73.244.194/31\",\r\n \"13.73.254.220/30\",\r\n \"13.78.111.194/31\",\r\n
+ \ \"13.80.124.132/32\",\r\n \"13.82.180.206/32\",\r\n \"13.86.221.218/31\",\r\n
+ \ \"13.87.58.136/31\",\r\n \"13.87.124.136/31\",\r\n \"20.36.117.192/31\",\r\n
+ \ \"20.36.123.84/30\",\r\n \"20.37.68.224/30\",\r\n \"20.37.76.204/31\",\r\n
+ \ \"20.37.198.142/31\",\r\n \"20.37.227.102/31\",\r\n \"20.37.228.12/31\",\r\n
+ \ \"20.38.128.170/31\",\r\n \"20.38.141.6/31\",\r\n \"20.38.142.104/31\",\r\n
+ \ \"20.39.15.58/31\",\r\n \"20.40.224.224/31\",\r\n \"20.40.224.228/31\",\r\n
+ \ \"20.40.230.128/28\",\r\n \"20.41.69.50/31\",\r\n \"20.41.69.60/31\",\r\n
+ \ \"20.42.230.234/31\",\r\n \"20.43.45.248/30\",\r\n \"20.43.121.122/31\",\r\n
+ \ \"20.44.4.232/31\",\r\n \"20.44.19.4/31\",\r\n \"20.45.90.96/28\",\r\n
+ \ \"20.45.112.122/31\",\r\n \"20.45.114.204/31\",\r\n \"20.45.117.48/28\",\r\n
+ \ \"20.45.199.40/30\",\r\n \"20.46.12.208/28\",\r\n \"20.46.15.0/27\",\r\n
+ \ \"20.48.192.84/30\",\r\n \"20.48.197.160/28\",\r\n \"20.49.99.46/31\",\r\n
+ \ \"20.49.102.228/31\",\r\n \"20.49.114.188/30\",\r\n \"20.49.127.240/31\",\r\n
+ \ \"20.51.0.208/28\",\r\n \"20.51.13.80/28\",\r\n \"20.51.16.168/31\",\r\n
+ \ \"20.51.21.80/28\",\r\n \"20.52.88.224/28\",\r\n \"20.53.0.32/31\",\r\n
+ \ \"20.53.44.80/31\",\r\n \"20.53.47.208/28\",\r\n \"20.53.49.112/28\",\r\n
+ \ \"20.53.57.64/28\",\r\n \"20.58.67.96/28\",\r\n \"20.61.98.66/31\",\r\n
+ \ \"20.61.98.68/31\",\r\n \"20.61.103.240/28\",\r\n \"20.62.60.112/28\",\r\n
+ \ \"20.62.128.148/30\",\r\n \"20.62.134.240/28\",\r\n \"20.65.134.80/28\",\r\n
+ \ \"20.66.5.144/28\",\r\n \"20.69.1.160/28\",\r\n \"20.72.21.208/28\",\r\n
+ \ \"20.150.165.156/30\",\r\n \"20.150.225.0/31\",\r\n \"20.150.245.64/28\",\r\n
+ \ \"20.150.245.160/27\",\r\n \"20.187.196.196/30\",\r\n \"20.189.228.224/28\",\r\n
+ \ \"20.191.160.26/31\",\r\n \"20.191.160.116/31\",\r\n \"20.191.167.144/28\",\r\n
+ \ \"20.192.45.0/28\",\r\n \"20.192.50.96/27\",\r\n \"20.192.50.240/28\",\r\n
+ \ \"20.192.80.192/28\",\r\n \"20.192.164.188/30\",\r\n \"20.192.184.80/31\",\r\n
+ \ \"20.192.225.200/30\",\r\n \"20.192.238.122/31\",\r\n \"20.193.194.128/27\",\r\n
+ \ \"20.193.194.160/28\",\r\n \"20.193.206.36/31\",\r\n \"20.194.74.160/28\",\r\n
+ \ \"20.194.75.192/27\",\r\n \"20.195.67.208/28\",\r\n \"20.195.74.224/28\",\r\n
+ \ \"20.195.146.208/28\",\r\n \"23.96.205.55/32\",\r\n \"23.98.108.42/31\",\r\n
+ \ \"23.98.108.46/31\",\r\n \"40.64.135.76/30\",\r\n \"40.67.48.122/31\",\r\n
+ \ \"40.67.50.244/31\",\r\n \"40.67.53.240/28\",\r\n \"40.67.60.110/31\",\r\n
+ \ \"40.69.111.32/31\",\r\n \"40.71.15.192/31\",\r\n \"40.75.35.218/31\",\r\n
+ \ \"40.78.204.44/31\",\r\n \"40.78.238.58/31\",\r\n \"40.78.250.110/31\",\r\n
+ \ \"40.79.116.45/32\",\r\n \"40.80.63.158/31\",\r\n \"40.80.63.244/31\",\r\n
+ \ \"40.80.173.128/30\",\r\n \"40.80.180.2/31\",\r\n \"40.82.248.70/31\",\r\n
+ \ \"40.89.23.40/31\",\r\n \"40.113.78.45/32\",\r\n \"40.120.82.160/28\",\r\n
+ \ \"40.126.239.114/32\",\r\n \"51.11.192.32/31\",\r\n \"51.12.20.32/28\",\r\n
+ \ \"51.12.20.64/27\",\r\n \"51.12.28.64/27\",\r\n \"51.12.28.96/28\",\r\n
+ \ \"51.12.42.64/30\",\r\n \"51.12.100.104/31\",\r\n \"51.12.193.28/30\",\r\n
+ \ \"51.12.204.224/31\",\r\n \"51.13.136.56/31\",\r\n \"51.13.138.32/28\",\r\n
+ \ \"51.104.9.98/31\",\r\n \"51.104.30.170/31\",\r\n \"51.107.53.48/30\",\r\n
+ \ \"51.107.60.94/31\",\r\n \"51.107.148.18/31\",\r\n \"51.107.156.134/31\",\r\n
+ \ \"51.107.243.128/28\",\r\n \"51.107.249.72/31\",\r\n \"51.107.251.112/28\",\r\n
+ \ \"51.116.51.32/30\",\r\n \"51.116.55.128/28\",\r\n \"51.116.60.240/31\",\r\n
+ \ \"51.116.146.216/30\",\r\n \"51.116.158.58/31\",\r\n \"51.120.40.126/31\",\r\n
+ \ \"51.120.100.94/31\",\r\n \"51.120.220.94/31\",\r\n \"51.120.228.36/31\",\r\n
+ \ \"51.120.232.32/31\",\r\n \"51.120.234.144/28\",\r\n \"51.120.235.192/27\",\r\n
+ \ \"51.137.164.94/31\",\r\n \"51.137.167.168/31\",\r\n \"51.138.160.0/31\",\r\n
+ \ \"51.138.211.16/28\",\r\n \"51.140.40.89/32\",\r\n \"51.140.210.86/31\",\r\n
+ \ \"51.140.224.110/32\",\r\n \"51.143.208.132/31\",\r\n \"51.143.213.208/28\",\r\n
+ \ \"52.136.48.122/31\",\r\n \"52.136.52.36/31\",\r\n \"52.136.184.0/30\",\r\n
+ \ \"52.136.186.32/28\",\r\n \"52.139.106.72/31\",\r\n \"52.139.108.32/28\",\r\n
+ \ \"52.140.110.164/30\",\r\n \"52.146.131.52/30\",\r\n \"52.146.137.176/28\",\r\n
+ \ \"52.147.113.96/28\",\r\n \"52.150.156.44/30\",\r\n \"52.161.13.30/32\",\r\n
+ \ \"52.162.111.130/31\",\r\n \"52.167.239.195/32\",\r\n \"52.172.112.24/30\",\r\n
+ \ \"52.172.116.144/28\",\r\n \"52.178.17.0/31\",\r\n \"52.182.141.14/31\",\r\n
+ \ \"52.231.23.8/31\",\r\n \"52.231.146.86/31\",\r\n \"52.231.152.94/32\",\r\n
+ \ \"52.247.220.99/32\",\r\n \"65.52.252.248/31\",\r\n \"102.37.64.48/31\",\r\n
+ \ \"102.37.81.144/28\",\r\n \"102.37.161.64/28\",\r\n \"102.133.58.204/30\",\r\n
+ \ \"102.133.124.12/31\",\r\n \"102.133.220.196/30\",\r\n
+ \ \"104.46.162.0/31\",\r\n \"104.46.178.112/31\",\r\n \"104.46.183.192/28\",\r\n
+ \ \"104.210.152.157/32\",\r\n \"104.214.161.14/31\",\r\n
+ \ \"191.233.14.192/30\",\r\n \"191.233.51.212/31\",\r\n \"191.233.207.24/31\",\r\n
+ \ \"191.234.139.160/31\",\r\n \"191.235.225.154/31\",\r\n
+ \ \"191.238.72.224/28\",\r\n \"2603:1020:e04::7c0/123\",\r\n
+ \ \"2603:1020:1004:2::c0/123\",\r\n \"2603:1020:1104:1::4e0/123\",\r\n
+ \ \"2603:1030:f:2::4e0/123\",\r\n \"2603:1030:504:2::c0/123\",\r\n
+ \ \"2603:1040:d04:2::20/123\",\r\n \"2603:1040:f05::7c0/123\",\r\n
+ \ \"2603:1040:1104:1::440/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"id\":
+ \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"20.195.67.208/28\",\r\n
+ \ \"23.98.108.42/31\",\r\n \"23.98.108.46/31\",\r\n \"40.78.238.58/31\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR.UKNorth\",\r\n
+ \ \"id\": \"AzureAPIForFHIR.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.136/31\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureArcInfrastructure\",\r\n \"id\": \"AzureArcInfrastructure\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureArcInfrastructure\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.219/32\",\r\n \"13.70.79.64/32\",\r\n
+ \ \"13.71.175.129/32\",\r\n \"13.71.199.117/32\",\r\n \"13.73.244.196/32\",\r\n
+ \ \"13.73.253.124/30\",\r\n \"13.74.107.94/32\",\r\n \"13.77.53.221/32\",\r\n
+ \ \"13.78.111.193/32\",\r\n \"13.81.244.155/32\",\r\n \"13.86.223.80/32\",\r\n
+ \ \"13.90.194.180/32\",\r\n \"20.36.122.52/30\",\r\n \"20.37.66.52/30\",\r\n
+ \ \"20.37.196.248/30\",\r\n \"20.37.226.52/30\",\r\n \"20.37.228.8/30\",\r\n
+ \ \"20.38.87.188/30\",\r\n \"20.38.138.56/30\",\r\n \"20.38.141.8/30\",\r\n
+ \ \"20.39.12.228/30\",\r\n \"20.39.14.84/30\",\r\n \"20.40.200.152/29\",\r\n
+ \ \"20.40.224.52/30\",\r\n \"20.41.67.84/30\",\r\n \"20.41.69.52/30\",\r\n
+ \ \"20.41.195.252/30\",\r\n \"20.42.228.216/30\",\r\n \"20.43.43.160/30\",\r\n
+ \ \"20.43.45.240/30\",\r\n \"20.43.67.88/30\",\r\n \"20.43.121.252/32\",\r\n
+ \ \"20.44.19.6/32\",\r\n \"20.45.197.224/30\",\r\n \"20.45.199.32/30\",\r\n
+ \ \"20.48.192.76/30\",\r\n \"20.49.99.12/30\",\r\n \"20.49.102.212/30\",\r\n
+ \ \"20.49.109.32/30\",\r\n \"20.49.113.12/30\",\r\n \"20.49.114.52/30\",\r\n
+ \ \"20.49.120.32/30\",\r\n \"20.49.125.188/30\",\r\n \"20.50.1.196/30\",\r\n
+ \ \"20.53.0.34/32\",\r\n \"20.53.41.44/30\",\r\n \"20.61.96.184/30\",\r\n
+ \ \"20.150.165.140/30\",\r\n \"20.187.194.204/30\",\r\n \"20.189.111.204/30\",\r\n
+ \ \"20.191.160.28/30\",\r\n \"20.192.164.176/30\",\r\n \"20.192.228.252/30\",\r\n
+ \ \"23.98.104.12/30\",\r\n \"23.98.108.32/30\",\r\n \"40.64.132.84/30\",\r\n
+ \ \"40.64.135.72/30\",\r\n \"40.69.111.34/32\",\r\n \"40.71.15.194/32\",\r\n
+ \ \"40.78.204.46/32\",\r\n \"40.78.239.96/32\",\r\n \"40.79.138.46/32\",\r\n
+ \ \"40.80.59.24/30\",\r\n \"40.80.172.12/30\",\r\n \"40.89.20.128/30\",\r\n
+ \ \"40.89.23.32/30\",\r\n \"40.119.9.232/30\",\r\n \"51.104.28.216/30\",\r\n
+ \ \"51.104.31.172/30\",\r\n \"51.105.77.50/32\",\r\n \"51.105.90.148/30\",\r\n
+ \ \"51.107.50.56/30\",\r\n \"51.107.53.32/30\",\r\n \"51.107.60.152/32\",\r\n
+ \ \"51.107.146.52/30\",\r\n \"51.116.49.136/30\",\r\n \"51.116.145.136/30\",\r\n
+ \ \"51.116.146.212/30\",\r\n \"51.116.158.60/32\",\r\n \"51.120.42.56/30\",\r\n
+ \ \"51.120.44.196/30\",\r\n \"51.120.100.156/32\",\r\n \"51.120.226.52/30\",\r\n
+ \ \"51.137.164.76/30\",\r\n \"51.137.166.40/30\",\r\n \"51.140.212.216/32\",\r\n
+ \ \"52.136.51.68/30\",\r\n \"52.138.90.54/32\",\r\n \"52.140.107.92/30\",\r\n
+ \ \"52.140.110.108/30\",\r\n \"52.146.79.132/30\",\r\n \"52.146.130.180/30\",\r\n
+ \ \"52.150.152.204/30\",\r\n \"52.150.156.36/30\",\r\n \"52.162.111.132/32\",\r\n
+ \ \"52.182.141.60/32\",\r\n \"52.228.84.80/30\",\r\n \"52.231.23.10/32\",\r\n
+ \ \"52.236.189.74/32\",\r\n \"65.52.252.250/32\",\r\n \"102.133.57.188/30\",\r\n
+ \ \"102.133.154.6/32\",\r\n \"102.133.218.52/30\",\r\n \"102.133.219.188/30\",\r\n
+ \ \"104.46.178.0/30\",\r\n \"104.214.164.48/32\",\r\n \"137.135.98.137/32\",\r\n
+ \ \"191.233.207.26/32\",\r\n \"191.234.136.44/30\",\r\n \"191.234.138.144/30\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup\",\r\n
+ \ \"id\": \"AzureBackup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"13.67.12.0/24\",\r\n \"13.67.13.0/25\",\r\n \"13.69.65.32/27\",\r\n
+ \ \"13.69.65.128/25\",\r\n \"13.69.107.0/27\",\r\n \"13.69.107.128/25\",\r\n
+ \ \"13.69.228.128/25\",\r\n \"13.69.229.0/27\",\r\n \"13.70.73.192/27\",\r\n
+ \ \"13.70.74.0/26\",\r\n \"13.71.172.0/26\",\r\n \"13.71.172.64/27\",\r\n
+ \ \"13.71.195.64/26\",\r\n \"13.71.195.128/27\",\r\n \"13.74.107.192/27\",\r\n
+ \ \"13.74.108.0/25\",\r\n \"13.75.36.128/25\",\r\n \"13.75.37.0/24\",\r\n
+ \ \"13.77.52.32/27\",\r\n \"13.77.52.64/26\",\r\n \"13.78.108.32/27\",\r\n
+ \ \"13.78.108.64/26\",\r\n \"13.86.218.0/25\",\r\n \"13.86.218.128/26\",\r\n
+ \ \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"13.87.123.0/26\",\r\n
+ \ \"13.87.123.64/27\",\r\n \"13.89.171.128/26\",\r\n \"13.89.171.192/27\",\r\n
+ \ \"20.36.107.32/27\",\r\n \"20.36.107.64/26\",\r\n \"20.36.114.224/27\",\r\n
+ \ \"20.36.115.0/26\",\r\n \"20.37.75.0/26\",\r\n \"20.37.75.64/27\",\r\n
+ \ \"20.38.147.0/27\",\r\n \"20.38.147.64/26\",\r\n \"20.40.229.128/25\",\r\n
+ \ \"20.44.3.64/26\",\r\n \"20.44.3.128/27\",\r\n \"20.44.8.32/27\",\r\n
+ \ \"20.44.8.64/26\",\r\n \"20.44.16.128/27\",\r\n \"20.44.16.192/26\",\r\n
+ \ \"20.44.27.128/27\",\r\n \"20.45.90.0/26\",\r\n \"20.45.123.0/26\",\r\n
+ \ \"20.45.123.64/28\",\r\n \"20.45.125.192/27\",\r\n \"20.46.12.0/25\",\r\n
+ \ \"20.48.197.0/26\",\r\n \"20.49.82.192/26\",\r\n \"20.49.83.0/27\",\r\n
+ \ \"20.49.90.192/26\",\r\n \"20.49.91.0/27\",\r\n \"20.51.0.0/26\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"20.51.20.128/25\",\r\n \"20.52.88.0/26\",\r\n
+ \ \"20.53.47.128/26\",\r\n \"20.53.49.0/26\",\r\n \"20.53.56.192/26\",\r\n
+ \ \"20.58.67.128/25\",\r\n \"20.61.102.128/25\",\r\n \"20.61.103.0/26\",\r\n
+ \ \"20.62.59.128/25\",\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"20.65.133.128/26\",\r\n \"20.66.4.0/25\",\r\n \"20.66.4.128/26\",\r\n
+ \ \"20.69.1.0/26\",\r\n \"20.72.27.64/26\",\r\n \"20.150.171.96/27\",\r\n
+ \ \"20.150.171.128/26\",\r\n \"20.150.179.80/28\",\r\n \"20.150.179.128/26\",\r\n
+ \ \"20.150.181.64/27\",\r\n \"20.150.187.80/28\",\r\n \"20.150.187.128/26\",\r\n
+ \ \"20.150.190.0/27\",\r\n \"20.150.244.64/26\",\r\n \"20.189.228.64/26\",\r\n
+ \ \"20.191.166.128/26\",\r\n \"20.192.44.128/26\",\r\n \"20.192.50.128/26\",\r\n
+ \ \"20.192.80.64/26\",\r\n \"20.192.99.80/28\",\r\n \"20.192.99.128/26\",\r\n
+ \ \"20.192.235.32/27\",\r\n \"20.192.235.64/26\",\r\n \"20.193.192.192/26\",\r\n
+ \ \"20.193.203.0/26\",\r\n \"20.193.203.64/27\",\r\n \"20.194.66.192/26\",\r\n
+ \ \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n \"20.195.66.0/24\",\r\n
+ \ \"20.195.67.0/25\",\r\n \"20.195.73.0/24\",\r\n \"20.195.74.0/25\",\r\n
+ \ \"20.195.146.128/26\",\r\n \"23.98.83.0/27\",\r\n \"23.98.83.128/25\",\r\n
+ \ \"23.98.84.0/24\",\r\n \"40.67.59.96/27\",\r\n \"40.67.59.128/26\",\r\n
+ \ \"40.69.107.32/27\",\r\n \"40.69.107.64/26\",\r\n \"40.70.147.128/26\",\r\n
+ \ \"40.70.147.192/27\",\r\n \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n
+ \ \"40.74.98.64/26\",\r\n \"40.74.98.128/27\",\r\n \"40.74.146.96/27\",\r\n
+ \ \"40.74.146.128/26\",\r\n \"40.75.34.96/27\",\r\n \"40.75.34.192/26\",\r\n
+ \ \"40.78.195.32/27\",\r\n \"40.78.195.64/26\",\r\n \"40.78.202.160/27\",\r\n
+ \ \"40.78.202.192/26\",\r\n \"40.78.227.64/26\",\r\n \"40.78.227.128/25\",\r\n
+ \ \"40.78.234.192/27\",\r\n \"40.78.235.0/24\",\r\n \"40.78.236.0/25\",\r\n
+ \ \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n \"40.78.250.224/27\",\r\n
+ \ \"40.78.251.0/26\",\r\n \"40.79.131.0/26\",\r\n \"40.79.131.64/27\",\r\n
+ \ \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n \"40.79.162.128/27\",\r\n
+ \ \"40.79.162.192/26\",\r\n \"40.79.170.64/26\",\r\n \"40.79.170.128/27\",\r\n
+ \ \"40.79.171.32/27\",\r\n \"40.79.179.32/27\",\r\n \"40.79.179.64/26\",\r\n
+ \ \"40.79.187.32/27\",\r\n \"40.79.187.64/26\",\r\n \"40.79.195.32/27\",\r\n
+ \ \"40.79.195.64/26\",\r\n \"40.80.51.0/27\",\r\n \"40.120.74.192/26\",\r\n
+ \ \"40.120.75.0/27\",\r\n \"40.120.82.0/26\",\r\n \"51.12.17.64/26\",\r\n
+ \ \"51.12.25.128/26\",\r\n \"51.12.99.96/27\",\r\n \"51.12.99.128/26\",\r\n
+ \ \"51.12.203.96/27\",\r\n \"51.12.203.128/26\",\r\n \"51.12.227.80/28\",\r\n
+ \ \"51.12.227.128/26\",\r\n \"51.12.235.80/28\",\r\n \"51.12.235.128/26\",\r\n
+ \ \"51.13.137.128/26\",\r\n \"51.105.67.32/27\",\r\n \"51.105.67.64/26\",\r\n
+ \ \"51.105.75.0/27\",\r\n \"51.105.75.64/26\",\r\n \"51.107.59.64/26\",\r\n
+ \ \"51.107.59.128/27\",\r\n \"51.107.155.64/26\",\r\n \"51.107.155.128/27\",\r\n
+ \ \"51.107.243.0/26\",\r\n \"51.107.251.0/26\",\r\n \"51.116.55.0/26\",\r\n
+ \ \"51.116.59.64/26\",\r\n \"51.116.59.128/27\",\r\n \"51.116.155.128/26\",\r\n
+ \ \"51.116.155.192/27\",\r\n \"51.116.156.144/28\",\r\n \"51.116.156.192/26\",\r\n
+ \ \"51.116.245.0/26\",\r\n \"51.116.245.64/27\",\r\n \"51.116.250.240/28\",\r\n
+ \ \"51.116.251.64/26\",\r\n \"51.116.253.0/27\",\r\n \"51.120.99.96/27\",\r\n
+ \ \"51.120.99.128/26\",\r\n \"51.120.107.80/28\",\r\n \"51.120.107.128/26\",\r\n
+ \ \"51.120.110.128/27\",\r\n \"51.120.211.80/28\",\r\n \"51.120.211.128/26\",\r\n
+ \ \"51.120.219.96/27\",\r\n \"51.120.219.128/26\",\r\n \"51.120.233.192/26\",\r\n
+ \ \"51.138.210.192/26\",\r\n \"51.140.148.64/26\",\r\n \"51.140.148.128/27\",\r\n
+ \ \"51.140.211.32/27\",\r\n \"51.140.211.64/26\",\r\n \"51.143.212.192/26\",\r\n
+ \ \"51.143.213.0/25\",\r\n \"52.136.185.192/26\",\r\n \"52.138.90.160/27\",\r\n
+ \ \"52.138.90.192/26\",\r\n \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n
+ \ \"52.139.107.128/26\",\r\n \"52.146.136.64/26\",\r\n \"52.146.136.128/25\",\r\n
+ \ \"52.147.113.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"52.167.106.192/27\",\r\n \"52.167.107.0/26\",\r\n \"52.172.116.64/26\",\r\n
+ \ \"52.182.139.64/27\",\r\n \"52.182.139.128/26\",\r\n \"52.231.19.0/26\",\r\n
+ \ \"52.231.19.64/27\",\r\n \"52.231.147.32/27\",\r\n \"52.231.147.64/26\",\r\n
+ \ \"52.236.187.0/27\",\r\n \"52.236.187.128/25\",\r\n \"52.246.155.0/27\",\r\n
+ \ \"52.246.155.64/26\",\r\n \"65.52.251.0/26\",\r\n \"65.52.251.64/27\",\r\n
+ \ \"102.37.81.0/26\",\r\n \"102.37.160.192/26\",\r\n \"102.133.27.64/26\",\r\n
+ \ \"102.133.27.128/27\",\r\n \"102.133.123.96/27\",\r\n \"102.133.155.64/26\",\r\n
+ \ \"102.133.155.128/27\",\r\n \"102.133.251.0/27\",\r\n \"104.46.183.64/26\",\r\n
+ \ \"104.211.82.0/26\",\r\n \"104.211.82.64/27\",\r\n \"104.211.147.0/26\",\r\n
+ \ \"104.211.147.64/27\",\r\n \"104.214.19.96/27\",\r\n \"104.214.19.128/26\",\r\n
+ \ \"191.233.50.224/27\",\r\n \"191.233.51.64/26\",\r\n \"191.233.204.0/26\",\r\n
+ \ \"191.233.204.64/27\",\r\n \"191.234.147.80/28\",\r\n \"191.234.147.128/26\",\r\n
+ \ \"191.234.149.160/27\",\r\n \"191.234.155.80/28\",\r\n
+ \ \"191.234.155.128/26\",\r\n \"191.234.157.64/27\",\r\n
+ \ \"191.238.72.0/26\",\r\n \"2603:1000:4:402::200/121\",\r\n
+ \ \"2603:1000:104:402::200/121\",\r\n \"2603:1000:104:802::180/121\",\r\n
+ \ \"2603:1000:104:c02::180/121\",\r\n \"2603:1010:6:402::200/121\",\r\n
+ \ \"2603:1010:6:802::180/121\",\r\n \"2603:1010:6:c02::180/121\",\r\n
+ \ \"2603:1010:101:402::200/121\",\r\n \"2603:1010:304:402::200/121\",\r\n
+ \ \"2603:1010:404:402::200/121\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\",\r\n
+ \ \"2603:1020:206:402::200/121\",\r\n \"2603:1020:206:802::180/121\",\r\n
+ \ \"2603:1020:206:c02::180/121\",\r\n \"2603:1020:305:402::200/121\",\r\n
+ \ \"2603:1020:405:402::200/121\",\r\n \"2603:1020:605:402::200/121\",\r\n
+ \ \"2603:1020:705:402::200/121\",\r\n \"2603:1020:705:802::180/121\",\r\n
+ \ \"2603:1020:705:c02::180/121\",\r\n \"2603:1020:805:402::200/121\",\r\n
+ \ \"2603:1020:805:802::180/121\",\r\n \"2603:1020:805:c02::180/121\",\r\n
+ \ \"2603:1020:905:402::200/121\",\r\n \"2603:1020:a04:402::200/121\",\r\n
+ \ \"2603:1020:a04:802::180/121\",\r\n \"2603:1020:a04:c02::180/121\",\r\n
+ \ \"2603:1020:b04:402::200/121\",\r\n \"2603:1020:c04:402::200/121\",\r\n
+ \ \"2603:1020:c04:802::180/121\",\r\n \"2603:1020:c04:c02::180/121\",\r\n
+ \ \"2603:1020:d04:402::200/121\",\r\n \"2603:1020:e04:3::200/121\",\r\n
+ \ \"2603:1020:e04:402::200/121\",\r\n \"2603:1020:e04:802::180/121\",\r\n
+ \ \"2603:1020:e04:c02::180/121\",\r\n \"2603:1020:f04:402::200/121\",\r\n
+ \ \"2603:1020:1004:1::780/121\",\r\n \"2603:1020:1004:400::100/121\",\r\n
+ \ \"2603:1020:1004:400::300/121\",\r\n \"2603:1020:1004:c02::200/121\",\r\n
+ \ \"2603:1020:1104:1::400/121\",\r\n \"2603:1020:1104:400::200/121\",\r\n
+ \ \"2603:1030:f:2::580/121\",\r\n \"2603:1030:f:400::a00/121\",\r\n
+ \ \"2603:1030:10:402::200/121\",\r\n \"2603:1030:10:802::180/121\",\r\n
+ \ \"2603:1030:10:c02::180/121\",\r\n \"2603:1030:104:402::200/121\",\r\n
+ \ \"2603:1030:107:400::180/121\",\r\n \"2603:1030:210:402::200/121\",\r\n
+ \ \"2603:1030:210:802::180/121\",\r\n \"2603:1030:210:c02::180/121\",\r\n
+ \ \"2603:1030:40b:400::a00/121\",\r\n \"2603:1030:40b:800::180/121\",\r\n
+ \ \"2603:1030:40b:c00::180/121\",\r\n \"2603:1030:40c:402::200/121\",\r\n
+ \ \"2603:1030:40c:802::180/121\",\r\n \"2603:1030:40c:c02::180/121\",\r\n
+ \ \"2603:1030:504:2::100/121\",\r\n \"2603:1030:504:402::100/121\",\r\n
+ \ \"2603:1030:504:402::300/121\",\r\n \"2603:1030:504:802::280/121\",\r\n
+ \ \"2603:1030:504:c02::200/121\",\r\n \"2603:1030:608:402::200/121\",\r\n
+ \ \"2603:1030:807:402::200/121\",\r\n \"2603:1030:807:802::180/121\",\r\n
+ \ \"2603:1030:807:c02::180/121\",\r\n \"2603:1030:a07:402::180/121\",\r\n
+ \ \"2603:1030:b04:402::200/121\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\",\r\n
+ \ \"2603:1030:f05:402::200/121\",\r\n \"2603:1030:f05:802::180/121\",\r\n
+ \ \"2603:1030:f05:c02::180/121\",\r\n \"2603:1030:1005:402::200/121\",\r\n
+ \ \"2603:1040:5:402::200/121\",\r\n \"2603:1040:5:802::180/121\",\r\n
+ \ \"2603:1040:5:c02::180/121\",\r\n \"2603:1040:207:402::200/121\",\r\n
+ \ \"2603:1040:407:402::200/121\",\r\n \"2603:1040:407:802::180/121\",\r\n
+ \ \"2603:1040:407:c02::180/121\",\r\n \"2603:1040:606:402::200/121\",\r\n
+ \ \"2603:1040:806:402::200/121\",\r\n \"2603:1040:904:402::200/121\",\r\n
+ \ \"2603:1040:904:802::180/121\",\r\n \"2603:1040:904:c02::180/121\",\r\n
+ \ \"2603:1040:a06:402::200/121\",\r\n \"2603:1040:a06:802::180/121\",\r\n
+ \ \"2603:1040:a06:c02::180/121\",\r\n \"2603:1040:b04:402::200/121\",\r\n
+ \ \"2603:1040:c06:402::200/121\",\r\n \"2603:1040:d04:1::780/121\",\r\n
+ \ \"2603:1040:d04:400::100/121\",\r\n \"2603:1040:d04:400::300/121\",\r\n
+ \ \"2603:1040:d04:c02::200/121\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\",\r\n \"2603:1040:1104:1::480/121\",\r\n
+ \ \"2603:1040:1104:400::200/121\",\r\n \"2603:1050:6:402::200/121\",\r\n
+ \ \"2603:1050:6:802::180/121\",\r\n \"2603:1050:6:c02::180/121\",\r\n
+ \ \"2603:1050:403:400::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.AustraliaCentral2\",\r\n \"id\":
+ \"AzureBackup.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.224/27\",\r\n \"20.36.115.0/26\",\r\n
+ \ \"20.53.56.192/26\",\r\n \"2603:1010:404:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.BrazilSoutheast\",\r\n
+ \ \"id\": \"AzureBackup.BrazilSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilse\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBackup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.195.146.128/26\",\r\n \"191.233.50.224/27\",\r\n
+ \ \"191.233.51.64/26\",\r\n \"2603:1050:403:400::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.EastUS\",\r\n
+ \ \"id\": \"AzureBackup.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n \"40.78.227.64/26\",\r\n
+ \ \"40.78.227.128/25\",\r\n \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n
+ \ \"2603:1030:210:402::200/121\",\r\n \"2603:1030:210:802::180/121\",\r\n
+ \ \"2603:1030:210:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.KoreaCentral\",\r\n \"id\": \"AzureBackup.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.128/27\",\r\n
+ \ \"20.194.66.192/26\",\r\n \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n
+ \ \"52.231.19.0/26\",\r\n \"52.231.19.64/27\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthCentralUS\",\r\n \"id\":
+ \"AzureBackup.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.0.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"2603:1030:608:402::200/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthEurope\",\r\n \"id\": \"AzureBackup.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"13.69.228.128/25\",\r\n
+ \ \"13.69.229.0/27\",\r\n \"13.74.107.192/27\",\r\n \"13.74.108.0/25\",\r\n
+ \ \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n \"52.146.136.64/26\",\r\n
+ \ \"52.146.136.128/25\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKNorth\",\r\n
+ \ \"id\": \"AzureBackup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.123.0/26\",\r\n \"13.87.123.64/27\",\r\n \"2603:1020:305:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKSouth2\",\r\n
+ \ \"id\": \"AzureBackup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"2603:1020:405:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.WestUS2\",\r\n
+ \ \"id\": \"AzureBackup.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n
+ \ \"40.78.250.224/27\",\r\n \"40.78.251.0/26\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService\",\r\n
+ \ \"id\": \"AzureBotService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.64/30\",\r\n \"13.67.10.88/30\",\r\n \"13.69.67.56/30\",\r\n
+ \ \"13.69.227.252/30\",\r\n \"13.70.74.112/30\",\r\n \"13.71.173.240/30\",\r\n
+ \ \"13.71.196.160/30\",\r\n \"13.73.248.0/30\",\r\n \"13.75.39.72/30\",\r\n
+ \ \"13.77.53.80/30\",\r\n \"13.78.108.172/30\",\r\n \"13.86.219.168/30\",\r\n
+ \ \"13.87.58.40/30\",\r\n \"13.87.124.40/30\",\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.36.108.112/30\",\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"20.37.64.64/30\",\r\n \"20.37.76.104/30\",\r\n \"20.37.152.64/30\",\r\n
+ \ \"20.37.192.64/30\",\r\n \"20.37.224.64/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"20.38.128.72/30\",\r\n \"20.38.136.64/30\",\r\n \"20.39.8.64/30\",\r\n
+ \ \"20.41.0.64/30\",\r\n \"20.41.64.64/30\",\r\n \"20.41.192.64/30\",\r\n
+ \ \"20.42.0.64/30\",\r\n \"20.42.128.64/30\",\r\n \"20.42.224.64/30\",\r\n
+ \ \"20.43.40.64/30\",\r\n \"20.43.64.64/30\",\r\n \"20.43.121.8/30\",\r\n
+ \ \"20.43.128.64/30\",\r\n \"20.44.4.72/30\",\r\n \"20.44.17.24/30\",\r\n
+ \ \"20.44.27.208/30\",\r\n \"20.45.112.64/30\",\r\n \"20.45.123.112/30\",\r\n
+ \ \"20.45.192.64/30\",\r\n \"20.72.16.16/30\",\r\n \"20.150.160.120/30\",\r\n
+ \ \"20.189.104.64/30\",\r\n \"20.192.160.16/30\",\r\n \"20.192.224.64/26\",\r\n
+ \ \"40.67.48.64/30\",\r\n \"40.67.58.4/30\",\r\n \"40.69.108.56/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"40.74.24.64/30\",\r\n \"40.74.147.168/30\",\r\n
+ \ \"40.78.196.56/30\",\r\n \"40.78.202.132/30\",\r\n \"40.79.132.56/30\",\r\n
+ \ \"40.79.180.24/30\",\r\n \"40.80.56.64/30\",\r\n \"40.80.168.64/30\",\r\n
+ \ \"40.80.176.32/30\",\r\n \"40.80.184.64/30\",\r\n \"40.82.248.64/30\",\r\n
+ \ \"40.89.16.64/30\",\r\n \"51.12.40.64/26\",\r\n \"51.12.192.64/26\",\r\n
+ \ \"51.104.8.248/30\",\r\n \"51.104.24.64/30\",\r\n \"51.105.80.64/30\",\r\n
+ \ \"51.105.88.64/30\",\r\n \"51.107.48.64/30\",\r\n \"51.107.58.4/30\",\r\n
+ \ \"51.107.144.64/30\",\r\n \"51.107.154.4/30\",\r\n \"51.116.48.64/30\",\r\n
+ \ \"51.116.144.64/30\",\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"51.120.218.4/30\",\r\n \"51.120.224.64/30\",\r\n \"51.137.160.64/30\",\r\n
+ \ \"51.140.212.72/30\",\r\n \"51.143.192.64/30\",\r\n \"52.136.48.64/30\",\r\n
+ \ \"52.140.104.64/30\",\r\n \"52.150.136.64/30\",\r\n \"52.162.111.16/30\",\r\n
+ \ \"52.228.80.64/30\",\r\n \"52.231.148.88/30\",\r\n \"65.52.252.104/30\",\r\n
+ \ \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n \"102.133.124.8/30\",\r\n
+ \ \"102.133.216.64/30\",\r\n \"191.233.8.16/30\",\r\n \"191.233.205.96/30\",\r\n
+ \ \"191.235.224.64/30\",\r\n \"2603:1000:4::20/123\",\r\n
+ \ \"2603:1000:104:1::20/123\",\r\n \"2603:1010:6:1::20/123\",\r\n
+ \ \"2603:1010:101::20/123\",\r\n \"2603:1010:304::20/123\",\r\n
+ \ \"2603:1010:404::20/123\",\r\n \"2603:1020:5:1::20/123\",\r\n
+ \ \"2603:1020:206:1::20/123\",\r\n \"2603:1020:305::20/123\",\r\n
+ \ \"2603:1020:405::20/123\",\r\n \"2603:1020:605::20/123\",\r\n
+ \ \"2603:1020:705:1::20/123\",\r\n \"2603:1020:805:1::20/123\",\r\n
+ \ \"2603:1020:905::20/123\",\r\n \"2603:1020:a04:1::20/123\",\r\n
+ \ \"2603:1020:b04::20/123\",\r\n \"2603:1020:c04:1::20/123\",\r\n
+ \ \"2603:1020:d04::20/123\",\r\n \"2603:1020:e04:1::20/123\",\r\n
+ \ \"2603:1020:f04::20/123\",\r\n \"2603:1020:1004::20/123\",\r\n
+ \ \"2603:1020:1104::20/123\",\r\n \"2603:1030:f:1::20/123\",\r\n
+ \ \"2603:1030:10:1::20/123\",\r\n \"2603:1030:104:1::20/123\",\r\n
+ \ \"2603:1030:107::20/123\",\r\n \"2603:1030:210:1::20/123\",\r\n
+ \ \"2603:1030:40b:1::20/123\",\r\n \"2603:1030:40c:1::20/123\",\r\n
+ \ \"2603:1030:504:1::20/123\",\r\n \"2603:1030:608::20/123\",\r\n
+ \ \"2603:1030:807:1::20/123\",\r\n \"2603:1030:a07::20/123\",\r\n
+ \ \"2603:1030:b04::20/123\",\r\n \"2603:1030:c06:1::20/123\",\r\n
+ \ \"2603:1030:f05:1::20/123\",\r\n \"2603:1030:1005::20/123\",\r\n
+ \ \"2603:1040:5:1::20/123\",\r\n \"2603:1040:207::20/123\",\r\n
+ \ \"2603:1040:407:1::20/123\",\r\n \"2603:1040:606::20/123\",\r\n
+ \ \"2603:1040:806::20/123\",\r\n \"2603:1040:904:1::20/123\",\r\n
+ \ \"2603:1040:a06:1::20/123\",\r\n \"2603:1040:b04::20/123\",\r\n
+ \ \"2603:1040:c06::20/123\",\r\n \"2603:1040:d04::20/123\",\r\n
+ \ \"2603:1040:f05:1::20/123\",\r\n \"2603:1040:1104::20/123\",\r\n
+ \ \"2603:1050:6:1::20/123\",\r\n \"2603:1050:403::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureBotService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"2603:1010:404::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.CentralUS\",\r\n \"id\": \"AzureBotService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.37.152.64/30\",\r\n \"2603:1030:10:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureBotService.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.192.64/30\",\r\n \"40.78.202.132/30\",\r\n
+ \ \"2603:1030:f:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.EastUS\",\r\n \"id\": \"AzureBotService.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"20.42.0.64/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"2603:1030:210:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.GermanyNorth\",\r\n
+ \ \"id\": \"AzureBotService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.64/30\",\r\n \"2603:1020:d04::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.NorthEurope\",\r\n
+ \ \"id\": \"AzureBotService.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.227.252/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"2603:1020:5:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.NorwayEast\",\r\n \"id\":
+ \"AzureBotService.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"2603:1020:e04:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.SouthAfricaWest\",\r\n \"id\":
+ \"AzureBotService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n
+ \ \"2603:1000:4::20/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureBotService.UKSouth\",\r\n \"id\": \"AzureBotService.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.248/30\",\r\n
+ \ \"51.104.24.64/30\",\r\n \"2603:1020:705:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.UKWest\",\r\n
+ \ \"id\": \"AzureBotService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.160.64/30\",\r\n \"51.140.212.72/30\",\r\n
+ \ \"2603:1020:605::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestCentralUS\",\r\n \"id\":
+ \"AzureBotService.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.160/30\",\r\n \"52.150.136.64/30\",\r\n
+ \ \"2603:1030:b04::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestEurope\",\r\n \"id\":
+ \"AzureBotService.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.67.56/30\",\r\n \"40.74.24.64/30\",\r\n \"2603:1020:206:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud\",\r\n
+ \ \"id\": \"AzureCloud\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.65.0.0/16\",\r\n \"13.66.0.0/17\",\r\n \"13.66.128.0/17\",\r\n
+ \ \"13.67.0.0/17\",\r\n \"13.67.128.0/20\",\r\n \"13.67.144.0/21\",\r\n
+ \ \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n
+ \ \"13.67.160.0/19\",\r\n \"13.67.192.0/18\",\r\n \"13.68.0.0/17\",\r\n
+ \ \"13.68.128.0/17\",\r\n \"13.69.0.0/17\",\r\n \"13.69.128.0/17\",\r\n
+ \ \"13.70.0.0/18\",\r\n \"13.70.64.0/18\",\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.70.192.0/18\",\r\n \"13.71.0.0/18\",\r\n \"13.71.64.0/18\",\r\n
+ \ \"13.71.128.0/19\",\r\n \"13.71.160.0/19\",\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.72.64.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.72.224.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.73.32.0/19\",\r\n \"13.73.96.0/19\",\r\n
+ \ \"13.73.128.0/18\",\r\n \"13.73.192.0/20\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.73.232.0/21\",\r\n \"13.73.240.0/20\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.75.0.0/17\",\r\n \"13.75.128.0/17\",\r\n \"13.76.0.0/16\",\r\n
+ \ \"13.77.0.0/18\",\r\n \"13.77.64.0/18\",\r\n \"13.77.128.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.78.128.0/17\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.80.0.0/15\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.83.0.0/16\",\r\n \"13.84.0.0/15\",\r\n \"13.86.0.0/17\",\r\n
+ \ \"13.86.128.0/17\",\r\n \"13.87.0.0/18\",\r\n \"13.87.64.0/18\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.88.200.0/21\",\r\n \"13.88.208.0/20\",\r\n \"13.88.224.0/19\",\r\n
+ \ \"13.89.0.0/16\",\r\n \"13.90.0.0/16\",\r\n \"13.91.0.0/16\",\r\n
+ \ \"13.92.0.0/16\",\r\n \"13.93.0.0/17\",\r\n \"13.93.128.0/17\",\r\n
+ \ \"13.94.0.0/18\",\r\n \"13.94.64.0/18\",\r\n \"13.94.128.0/17\",\r\n
+ \ \"13.95.0.0/16\",\r\n \"13.104.129.0/26\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.129.128/26\",\r\n \"13.104.129.192/26\",\r\n \"13.104.144.0/27\",\r\n
+ \ \"13.104.144.32/27\",\r\n \"13.104.144.64/27\",\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.144.128/27\",\r\n \"13.104.144.160/27\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.144.224/27\",\r\n \"13.104.145.0/26\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.145.128/27\",\r\n \"13.104.145.160/27\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.64/26\",\r\n \"13.104.146.128/25\",\r\n
+ \ \"13.104.147.0/25\",\r\n \"13.104.147.128/25\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.148.128/25\",\r\n \"13.104.149.0/26\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.150.128/26\",\r\n
+ \ \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n \"13.104.151.64/26\",\r\n
+ \ \"13.104.151.128/26\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.153.0/27\",\r\n \"13.104.153.32/28\",\r\n
+ \ \"13.104.153.48/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.153.128/26\",\r\n \"13.104.153.192/26\",\r\n \"13.104.154.0/25\",\r\n
+ \ \"13.104.154.128/25\",\r\n \"13.104.155.0/27\",\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.155.64/26\",\r\n \"13.104.155.128/26\",\r\n \"13.104.155.192/26\",\r\n
+ \ \"13.104.156.0/24\",\r\n \"13.104.157.0/25\",\r\n \"13.104.157.128/25\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.16/28\",\r\n \"13.104.158.32/27\",\r\n
+ \ \"13.104.158.64/26\",\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.176/28\",\r\n \"13.104.158.192/27\",\r\n \"13.104.158.224/27\",\r\n
+ \ \"13.104.159.0/25\",\r\n \"13.104.159.128/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.192.0/21\",\r\n \"13.104.208.0/26\",\r\n \"13.104.208.64/27\",\r\n
+ \ \"13.104.208.96/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.208.192/26\",\r\n \"13.104.209.0/24\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.104.211.0/25\",\r\n \"13.104.211.128/26\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"13.104.212.0/26\",\r\n \"13.104.212.64/26\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.104.212.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.213.128/25\",\r\n \"13.104.214.0/25\",\r\n \"13.104.214.128/25\",\r\n
+ \ \"13.104.215.0/25\",\r\n \"13.104.215.128/25\",\r\n \"13.104.216.0/24\",\r\n
+ \ \"13.104.217.0/25\",\r\n \"13.104.217.128/25\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.104.218.128/25\",\r\n \"13.104.219.0/25\",\r\n \"13.104.219.128/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.104.220.128/25\",\r\n \"13.104.221.0/24\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.104.223.192/26\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.17.0/26\",\r\n \"13.105.17.64/26\",\r\n \"13.105.17.128/26\",\r\n
+ \ \"13.105.17.192/26\",\r\n \"13.105.18.0/26\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.19.0/25\",\r\n
+ \ \"13.105.19.128/25\",\r\n \"13.105.20.0/25\",\r\n \"13.105.20.128/26\",\r\n
+ \ \"13.105.20.192/26\",\r\n \"13.105.21.0/24\",\r\n \"13.105.22.0/24\",\r\n
+ \ \"13.105.23.0/26\",\r\n \"13.105.23.64/26\",\r\n \"13.105.23.128/25\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.25.0/24\",\r\n \"13.105.26.0/24\",\r\n
+ \ \"13.105.27.0/25\",\r\n \"13.105.27.128/27\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.27.224/27\",\r\n \"13.105.28.0/28\",\r\n
+ \ \"13.105.28.16/28\",\r\n \"13.105.28.32/28\",\r\n \"13.105.28.48/28\",\r\n
+ \ \"13.105.28.128/25\",\r\n \"13.105.29.0/25\",\r\n \"13.105.29.128/25\",\r\n
+ \ \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.96/27\",\r\n \"13.105.36.128/26\",\r\n
+ \ \"13.105.36.192/26\",\r\n \"13.105.37.0/26\",\r\n \"13.105.37.64/26\",\r\n
+ \ \"13.105.37.128/26\",\r\n \"13.105.37.192/26\",\r\n \"13.105.52.0/27\",\r\n
+ \ \"13.105.52.32/27\",\r\n \"13.105.52.64/28\",\r\n \"13.105.52.80/28\",\r\n
+ \ \"13.105.52.96/27\",\r\n \"13.105.52.128/26\",\r\n \"13.105.52.192/26\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.53.128/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n \"13.105.60.48/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.60.96/27\",\r\n \"13.105.60.128/27\",\r\n
+ \ \"13.105.60.160/27\",\r\n \"13.105.60.192/26\",\r\n \"13.105.61.0/28\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.32/27\",\r\n \"13.105.61.64/26\",\r\n
+ \ \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"13.105.66.144/28\",\r\n \"13.105.66.192/26\",\r\n \"13.105.67.0/25\",\r\n
+ \ \"13.105.67.128/25\",\r\n \"13.105.74.48/28\",\r\n \"13.105.74.96/27\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.74.192/26\",\r\n \"13.105.75.0/27\",\r\n
+ \ \"13.105.75.32/28\",\r\n \"13.105.75.64/27\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.96.112/28\",\r\n \"13.105.96.128/25\",\r\n
+ \ \"13.105.97.0/27\",\r\n \"13.105.97.32/27\",\r\n \"13.105.97.64/27\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.36.32.0/19\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.96.0/21\",\r\n \"20.36.104.0/21\",\r\n \"20.36.112.0/20\",\r\n
+ \ \"20.36.128.0/17\",\r\n \"20.37.0.0/18\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.37.128.0/18\",\r\n \"20.37.192.0/19\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.64.0/19\",\r\n \"20.38.96.0/23\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.38.99.0/24\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.38.104.0/23\",\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.38.108.0/23\",\r\n \"20.38.112.0/23\",\r\n \"20.38.114.0/25\",\r\n
+ \ \"20.38.114.128/25\",\r\n \"20.38.115.0/24\",\r\n \"20.38.116.0/23\",\r\n
+ \ \"20.38.118.0/24\",\r\n \"20.38.120.0/24\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.38.122.0/23\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.126.0/23\",\r\n \"20.38.128.0/21\",\r\n \"20.38.136.0/21\",\r\n
+ \ \"20.38.144.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.38.184.0/22\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.38.196.0/22\",\r\n \"20.38.200.0/22\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.39.0.0/19\",\r\n \"20.39.32.0/19\",\r\n
+ \ \"20.39.64.0/21\",\r\n \"20.39.72.0/21\",\r\n \"20.39.80.0/20\",\r\n
+ \ \"20.39.96.0/19\",\r\n \"20.39.128.0/20\",\r\n \"20.39.144.0/20\",\r\n
+ \ \"20.39.160.0/21\",\r\n \"20.39.168.0/21\",\r\n \"20.39.176.0/21\",\r\n
+ \ \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n \"20.39.208.0/20\",\r\n
+ \ \"20.39.224.0/21\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.40.16.0/21\",\r\n
+ \ \"20.40.32.0/21\",\r\n \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n
+ \ \"20.40.64.0/20\",\r\n \"20.40.80.0/21\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.40.104.0/21\",\r\n \"20.40.112.0/21\",\r\n
+ \ \"20.40.120.0/21\",\r\n \"20.40.128.0/19\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.40.176.0/20\",\r\n \"20.40.192.0/18\",\r\n \"20.41.0.0/18\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.41.128.0/18\",\r\n \"20.41.192.0/18\",\r\n
+ \ \"20.42.0.0/17\",\r\n \"20.42.128.0/18\",\r\n \"20.42.192.0/19\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.43.0.0/19\",\r\n \"20.43.32.0/19\",\r\n
+ \ \"20.43.64.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.43.128.0/18\",\r\n \"20.43.192.0/18\",\r\n \"20.44.8.0/21\",\r\n
+ \ \"20.44.16.0/21\",\r\n \"20.44.24.0/21\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.44.128.0/18\",\r\n \"20.44.192.0/18\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.64.0/19\",\r\n \"20.45.120.0/21\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.45.136.0/21\",\r\n \"20.45.144.0/20\",\r\n
+ \ \"20.45.160.0/19\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.46.32.0/19\",\r\n \"20.46.96.0/20\",\r\n \"20.46.112.0/20\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.46.192.0/21\",\r\n
+ \ \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.0.0/24\",\r\n \"20.47.1.0/24\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.3.0/24\",\r\n \"20.47.4.0/24\",\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.7.0/24\",\r\n \"20.47.8.0/24\",\r\n
+ \ \"20.47.9.0/24\",\r\n \"20.47.10.0/24\",\r\n \"20.47.11.0/24\",\r\n
+ \ \"20.47.12.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.47.16.0/23\",\r\n
+ \ \"20.47.18.0/23\",\r\n \"20.47.20.0/23\",\r\n \"20.47.22.0/23\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.26.0/24\",\r\n \"20.47.27.0/24\",\r\n
+ \ \"20.47.28.0/24\",\r\n \"20.47.29.0/24\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.47.31.0/24\",\r\n \"20.47.32.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.34.0/24\",\r\n \"20.47.35.0/24\",\r\n \"20.47.36.0/24\",\r\n
+ \ \"20.47.37.0/24\",\r\n \"20.47.38.0/24\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.40.0/24\",\r\n \"20.47.41.0/24\",\r\n \"20.47.42.0/24\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.44.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.46.0/24\",\r\n \"20.47.47.0/24\",\r\n \"20.47.48.0/24\",\r\n
+ \ \"20.47.49.0/24\",\r\n \"20.47.50.0/24\",\r\n \"20.47.51.0/24\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.53.0/24\",\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.47.56.0/24\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.47.62.0/23\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.67.0/24\",\r\n \"20.47.68.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.71.0/24\",\r\n \"20.47.72.0/23\",\r\n
+ \ \"20.47.74.0/23\",\r\n \"20.47.76.0/23\",\r\n \"20.47.78.0/23\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.47.82.0/23\",\r\n \"20.47.84.0/23\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.47.87.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.47.89.0/24\",\r\n \"20.47.90.0/24\",\r\n \"20.47.91.0/24\",\r\n
+ \ \"20.47.92.0/24\",\r\n \"20.47.93.0/24\",\r\n \"20.47.94.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.98.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.47.100.0/24\",\r\n \"20.47.101.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.47.103.0/24\",\r\n \"20.47.104.0/24\",\r\n
+ \ \"20.47.105.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.107.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.110.0/24\",\r\n \"20.47.111.0/24\",\r\n
+ \ \"20.47.112.0/24\",\r\n \"20.47.113.0/24\",\r\n \"20.47.114.0/24\",\r\n
+ \ \"20.47.115.0/24\",\r\n \"20.47.116.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.47.120.0/23\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.47.124.0/23\",\r\n \"20.47.126.0/23\",\r\n
+ \ \"20.47.128.0/17\",\r\n \"20.48.0.0/17\",\r\n \"20.48.128.0/18\",\r\n
+ \ \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n \"20.49.0.0/18\",\r\n
+ \ \"20.49.88.0/21\",\r\n \"20.49.96.0/21\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.49.112.0/21\",\r\n \"20.49.120.0/21\",\r\n \"20.49.128.0/17\",\r\n
+ \ \"20.50.0.0/18\",\r\n \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n
+ \ \"20.50.96.0/19\",\r\n \"20.50.128.0/17\",\r\n \"20.51.0.0/21\",\r\n
+ \ \"20.51.8.0/21\",\r\n \"20.51.16.0/21\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.51.32.0/19\",\r\n \"20.51.64.0/18\",\r\n \"20.51.128.0/17\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.72.0/21\",\r\n
+ \ \"20.52.80.0/27\",\r\n \"20.52.80.32/27\",\r\n \"20.52.80.64/27\",\r\n
+ \ \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n \"20.52.128.0/17\",\r\n
+ \ \"20.53.0.0/19\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.48.0/21\",\r\n \"20.53.56.0/21\",\r\n \"20.53.64.0/18\",\r\n
+ \ \"20.53.128.0/17\",\r\n \"20.54.0.0/17\",\r\n \"20.54.128.0/17\",\r\n
+ \ \"20.55.0.0/17\",\r\n \"20.55.128.0/18\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.56.0.0/16\",\r\n \"20.57.0.0/17\",\r\n \"20.57.128.0/18\",\r\n
+ \ \"20.57.192.0/19\",\r\n \"20.57.224.0/19\",\r\n \"20.58.0.0/18\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.58.128.0/18\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.59.0.0/18\",\r\n \"20.59.64.0/18\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.59.192.0/18\",\r\n \"20.60.0.0/24\",\r\n \"20.60.1.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.4.0/24\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.60.11.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.15.0/24\",\r\n
+ \ \"20.60.16.0/24\",\r\n \"20.60.17.0/24\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.20.0/24\",\r\n \"20.60.21.0/24\",\r\n
+ \ \"20.60.22.0/23\",\r\n \"20.60.24.0/23\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.28.0/23\",\r\n \"20.60.30.0/23\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.60.34.0/23\",\r\n \"20.60.36.0/23\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.60.48.0/22\",\r\n \"20.60.52.0/23\",\r\n
+ \ \"20.60.56.0/22\",\r\n \"20.60.60.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.72.0/22\",\r\n \"20.60.80.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.60.128.0/23\",\r\n \"20.60.130.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.60.132.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.60.140.0/23\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.60.144.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.60.148.0/23\",\r\n \"20.60.150.0/23\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.60.154.0/23\",\r\n \"20.60.156.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.60.166.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.60.174.0/23\",\r\n \"20.60.176.0/23\",\r\n
+ \ \"20.60.178.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.60.182.0/23\",\r\n
+ \ \"20.60.184.0/23\",\r\n \"20.60.186.0/23\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.60.194.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.62.0.0/17\",\r\n \"20.62.128.0/17\",\r\n
+ \ \"20.63.0.0/17\",\r\n \"20.63.128.0/18\",\r\n \"20.63.192.0/18\",\r\n
+ \ \"20.64.0.0/17\",\r\n \"20.64.128.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.65.128.0/17\",\r\n \"20.66.0.0/17\",\r\n \"20.66.128.0/17\",\r\n
+ \ \"20.67.0.0/17\",\r\n \"20.67.128.0/17\",\r\n \"20.68.0.0/18\",\r\n
+ \ \"20.68.64.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.69.0.0/18\",\r\n
+ \ \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n \"20.69.192.0/18\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.70.64.0/18\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.71.0.0/16\",\r\n \"20.72.32.0/19\",\r\n \"20.72.64.0/18\",\r\n
+ \ \"20.72.128.0/18\",\r\n \"20.72.192.0/18\",\r\n \"20.73.0.0/16\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.74.128.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.75.128.0/17\",\r\n \"20.76.0.0/16\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.77.192.0/18\",\r\n \"20.78.0.0/17\",\r\n
+ \ \"20.78.128.0/18\",\r\n \"20.78.192.0/18\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.80.0.0/18\",\r\n \"20.80.64.0/18\",\r\n
+ \ \"20.80.128.0/18\",\r\n \"20.80.192.0/18\",\r\n \"20.81.0.0/17\",\r\n
+ \ \"20.81.128.0/17\",\r\n \"20.82.0.0/17\",\r\n \"20.82.128.0/17\",\r\n
+ \ \"20.83.0.0/18\",\r\n \"20.83.64.0/18\",\r\n \"20.83.128.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.84.0.0/17\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.85.0.0/17\",\r\n \"20.85.128.0/17\",\r\n \"20.86.0.0/17\",\r\n
+ \ \"20.87.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.88.96.0/19\",\r\n
+ \ \"20.88.128.0/18\",\r\n \"20.88.192.0/18\",\r\n \"20.89.0.0/17\",\r\n
+ \ \"20.90.0.0/18\",\r\n \"20.92.0.0/18\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.4.0/22\",\r\n \"20.135.8.0/22\",\r\n
+ \ \"20.135.12.0/22\",\r\n \"20.135.16.0/23\",\r\n \"20.135.18.0/23\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.24.0/23\",\r\n \"20.135.26.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.135.30.0/23\",\r\n \"20.135.32.0/23\",\r\n
+ \ \"20.135.36.0/23\",\r\n \"20.135.40.0/23\",\r\n \"20.135.42.0/23\",\r\n
+ \ \"20.135.44.0/23\",\r\n \"20.135.48.0/23\",\r\n \"20.135.50.0/23\",\r\n
+ \ \"20.135.52.0/23\",\r\n \"20.135.54.0/23\",\r\n \"20.135.56.0/23\",\r\n
+ \ \"20.135.58.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.135.66.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.135.70.0/23\",\r\n
+ \ \"20.135.72.0/23\",\r\n \"20.135.74.0/23\",\r\n \"20.135.76.0/23\",\r\n
+ \ \"20.135.78.0/23\",\r\n \"20.135.80.0/22\",\r\n \"20.135.84.0/22\",\r\n
+ \ \"20.135.88.0/23\",\r\n \"20.135.90.0/23\",\r\n \"20.135.92.0/22\",\r\n
+ \ \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.135.128.0/22\",\r\n \"20.135.132.0/23\",\r\n
+ \ \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n
+ \ \"20.135.216.0/22\",\r\n \"20.135.220.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.0.0/24\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.1.128/25\",\r\n \"20.150.2.0/23\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.14.0/23\",\r\n \"20.150.16.0/24\",\r\n
+ \ \"20.150.17.0/25\",\r\n \"20.150.17.128/25\",\r\n \"20.150.18.0/25\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.19.0/24\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.21.0/24\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.23.0/24\",\r\n \"20.150.24.0/24\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.27.0/24\",\r\n \"20.150.28.0/24\",\r\n
+ \ \"20.150.29.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.36.0/24\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.38.0/23\",\r\n \"20.150.40.0/25\",\r\n \"20.150.40.128/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.42.0/24\",\r\n \"20.150.43.0/25\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.46.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n \"20.150.49.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.53.0/24\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.55.0/24\",\r\n \"20.150.56.0/24\",\r\n
+ \ \"20.150.58.0/24\",\r\n \"20.150.59.0/24\",\r\n \"20.150.60.0/24\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.66.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.150.70.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.72.0/24\",\r\n \"20.150.73.0/24\",\r\n \"20.150.74.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.76.0/24\",\r\n \"20.150.77.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.82.0/24\",\r\n \"20.150.83.0/24\",\r\n
+ \ \"20.150.84.0/24\",\r\n \"20.150.85.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.150.91.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.150.100.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.150.103.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"20.150.107.0/24\",\r\n \"20.150.108.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.150.111.0/24\",\r\n \"20.150.112.0/24\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"20.150.114.0/24\",\r\n \"20.150.115.0/24\",\r\n \"20.150.116.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.150.121.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.150.123.0/24\",\r\n
+ \ \"20.150.124.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.151.0.0/17\",\r\n \"20.151.128.0/18\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.157.2.0/24\",\r\n
+ \ \"20.157.3.0/24\",\r\n \"20.157.32.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.157.36.0/23\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"20.157.41.0/24\",\r\n \"20.157.42.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.157.47.0/24\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"20.157.52.0/24\",\r\n \"20.157.53.0/24\",\r\n
+ \ \"20.157.54.0/24\",\r\n \"20.157.55.0/24\",\r\n \"20.157.56.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.157.96.0/24\",\r\n \"20.184.0.0/18\",\r\n
+ \ \"20.184.64.0/18\",\r\n \"20.184.128.0/17\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.187.64.0/18\",\r\n \"20.187.128.0/18\",\r\n
+ \ \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n \"20.188.0.0/19\",\r\n
+ \ \"20.188.32.0/19\",\r\n \"20.188.64.0/19\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.188.128.0/17\",\r\n \"20.189.0.0/18\",\r\n \"20.189.64.0/18\",\r\n
+ \ \"20.189.128.0/18\",\r\n \"20.189.192.0/18\",\r\n \"20.190.0.0/18\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.96.0/19\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.130.0/24\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.133.0/24\",\r\n \"20.190.134.0/24\",\r\n
+ \ \"20.190.135.0/24\",\r\n \"20.190.136.0/24\",\r\n \"20.190.137.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.138.128/25\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.139.128/25\",\r\n \"20.190.140.0/25\",\r\n \"20.190.140.128/25\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.141.128/25\",\r\n \"20.190.142.0/25\",\r\n
+ \ \"20.190.142.128/25\",\r\n \"20.190.143.0/25\",\r\n \"20.190.143.128/25\",\r\n
+ \ \"20.190.144.0/25\",\r\n \"20.190.144.128/25\",\r\n \"20.190.145.0/25\",\r\n
+ \ \"20.190.145.128/25\",\r\n \"20.190.146.0/25\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.147.0/25\",\r\n \"20.190.147.128/25\",\r\n \"20.190.148.0/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.149.0/24\",\r\n \"20.190.150.0/24\",\r\n
+ \ \"20.190.151.0/24\",\r\n \"20.190.152.0/24\",\r\n \"20.190.153.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.190.155.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"20.190.158.0/24\",\r\n \"20.190.159.0/24\",\r\n
+ \ \"20.190.160.0/24\",\r\n \"20.190.161.0/24\",\r\n \"20.190.162.0/24\",\r\n
+ \ \"20.190.163.0/24\",\r\n \"20.190.164.0/24\",\r\n \"20.190.165.0/24\",\r\n
+ \ \"20.190.166.0/24\",\r\n \"20.190.167.0/24\",\r\n \"20.190.168.0/24\",\r\n
+ \ \"20.190.169.0/24\",\r\n \"20.190.170.0/24\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"20.190.172.0/24\",\r\n \"20.190.173.0/24\",\r\n \"20.190.174.0/24\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.190.176.0/24\",\r\n \"20.190.177.0/24\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"20.190.179.0/24\",\r\n \"20.190.180.0/24\",\r\n
+ \ \"20.190.183.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.190.185.0/24\",\r\n
+ \ \"20.190.186.0/24\",\r\n \"20.190.187.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"20.190.189.64/26\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"20.190.190.0/26\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"20.190.192.0/18\",\r\n \"20.191.0.0/18\",\r\n \"20.191.64.0/18\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.191.160.0/19\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n \"20.192.64.0/19\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"20.193.96.0/19\",\r\n
+ \ \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.194.128.0/17\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n
+ \ \"20.195.128.0/22\",\r\n \"20.195.136.0/21\",\r\n \"20.195.144.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.197.64.0/18\",\r\n \"20.197.128.0/17\",\r\n
+ \ \"20.198.0.0/17\",\r\n \"20.198.128.0/17\",\r\n \"20.199.0.0/17\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"20.199.192.0/18\",\r\n \"20.200.0.0/18\",\r\n
+ \ \"20.200.64.0/18\",\r\n \"20.200.128.0/18\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"20.201.0.0/18\",\r\n \"23.96.0.0/17\",\r\n \"23.96.128.0/17\",\r\n
+ \ \"23.97.48.0/20\",\r\n \"23.97.64.0/19\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"23.97.112.192/27\",\r\n \"23.97.112.224/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"23.97.128.0/17\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.98.45.0/24\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.98.47.0/24\",\r\n \"23.98.48.0/21\",\r\n
+ \ \"23.98.56.0/24\",\r\n \"23.98.57.64/26\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.98.128.0/17\",\r\n \"23.99.0.0/18\",\r\n \"23.99.64.0/19\",\r\n
+ \ \"23.99.96.0/19\",\r\n \"23.99.128.0/17\",\r\n \"23.100.0.0/20\",\r\n
+ \ \"23.100.16.0/20\",\r\n \"23.100.32.0/20\",\r\n \"23.100.48.0/20\",\r\n
+ \ \"23.100.64.0/21\",\r\n \"23.100.72.0/21\",\r\n \"23.100.80.0/21\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.100.96.0/21\",\r\n \"23.100.104.0/21\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.100.120.0/21\",\r\n \"23.100.128.0/18\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.100.240.0/20\",\r\n \"23.101.0.0/20\",\r\n
+ \ \"23.101.16.0/20\",\r\n \"23.101.32.0/21\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.101.64.0/20\",\r\n \"23.101.80.0/21\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.101.128.0/20\",\r\n \"23.101.144.0/20\",\r\n \"23.101.160.0/20\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.101.192.0/20\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"23.101.224.0/19\",\r\n \"23.102.0.0/18\",\r\n \"23.102.64.0/19\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.128.0/18\",\r\n \"23.102.192.0/21\",\r\n
+ \ \"23.102.200.0/23\",\r\n \"23.102.202.0/24\",\r\n \"23.102.203.0/24\",\r\n
+ \ \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n \"23.102.224.0/19\",\r\n
+ \ \"23.103.64.32/27\",\r\n \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n
+ \ \"40.64.64.0/18\",\r\n \"40.64.128.0/21\",\r\n \"40.65.0.0/18\",\r\n
+ \ \"40.65.64.0/18\",\r\n \"40.65.128.0/18\",\r\n \"40.65.192.0/18\",\r\n
+ \ \"40.66.32.0/19\",\r\n \"40.66.120.0/21\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.67.128.0/19\",\r\n \"40.67.160.0/19\",\r\n \"40.67.192.0/19\",\r\n
+ \ \"40.67.224.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.96.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.69.192.0/19\",\r\n \"40.70.0.0/18\",\r\n \"40.70.64.0/20\",\r\n
+ \ \"40.70.80.0/21\",\r\n \"40.70.88.0/28\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.74.0.0/18\",\r\n \"40.74.64.0/18\",\r\n
+ \ \"40.74.128.0/20\",\r\n \"40.74.144.0/20\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.75.0.0/19\",\r\n \"40.75.32.0/21\",\r\n
+ \ \"40.75.64.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.76.0.0/16\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.128.0/25\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.130.128/26\",\r\n
+ \ \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n \"40.77.131.128/26\",\r\n
+ \ \"40.77.131.192/27\",\r\n \"40.77.131.224/28\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.132.0/24\",\r\n \"40.77.133.0/24\",\r\n \"40.77.134.0/24\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.0/28\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.48/28\",\r\n \"40.77.136.64/28\",\r\n
+ \ \"40.77.136.80/28\",\r\n \"40.77.136.96/28\",\r\n \"40.77.136.128/25\",\r\n
+ \ \"40.77.137.0/25\",\r\n \"40.77.137.128/26\",\r\n \"40.77.137.192/27\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.138.128/25\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n \"40.77.160.32/27\",\r\n
+ \ \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n \"40.77.161.0/26\",\r\n
+ \ \"40.77.161.64/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.162.0/24\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.166.0/25\",\r\n \"40.77.166.128/28\",\r\n \"40.77.166.160/27\",\r\n
+ \ \"40.77.166.192/26\",\r\n \"40.77.167.0/24\",\r\n \"40.77.168.0/24\",\r\n
+ \ \"40.77.169.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.171.0/24\",\r\n
+ \ \"40.77.172.0/24\",\r\n \"40.77.173.0/24\",\r\n \"40.77.174.0/24\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.175.32/27\",\r\n \"40.77.175.64/27\",\r\n
+ \ \"40.77.175.96/27\",\r\n \"40.77.175.128/27\",\r\n \"40.77.175.160/27\",\r\n
+ \ \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n \"40.77.176.0/24\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.180.0/23\",\r\n
+ \ \"40.77.182.0/28\",\r\n \"40.77.182.16/28\",\r\n \"40.77.182.32/27\",\r\n
+ \ \"40.77.182.64/27\",\r\n \"40.77.182.96/27\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.182.192/26\",\r\n \"40.77.183.0/24\",\r\n
+ \ \"40.77.184.0/25\",\r\n \"40.77.184.128/25\",\r\n \"40.77.185.0/25\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.188.0/22\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.196.0/24\",\r\n \"40.77.197.0/24\",\r\n
+ \ \"40.77.198.0/26\",\r\n \"40.77.198.64/26\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.0/25\",\r\n \"40.77.199.128/26\",\r\n \"40.77.199.192/26\",\r\n
+ \ \"40.77.200.0/25\",\r\n \"40.77.200.128/25\",\r\n \"40.77.201.0/24\",\r\n
+ \ \"40.77.202.0/24\",\r\n \"40.77.224.0/28\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.224.64/27\",\r\n \"40.77.224.96/27\",\r\n
+ \ \"40.77.224.128/25\",\r\n \"40.77.225.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.227.0/24\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.229.0/24\",\r\n \"40.77.230.0/24\",\r\n \"40.77.231.0/24\",\r\n
+ \ \"40.77.232.0/25\",\r\n \"40.77.232.128/25\",\r\n \"40.77.233.0/24\",\r\n
+ \ \"40.77.234.0/25\",\r\n \"40.77.234.128/27\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.234.192/27\",\r\n \"40.77.234.224/27\",\r\n \"40.77.235.0/24\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.32/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.236.96/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.236.160/28\",\r\n
+ \ \"40.77.236.176/28\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.237.128/25\",\r\n \"40.77.240.0/25\",\r\n
+ \ \"40.77.240.128/25\",\r\n \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n
+ \ \"40.77.245.0/24\",\r\n \"40.77.246.0/24\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.248.128/25\",\r\n \"40.77.249.0/24\",\r\n
+ \ \"40.77.250.0/24\",\r\n \"40.77.251.0/24\",\r\n \"40.77.252.0/23\",\r\n
+ \ \"40.77.254.0/26\",\r\n \"40.77.254.128/25\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.77.255.128/26\",\r\n \"40.77.255.192/26\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.128.0/18\",\r\n \"40.78.192.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.0/28\",\r\n \"40.78.208.16/28\",\r\n \"40.78.208.32/30\",\r\n
+ \ \"40.78.208.48/28\",\r\n \"40.78.208.64/28\",\r\n \"40.78.209.0/24\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.78.211.0/24\",\r\n \"40.78.212.0/24\",\r\n
+ \ \"40.78.214.0/24\",\r\n \"40.78.216.0/24\",\r\n \"40.78.217.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.78.219.0/24\",\r\n \"40.78.220.0/24\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.78.222.0/24\",\r\n \"40.78.223.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.78.232.0/21\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n \"40.79.8.32/28\",\r\n
+ \ \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n \"40.79.9.0/24\",\r\n
+ \ \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n \"40.79.48.0/27\",\r\n
+ \ \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n \"40.79.56.0/21\",\r\n
+ \ \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n \"40.79.88.0/27\",\r\n
+ \ \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n \"40.79.90.0/24\",\r\n
+ \ \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n \"40.79.93.0/28\",\r\n
+ \ \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n \"40.79.96.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.152.0/21\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.176.0/21\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.201.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.79.203.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.79.204.192/26\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n \"40.79.205.240/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.79.206.32/27\",\r\n \"40.79.206.64/27\",\r\n
+ \ \"40.79.206.96/27\",\r\n \"40.79.206.128/27\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.206.224/27\",\r\n \"40.79.207.0/27\",\r\n
+ \ \"40.79.207.32/27\",\r\n \"40.79.207.64/28\",\r\n \"40.79.207.80/28\",\r\n
+ \ \"40.79.207.96/27\",\r\n \"40.79.207.128/25\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.79.210.0/24\",\r\n \"40.79.211.0/24\",\r\n
+ \ \"40.79.212.0/24\",\r\n \"40.79.213.0/24\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.79.216.0/24\",\r\n \"40.79.217.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.79.219.0/24\",\r\n \"40.79.220.0/24\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.79.222.0/24\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.79.232.0/21\",\r\n \"40.79.240.0/20\",\r\n \"40.80.0.0/22\",\r\n
+ \ \"40.80.4.0/22\",\r\n \"40.80.12.0/22\",\r\n \"40.80.16.0/22\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.24.0/22\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.36.0/22\",\r\n \"40.80.40.0/22\",\r\n \"40.80.44.0/22\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.56.0/21\",\r\n \"40.80.64.0/19\",\r\n
+ \ \"40.80.96.0/20\",\r\n \"40.80.144.0/21\",\r\n \"40.80.152.0/21\",\r\n
+ \ \"40.80.160.0/24\",\r\n \"40.80.168.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.80.184.0/21\",\r\n \"40.80.192.0/19\",\r\n \"40.80.224.0/20\",\r\n
+ \ \"40.80.240.0/20\",\r\n \"40.81.0.0/20\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.81.48.0/20\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.81.96.0/20\",\r\n \"40.81.112.0/20\",\r\n
+ \ \"40.81.128.0/19\",\r\n \"40.81.160.0/20\",\r\n \"40.81.176.0/20\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.81.224.0/19\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.82.4.0/22\",\r\n \"40.82.8.0/22\",\r\n \"40.82.16.0/22\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.24.0/22\",\r\n \"40.82.28.0/22\",\r\n
+ \ \"40.82.32.0/22\",\r\n \"40.82.36.0/22\",\r\n \"40.82.44.0/22\",\r\n
+ \ \"40.82.48.0/22\",\r\n \"40.82.52.0/22\",\r\n \"40.82.60.0/22\",\r\n
+ \ \"40.82.64.0/22\",\r\n \"40.82.68.0/22\",\r\n \"40.82.72.0/22\",\r\n
+ \ \"40.82.84.0/22\",\r\n \"40.82.88.0/22\",\r\n \"40.82.92.0/22\",\r\n
+ \ \"40.82.96.0/22\",\r\n \"40.82.100.0/22\",\r\n \"40.82.116.0/22\",\r\n
+ \ \"40.82.120.0/22\",\r\n \"40.82.128.0/19\",\r\n \"40.82.160.0/19\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.82.224.0/20\",\r\n \"40.82.240.0/22\",\r\n
+ \ \"40.82.244.0/22\",\r\n \"40.82.248.0/21\",\r\n \"40.83.0.0/20\",\r\n
+ \ \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n \"40.83.24.64/27\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.83.64.0/18\",\r\n \"40.83.128.0/17\",\r\n \"40.84.0.0/17\",\r\n
+ \ \"40.84.128.0/17\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.85.144.0/20\",\r\n \"40.85.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.86.128.0/19\",\r\n \"40.86.160.0/19\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.87.0.0/17\",\r\n \"40.87.128.0/19\",\r\n
+ \ \"40.87.160.0/22\",\r\n \"40.87.164.0/22\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.4/30\",\r\n \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n
+ \ \"40.87.168.32/29\",\r\n \"40.87.168.40/29\",\r\n \"40.87.168.48/28\",\r\n
+ \ \"40.87.168.64/30\",\r\n \"40.87.168.68/31\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.208/31\",\r\n
+ \ \"40.87.168.210/31\",\r\n \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n
+ \ \"40.87.168.224/27\",\r\n \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n
+ \ \"40.87.169.40/30\",\r\n \"40.87.169.44/30\",\r\n \"40.87.169.48/29\",\r\n
+ \ \"40.87.169.56/31\",\r\n \"40.87.169.58/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.98/31\",\r\n
+ \ \"40.87.169.100/31\",\r\n \"40.87.169.102/31\",\r\n \"40.87.169.104/29\",\r\n
+ \ \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n \"40.87.169.136/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.144/28\",\r\n
+ \ \"40.87.169.160/27\",\r\n \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n
+ \ \"40.87.170.128/28\",\r\n \"40.87.170.144/31\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.188/30\",\r\n
+ \ \"40.87.170.192/31\",\r\n \"40.87.170.194/31\",\r\n \"40.87.170.196/30\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n \"40.87.170.220/30\",\r\n
+ \ \"40.87.170.224/30\",\r\n \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n
+ \ \"40.87.170.240/29\",\r\n \"40.87.170.248/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.32/30\",\r\n
+ \ \"40.87.171.36/30\",\r\n \"40.87.171.40/31\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n \"40.87.171.96/27\",\r\n
+ \ \"40.87.171.128/28\",\r\n \"40.87.172.0/22\",\r\n \"40.87.176.0/25\",\r\n
+ \ \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n \"40.87.176.174/31\",\r\n
+ \ \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n \"40.87.176.216/29\",\r\n
+ \ \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n \"40.87.176.240/28\",\r\n
+ \ \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n \"40.87.177.64/27\",\r\n
+ \ \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n \"40.87.177.120/31\",\r\n
+ \ \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n \"40.87.177.144/29\",\r\n
+ \ \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n \"40.87.177.160/27\",\r\n
+ \ \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n \"40.87.177.212/30\",\r\n
+ \ \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n \"40.87.178.0/26\",\r\n
+ \ \"40.87.178.64/29\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n \"40.87.180.12/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n \"40.87.180.28/30\",\r\n
+ \ \"40.87.180.32/29\",\r\n \"40.87.180.40/31\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n \"40.87.180.74/31\",\r\n
+ \ \"40.87.180.76/30\",\r\n \"40.87.182.0/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.24/29\",\r\n
+ \ \"40.87.182.32/28\",\r\n \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n
+ \ \"40.87.182.60/31\",\r\n \"40.87.182.62/31\",\r\n \"40.87.182.64/26\",\r\n
+ \ \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n \"40.87.183.16/29\",\r\n
+ \ \"40.87.183.24/30\",\r\n \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n
+ \ \"40.87.183.34/31\",\r\n \"40.87.183.36/30\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n \"40.87.183.48/30\",\r\n
+ \ \"40.87.183.52/31\",\r\n \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n
+ \ \"40.87.183.64/26\",\r\n \"40.87.183.128/28\",\r\n \"40.87.183.144/28\",\r\n
+ \ \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n \"40.87.183.224/29\",\r\n
+ \ \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n \"40.87.183.238/31\",\r\n
+ \ \"40.87.183.240/30\",\r\n \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n
+ \ \"40.87.184.0/22\",\r\n \"40.87.188.0/22\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.87.196.0/22\",\r\n \"40.87.200.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.87.208.0/22\",\r\n \"40.87.212.0/22\",\r\n \"40.87.216.0/22\",\r\n
+ \ \"40.87.220.0/22\",\r\n \"40.87.224.0/22\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.88.0.0/16\",\r\n \"40.89.0.0/19\",\r\n
+ \ \"40.89.32.0/19\",\r\n \"40.89.64.0/18\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.89.192.0/19\",\r\n \"40.89.224.0/19\",\r\n \"40.90.16.0/27\",\r\n
+ \ \"40.90.16.64/27\",\r\n \"40.90.16.96/27\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.16.192/26\",\r\n \"40.90.17.0/27\",\r\n
+ \ \"40.90.17.32/27\",\r\n \"40.90.17.64/27\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.17.128/28\",\r\n \"40.90.17.144/28\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.17.192/27\",\r\n \"40.90.17.224/27\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.18.64/26\",\r\n \"40.90.18.128/26\",\r\n
+ \ \"40.90.18.192/26\",\r\n \"40.90.19.0/27\",\r\n \"40.90.19.32/27\",\r\n
+ \ \"40.90.19.64/26\",\r\n \"40.90.19.128/25\",\r\n \"40.90.20.0/25\",\r\n
+ \ \"40.90.20.128/25\",\r\n \"40.90.21.0/25\",\r\n \"40.90.21.128/25\",\r\n
+ \ \"40.90.22.0/25\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.0/25\",\r\n \"40.90.24.128/25\",\r\n
+ \ \"40.90.25.0/26\",\r\n \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.26.0/26\",\r\n \"40.90.26.64/26\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.27.0/26\",\r\n \"40.90.27.64/26\",\r\n
+ \ \"40.90.27.128/26\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.28.192/26\",\r\n
+ \ \"40.90.29.0/26\",\r\n \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.30.0/25\",\r\n \"40.90.30.128/27\",\r\n
+ \ \"40.90.30.160/27\",\r\n \"40.90.30.192/26\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.31.96/27\",\r\n \"40.90.31.128/25\",\r\n \"40.90.128.0/28\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.128.48/28\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.128.80/28\",\r\n \"40.90.128.96/28\",\r\n \"40.90.128.112/28\",\r\n
+ \ \"40.90.128.128/28\",\r\n \"40.90.128.144/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.128.176/28\",\r\n \"40.90.128.192/28\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.128.240/28\",\r\n \"40.90.129.48/28\",\r\n
+ \ \"40.90.129.96/27\",\r\n \"40.90.129.128/26\",\r\n \"40.90.129.192/27\",\r\n
+ \ \"40.90.129.224/27\",\r\n \"40.90.130.0/27\",\r\n \"40.90.130.32/28\",\r\n
+ \ \"40.90.130.48/28\",\r\n \"40.90.130.64/28\",\r\n \"40.90.130.80/28\",\r\n
+ \ \"40.90.130.96/28\",\r\n \"40.90.130.112/28\",\r\n \"40.90.130.128/28\",\r\n
+ \ \"40.90.130.144/28\",\r\n \"40.90.130.160/27\",\r\n \"40.90.130.192/28\",\r\n
+ \ \"40.90.130.208/28\",\r\n \"40.90.130.224/28\",\r\n \"40.90.130.240/28\",\r\n
+ \ \"40.90.131.0/27\",\r\n \"40.90.131.32/27\",\r\n \"40.90.131.64/27\",\r\n
+ \ \"40.90.131.96/27\",\r\n \"40.90.131.128/27\",\r\n \"40.90.131.160/27\",\r\n
+ \ \"40.90.131.192/27\",\r\n \"40.90.131.224/27\",\r\n \"40.90.132.0/27\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.132.48/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.132.96/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.132.192/26\",\r\n \"40.90.133.0/27\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.133.96/28\",\r\n \"40.90.133.112/28\",\r\n
+ \ \"40.90.133.128/28\",\r\n \"40.90.133.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.133.192/26\",\r\n \"40.90.134.0/26\",\r\n \"40.90.134.64/26\",\r\n
+ \ \"40.90.134.128/26\",\r\n \"40.90.134.192/26\",\r\n \"40.90.135.0/26\",\r\n
+ \ \"40.90.135.64/26\",\r\n \"40.90.135.128/25\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.136.160/28\",\r\n \"40.90.136.176/28\",\r\n
+ \ \"40.90.136.192/27\",\r\n \"40.90.136.224/27\",\r\n \"40.90.137.0/27\",\r\n
+ \ \"40.90.137.32/27\",\r\n \"40.90.137.64/27\",\r\n \"40.90.137.96/27\",\r\n
+ \ \"40.90.137.128/27\",\r\n \"40.90.137.160/27\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.137.224/27\",\r\n \"40.90.138.0/27\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.138.96/27\",\r\n \"40.90.138.128/27\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.138.192/28\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.90.139.0/27\",\r\n \"40.90.139.32/27\",\r\n
+ \ \"40.90.139.64/27\",\r\n \"40.90.139.96/27\",\r\n \"40.90.139.128/27\",\r\n
+ \ \"40.90.139.160/27\",\r\n \"40.90.139.192/27\",\r\n \"40.90.139.224/27\",\r\n
+ \ \"40.90.140.0/27\",\r\n \"40.90.140.32/27\",\r\n \"40.90.140.64/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.128/27\",\r\n \"40.90.140.160/27\",\r\n
+ \ \"40.90.140.192/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.64/27\",\r\n \"40.90.141.96/27\",\r\n
+ \ \"40.90.141.128/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.32/27\",\r\n \"40.90.142.64/27\",\r\n
+ \ \"40.90.142.96/27\",\r\n \"40.90.142.128/27\",\r\n \"40.90.142.160/27\",\r\n
+ \ \"40.90.142.192/28\",\r\n \"40.90.142.208/28\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.142.240/28\",\r\n \"40.90.143.0/27\",\r\n \"40.90.143.32/27\",\r\n
+ \ \"40.90.143.64/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.143.128/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.143.192/26\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.32/27\",\r\n \"40.90.144.64/26\",\r\n \"40.90.144.128/26\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.144.224/27\",\r\n \"40.90.145.0/27\",\r\n
+ \ \"40.90.145.32/27\",\r\n \"40.90.145.64/27\",\r\n \"40.90.145.96/27\",\r\n
+ \ \"40.90.145.128/27\",\r\n \"40.90.145.160/27\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"40.90.145.224/27\",\r\n \"40.90.146.0/28\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.32/27\",\r\n \"40.90.146.64/26\",\r\n \"40.90.146.128/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.192/27\",\r\n \"40.90.146.224/27\",\r\n
+ \ \"40.90.147.0/27\",\r\n \"40.90.147.32/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.147.96/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.90.147.224/27\",\r\n \"40.90.148.0/26\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.148.96/27\",\r\n \"40.90.148.128/27\",\r\n \"40.90.148.160/28\",\r\n
+ \ \"40.90.148.176/28\",\r\n \"40.90.148.192/27\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.149.0/27\",\r\n \"40.90.149.32/27\",\r\n \"40.90.149.64/27\",\r\n
+ \ \"40.90.149.96/27\",\r\n \"40.90.149.128/25\",\r\n \"40.90.150.0/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.90.150.128/25\",\r\n \"40.90.151.0/26\",\r\n \"40.90.151.64/27\",\r\n
+ \ \"40.90.151.96/27\",\r\n \"40.90.151.128/28\",\r\n \"40.90.151.144/28\",\r\n
+ \ \"40.90.151.160/27\",\r\n \"40.90.151.224/27\",\r\n \"40.90.152.0/25\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.90.152.160/27\",\r\n \"40.90.152.192/27\",\r\n
+ \ \"40.90.152.224/27\",\r\n \"40.90.153.0/26\",\r\n \"40.90.153.64/27\",\r\n
+ \ \"40.90.153.96/27\",\r\n \"40.90.153.128/25\",\r\n \"40.90.154.0/26\",\r\n
+ \ \"40.90.154.64/26\",\r\n \"40.90.154.128/26\",\r\n \"40.90.154.192/26\",\r\n
+ \ \"40.90.155.0/26\",\r\n \"40.90.155.64/26\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.155.192/26\",\r\n \"40.90.156.0/26\",\r\n \"40.90.156.64/27\",\r\n
+ \ \"40.90.156.96/27\",\r\n \"40.90.156.128/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.157.0/27\",\r\n \"40.90.157.32/27\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.157.192/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.90.158.0/26\",\r\n \"40.90.158.64/26\",\r\n \"40.90.158.128/25\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.90.160.0/19\",\r\n \"40.90.192.0/19\",\r\n
+ \ \"40.90.224.0/19\",\r\n \"40.91.0.0/22\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.91.12.0/28\",\r\n \"40.91.12.16/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n
+ \ \"40.91.13.128/27\",\r\n \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n
+ \ \"40.91.16.0/22\",\r\n \"40.91.20.0/22\",\r\n \"40.91.24.0/22\",\r\n
+ \ \"40.91.28.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.91.64.0/18\",\r\n
+ \ \"40.91.160.0/19\",\r\n \"40.91.192.0/18\",\r\n \"40.93.0.0/23\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.3.0/24\",\r\n \"40.93.4.0/24\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.93.6.0/24\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.93.8.0/24\",\r\n \"40.96.46.0/24\",\r\n \"40.96.52.0/24\",\r\n
+ \ \"40.96.55.0/24\",\r\n \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.112.36.0/25\",\r\n \"40.112.36.128/25\",\r\n
+ \ \"40.112.37.0/26\",\r\n \"40.112.37.64/26\",\r\n \"40.112.37.128/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.112.38.192/26\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.112.48.0/20\",\r\n \"40.112.64.0/19\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.112.128.0/17\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.113.192.0/18\",\r\n \"40.114.0.0/17\",\r\n \"40.114.128.0/17\",\r\n
+ \ \"40.115.0.0/18\",\r\n \"40.115.64.0/19\",\r\n \"40.115.96.0/19\",\r\n
+ \ \"40.115.128.0/17\",\r\n \"40.116.0.0/16\",\r\n \"40.117.0.0/19\",\r\n
+ \ \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n \"40.117.128.0/17\",\r\n
+ \ \"40.118.0.0/17\",\r\n \"40.118.128.0/17\",\r\n \"40.119.0.0/18\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.119.68.0/22\",\r\n \"40.119.72.0/22\",\r\n
+ \ \"40.119.76.0/22\",\r\n \"40.119.80.0/22\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.119.92.0/22\",\r\n \"40.119.96.0/22\",\r\n \"40.119.104.0/22\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.119.128.0/19\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.119.192.0/18\",\r\n \"40.120.0.0/20\",\r\n \"40.120.16.0/20\",\r\n
+ \ \"40.120.32.0/19\",\r\n \"40.120.64.0/18\",\r\n \"40.121.0.0/16\",\r\n
+ \ \"40.122.0.0/20\",\r\n \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n
+ \ \"40.122.64.0/18\",\r\n \"40.122.128.0/17\",\r\n \"40.123.0.0/17\",\r\n
+ \ \"40.123.128.0/22\",\r\n \"40.123.132.0/22\",\r\n \"40.123.136.0/24\",\r\n
+ \ \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.124.0.0/16\",\r\n \"40.125.0.0/19\",\r\n \"40.125.32.0/19\",\r\n
+ \ \"40.125.64.0/18\",\r\n \"40.126.0.0/24\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.3.0/24\",\r\n \"40.126.4.0/24\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.6.0/24\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.8.0/24\",\r\n \"40.126.9.0/24\",\r\n \"40.126.10.0/25\",\r\n
+ \ \"40.126.10.128/25\",\r\n \"40.126.11.0/25\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.12.0/25\",\r\n \"40.126.12.128/25\",\r\n \"40.126.13.0/25\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.14.0/25\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.15.128/25\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.16.128/25\",\r\n \"40.126.17.0/25\",\r\n \"40.126.17.128/25\",\r\n
+ \ \"40.126.18.0/25\",\r\n \"40.126.18.128/25\",\r\n \"40.126.19.0/25\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.20.0/25\",\r\n \"40.126.20.128/25\",\r\n
+ \ \"40.126.21.0/24\",\r\n \"40.126.22.0/24\",\r\n \"40.126.23.0/24\",\r\n
+ \ \"40.126.24.0/24\",\r\n \"40.126.25.0/24\",\r\n \"40.126.26.0/24\",\r\n
+ \ \"40.126.27.0/24\",\r\n \"40.126.28.0/24\",\r\n \"40.126.29.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"40.126.31.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"40.126.34.0/24\",\r\n \"40.126.35.0/24\",\r\n
+ \ \"40.126.36.0/24\",\r\n \"40.126.37.0/24\",\r\n \"40.126.38.0/24\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.40.0/24\",\r\n \"40.126.41.0/24\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"40.126.43.0/24\",\r\n \"40.126.44.0/24\",\r\n
+ \ \"40.126.45.0/24\",\r\n \"40.126.46.0/24\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"40.126.48.0/24\",\r\n \"40.126.49.0/24\",\r\n \"40.126.50.0/24\",\r\n
+ \ \"40.126.51.0/24\",\r\n \"40.126.52.0/24\",\r\n \"40.126.55.0/24\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.57.0/24\",\r\n \"40.126.58.0/24\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.60.0/24\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.61.64/26\",\r\n \"40.126.61.128/26\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.126.62.64/26\",\r\n \"40.126.128.0/18\",\r\n
+ \ \"40.126.192.0/24\",\r\n \"40.126.193.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"40.126.195.0/24\",\r\n \"40.126.197.0/24\",\r\n \"40.126.198.0/24\",\r\n
+ \ \"40.126.200.0/24\",\r\n \"40.126.201.0/24\",\r\n \"40.126.207.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"40.126.224.0/19\",\r\n \"40.127.0.0/19\",\r\n
+ \ \"40.127.64.0/19\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.11.0.0/18\",\r\n \"51.11.64.0/19\",\r\n \"51.11.96.0/19\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.11.192.0/18\",\r\n \"51.13.0.0/17\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.103.0.0/17\",\r\n \"51.103.128.0/18\",\r\n
+ \ \"51.103.192.0/27\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.104.0.0/19\",\r\n \"51.104.32.0/19\",\r\n \"51.104.64.0/18\",\r\n
+ \ \"51.104.128.0/18\",\r\n \"51.104.192.0/18\",\r\n \"51.105.0.0/18\",\r\n
+ \ \"51.105.64.0/20\",\r\n \"51.105.80.0/21\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.107.0.0/18\",\r\n
+ \ \"51.107.64.0/19\",\r\n \"51.107.96.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n \"51.107.160.0/20\",\r\n
+ \ \"51.107.192.0/21\",\r\n \"51.107.200.0/21\",\r\n \"51.107.208.0/20\",\r\n
+ \ \"51.107.224.0/20\",\r\n \"51.107.240.0/21\",\r\n \"51.107.248.0/21\",\r\n
+ \ \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.200.0/21\",\r\n
+ \ \"51.116.208.0/20\",\r\n \"51.116.224.0/19\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n \"51.120.208.0/21\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"51.120.232.0/21\",\r\n
+ \ \"51.120.240.0/20\",\r\n \"51.124.0.0/17\",\r\n \"51.124.128.0/18\",\r\n
+ \ \"51.132.0.0/18\",\r\n \"51.132.64.0/18\",\r\n \"51.132.128.0/17\",\r\n
+ \ \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n \"51.137.128.0/18\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.138.128.0/19\",\r\n
+ \ \"51.138.160.0/21\",\r\n \"51.138.192.0/19\",\r\n \"51.140.0.0/17\",\r\n
+ \ \"51.140.128.0/18\",\r\n \"51.140.192.0/18\",\r\n \"51.141.0.0/17\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.32/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.32/27\",\r\n
+ \ \"51.141.129.64/26\",\r\n \"51.141.129.128/26\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"51.141.134.0/24\",\r\n \"51.141.135.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"51.141.156.0/22\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.141.192.0/18\",\r\n \"51.142.0.0/17\",\r\n \"51.142.128.0/17\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"51.143.128.0/18\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"51.143.208.0/20\",\r\n
+ \ \"51.143.224.0/19\",\r\n \"51.144.0.0/16\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.0.0/22\",\r\n
+ \ \"52.101.4.0/22\",\r\n \"52.101.8.0/24\",\r\n \"52.101.9.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.11.0/24\",\r\n \"52.101.12.0/22\",\r\n
+ \ \"52.101.16.0/22\",\r\n \"52.101.20.0/22\",\r\n \"52.101.24.0/22\",\r\n
+ \ \"52.101.28.0/22\",\r\n \"52.101.32.0/22\",\r\n \"52.101.36.0/22\",\r\n
+ \ \"52.101.40.0/24\",\r\n \"52.101.41.0/24\",\r\n \"52.101.42.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.129.0/24\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.102.131.0/24\",\r\n \"52.102.132.0/24\",\r\n \"52.102.133.0/24\",\r\n
+ \ \"52.102.134.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.102.159.0/24\",\r\n
+ \ \"52.103.0.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.2.0/24\",\r\n
+ \ \"52.103.3.0/24\",\r\n \"52.103.4.0/24\",\r\n \"52.103.5.0/24\",\r\n
+ \ \"52.103.6.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.128.0/24\",\r\n \"52.103.129.0/24\",\r\n \"52.103.130.0/24\",\r\n
+ \ \"52.103.131.0/24\",\r\n \"52.103.132.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.0.0/21\",\r\n \"52.108.16.0/21\",\r\n
+ \ \"52.108.24.0/21\",\r\n \"52.108.32.0/22\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.40.0/23\",\r\n \"52.108.42.0/23\",\r\n \"52.108.44.0/23\",\r\n
+ \ \"52.108.46.0/23\",\r\n \"52.108.48.0/23\",\r\n \"52.108.50.0/23\",\r\n
+ \ \"52.108.52.0/23\",\r\n \"52.108.54.0/23\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.68.0/23\",\r\n \"52.108.70.0/23\",\r\n \"52.108.72.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.74.0/24\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.76.0/24\",\r\n \"52.108.77.0/24\",\r\n \"52.108.78.0/24\",\r\n
+ \ \"52.108.79.0/24\",\r\n \"52.108.80.0/24\",\r\n \"52.108.81.0/24\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.83.0/24\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.108.85.0/24\",\r\n \"52.108.86.0/24\",\r\n \"52.108.87.0/24\",\r\n
+ \ \"52.108.88.0/24\",\r\n \"52.108.89.0/24\",\r\n \"52.108.90.0/24\",\r\n
+ \ \"52.108.91.0/24\",\r\n \"52.108.92.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.108.94.0/24\",\r\n \"52.108.95.0/24\",\r\n \"52.108.96.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.108.108.0/23\",\r\n
+ \ \"52.108.110.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.108.113.0/24\",\r\n \"52.108.116.0/24\",\r\n \"52.108.128.0/24\",\r\n
+ \ \"52.108.137.0/24\",\r\n \"52.108.138.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.177.0/24\",\r\n \"52.108.178.0/24\",\r\n
+ \ \"52.108.179.0/24\",\r\n \"52.108.180.0/24\",\r\n \"52.108.181.0/24\",\r\n
+ \ \"52.108.182.0/24\",\r\n \"52.108.183.0/24\",\r\n \"52.108.184.0/24\",\r\n
+ \ \"52.108.185.0/24\",\r\n \"52.108.186.0/24\",\r\n \"52.108.187.0/24\",\r\n
+ \ \"52.108.188.0/24\",\r\n \"52.108.189.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.191.0/24\",\r\n \"52.108.192.0/24\",\r\n \"52.108.193.0/24\",\r\n
+ \ \"52.108.194.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.196.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.198.0/24\",\r\n \"52.108.199.0/24\",\r\n
+ \ \"52.108.200.0/24\",\r\n \"52.108.201.0/24\",\r\n \"52.108.202.0/24\",\r\n
+ \ \"52.108.203.0/24\",\r\n \"52.108.204.0/23\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.208.0/21\",\r\n \"52.108.216.0/22\",\r\n \"52.108.220.0/23\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.108.224.0/23\",\r\n \"52.108.226.0/23\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.108.230.0/23\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.108.236.0/22\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.108.248.0/21\",\r\n \"52.109.0.0/22\",\r\n \"52.109.4.0/22\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.109.12.0/22\",\r\n \"52.109.16.0/22\",\r\n
+ \ \"52.109.20.0/22\",\r\n \"52.109.24.0/22\",\r\n \"52.109.28.0/22\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.109.36.0/22\",\r\n \"52.109.40.0/22\",\r\n
+ \ \"52.109.44.0/22\",\r\n \"52.109.48.0/22\",\r\n \"52.109.52.0/22\",\r\n
+ \ \"52.109.56.0/22\",\r\n \"52.109.60.0/22\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.109.72.0/22\",\r\n \"52.109.76.0/22\",\r\n
+ \ \"52.109.86.0/23\",\r\n \"52.109.88.0/22\",\r\n \"52.109.92.0/22\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.109.100.0/23\",\r\n \"52.109.102.0/23\",\r\n
+ \ \"52.109.104.0/23\",\r\n \"52.109.108.0/22\",\r\n \"52.109.112.0/22\",\r\n
+ \ \"52.109.116.0/22\",\r\n \"52.109.120.0/22\",\r\n \"52.109.124.0/22\",\r\n
+ \ \"52.109.128.0/22\",\r\n \"52.109.132.0/22\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.109.140.0/22\",\r\n \"52.109.144.0/23\",\r\n \"52.109.150.0/23\",\r\n
+ \ \"52.109.152.0/23\",\r\n \"52.109.156.0/23\",\r\n \"52.109.158.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.109.162.0/23\",\r\n \"52.109.164.0/24\",\r\n
+ \ \"52.111.194.0/24\",\r\n \"52.111.197.0/24\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.111.202.0/24\",\r\n \"52.111.203.0/24\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.111.205.0/24\",\r\n \"52.111.206.0/24\",\r\n \"52.111.207.0/24\",\r\n
+ \ \"52.111.224.0/24\",\r\n \"52.111.225.0/24\",\r\n \"52.111.226.0/24\",\r\n
+ \ \"52.111.227.0/24\",\r\n \"52.111.228.0/24\",\r\n \"52.111.229.0/24\",\r\n
+ \ \"52.111.230.0/24\",\r\n \"52.111.231.0/24\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.111.233.0/24\",\r\n \"52.111.234.0/24\",\r\n \"52.111.235.0/24\",\r\n
+ \ \"52.111.236.0/24\",\r\n \"52.111.237.0/24\",\r\n \"52.111.238.0/24\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.111.240.0/24\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.111.242.0/24\",\r\n \"52.111.243.0/24\",\r\n \"52.111.244.0/24\",\r\n
+ \ \"52.111.245.0/24\",\r\n \"52.111.246.0/24\",\r\n \"52.111.247.0/24\",\r\n
+ \ \"52.111.248.0/24\",\r\n \"52.111.249.0/24\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.111.251.0/24\",\r\n \"52.111.252.0/24\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.111.254.0/24\",\r\n \"52.111.255.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.24.0/21\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.83.0/24\",\r\n \"52.112.88.0/22\",\r\n
+ \ \"52.112.93.0/24\",\r\n \"52.112.94.0/24\",\r\n \"52.112.95.0/24\",\r\n
+ \ \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.105.0/24\",\r\n \"52.112.106.0/23\",\r\n \"52.112.108.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.110.0/23\",\r\n \"52.112.112.0/24\",\r\n
+ \ \"52.112.113.0/24\",\r\n \"52.112.114.0/24\",\r\n \"52.112.115.0/24\",\r\n
+ \ \"52.112.116.0/24\",\r\n \"52.112.117.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.112.144.0/20\",\r\n \"52.112.168.0/22\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.112.190.0/24\",\r\n
+ \ \"52.112.191.0/24\",\r\n \"52.112.197.0/24\",\r\n \"52.112.200.0/22\",\r\n
+ \ \"52.112.204.0/23\",\r\n \"52.112.206.0/24\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.229.0/24\",\r\n \"52.112.230.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.233.0/24\",\r\n
+ \ \"52.112.236.0/24\",\r\n \"52.112.237.0/24\",\r\n \"52.112.238.0/24\",\r\n
+ \ \"52.112.240.0/20\",\r\n \"52.113.9.0/24\",\r\n \"52.113.10.0/23\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.14.0/24\",\r\n \"52.113.15.0/24\",\r\n
+ \ \"52.113.16.0/20\",\r\n \"52.113.37.0/24\",\r\n \"52.113.40.0/21\",\r\n
+ \ \"52.113.48.0/20\",\r\n \"52.113.70.0/23\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.76.0/23\",\r\n \"52.113.78.0/23\",\r\n \"52.113.83.0/24\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.88.0/22\",\r\n \"52.113.92.0/22\",\r\n
+ \ \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.103.0/24\",\r\n \"52.113.104.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.113.107.0/24\",\r\n
+ \ \"52.113.108.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.110.0/23\",\r\n
+ \ \"52.113.112.0/20\",\r\n \"52.113.128.0/24\",\r\n \"52.113.129.0/24\",\r\n
+ \ \"52.113.130.0/24\",\r\n \"52.113.131.0/24\",\r\n \"52.113.132.0/24\",\r\n
+ \ \"52.113.133.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.113.136.0/21\",\r\n
+ \ \"52.113.144.0/21\",\r\n \"52.113.160.0/19\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.113.193.0/24\",\r\n \"52.113.198.0/24\",\r\n \"52.113.199.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.205.0/24\",\r\n
+ \ \"52.113.206.0/24\",\r\n \"52.113.207.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.113.224.0/19\",\r\n \"52.114.0.0/21\",\r\n \"52.114.8.0/21\",\r\n
+ \ \"52.114.16.0/22\",\r\n \"52.114.20.0/22\",\r\n \"52.114.24.0/22\",\r\n
+ \ \"52.114.28.0/22\",\r\n \"52.114.32.0/22\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.114.40.0/22\",\r\n \"52.114.44.0/22\",\r\n \"52.114.48.0/22\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.60.0/23\",\r\n \"52.114.64.0/21\",\r\n
+ \ \"52.114.72.0/22\",\r\n \"52.114.76.0/22\",\r\n \"52.114.80.0/22\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.88.0/22\",\r\n \"52.114.92.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.104.0/22\",\r\n \"52.114.108.0/22\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.116.0/22\",\r\n \"52.114.120.0/22\",\r\n
+ \ \"52.114.128.0/22\",\r\n \"52.114.132.0/22\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.144.0/22\",\r\n \"52.114.148.0/22\",\r\n \"52.114.152.0/21\",\r\n
+ \ \"52.114.160.0/22\",\r\n \"52.114.164.0/22\",\r\n \"52.114.168.0/22\",\r\n
+ \ \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n \"52.114.180.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.114.186.0/23\",\r\n \"52.114.192.0/23\",\r\n
+ \ \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n \"52.114.200.0/22\",\r\n
+ \ \"52.114.216.0/22\",\r\n \"52.114.224.0/24\",\r\n \"52.114.226.0/24\",\r\n
+ \ \"52.114.228.0/24\",\r\n \"52.114.230.0/24\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.232.0/24\",\r\n \"52.114.233.0/24\",\r\n \"52.114.234.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.114.238.0/24\",\r\n \"52.114.240.0/24\",\r\n
+ \ \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n \"52.114.244.0/24\",\r\n
+ \ \"52.114.248.0/22\",\r\n \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n
+ \ \"52.115.8.0/22\",\r\n \"52.115.16.0/21\",\r\n \"52.115.24.0/22\",\r\n
+ \ \"52.115.32.0/22\",\r\n \"52.115.36.0/23\",\r\n \"52.115.38.0/24\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.47.0/24\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.54.0/24\",\r\n \"52.115.55.0/24\",\r\n
+ \ \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.64.0/22\",\r\n \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n
+ \ \"52.115.76.0/22\",\r\n \"52.115.80.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.115.88.0/22\",\r\n \"52.115.96.0/24\",\r\n \"52.115.97.0/24\",\r\n
+ \ \"52.115.98.0/24\",\r\n \"52.115.99.0/24\",\r\n \"52.115.100.0/22\",\r\n
+ \ \"52.115.104.0/23\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n \"52.115.140.0/22\",\r\n
+ \ \"52.115.144.0/20\",\r\n \"52.115.160.0/19\",\r\n \"52.115.192.0/19\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.64.0/19\",\r\n
+ \ \"52.120.96.0/19\",\r\n \"52.120.128.0/21\",\r\n \"52.120.136.0/21\",\r\n
+ \ \"52.120.144.0/21\",\r\n \"52.120.152.0/22\",\r\n \"52.120.156.0/24\",\r\n
+ \ \"52.120.157.0/24\",\r\n \"52.120.158.0/23\",\r\n \"52.120.160.0/19\",\r\n
+ \ \"52.120.192.0/20\",\r\n \"52.120.208.0/20\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.120.240.0/20\",\r\n \"52.121.0.0/21\",\r\n \"52.121.16.0/21\",\r\n
+ \ \"52.121.24.0/21\",\r\n \"52.121.32.0/22\",\r\n \"52.121.36.0/22\",\r\n
+ \ \"52.121.40.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.121.64.0/20\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.121.100.0/22\",\r\n
+ \ \"52.121.104.0/23\",\r\n \"52.121.106.0/23\",\r\n \"52.121.108.0/22\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.121.116.0/22\",\r\n \"52.121.120.0/23\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.121.128.0/20\",\r\n
+ \ \"52.121.144.0/21\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.123.0.0/24\",\r\n
+ \ \"52.123.1.0/24\",\r\n \"52.123.2.0/24\",\r\n \"52.123.3.0/24\",\r\n
+ \ \"52.123.4.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.125.128.0/22\",\r\n
+ \ \"52.125.132.0/22\",\r\n \"52.125.136.0/24\",\r\n \"52.125.137.0/24\",\r\n
+ \ \"52.125.138.0/23\",\r\n \"52.125.140.0/23\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.16.0/24\",\r\n
+ \ \"52.136.17.0/24\",\r\n \"52.136.18.0/24\",\r\n \"52.136.19.0/24\",\r\n
+ \ \"52.136.20.0/24\",\r\n \"52.136.21.0/24\",\r\n \"52.136.22.0/24\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.24.0/24\",\r\n \"52.136.25.0/24\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.29.0/24\",\r\n \"52.136.30.0/24\",\r\n \"52.136.31.0/24\",\r\n
+ \ \"52.136.32.0/19\",\r\n \"52.136.64.0/18\",\r\n \"52.136.128.0/18\",\r\n
+ \ \"52.136.192.0/18\",\r\n \"52.137.0.0/18\",\r\n \"52.137.64.0/18\",\r\n
+ \ \"52.137.128.0/17\",\r\n \"52.138.0.0/18\",\r\n \"52.138.64.0/20\",\r\n
+ \ \"52.138.80.0/21\",\r\n \"52.138.88.0/21\",\r\n \"52.138.96.0/19\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.139.0.0/18\",\r\n \"52.139.64.0/18\",\r\n
+ \ \"52.139.128.0/18\",\r\n \"52.139.192.0/18\",\r\n \"52.140.0.0/18\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.140.128.0/18\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.141.0.0/18\",\r\n \"52.141.64.0/18\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.141.192.0/19\",\r\n \"52.141.224.0/20\",\r\n \"52.141.240.0/20\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.142.64.0/18\",\r\n \"52.142.128.0/18\",\r\n
+ \ \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n \"52.143.64.0/18\",\r\n
+ \ \"52.143.128.0/18\",\r\n \"52.143.192.0/24\",\r\n \"52.143.193.0/24\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.195.0/24\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.197.0/24\",\r\n \"52.143.198.0/24\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.143.202.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.143.207.0/24\",\r\n
+ \ \"52.143.208.0/24\",\r\n \"52.143.209.0/24\",\r\n \"52.143.210.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.143.212.0/23\",\r\n \"52.143.214.0/24\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.143.218.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.143.221.0/24\",\r\n \"52.143.222.0/23\",\r\n
+ \ \"52.143.224.0/19\",\r\n \"52.146.0.0/17\",\r\n \"52.146.128.0/17\",\r\n
+ \ \"52.147.0.0/19\",\r\n \"52.147.32.0/19\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.147.96.0/19\",\r\n \"52.147.128.0/19\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.148.0.0/18\",\r\n \"52.148.64.0/18\",\r\n
+ \ \"52.148.128.0/18\",\r\n \"52.148.192.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.151.0.0/18\",\r\n \"52.151.64.0/18\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.0.0/17\",\r\n \"52.152.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.153.64.0/18\",\r\n \"52.153.128.0/18\",\r\n
+ \ \"52.153.192.0/18\",\r\n \"52.154.0.0/18\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.154.128.0/17\",\r\n \"52.155.0.0/19\",\r\n \"52.155.32.0/19\",\r\n
+ \ \"52.155.64.0/19\",\r\n \"52.155.96.0/19\",\r\n \"52.155.128.0/17\",\r\n
+ \ \"52.156.0.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.156.64.0/18\",\r\n
+ \ \"52.156.128.0/19\",\r\n \"52.156.160.0/19\",\r\n \"52.156.192.0/18\",\r\n
+ \ \"52.157.0.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.158.0.0/17\",\r\n \"52.158.128.0/19\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.176.0/20\",\r\n \"52.158.192.0/19\",\r\n \"52.158.224.0/19\",\r\n
+ \ \"52.159.0.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.159.128.0/17\",\r\n
+ \ \"52.160.0.0/16\",\r\n \"52.161.0.0/16\",\r\n \"52.162.0.0/16\",\r\n
+ \ \"52.163.0.0/16\",\r\n \"52.164.0.0/16\",\r\n \"52.165.0.0/19\",\r\n
+ \ \"52.165.32.0/20\",\r\n \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n
+ \ \"52.165.56.0/21\",\r\n \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n
+ \ \"52.165.104.0/25\",\r\n \"52.165.104.128/26\",\r\n \"52.165.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.167.0.0/16\",\r\n \"52.168.0.0/16\",\r\n
+ \ \"52.169.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.171.0.0/16\",\r\n
+ \ \"52.172.0.0/17\",\r\n \"52.172.128.0/17\",\r\n \"52.173.0.0/16\",\r\n
+ \ \"52.174.0.0/16\",\r\n \"52.175.0.0/17\",\r\n \"52.175.128.0/18\",\r\n
+ \ \"52.175.192.0/18\",\r\n \"52.176.0.0/17\",\r\n \"52.176.128.0/19\",\r\n
+ \ \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n \"52.176.192.0/19\",\r\n
+ \ \"52.176.224.0/24\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.177.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.178.128.0/17\",\r\n \"52.179.0.0/17\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.180.0.0/17\",\r\n \"52.180.128.0/19\",\r\n \"52.180.160.0/20\",\r\n
+ \ \"52.180.176.0/21\",\r\n \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n
+ \ \"52.180.185.0/24\",\r\n \"52.182.128.0/17\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.183.192.0/18\",\r\n \"52.184.0.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n \"52.184.168.80/28\",\r\n
+ \ \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n \"52.184.169.0/24\",\r\n
+ \ \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n \"52.184.192.0/18\",\r\n
+ \ \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n \"52.185.48.0/21\",\r\n
+ \ \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n \"52.185.56.96/28\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.64/27\",\r\n \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n
+ \ \"52.185.128.0/18\",\r\n \"52.185.192.0/18\",\r\n \"52.186.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.187.192.0/18\",\r\n
+ \ \"52.188.0.0/16\",\r\n \"52.189.0.0/17\",\r\n \"52.189.128.0/18\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.190.0.0/17\",\r\n \"52.190.128.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.128.0/18\",\r\n \"52.191.192.0/18\",\r\n
+ \ \"52.224.0.0/16\",\r\n \"52.225.0.0/17\",\r\n \"52.225.128.0/21\",\r\n
+ \ \"52.225.136.0/27\",\r\n \"52.225.136.32/28\",\r\n \"52.225.136.48/28\",\r\n
+ \ \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n \"52.225.144.0/20\",\r\n
+ \ \"52.225.160.0/19\",\r\n \"52.225.192.0/18\",\r\n \"52.226.0.0/16\",\r\n
+ \ \"52.228.0.0/17\",\r\n \"52.228.128.0/17\",\r\n \"52.229.0.0/18\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.229.128.0/17\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.230.128.0/17\",\r\n \"52.231.0.0/17\",\r\n \"52.231.128.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.128.0/21\",\r\n \"52.232.136.0/21\",\r\n
+ \ \"52.232.144.0/24\",\r\n \"52.232.145.0/24\",\r\n \"52.232.146.0/24\",\r\n
+ \ \"52.232.147.0/24\",\r\n \"52.232.148.0/24\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.232.151.0/24\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.232.153.0/24\",\r\n \"52.232.154.0/24\",\r\n \"52.232.155.0/24\",\r\n
+ \ \"52.232.156.0/24\",\r\n \"52.232.157.0/24\",\r\n \"52.232.158.0/24\",\r\n
+ \ \"52.232.159.0/24\",\r\n \"52.232.160.0/19\",\r\n \"52.232.192.0/18\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.233.64.0/18\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.234.128.0/17\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.235.64.0/18\",\r\n \"52.236.0.0/17\",\r\n \"52.236.128.0/17\",\r\n
+ \ \"52.237.0.0/18\",\r\n \"52.237.64.0/18\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.238.0.0/18\",\r\n \"52.238.192.0/18\",\r\n
+ \ \"52.239.0.0/17\",\r\n \"52.239.128.0/24\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.132.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.135.0/26\",\r\n \"52.239.135.64/26\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.136.0/22\",\r\n \"52.239.140.0/22\",\r\n
+ \ \"52.239.144.0/23\",\r\n \"52.239.146.0/23\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.148.64/26\",\r\n \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n
+ \ \"52.239.150.0/23\",\r\n \"52.239.152.0/22\",\r\n \"52.239.156.0/24\",\r\n
+ \ \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n
+ \ \"52.239.157.224/27\",\r\n \"52.239.158.0/23\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.164.0/25\",\r\n \"52.239.164.128/26\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/22\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.177.0/27\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.184.224/27\",\r\n
+ \ \"52.239.185.0/28\",\r\n \"52.239.185.32/27\",\r\n \"52.239.186.0/24\",\r\n
+ \ \"52.239.187.0/25\",\r\n \"52.239.187.128/25\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.239.190.0/25\",\r\n \"52.239.190.128/26\",\r\n
+ \ \"52.239.190.192/26\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.128/27\",\r\n \"52.239.192.160/27\",\r\n
+ \ \"52.239.192.192/26\",\r\n \"52.239.193.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.196.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.128/27\",\r\n \"52.239.198.192/26\",\r\n
+ \ \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n \"52.239.202.0/24\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.205.0/24\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.207.192/26\",\r\n \"52.239.208.0/23\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.212.0/23\",\r\n \"52.239.214.0/23\",\r\n \"52.239.216.0/23\",\r\n
+ \ \"52.239.218.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"52.239.225.0/24\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.228.0/23\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.239.232.0/25\",\r\n \"52.239.232.128/25\",\r\n
+ \ \"52.239.233.0/25\",\r\n \"52.239.233.128/25\",\r\n \"52.239.234.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.239.238.0/24\",\r\n \"52.239.239.0/24\",\r\n
+ \ \"52.239.240.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.248.0/24\",\r\n
+ \ \"52.239.249.0/24\",\r\n \"52.239.250.0/24\",\r\n \"52.239.251.0/24\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.239.253.0/24\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.240.0.0/17\",\r\n \"52.240.128.0/17\",\r\n \"52.241.0.0/16\",\r\n
+ \ \"52.242.0.0/18\",\r\n \"52.242.64.0/18\",\r\n \"52.242.128.0/17\",\r\n
+ \ \"52.243.32.0/19\",\r\n \"52.243.64.0/18\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.12.0/22\",\r\n \"52.245.16.0/22\",\r\n \"52.245.20.0/22\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.245.28.0/22\",\r\n \"52.245.32.0/22\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.245.40.0/22\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.144/28\",\r\n
+ \ \"52.245.45.160/27\",\r\n \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n
+ \ \"52.245.46.32/28\",\r\n \"52.245.46.48/28\",\r\n \"52.245.46.64/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.245.46.112/28\",\r\n
+ \ \"52.245.46.128/28\",\r\n \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n
+ \ \"52.245.48.0/22\",\r\n \"52.245.52.0/22\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.245.60.0/22\",\r\n \"52.245.64.0/22\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.0/27\",\r\n \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n
+ \ \"52.245.69.96/28\",\r\n \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n
+ \ \"52.245.69.192/26\",\r\n \"52.245.70.0/23\",\r\n \"52.245.72.0/22\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.245.80.0/22\",\r\n \"52.245.84.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"52.245.92.0/22\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.245.100.0/22\",\r\n \"52.245.104.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.245.112.0/22\",\r\n \"52.245.116.0/22\",\r\n \"52.245.120.0/22\",\r\n
+ \ \"52.245.124.0/22\",\r\n \"52.246.0.0/17\",\r\n \"52.246.128.0/20\",\r\n
+ \ \"52.246.152.0/21\",\r\n \"52.246.160.0/19\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.0.0/17\",\r\n \"52.247.192.0/18\",\r\n \"52.248.0.0/17\",\r\n
+ \ \"52.248.128.0/17\",\r\n \"52.249.0.0/18\",\r\n \"52.249.64.0/19\",\r\n
+ \ \"52.249.128.0/17\",\r\n \"52.250.0.0/17\",\r\n \"52.250.128.0/18\",\r\n
+ \ \"52.250.192.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.252.128.0/17\",\r\n \"52.253.0.0/18\",\r\n \"52.253.64.0/20\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"52.253.96.0/19\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"52.253.148.0/23\",\r\n \"52.253.150.0/23\",\r\n \"52.253.152.0/23\",\r\n
+ \ \"52.253.154.0/23\",\r\n \"52.253.156.0/22\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"52.253.162.0/23\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.166.0/24\",\r\n \"52.253.167.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.169.0/24\",\r\n \"52.253.170.0/23\",\r\n \"52.253.172.0/24\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"52.253.175.0/24\",\r\n
+ \ \"52.253.176.0/24\",\r\n \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n
+ \ \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n \"52.253.181.0/24\",\r\n
+ \ \"52.253.185.0/24\",\r\n \"52.253.186.0/24\",\r\n \"52.253.191.0/24\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"52.253.197.0/24\",\r\n \"52.253.224.0/21\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n
+ \ \"52.254.96.0/20\",\r\n \"52.254.112.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"52.255.0.0/19\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"52.255.128.0/17\",\r\n \"64.4.8.0/24\",\r\n
+ \ \"64.4.54.0/24\",\r\n \"65.52.0.0/19\",\r\n \"65.52.32.0/21\",\r\n
+ \ \"65.52.48.0/20\",\r\n \"65.52.64.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.52.111.0/24\",\r\n \"65.52.112.0/20\",\r\n \"65.52.128.0/19\",\r\n
+ \ \"65.52.160.0/19\",\r\n \"65.52.192.0/19\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"65.52.232.0/21\",\r\n \"65.52.240.0/21\",\r\n \"65.52.248.0/21\",\r\n
+ \ \"65.54.19.128/27\",\r\n \"65.54.55.160/27\",\r\n \"65.54.55.224/27\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n
+ \ \"65.55.44.64/27\",\r\n \"65.55.44.96/28\",\r\n \"65.55.44.112/28\",\r\n
+ \ \"65.55.44.128/27\",\r\n \"65.55.51.0/24\",\r\n \"65.55.60.176/29\",\r\n
+ \ \"65.55.60.188/30\",\r\n \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.105.192/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.106.192/28\",\r\n \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n
+ \ \"65.55.106.240/28\",\r\n \"65.55.107.0/28\",\r\n \"65.55.107.48/28\",\r\n
+ \ \"65.55.107.64/27\",\r\n \"65.55.107.96/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.109.0/24\",\r\n \"65.55.110.0/24\",\r\n \"65.55.120.0/24\",\r\n
+ \ \"65.55.144.0/23\",\r\n \"65.55.146.0/24\",\r\n \"65.55.207.0/24\",\r\n
+ \ \"65.55.209.0/25\",\r\n \"65.55.209.128/26\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.211.0/27\",\r\n \"65.55.211.32/27\",\r\n
+ \ \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n \"65.55.213.0/27\",\r\n
+ \ \"65.55.213.64/26\",\r\n \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n
+ \ \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.64/26\",\r\n \"65.55.219.128/25\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.12.0/32\",\r\n \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n
+ \ \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n \"70.37.160.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"102.37.0.0/20\",\r\n
+ \ \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n \"102.37.26.0/27\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.72.0/21\",\r\n \"102.37.80.0/21\",\r\n \"102.37.96.0/19\",\r\n
+ \ \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n \"102.37.192.0/18\",\r\n
+ \ \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n \"102.133.96.0/20\",\r\n
+ \ \"102.133.112.0/28\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.40.128.0/17\",\r\n \"104.41.0.0/18\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.128.0/19\",\r\n \"104.41.160.0/19\",\r\n \"104.41.192.0/18\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.43.0.0/17\",\r\n \"104.43.128.0/17\",\r\n
+ \ \"104.44.88.0/27\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.64/27\",\r\n
+ \ \"104.44.88.96/27\",\r\n \"104.44.88.128/27\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.88.192/27\",\r\n \"104.44.88.224/27\",\r\n \"104.44.89.0/27\",\r\n
+ \ \"104.44.89.32/27\",\r\n \"104.44.89.64/27\",\r\n \"104.44.89.96/27\",\r\n
+ \ \"104.44.89.128/27\",\r\n \"104.44.89.160/27\",\r\n \"104.44.89.192/27\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"104.44.90.0/27\",\r\n \"104.44.90.32/27\",\r\n
+ \ \"104.44.90.64/26\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.90.224/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.91.64/27\",\r\n \"104.44.91.96/27\",\r\n
+ \ \"104.44.91.128/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.91.192/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.92.0/27\",\r\n \"104.44.92.32/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.92.96/27\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.92.160/27\",\r\n \"104.44.92.192/27\",\r\n \"104.44.92.224/27\",\r\n
+ \ \"104.44.93.0/27\",\r\n \"104.44.93.32/27\",\r\n \"104.44.93.64/27\",\r\n
+ \ \"104.44.93.96/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.93.160/27\",\r\n
+ \ \"104.44.93.192/27\",\r\n \"104.44.93.224/27\",\r\n \"104.44.94.0/28\",\r\n
+ \ \"104.44.94.16/28\",\r\n \"104.44.94.32/28\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.44.94.64/28\",\r\n \"104.44.94.80/28\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.44.94.112/28\",\r\n \"104.44.94.128/28\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.94.160/27\",\r\n \"104.44.94.192/28\",\r\n \"104.44.94.208/28\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"104.44.95.0/28\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"104.44.95.32/28\",\r\n \"104.44.95.48/28\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.44.95.112/28\",\r\n
+ \ \"104.44.95.128/27\",\r\n \"104.44.95.160/27\",\r\n \"104.44.95.192/28\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"104.44.95.224/28\",\r\n \"104.44.95.240/28\",\r\n
+ \ \"104.44.128.0/18\",\r\n \"104.45.0.0/18\",\r\n \"104.45.64.0/20\",\r\n
+ \ \"104.45.80.0/20\",\r\n \"104.45.96.0/19\",\r\n \"104.45.128.0/18\",\r\n
+ \ \"104.45.192.0/20\",\r\n \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.8.0/21\",\r\n \"104.46.24.0/22\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.46.32.0/19\",\r\n \"104.46.64.0/19\",\r\n \"104.46.96.0/19\",\r\n
+ \ \"104.46.160.0/19\",\r\n \"104.46.192.0/20\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.47.128.0/18\",\r\n \"104.47.200.0/21\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.47.210.0/23\",\r\n \"104.47.212.0/23\",\r\n
+ \ \"104.47.214.0/23\",\r\n \"104.47.216.64/26\",\r\n \"104.47.218.0/23\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"104.47.224.0/20\",\r\n \"104.208.0.0/19\",\r\n
+ \ \"104.208.32.0/20\",\r\n \"104.208.48.0/20\",\r\n \"104.208.64.0/18\",\r\n
+ \ \"104.208.128.0/17\",\r\n \"104.209.0.0/18\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.209.128.0/17\",\r\n \"104.210.0.0/20\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"104.210.64.0/18\",\r\n \"104.210.128.0/19\",\r\n
+ \ \"104.210.176.0/20\",\r\n \"104.210.192.0/19\",\r\n \"104.211.0.0/18\",\r\n
+ \ \"104.211.64.0/18\",\r\n \"104.211.128.0/18\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"104.214.0.0/17\",\r\n \"104.214.128.0/19\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"104.214.192.0/18\",\r\n \"104.215.0.0/18\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"104.215.128.0/17\",\r\n \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n
+ \ \"111.221.78.0/23\",\r\n \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n
+ \ \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n \"131.253.12.48/29\",\r\n
+ \ \"131.253.12.160/28\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.192/28\",\r\n
+ \ \"131.253.12.208/28\",\r\n \"131.253.12.224/30\",\r\n \"131.253.12.228/30\",\r\n
+ \ \"131.253.12.248/29\",\r\n \"131.253.13.0/28\",\r\n \"131.253.13.16/29\",\r\n
+ \ \"131.253.13.24/29\",\r\n \"131.253.13.32/28\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.96/30\",\r\n \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.32/27\",\r\n \"131.253.14.64/29\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.160/27\",\r\n
+ \ \"131.253.14.192/29\",\r\n \"131.253.14.208/28\",\r\n \"131.253.14.224/28\",\r\n
+ \ \"131.253.14.248/29\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.15.32/27\",\r\n \"131.253.15.192/28\",\r\n \"131.253.15.208/28\",\r\n
+ \ \"131.253.15.224/27\",\r\n \"131.253.24.0/28\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.24.192/26\",\r\n \"131.253.25.0/24\",\r\n \"131.253.27.0/24\",\r\n
+ \ \"131.253.34.224/27\",\r\n \"131.253.35.128/26\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"131.253.36.128/26\",\r\n \"131.253.36.224/27\",\r\n \"131.253.38.0/27\",\r\n
+ \ \"131.253.38.32/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.38.224/27\",\r\n
+ \ \"131.253.40.0/28\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.48/29\",\r\n \"131.253.40.64/28\",\r\n \"131.253.40.80/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.128/27\",\r\n \"131.253.40.160/28\",\r\n
+ \ \"131.253.40.192/26\",\r\n \"131.253.41.0/24\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"134.170.220.0/23\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n \"137.116.96.0/22\",\r\n
+ \ \"137.116.112.0/20\",\r\n \"137.116.128.0/19\",\r\n \"137.116.160.0/20\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"137.116.184.0/21\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.117.0.0/19\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.117.128.0/17\",\r\n \"137.135.0.0/18\",\r\n
+ \ \"137.135.64.0/18\",\r\n \"137.135.128.0/17\",\r\n \"138.91.0.0/20\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"138.91.32.0/20\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"138.91.64.0/19\",\r\n \"138.91.96.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.55.2.128/26\",\r\n \"157.55.3.0/24\",\r\n \"157.55.7.128/26\",\r\n
+ \ \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n \"157.55.10.160/29\",\r\n
+ \ \"157.55.10.176/28\",\r\n \"157.55.10.192/26\",\r\n \"157.55.11.128/25\",\r\n
+ \ \"157.55.12.64/26\",\r\n \"157.55.12.128/26\",\r\n \"157.55.13.64/26\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.24.0/21\",\r\n \"157.55.37.0/24\",\r\n
+ \ \"157.55.38.0/24\",\r\n \"157.55.39.0/24\",\r\n \"157.55.48.0/24\",\r\n
+ \ \"157.55.50.0/25\",\r\n \"157.55.51.224/28\",\r\n \"157.55.55.0/27\",\r\n
+ \ \"157.55.55.32/28\",\r\n \"157.55.55.100/30\",\r\n \"157.55.55.104/29\",\r\n
+ \ \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n
+ \ \"157.55.55.216/29\",\r\n \"157.55.55.228/30\",\r\n \"157.55.55.232/29\",\r\n
+ \ \"157.55.55.240/28\",\r\n \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n
+ \ \"157.55.80.0/21\",\r\n \"157.55.103.32/27\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"157.55.106.0/26\",\r\n \"157.55.106.128/25\",\r\n \"157.55.107.0/24\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n
+ \ \"157.55.136.0/21\",\r\n \"157.55.151.0/28\",\r\n \"157.55.153.224/28\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.55.160.0/20\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"157.55.204.128/25\",\r\n \"157.55.208.0/21\",\r\n \"157.55.248.0/21\",\r\n
+ \ \"157.56.2.0/25\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"157.56.3.128/25\",\r\n \"157.56.8.0/21\",\r\n \"157.56.19.224/27\",\r\n
+ \ \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.80.0/25\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"157.56.160.0/21\",\r\n \"157.56.176.0/21\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.0.0/19\",\r\n \"168.61.32.0/20\",\r\n
+ \ \"168.61.48.0/21\",\r\n \"168.61.56.0/21\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.61.128.0/25\",\r\n
+ \ \"168.61.128.128/28\",\r\n \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n
+ \ \"168.61.129.224/27\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.61.136.0/21\",\r\n \"168.61.144.0/20\",\r\n \"168.61.160.0/19\",\r\n
+ \ \"168.61.208.0/20\",\r\n \"168.62.0.0/19\",\r\n \"168.62.32.0/19\",\r\n
+ \ \"168.62.64.0/19\",\r\n \"168.62.96.0/19\",\r\n \"168.62.128.0/19\",\r\n
+ \ \"168.62.160.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.62.224.0/19\",\r\n
+ \ \"168.63.0.0/19\",\r\n \"168.63.32.0/19\",\r\n \"168.63.64.0/20\",\r\n
+ \ \"168.63.80.0/21\",\r\n \"168.63.88.0/23\",\r\n \"168.63.90.0/24\",\r\n
+ \ \"168.63.91.0/26\",\r\n \"168.63.92.0/22\",\r\n \"168.63.96.0/19\",\r\n
+ \ \"168.63.128.0/24\",\r\n \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n
+ \ \"168.63.129.64/26\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n
+ \ \"168.63.132.0/22\",\r\n \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n
+ \ \"168.63.152.0/22\",\r\n \"168.63.156.0/24\",\r\n \"168.63.160.0/19\",\r\n
+ \ \"168.63.192.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.232.16.0/21\",\r\n
+ \ \"191.232.32.0/19\",\r\n \"191.232.138.0/23\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.8.0/21\",\r\n \"191.233.16.0/20\",\r\n \"191.233.32.0/20\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.64.0/18\",\r\n \"191.233.128.0/20\",\r\n
+ \ \"191.233.144.0/20\",\r\n \"191.233.160.0/19\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.235.32.0/19\",\r\n \"191.235.64.0/18\",\r\n \"191.235.128.0/18\",\r\n
+ \ \"191.235.192.0/22\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.0/24\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.236.64.0/18\",\r\n \"191.236.128.0/18\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.237.128.0/18\",\r\n
+ \ \"191.237.192.0/23\",\r\n \"191.237.194.0/24\",\r\n \"191.237.195.0/24\",\r\n
+ \ \"191.237.196.0/24\",\r\n \"191.237.200.0/21\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"191.237.232.0/22\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.237.238.0/24\",\r\n \"191.237.240.0/23\",\r\n \"191.237.248.0/21\",\r\n
+ \ \"191.238.0.0/18\",\r\n \"191.238.64.0/23\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.70.0/23\",\r\n \"191.238.72.0/21\",\r\n
+ \ \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n \"191.238.92.0/23\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.238.128.0/21\",\r\n \"191.238.144.0/20\",\r\n
+ \ \"191.238.160.0/19\",\r\n \"191.238.192.0/19\",\r\n \"191.238.224.0/19\",\r\n
+ \ \"191.239.0.0/18\",\r\n \"191.239.64.0/19\",\r\n \"191.239.96.0/20\",\r\n
+ \ \"191.239.112.0/20\",\r\n \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"191.239.204.0/22\",\r\n \"191.239.208.0/20\",\r\n
+ \ \"191.239.224.0/20\",\r\n \"191.239.240.0/20\",\r\n \"193.149.64.0/21\",\r\n
+ \ \"193.149.72.0/21\",\r\n \"193.149.80.0/21\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"198.180.96.0/25\",\r\n \"198.180.97.0/24\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.24.0/23\",\r\n \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n
+ \ \"199.30.27.160/27\",\r\n \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n
+ \ \"199.30.29.0/24\",\r\n \"199.30.31.0/25\",\r\n \"199.30.31.192/26\",\r\n
+ \ \"204.79.180.0/24\",\r\n \"204.231.197.0/24\",\r\n \"207.46.13.0/24\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n
+ \ \"207.46.198.128/25\",\r\n \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n
+ \ \"207.46.202.128/28\",\r\n \"207.46.205.0/24\",\r\n \"207.46.224.0/20\",\r\n
+ \ \"207.68.174.40/29\",\r\n \"207.68.174.48/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"207.68.174.192/28\",\r\n \"207.68.174.208/28\",\r\n \"209.240.212.0/23\",\r\n
+ \ \"213.199.128.0/20\",\r\n \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n
+ \ \"213.199.180.192/27\",\r\n \"213.199.183.0/24\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200::/59\",\r\n \"2603:1007:200:20::/59\",\r\n
+ \ \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n \"2603:1010:6::/48\",\r\n
+ \ \"2603:1010:100::/40\",\r\n \"2603:1010:200::/47\",\r\n
+ \ \"2603:1010:202::/48\",\r\n \"2603:1010:204::/48\",\r\n
+ \ \"2603:1010:205::/48\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1010:400::/47\",\r\n \"2603:1010:403::/48\",\r\n
+ \ \"2603:1010:404::/48\",\r\n \"2603:1016:1400::/59\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:1400:40::/59\",\r\n
+ \ \"2603:1016:1400:60::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2401::/48\",\r\n \"2603:1016:2402::/48\",\r\n
+ \ \"2603:1016:2403::/48\",\r\n \"2603:1016:2500::/64\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1016:2500:8::/64\",\r\n
+ \ \"2603:1016:2500:c::/64\",\r\n \"2603:1017::/59\",\r\n
+ \ \"2603:1017:0:20::/59\",\r\n \"2603:1017:0:40::/59\",\r\n
+ \ \"2603:1017:0:60::/59\",\r\n \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n
+ \ \"2603:1020:4::/48\",\r\n \"2603:1020:5::/48\",\r\n \"2603:1020:200::/46\",\r\n
+ \ \"2603:1020:205::/48\",\r\n \"2603:1020:206::/48\",\r\n
+ \ \"2603:1020:300::/47\",\r\n \"2603:1020:302::/48\",\r\n
+ \ \"2603:1020:304::/48\",\r\n \"2603:1020:305::/48\",\r\n
+ \ \"2603:1020:400::/47\",\r\n \"2603:1020:402::/48\",\r\n
+ \ \"2603:1020:404::/48\",\r\n \"2603:1020:405::/48\",\r\n
+ \ \"2603:1020:500::/47\",\r\n \"2603:1020:503::/48\",\r\n
+ \ \"2603:1020:504::/48\",\r\n \"2603:1020:600::/47\",\r\n
+ \ \"2603:1020:602::/48\",\r\n \"2603:1020:604::/48\",\r\n
+ \ \"2603:1020:605::/48\",\r\n \"2603:1020:700::/47\",\r\n
+ \ \"2603:1020:702::/48\",\r\n \"2603:1020:704::/48\",\r\n
+ \ \"2603:1020:705::/48\",\r\n \"2603:1020:800::/47\",\r\n
+ \ \"2603:1020:802::/48\",\r\n \"2603:1020:804::/48\",\r\n
+ \ \"2603:1020:805::/48\",\r\n \"2603:1020:900::/47\",\r\n
+ \ \"2603:1020:902::/48\",\r\n \"2603:1020:904::/48\",\r\n
+ \ \"2603:1020:905::/48\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1020:b00::/47\",\r\n \"2603:1020:b03::/48\",\r\n
+ \ \"2603:1020:b04::/48\",\r\n \"2603:1020:c00::/47\",\r\n
+ \ \"2603:1020:c03::/48\",\r\n \"2603:1020:c04::/48\",\r\n
+ \ \"2603:1020:d00::/47\",\r\n \"2603:1020:d03::/48\",\r\n
+ \ \"2603:1020:d04::/48\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1020:f00::/47\",\r\n \"2603:1020:f03::/48\",\r\n
+ \ \"2603:1020:f04::/48\",\r\n \"2603:1026:2400::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2404::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2407::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:240c::/48\",\r\n
+ \ \"2603:1026:240d::/48\",\r\n \"2603:1026:240e::/48\",\r\n
+ \ \"2603:1026:240f::/48\",\r\n \"2603:1026:2411::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:2500:10::/64\",\r\n \"2603:1026:2500:14::/64\",\r\n
+ \ \"2603:1026:2500:18::/64\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:2500:20::/64\",\r\n \"2603:1026:2500:24::/64\",\r\n
+ \ \"2603:1026:2500:28::/64\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:40::/59\",\r\n \"2603:1026:3000:60::/59\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1026:3000:e0::/59\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1026:3000:120::/59\",\r\n
+ \ \"2603:1026:3000:140::/59\",\r\n \"2603:1026:3000:160::/59\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1026:3000:1a0::/59\",\r\n
+ \ \"2603:1026:3000:1c0::/59\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:40::/59\",\r\n
+ \ \"2603:1027:1:60::/59\",\r\n \"2603:1027:1:80::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2603:1027:1:e0::/59\",\r\n \"2603:1027:1:100::/59\",\r\n
+ \ \"2603:1027:1:120::/59\",\r\n \"2603:1027:1:140::/59\",\r\n
+ \ \"2603:1027:1:160::/59\",\r\n \"2603:1027:1:180::/59\",\r\n
+ \ \"2603:1027:1:1a0::/59\",\r\n \"2603:1027:1:1c0::/59\",\r\n
+ \ \"2603:1027:1:200::/59\",\r\n \"2603:1027:1:220::/59\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n
+ \ \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:17::/64\",\r\n \"2603:1030:9:18::/61\",\r\n
+ \ \"2603:1030:9:20::/59\",\r\n \"2603:1030:9:40::/58\",\r\n
+ \ \"2603:1030:9:80::/59\",\r\n \"2603:1030:9:a0::/60\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b3::/64\",\r\n \"2603:1030:9:b4::/63\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:10d::/64\",\r\n \"2603:1030:9:10e::/63\",\r\n
+ \ \"2603:1030:9:110::/64\",\r\n \"2603:1030:9:111::/64\",\r\n
+ \ \"2603:1030:9:112::/63\",\r\n \"2603:1030:9:114::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:118::/62\",\r\n \"2603:1030:9:11c::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12c::/63\",\r\n \"2603:1030:9:12e::/64\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1030:10::/48\",\r\n \"2603:1030:208::/47\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:20c::/47\",\r\n
+ \ \"2603:1030:20e::/48\",\r\n \"2603:1030:210::/47\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:2::/63\",\r\n \"2603:1030:401:4::/62\",\r\n
+ \ \"2603:1030:401:8::/61\",\r\n \"2603:1030:401:10::/62\",\r\n
+ \ \"2603:1030:401:14::/63\",\r\n \"2603:1030:401:16::/64\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:59::/64\",\r\n \"2603:1030:401:5a::/63\",\r\n
+ \ \"2603:1030:401:5c::/62\",\r\n \"2603:1030:401:60::/59\",\r\n
+ \ \"2603:1030:401:80::/62\",\r\n \"2603:1030:401:84::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:87::/64\",\r\n \"2603:1030:401:88::/62\",\r\n
+ \ \"2603:1030:401:8c::/63\",\r\n \"2603:1030:401:8e::/64\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:92::/63\",\r\n \"2603:1030:401:94::/62\",\r\n
+ \ \"2603:1030:401:98::/61\",\r\n \"2603:1030:401:a0::/62\",\r\n
+ \ \"2603:1030:401:a4::/63\",\r\n \"2603:1030:401:a6::/64\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:121::/64\",\r\n \"2603:1030:401:122::/63\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:136::/63\",\r\n \"2603:1030:401:138::/64\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:13c::/62\",\r\n \"2603:1030:401:140::/63\",\r\n
+ \ \"2603:1030:401:142::/64\",\r\n \"2603:1030:401:143::/64\",\r\n
+ \ \"2603:1030:401:144::/63\",\r\n \"2603:1030:401:146::/63\",\r\n
+ \ \"2603:1030:401:148::/63\",\r\n \"2603:1030:401:14a::/63\",\r\n
+ \ \"2603:1030:401:14c::/62\",\r\n \"2603:1030:401:150::/62\",\r\n
+ \ \"2603:1030:401:154::/63\",\r\n \"2603:1030:401:156::/63\",\r\n
+ \ \"2603:1030:401:158::/64\",\r\n \"2603:1030:401:159::/64\",\r\n
+ \ \"2603:1030:401:15a::/63\",\r\n \"2603:1030:401:15c::/62\",\r\n
+ \ \"2603:1030:401:160::/61\",\r\n \"2603:1030:401:168::/63\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:16d::/64\",\r\n \"2603:1030:401:16e::/63\",\r\n
+ \ \"2603:1030:401:170::/61\",\r\n \"2603:1030:401:178::/62\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:406::/47\",\r\n \"2603:1030:408::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:1::/64\",\r\n \"2603:1030:40a:2::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40c::/48\",\r\n \"2603:1030:40d::/60\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1030:600::/46\",\r\n
+ \ \"2603:1030:604::/47\",\r\n \"2603:1030:607::/48\",\r\n
+ \ \"2603:1030:608::/48\",\r\n \"2603:1030:800::/48\",\r\n
+ \ \"2603:1030:802::/47\",\r\n \"2603:1030:804::/58\",\r\n
+ \ \"2603:1030:804:40::/60\",\r\n \"2603:1030:804:53::/64\",\r\n
+ \ \"2603:1030:804:54::/64\",\r\n \"2603:1030:804:5b::/64\",\r\n
+ \ \"2603:1030:804:5c::/62\",\r\n \"2603:1030:804:60::/62\",\r\n
+ \ \"2603:1030:804:67::/64\",\r\n \"2603:1030:804:68::/61\",\r\n
+ \ \"2603:1030:804:70::/60\",\r\n \"2603:1030:804:80::/59\",\r\n
+ \ \"2603:1030:804:a0::/62\",\r\n \"2603:1030:804:a4::/64\",\r\n
+ \ \"2603:1030:804:a6::/63\",\r\n \"2603:1030:804:a8::/61\",\r\n
+ \ \"2603:1030:804:b0::/62\",\r\n \"2603:1030:804:b4::/64\",\r\n
+ \ \"2603:1030:804:b6::/63\",\r\n \"2603:1030:804:b8::/61\",\r\n
+ \ \"2603:1030:804:c0::/61\",\r\n \"2603:1030:804:c8::/62\",\r\n
+ \ \"2603:1030:804:cc::/63\",\r\n \"2603:1030:804:d2::/63\",\r\n
+ \ \"2603:1030:804:d4::/62\",\r\n \"2603:1030:804:d8::/61\",\r\n
+ \ \"2603:1030:804:e0::/59\",\r\n \"2603:1030:804:100::/61\",\r\n
+ \ \"2603:1030:804:108::/62\",\r\n \"2603:1030:805::/48\",\r\n
+ \ \"2603:1030:806::/48\",\r\n \"2603:1030:807::/48\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1030:b00::/47\",\r\n
+ \ \"2603:1030:b03::/48\",\r\n \"2603:1030:b04::/48\",\r\n
+ \ \"2603:1030:b05::/48\",\r\n \"2603:1030:c00::/48\",\r\n
+ \ \"2603:1030:c02::/47\",\r\n \"2603:1030:c04::/48\",\r\n
+ \ \"2603:1030:c05::/48\",\r\n \"2603:1030:c06::/48\",\r\n
+ \ \"2603:1030:c07::/48\",\r\n \"2603:1030:d00::/48\",\r\n
+ \ \"2603:1030:e01:2::/64\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:903::/64\",\r\n
+ \ \"2603:1036:903:1::/64\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:9ff:ffff::/64\",\r\n
+ \ \"2603:1036:d20::/64\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2400::/48\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2402::/48\",\r\n \"2603:1036:2403::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2408::/48\",\r\n \"2603:1036:2409::/48\",\r\n
+ \ \"2603:1036:240a::/48\",\r\n \"2603:1036:240d::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:2500:4::/64\",\r\n
+ \ \"2603:1036:2500:8::/64\",\r\n \"2603:1036:2500:10::/64\",\r\n
+ \ \"2603:1036:2500:14::/64\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:2500:24::/64\",\r\n
+ \ \"2603:1036:2500:2c::/64\",\r\n \"2603:1036:2500:30::/64\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1036:3000:20::/59\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1036:3000:100::/59\",\r\n
+ \ \"2603:1036:3000:120::/59\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1036:3000:1c0::/59\",\r\n \"2603:1037:1::/59\",\r\n
+ \ \"2603:1037:1:20::/59\",\r\n \"2603:1037:1:40::/59\",\r\n
+ \ \"2603:1037:1:60::/59\",\r\n \"2603:1037:1:80::/59\",\r\n
+ \ \"2603:1037:1:c0::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2603:1037:1:140::/59\",\r\n
+ \ \"2603:1037:1:160::/59\",\r\n \"2603:1037:1:180::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2603:1039:205::/48\",\r\n
+ \ \"2603:1040::/47\",\r\n \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n
+ \ \"2603:1040:5::/48\",\r\n \"2603:1040:200::/46\",\r\n \"2603:1040:204::/48\",\r\n
+ \ \"2603:1040:206::/48\",\r\n \"2603:1040:207::/48\",\r\n
+ \ \"2603:1040:400::/46\",\r\n \"2603:1040:404::/48\",\r\n
+ \ \"2603:1040:406::/48\",\r\n \"2603:1040:407::/48\",\r\n
+ \ \"2603:1040:600::/46\",\r\n \"2603:1040:605::/48\",\r\n
+ \ \"2603:1040:606::/48\",\r\n \"2603:1040:800::/46\",\r\n
+ \ \"2603:1040:805::/48\",\r\n \"2603:1040:806::/48\",\r\n
+ \ \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1040:a00::/46\",\r\n
+ \ \"2603:1040:a05::/48\",\r\n \"2603:1040:a06::/48\",\r\n
+ \ \"2603:1040:b00::/47\",\r\n \"2603:1040:b03::/48\",\r\n
+ \ \"2603:1040:b04::/48\",\r\n \"2603:1040:c00::/46\",\r\n
+ \ \"2603:1040:c05::/48\",\r\n \"2603:1040:c06::/48\",\r\n
+ \ \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1400::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1402::/48\",\r\n \"2603:1046:1403::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1405::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1408::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500::/64\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:1500:8::/64\",\r\n
+ \ \"2603:1046:1500:14::/64\",\r\n \"2603:1046:1500:18::/64\",\r\n
+ \ \"2603:1046:1500:1c::/64\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:20::/59\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1046:2000:60::/59\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1046:2000:c0::/59\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1046:2000:180::/59\",\r\n
+ \ \"2603:1047:1:20::/59\",\r\n \"2603:1047:1:40::/59\",\r\n
+ \ \"2603:1047:1:60::/59\",\r\n \"2603:1047:1:80::/59\",\r\n
+ \ \"2603:1047:1:a0::/59\",\r\n \"2603:1047:1:c0::/59\",\r\n
+ \ \"2603:1047:1:e0::/59\",\r\n \"2603:1047:1:100::/59\",\r\n
+ \ \"2603:1047:1:120::/59\",\r\n \"2603:1047:1:140::/59\",\r\n
+ \ \"2603:1047:1:160::/59\",\r\n \"2603:1047:1:180::/59\",\r\n
+ \ \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n \"2603:1050:5::/48\",\r\n
+ \ \"2603:1050:6::/48\",\r\n \"2603:1050:100::/40\",\r\n \"2603:1050:211::/48\",\r\n
+ \ \"2603:1050:300::/40\",\r\n \"2603:1050:400::/48\",\r\n
+ \ \"2603:1050:402::/48\",\r\n \"2603:1050:403::/48\",\r\n
+ \ \"2603:1056:1400::/48\",\r\n \"2603:1056:1401::/48\",\r\n
+ \ \"2603:1056:1402::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:1500:4::/64\",\r\n
+ \ \"2603:1056:2000:20::/59\",\r\n \"2603:1056:2000:40::/59\",\r\n
+ \ \"2603:1056:2000:60::/59\",\r\n \"2603:1057:2:20::/59\",\r\n
+ \ \"2603:1057:2:40::/59\",\r\n \"2603:1057:2:60::/59\",\r\n
+ \ \"2603:1061:1002::/48\",\r\n \"2a01:111:f100:1000::/62\",\r\n
+ \ \"2a01:111:f100:1004::/63\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f100:3000::/52\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f100:6000::/64\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\",\r\n \"2a01:111:f403:c000::/64\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c100::/64\",\r\n
+ \ \"2a01:111:f403:c10c::/62\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:c804::/62\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d004::/62\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:d804::/62\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f000::/64\",\r\n
+ \ \"2a01:111:f403:f800::/62\",\r\n \"2a01:111:f403:f804::/62\",\r\n
+ \ \"2a01:111:f403:f900::/62\",\r\n \"2a01:111:f403:f904::/62\",\r\n
+ \ \"2a01:111:f403:f908::/62\",\r\n \"2a01:111:f403:f90c::/62\",\r\n
+ \ \"2a01:111:f403:f910::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.australiacentral\",\r\n \"id\":
+ \"AzureCloud.australiacentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.155.128/26\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"20.36.32.0/19\",\r\n \"20.36.104.0/21\",\r\n \"20.37.0.0/18\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.184.0/22\",\r\n \"20.39.64.0/21\",\r\n
+ \ \"20.47.35.0/24\",\r\n \"20.53.0.0/19\",\r\n \"20.53.48.0/21\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.135.52.0/23\",\r\n \"20.150.124.0/24\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.190.189.64/26\",\r\n \"40.82.8.0/22\",\r\n
+ \ \"40.82.240.0/22\",\r\n \"40.90.130.48/28\",\r\n \"40.90.142.96/27\",\r\n
+ \ \"40.90.149.64/27\",\r\n \"40.126.61.64/26\",\r\n \"52.108.74.0/24\",\r\n
+ \ \"52.108.95.0/24\",\r\n \"52.109.128.0/22\",\r\n \"52.111.248.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.239.216.0/23\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1017:0:20::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiacentral2\",\r\n
+ \ \"id\": \"AzureCloud.australiacentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.224/27\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.112.0/20\",\r\n \"20.39.72.0/21\",\r\n \"20.39.96.0/19\",\r\n
+ \ \"20.47.36.0/24\",\r\n \"20.53.56.0/21\",\r\n \"20.135.54.0/23\",\r\n
+ \ \"20.150.103.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.193.96.0/19\",\r\n \"40.82.244.0/22\",\r\n \"40.90.31.96/27\",\r\n
+ \ \"40.90.130.32/28\",\r\n \"40.90.142.64/27\",\r\n \"40.90.149.32/27\",\r\n
+ \ \"40.126.61.128/26\",\r\n \"40.126.128.0/18\",\r\n \"52.108.180.0/24\",\r\n
+ \ \"52.108.201.0/24\",\r\n \"52.109.100.0/23\",\r\n \"52.111.249.0/24\",\r\n
+ \ \"52.143.218.0/24\",\r\n \"52.239.218.0/23\",\r\n \"2603:1010:400::/47\",\r\n
+ \ \"2603:1010:403::/48\",\r\n \"2603:1010:404::/48\",\r\n
+ \ \"2603:1016:1400:40::/59\",\r\n \"2603:1016:2401::/48\",\r\n
+ \ \"2603:1016:2500:8::/64\",\r\n \"2603:1017:0:40::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiaeast\",\r\n
+ \ \"id\": \"AzureCloud.australiaeast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.64.0/18\",\r\n \"13.72.224.0/19\",\r\n \"13.73.192.0/20\",\r\n
+ \ \"13.75.128.0/17\",\r\n \"13.104.211.128/26\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.20.128/26\",\r\n \"13.105.52.192/26\",\r\n \"13.105.53.128/26\",\r\n
+ \ \"20.37.192.0/19\",\r\n \"20.38.112.0/23\",\r\n \"20.40.64.0/20\",\r\n
+ \ \"20.40.80.0/21\",\r\n \"20.40.120.0/21\",\r\n \"20.40.176.0/20\",\r\n
+ \ \"20.42.192.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.64.0/18\",\r\n \"20.53.128.0/17\",\r\n \"20.58.128.0/18\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.150.66.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.188.128.0/17\",\r\n
+ \ \"20.190.142.0/25\",\r\n \"20.190.167.0/24\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.211.0/24\",\r\n \"40.82.32.0/22\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.87.208.0/22\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.30.0/25\",\r\n \"40.90.130.80/28\",\r\n \"40.90.130.208/28\",\r\n
+ \ \"40.90.140.32/27\",\r\n \"40.90.142.160/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.150.0/27\",\r\n \"40.112.37.128/26\",\r\n \"40.126.14.0/25\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.224.0/19\",\r\n \"52.108.40.0/23\",\r\n
+ \ \"52.108.83.0/24\",\r\n \"52.109.112.0/22\",\r\n \"52.111.224.0/24\",\r\n
+ \ \"52.113.88.0/22\",\r\n \"52.113.103.0/24\",\r\n \"52.114.16.0/22\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.192.0/23\",\r\n \"52.115.98.0/24\",\r\n
+ \ \"52.120.158.0/23\",\r\n \"52.121.108.0/22\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.147.0.0/19\",\r\n \"52.156.160.0/19\",\r\n
+ \ \"52.187.192.0/18\",\r\n \"52.232.136.0/21\",\r\n \"52.232.154.0/24\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.245.16.0/22\",\r\n \"104.44.90.64/26\",\r\n \"104.44.93.96/27\",\r\n
+ \ \"104.44.95.48/28\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.210.64.0/18\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.239.64.0/19\",\r\n \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n
+ \ \"2603:1010:6::/48\",\r\n \"2603:1016:1400:60::/59\",\r\n
+ \ \"2603:1016:2402::/48\",\r\n \"2603:1016:2500:c::/64\",\r\n
+ \ \"2603:1017:0:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.australiasoutheast\",\r\n \"id\": \"AzureCloud.australiasoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.73.96.0/19\",\r\n \"13.77.0.0/18\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.45.144.0/20\",\r\n \"20.46.96.0/20\",\r\n
+ \ \"20.47.38.0/24\",\r\n \"20.47.74.0/23\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.60.32.0/23\",\r\n \"20.70.64.0/18\",\r\n \"20.92.0.0/18\",\r\n
+ \ \"20.135.50.0/23\",\r\n \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.157.45.0/24\",\r\n \"20.190.96.0/19\",\r\n \"20.190.142.128/25\",\r\n
+ \ \"20.190.168.0/24\",\r\n \"23.101.224.0/19\",\r\n \"40.79.212.0/24\",\r\n
+ \ \"40.81.48.0/20\",\r\n \"40.87.212.0/22\",\r\n \"40.90.24.0/25\",\r\n
+ \ \"40.90.27.0/26\",\r\n \"40.90.138.128/27\",\r\n \"40.90.155.64/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.115.64.0/19\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.40.0/24\",\r\n \"40.127.64.0/19\",\r\n \"52.108.194.0/24\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.109.116.0/22\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.76.0/23\",\r\n \"52.114.20.0/22\",\r\n
+ \ \"52.114.60.0/23\",\r\n \"52.115.99.0/24\",\r\n \"52.121.106.0/23\",\r\n
+ \ \"52.136.25.0/24\",\r\n \"52.147.32.0/19\",\r\n \"52.158.128.0/19\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n
+ \ \"52.243.64.0/18\",\r\n \"52.245.20.0/22\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"104.44.90.32/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.160.0/19\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n \"2603:1010:100::/40\",\r\n
+ \ \"2603:1010:200::/47\",\r\n \"2603:1010:202::/48\",\r\n
+ \ \"2603:1010:204::/48\",\r\n \"2603:1010:205::/48\",\r\n
+ \ \"2603:1016:1400::/59\",\r\n \"2603:1016:2403::/48\",\r\n
+ \ \"2603:1016:2500::/64\",\r\n \"2603:1017::/59\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilse\",\r\n
+ \ \"id\": \"AzureCloud.brazilse\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"brazilse\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.27.128/27\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.96/27\",\r\n \"13.105.52.0/27\",\r\n \"20.40.32.0/21\",\r\n
+ \ \"20.135.76.0/23\",\r\n \"20.150.73.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.123.0/24\",\r\n \"20.157.42.0/24\",\r\n \"20.195.128.0/22\",\r\n
+ \ \"20.195.144.0/21\",\r\n \"23.97.112.192/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"40.79.204.192/26\",\r\n \"40.123.128.0/22\",\r\n
+ \ \"40.126.207.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.109.164.0/24\",\r\n \"52.111.207.0/24\",\r\n \"52.112.206.0/24\",\r\n
+ \ \"52.253.197.0/24\",\r\n \"191.232.16.0/21\",\r\n \"191.233.8.0/21\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.160.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"2603:1050:400::/48\",\r\n \"2603:1050:402::/48\",\r\n
+ \ \"2603:1050:403::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500:4::/64\",\r\n \"2603:1056:2000:60::/59\",\r\n
+ \ \"2603:1057:2:60::/59\",\r\n \"2603:1061:1002::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilsouth\",\r\n
+ \ \"id\": \"AzureCloud.brazilsouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.52.80/28\",\r\n \"13.105.52.128/26\",\r\n
+ \ \"20.40.16.0/21\",\r\n \"20.40.112.0/21\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.60.36.0/23\",\r\n \"20.135.128.0/22\",\r\n
+ \ \"20.135.132.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"20.190.145.0/25\",\r\n \"20.190.173.0/24\",\r\n \"20.195.136.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.197.128.0/17\",\r\n \"20.201.0.0/18\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.144/28\",\r\n \"40.90.141.64/27\",\r\n \"40.90.144.224/27\",\r\n
+ \ \"40.90.145.96/27\",\r\n \"40.90.145.128/27\",\r\n \"40.90.157.0/27\",\r\n
+ \ \"40.126.17.0/25\",\r\n \"40.126.45.0/24\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n
+ \ \"52.109.108.0/22\",\r\n \"52.111.225.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.113.132.0/24\",\r\n \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n
+ \ \"52.114.200.0/22\",\r\n \"52.121.40.0/21\",\r\n \"52.253.185.0/24\",\r\n
+ \ \"52.253.186.0/24\",\r\n \"104.41.0.0/18\",\r\n \"191.232.32.0/19\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.16.0/20\",\r\n \"191.233.128.0/20\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.235.32.0/19\",\r\n
+ \ \"191.235.64.0/18\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\",\r\n \"191.237.195.0/24\",\r\n \"191.237.200.0/21\",\r\n
+ \ \"191.237.248.0/21\",\r\n \"191.238.72.0/21\",\r\n \"191.238.128.0/21\",\r\n
+ \ \"191.238.192.0/19\",\r\n \"191.239.112.0/20\",\r\n \"191.239.204.0/22\",\r\n
+ \ \"191.239.240.0/20\",\r\n \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n
+ \ \"2603:1050:5::/48\",\r\n \"2603:1050:6::/48\",\r\n \"2603:1056:1400::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:2000:20::/59\",\r\n
+ \ \"2603:1057:2:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadacentral\",\r\n \"id\": \"AzureCloud.canadacentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.160.0/19\",\r\n
+ \ \"13.88.224.0/19\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.212.192/26\",\r\n \"13.104.223.192/26\",\r\n
+ \ \"20.38.114.0/25\",\r\n \"20.38.144.0/21\",\r\n \"20.39.128.0/20\",\r\n
+ \ \"20.43.0.0/19\",\r\n \"20.47.40.0/24\",\r\n \"20.47.87.0/24\",\r\n
+ \ \"20.48.128.0/18\",\r\n \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.63.0.0/17\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n
+ \ \"20.150.71.0/24\",\r\n \"20.150.100.0/24\",\r\n \"20.151.0.0/17\",\r\n
+ \ \"20.151.128.0/18\",\r\n \"20.157.52.0/24\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.161.0/24\",\r\n \"20.200.64.0/18\",\r\n \"40.79.216.0/24\",\r\n
+ \ \"40.80.44.0/22\",\r\n \"40.82.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.90.17.144/28\",\r\n \"40.90.128.0/28\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.151.96/27\",\r\n \"40.126.11.0/25\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"52.108.42.0/23\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.109.92.0/22\",\r\n \"52.111.251.0/24\",\r\n \"52.114.160.0/22\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.138.0.0/18\",\r\n
+ \ \"52.139.0.0/18\",\r\n \"52.156.0.0/19\",\r\n \"52.228.0.0/17\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.237.0.0/18\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.245.28.0/22\",\r\n \"52.246.152.0/21\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"104.44.93.32/27\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"2603:1030:208::/47\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2500:30::/64\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1037:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadaeast\",\r\n \"id\": \"AzureCloud.canadaeast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.154.128/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.135.66.0/23\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n \"20.190.139.128/25\",\r\n
+ \ \"20.190.162.0/24\",\r\n \"20.200.0.0/18\",\r\n \"40.69.96.0/19\",\r\n
+ \ \"40.79.217.0/24\",\r\n \"40.80.40.0/22\",\r\n \"40.80.240.0/20\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.89.0.0/19\",\r\n \"40.90.17.128/28\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.156.96/27\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.34.0/24\",\r\n \"52.108.193.0/24\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.111.226.0/24\",\r\n \"52.114.164.0/22\",\r\n
+ \ \"52.136.22.0/24\",\r\n \"52.139.64.0/18\",\r\n \"52.155.0.0/19\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.232.128.0/21\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\",\r\n \"52.242.0.0/18\",\r\n
+ \ \"52.245.32.0/22\",\r\n \"104.44.93.64/27\",\r\n \"104.44.95.32/28\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:2402::/48\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1037:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralfrance\",\r\n \"id\": \"AzureCloud.centralfrance\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.156.0/24\",\r\n
+ \ \"20.38.196.0/22\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.128.0/19\",\r\n \"20.43.32.0/19\",\r\n \"20.47.44.0/24\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.188.32.0/19\",\r\n \"20.190.147.0/25\",\r\n
+ \ \"20.190.177.0/24\",\r\n \"20.199.0.0/17\",\r\n \"40.66.32.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.222.0/24\",\r\n \"40.80.24.0/22\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.90.130.240/28\",\r\n \"40.90.132.0/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.126.19.0/25\",\r\n \"40.126.49.0/24\",\r\n \"51.11.192.0/18\",\r\n
+ \ \"51.103.0.0/17\",\r\n \"51.138.192.0/19\",\r\n \"52.108.52.0/23\",\r\n
+ \ \"52.108.89.0/24\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.111.231.0/24\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.190.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.114.104.0/22\",\r\n \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.143.128.0/18\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.194.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.245.116.0/22\",\r\n
+ \ \"2603:1020:800::/47\",\r\n \"2603:1020:802::/48\",\r\n
+ \ \"2603:1020:804::/48\",\r\n \"2603:1020:805::/48\",\r\n
+ \ \"2603:1026:2400::/48\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1027:1:100::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.centralindia\",\r\n
+ \ \"id\": \"AzureCloud.centralindia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.0.0/18\",\r\n \"13.104.148.128/25\",\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.47.89.0/24\",\r\n \"20.135.90.0/23\",\r\n
+ \ \"20.135.92.0/22\",\r\n \"20.150.114.0/24\",\r\n \"20.190.146.0/25\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.198.0.0/17\",\r\n \"40.79.207.32/27\",\r\n
+ \ \"40.79.207.64/28\",\r\n \"40.79.207.96/27\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.64.0/19\",\r\n \"40.81.224.0/19\",\r\n
+ \ \"40.87.224.0/22\",\r\n \"40.90.137.128/27\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.126.18.0/25\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"52.108.44.0/23\",\r\n \"52.108.85.0/24\",\r\n \"52.109.56.0/22\",\r\n
+ \ \"52.111.252.0/24\",\r\n \"52.113.10.0/23\",\r\n \"52.113.70.0/23\",\r\n
+ \ \"52.113.92.0/22\",\r\n \"52.113.193.0/24\",\r\n \"52.114.40.0/22\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.136.24.0/24\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.172.128.0/17\",\r\n
+ \ \"52.239.135.64/26\",\r\n \"52.239.202.0/24\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.253.181.0/24\",\r\n \"52.253.191.0/24\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.94.192/28\",\r\n \"104.47.210.0/23\",\r\n \"104.211.64.0/18\",\r\n
+ \ \"2603:1040:a00::/46\",\r\n \"2603:1040:a05::/48\",\r\n
+ \ \"2603:1040:a06::/48\",\r\n \"2603:1046:1400::/48\",\r\n
+ \ \"2603:1046:1500:8::/64\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1047:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralus\",\r\n \"id\": \"AzureCloud.centralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.128.0/20\",\r\n
+ \ \"13.67.144.0/21\",\r\n \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n \"13.67.160.0/19\",\r\n
+ \ \"13.67.192.0/18\",\r\n \"13.86.0.0/17\",\r\n \"13.89.0.0/16\",\r\n
+ \ \"13.104.147.128/25\",\r\n \"13.104.219.128/25\",\r\n \"13.105.17.192/26\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.37.0/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"20.37.128.0/18\",\r\n \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n
+ \ \"20.40.192.0/18\",\r\n \"20.44.8.0/21\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.78.0/23\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n \"20.60.194.0/23\",\r\n
+ \ \"20.80.64.0/18\",\r\n \"20.83.0.0/18\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.184.64.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.190.134.0/24\",\r\n \"20.190.155.0/24\",\r\n \"23.99.128.0/17\",\r\n
+ \ \"23.100.80.0/21\",\r\n \"23.100.240.0/20\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.102.202.0/24\",\r\n \"40.67.160.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.130.128/26\",\r\n \"40.77.137.0/25\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.161.64/26\",\r\n \"40.77.166.192/26\",\r\n
+ \ \"40.77.171.0/24\",\r\n \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n
+ \ \"40.77.182.16/28\",\r\n \"40.77.182.192/26\",\r\n \"40.77.184.128/25\",\r\n
+ \ \"40.77.197.0/24\",\r\n \"40.77.255.128/26\",\r\n \"40.78.128.0/18\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.82.16.0/22\",\r\n \"40.82.96.0/22\",\r\n
+ \ \"40.83.0.0/20\",\r\n \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n
+ \ \"40.83.24.64/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.28/30\",\r\n \"40.87.180.32/29\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.74/31\",\r\n \"40.87.180.76/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.24/29\",\r\n \"40.87.182.32/28\",\r\n
+ \ \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n \"40.87.182.62/31\",\r\n
+ \ \"40.87.182.64/26\",\r\n \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n
+ \ \"40.87.183.16/29\",\r\n \"40.87.183.24/30\",\r\n \"40.87.183.34/31\",\r\n
+ \ \"40.87.183.36/30\",\r\n \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n
+ \ \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n \"40.87.183.64/26\",\r\n
+ \ \"40.87.183.144/28\",\r\n \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n
+ \ \"40.87.183.224/29\",\r\n \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n
+ \ \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n \"40.89.224.0/19\",\r\n
+ \ \"40.90.16.0/27\",\r\n \"40.90.21.128/25\",\r\n \"40.90.22.0/25\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.129.224/27\",\r\n \"40.90.130.64/28\",\r\n
+ \ \"40.90.130.192/28\",\r\n \"40.90.132.192/26\",\r\n \"40.90.137.224/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.142.128/27\",\r\n \"40.90.142.240/28\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.128/26\",\r\n \"40.90.148.176/28\",\r\n \"40.90.149.96/27\",\r\n
+ \ \"40.90.151.144/28\",\r\n \"40.90.154.64/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.158.64/26\",\r\n \"40.93.8.0/24\",\r\n \"40.113.192.0/18\",\r\n
+ \ \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n \"40.122.64.0/18\",\r\n
+ \ \"40.122.128.0/17\",\r\n \"40.126.6.0/24\",\r\n \"40.126.27.0/24\",\r\n
+ \ \"52.101.8.0/24\",\r\n \"52.101.32.0/22\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.103.4.0/24\",\r\n \"52.103.130.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.185.0/24\",\r\n \"52.108.208.0/21\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.111.227.0/24\",\r\n \"52.112.113.0/24\",\r\n
+ \ \"52.113.129.0/24\",\r\n \"52.114.128.0/22\",\r\n \"52.115.76.0/22\",\r\n
+ \ \"52.115.80.0/22\",\r\n \"52.115.88.0/22\",\r\n \"52.123.2.0/24\",\r\n
+ \ \"52.125.128.0/22\",\r\n \"52.136.30.0/24\",\r\n \"52.141.192.0/19\",\r\n
+ \ \"52.141.240.0/20\",\r\n \"52.143.193.0/24\",\r\n \"52.143.224.0/19\",\r\n
+ \ \"52.154.0.0/18\",\r\n \"52.154.128.0/17\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.192.0/19\",\r\n \"52.165.0.0/19\",\r\n \"52.165.32.0/20\",\r\n
+ \ \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n \"52.165.56.0/21\",\r\n
+ \ \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n \"52.165.104.0/25\",\r\n
+ \ \"52.165.128.0/17\",\r\n \"52.173.0.0/16\",\r\n \"52.176.0.0/17\",\r\n
+ \ \"52.176.128.0/19\",\r\n \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n
+ \ \"52.176.192.0/19\",\r\n \"52.176.224.0/24\",\r\n \"52.180.128.0/19\",\r\n
+ \ \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n \"52.180.185.0/24\",\r\n
+ \ \"52.182.128.0/17\",\r\n \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n
+ \ \"52.185.48.0/21\",\r\n \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n \"52.189.0.0/17\",\r\n
+ \ \"52.228.128.0/17\",\r\n \"52.230.128.0/17\",\r\n \"52.232.157.0/24\",\r\n
+ \ \"52.238.192.0/18\",\r\n \"52.239.150.0/23\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.195.0/24\",\r\n
+ \ \"52.239.234.0/23\",\r\n \"52.242.128.0/17\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n \"52.245.69.96/28\",\r\n
+ \ \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n \"52.245.69.192/26\",\r\n
+ \ \"52.245.70.0/23\",\r\n \"52.255.0.0/19\",\r\n \"65.55.144.0/23\",\r\n
+ \ \"65.55.146.0/24\",\r\n \"104.43.128.0/17\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.91.160/27\",\r\n \"104.44.92.224/27\",\r\n \"104.44.94.80/28\",\r\n
+ \ \"104.208.0.0/19\",\r\n \"104.208.32.0/20\",\r\n \"131.253.36.224/27\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"168.61.128.0/25\",\r\n \"168.61.128.128/28\",\r\n
+ \ \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n \"168.61.129.224/27\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n \"168.61.144.0/20\",\r\n
+ \ \"168.61.160.0/19\",\r\n \"168.61.208.0/20\",\r\n \"193.149.72.0/21\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:17::/64\",\r\n
+ \ \"2603:1030:9:18::/61\",\r\n \"2603:1030:9:20::/59\",\r\n
+ \ \"2603:1030:9:40::/58\",\r\n \"2603:1030:9:80::/59\",\r\n
+ \ \"2603:1030:9:a0::/60\",\r\n \"2603:1030:9:b3::/64\",\r\n
+ \ \"2603:1030:9:b4::/63\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:111::/64\",\r\n \"2603:1030:9:112::/63\",\r\n
+ \ \"2603:1030:9:114::/64\",\r\n \"2603:1030:9:118::/62\",\r\n
+ \ \"2603:1030:9:11c::/63\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:10::/48\",\r\n
+ \ \"2603:1036:2403::/48\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:3000:100::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:f904::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.centraluseuap\",\r\n \"id\": \"AzureCloud.centraluseuap\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.104.129.0/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.208.0/26\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.47.5.0/24\",\r\n \"20.47.105.0/24\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.150.23.0/24\",\r\n
+ \ \"20.150.47.0/25\",\r\n \"20.157.96.0/24\",\r\n \"20.190.138.128/25\",\r\n
+ \ \"20.190.150.0/24\",\r\n \"40.66.120.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.16/28\",\r\n \"40.79.232.0/21\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n
+ \ \"40.87.180.12/31\",\r\n \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n
+ \ \"40.87.180.40/31\",\r\n \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n
+ \ \"40.87.182.0/30\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.60/31\",\r\n
+ \ \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.48/30\",\r\n \"40.87.183.52/31\",\r\n \"40.87.183.128/28\",\r\n
+ \ \"40.87.183.238/31\",\r\n \"40.87.183.240/30\",\r\n \"40.89.32.0/19\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.142.32/27\",\r\n \"40.90.149.0/27\",\r\n
+ \ \"40.96.52.0/24\",\r\n \"40.122.0.0/20\",\r\n \"40.126.10.128/25\",\r\n
+ \ \"40.126.22.0/24\",\r\n \"52.108.113.0/24\",\r\n \"52.109.140.0/22\",\r\n
+ \ \"52.141.224.0/20\",\r\n \"52.143.198.0/24\",\r\n \"52.158.176.0/20\",\r\n
+ \ \"52.165.104.128/26\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.180.160.0/20\",\r\n \"52.180.176.0/21\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.112.64/27\",\r\n \"52.239.177.0/27\",\r\n
+ \ \"52.239.238.0/24\",\r\n \"52.245.69.0/27\",\r\n \"52.253.156.0/22\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"104.208.48.0/20\",\r\n \"168.61.136.0/21\",\r\n
+ \ \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:10d::/64\",\r\n
+ \ \"2603:1030:9:10e::/63\",\r\n \"2603:1030:9:110::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:12c::/63\",\r\n
+ \ \"2603:1030:9:12e::/64\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:240d::/48\",\r\n \"2603:1036:2500:2c::/64\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1037:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastasia\",\r\n
+ \ \"id\": \"AzureCloud.eastasia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.0.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.75.0.0/17\",\r\n
+ \ \"13.88.208.0/20\",\r\n \"13.94.0.0/18\",\r\n \"13.104.155.64/26\",\r\n
+ \ \"13.104.155.192/26\",\r\n \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.126.0/23\",\r\n \"20.60.131.0/24\",\r\n
+ \ \"20.135.40.0/23\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"20.187.64.0/18\",\r\n
+ \ \"20.187.128.0/18\",\r\n \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n
+ \ \"20.189.64.0/18\",\r\n \"20.190.140.128/25\",\r\n \"20.190.164.0/24\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"23.97.64.0/19\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.99.96.0/19\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.101.0.0/20\",\r\n \"23.102.200.0/23\",\r\n
+ \ \"23.102.224.0/19\",\r\n \"40.77.134.0/24\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.160.32/27\",\r\n \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n
+ \ \"40.77.161.0/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.175.128/27\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.201.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.234.128/27\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.128/25\",\r\n
+ \ \"40.77.252.0/23\",\r\n \"40.79.210.0/24\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.82.116.0/22\",\r\n \"40.83.64.0/18\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.90.154.192/26\",\r\n \"40.126.12.128/25\",\r\n \"40.126.36.0/24\",\r\n
+ \ \"52.108.32.0/22\",\r\n \"52.108.81.0/24\",\r\n \"52.109.120.0/22\",\r\n
+ \ \"52.111.228.0/24\",\r\n \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n
+ \ \"52.113.104.0/24\",\r\n \"52.113.108.0/24\",\r\n \"52.114.0.0/21\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.96.0/24\",\r\n \"52.120.157.0/24\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.139.128.0/18\",\r\n \"52.175.0.0/17\",\r\n
+ \ \"52.184.0.0/17\",\r\n \"52.229.128.0/17\",\r\n \"52.232.153.0/24\",\r\n
+ \ \"52.239.128.0/24\",\r\n \"52.239.224.0/24\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.246.128.0/20\",\r\n \"65.52.160.0/19\",\r\n \"104.44.88.192/27\",\r\n
+ \ \"104.44.90.224/27\",\r\n \"104.44.91.192/27\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.46.24.0/22\",\r\n \"104.208.64.0/18\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n \"111.221.78.0/23\",\r\n
+ \ \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"137.116.160.0/20\",\r\n \"168.63.128.0/24\",\r\n
+ \ \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n \"168.63.129.64/26\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n \"168.63.132.0/22\",\r\n
+ \ \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n \"168.63.152.0/22\",\r\n
+ \ \"168.63.156.0/24\",\r\n \"168.63.192.0/19\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.237.238.0/24\",\r\n
+ \ \"204.231.197.0/24\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.68.174.208/28\",\r\n \"2603:1040:200::/46\",\r\n
+ \ \"2603:1040:204::/48\",\r\n \"2603:1040:206::/48\",\r\n
+ \ \"2603:1040:207::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1047:1:40::/59\",\r\n \"2a01:111:f100:6000::/64\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus\",\r\n
+ \ \"id\": \"AzureCloud.eastus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.128.0/17\",\r\n \"13.72.64.0/18\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.90.0.0/16\",\r\n \"13.92.0.0/16\",\r\n \"13.104.144.128/27\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.192.0/21\",\r\n \"13.104.211.0/25\",\r\n
+ \ \"13.104.214.128/25\",\r\n \"13.104.215.0/25\",\r\n \"13.105.17.0/26\",\r\n
+ \ \"13.105.19.0/25\",\r\n \"13.105.20.192/26\",\r\n \"13.105.27.0/25\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.36.192/26\",\r\n \"13.105.74.48/28\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.39.32.0/19\",\r\n \"20.42.0.0/17\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.113.0/24\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.51.128.0/17\",\r\n \"20.55.0.0/17\",\r\n \"20.60.0.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n \"20.60.60.0/22\",\r\n
+ \ \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.62.128.0/17\",\r\n \"20.72.128.0/18\",\r\n \"20.75.128.0/17\",\r\n
+ \ \"20.81.0.0/17\",\r\n \"20.83.128.0/18\",\r\n \"20.84.0.0/17\",\r\n
+ \ \"20.85.128.0/17\",\r\n \"20.88.128.0/18\",\r\n \"20.135.4.0/22\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.157.39.0/24\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.190.130.0/24\",\r\n \"20.190.151.0/24\",\r\n \"23.96.0.0/17\",\r\n
+ \ \"23.98.45.0/24\",\r\n \"23.100.16.0/20\",\r\n \"23.101.128.0/20\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.76.0.0/16\",\r\n \"40.78.219.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.79.152.0/21\",\r\n \"40.80.144.0/21\",\r\n
+ \ \"40.82.24.0/22\",\r\n \"40.82.60.0/22\",\r\n \"40.85.160.0/19\",\r\n
+ \ \"40.87.0.0/17\",\r\n \"40.87.164.0/22\",\r\n \"40.88.0.0/16\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.128/25\",\r\n \"40.90.25.0/26\",\r\n
+ \ \"40.90.30.192/26\",\r\n \"40.90.129.128/26\",\r\n \"40.90.130.96/28\",\r\n
+ \ \"40.90.131.224/27\",\r\n \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n
+ \ \"40.90.137.96/27\",\r\n \"40.90.139.224/27\",\r\n \"40.90.143.0/27\",\r\n
+ \ \"40.90.146.64/26\",\r\n \"40.90.147.0/27\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.224.0/19\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.4.0/24\",\r\n \"40.112.48.0/20\",\r\n
+ \ \"40.114.0.0/17\",\r\n \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n
+ \ \"40.117.128.0/17\",\r\n \"40.121.0.0/16\",\r\n \"40.123.132.0/22\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.23.0/24\",\r\n \"52.101.4.0/22\",\r\n
+ \ \"52.101.9.0/24\",\r\n \"52.101.20.0/22\",\r\n \"52.102.129.0/24\",\r\n
+ \ \"52.102.159.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.3.0/24\",\r\n
+ \ \"52.103.129.0/24\",\r\n \"52.108.16.0/21\",\r\n \"52.108.79.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.109.12.0/22\",\r\n
+ \ \"52.111.229.0/24\",\r\n \"52.112.112.0/24\",\r\n \"52.113.16.0/20\",\r\n
+ \ \"52.114.132.0/22\",\r\n \"52.115.54.0/24\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.192.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.123.0.0/24\",\r\n \"52.125.132.0/22\",\r\n \"52.136.64.0/18\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.143.207.0/24\",\r\n \"52.146.0.0/17\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.128.0/17\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.168.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.179.0.0/17\",\r\n
+ \ \"52.186.0.0/16\",\r\n \"52.188.0.0/16\",\r\n \"52.190.0.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.192.0/18\",\r\n \"52.224.0.0/16\",\r\n
+ \ \"52.226.0.0/16\",\r\n \"52.232.146.0/24\",\r\n \"52.234.128.0/17\",\r\n
+ \ \"52.239.152.0/22\",\r\n \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n
+ \ \"52.239.214.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.240.0.0/17\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.104.0/22\",\r\n \"52.249.128.0/17\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.255.128.0/17\",\r\n \"65.54.19.128/27\",\r\n \"104.41.128.0/19\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.94.16/28\",\r\n \"104.44.95.160/27\",\r\n
+ \ \"104.44.95.240/28\",\r\n \"104.45.128.0/18\",\r\n \"104.45.192.0/20\",\r\n
+ \ \"104.211.0.0/18\",\r\n \"137.116.112.0/20\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.135.64.0/18\",\r\n \"138.91.96.0/19\",\r\n
+ \ \"157.56.176.0/21\",\r\n \"168.61.32.0/20\",\r\n \"168.61.48.0/21\",\r\n
+ \ \"168.62.32.0/19\",\r\n \"168.62.160.0/19\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.238.0.0/18\",\r\n
+ \ \"2603:1030:20c::/47\",\r\n \"2603:1030:20e::/48\",\r\n
+ \ \"2603:1030:210::/47\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:3000:120::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f403:c100::/64\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:f000::/64\",\r\n \"2a01:111:f403:f900::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2\",\r\n
+ \ \"id\": \"AzureCloud.eastus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.0.0/17\",\r\n \"13.77.64.0/18\",\r\n \"13.104.147.0/25\",\r\n
+ \ \"13.104.208.64/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.23.64/26\",\r\n
+ \ \"13.105.28.0/28\",\r\n \"13.105.28.128/25\",\r\n \"13.105.67.128/25\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.75.0/27\",\r\n \"13.105.75.32/28\",\r\n
+ \ \"13.105.75.64/27\",\r\n \"20.36.128.0/17\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.41.0.0/18\",\r\n \"20.44.16.0/21\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.47.60.0/23\",\r\n \"20.47.76.0/23\",\r\n
+ \ \"20.49.0.0/18\",\r\n \"20.49.96.0/21\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.57.0.0/17\",\r\n \"20.60.56.0/22\",\r\n \"20.60.132.0/23\",\r\n
+ \ \"20.60.180.0/23\",\r\n \"20.62.0.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.69.192.0/18\",\r\n \"20.72.64.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.80.192.0/18\",\r\n \"20.81.128.0/17\",\r\n \"20.85.0.0/17\",\r\n
+ \ \"20.88.96.0/19\",\r\n \"20.135.16.0/23\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.150.29.0/24\",\r\n \"20.150.36.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n \"20.150.82.0/24\",\r\n
+ \ \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.152.0/24\",\r\n \"20.190.192.0/18\",\r\n \"23.100.64.0/21\",\r\n
+ \ \"23.101.32.0/21\",\r\n \"23.101.80.0/21\",\r\n \"23.101.144.0/20\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n
+ \ \"40.65.192.0/18\",\r\n \"40.67.128.0/19\",\r\n \"40.70.0.0/18\",\r\n
+ \ \"40.70.64.0/20\",\r\n \"40.70.80.0/21\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.75.0.0/19\",\r\n \"40.75.64.0/18\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.132.0/24\",\r\n
+ \ \"40.77.136.48/28\",\r\n \"40.77.137.128/26\",\r\n \"40.77.138.128/25\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.166.160/27\",\r\n \"40.77.167.0/24\",\r\n
+ \ \"40.77.168.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.175.96/27\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.182.0/28\",\r\n
+ \ \"40.77.182.32/27\",\r\n \"40.77.184.0/25\",\r\n \"40.77.198.0/26\",\r\n
+ \ \"40.77.199.192/26\",\r\n \"40.77.224.128/25\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.233.0/24\",\r\n \"40.77.234.192/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.240.0/25\",\r\n \"40.77.245.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.251.0/24\",\r\n \"40.78.208.48/28\",\r\n
+ \ \"40.78.220.0/24\",\r\n \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n
+ \ \"40.79.8.32/28\",\r\n \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n
+ \ \"40.79.9.0/24\",\r\n \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n
+ \ \"40.79.48.0/27\",\r\n \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n
+ \ \"40.79.56.0/21\",\r\n \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n
+ \ \"40.79.90.0/24\",\r\n \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n
+ \ \"40.79.93.0/28\",\r\n \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n
+ \ \"40.79.206.64/27\",\r\n \"40.79.240.0/20\",\r\n \"40.82.4.0/22\",\r\n
+ \ \"40.82.44.0/22\",\r\n \"40.84.0.0/17\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n \"40.87.168.32/29\",\r\n
+ \ \"40.87.168.48/28\",\r\n \"40.87.168.64/30\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.210/31\",\r\n
+ \ \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n \"40.87.168.224/27\",\r\n
+ \ \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n \"40.87.169.44/30\",\r\n
+ \ \"40.87.169.48/29\",\r\n \"40.87.169.56/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.102/31\",\r\n
+ \ \"40.87.169.104/29\",\r\n \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n
+ \ \"40.87.169.136/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.160/27\",\r\n
+ \ \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n \"40.87.170.128/28\",\r\n
+ \ \"40.87.170.144/31\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.194/31\",\r\n
+ \ \"40.87.170.196/30\",\r\n \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n
+ \ \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n \"40.87.170.240/29\",\r\n
+ \ \"40.87.170.248/30\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.36/30\",\r\n
+ \ \"40.87.171.40/31\",\r\n \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n
+ \ \"40.87.171.96/27\",\r\n \"40.87.171.128/28\",\r\n \"40.90.19.128/25\",\r\n
+ \ \"40.90.20.0/25\",\r\n \"40.90.130.160/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.133.112/28\",\r\n \"40.90.134.192/26\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.140.160/27\",\r\n \"40.90.140.192/27\",\r\n
+ \ \"40.90.143.192/26\",\r\n \"40.90.144.64/26\",\r\n \"40.90.145.32/27\",\r\n
+ \ \"40.90.145.64/27\",\r\n \"40.90.148.96/27\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.158.128/25\",\r\n \"40.91.12.16/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n \"40.91.13.128/27\",\r\n
+ \ \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n \"40.93.3.0/24\",\r\n
+ \ \"40.123.0.0/17\",\r\n \"40.126.3.0/24\",\r\n \"40.126.24.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.36.0/22\",\r\n \"52.102.131.0/24\",\r\n
+ \ \"52.103.5.0/24\",\r\n \"52.103.131.0/24\",\r\n \"52.108.186.0/24\",\r\n
+ \ \"52.108.216.0/22\",\r\n \"52.109.4.0/22\",\r\n \"52.111.230.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.95.0/24\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.108.0/24\",\r\n \"52.112.116.0/24\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.180.0/22\",\r\n \"52.114.186.0/23\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.64.0/22\",\r\n \"52.115.160.0/19\",\r\n
+ \ \"52.120.64.0/19\",\r\n \"52.121.32.0/22\",\r\n \"52.123.4.0/24\",\r\n
+ \ \"52.125.136.0/24\",\r\n \"52.136.29.0/24\",\r\n \"52.138.80.0/21\",\r\n
+ \ \"52.138.96.0/19\",\r\n \"52.143.192.0/24\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.167.0.0/16\",\r\n \"52.177.0.0/16\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.80/28\",\r\n \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n
+ \ \"52.184.169.0/24\",\r\n \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n
+ \ \"52.184.192.0/18\",\r\n \"52.225.128.0/21\",\r\n \"52.225.136.0/27\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n
+ \ \"52.225.192.0/18\",\r\n \"52.232.151.0/24\",\r\n \"52.232.160.0/19\",\r\n
+ \ \"52.232.192.0/18\",\r\n \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n
+ \ \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n
+ \ \"52.239.185.32/27\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.222.0/23\",\r\n \"52.242.64.0/18\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.160/27\",\r\n
+ \ \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n \"52.245.46.48/28\",\r\n
+ \ \"52.245.46.64/28\",\r\n \"52.245.46.112/28\",\r\n \"52.245.46.128/28\",\r\n
+ \ \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n \"52.247.0.0/17\",\r\n
+ \ \"52.250.128.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.253.64.0/20\",\r\n \"52.253.148.0/23\",\r\n \"52.253.154.0/23\",\r\n
+ \ \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n \"52.254.96.0/20\",\r\n
+ \ \"52.254.112.0/21\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n \"65.55.44.64/27\",\r\n
+ \ \"65.55.44.96/28\",\r\n \"65.55.44.128/27\",\r\n \"65.55.60.188/30\",\r\n
+ \ \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.107.48/28\",\r\n \"65.55.107.64/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.209.128/26\",\r\n \"65.55.211.32/27\",\r\n \"65.55.213.64/26\",\r\n
+ \ \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.128/25\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.96/27\",\r\n
+ \ \"104.44.91.96/27\",\r\n \"104.44.93.160/27\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.96.0/19\",\r\n \"104.46.192.0/20\",\r\n
+ \ \"104.47.200.0/21\",\r\n \"104.208.128.0/17\",\r\n \"104.209.128.0/17\",\r\n
+ \ \"104.210.0.0/20\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.208/28\",\r\n
+ \ \"131.253.12.224/30\",\r\n \"131.253.13.16/29\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.96/30\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.64/29\",\r\n \"131.253.14.208/28\",\r\n
+ \ \"131.253.14.224/28\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.24.0/28\",\r\n \"131.253.24.192/26\",\r\n \"131.253.34.224/27\",\r\n
+ \ \"131.253.38.0/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.40.0/28\",\r\n
+ \ \"134.170.220.0/23\",\r\n \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n
+ \ \"137.116.96.0/22\",\r\n \"157.55.7.128/26\",\r\n \"157.55.10.192/26\",\r\n
+ \ \"157.55.11.128/25\",\r\n \"157.55.37.0/24\",\r\n \"157.55.38.0/24\",\r\n
+ \ \"157.55.48.0/24\",\r\n \"157.55.50.0/25\",\r\n \"157.55.55.100/30\",\r\n
+ \ \"157.55.55.104/29\",\r\n \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.128.0/18\",\r\n \"191.239.224.0/20\",\r\n
+ \ \"193.149.64.0/21\",\r\n \"198.180.96.0/25\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n \"199.30.29.0/24\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401:2::/63\",\r\n
+ \ \"2603:1030:401:4::/62\",\r\n \"2603:1030:401:8::/61\",\r\n
+ \ \"2603:1030:401:10::/62\",\r\n \"2603:1030:401:14::/63\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:5a::/63\",\r\n \"2603:1030:401:5c::/62\",\r\n
+ \ \"2603:1030:401:60::/59\",\r\n \"2603:1030:401:80::/62\",\r\n
+ \ \"2603:1030:401:84::/64\",\r\n \"2603:1030:401:87::/64\",\r\n
+ \ \"2603:1030:401:88::/62\",\r\n \"2603:1030:401:8c::/63\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:94::/62\",\r\n \"2603:1030:401:98::/61\",\r\n
+ \ \"2603:1030:401:a0::/62\",\r\n \"2603:1030:401:a4::/63\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:143::/64\",\r\n \"2603:1030:401:144::/63\",\r\n
+ \ \"2603:1030:401:14a::/63\",\r\n \"2603:1030:401:14c::/62\",\r\n
+ \ \"2603:1030:401:150::/62\",\r\n \"2603:1030:401:154::/63\",\r\n
+ \ \"2603:1030:401:159::/64\",\r\n \"2603:1030:401:15a::/63\",\r\n
+ \ \"2603:1030:401:15c::/62\",\r\n \"2603:1030:401:160::/61\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:406::/47\",\r\n
+ \ \"2603:1030:408::/48\",\r\n \"2603:1030:40a:1::/64\",\r\n
+ \ \"2603:1030:40a:2::/64\",\r\n \"2603:1030:40c::/48\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1037:1::/59\",\r\n \"2603:1039:205::/48\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:f908::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2euap\",\r\n
+ \ \"id\": \"AzureCloud.eastus2euap\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.216.0/24\",\r\n \"13.105.52.32/27\",\r\n
+ \ \"13.105.52.64/28\",\r\n \"13.105.52.96/27\",\r\n \"13.105.60.160/27\",\r\n
+ \ \"13.105.61.0/28\",\r\n \"13.105.61.32/27\",\r\n \"20.39.0.0/19\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.128.0/17\",\r\n
+ \ \"20.51.16.0/21\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n \"20.150.108.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.149.0/24\",\r\n \"40.70.88.0/28\",\r\n
+ \ \"40.74.144.0/20\",\r\n \"40.75.32.0/21\",\r\n \"40.78.208.0/28\",\r\n
+ \ \"40.79.88.0/27\",\r\n \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n
+ \ \"40.79.96.0/19\",\r\n \"40.87.168.4/30\",\r\n \"40.87.168.40/29\",\r\n
+ \ \"40.87.168.68/31\",\r\n \"40.87.168.208/31\",\r\n \"40.87.169.40/30\",\r\n
+ \ \"40.87.169.58/31\",\r\n \"40.87.169.98/31\",\r\n \"40.87.169.100/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.144/28\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.188/30\",\r\n \"40.87.170.192/31\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.220/30\",\r\n \"40.87.170.224/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.32/30\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.89.64.0/18\",\r\n \"40.90.129.96/27\",\r\n \"40.90.137.32/27\",\r\n
+ \ \"40.90.146.192/27\",\r\n \"40.91.12.0/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.96.46.0/24\",\r\n \"40.96.55.0/24\",\r\n
+ \ \"40.126.10.0/25\",\r\n \"40.126.21.0/24\",\r\n \"52.108.116.0/24\",\r\n
+ \ \"52.138.64.0/20\",\r\n \"52.138.88.0/21\",\r\n \"52.143.212.0/23\",\r\n
+ \ \"52.147.128.0/19\",\r\n \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n
+ \ \"52.225.136.48/28\",\r\n \"52.225.144.0/20\",\r\n \"52.225.160.0/19\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\",\r\n \"52.245.45.144/28\",\r\n \"52.245.46.32/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.253.150.0/23\",\r\n
+ \ \"52.253.152.0/23\",\r\n \"52.253.224.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"198.180.97.0/24\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:16::/64\",\r\n \"2603:1030:401:59::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:8e::/64\",\r\n \"2603:1030:401:92::/63\",\r\n
+ \ \"2603:1030:401:a6::/64\",\r\n \"2603:1030:401:121::/64\",\r\n
+ \ \"2603:1030:401:122::/63\",\r\n \"2603:1030:401:136::/63\",\r\n
+ \ \"2603:1030:401:138::/64\",\r\n \"2603:1030:401:13c::/62\",\r\n
+ \ \"2603:1030:401:140::/63\",\r\n \"2603:1030:401:142::/64\",\r\n
+ \ \"2603:1030:401:146::/63\",\r\n \"2603:1030:401:148::/63\",\r\n
+ \ \"2603:1030:401:156::/63\",\r\n \"2603:1030:401:158::/64\",\r\n
+ \ \"2603:1030:401:168::/63\",\r\n \"2603:1030:401:16d::/64\",\r\n
+ \ \"2603:1030:401:16e::/63\",\r\n \"2603:1030:401:170::/61\",\r\n
+ \ \"2603:1030:401:178::/62\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40d::/60\",\r\n \"2603:1036:903:1::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:240a::/48\",\r\n
+ \ \"2603:1036:2500:4::/64\",\r\n \"2603:1036:3000:20::/59\",\r\n
+ \ \"2603:1037:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.germanyn\",\r\n \"id\": \"AzureCloud.germanyn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.212.64/26\",\r\n \"20.38.115.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.84.0/23\",\r\n \"20.52.72.0/21\",\r\n \"20.52.80.32/27\",\r\n
+ \ \"20.135.56.0/23\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"40.82.72.0/22\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.128.240/28\",\r\n \"40.119.96.0/22\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.198.0/24\",\r\n \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n
+ \ \"51.116.200.0/21\",\r\n \"51.116.208.0/20\",\r\n \"52.108.76.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.109.102.0/23\",\r\n \"52.111.254.0/24\",\r\n
+ \ \"52.114.240.0/24\",\r\n \"52.253.172.0/24\",\r\n \"2603:1020:d00::/47\",\r\n
+ \ \"2603:1020:d03::/48\",\r\n \"2603:1020:d04::/48\",\r\n
+ \ \"2603:1026:2411::/48\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:220::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.germanywc\",\r\n
+ \ \"id\": \"AzureCloud.germanywc\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.224/27\",\r\n \"13.104.145.128/27\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n
+ \ \"13.105.74.96/27\",\r\n \"13.105.74.192/26\",\r\n \"20.38.118.0/24\",\r\n
+ \ \"20.47.27.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.112.0/24\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.80.0/27\",\r\n
+ \ \"20.52.80.64/27\",\r\n \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n
+ \ \"20.52.128.0/17\",\r\n \"20.60.22.0/23\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"40.82.68.0/22\",\r\n \"40.90.129.48/28\",\r\n \"40.90.140.0/27\",\r\n
+ \ \"40.90.147.32/27\",\r\n \"40.90.151.160/27\",\r\n \"40.119.92.0/22\",\r\n
+ \ \"40.126.62.64/26\",\r\n \"40.126.197.0/24\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.224.0/19\",\r\n
+ \ \"52.108.178.0/24\",\r\n \"52.108.199.0/24\",\r\n \"52.109.104.0/23\",\r\n
+ \ \"52.111.255.0/24\",\r\n \"52.114.244.0/24\",\r\n \"52.253.169.0/24\",\r\n
+ \ \"52.253.170.0/23\",\r\n \"2603:1020:c00::/47\",\r\n \"2603:1020:c03::/48\",\r\n
+ \ \"2603:1020:c04::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:2500:14::/64\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japaneast\",\r\n \"id\": \"AzureCloud.japaneast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.128.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.150.128/26\",\r\n \"13.104.221.0/24\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.38.116.0/23\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.43.64.0/19\",\r\n \"20.44.128.0/18\",\r\n
+ \ \"20.46.112.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.47.101.0/24\",\r\n \"20.48.0.0/17\",\r\n \"20.60.172.0/23\",\r\n
+ \ \"20.63.128.0/18\",\r\n \"20.78.0.0/17\",\r\n \"20.78.192.0/18\",\r\n
+ \ \"20.89.0.0/17\",\r\n \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n
+ \ \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.188.0.0/19\",\r\n \"20.190.141.128/25\",\r\n \"20.190.166.0/24\",\r\n
+ \ \"20.191.160.0/19\",\r\n \"20.194.128.0/17\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.100.96.0/21\",\r\n \"23.102.64.0/19\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.206.96/27\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.82.48.0/22\",\r\n \"40.87.200.0/22\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.128.80/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.192/28\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.152.192/27\",\r\n \"40.90.158.0/26\",\r\n \"40.115.128.0/17\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.38.0/24\",\r\n \"52.108.191.0/24\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.109.52.0/22\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.113.78.0/23\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.107.0/24\",\r\n \"52.113.133.0/24\",\r\n
+ \ \"52.114.32.0/22\",\r\n \"52.115.38.0/24\",\r\n \"52.115.47.0/24\",\r\n
+ \ \"52.121.120.0/23\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.136.31.0/24\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.155.96.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.185.128.0/18\",\r\n
+ \ \"52.232.155.0/24\",\r\n \"52.239.144.0/23\",\r\n \"52.243.32.0/19\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.246.160.0/19\",\r\n \"52.253.96.0/19\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"104.41.160.0/19\",\r\n \"104.44.88.224/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.94.112/28\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"138.91.0.0/20\",\r\n \"191.237.240.0/23\",\r\n \"2603:1040:400::/46\",\r\n
+ \ \"2603:1040:404::/48\",\r\n \"2603:1040:406::/48\",\r\n
+ \ \"2603:1040:407::/48\",\r\n \"2603:1046:1402::/48\",\r\n
+ \ \"2603:1046:1500:18::/64\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1047:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japanwest\",\r\n \"id\": \"AzureCloud.japanwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.73.232.0/21\",\r\n
+ \ \"20.39.176.0/21\",\r\n \"20.47.10.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n
+ \ \"20.63.192.0/18\",\r\n \"20.78.128.0/18\",\r\n \"20.135.48.0/23\",\r\n
+ \ \"20.150.10.0/23\",\r\n \"20.157.56.0/24\",\r\n \"20.189.192.0/18\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.165.0/24\",\r\n \"23.98.56.0/24\",\r\n
+ \ \"23.100.104.0/21\",\r\n \"40.74.64.0/18\",\r\n \"40.74.128.0/20\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.80.56.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.81.176.0/20\",\r\n \"40.82.100.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.137.0/27\",\r\n \"40.90.142.208/28\",\r\n \"40.90.156.0/26\",\r\n
+ \ \"40.126.13.0/25\",\r\n \"40.126.37.0/24\",\r\n \"52.108.46.0/23\",\r\n
+ \ \"52.108.86.0/24\",\r\n \"52.109.132.0/22\",\r\n \"52.111.233.0/24\",\r\n
+ \ \"52.112.88.0/22\",\r\n \"52.113.14.0/24\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.100.0/22\",\r\n \"52.115.104.0/23\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.116.0/22\",\r\n
+ \ \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.175.128.0/18\",\r\n \"52.232.158.0/24\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"52.245.92.0/22\",\r\n \"104.44.92.0/27\",\r\n \"104.44.94.128/28\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.214.128.0/19\",\r\n \"104.215.0.0/18\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"191.233.32.0/20\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n
+ \ \"191.238.92.0/23\",\r\n \"191.239.96.0/20\",\r\n \"2603:1040:600::/46\",\r\n
+ \ \"2603:1040:605::/48\",\r\n \"2603:1040:606::/48\",\r\n
+ \ \"2603:1046:1403::/48\",\r\n \"2603:1046:1500:14::/64\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1047:1:a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreacentral\",\r\n
+ \ \"id\": \"AzureCloud.koreacentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.129.192/26\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.105.20.0/25\",\r\n \"13.105.96.112/28\",\r\n \"13.105.97.32/27\",\r\n
+ \ \"13.105.97.64/27\",\r\n \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.44.24.0/21\",\r\n \"20.47.46.0/24\",\r\n
+ \ \"20.47.90.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.150.4.0/23\",\r\n \"20.190.144.128/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.180.0/24\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.80.36.0/22\",\r\n \"40.82.128.0/19\",\r\n
+ \ \"40.90.17.224/27\",\r\n \"40.90.128.176/28\",\r\n \"40.90.131.128/27\",\r\n
+ \ \"40.90.139.128/27\",\r\n \"40.90.156.64/27\",\r\n \"40.126.16.128/25\",\r\n
+ \ \"40.126.20.128/25\",\r\n \"40.126.52.0/24\",\r\n \"52.108.48.0/23\",\r\n
+ \ \"52.108.87.0/24\",\r\n \"52.109.44.0/22\",\r\n \"52.111.194.0/24\",\r\n
+ \ \"52.114.44.0/22\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.141.0.0/18\",\r\n
+ \ \"52.231.0.0/17\",\r\n \"52.232.145.0/24\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.164.192/26\",\r\n \"52.239.190.128/26\",\r\n \"52.245.112.0/22\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1047:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreasouth\",\r\n
+ \ \"id\": \"AzureCloud.koreasouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.157.0/25\",\r\n \"20.39.168.0/21\",\r\n \"20.47.47.0/24\",\r\n
+ \ \"20.47.91.0/24\",\r\n \"20.135.26.0/23\",\r\n \"20.135.30.0/23\",\r\n
+ \ \"20.150.14.0/23\",\r\n \"20.190.148.0/25\",\r\n \"20.190.179.0/24\",\r\n
+ \ \"20.200.128.0/18\",\r\n \"40.79.220.0/24\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.168.0/21\",\r\n \"40.80.224.0/20\",\r\n \"40.89.192.0/19\",\r\n
+ \ \"40.90.131.160/27\",\r\n \"40.90.139.160/27\",\r\n \"40.90.157.32/27\",\r\n
+ \ \"40.126.20.0/25\",\r\n \"40.126.51.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.226.0/23\",\r\n \"52.109.48.0/22\",\r\n \"52.111.234.0/24\",\r\n
+ \ \"52.113.110.0/23\",\r\n \"52.114.48.0/22\",\r\n \"52.147.96.0/19\",\r\n
+ \ \"52.231.128.0/17\",\r\n \"52.232.144.0/24\",\r\n \"52.239.165.0/26\",\r\n
+ \ \"52.239.165.160/27\",\r\n \"52.239.190.192/26\",\r\n \"52.245.100.0/22\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1046:1405::/48\",\r\n \"2603:1046:1500:1c::/64\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1047:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northcentralus\",\r\n
+ \ \"id\": \"AzureCloud.northcentralus\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.26.0/24\",\r\n \"13.105.28.16/28\",\r\n \"13.105.29.0/25\",\r\n
+ \ \"13.105.37.64/26\",\r\n \"13.105.37.128/26\",\r\n \"20.36.96.0/21\",\r\n
+ \ \"20.41.128.0/18\",\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n
+ \ \"20.47.107.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.49.112.0/21\",\r\n
+ \ \"20.51.0.0/21\",\r\n \"20.59.192.0/18\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.66.128.0/17\",\r\n \"20.72.32.0/19\",\r\n
+ \ \"20.80.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.135.12.0/22\",\r\n
+ \ \"20.135.70.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"20.190.135.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"23.96.128.0/17\",\r\n \"23.98.48.0/21\",\r\n \"23.100.72.0/21\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.101.160.0/20\",\r\n \"40.77.131.224/28\",\r\n
+ \ \"40.77.136.96/28\",\r\n \"40.77.137.192/27\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.176.0/24\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.183.0/24\",\r\n \"40.77.188.0/22\",\r\n \"40.77.196.0/24\",\r\n
+ \ \"40.77.198.64/26\",\r\n \"40.77.200.128/25\",\r\n \"40.77.224.0/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.231.0/24\",\r\n \"40.77.234.0/25\",\r\n
+ \ \"40.77.236.32/27\",\r\n \"40.77.236.160/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.248.128/25\",\r\n \"40.77.254.0/26\",\r\n \"40.77.255.192/26\",\r\n
+ \ \"40.78.208.64/28\",\r\n \"40.78.222.0/24\",\r\n \"40.80.184.0/21\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.87.172.0/22\",\r\n \"40.90.19.64/26\",\r\n
+ \ \"40.90.132.96/27\",\r\n \"40.90.133.128/28\",\r\n \"40.90.135.64/26\",\r\n
+ \ \"40.90.140.128/27\",\r\n \"40.90.144.32/27\",\r\n \"40.90.155.192/26\",\r\n
+ \ \"40.91.24.0/22\",\r\n \"40.116.0.0/16\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.28.0/24\",\r\n \"52.108.182.0/24\",\r\n \"52.108.203.0/24\",\r\n
+ \ \"52.109.16.0/22\",\r\n \"52.111.235.0/24\",\r\n \"52.112.94.0/24\",\r\n
+ \ \"52.113.198.0/24\",\r\n \"52.114.168.0/22\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.162.0.0/16\",\r\n \"52.232.156.0/24\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"52.240.128.0/17\",\r\n \"52.245.72.0/22\",\r\n \"52.252.128.0/17\",\r\n
+ \ \"65.52.0.0/19\",\r\n \"65.52.48.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.192.0/19\",\r\n \"65.52.232.0/21\",\r\n
+ \ \"65.52.240.0/21\",\r\n \"65.55.60.176/29\",\r\n \"65.55.105.192/27\",\r\n
+ \ \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n \"65.55.109.0/24\",\r\n
+ \ \"65.55.211.0/27\",\r\n \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n
+ \ \"65.55.213.0/27\",\r\n \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n
+ \ \"104.44.88.128/27\",\r\n \"104.44.91.128/27\",\r\n \"104.44.94.64/28\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n
+ \ \"131.253.12.48/29\",\r\n \"131.253.12.192/28\",\r\n \"131.253.12.248/29\",\r\n
+ \ \"131.253.13.0/28\",\r\n \"131.253.13.32/28\",\r\n \"131.253.14.32/27\",\r\n
+ \ \"131.253.14.160/27\",\r\n \"131.253.14.248/29\",\r\n \"131.253.15.32/27\",\r\n
+ \ \"131.253.15.208/28\",\r\n \"131.253.15.224/27\",\r\n \"131.253.25.0/24\",\r\n
+ \ \"131.253.27.0/24\",\r\n \"131.253.36.128/26\",\r\n \"131.253.38.32/27\",\r\n
+ \ \"131.253.38.224/27\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.192/26\",\r\n \"157.55.24.0/21\",\r\n
+ \ \"157.55.55.0/27\",\r\n \"157.55.55.32/28\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n \"157.55.55.216/29\",\r\n
+ \ \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n \"157.55.106.128/25\",\r\n
+ \ \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n \"157.55.136.0/21\",\r\n
+ \ \"157.55.151.0/28\",\r\n \"157.55.160.0/20\",\r\n \"157.55.208.0/21\",\r\n
+ \ \"157.55.248.0/21\",\r\n \"157.56.8.0/21\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.216.0/26\",\r\n
+ \ \"168.62.96.0/19\",\r\n \"168.62.224.0/19\",\r\n \"191.233.144.0/20\",\r\n
+ \ \"191.236.128.0/18\",\r\n \"199.30.31.0/25\",\r\n \"204.79.180.0/24\",\r\n
+ \ \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n \"207.46.198.128/25\",\r\n
+ \ \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n \"207.46.202.128/28\",\r\n
+ \ \"207.46.205.0/24\",\r\n \"207.68.174.40/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"2603:1030:600::/46\",\r\n \"2603:1030:604::/47\",\r\n
+ \ \"2603:1030:607::/48\",\r\n \"2603:1030:608::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2500:8::/64\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1037:1:60::/59\",\r\n
+ \ \"2a01:111:f100:1000::/62\",\r\n \"2a01:111:f100:1004::/63\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northeurope\",\r\n
+ \ \"id\": \"AzureCloud.northeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.128.0/17\",\r\n \"13.70.192.0/18\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.94.64.0/18\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.105.18.0/26\",\r\n \"13.105.21.0/24\",\r\n
+ \ \"13.105.28.48/28\",\r\n \"13.105.37.192/26\",\r\n \"13.105.60.192/26\",\r\n
+ \ \"13.105.67.0/25\",\r\n \"13.105.96.128/25\",\r\n \"20.38.64.0/19\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.47.111.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n \"20.54.0.0/17\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n \"20.60.144.0/23\",\r\n
+ \ \"20.67.128.0/17\",\r\n \"20.82.128.0/17\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n \"20.150.104.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.159.0/24\",\r\n \"20.191.0.0/18\",\r\n
+ \ \"23.100.48.0/20\",\r\n \"23.100.128.0/18\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.102.0.0/18\",\r\n \"40.67.224.0/19\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.192.0/19\",\r\n \"40.77.133.0/24\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.80/28\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.174.0/24\",\r\n \"40.77.175.160/27\",\r\n \"40.77.182.96/27\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.229.0/24\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.176/28\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.78.211.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.87.128.0/19\",\r\n \"40.87.188.0/22\",\r\n \"40.90.17.192/27\",\r\n
+ \ \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n \"40.90.31.128/25\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.129.192/27\",\r\n \"40.90.130.224/28\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.136.176/28\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.140.64/27\",\r\n \"40.90.141.96/27\",\r\n \"40.90.141.128/27\",\r\n
+ \ \"40.90.145.0/27\",\r\n \"40.90.145.224/27\",\r\n \"40.90.147.96/27\",\r\n
+ \ \"40.90.148.160/28\",\r\n \"40.90.149.128/25\",\r\n \"40.90.153.128/25\",\r\n
+ \ \"40.91.20.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.112.36.0/25\",\r\n
+ \ \"40.112.37.64/26\",\r\n \"40.112.64.0/19\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.115.96.0/19\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.31.0/24\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.104.64.0/18\",\r\n \"51.104.128.0/18\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.196.0/24\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.109.76.0/22\",\r\n \"52.111.236.0/24\",\r\n \"52.112.191.0/24\",\r\n
+ \ \"52.112.229.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.236.0/24\",\r\n
+ \ \"52.113.40.0/21\",\r\n \"52.113.48.0/20\",\r\n \"52.113.112.0/20\",\r\n
+ \ \"52.113.136.0/21\",\r\n \"52.113.205.0/24\",\r\n \"52.114.76.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.120.0/22\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.233.0/24\",\r\n \"52.114.248.0/22\",\r\n \"52.115.16.0/21\",\r\n
+ \ \"52.115.24.0/22\",\r\n \"52.120.136.0/21\",\r\n \"52.120.192.0/20\",\r\n
+ \ \"52.121.16.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.125.138.0/23\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.142.64.0/18\",\r\n \"52.143.195.0/24\",\r\n
+ \ \"52.143.209.0/24\",\r\n \"52.146.128.0/17\",\r\n \"52.155.64.0/19\",\r\n
+ \ \"52.155.128.0/17\",\r\n \"52.156.192.0/18\",\r\n \"52.158.0.0/17\",\r\n
+ \ \"52.164.0.0/16\",\r\n \"52.169.0.0/16\",\r\n \"52.178.128.0/17\",\r\n
+ \ \"52.232.148.0/24\",\r\n \"52.236.0.0/17\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"65.52.64.0/20\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.192.0/18\",\r\n \"104.44.88.64/27\",\r\n \"104.44.91.64/27\",\r\n
+ \ \"104.44.92.192/27\",\r\n \"104.44.94.32/28\",\r\n \"104.45.80.0/20\",\r\n
+ \ \"104.45.96.0/19\",\r\n \"104.46.8.0/21\",\r\n \"104.46.64.0/19\",\r\n
+ \ \"104.47.218.0/23\",\r\n \"131.253.40.80/28\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.135.128.0/17\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"157.55.3.0/24\",\r\n \"157.55.10.160/29\",\r\n \"157.55.10.176/28\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.107.0/24\",\r\n \"157.55.204.128/25\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.63.32.0/19\",\r\n
+ \ \"168.63.64.0/20\",\r\n \"168.63.80.0/21\",\r\n \"168.63.92.0/22\",\r\n
+ \ \"191.232.138.0/23\",\r\n \"191.235.128.0/18\",\r\n \"191.235.192.0/22\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.255.0/24\",\r\n \"191.237.192.0/23\",\r\n
+ \ \"191.237.194.0/24\",\r\n \"191.237.196.0/24\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.239.208.0/20\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n \"2603:1020:4::/48\",\r\n
+ \ \"2603:1020:5::/48\",\r\n \"2603:1026:2404::/48\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.norwaye\",\r\n \"id\": \"AzureCloud.norwaye\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.32/27\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.38.120.0/24\",\r\n \"20.47.48.0/24\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\",\r\n
+ \ \"20.157.2.0/24\",\r\n \"20.190.185.0/24\",\r\n \"40.82.84.0/22\",\r\n
+ \ \"40.119.104.0/22\",\r\n \"40.126.57.0/24\",\r\n \"40.126.200.0/24\",\r\n
+ \ \"51.13.0.0/17\",\r\n \"51.107.208.0/20\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.208.0/21\",\r\n \"51.120.232.0/21\",\r\n \"51.120.240.0/20\",\r\n
+ \ \"52.108.77.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.109.86.0/23\",\r\n
+ \ \"52.111.197.0/24\",\r\n \"52.114.234.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1026:240e::/48\",\r\n \"2603:1026:2500:28::/64\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1027:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.norwayw\",\r\n
+ \ \"id\": \"AzureCloud.norwayw\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.153.48/28\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.155.0/27\",\r\n \"13.104.217.128/25\",\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.135.58.0/23\",\r\n \"20.150.0.0/24\",\r\n
+ \ \"20.150.56.0/24\",\r\n \"20.157.3.0/24\",\r\n \"20.190.186.0/24\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.126.58.0/24\",\r\n \"40.126.201.0/24\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"52.108.177.0/24\",\r\n
+ \ \"52.108.198.0/24\",\r\n \"52.109.144.0/23\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.114.238.0/24\",\r\n \"52.253.167.0/24\",\r\n \"2603:1020:f00::/47\",\r\n
+ \ \"2603:1020:f03::/48\",\r\n \"2603:1020:f04::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:2500:10::/64\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1027:1:80::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricanorth\",\r\n
+ \ \"id\": \"AzureCloud.southafricanorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.192/27\",\r\n \"13.105.27.224/27\",\r\n \"20.38.114.128/25\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.47.50.0/24\",\r\n \"20.47.92.0/24\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.87.0.0/18\",\r\n \"20.135.78.0/23\",\r\n
+ \ \"20.135.80.0/22\",\r\n \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.190.190.0/26\",\r\n \"40.79.203.0/24\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.120.0/22\",\r\n \"40.90.19.0/27\",\r\n
+ \ \"40.90.128.144/28\",\r\n \"40.90.130.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.143.128/27\",\r\n \"40.90.151.64/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.120.16.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.127.0.0/19\",\r\n \"52.108.54.0/23\",\r\n
+ \ \"52.108.90.0/24\",\r\n \"52.109.150.0/23\",\r\n \"52.111.237.0/24\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.224.0/24\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.239.232.0/25\",\r\n
+ \ \"102.37.0.0/20\",\r\n \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.72.0/21\",\r\n
+ \ \"102.37.96.0/19\",\r\n \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n
+ \ \"102.37.192.0/18\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1007:200::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricawest\",\r\n
+ \ \"id\": \"AzureCloud.southafricawest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.160/27\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.45.136.0/21\",\r\n \"20.47.51.0/24\",\r\n \"20.47.93.0/24\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.135.32.0/23\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"40.78.209.0/24\",\r\n \"40.82.64.0/22\",\r\n
+ \ \"40.90.17.0/27\",\r\n \"40.90.128.96/28\",\r\n \"40.90.152.224/27\",\r\n
+ \ \"40.117.0.0/19\",\r\n \"40.119.68.0/22\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"52.108.187.0/24\",\r\n \"52.108.220.0/23\",\r\n \"52.109.152.0/23\",\r\n
+ \ \"52.111.238.0/24\",\r\n \"52.114.228.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.239.232.128/25\",\r\n \"102.37.26.0/27\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.80.0/21\",\r\n \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n
+ \ \"102.133.96.0/20\",\r\n \"102.133.112.0/28\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200:20::/59\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southcentralus\",\r\n \"id\": \"AzureCloud.southcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.65.0.0/16\",\r\n
+ \ \"13.66.0.0/17\",\r\n \"13.73.240.0/20\",\r\n \"13.84.0.0/15\",\r\n
+ \ \"13.104.144.64/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.217.0/25\",\r\n
+ \ \"13.104.220.128/25\",\r\n \"13.105.23.0/26\",\r\n \"13.105.25.0/24\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.66.192/26\",\r\n \"20.38.104.0/23\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.120.0/21\",\r\n \"20.47.0.0/24\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.29.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.100.0/24\",\r\n \"20.49.88.0/21\",\r\n \"20.60.48.0/22\",\r\n
+ \ \"20.60.64.0/22\",\r\n \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n
+ \ \"20.60.160.0/23\",\r\n \"20.64.0.0/17\",\r\n \"20.65.128.0/17\",\r\n
+ \ \"20.88.192.0/18\",\r\n \"20.135.8.0/22\",\r\n \"20.135.216.0/22\",\r\n
+ \ \"20.135.220.0/23\",\r\n \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n
+ \ \"20.150.70.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n
+ \ \"20.150.94.0/24\",\r\n \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n
+ \ \"20.188.64.0/19\",\r\n \"20.189.0.0/18\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"23.98.128.0/17\",\r\n \"23.100.120.0/21\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.102.128.0/18\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n
+ \ \"40.77.131.128/26\",\r\n \"40.77.172.0/24\",\r\n \"40.77.199.0/25\",\r\n
+ \ \"40.77.225.0/24\",\r\n \"40.78.214.0/24\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.207.80/28\",\r\n \"40.79.207.128/25\",\r\n
+ \ \"40.80.192.0/19\",\r\n \"40.84.128.0/17\",\r\n \"40.86.128.0/19\",\r\n
+ \ \"40.87.176.0/25\",\r\n \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n
+ \ \"40.87.176.174/31\",\r\n \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n
+ \ \"40.87.176.216/29\",\r\n \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n
+ \ \"40.87.176.240/28\",\r\n \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n
+ \ \"40.87.177.64/27\",\r\n \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n
+ \ \"40.87.177.120/31\",\r\n \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n
+ \ \"40.87.177.144/29\",\r\n \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n
+ \ \"40.87.177.160/27\",\r\n \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n
+ \ \"40.87.177.212/30\",\r\n \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n
+ \ \"40.87.178.0/26\",\r\n \"40.87.178.64/29\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.18.64/26\",\r\n \"40.90.27.64/26\",\r\n \"40.90.27.128/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.30.160/27\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.133.96/28\",\r\n \"40.90.135.128/25\",\r\n
+ \ \"40.90.136.160/28\",\r\n \"40.90.145.160/27\",\r\n \"40.90.148.0/26\",\r\n
+ \ \"40.90.152.160/27\",\r\n \"40.90.155.0/26\",\r\n \"40.91.16.0/22\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.119.0.0/18\",\r\n \"40.124.0.0/16\",\r\n
+ \ \"40.126.0.0/24\",\r\n \"40.126.29.0/24\",\r\n \"52.101.11.0/24\",\r\n
+ \ \"52.101.12.0/22\",\r\n \"52.102.132.0/24\",\r\n \"52.103.6.0/24\",\r\n
+ \ \"52.103.132.0/24\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.248.0/21\",\r\n \"52.109.20.0/22\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.112.24.0/21\",\r\n \"52.112.117.0/24\",\r\n
+ \ \"52.113.160.0/19\",\r\n \"52.113.206.0/24\",\r\n \"52.114.144.0/22\",\r\n
+ \ \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.152.0/22\",\r\n \"52.121.0.0/21\",\r\n
+ \ \"52.123.3.0/24\",\r\n \"52.125.137.0/24\",\r\n \"52.141.64.0/18\",\r\n
+ \ \"52.152.0.0/17\",\r\n \"52.153.64.0/18\",\r\n \"52.153.192.0/18\",\r\n
+ \ \"52.171.0.0/16\",\r\n \"52.183.192.0/18\",\r\n \"52.185.192.0/18\",\r\n
+ \ \"52.189.128.0/18\",\r\n \"52.232.159.0/24\",\r\n \"52.239.158.0/23\",\r\n
+ \ \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n
+ \ \"52.239.200.0/23\",\r\n \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.248.0.0/17\",\r\n \"52.249.0.0/18\",\r\n
+ \ \"52.253.0.0/18\",\r\n \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"65.52.32.0/21\",\r\n \"65.54.55.160/27\",\r\n
+ \ \"65.54.55.224/27\",\r\n \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n
+ \ \"70.37.160.0/21\",\r\n \"104.44.89.0/27\",\r\n \"104.44.89.64/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.94.160/27\",\r\n \"104.44.128.0/18\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.210.128.0/19\",\r\n \"104.210.176.0/20\",\r\n
+ \ \"104.210.192.0/19\",\r\n \"104.214.0.0/17\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"131.253.40.64/28\",\r\n \"157.55.51.224/28\",\r\n \"157.55.80.0/21\",\r\n
+ \ \"157.55.103.32/27\",\r\n \"157.55.153.224/28\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"168.62.128.0/19\",\r\n \"191.238.144.0/20\",\r\n \"191.238.160.0/19\",\r\n
+ \ \"191.238.224.0/19\",\r\n \"2603:1030:800::/48\",\r\n \"2603:1030:802::/47\",\r\n
+ \ \"2603:1030:804::/58\",\r\n \"2603:1030:804:40::/60\",\r\n
+ \ \"2603:1030:804:53::/64\",\r\n \"2603:1030:804:54::/64\",\r\n
+ \ \"2603:1030:804:5b::/64\",\r\n \"2603:1030:804:5c::/62\",\r\n
+ \ \"2603:1030:804:60::/62\",\r\n \"2603:1030:804:67::/64\",\r\n
+ \ \"2603:1030:804:68::/61\",\r\n \"2603:1030:804:70::/60\",\r\n
+ \ \"2603:1030:804:80::/59\",\r\n \"2603:1030:804:a0::/62\",\r\n
+ \ \"2603:1030:804:a4::/64\",\r\n \"2603:1030:804:a6::/63\",\r\n
+ \ \"2603:1030:804:a8::/61\",\r\n \"2603:1030:804:b0::/62\",\r\n
+ \ \"2603:1030:804:b4::/64\",\r\n \"2603:1030:804:b6::/63\",\r\n
+ \ \"2603:1030:804:b8::/61\",\r\n \"2603:1030:804:c0::/61\",\r\n
+ \ \"2603:1030:804:c8::/62\",\r\n \"2603:1030:804:cc::/63\",\r\n
+ \ \"2603:1030:804:d2::/63\",\r\n \"2603:1030:804:d4::/62\",\r\n
+ \ \"2603:1030:804:d8::/61\",\r\n \"2603:1030:804:e0::/59\",\r\n
+ \ \"2603:1030:804:100::/61\",\r\n \"2603:1030:804:108::/62\",\r\n
+ \ \"2603:1030:805::/48\",\r\n \"2603:1030:806::/48\",\r\n
+ \ \"2603:1030:807::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2500:24::/64\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1037:1:140::/59\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f403:c10c::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:f90c::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southeastasia\",\r\n \"id\": \"AzureCloud.southeastasia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.0.0/17\",\r\n
+ \ \"13.76.0.0/16\",\r\n \"13.104.149.0/26\",\r\n \"13.104.153.0/27\",\r\n
+ \ \"13.104.153.32/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.192/26\",\r\n
+ \ \"13.104.154.0/25\",\r\n \"13.104.213.128/25\",\r\n \"20.43.128.0/18\",\r\n
+ \ \"20.44.192.0/18\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.98.0/24\",\r\n \"20.60.136.0/24\",\r\n
+ \ \"20.60.138.0/23\",\r\n \"20.135.84.0/22\",\r\n \"20.135.88.0/23\",\r\n
+ \ \"20.150.17.128/25\",\r\n \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.184.0.0/18\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.140.0/25\",\r\n \"20.190.163.0/24\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n \"20.197.64.0/18\",\r\n
+ \ \"20.198.128.0/17\",\r\n \"23.97.48.0/20\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.101.16.0/20\",\r\n \"40.65.128.0/18\",\r\n
+ \ \"40.78.223.0/24\",\r\n \"40.78.232.0/21\",\r\n \"40.79.206.32/27\",\r\n
+ \ \"40.82.28.0/22\",\r\n \"40.87.196.0/22\",\r\n \"40.90.133.192/26\",\r\n
+ \ \"40.90.134.0/26\",\r\n \"40.90.137.64/27\",\r\n \"40.90.138.96/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.224/27\",\r\n \"40.90.154.128/26\",\r\n
+ \ \"40.90.160.0/19\",\r\n \"40.119.192.0/18\",\r\n \"40.126.12.0/25\",\r\n
+ \ \"40.126.35.0/24\",\r\n \"52.108.68.0/23\",\r\n \"52.108.91.0/24\",\r\n
+ \ \"52.108.184.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.236.0/22\",\r\n \"52.109.124.0/22\",\r\n \"52.111.240.0/24\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.131.0/24\",\r\n
+ \ \"52.114.8.0/21\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.80.0/22\",\r\n \"52.114.216.0/22\",\r\n \"52.115.32.0/22\",\r\n
+ \ \"52.115.36.0/23\",\r\n \"52.115.97.0/24\",\r\n \"52.120.144.0/21\",\r\n
+ \ \"52.120.156.0/24\",\r\n \"52.121.128.0/20\",\r\n \"52.121.144.0/21\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.139.192.0/18\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.210.0/24\",\r\n \"52.148.64.0/18\",\r\n \"52.163.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.237.64.0/18\",\r\n \"52.239.129.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n \"52.245.80.0/22\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"104.43.0.0/17\",\r\n \"104.44.89.32/27\",\r\n
+ \ \"104.44.90.128/27\",\r\n \"104.44.92.32/27\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.95.192/28\",\r\n \"104.44.95.224/28\",\r\n \"104.215.128.0/17\",\r\n
+ \ \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n \"137.116.128.0/19\",\r\n
+ \ \"138.91.32.0/20\",\r\n \"168.63.90.0/24\",\r\n \"168.63.91.0/26\",\r\n
+ \ \"168.63.160.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.238.64.0/23\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.224.0/20\",\r\n \"2603:1040::/47\",\r\n
+ \ \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n \"2603:1040:5::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:2000:180::/59\",\r\n \"2603:1047:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southfrance\",\r\n
+ \ \"id\": \"AzureCloud.southfrance\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.39.80.0/20\",\r\n \"20.47.28.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.150.19.0/24\",\r\n \"20.190.147.128/25\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"40.79.176.0/21\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.96.0/20\",\r\n \"40.82.224.0/20\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.136.192/27\",\r\n \"40.90.147.224/27\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.50.0/24\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.138.128.0/19\",\r\n \"51.138.160.0/21\",\r\n \"52.108.188.0/24\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.109.72.0/22\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.114.108.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.128.0/18\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\",\r\n
+ \ \"52.245.120.0/22\",\r\n \"2603:1020:900::/47\",\r\n \"2603:1020:902::/48\",\r\n
+ \ \"2603:1020:904::/48\",\r\n \"2603:1020:905::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:3000:1a0::/59\",\r\n \"2603:1027:1:1a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southindia\",\r\n
+ \ \"id\": \"AzureCloud.southindia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.64.0/18\",\r\n \"13.104.153.128/26\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.41.192.0/18\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.72.0/23\",\r\n \"20.60.10.0/24\",\r\n
+ \ \"20.135.42.0/23\",\r\n \"20.150.24.0/24\",\r\n \"20.190.145.128/25\",\r\n
+ \ \"20.190.174.0/24\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"40.78.192.0/21\",\r\n \"40.79.213.0/24\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.87.216.0/22\",\r\n \"40.90.26.64/26\",\r\n \"40.90.137.160/27\",\r\n
+ \ \"40.126.17.128/25\",\r\n \"40.126.46.0/24\",\r\n \"52.108.192.0/24\",\r\n
+ \ \"52.108.230.0/23\",\r\n \"52.109.60.0/22\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.113.15.0/24\",\r\n \"52.114.24.0/22\",\r\n \"52.136.17.0/24\",\r\n
+ \ \"52.140.0.0/18\",\r\n \"52.172.0.0/17\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.188.0/24\",\r\n \"52.245.84.0/22\",\r\n \"104.44.92.160/27\",\r\n
+ \ \"104.44.94.208/28\",\r\n \"104.47.214.0/23\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"2603:1040:c00::/46\",\r\n \"2603:1040:c05::/48\",\r\n
+ \ \"2603:1040:c06::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:2000:60::/59\",\r\n
+ \ \"2603:1047:1:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.switzerlandn\",\r\n \"id\": \"AzureCloud.switzerlandn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.32/27\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"20.47.53.0/24\",\r\n \"20.47.71.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.190.183.0/24\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"40.90.30.128/27\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.119.80.0/22\",\r\n \"40.126.55.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"51.103.128.0/18\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.107.0.0/18\",\r\n \"51.107.64.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.200.0/21\",\r\n \"51.107.240.0/21\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.96.0/24\",\r\n \"52.109.156.0/23\",\r\n \"52.111.202.0/24\",\r\n
+ \ \"52.114.226.0/24\",\r\n \"52.239.251.0/24\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.175.0/24\",\r\n \"52.253.176.0/24\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:3000:60::/59\",\r\n \"2603:1027:1:60::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.switzerlandw\",\r\n
+ \ \"id\": \"AzureCloud.switzerlandw\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.0/27\",\r\n \"13.104.212.0/26\",\r\n
+ \ \"20.47.26.0/24\",\r\n \"20.47.67.0/24\",\r\n \"20.47.103.0/24\",\r\n
+ \ \"20.60.176.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.199.192.0/18\",\r\n
+ \ \"40.90.19.32/27\",\r\n \"40.90.128.192/28\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.195.0/24\",\r\n \"51.103.192.0/27\",\r\n
+ \ \"51.107.96.0/19\",\r\n \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n
+ \ \"51.107.160.0/20\",\r\n \"51.107.192.0/21\",\r\n \"51.107.224.0/20\",\r\n
+ \ \"51.107.248.0/21\",\r\n \"52.108.179.0/24\",\r\n \"52.108.200.0/24\",\r\n
+ \ \"52.109.158.0/23\",\r\n \"52.111.203.0/24\",\r\n \"52.114.230.0/24\",\r\n
+ \ \"52.239.250.0/24\",\r\n \"52.253.166.0/24\",\r\n \"2603:1020:b00::/47\",\r\n
+ \ \"2603:1020:b03::/48\",\r\n \"2603:1020:b04::/48\",\r\n
+ \ \"2603:1026:240c::/48\",\r\n \"2603:1026:2500:20::/64\",\r\n
+ \ \"2603:1026:3000:120::/59\",\r\n \"2603:1027:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaecentral\",\r\n
+ \ \"id\": \"AzureCloud.uaecentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.159.128/26\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.45.64.0/19\",\r\n \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n
+ \ \"20.47.54.0/24\",\r\n \"20.47.94.0/24\",\r\n \"20.135.36.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"40.82.52.0/22\",\r\n \"40.90.16.64/27\",\r\n \"40.90.128.48/28\",\r\n
+ \ \"40.90.151.224/27\",\r\n \"40.119.76.0/22\",\r\n \"40.120.0.0/20\",\r\n
+ \ \"40.125.0.0/19\",\r\n \"40.126.60.0/24\",\r\n \"40.126.193.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"52.108.183.0/24\",\r\n \"52.108.204.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.111.247.0/24\",\r\n \"52.114.232.0/24\",\r\n
+ \ \"52.143.221.0/24\",\r\n \"52.239.233.0/25\",\r\n \"2603:1040:b00::/47\",\r\n
+ \ \"2603:1040:b03::/48\",\r\n \"2603:1040:b04::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1047:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaenorth\",\r\n
+ \ \"id\": \"AzureCloud.uaenorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.151.64/26\",\r\n \"13.104.151.128/26\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.64/26\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.136.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.46.32.0/19\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.192.0/21\",\r\n \"20.47.55.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.60.21.0/24\",\r\n \"20.74.128.0/18\",\r\n
+ \ \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n \"20.190.187.0/24\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"40.90.16.96/27\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.119.72.0/22\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.120.64.0/18\",\r\n \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.192.0/24\",\r\n \"52.108.70.0/23\",\r\n
+ \ \"52.108.92.0/24\",\r\n \"52.109.162.0/23\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.112.200.0/22\",\r\n \"52.112.204.0/23\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.121.100.0/22\",\r\n \"52.121.104.0/23\",\r\n
+ \ \"52.143.202.0/24\",\r\n \"52.143.222.0/23\",\r\n \"52.239.233.128/25\",\r\n
+ \ \"65.52.248.0/21\",\r\n \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1047:1:100::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uknorth\",\r\n \"id\": \"AzureCloud.uknorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.87.64.0/18\",\r\n
+ \ \"20.39.144.0/20\",\r\n \"20.45.160.0/19\",\r\n \"20.150.46.0/24\",\r\n
+ \ \"20.190.143.128/25\",\r\n \"20.190.170.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.80.16.0/22\",\r\n \"40.81.96.0/20\",\r\n \"40.90.130.112/28\",\r\n
+ \ \"40.90.143.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.126.15.128/25\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"51.11.64.0/19\",\r\n \"51.105.80.0/21\",\r\n
+ \ \"51.141.129.32/27\",\r\n \"51.142.128.0/17\",\r\n \"52.108.137.0/24\",\r\n
+ \ \"52.109.36.0/22\",\r\n \"52.136.19.0/24\",\r\n \"2603:1020:300::/47\",\r\n
+ \ \"2603:1020:302::/48\",\r\n \"2603:1020:304::/48\",\r\n
+ \ \"2603:1020:305::/48\",\r\n \"2603:1026:240f::/48\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:3000:1c0::/59\",\r\n
+ \ \"2603:1027:1:1c0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uksouth\",\r\n \"id\": \"AzureCloud.uksouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.129.128/26\",\r\n
+ \ \"13.104.145.160/27\",\r\n \"13.104.146.64/26\",\r\n \"13.104.159.0/25\",\r\n
+ \ \"20.38.106.0/23\",\r\n \"20.39.208.0/20\",\r\n \"20.39.224.0/21\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.47.68.0/24\",\r\n
+ \ \"20.47.114.0/24\",\r\n \"20.49.128.0/17\",\r\n \"20.50.96.0/19\",\r\n
+ \ \"20.58.0.0/18\",\r\n \"20.60.17.0/24\",\r\n \"20.60.166.0/23\",\r\n
+ \ \"20.68.0.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n
+ \ \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n \"20.150.41.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.190.143.0/25\",\r\n \"20.190.169.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.80.0.0/22\",\r\n \"40.81.128.0/19\",\r\n
+ \ \"40.82.88.0/22\",\r\n \"40.90.17.32/27\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.128.112/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.131.64/27\",\r\n \"40.90.139.64/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.153.64/27\",\r\n \"40.90.154.0/26\",\r\n \"40.120.32.0/19\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.41.0/24\",\r\n \"51.11.0.0/18\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.104.0.0/19\",\r\n \"51.104.192.0/18\",\r\n
+ \ \"51.105.0.0/18\",\r\n \"51.105.64.0/20\",\r\n \"51.132.0.0/18\",\r\n
+ \ \"51.132.128.0/17\",\r\n \"51.140.0.0/17\",\r\n \"51.140.128.0/18\",\r\n
+ \ \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n \"51.141.130.0/25\",\r\n
+ \ \"51.141.135.0/24\",\r\n \"51.141.192.0/18\",\r\n \"51.143.128.0/18\",\r\n
+ \ \"51.143.208.0/20\",\r\n \"51.143.224.0/19\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"52.108.50.0/23\",\r\n \"52.108.88.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.109.28.0/22\",\r\n \"52.111.242.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.240.0/20\",\r\n \"52.113.128.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.224.0/19\",\r\n
+ \ \"52.114.88.0/22\",\r\n \"52.120.160.0/19\",\r\n \"52.120.240.0/20\",\r\n
+ \ \"52.136.21.0/24\",\r\n \"52.151.64.0/18\",\r\n \"52.239.187.0/25\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.245.64.0/22\",\r\n \"52.253.162.0/23\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"2603:1020:700::/47\",\r\n \"2603:1020:702::/48\",\r\n
+ \ \"2603:1020:704::/48\",\r\n \"2603:1020:705::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2500:18::/64\",\r\n
+ \ \"2603:1026:3000:e0::/59\",\r\n \"2603:1027:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uksouth2\",\r\n
+ \ \"id\": \"AzureCloud.uksouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.0.0/18\",\r\n \"20.150.27.0/24\",\r\n \"20.190.172.0/24\",\r\n
+ \ \"40.79.201.0/24\",\r\n \"40.80.12.0/22\",\r\n \"40.81.160.0/20\",\r\n
+ \ \"40.90.130.128/28\",\r\n \"40.90.143.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.126.44.0/24\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.156.0/22\",\r\n \"51.142.0.0/17\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"52.108.138.0/24\",\r\n
+ \ \"52.109.40.0/22\",\r\n \"52.136.18.0/24\",\r\n \"2603:1020:400::/47\",\r\n
+ \ \"2603:1020:402::/48\",\r\n \"2603:1020:404::/48\",\r\n
+ \ \"2603:1020:405::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:3000:40::/59\",\r\n
+ \ \"2603:1027:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.ukwest\",\r\n \"id\": \"AzureCloud.ukwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"20.39.160.0/21\",\r\n
+ \ \"20.40.104.0/21\",\r\n \"20.47.56.0/24\",\r\n \"20.47.82.0/23\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.60.164.0/23\",\r\n \"20.68.64.0/18\",\r\n
+ \ \"20.77.192.0/18\",\r\n \"20.90.0.0/18\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.190.144.0/25\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.81.112.0/20\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.90.28.192/26\",\r\n \"40.90.29.0/26\",\r\n \"40.90.131.96/27\",\r\n
+ \ \"40.90.139.96/27\",\r\n \"40.90.157.192/27\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.43.0/24\",\r\n \"51.11.96.0/19\",\r\n \"51.104.32.0/19\",\r\n
+ \ \"51.132.64.0/18\",\r\n \"51.137.128.0/18\",\r\n \"51.140.192.0/18\",\r\n
+ \ \"51.141.0.0/17\",\r\n \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.128/26\",\r\n \"51.141.134.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"52.108.189.0/24\",\r\n \"52.108.224.0/23\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.111.205.0/24\",\r\n \"52.112.168.0/22\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.230.0/24\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.92.0/22\",\r\n \"52.136.20.0/24\",\r\n
+ \ \"52.142.128.0/18\",\r\n \"52.239.240.0/24\",\r\n \"104.44.90.0/27\",\r\n
+ \ \"2603:1020:600::/47\",\r\n \"2603:1020:602::/48\",\r\n
+ \ \"2603:1020:604::/48\",\r\n \"2603:1020:605::/48\",\r\n
+ \ \"2603:1026:2407::/48\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1027:1:200::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westcentralus\",\r\n \"id\": \"AzureCloud.westcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.128.0/17\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.215.128/25\",\r\n \"13.104.219.0/25\",\r\n \"20.47.4.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.104.0/24\",\r\n \"20.51.32.0/19\",\r\n
+ \ \"20.55.128.0/18\",\r\n \"20.57.224.0/19\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.60.4.0/24\",\r\n \"20.69.0.0/18\",\r\n \"20.135.72.0/23\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"20.190.136.0/24\",\r\n \"20.190.158.0/24\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.77.128.0/25\",\r\n \"40.77.131.192/27\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.128/25\",\r\n \"40.77.166.0/25\",\r\n
+ \ \"40.77.166.128/28\",\r\n \"40.77.173.0/24\",\r\n \"40.77.175.32/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.185.0/25\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.64/27\",\r\n \"40.77.227.0/24\",\r\n \"40.77.232.0/25\",\r\n
+ \ \"40.77.235.0/24\",\r\n \"40.77.236.96/27\",\r\n \"40.77.246.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.79.205.240/28\",\r\n \"40.79.206.224/27\",\r\n
+ \ \"40.79.207.0/27\",\r\n \"40.90.131.0/27\",\r\n \"40.90.138.192/28\",\r\n
+ \ \"40.90.139.0/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.151.0/26\",\r\n
+ \ \"40.90.151.128/28\",\r\n \"40.90.152.0/25\",\r\n \"40.93.6.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.123.136.0/24\",\r\n \"40.126.8.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"52.101.24.0/22\",\r\n \"52.101.40.0/24\",\r\n
+ \ \"52.102.133.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.108.181.0/24\",\r\n \"52.108.202.0/24\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.111.206.0/24\",\r\n \"52.112.93.0/24\",\r\n \"52.113.207.0/24\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.143.214.0/24\",\r\n \"52.148.0.0/18\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.153.128.0/18\",\r\n \"52.159.0.0/18\",\r\n
+ \ \"52.161.0.0/16\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.245.60.0/22\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"64.4.8.0/24\",\r\n \"64.4.54.0/24\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"104.44.89.96/27\",\r\n \"104.47.224.0/20\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.40.160/28\",\r\n \"157.55.12.128/26\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"207.68.174.48/29\",\r\n \"2603:1030:b00::/47\",\r\n \"2603:1030:b03::/48\",\r\n
+ \ \"2603:1030:b04::/48\",\r\n \"2603:1030:b05::/48\",\r\n
+ \ \"2603:1036:9ff:ffff::/64\",\r\n \"2603:1036:2408::/48\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1037:1:180::/59\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f910::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westeurope\",\r\n
+ \ \"id\": \"AzureCloud.westeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.0.0/17\",\r\n \"13.73.128.0/18\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.80.0.0/15\",\r\n \"13.88.200.0/21\",\r\n \"13.93.0.0/17\",\r\n
+ \ \"13.94.128.0/17\",\r\n \"13.95.0.0/16\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.128/25\",\r\n \"13.104.158.176/28\",\r\n
+ \ \"13.104.209.0/24\",\r\n \"13.104.214.0/25\",\r\n \"13.104.218.128/25\",\r\n
+ \ \"13.105.22.0/24\",\r\n \"13.105.23.128/25\",\r\n \"13.105.28.32/28\",\r\n
+ \ \"13.105.29.128/25\",\r\n \"13.105.60.48/28\",\r\n \"13.105.60.96/27\",\r\n
+ \ \"13.105.60.128/27\",\r\n \"13.105.66.144/28\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.38.200.0/22\",\r\n \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n
+ \ \"20.47.30.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.115.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.50.0.0/18\",\r\n \"20.50.128.0/17\",\r\n
+ \ \"20.54.128.0/17\",\r\n \"20.56.0.0/16\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.67.0.0/17\",\r\n \"20.71.0.0/16\",\r\n
+ \ \"20.73.0.0/16\",\r\n \"20.76.0.0/16\",\r\n \"20.82.0.0/17\",\r\n
+ \ \"20.86.0.0/17\",\r\n \"20.135.24.0/23\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.190.137.0/24\",\r\n \"20.190.160.0/24\",\r\n \"23.97.128.0/17\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.100.0.0/20\",\r\n \"23.101.64.0/20\",\r\n
+ \ \"40.67.192.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.74.0.0/18\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.82.92.0/22\",\r\n \"40.87.184.0/22\",\r\n
+ \ \"40.90.17.64/27\",\r\n \"40.90.18.192/26\",\r\n \"40.90.20.128/25\",\r\n
+ \ \"40.90.21.0/25\",\r\n \"40.90.130.0/27\",\r\n \"40.90.133.0/27\",\r\n
+ \ \"40.90.134.64/26\",\r\n \"40.90.134.128/26\",\r\n \"40.90.138.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.145.192/27\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.128/27\",\r\n \"40.90.150.128/25\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.91.28.0/22\",\r\n \"40.91.192.0/18\",\r\n
+ \ \"40.112.36.128/25\",\r\n \"40.112.37.0/26\",\r\n \"40.112.38.192/26\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.114.128.0/17\",\r\n \"40.115.0.0/18\",\r\n \"40.118.0.0/17\",\r\n
+ \ \"40.119.128.0/19\",\r\n \"40.126.9.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.124.0.0/17\",\r\n
+ \ \"51.124.128.0/18\",\r\n \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.144.0.0/16\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.108.24.0/21\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.80.0/24\",\r\n \"52.108.108.0/23\",\r\n \"52.108.110.0/24\",\r\n
+ \ \"52.109.88.0/22\",\r\n \"52.111.243.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.83.0/24\",\r\n \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n
+ \ \"52.112.110.0/23\",\r\n \"52.112.144.0/20\",\r\n \"52.112.197.0/24\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.233.0/24\",\r\n \"52.112.237.0/24\",\r\n
+ \ \"52.112.238.0/24\",\r\n \"52.113.9.0/24\",\r\n \"52.113.37.0/24\",\r\n
+ \ \"52.113.83.0/24\",\r\n \"52.113.130.0/24\",\r\n \"52.113.144.0/21\",\r\n
+ \ \"52.113.199.0/24\",\r\n \"52.114.64.0/21\",\r\n \"52.114.72.0/22\",\r\n
+ \ \"52.114.116.0/22\",\r\n \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n
+ \ \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n \"52.115.8.0/22\",\r\n
+ \ \"52.120.128.0/21\",\r\n \"52.120.208.0/20\",\r\n \"52.121.24.0/21\",\r\n
+ \ \"52.121.64.0/20\",\r\n \"52.125.140.0/23\",\r\n \"52.136.192.0/18\",\r\n
+ \ \"52.137.0.0/18\",\r\n \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.208.0/24\",\r\n \"52.148.192.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.174.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.147.0/24\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.236.128.0/17\",\r\n \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n
+ \ \"52.239.242.0/23\",\r\n \"52.245.48.0/22\",\r\n \"52.245.124.0/22\",\r\n
+ \ \"65.52.128.0/19\",\r\n \"104.40.128.0/17\",\r\n \"104.44.89.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.93.0/27\",\r\n \"104.44.93.192/27\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.45.0.0/18\",\r\n
+ \ \"104.45.64.0/20\",\r\n \"104.46.32.0/19\",\r\n \"104.47.128.0/18\",\r\n
+ \ \"104.47.216.64/26\",\r\n \"104.214.192.0/18\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.117.128.0/17\",\r\n \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"168.61.56.0/21\",\r\n \"168.63.0.0/19\",\r\n
+ \ \"168.63.96.0/19\",\r\n \"191.233.64.0/18\",\r\n \"191.237.232.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"193.149.80.0/21\",\r\n \"213.199.128.0/20\",\r\n
+ \ \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n \"213.199.180.192/27\",\r\n
+ \ \"213.199.183.0/24\",\r\n \"2603:1020:200::/46\",\r\n \"2603:1020:205::/48\",\r\n
+ \ \"2603:1020:206::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2500:24::/64\",\r\n \"2603:1026:3000:140::/59\",\r\n
+ \ \"2603:1027:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westindia\",\r\n \"id\": \"AzureCloud.westindia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.157.128/25\",\r\n
+ \ \"20.38.128.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.124.0/23\",\r\n \"20.135.44.0/23\",\r\n \"20.150.18.128/25\",\r\n
+ \ \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.176.0/24\",\r\n \"20.192.64.0/19\",\r\n \"40.79.219.0/24\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.87.220.0/22\",\r\n \"40.90.26.0/26\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.126.18.128/25\",\r\n \"40.126.48.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.94.0/24\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.111.244.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.114.28.0/22\",\r\n
+ \ \"52.136.16.0/24\",\r\n \"52.136.32.0/19\",\r\n \"52.140.128.0/18\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.249.64.0/19\",\r\n \"104.44.93.224/27\",\r\n
+ \ \"104.44.95.112/28\",\r\n \"104.47.212.0/23\",\r\n \"104.211.128.0/18\",\r\n
+ \ \"2603:1040:800::/46\",\r\n \"2603:1040:805::/48\",\r\n
+ \ \"2603:1040:806::/48\",\r\n \"2603:1046:1408::/48\",\r\n
+ \ \"2603:1046:1500::/64\",\r\n \"2603:1046:2000:20::/59\",\r\n
+ \ \"2603:1047:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westus\",\r\n \"id\": \"AzureCloud.westus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.73.32.0/19\",\r\n \"13.83.0.0/16\",\r\n \"13.86.128.0/17\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.91.0.0/16\",\r\n \"13.93.128.0/17\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.158.16/28\",\r\n \"13.104.158.64/26\",\r\n \"13.104.208.96/27\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.105.17.64/26\",\r\n
+ \ \"13.105.17.128/26\",\r\n \"13.105.19.128/25\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.97.0/27\",\r\n \"20.43.192.0/18\",\r\n
+ \ \"20.47.2.0/24\",\r\n \"20.47.22.0/23\",\r\n \"20.47.110.0/24\",\r\n
+ \ \"20.47.116.0/24\",\r\n \"20.49.120.0/21\",\r\n \"20.57.192.0/19\",\r\n
+ \ \"20.59.64.0/18\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.66.0.0/17\",\r\n \"20.135.74.0/23\",\r\n \"20.150.34.0/23\",\r\n
+ \ \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.157.32.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.184.128.0/17\",\r\n \"20.189.128.0/18\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.153.0/24\",\r\n \"23.99.0.0/18\",\r\n
+ \ \"23.99.64.0/19\",\r\n \"23.100.32.0/20\",\r\n \"23.101.192.0/20\",\r\n
+ \ \"40.65.0.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.216.0/24\",\r\n \"40.80.152.0/21\",\r\n \"40.81.0.0/20\",\r\n
+ \ \"40.82.248.0/21\",\r\n \"40.83.128.0/17\",\r\n \"40.85.144.0/20\",\r\n
+ \ \"40.86.160.0/19\",\r\n \"40.87.160.0/22\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.18.128/26\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.128.128/28\",\r\n \"40.90.131.192/27\",\r\n
+ \ \"40.90.135.0/26\",\r\n \"40.90.139.192/27\",\r\n \"40.90.146.0/28\",\r\n
+ \ \"40.90.148.128/27\",\r\n \"40.90.153.96/27\",\r\n \"40.90.156.128/26\",\r\n
+ \ \"40.93.0.0/23\",\r\n \"40.112.128.0/17\",\r\n \"40.118.128.0/17\",\r\n
+ \ \"40.125.32.0/19\",\r\n \"40.126.4.0/24\",\r\n \"40.126.25.0/24\",\r\n
+ \ \"52.101.0.0/22\",\r\n \"52.101.16.0/22\",\r\n \"52.101.41.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.103.0.0/24\",\r\n
+ \ \"52.103.2.0/24\",\r\n \"52.103.128.0/24\",\r\n \"52.108.0.0/21\",\r\n
+ \ \"52.108.78.0/24\",\r\n \"52.109.0.0/22\",\r\n \"52.111.245.0/24\",\r\n
+ \ \"52.112.106.0/23\",\r\n \"52.112.114.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.114.152.0/21\",\r\n \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n
+ \ \"52.115.140.0/22\",\r\n \"52.115.144.0/20\",\r\n \"52.120.96.0/19\",\r\n
+ \ \"52.121.36.0/22\",\r\n \"52.123.1.0/24\",\r\n \"52.137.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.155.32.0/19\",\r\n \"52.157.0.0/18\",\r\n
+ \ \"52.159.128.0/17\",\r\n \"52.160.0.0/16\",\r\n \"52.180.0.0/17\",\r\n
+ \ \"52.190.128.0/17\",\r\n \"52.225.0.0/17\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.238.0.0/18\",\r\n \"52.239.0.0/17\",\r\n
+ \ \"52.239.160.0/22\",\r\n \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.241.0.0/16\",\r\n \"52.245.12.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.246.0.0/17\",\r\n \"52.248.128.0/17\",\r\n \"52.250.192.0/18\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"65.52.112.0/20\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.44.88.0/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.92.96/27\",\r\n \"104.44.94.0/28\",\r\n \"104.44.95.128/27\",\r\n
+ \ \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n \"104.209.0.0/18\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"137.116.184.0/21\",\r\n \"137.117.0.0/19\",\r\n
+ \ \"137.135.0.0/18\",\r\n \"138.91.64.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.56.160.0/21\",\r\n \"168.61.0.0/19\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.62.0.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.63.88.0/23\",\r\n
+ \ \"191.236.64.0/18\",\r\n \"191.238.70.0/23\",\r\n \"191.239.0.0/18\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1036:2400::/48\",\r\n
+ \ \"2603:1036:2500:10::/64\",\r\n \"2603:1036:3000:1c0::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2a01:111:f100:3000::/52\",\r\n
+ \ \"2a01:111:f403:c000::/64\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:f800::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westus2\",\r\n
+ \ \"id\": \"AzureCloud.westus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.128.0/17\",\r\n \"13.77.128.0/18\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.145.0/26\",\r\n \"13.104.208.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.128/26\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.38.99.0/24\",\r\n \"20.42.128.0/18\",\r\n
+ \ \"20.47.62.0/23\",\r\n \"20.47.120.0/23\",\r\n \"20.51.8.0/21\",\r\n
+ \ \"20.51.64.0/18\",\r\n \"20.57.128.0/18\",\r\n \"20.59.0.0/18\",\r\n
+ \ \"20.60.20.0/24\",\r\n \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.64.128.0/17\",\r\n \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n
+ \ \"20.72.192.0/18\",\r\n \"20.80.128.0/18\",\r\n \"20.83.64.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.135.18.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.68.0/24\",\r\n \"20.150.78.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n \"20.157.50.0/23\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.190.0.0/18\",\r\n \"20.190.133.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.191.64.0/18\",\r\n \"23.98.47.0/24\",\r\n
+ \ \"23.102.192.0/21\",\r\n \"23.102.203.0/24\",\r\n \"23.103.64.32/27\",\r\n
+ \ \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n \"40.64.64.0/18\",\r\n
+ \ \"40.64.128.0/21\",\r\n \"40.65.64.0/18\",\r\n \"40.77.136.0/28\",\r\n
+ \ \"40.77.136.64/28\",\r\n \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n
+ \ \"40.77.162.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.169.0/24\",\r\n
+ \ \"40.77.175.64/27\",\r\n \"40.77.180.0/23\",\r\n \"40.77.182.64/27\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.128/26\",\r\n \"40.77.200.0/25\",\r\n \"40.77.202.0/24\",\r\n
+ \ \"40.77.224.96/27\",\r\n \"40.77.230.0/24\",\r\n \"40.77.232.128/25\",\r\n
+ \ \"40.77.234.224/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.240.128/25\",\r\n
+ \ \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.249.0/24\",\r\n \"40.77.250.0/24\",\r\n \"40.77.254.128/25\",\r\n
+ \ \"40.78.208.32/30\",\r\n \"40.78.217.0/24\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.206.128/27\",\r\n \"40.80.160.0/24\",\r\n \"40.82.36.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.90.16.192/26\",\r\n \"40.90.131.32/27\",\r\n
+ \ \"40.90.132.48/28\",\r\n \"40.90.136.224/27\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.139.32/27\",\r\n \"40.90.146.32/27\",\r\n \"40.90.148.192/27\",\r\n
+ \ \"40.90.153.0/26\",\r\n \"40.90.192.0/19\",\r\n \"40.91.0.0/22\",\r\n
+ \ \"40.91.64.0/18\",\r\n \"40.91.160.0/19\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n \"40.125.64.0/18\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.26.0/24\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.28.0/22\",\r\n
+ \ \"52.101.42.0/24\",\r\n \"52.102.134.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.72.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.109.24.0/22\",\r\n \"52.111.246.0/24\",\r\n \"52.112.105.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.115.0/24\",\r\n \"52.114.148.0/22\",\r\n
+ \ \"52.115.55.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.137.64.0/18\",\r\n \"52.143.64.0/18\",\r\n \"52.143.197.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.148.128.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.151.0.0/18\",\r\n \"52.156.64.0/18\",\r\n \"52.156.128.0/19\",\r\n
+ \ \"52.158.224.0/19\",\r\n \"52.175.192.0/18\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.191.128.0/18\",\r\n \"52.229.0.0/18\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.233.64.0/18\",\r\n \"52.235.64.0/18\",\r\n \"52.239.148.128/25\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.245.52.0/22\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.192.0/18\",\r\n \"52.250.0.0/17\",\r\n \"65.52.111.0/24\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.112/28\",\r\n \"65.55.51.0/24\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.106.192/28\",\r\n \"65.55.106.240/28\",\r\n
+ \ \"65.55.107.0/28\",\r\n \"65.55.107.96/27\",\r\n \"65.55.110.0/24\",\r\n
+ \ \"65.55.120.0/24\",\r\n \"65.55.207.0/24\",\r\n \"65.55.209.0/25\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.219.64/26\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n \"104.44.89.128/27\",\r\n
+ \ \"104.44.89.192/27\",\r\n \"104.44.95.0/28\",\r\n \"131.253.12.160/28\",\r\n
+ \ \"131.253.12.228/30\",\r\n \"131.253.13.24/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.192/29\",\r\n
+ \ \"131.253.15.192/28\",\r\n \"131.253.35.128/26\",\r\n \"131.253.40.48/29\",\r\n
+ \ \"131.253.40.128/27\",\r\n \"131.253.41.0/24\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"157.55.2.128/26\",\r\n \"157.55.12.64/26\",\r\n
+ \ \"157.55.13.64/26\",\r\n \"157.55.39.0/24\",\r\n \"157.55.55.228/30\",\r\n
+ \ \"157.55.55.232/29\",\r\n \"157.55.55.240/28\",\r\n \"157.55.106.0/26\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.56.2.0/25\",\r\n \"157.56.3.128/25\",\r\n
+ \ \"157.56.19.224/27\",\r\n \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n
+ \ \"157.56.80.0/25\",\r\n \"168.62.64.0/19\",\r\n \"199.30.24.0/23\",\r\n
+ \ \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n \"199.30.27.160/27\",\r\n
+ \ \"199.30.31.192/26\",\r\n \"207.46.13.0/24\",\r\n \"207.68.174.192/28\",\r\n
+ \ \"209.240.212.0/23\",\r\n \"2603:1030:c00::/48\",\r\n \"2603:1030:c02::/47\",\r\n
+ \ \"2603:1030:c04::/48\",\r\n \"2603:1030:c05::/48\",\r\n
+ \ \"2603:1030:c06::/48\",\r\n \"2603:1030:c07::/48\",\r\n
+ \ \"2603:1030:d00::/48\",\r\n \"2603:1030:e01:2::/64\",\r\n
+ \ \"2603:1036:903::/64\",\r\n \"2603:1036:d20::/64\",\r\n
+ \ \"2603:1036:2409::/48\",\r\n \"2603:1036:2500:14::/64\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1037:1:c0::/59\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c804::/62\",\r\n
+ \ \"2a01:111:f403:d004::/62\",\r\n \"2a01:111:f403:d804::/62\",\r\n
+ \ \"2a01:111:f403:f804::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch\",\r\n \"id\": \"AzureCognitiveSearch\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.32.141/32\",\r\n \"13.83.22.45/32\",\r\n \"13.83.22.74/32\",\r\n
+ \ \"13.83.22.119/32\",\r\n \"13.86.5.51/32\",\r\n \"20.36.120.128/26\",\r\n
+ \ \"20.37.64.128/26\",\r\n \"20.37.156.128/26\",\r\n \"20.37.193.192/26\",\r\n
+ \ \"20.37.224.128/26\",\r\n \"20.38.84.0/26\",\r\n \"20.38.136.128/26\",\r\n
+ \ \"20.39.8.192/26\",\r\n \"20.40.123.36/32\",\r\n \"20.40.123.39/32\",\r\n
+ \ \"20.40.123.46/32\",\r\n \"20.40.123.72/32\",\r\n \"20.41.4.128/26\",\r\n
+ \ \"20.41.65.64/26\",\r\n \"20.41.193.64/26\",\r\n \"20.42.4.128/26\",\r\n
+ \ \"20.42.24.90/32\",\r\n \"20.42.29.212/32\",\r\n \"20.42.30.105/32\",\r\n
+ \ \"20.42.34.190/32\",\r\n \"20.42.35.204/32\",\r\n \"20.42.129.192/26\",\r\n
+ \ \"20.42.225.192/26\",\r\n \"20.43.41.64/26\",\r\n \"20.43.65.64/26\",\r\n
+ \ \"20.43.130.128/26\",\r\n \"20.44.74.182/32\",\r\n \"20.44.76.53/32\",\r\n
+ \ \"20.44.76.61/32\",\r\n \"20.44.76.86/32\",\r\n \"20.45.0.49/32\",\r\n
+ \ \"20.45.2.122/32\",\r\n \"20.45.112.128/26\",\r\n \"20.45.192.128/26\",\r\n
+ \ \"20.72.17.0/26\",\r\n \"20.150.160.128/26\",\r\n \"20.185.110.199/32\",\r\n
+ \ \"20.189.106.128/26\",\r\n \"20.189.129.94/32\",\r\n \"20.192.161.0/26\",\r\n
+ \ \"20.192.225.64/26\",\r\n \"23.100.238.27/32\",\r\n \"23.100.238.34/31\",\r\n
+ \ \"23.100.238.37/32\",\r\n \"40.65.173.157/32\",\r\n \"40.65.175.212/32\",\r\n
+ \ \"40.65.175.228/32\",\r\n \"40.66.56.233/32\",\r\n \"40.67.48.128/26\",\r\n
+ \ \"40.74.18.154/32\",\r\n \"40.74.30.0/26\",\r\n \"40.80.57.64/26\",\r\n
+ \ \"40.80.169.64/26\",\r\n \"40.80.186.192/26\",\r\n \"40.80.216.231/32\",\r\n
+ \ \"40.80.217.38/32\",\r\n \"40.80.219.46/32\",\r\n \"40.81.9.100/32\",\r\n
+ \ \"40.81.9.131/32\",\r\n \"40.81.9.203/32\",\r\n \"40.81.9.209/32\",\r\n
+ \ \"40.81.9.213/32\",\r\n \"40.81.9.221/32\",\r\n \"40.81.10.36/32\",\r\n
+ \ \"40.81.12.133/32\",\r\n \"40.81.15.8/32\",\r\n \"40.81.15.39/32\",\r\n
+ \ \"40.81.29.152/32\",\r\n \"40.81.188.130/32\",\r\n \"40.81.191.58/32\",\r\n
+ \ \"40.81.253.154/32\",\r\n \"40.82.155.65/32\",\r\n \"40.82.253.0/26\",\r\n
+ \ \"40.89.17.64/26\",\r\n \"40.90.190.180/32\",\r\n \"40.90.240.17/32\",\r\n
+ \ \"40.91.93.84/32\",\r\n \"40.91.127.116/32\",\r\n \"40.91.127.241/32\",\r\n
+ \ \"40.119.11.0/26\",\r\n \"51.12.41.64/26\",\r\n \"51.12.193.64/26\",\r\n
+ \ \"51.104.25.64/26\",\r\n \"51.105.80.128/26\",\r\n \"51.105.88.128/26\",\r\n
+ \ \"51.107.48.128/26\",\r\n \"51.107.144.128/26\",\r\n \"51.116.48.96/28\",\r\n
+ \ \"51.116.144.96/28\",\r\n \"51.120.40.128/26\",\r\n \"51.120.224.128/26\",\r\n
+ \ \"51.132.43.66/32\",\r\n \"51.137.161.64/26\",\r\n \"51.143.104.54/32\",\r\n
+ \ \"51.143.104.90/32\",\r\n \"51.143.192.128/26\",\r\n \"51.145.124.157/32\",\r\n
+ \ \"51.145.124.158/32\",\r\n \"51.145.176.249/32\",\r\n \"51.145.177.212/32\",\r\n
+ \ \"51.145.178.138/32\",\r\n \"51.145.178.140/32\",\r\n \"52.136.48.128/26\",\r\n
+ \ \"52.137.24.236/32\",\r\n \"52.137.26.114/32\",\r\n \"52.137.26.155/32\",\r\n
+ \ \"52.137.26.198/32\",\r\n \"52.137.27.49/32\",\r\n \"52.137.56.115/32\",\r\n
+ \ \"52.137.60.208/32\",\r\n \"52.139.0.47/32\",\r\n \"52.139.0.49/32\",\r\n
+ \ \"52.140.105.64/26\",\r\n \"52.140.233.105/32\",\r\n \"52.150.139.0/26\",\r\n
+ \ \"52.151.235.150/32\",\r\n \"52.151.235.242/32\",\r\n \"52.151.235.244/32\",\r\n
+ \ \"52.155.216.245/32\",\r\n \"52.155.217.84/32\",\r\n \"52.155.221.242/32\",\r\n
+ \ \"52.155.221.250/32\",\r\n \"52.155.222.35/32\",\r\n \"52.155.222.56/32\",\r\n
+ \ \"52.157.22.233/32\",\r\n \"52.157.231.64/32\",\r\n \"52.158.28.181/32\",\r\n
+ \ \"52.158.30.241/32\",\r\n \"52.158.208.11/32\",\r\n \"52.184.80.221/32\",\r\n
+ \ \"52.185.224.13/32\",\r\n \"52.185.224.38/32\",\r\n \"52.188.217.235/32\",\r\n
+ \ \"52.188.218.228/32\",\r\n \"52.188.218.239/32\",\r\n \"52.228.81.64/26\",\r\n
+ \ \"52.242.214.45/32\",\r\n \"52.253.133.74/32\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"102.133.128.33/32\",\r\n \"102.133.217.128/26\",\r\n
+ \ \"104.45.64.0/32\",\r\n \"104.45.64.147/32\",\r\n \"104.45.64.224/32\",\r\n
+ \ \"104.45.65.30/32\",\r\n \"104.45.65.89/32\",\r\n \"191.233.9.0/26\",\r\n
+ \ \"191.233.26.156/32\",\r\n \"191.235.225.64/26\",\r\n \"2603:1000:4::180/121\",\r\n
+ \ \"2603:1000:104:1::180/121\",\r\n \"2603:1010:6:1::180/121\",\r\n
+ \ \"2603:1010:101::180/121\",\r\n \"2603:1010:304::180/121\",\r\n
+ \ \"2603:1010:404::180/121\",\r\n \"2603:1020:5:1::180/121\",\r\n
+ \ \"2603:1020:206:1::180/121\",\r\n \"2603:1020:305::180/121\",\r\n
+ \ \"2603:1020:405::180/121\",\r\n \"2603:1020:605::180/121\",\r\n
+ \ \"2603:1020:705:1::180/121\",\r\n \"2603:1020:805:1::180/121\",\r\n
+ \ \"2603:1020:905::180/121\",\r\n \"2603:1020:a04:1::180/121\",\r\n
+ \ \"2603:1020:b04::180/121\",\r\n \"2603:1020:c04:1::180/121\",\r\n
+ \ \"2603:1020:d04::180/121\",\r\n \"2603:1020:e04:1::180/121\",\r\n
+ \ \"2603:1020:f04::180/121\",\r\n \"2603:1020:1004::180/121\",\r\n
+ \ \"2603:1020:1104::180/121\",\r\n \"2603:1030:f:1::180/121\",\r\n
+ \ \"2603:1030:10:1::180/121\",\r\n \"2603:1030:104:1::180/121\",\r\n
+ \ \"2603:1030:107::180/121\",\r\n \"2603:1030:210:1::180/121\",\r\n
+ \ \"2603:1030:40b:1::180/121\",\r\n \"2603:1030:40c:1::180/121\",\r\n
+ \ \"2603:1030:504:1::180/121\",\r\n \"2603:1030:608::180/121\",\r\n
+ \ \"2603:1030:807:1::180/121\",\r\n \"2603:1030:a07::180/121\",\r\n
+ \ \"2603:1030:b04::180/121\",\r\n \"2603:1030:c06:1::180/121\",\r\n
+ \ \"2603:1030:f05:1::180/121\",\r\n \"2603:1030:1005::180/121\",\r\n
+ \ \"2603:1040:5:1::180/121\",\r\n \"2603:1040:207::180/121\",\r\n
+ \ \"2603:1040:407:1::180/121\",\r\n \"2603:1040:606::180/121\",\r\n
+ \ \"2603:1040:806::180/121\",\r\n \"2603:1040:904:1::180/121\",\r\n
+ \ \"2603:1040:a06:1::180/121\",\r\n \"2603:1040:b04::180/121\",\r\n
+ \ \"2603:1040:c06::180/121\",\r\n \"2603:1040:d04::180/121\",\r\n
+ \ \"2603:1040:f05:1::180/121\",\r\n \"2603:1040:1104::180/121\",\r\n
+ \ \"2603:1050:6:1::180/121\",\r\n \"2603:1050:403::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.128/26\",\r\n \"2603:1010:304::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.128/26\",\r\n \"2603:1010:404::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.CentralIndia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.81.253.154/32\",\r\n \"52.140.105.64/26\",\r\n
+ \ \"2603:1040:a06:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"id\":
+ \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.128/26\",\r\n \"2603:1030:f:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastAsia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.189.106.128/26\",\r\n \"40.81.29.152/32\",\r\n
+ \ \"52.184.80.221/32\",\r\n \"2603:1040:207::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.8.192/26\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"2603:1030:40b:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.KoreaCentral\",\r\n \"id\":
+ \"AzureCognitiveSearch.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.65.64/26\",\r\n \"40.82.155.65/32\",\r\n \"2603:1040:f05:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.128/26\",\r\n \"2603:1020:b04::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.UKNorth\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.80.128/26\",\r\n \"2603:1020:305::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors\",\r\n
+ \ \"id\": \"AzureConnectors\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.86.57/32\",\r\n \"13.66.140.128/28\",\r\n
+ \ \"13.66.145.96/27\",\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n
+ \ \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n \"13.69.227.208/28\",\r\n
+ \ \"13.69.231.192/27\",\r\n \"13.70.72.192/28\",\r\n \"13.70.78.224/27\",\r\n
+ \ \"13.70.136.174/32\",\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"13.71.153.19/32\",\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"13.71.195.32/28\",\r\n \"13.71.199.192/27\",\r\n \"13.72.243.10/32\",\r\n
+ \ \"13.73.21.230/32\",\r\n \"13.73.244.224/27\",\r\n \"13.75.36.64/28\",\r\n
+ \ \"13.75.110.131/32\",\r\n \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"13.78.132.82/32\",\r\n \"13.86.223.32/27\",\r\n
+ \ \"13.87.56.224/28\",\r\n \"13.87.122.224/28\",\r\n \"13.89.171.80/28\",\r\n
+ \ \"13.89.178.64/27\",\r\n \"13.93.148.62/32\",\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n \"20.37.74.192/28\",\r\n
+ \ \"20.38.128.224/27\",\r\n \"20.43.123.0/27\",\r\n \"20.44.3.0/28\",\r\n
+ \ \"20.44.29.64/27\",\r\n \"20.53.0.0/27\",\r\n \"20.72.27.0/26\",\r\n
+ \ \"20.150.170.240/28\",\r\n \"20.150.173.64/26\",\r\n \"20.192.32.64/26\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"20.193.206.192/26\",\r\n \"23.100.208.0/27\",\r\n
+ \ \"40.67.58.240/28\",\r\n \"40.67.60.224/27\",\r\n \"40.69.106.240/28\",\r\n
+ \ \"40.69.111.0/27\",\r\n \"40.70.146.208/28\",\r\n \"40.70.151.96/27\",\r\n
+ \ \"40.71.11.80/28\",\r\n \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n
+ \ \"40.71.249.205/32\",\r\n \"40.74.100.224/28\",\r\n \"40.74.146.64/28\",\r\n
+ \ \"40.78.194.240/28\",\r\n \"40.78.202.96/28\",\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.79.178.240/28\",\r\n \"40.79.180.224/27\",\r\n
+ \ \"40.79.189.64/27\",\r\n \"40.80.180.64/27\",\r\n \"40.89.135.2/32\",\r\n
+ \ \"40.89.186.239/32\",\r\n \"40.91.208.65/32\",\r\n \"40.112.195.87/32\",\r\n
+ \ \"40.112.243.160/28\",\r\n \"40.114.40.132/32\",\r\n \"40.120.8.0/27\",\r\n
+ \ \"40.120.64.64/27\",\r\n \"51.12.98.240/28\",\r\n \"51.12.102.0/26\",\r\n
+ \ \"51.12.202.240/28\",\r\n \"51.12.205.192/26\",\r\n \"51.103.142.22/32\",\r\n
+ \ \"51.105.77.96/27\",\r\n \"51.107.59.16/28\",\r\n \"51.107.60.224/27\",\r\n
+ \ \"51.107.86.217/32\",\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"51.116.59.16/28\",\r\n \"51.116.60.192/27\",\r\n \"51.116.155.80/28\",\r\n
+ \ \"51.116.158.96/27\",\r\n \"51.116.211.212/32\",\r\n \"51.116.236.78/32\",\r\n
+ \ \"51.120.98.224/28\",\r\n \"51.120.100.192/27\",\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"51.140.61.124/32\",\r\n \"51.140.74.150/32\",\r\n
+ \ \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n \"51.140.211.0/28\",\r\n
+ \ \"51.140.212.224/27\",\r\n \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n
+ \ \"51.141.124.13/32\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"52.138.92.192/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.161.101.204/32\",\r\n \"52.161.102.22/32\",\r\n \"52.162.107.160/28\",\r\n
+ \ \"52.162.111.192/27\",\r\n \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n
+ \ \"52.166.78.89/32\",\r\n \"52.169.28.181/32\",\r\n \"52.171.130.92/32\",\r\n
+ \ \"52.172.211.12/32\",\r\n \"52.172.212.129/32\",\r\n \"52.173.241.27/32\",\r\n
+ \ \"52.173.245.164/32\",\r\n \"52.174.88.118/32\",\r\n \"52.175.23.169/32\",\r\n
+ \ \"52.178.150.68/32\",\r\n \"52.183.78.157/32\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"52.191.164.250/32\",\r\n \"52.225.129.144/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"65.52.250.208/28\",\r\n \"94.245.91.93/32\",\r\n \"102.37.64.0/27\",\r\n
+ \ \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n \"102.133.155.0/28\",\r\n
+ \ \"102.133.168.167/32\",\r\n \"102.133.253.0/27\",\r\n \"104.41.59.51/32\",\r\n
+ \ \"104.42.122.49/32\",\r\n \"104.209.247.23/32\",\r\n \"104.211.81.192/28\",\r\n
+ \ \"104.211.146.224/28\",\r\n \"104.211.189.124/32\",\r\n
+ \ \"104.211.189.218/32\",\r\n \"104.214.19.48/28\",\r\n \"104.214.70.191/32\",\r\n
+ \ \"104.214.164.0/27\",\r\n \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n
+ \ \"168.61.140.0/27\",\r\n \"168.61.143.64/26\",\r\n \"191.232.191.157/32\",\r\n
+ \ \"191.233.51.0/26\",\r\n \"191.233.203.192/28\",\r\n \"191.233.207.160/27\",\r\n
+ \ \"2603:1000:4:402::180/122\",\r\n \"2603:1000:104:402::180/122\",\r\n
+ \ \"2603:1010:6:402::180/122\",\r\n \"2603:1010:101:402::180/122\",\r\n
+ \ \"2603:1010:304:402::180/122\",\r\n \"2603:1010:404:402::180/122\",\r\n
+ \ \"2603:1020:5:402::180/122\",\r\n \"2603:1020:206:402::180/122\",\r\n
+ \ \"2603:1020:305:402::180/122\",\r\n \"2603:1020:405:402::180/122\",\r\n
+ \ \"2603:1020:605:402::180/122\",\r\n \"2603:1020:705:402::180/122\",\r\n
+ \ \"2603:1020:805:402::180/122\",\r\n \"2603:1020:905:402::180/122\",\r\n
+ \ \"2603:1020:a04:402::180/122\",\r\n \"2603:1020:b04:402::180/122\",\r\n
+ \ \"2603:1020:c04:402::180/122\",\r\n \"2603:1020:d04:402::180/122\",\r\n
+ \ \"2603:1020:e04:402::180/122\",\r\n \"2603:1020:f04:402::180/122\",\r\n
+ \ \"2603:1020:1004:c02::80/122\",\r\n \"2603:1020:1104:400::180/122\",\r\n
+ \ \"2603:1030:f:400::980/122\",\r\n \"2603:1030:10:402::180/122\",\r\n
+ \ \"2603:1030:104:402::180/122\",\r\n \"2603:1030:107:400::100/122\",\r\n
+ \ \"2603:1030:210:402::180/122\",\r\n \"2603:1030:40b:400::980/122\",\r\n
+ \ \"2603:1030:40c:402::180/122\",\r\n \"2603:1030:504:c02::80/122\",\r\n
+ \ \"2603:1030:608:402::180/122\",\r\n \"2603:1030:807:402::180/122\",\r\n
+ \ \"2603:1030:a07:402::100/122\",\r\n \"2603:1030:b04:402::180/122\",\r\n
+ \ \"2603:1030:c06:400::980/122\",\r\n \"2603:1030:f05:402::180/122\",\r\n
+ \ \"2603:1030:1005:402::180/122\",\r\n \"2603:1040:5:402::180/122\",\r\n
+ \ \"2603:1040:207:402::180/122\",\r\n \"2603:1040:407:402::180/122\",\r\n
+ \ \"2603:1040:606:402::180/122\",\r\n \"2603:1040:806:402::180/122\",\r\n
+ \ \"2603:1040:904:402::180/122\",\r\n \"2603:1040:a06:402::180/122\",\r\n
+ \ \"2603:1040:b04:402::180/122\",\r\n \"2603:1040:c06:402::180/122\",\r\n
+ \ \"2603:1040:d04:c02::80/122\",\r\n \"2603:1040:f05:402::180/122\",\r\n
+ \ \"2603:1040:1104:400::180/122\",\r\n \"2603:1050:6:402::180/122\",\r\n
+ \ \"2603:1050:403:400::2c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaCentral\",\r\n \"id\":
+ \"AzureConnectors.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.53.0.0/27\",\r\n \"2603:1010:304:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureConnectors.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n
+ \ \"2603:1010:404:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaEast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.192/28\",\r\n
+ \ \"13.70.78.224/27\",\r\n \"13.72.243.10/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"2603:1010:6:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.136.174/32\",\r\n
+ \ \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"2603:1010:101:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.BrazilSouth\",\r\n \"id\":
+ \"AzureConnectors.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"104.41.59.51/32\",\r\n
+ \ \"191.232.191.157/32\",\r\n \"191.233.203.192/28\",\r\n
+ \ \"191.233.207.160/27\",\r\n \"2603:1050:6:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"2603:1030:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaEast\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.240/28\",\r\n \"40.69.111.0/27\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"2603:1030:1005:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralIndia\",\r\n
+ \ \"id\": \"AzureConnectors.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.123.0/27\",\r\n \"52.172.211.12/32\",\r\n
+ \ \"52.172.212.129/32\",\r\n \"104.211.81.192/28\",\r\n \"2603:1040:a06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.80/28\",\r\n \"13.89.178.64/27\",\r\n
+ \ \"52.173.241.27/32\",\r\n \"52.173.245.164/32\",\r\n \"2603:1030:10:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureConnectors\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.202.96/28\",\r\n \"168.61.140.0/27\",\r\n
+ \ \"168.61.143.64/26\",\r\n \"2603:1030:f:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.64/28\",\r\n \"13.75.110.131/32\",\r\n
+ \ \"52.175.23.169/32\",\r\n \"104.214.164.0/27\",\r\n \"2603:1040:207:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.80/28\",\r\n
+ \ \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n \"40.71.249.205/32\",\r\n
+ \ \"40.114.40.132/32\",\r\n \"2603:1030:210:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.208/28\",\r\n
+ \ \"40.70.151.96/27\",\r\n \"52.225.129.144/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"104.209.247.23/32\",\r\n \"2603:1030:40c:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.64/28\",\r\n \"52.138.92.192/27\",\r\n
+ \ \"2603:1030:40b:400::980/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceCentral\",\r\n \"id\":
+ \"AzureConnectors.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.89.135.2/32\",\r\n \"40.89.186.239/32\",\r\n
+ \ \"2603:1020:805:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceSouth\",\r\n \"id\":
+ \"AzureConnectors.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.240/28\",\r\n
+ \ \"40.79.180.224/27\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"2603:1020:905:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.GermanyNorth\",\r\n \"id\":
+ \"AzureConnectors.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.116.59.16/28\",\r\n
+ \ \"51.116.60.192/27\",\r\n \"51.116.211.212/32\",\r\n \"2603:1020:d04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureConnectors.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.80/28\",\r\n \"51.116.158.96/27\",\r\n
+ \ \"51.116.236.78/32\",\r\n \"2603:1020:c04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanEast\",\r\n
+ \ \"id\": \"AzureConnectors.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.153.19/32\",\r\n \"13.73.21.230/32\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"40.79.189.64/27\",\r\n \"2603:1040:407:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanWest\",\r\n
+ \ \"id\": \"AzureConnectors.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.224/28\",\r\n \"40.80.180.64/27\",\r\n
+ \ \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n \"2603:1040:606:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.29.64/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"2603:1040:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaSouth\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.107.160/28\",\r\n \"52.162.111.192/27\",\r\n
+ \ \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n \"2603:1030:608:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthEurope\",\r\n
+ \ \"id\": \"AzureConnectors.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.208/28\",\r\n \"13.69.231.192/27\",\r\n
+ \ \"52.169.28.181/32\",\r\n \"52.178.150.68/32\",\r\n \"94.245.91.93/32\",\r\n
+ \ \"2603:1020:5:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.NorwayEast\",\r\n \"id\":
+ \"AzureConnectors.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.224/28\",\r\n
+ \ \"51.120.100.192/27\",\r\n \"2603:1020:e04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorwayWest\",\r\n
+ \ \"id\": \"AzureConnectors.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"2603:1020:f04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.0/28\",\r\n \"102.133.168.167/32\",\r\n
+ \ \"102.133.253.0/27\",\r\n \"2603:1000:104:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.0/27\",\r\n \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n
+ \ \"2603:1000:4:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.SouthCentralUS\",\r\n \"id\":
+ \"AzureConnectors.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.65.86.57/32\",\r\n
+ \ \"13.73.244.224/27\",\r\n \"52.171.130.92/32\",\r\n \"104.214.19.48/28\",\r\n
+ \ \"104.214.70.191/32\",\r\n \"2603:1030:807:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"2603:1040:5:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthIndia\",\r\n
+ \ \"id\": \"AzureConnectors.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"40.78.194.240/28\",\r\n \"2603:1040:c06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.103.142.22/32\",\r\n \"51.107.59.16/28\",\r\n
+ \ \"51.107.60.224/27\",\r\n \"51.107.86.217/32\",\r\n \"2603:1020:a04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"2603:1020:b04:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UAECentral\",\r\n \"id\":
+ \"AzureConnectors.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.37.74.192/28\",\r\n
+ \ \"40.120.8.0/27\",\r\n \"2603:1040:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.UAENorth\",\r\n
+ \ \"id\": \"AzureConnectors.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.64/27\",\r\n \"65.52.250.208/28\",\r\n
+ \ \"2603:1040:904:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKSouth\",\r\n \"id\": \"AzureConnectors.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.77.96/27\",\r\n \"51.140.61.124/32\",\r\n
+ \ \"51.140.74.150/32\",\r\n \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n
+ \ \"2603:1020:705:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKWest\",\r\n \"id\": \"AzureConnectors.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.211.0/28\",\r\n \"51.140.212.224/27\",\r\n
+ \ \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n \"51.141.124.13/32\",\r\n
+ \ \"2603:1020:605:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestCentralUS\",\r\n \"id\":
+ \"AzureConnectors.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.32/28\",\r\n
+ \ \"13.71.199.192/27\",\r\n \"13.78.132.82/32\",\r\n \"52.161.101.204/32\",\r\n
+ \ \"52.161.102.22/32\",\r\n \"2603:1030:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.WestEurope\",\r\n
+ \ \"id\": \"AzureConnectors.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n
+ \ \"40.91.208.65/32\",\r\n \"52.166.78.89/32\",\r\n \"52.174.88.118/32\",\r\n
+ \ \"2603:1020:206:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestIndia\",\r\n \"id\": \"AzureConnectors.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.224/27\",\r\n \"104.211.146.224/28\",\r\n
+ \ \"104.211.189.124/32\",\r\n \"104.211.189.218/32\",\r\n
+ \ \"2603:1040:806:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS\",\r\n \"id\": \"AzureConnectors.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.223.32/27\",\r\n \"13.93.148.62/32\",\r\n
+ \ \"40.112.195.87/32\",\r\n \"40.112.243.160/28\",\r\n \"104.42.122.49/32\",\r\n
+ \ \"2603:1030:a07:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS2\",\r\n \"id\": \"AzureConnectors.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.128/28\",\r\n \"13.66.145.96/27\",\r\n
+ \ \"52.183.78.157/32\",\r\n \"52.191.164.250/32\",\r\n \"2603:1030:c06:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry\",\r\n
+ \ \"id\": \"AzureContainerRegistry\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n
+ \ \"13.66.147.0/25\",\r\n \"13.66.148.0/24\",\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/24\",\r\n \"13.69.64.88/29\",\r\n \"13.69.106.80/29\",\r\n
+ \ \"13.69.110.0/24\",\r\n \"13.69.227.88/29\",\r\n \"13.69.236.0/23\",\r\n
+ \ \"13.69.238.0/24\",\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n
+ \ \"13.71.170.56/29\",\r\n \"13.71.176.0/24\",\r\n \"13.71.194.224/29\",\r\n
+ \ \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n \"13.73.255.64/26\",\r\n
+ \ \"13.74.107.80/29\",\r\n \"13.74.110.0/24\",\r\n \"13.75.36.0/29\",\r\n
+ \ \"13.77.50.80/29\",\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"13.87.56.96/29\",\r\n \"13.87.122.96/29\",\r\n \"13.89.170.216/29\",\r\n
+ \ \"13.89.175.0/25\",\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"20.38.132.192/26\",\r\n \"20.38.140.192/26\",\r\n \"20.38.146.144/29\",\r\n
+ \ \"20.38.149.0/25\",\r\n \"20.39.15.128/25\",\r\n \"20.40.224.64/26\",\r\n
+ \ \"20.41.69.128/26\",\r\n \"20.41.199.192/26\",\r\n \"20.41.208.64/26\",\r\n
+ \ \"20.42.66.0/23\",\r\n \"20.43.46.64/26\",\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.44.2.24/29\",\r\n \"20.44.11.0/25\",\r\n
+ \ \"20.44.11.128/26\",\r\n \"20.44.12.0/25\",\r\n \"20.44.19.64/26\",\r\n
+ \ \"20.44.22.0/23\",\r\n \"20.44.26.144/29\",\r\n \"20.44.29.128/25\",\r\n
+ \ \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n \"20.45.199.128/25\",\r\n
+ \ \"20.48.192.128/26\",\r\n \"20.49.82.16/29\",\r\n \"20.49.90.16/29\",\r\n
+ \ \"20.49.92.0/24\",\r\n \"20.49.93.0/26\",\r\n \"20.49.102.128/26\",\r\n
+ \ \"20.49.115.0/26\",\r\n \"20.49.127.0/26\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.52.72.128/26\",\r\n \"20.52.88.64/26\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"20.62.128.0/26\",\r\n \"20.65.0.0/24\",\r\n
+ \ \"20.72.18.128/26\",\r\n \"20.72.26.128/26\",\r\n \"20.72.30.0/25\",\r\n
+ \ \"20.135.26.64/26\",\r\n \"20.150.170.24/29\",\r\n \"20.150.173.128/26\",\r\n
+ \ \"20.150.174.0/25\",\r\n \"20.150.178.144/29\",\r\n \"20.150.181.192/26\",\r\n
+ \ \"20.150.182.128/25\",\r\n \"20.150.186.144/29\",\r\n \"20.150.189.192/26\",\r\n
+ \ \"20.150.190.128/25\",\r\n \"20.150.225.64/26\",\r\n \"20.150.241.0/26\",\r\n
+ \ \"20.187.196.64/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"20.189.224.0/26\",\r\n \"20.191.160.128/26\",\r\n \"20.192.32.0/26\",\r\n
+ \ \"20.192.33.0/26\",\r\n \"20.192.33.128/25\",\r\n \"20.192.50.0/26\",\r\n
+ \ \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n \"20.192.101.128/26\",\r\n
+ \ \"20.192.234.24/29\",\r\n \"20.193.192.128/26\",\r\n \"20.193.202.16/29\",\r\n
+ \ \"20.193.204.128/26\",\r\n \"20.193.205.0/25\",\r\n \"20.193.206.64/26\",\r\n
+ \ \"20.194.66.16/29\",\r\n \"20.194.68.0/25\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"20.194.128.0/25\",\r\n \"20.195.64.128/26\",\r\n \"20.195.136.0/24\",\r\n
+ \ \"20.195.137.0/25\",\r\n \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n
+ \ \"23.98.87.0/25\",\r\n \"23.98.112.0/25\",\r\n \"40.64.112.0/24\",\r\n
+ \ \"40.64.135.128/25\",\r\n \"40.67.58.24/29\",\r\n \"40.67.121.0/25\",\r\n
+ \ \"40.67.122.128/26\",\r\n \"40.69.106.80/29\",\r\n \"40.69.110.0/25\",\r\n
+ \ \"40.69.116.0/26\",\r\n \"40.70.146.88/29\",\r\n \"40.70.150.0/24\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.74.100.160/29\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.78.194.80/29\",\r\n
+ \ \"40.78.196.192/26\",\r\n \"40.78.202.72/29\",\r\n \"40.78.226.208/29\",\r\n
+ \ \"40.78.231.0/24\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n \"40.79.138.32/29\",\r\n
+ \ \"40.79.141.0/25\",\r\n \"40.79.146.32/29\",\r\n \"40.79.148.128/25\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n
+ \ \"40.79.166.0/25\",\r\n \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n
+ \ \"40.79.174.0/25\",\r\n \"40.79.178.80/29\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"40.89.120.0/24\",\r\n \"40.89.121.0/25\",\r\n \"40.112.242.160/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/25\",\r\n \"40.124.64.0/25\",\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.12.25.64/26\",\r\n \"51.12.32.0/25\",\r\n \"51.12.98.24/29\",\r\n
+ \ \"51.12.100.192/26\",\r\n \"51.12.101.0/26\",\r\n \"51.12.199.192/26\",\r\n
+ \ \"51.12.202.24/29\",\r\n \"51.12.205.128/26\",\r\n \"51.12.206.128/25\",\r\n
+ \ \"51.12.226.144/29\",\r\n \"51.12.234.144/29\",\r\n \"51.13.0.0/25\",\r\n
+ \ \"51.13.1.64/26\",\r\n \"51.13.128.128/25\",\r\n \"51.13.129.0/26\",\r\n
+ \ \"51.104.9.128/25\",\r\n \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n
+ \ \"51.105.70.0/25\",\r\n \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n
+ \ \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n \"51.107.58.24/29\",\r\n
+ \ \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n \"51.107.154.24/29\",\r\n
+ \ \"51.107.192.0/26\",\r\n \"51.116.58.24/29\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/25\",\r\n \"51.116.242.144/29\",\r\n \"51.116.250.144/29\",\r\n
+ \ \"51.120.98.160/29\",\r\n \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n
+ \ \"51.120.110.0/25\",\r\n \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n
+ \ \"51.120.218.24/29\",\r\n \"51.120.234.0/26\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.138.160.128/26\",\r\n \"51.140.146.200/29\",\r\n
+ \ \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n \"51.143.208.0/26\",\r\n
+ \ \"52.138.90.32/29\",\r\n \"52.138.93.0/24\",\r\n \"52.138.226.80/29\",\r\n
+ \ \"52.138.230.0/23\",\r\n \"52.140.110.192/26\",\r\n \"52.146.131.128/26\",\r\n
+ \ \"52.150.156.64/26\",\r\n \"52.162.104.192/26\",\r\n \"52.162.106.160/29\",\r\n
+ \ \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n \"52.168.112.192/26\",\r\n
+ \ \"52.168.114.0/23\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.182.138.208/29\",\r\n \"52.182.142.0/24\",\r\n \"52.231.18.56/29\",\r\n
+ \ \"52.231.20.128/26\",\r\n \"52.231.146.192/29\",\r\n \"52.236.186.80/29\",\r\n
+ \ \"52.236.191.0/24\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"65.52.248.192/26\",\r\n \"65.52.250.16/29\",\r\n \"102.37.65.64/26\",\r\n
+ \ \"102.37.72.128/26\",\r\n \"102.133.26.24/29\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"104.208.16.80/29\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"104.211.81.136/29\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"104.214.18.184/29\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"168.61.140.128/25\",\r\n \"168.61.141.0/24\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"191.233.50.16/29\",\r\n \"191.233.54.64/26\",\r\n
+ \ \"191.233.54.128/26\",\r\n \"191.233.203.136/29\",\r\n
+ \ \"191.233.205.192/26\",\r\n \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n
+ \ \"191.234.149.64/26\",\r\n \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n
+ \ \"191.234.157.192/26\",\r\n \"2603:1000:4:402::90/125\",\r\n
+ \ \"2603:1000:4:402::340/122\",\r\n \"2603:1000:4:402::580/122\",\r\n
+ \ \"2603:1000:104:402::90/125\",\r\n \"2603:1000:104:402::340/122\",\r\n
+ \ \"2603:1000:104:802::90/125\",\r\n \"2603:1000:104:802::2c0/122\",\r\n
+ \ \"2603:1000:104:c02::90/125\",\r\n \"2603:1010:6:402::90/125\",\r\n
+ \ \"2603:1010:6:402::340/122\",\r\n \"2603:1010:6:802::90/125\",\r\n
+ \ \"2603:1010:6:802::2c0/122\",\r\n \"2603:1010:6:c02::90/125\",\r\n
+ \ \"2603:1010:101:402::90/125\",\r\n \"2603:1010:101:402::340/122\",\r\n
+ \ \"2603:1010:101:402::580/122\",\r\n \"2603:1010:304:402::90/125\",\r\n
+ \ \"2603:1010:304:402::340/122\",\r\n \"2603:1010:304:402::580/122\",\r\n
+ \ \"2603:1010:404:402::90/125\",\r\n \"2603:1010:404:402::340/122\",\r\n
+ \ \"2603:1010:404:402::580/122\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\",\r\n
+ \ \"2603:1020:206:402::90/125\",\r\n \"2603:1020:206:402::340/122\",\r\n
+ \ \"2603:1020:206:802::90/125\",\r\n \"2603:1020:206:802::2c0/122\",\r\n
+ \ \"2603:1020:206:c02::90/125\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\",\r\n \"2603:1020:605:402::90/125\",\r\n
+ \ \"2603:1020:605:402::340/122\",\r\n \"2603:1020:605:402::580/122\",\r\n
+ \ \"2603:1020:705:402::90/125\",\r\n \"2603:1020:705:402::340/122\",\r\n
+ \ \"2603:1020:705:802::90/125\",\r\n \"2603:1020:705:802::2c0/122\",\r\n
+ \ \"2603:1020:705:c02::90/125\",\r\n \"2603:1020:805:402::90/125\",\r\n
+ \ \"2603:1020:805:402::340/122\",\r\n \"2603:1020:805:802::90/125\",\r\n
+ \ \"2603:1020:805:802::2c0/122\",\r\n \"2603:1020:805:c02::90/125\",\r\n
+ \ \"2603:1020:905:402::90/125\",\r\n \"2603:1020:905:402::340/122\",\r\n
+ \ \"2603:1020:905:402::580/122\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\",\r\n
+ \ \"2603:1020:b04:402::90/125\",\r\n \"2603:1020:b04:402::340/122\",\r\n
+ \ \"2603:1020:b04:402::580/122\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\",\r\n \"2603:1020:e04::348/125\",\r\n
+ \ \"2603:1020:e04:402::90/125\",\r\n \"2603:1020:e04:402::340/122\",\r\n
+ \ \"2603:1020:e04:402::580/121\",\r\n \"2603:1020:e04:802::90/125\",\r\n
+ \ \"2603:1020:e04:802::2c0/122\",\r\n \"2603:1020:e04:c02::90/125\",\r\n
+ \ \"2603:1020:f04:402::90/125\",\r\n \"2603:1020:f04:402::340/122\",\r\n
+ \ \"2603:1020:f04:402::580/122\",\r\n \"2603:1020:1004:1::1a0/125\",\r\n
+ \ \"2603:1020:1004:400::90/125\",\r\n \"2603:1020:1004:400::3b8/125\",\r\n
+ \ \"2603:1020:1004:400::4c0/122\",\r\n \"2603:1020:1004:400::500/121\",\r\n
+ \ \"2603:1020:1004:800::150/125\",\r\n \"2603:1020:1004:800::180/121\",\r\n
+ \ \"2603:1020:1004:800::280/121\",\r\n \"2603:1020:1004:c02::300/121\",\r\n
+ \ \"2603:1020:1104::5a0/125\",\r\n \"2603:1020:1104:400::90/125\",\r\n
+ \ \"2603:1020:1104:400::380/121\",\r\n \"2603:1020:1104:400::540/122\",\r\n
+ \ \"2603:1030:f:1::2a8/125\",\r\n \"2603:1030:f:400::890/125\",\r\n
+ \ \"2603:1030:f:400::b40/122\",\r\n \"2603:1030:f:400::d80/122\",\r\n
+ \ \"2603:1030:f:400::e00/121\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\",\r\n
+ \ \"2603:1030:104:402::90/125\",\r\n \"2603:1030:104:402::340/122\",\r\n
+ \ \"2603:1030:104:402::580/122\",\r\n \"2603:1030:107::580/125\",\r\n
+ \ \"2603:1030:107:400::18/125\",\r\n \"2603:1030:107:400::300/121\",\r\n
+ \ \"2603:1030:107:400::500/122\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\",\r\n
+ \ \"2603:1030:302:402::c0/122\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\",\r\n
+ \ \"2603:1030:40c:402::90/125\",\r\n \"2603:1030:40c:402::340/122\",\r\n
+ \ \"2603:1030:40c:802::90/125\",\r\n \"2603:1030:40c:802::2c0/122\",\r\n
+ \ \"2603:1030:40c:c02::90/125\",\r\n \"2603:1030:504::1a0/125\",\r\n
+ \ \"2603:1030:504:402::90/125\",\r\n \"2603:1030:504:402::3b8/125\",\r\n
+ \ \"2603:1030:504:802::c0/125\",\r\n \"2603:1030:504:802::150/125\",\r\n
+ \ \"2603:1030:504:802::180/121\",\r\n \"2603:1030:504:c02::140/122\",\r\n
+ \ \"2603:1030:504:c02::300/121\",\r\n \"2603:1030:608:402::90/125\",\r\n
+ \ \"2603:1030:608:402::340/122\",\r\n \"2603:1030:608:402::580/122\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\",\r\n \"2603:1030:c06:400::890/125\",\r\n
+ \ \"2603:1030:c06:400::b40/122\",\r\n \"2603:1030:c06:802::90/125\",\r\n
+ \ \"2603:1030:c06:802::2c0/122\",\r\n \"2603:1030:c06:c02::90/125\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\",\r\n \"2603:1030:1005:402::90/125\",\r\n
+ \ \"2603:1030:1005:402::340/122\",\r\n \"2603:1030:1005:402::580/122\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\",\r\n
+ \ \"2603:1040:407:402::90/125\",\r\n \"2603:1040:407:402::340/122\",\r\n
+ \ \"2603:1040:407:802::90/125\",\r\n \"2603:1040:407:802::2c0/122\",\r\n
+ \ \"2603:1040:407:c02::90/125\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\",\r\n
+ \ \"2603:1040:a06:402::90/125\",\r\n \"2603:1040:a06:402::340/122\",\r\n
+ \ \"2603:1040:a06:802::90/125\",\r\n \"2603:1040:a06:802::2c0/122\",\r\n
+ \ \"2603:1040:a06:c02::90/125\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\",\r\n \"2603:1040:d04:1::1a0/125\",\r\n
+ \ \"2603:1040:d04:400::90/125\",\r\n \"2603:1040:d04:400::3b8/125\",\r\n
+ \ \"2603:1040:d04:400::4c0/122\",\r\n \"2603:1040:d04:400::500/121\",\r\n
+ \ \"2603:1040:d04:800::150/125\",\r\n \"2603:1040:d04:800::180/121\",\r\n
+ \ \"2603:1040:d04:800::280/121\",\r\n \"2603:1040:d04:c02::300/121\",\r\n
+ \ \"2603:1040:e05:402::100/122\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\",\r\n
+ \ \"2603:1040:1104::5a0/125\",\r\n \"2603:1040:1104:400::90/125\",\r\n
+ \ \"2603:1040:1104:400::380/121\",\r\n \"2603:1040:1104:400::480/122\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\",\r\n
+ \ \"2603:1050:403:400::98/125\",\r\n \"2603:1050:403:400::480/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n \"40.79.166.0/25\",\r\n
+ \ \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n \"40.79.174.0/25\",\r\n
+ \ \"2603:1010:6:402::90/125\",\r\n \"2603:1010:6:402::340/122\",\r\n
+ \ \"2603:1010:6:802::90/125\",\r\n \"2603:1010:6:802::2c0/122\",\r\n
+ \ \"2603:1010:6:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.80/29\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"2603:1010:101:402::90/125\",\r\n
+ \ \"2603:1010:101:402::340/122\",\r\n \"2603:1010:101:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.136.0/24\",\r\n \"20.195.137.0/25\",\r\n
+ \ \"191.233.203.136/29\",\r\n \"191.233.205.192/26\",\r\n
+ \ \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n \"191.234.149.64/26\",\r\n
+ \ \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n \"191.234.157.192/26\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.56/29\",\r\n \"13.71.176.0/25\",\r\n \"13.71.176.128/25\",\r\n
+ \ \"20.38.146.144/29\",\r\n \"20.38.149.0/25\",\r\n \"20.48.192.128/26\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CanadaEast\",\r\n \"id\":
+ \"AzureContainerRegistry.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.80/29\",\r\n
+ \ \"40.69.110.0/25\",\r\n \"40.69.116.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"2603:1030:1005:402::90/125\",\r\n \"2603:1030:1005:402::340/122\",\r\n
+ \ \"2603:1030:1005:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CentralIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n
+ \ \"20.192.101.128/26\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"52.140.110.192/26\",\r\n \"104.211.81.136/29\",\r\n \"2603:1040:a06:402::90/125\",\r\n
+ \ \"2603:1040:a06:402::340/122\",\r\n \"2603:1040:a06:802::90/125\",\r\n
+ \ \"2603:1040:a06:802::2c0/122\",\r\n \"2603:1040:a06:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.216/29\",\r\n \"13.89.175.0/25\",\r\n
+ \ \"20.40.224.64/26\",\r\n \"20.44.11.0/25\",\r\n \"20.44.11.128/26\",\r\n
+ \ \"20.44.12.0/25\",\r\n \"52.182.138.208/29\",\r\n \"52.182.142.0/25\",\r\n
+ \ \"52.182.142.128/25\",\r\n \"104.208.16.80/29\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.199.128/25\",\r\n \"40.78.202.72/29\",\r\n
+ \ \"168.61.140.128/25\",\r\n \"168.61.141.0/25\",\r\n \"168.61.141.128/25\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"2603:1030:f:1::2a8/125\",\r\n
+ \ \"2603:1030:f:400::890/125\",\r\n \"2603:1030:f:400::b40/122\",\r\n
+ \ \"2603:1030:f:400::d80/122\",\r\n \"2603:1030:f:400::e00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.0/29\",\r\n \"20.187.196.64/26\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.66.0/24\",\r\n \"20.42.67.0/24\",\r\n \"20.62.128.0/26\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.78.226.208/29\",\r\n \"40.78.231.0/24\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"52.168.112.192/26\",\r\n \"52.168.114.0/24\",\r\n
+ \ \"52.168.115.0/24\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.19.64/26\",\r\n \"20.44.22.0/24\",\r\n \"20.44.23.0/24\",\r\n
+ \ \"20.49.102.128/26\",\r\n \"20.65.0.0/24\",\r\n \"40.70.146.88/29\",\r\n
+ \ \"40.70.150.0/24\",\r\n \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"2603:1030:40c:402::90/125\",\r\n
+ \ \"2603:1030:40c:402::340/122\",\r\n \"2603:1030:40c:802::90/125\",\r\n
+ \ \"2603:1030:40c:802::2c0/122\",\r\n \"2603:1030:40c:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.128/25\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.89.120.0/24\",\r\n
+ \ \"40.89.121.0/25\",\r\n \"52.138.90.32/29\",\r\n \"52.138.93.0/25\",\r\n
+ \ \"52.138.93.128/25\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.46.64/26\",\r\n \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n
+ \ \"40.79.138.32/29\",\r\n \"40.79.141.0/26\",\r\n \"40.79.141.64/26\",\r\n
+ \ \"40.79.146.32/29\",\r\n \"40.79.148.128/26\",\r\n \"40.79.148.192/26\",\r\n
+ \ \"2603:1020:805:402::90/125\",\r\n \"2603:1020:805:402::340/122\",\r\n
+ \ \"2603:1020:805:802::90/125\",\r\n \"2603:1020:805:802::2c0/122\",\r\n
+ \ \"2603:1020:805:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.FranceSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.80/29\",\r\n
+ \ \"51.138.160.128/26\",\r\n \"2603:1020:905:402::90/125\",\r\n
+ \ \"2603:1020:905:402::340/122\",\r\n \"2603:1020:905:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.128/26\",\r\n \"51.116.58.24/29\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.88.64/26\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/26\",\r\n \"51.116.158.192/26\",\r\n \"51.116.242.144/29\",\r\n
+ \ \"51.116.250.144/29\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"20.191.160.128/26\",\r\n \"20.194.128.0/25\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"2603:1040:407:402::90/125\",\r\n
+ \ \"2603:1040:407:402::340/122\",\r\n \"2603:1040:407:802::90/125\",\r\n
+ \ \"2603:1040:407:802::2c0/122\",\r\n \"2603:1040:407:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.224.0/26\",\r\n \"40.74.100.160/29\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.128/26\",\r\n \"20.44.26.144/29\",\r\n
+ \ \"20.44.29.128/26\",\r\n \"20.44.29.192/26\",\r\n \"20.194.66.16/29\",\r\n
+ \ \"20.194.68.0/26\",\r\n \"20.194.68.64/26\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"52.231.18.56/29\",\r\n \"52.231.20.128/26\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.135.26.64/26\",\r\n \"52.231.146.192/29\",\r\n
+ \ \"2603:1040:e05:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.115.0/26\",\r\n \"52.162.104.192/26\",\r\n
+ \ \"52.162.106.160/29\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"2603:1030:608:402::90/125\",\r\n \"2603:1030:608:402::340/122\",\r\n
+ \ \"2603:1030:608:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.88/29\",\r\n
+ \ \"13.69.236.0/23\",\r\n \"13.69.238.0/24\",\r\n \"13.74.107.80/29\",\r\n
+ \ \"13.74.110.0/24\",\r\n \"52.138.226.80/29\",\r\n \"52.138.230.0/24\",\r\n
+ \ \"52.138.231.0/24\",\r\n \"52.146.131.128/26\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"5\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.0/25\",\r\n \"51.13.1.64/26\",\r\n \"51.120.98.160/29\",\r\n
+ \ \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n \"51.120.110.0/25\",\r\n
+ \ \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n \"51.120.234.0/26\",\r\n
+ \ \"2603:1020:e04::348/125\",\r\n \"2603:1020:e04:402::90/125\",\r\n
+ \ \"2603:1020:e04:402::340/122\",\r\n \"2603:1020:e04:402::580/121\",\r\n
+ \ \"2603:1020:e04:802::90/125\",\r\n \"2603:1020:e04:802::2c0/122\",\r\n
+ \ \"2603:1020:e04:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorwayWest\",\r\n \"id\":
+ \"AzureContainerRegistry.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.13.128.128/25\",\r\n
+ \ \"51.13.129.0/26\",\r\n \"51.120.218.24/29\",\r\n \"2603:1020:f04:402::90/125\",\r\n
+ \ \"2603:1020:f04:402::340/122\",\r\n \"2603:1020:f04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.128/26\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"2603:1000:104:402::90/125\",\r\n
+ \ \"2603:1000:104:402::340/122\",\r\n \"2603:1000:104:802::90/125\",\r\n
+ \ \"2603:1000:104:802::2c0/122\",\r\n \"2603:1000:104:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.64/26\",\r\n \"102.133.26.24/29\",\r\n
+ \ \"2603:1000:4:402::90/125\",\r\n \"2603:1000:4:402::340/122\",\r\n
+ \ \"2603:1000:4:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n
+ \ \"13.73.255.64/26\",\r\n \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n
+ \ \"20.49.90.16/29\",\r\n \"20.49.92.0/25\",\r\n \"20.49.92.128/25\",\r\n
+ \ \"20.49.93.0/26\",\r\n \"40.124.64.0/25\",\r\n \"104.214.18.184/29\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SoutheastAsia\",\r\n \"id\":
+ \"AzureContainerRegistry.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/25\",\r\n \"13.67.14.128/25\",\r\n \"20.195.64.128/26\",\r\n
+ \ \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n \"23.98.87.0/25\",\r\n
+ \ \"23.98.112.0/25\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.41.199.192/26\",\r\n
+ \ \"20.41.208.64/26\",\r\n \"40.78.194.80/29\",\r\n \"40.78.196.192/26\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n
+ \ \"51.107.58.24/29\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n
+ \ \"51.107.154.24/29\",\r\n \"51.107.192.0/26\",\r\n \"2603:1020:b04:402::90/125\",\r\n
+ \ \"2603:1020:b04:402::340/122\",\r\n \"2603:1020:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.192/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/26\",\r\n \"40.120.77.64/26\",\r\n \"65.52.248.192/26\",\r\n
+ \ \"65.52.250.16/29\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.96/29\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.128/25\",\r\n
+ \ \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n \"51.105.70.0/25\",\r\n
+ \ \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.140.146.200/29\",\r\n \"51.143.208.0/26\",\r\n \"2603:1020:705:402::90/125\",\r\n
+ \ \"2603:1020:705:402::340/122\",\r\n \"2603:1020:705:802::90/125\",\r\n
+ \ \"2603:1020:705:802::2c0/122\",\r\n \"2603:1020:705:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.56.96/29\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKWest\",\r\n \"id\":
+ \"AzureContainerRegistry.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n
+ \ \"2603:1020:605:402::90/125\",\r\n \"2603:1020:605:402::340/122\",\r\n
+ \ \"2603:1020:605:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.224/29\",\r\n
+ \ \"40.67.121.0/25\",\r\n \"40.67.122.128/26\",\r\n \"52.150.156.64/26\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.88/29\",\r\n
+ \ \"13.69.106.80/29\",\r\n \"13.69.110.0/24\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.236.186.80/29\",\r\n \"52.236.191.0/24\",\r\n \"2603:1020:206:402::90/125\",\r\n
+ \ \"2603:1020:206:402::340/122\",\r\n \"2603:1020:206:802::90/125\",\r\n
+ \ \"2603:1020:206:802::2c0/122\",\r\n \"2603:1020:206:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestIndia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.132.192/26\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.127.0/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"40.112.242.160/29\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n \"13.66.147.0/25\",\r\n
+ \ \"13.66.148.0/24\",\r\n \"40.64.112.0/24\",\r\n \"40.64.135.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"2603:1030:c06:400::890/125\",\r\n \"2603:1030:c06:400::b40/122\",\r\n
+ \ \"2603:1030:c06:802::90/125\",\r\n \"2603:1030:c06:802::2c0/122\",\r\n
+ \ \"2603:1030:c06:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB\",\r\n \"id\": \"AzureCosmosDB\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n \"13.64.113.68/32\",\r\n
+ \ \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.66.138.0/26\",\r\n
+ \ \"13.67.8.0/26\",\r\n \"13.68.28.135/32\",\r\n \"13.69.66.0/25\",\r\n
+ \ \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n \"13.69.226.0/25\",\r\n
+ \ \"13.70.74.136/29\",\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"13.71.170.0/28\",\r\n \"13.71.194.0/26\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.73.100.183/32\",\r\n \"13.73.254.224/27\",\r\n \"13.74.106.0/25\",\r\n
+ \ \"13.75.34.0/26\",\r\n \"13.75.134.84/32\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"13.77.50.0/28\",\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n
+ \ \"13.78.188.25/32\",\r\n \"13.79.34.236/32\",\r\n \"13.81.51.99/32\",\r\n
+ \ \"13.82.53.191/32\",\r\n \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n
+ \ \"13.85.16.188/32\",\r\n \"13.87.56.0/27\",\r\n \"13.87.122.0/27\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.88.253.180/32\",\r\n \"13.89.41.245/32\",\r\n
+ \ \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n \"13.89.224.229/32\",\r\n
+ \ \"13.90.199.155/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"13.94.201.5/32\",\r\n
+ \ \"13.95.234.68/32\",\r\n \"20.36.26.132/32\",\r\n \"20.36.42.8/32\",\r\n
+ \ \"20.36.75.163/32\",\r\n \"20.36.106.0/26\",\r\n \"20.36.114.0/28\",\r\n
+ \ \"20.36.123.96/27\",\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"20.37.228.32/27\",\r\n \"20.38.140.128/27\",\r\n \"20.38.146.0/26\",\r\n
+ \ \"20.39.15.64/27\",\r\n \"20.40.207.160/27\",\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"20.43.46.0/27\",\r\n \"20.44.2.64/26\",\r\n
+ \ \"20.44.10.0/26\",\r\n \"20.44.26.0/26\",\r\n \"20.45.115.160/27\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.45.198.96/27\",\r\n \"20.48.192.32/27\",\r\n
+ \ \"20.49.82.64/26\",\r\n \"20.49.90.64/26\",\r\n \"20.49.102.64/27\",\r\n
+ \ \"20.49.114.128/27\",\r\n \"20.49.126.160/27\",\r\n \"20.53.41.0/27\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"20.72.18.64/27\",\r\n \"20.72.26.64/26\",\r\n
+ \ \"20.150.166.192/27\",\r\n \"20.150.170.64/26\",\r\n \"20.150.178.0/26\",\r\n
+ \ \"20.150.186.0/26\",\r\n \"20.187.196.0/27\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"20.192.98.0/26\",\r\n \"20.192.166.192/27\",\r\n \"20.192.231.0/27\",\r\n
+ \ \"20.192.234.64/26\",\r\n \"20.193.202.64/26\",\r\n \"20.194.66.64/26\",\r\n
+ \ \"23.96.180.213/32\",\r\n \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"23.102.239.134/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.67.51.160/27\",\r\n \"40.67.58.64/26\",\r\n
+ \ \"40.68.44.85/32\",\r\n \"40.69.106.0/28\",\r\n \"40.70.0.140/32\",\r\n
+ \ \"40.70.220.202/32\",\r\n \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n
+ \ \"40.71.203.37/32\",\r\n \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n
+ \ \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.77.63.179/32\",\r\n
+ \ \"40.78.194.0/28\",\r\n \"40.78.203.32/27\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.78.236.192/26\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.79.163.72/29\",\r\n \"40.79.163.192/26\",\r\n
+ \ \"40.79.170.48/28\",\r\n \"40.79.178.0/28\",\r\n \"40.79.186.16/28\",\r\n
+ \ \"40.79.194.128/26\",\r\n \"40.80.50.0/26\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"40.80.173.0/27\",\r\n \"40.83.137.191/32\",\r\n \"40.85.178.211/32\",\r\n
+ \ \"40.86.229.245/32\",\r\n \"40.89.22.224/27\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.113.90.91/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"40.115.241.37/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"40.120.74.64/26\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"40.126.244.209/32\",\r\n \"51.12.43.0/27\",\r\n \"51.12.98.64/26\",\r\n
+ \ \"51.12.195.0/27\",\r\n \"51.12.202.64/26\",\r\n \"51.12.226.0/26\",\r\n
+ \ \"51.12.234.0/26\",\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.105.92.192/27\",\r\n \"51.107.52.224/27\",\r\n
+ \ \"51.107.58.64/26\",\r\n \"51.107.148.32/27\",\r\n \"51.107.154.64/26\",\r\n
+ \ \"51.116.50.224/27\",\r\n \"51.116.58.64/26\",\r\n \"51.116.146.224/27\",\r\n
+ \ \"51.116.154.128/26\",\r\n \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n
+ \ \"51.120.44.128/27\",\r\n \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n
+ \ \"51.120.210.0/26\",\r\n \"51.120.218.64/26\",\r\n \"51.120.228.160/27\",\r\n
+ \ \"51.137.166.128/27\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n
+ \ \"51.141.25.77/32\",\r\n \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n
+ \ \"51.143.189.37/32\",\r\n \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n
+ \ \"52.136.52.64/27\",\r\n \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n
+ \ \"52.136.136.70/32\",\r\n \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n
+ \ \"52.138.92.0/26\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.140.110.64/27\",\r\n \"52.143.136.41/32\",\r\n
+ \ \"52.146.79.160/27\",\r\n \"52.146.131.0/27\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.156.170.104/32\",\r\n \"52.158.234.203/32\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"52.162.106.0/26\",\r\n \"52.162.252.26/32\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.167.107.128/26\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n
+ \ \"52.170.204.83/32\",\r\n \"52.172.55.127/32\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"52.173.148.217/32\",\r\n \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n
+ \ \"52.174.253.239/32\",\r\n \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n
+ \ \"52.176.0.136/32\",\r\n \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n
+ \ \"52.176.155.127/32\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n
+ \ \"52.179.200.0/25\",\r\n \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n
+ \ \"52.180.177.137/32\",\r\n \"52.182.138.0/25\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"52.186.69.224/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n
+ \ \"52.226.21.178/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n \"52.231.207.31/32\",\r\n
+ \ \"52.232.59.220/32\",\r\n \"52.233.41.60/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n \"52.236.189.0/26\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"65.52.210.9/32\",\r\n \"65.52.251.128/26\",\r\n
+ \ \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n \"102.133.122.0/26\",\r\n
+ \ \"102.133.154.64/26\",\r\n \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n
+ \ \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n \"104.41.177.93/32\",\r\n
+ \ \"104.45.16.183/32\",\r\n \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n
+ \ \"104.46.177.64/27\",\r\n \"104.208.231.0/25\",\r\n \"104.210.89.99/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n
+ \ \"104.211.146.0/28\",\r\n \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"104.211.227.84/32\",\r\n
+ \ \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n \"104.214.26.177/32\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"157.55.170.133/32\",\r\n \"168.61.142.128/26\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.11.192/27\",\r\n
+ \ \"191.233.50.64/26\",\r\n \"191.233.204.128/27\",\r\n \"191.234.138.160/27\",\r\n
+ \ \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n \"191.234.179.157/32\",\r\n
+ \ \"191.239.179.124/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1000:4:402::c0/122\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\",\r\n
+ \ \"2603:1010:6:402::c0/122\",\r\n \"2603:1010:6:802::c0/122\",\r\n
+ \ \"2603:1010:6:c02::c0/122\",\r\n \"2603:1010:101:402::c0/122\",\r\n
+ \ \"2603:1010:304:402::c0/122\",\r\n \"2603:1010:404:402::c0/122\",\r\n
+ \ \"2603:1020:5:402::c0/122\",\r\n \"2603:1020:5:802::c0/122\",\r\n
+ \ \"2603:1020:5:c02::c0/122\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\",\r\n
+ \ \"2603:1020:305:402::c0/122\",\r\n \"2603:1020:405:402::c0/122\",\r\n
+ \ \"2603:1020:605:402::c0/122\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\",\r\n
+ \ \"2603:1020:805:402::c0/122\",\r\n \"2603:1020:805:802::c0/122\",\r\n
+ \ \"2603:1020:805:c02::c0/122\",\r\n \"2603:1020:905:402::c0/122\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\",\r\n \"2603:1020:b04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:402::c0/122\",\r\n \"2603:1020:c04:802::c0/122\",\r\n
+ \ \"2603:1020:c04:c02::c0/122\",\r\n \"2603:1020:d04:402::c0/122\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\",\r\n
+ \ \"2603:1020:f04:402::c0/122\",\r\n \"2603:1020:1004:1::60/123\",\r\n
+ \ \"2603:1020:1004:400::c0/122\",\r\n \"2603:1020:1004:400::280/122\",\r\n
+ \ \"2603:1020:1004:400::3c0/122\",\r\n \"2603:1020:1104::520/123\",\r\n
+ \ \"2603:1020:1104:400::c0/122\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\",\r\n
+ \ \"2603:1030:104:402::c0/122\",\r\n \"2603:1030:107::540/123\",\r\n
+ \ \"2603:1030:107:400::40/122\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\",\r\n
+ \ \"2603:1030:504::60/123\",\r\n \"2603:1030:504:402::c0/122\",\r\n
+ \ \"2603:1030:504:402::280/122\",\r\n \"2603:1030:504:402::3c0/122\",\r\n
+ \ \"2603:1030:504:802::200/122\",\r\n \"2603:1030:504:c02::3c0/122\",\r\n
+ \ \"2603:1030:608:402::c0/122\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\",\r\n
+ \ \"2603:1030:a07:402::c0/122\",\r\n \"2603:1030:b04:402::c0/122\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\",\r\n
+ \ \"2603:1030:1005:402::c0/122\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\",\r\n
+ \ \"2603:1040:207:402::c0/122\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\",\r\n
+ \ \"2603:1040:606:402::c0/122\",\r\n \"2603:1040:806:402::c0/122\",\r\n
+ \ \"2603:1040:904:402::c0/122\",\r\n \"2603:1040:904:802::c0/122\",\r\n
+ \ \"2603:1040:904:c02::c0/122\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\",\r\n
+ \ \"2603:1040:b04:402::c0/122\",\r\n \"2603:1040:c06:402::c0/122\",\r\n
+ \ \"2603:1040:d04:1::60/123\",\r\n \"2603:1040:d04:400::c0/122\",\r\n
+ \ \"2603:1040:d04:400::280/122\",\r\n \"2603:1040:d04:400::3c0/122\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\",\r\n
+ \ \"2603:1040:1104::520/123\",\r\n \"2603:1040:1104:400::c0/122\",\r\n
+ \ \"2603:1050:6:402::c0/122\",\r\n \"2603:1050:6:802::c0/122\",\r\n
+ \ \"2603:1050:6:c02::c0/122\",\r\n \"2603:1050:403:400::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.8/32\",\r\n \"20.36.106.0/26\",\r\n \"20.37.228.32/27\",\r\n
+ \ \"2603:1010:304:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral2\",\r\n \"id\":
+ \"AzureCosmosDB.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.36.75.163/32\",\r\n
+ \ \"20.36.114.0/28\",\r\n \"20.36.123.96/27\",\r\n \"2603:1010:404:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.136/29\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.75.134.84/32\",\r\n \"20.53.41.0/27\",\r\n \"40.79.163.72/29\",\r\n
+ \ \"40.79.163.192/26\",\r\n \"40.79.170.48/28\",\r\n \"40.126.244.209/32\",\r\n
+ \ \"52.156.170.104/32\",\r\n \"104.210.89.99/32\",\r\n \"2603:1010:6:402::c0/122\",\r\n
+ \ \"2603:1010:6:802::c0/122\",\r\n \"2603:1010:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.100.183/32\",\r\n \"13.77.50.0/28\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"104.46.177.64/27\",\r\n \"191.239.179.124/32\",\r\n
+ \ \"2603:1010:101:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.BrazilSouth\",\r\n \"id\": \"AzureCosmosDB.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.204.128/27\",\r\n
+ \ \"191.234.138.160/27\",\r\n \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n
+ \ \"191.234.179.157/32\",\r\n \"2603:1050:6:402::c0/122\",\r\n
+ \ \"2603:1050:6:802::c0/122\",\r\n \"2603:1050:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.0/28\",\r\n \"13.88.253.180/32\",\r\n
+ \ \"20.38.146.0/26\",\r\n \"20.48.192.32/27\",\r\n \"52.233.41.60/32\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.0/28\",\r\n \"40.86.229.245/32\",\r\n
+ \ \"40.89.22.224/27\",\r\n \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n
+ \ \"2603:1030:1005:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.CentralIndia\",\r\n \"id\":
+ \"AzureCosmosDB.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.192.98.0/26\",\r\n
+ \ \"40.80.50.0/26\",\r\n \"52.140.110.64/27\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.41.245/32\",\r\n \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n
+ \ \"13.89.224.229/32\",\r\n \"20.40.207.160/27\",\r\n \"20.44.10.0/26\",\r\n
+ \ \"40.77.63.179/32\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.173.148.217/32\",\r\n
+ \ \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n \"52.176.0.136/32\",\r\n
+ \ \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n \"52.176.155.127/32\",\r\n
+ \ \"52.182.138.0/25\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.96/27\",\r\n \"40.78.203.32/27\",\r\n
+ \ \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n \"52.180.177.137/32\",\r\n
+ \ \"168.61.142.128/26\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastAsia\",\r\n \"id\": \"AzureCosmosDB.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.0/26\",\r\n \"20.187.196.0/27\",\r\n \"23.102.239.134/32\",\r\n
+ \ \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1040:207:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastUS\",\r\n \"id\": \"AzureCosmosDB.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.53.191/32\",\r\n \"13.90.199.155/32\",\r\n
+ \ \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n \"40.71.203.37/32\",\r\n
+ \ \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.85.178.211/32\",\r\n \"52.146.79.160/27\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.170.204.83/32\",\r\n \"52.186.69.224/32\",\r\n
+ \ \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n \"52.226.21.178/32\",\r\n
+ \ \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.68.28.135/32\",\r\n
+ \ \"20.49.102.64/27\",\r\n \"40.70.0.140/32\",\r\n \"40.70.220.202/32\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"52.167.107.128/26\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n \"52.179.200.0/25\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"104.208.231.0/25\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.64/27\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n \"52.138.92.0/26\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.FranceCentral\",\r\n \"id\":
+ \"AzureCosmosDB.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.43.46.0/27\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"52.143.136.41/32\",\r\n \"2603:1020:805:402::c0/122\",\r\n
+ \ \"2603:1020:805:802::c0/122\",\r\n \"2603:1020:805:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.FranceSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.0/28\",\r\n \"51.105.92.192/27\",\r\n
+ \ \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n \"52.136.136.70/32\",\r\n
+ \ \"2603:1020:905:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.GermanyNorth\",\r\n \"id\":
+ \"AzureCosmosDB.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.116.50.224/27\",\r\n
+ \ \"51.116.58.64/26\",\r\n \"2603:1020:d04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.146.224/27\",\r\n \"51.116.154.128/26\",\r\n
+ \ \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n \"2603:1020:c04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:802::c0/122\",\r\n \"2603:1020:c04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"40.79.186.16/28\",\r\n \"40.79.194.128/26\",\r\n \"40.115.241.37/32\",\r\n
+ \ \"104.41.177.93/32\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"2603:1040:606:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.KoreaCentral\",\r\n \"id\":
+ \"AzureCosmosDB.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.44.26.0/26\",\r\n \"20.194.66.64/26\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.KoreaSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.173.0/27\",\r\n \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n
+ \ \"52.231.207.31/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCosmosDB.NorthCentralUS\",\r\n \"id\": \"AzureCosmosDB.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.128/27\",\r\n \"23.96.180.213/32\",\r\n
+ \ \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n \"52.162.106.0/26\",\r\n
+ \ \"52.162.252.26/32\",\r\n \"65.52.210.9/32\",\r\n \"157.55.170.133/32\",\r\n
+ \ \"2603:1030:608:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.NorthEurope\",\r\n \"id\": \"AzureCosmosDB.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.0/25\",\r\n \"13.74.106.0/25\",\r\n \"13.79.34.236/32\",\r\n
+ \ \"40.113.90.91/32\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.146.131.0/27\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n \"2603:1020:5:402::c0/122\",\r\n
+ \ \"2603:1020:5:802::c0/122\",\r\n \"2603:1020:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.128/27\",\r\n
+ \ \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n \"51.120.210.0/26\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.64/26\",\r\n
+ \ \"51.120.228.160/27\",\r\n \"2603:1020:f04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.0/26\",\r\n \"102.133.154.64/26\",\r\n
+ \ \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n
+ \ \"2603:1000:4:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SouthCentralUS\",\r\n \"id\":
+ \"AzureCosmosDB.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.73.254.224/27\",\r\n
+ \ \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n \"13.85.16.188/32\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.49.90.64/26\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n
+ \ \"104.214.26.177/32\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.8.0/26\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"40.78.236.192/26\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"40.78.194.0/28\",\r\n \"52.172.55.127/32\",\r\n
+ \ \"104.211.227.84/32\",\r\n \"2603:1040:c06:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.52.224/27\",\r\n \"51.107.58.64/26\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SwitzerlandWest\",\r\n \"id\":
+ \"AzureCosmosDB.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.107.148.32/27\",\r\n
+ \ \"51.107.154.64/26\",\r\n \"2603:1020:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UAECentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"2603:1040:b04:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.UAENorth\",\r\n \"id\": \"AzureCosmosDB.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.128/27\",\r\n \"40.120.74.64/26\",\r\n
+ \ \"65.52.251.128/26\",\r\n \"2603:1040:904:402::c0/122\",\r\n
+ \ \"2603:1040:904:802::c0/122\",\r\n \"2603:1040:904:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.143.189.37/32\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.137.166.128/27\",\r\n
+ \ \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n \"51.141.25.77/32\",\r\n
+ \ \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n \"2603:1020:605:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestCentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.0/26\",\r\n \"13.78.188.25/32\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"2603:1030:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestEurope\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.66.0/25\",\r\n \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n
+ \ \"13.81.51.99/32\",\r\n \"13.94.201.5/32\",\r\n \"13.95.234.68/32\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"40.68.44.85/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n \"52.174.253.239/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.232.59.220/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.236.189.0/26\",\r\n \"104.45.16.183/32\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.136.52.64/27\",\r\n \"104.211.146.0/28\",\r\n
+ \ \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"2603:1040:806:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n
+ \ \"13.64.113.68/32\",\r\n \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"20.49.126.160/27\",\r\n
+ \ \"40.83.137.191/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"2603:1030:a07:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.0/26\",\r\n
+ \ \"20.36.26.132/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.158.234.203/32\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"AzureDatabricks\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDatabricks\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.105.50/32\",\r\n \"13.70.107.141/32\",\r\n
+ \ \"13.71.184.74/32\",\r\n \"13.71.187.166/32\",\r\n \"13.75.164.249/32\",\r\n
+ \ \"13.75.218.172/32\",\r\n \"13.78.18.152/32\",\r\n \"13.78.19.235/32\",\r\n
+ \ \"13.86.58.215/32\",\r\n \"13.88.249.244/32\",\r\n \"20.36.120.68/30\",\r\n
+ \ \"20.37.64.68/30\",\r\n \"20.37.156.208/28\",\r\n \"20.37.195.16/29\",\r\n
+ \ \"20.37.224.68/30\",\r\n \"20.38.84.80/28\",\r\n \"20.38.136.120/29\",\r\n
+ \ \"20.39.8.68/30\",\r\n \"20.41.4.112/28\",\r\n \"20.41.65.136/29\",\r\n
+ \ \"20.41.192.68/30\",\r\n \"20.42.4.208/28\",\r\n \"20.42.129.160/28\",\r\n
+ \ \"20.42.224.68/30\",\r\n \"20.43.41.152/29\",\r\n \"20.43.65.144/29\",\r\n
+ \ \"20.43.130.96/28\",\r\n \"20.45.112.68/30\",\r\n \"20.45.192.68/30\",\r\n
+ \ \"20.46.12.200/29\",\r\n \"20.46.121.76/32\",\r\n \"20.72.16.32/29\",\r\n
+ \ \"20.150.160.104/30\",\r\n \"20.150.160.208/29\",\r\n \"20.186.83.56/32\",\r\n
+ \ \"20.189.106.192/28\",\r\n \"20.192.160.32/29\",\r\n \"20.192.225.24/29\",\r\n
+ \ \"20.194.4.102/32\",\r\n \"23.97.106.142/32\",\r\n \"23.97.201.41/32\",\r\n
+ \ \"23.100.0.135/32\",\r\n \"23.100.226.13/32\",\r\n \"23.101.147.147/32\",\r\n
+ \ \"23.101.152.95/32\",\r\n \"40.67.48.68/30\",\r\n \"40.70.58.221/32\",\r\n
+ \ \"40.74.30.80/28\",\r\n \"40.80.56.68/30\",\r\n \"40.80.168.68/30\",\r\n
+ \ \"40.80.188.0/28\",\r\n \"40.82.248.112/28\",\r\n \"40.83.176.199/32\",\r\n
+ \ \"40.83.178.242/32\",\r\n \"40.85.223.25/32\",\r\n \"40.86.167.110/32\",\r\n
+ \ \"40.89.16.68/30\",\r\n \"40.89.168.225/32\",\r\n \"40.89.170.184/32\",\r\n
+ \ \"40.89.171.101/32\",\r\n \"40.118.174.12/32\",\r\n \"40.119.9.208/28\",\r\n
+ \ \"40.123.212.253/32\",\r\n \"40.123.218.63/32\",\r\n \"40.123.219.125/32\",\r\n
+ \ \"40.123.225.135/32\",\r\n \"40.127.5.82/32\",\r\n \"40.127.5.124/32\",\r\n
+ \ \"40.127.147.196/32\",\r\n \"51.12.41.16/30\",\r\n \"51.12.47.16/29\",\r\n
+ \ \"51.12.193.16/30\",\r\n \"51.12.198.200/29\",\r\n \"51.103.18.111/32\",\r\n
+ \ \"51.104.25.136/30\",\r\n \"51.105.80.68/30\",\r\n \"51.105.88.68/30\",\r\n
+ \ \"51.107.48.120/30\",\r\n \"51.107.144.68/30\",\r\n \"51.120.40.120/30\",\r\n
+ \ \"51.120.224.68/30\",\r\n \"51.120.234.176/29\",\r\n \"51.137.160.120/29\",\r\n
+ \ \"51.138.96.158/32\",\r\n \"51.140.200.46/32\",\r\n \"51.140.203.27/32\",\r\n
+ \ \"51.140.204.4/32\",\r\n \"51.141.103.193/32\",\r\n \"51.143.192.68/30\",\r\n
+ \ \"52.136.48.68/30\",\r\n \"52.140.104.120/29\",\r\n \"52.141.6.71/32\",\r\n
+ \ \"52.141.6.181/32\",\r\n \"52.141.22.164/32\",\r\n \"52.146.50.16/32\",\r\n
+ \ \"52.150.136.68/30\",\r\n \"52.172.133.58/32\",\r\n \"52.187.0.85/32\",\r\n
+ \ \"52.187.3.203/32\",\r\n \"52.187.145.107/32\",\r\n \"52.228.81.136/29\",\r\n
+ \ \"52.230.27.216/32\",\r\n \"52.232.19.246/32\",\r\n \"52.246.160.72/32\",\r\n
+ \ \"52.247.0.200/32\",\r\n \"102.37.41.3/32\",\r\n \"102.133.56.68/30\",\r\n
+ \ \"102.133.216.96/29\",\r\n \"102.133.224.24/32\",\r\n \"104.41.54.118/32\",\r\n
+ \ \"104.45.7.191/32\",\r\n \"104.211.89.81/32\",\r\n \"104.211.101.14/32\",\r\n
+ \ \"104.211.103.82/32\",\r\n \"191.232.53.223/32\",\r\n \"191.233.8.32/29\",\r\n
+ \ \"191.234.160.82/32\",\r\n \"191.235.225.144/29\",\r\n
+ \ \"2603:1000:4::160/123\",\r\n \"2603:1000:104:1::160/123\",\r\n
+ \ \"2603:1010:6:1::160/123\",\r\n \"2603:1010:101::160/123\",\r\n
+ \ \"2603:1010:304::160/123\",\r\n \"2603:1010:404::160/123\",\r\n
+ \ \"2603:1020:5:1::160/123\",\r\n \"2603:1020:206:1::160/123\",\r\n
+ \ \"2603:1020:305::160/123\",\r\n \"2603:1020:405::160/123\",\r\n
+ \ \"2603:1020:605::160/123\",\r\n \"2603:1020:705:1::160/123\",\r\n
+ \ \"2603:1020:805:1::160/123\",\r\n \"2603:1020:905::160/123\",\r\n
+ \ \"2603:1020:a04:1::160/123\",\r\n \"2603:1020:b04::160/123\",\r\n
+ \ \"2603:1020:c04:1::160/123\",\r\n \"2603:1020:d04::160/123\",\r\n
+ \ \"2603:1020:e04:1::160/123\",\r\n \"2603:1020:f04::160/123\",\r\n
+ \ \"2603:1020:1004::160/123\",\r\n \"2603:1020:1104::160/123\",\r\n
+ \ \"2603:1030:f:1::160/123\",\r\n \"2603:1030:10:1::160/123\",\r\n
+ \ \"2603:1030:104:1::160/123\",\r\n \"2603:1030:107::160/123\",\r\n
+ \ \"2603:1030:210:1::160/123\",\r\n \"2603:1030:40b:1::160/123\",\r\n
+ \ \"2603:1030:40c:1::160/123\",\r\n \"2603:1030:504:1::160/123\",\r\n
+ \ \"2603:1030:608::160/123\",\r\n \"2603:1030:807:1::160/123\",\r\n
+ \ \"2603:1030:a07::160/123\",\r\n \"2603:1030:b04::160/123\",\r\n
+ \ \"2603:1030:c06:1::160/123\",\r\n \"2603:1030:f05:1::160/123\",\r\n
+ \ \"2603:1030:1005::160/123\",\r\n \"2603:1040:5:1::160/123\",\r\n
+ \ \"2603:1040:207::160/123\",\r\n \"2603:1040:407:1::160/123\",\r\n
+ \ \"2603:1040:606::160/123\",\r\n \"2603:1040:806::160/123\",\r\n
+ \ \"2603:1040:904:1::160/123\",\r\n \"2603:1040:a06:1::160/123\",\r\n
+ \ \"2603:1040:b04::160/123\",\r\n \"2603:1040:c06::160/123\",\r\n
+ \ \"2603:1040:d04::160/123\",\r\n \"2603:1040:f05:1::160/123\",\r\n
+ \ \"2603:1040:1104::160/123\",\r\n \"2603:1050:6:1::160/123\",\r\n
+ \ \"2603:1050:403::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement\",\r\n \"id\":
+ \"AzureDataExplorerManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.66.141.160/28\",\r\n
+ \ \"13.69.106.240/28\",\r\n \"13.69.229.176/28\",\r\n \"13.70.73.112/28\",\r\n
+ \ \"13.71.173.64/28\",\r\n \"13.71.196.64/28\",\r\n \"13.73.240.96/28\",\r\n
+ \ \"13.75.39.0/28\",\r\n \"13.77.52.240/28\",\r\n \"13.86.36.42/32\",\r\n
+ \ \"13.86.219.64/28\",\r\n \"13.87.57.224/28\",\r\n \"13.87.123.224/28\",\r\n
+ \ \"13.89.174.80/28\",\r\n \"20.36.242.104/32\",\r\n \"20.37.24.1/32\",\r\n
+ \ \"20.39.97.38/32\",\r\n \"20.39.99.177/32\",\r\n \"20.40.114.21/32\",\r\n
+ \ \"20.40.161.39/32\",\r\n \"20.43.89.90/32\",\r\n \"20.43.120.96/28\",\r\n
+ \ \"20.44.16.96/28\",\r\n \"20.44.27.96/28\",\r\n \"20.45.3.60/32\",\r\n
+ \ \"20.46.13.240/28\",\r\n \"20.46.146.7/32\",\r\n \"20.72.27.128/28\",\r\n
+ \ \"20.150.171.192/28\",\r\n \"20.150.245.112/28\",\r\n \"20.185.100.27/32\",\r\n
+ \ \"20.189.74.103/32\",\r\n \"20.192.235.128/28\",\r\n \"20.193.203.96/28\",\r\n
+ \ \"20.194.75.224/28\",\r\n \"23.98.82.240/28\",\r\n \"40.66.57.57/32\",\r\n
+ \ \"40.66.57.91/32\",\r\n \"40.67.188.68/32\",\r\n \"40.69.107.240/28\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"40.74.101.208/28\",\r\n \"40.74.147.80/28\",\r\n
+ \ \"40.78.195.240/28\",\r\n \"40.78.203.176/28\",\r\n \"40.79.131.224/28\",\r\n
+ \ \"40.79.179.208/28\",\r\n \"40.79.187.16/28\",\r\n \"40.80.234.9/32\",\r\n
+ \ \"40.80.250.168/32\",\r\n \"40.80.255.12/32\",\r\n \"40.81.28.50/32\",\r\n
+ \ \"40.81.43.47/32\",\r\n \"40.81.56.122/32\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"40.81.88.112/32\",\r\n \"40.81.89.242/32\",\r\n \"40.81.122.39/32\",\r\n
+ \ \"40.81.154.254/32\",\r\n \"40.81.184.86/32\",\r\n \"40.81.220.38/32\",\r\n
+ \ \"40.81.248.53/32\",\r\n \"40.81.249.251/32\",\r\n \"40.82.154.174/32\",\r\n
+ \ \"40.82.156.149/32\",\r\n \"40.82.188.208/32\",\r\n \"40.82.217.84/32\",\r\n
+ \ \"40.82.236.24/32\",\r\n \"40.89.56.69/32\",\r\n \"40.90.219.23/32\",\r\n
+ \ \"40.91.74.95/32\",\r\n \"40.119.3.195/32\",\r\n \"40.119.203.252/32\",\r\n
+ \ \"51.12.20.48/28\",\r\n \"51.12.28.48/28\",\r\n \"51.12.99.192/28\",\r\n
+ \ \"51.12.203.192/28\",\r\n \"51.104.8.112/28\",\r\n \"51.107.59.160/28\",\r\n
+ \ \"51.107.98.201/32\",\r\n \"51.107.155.160/28\",\r\n \"51.116.59.160/28\",\r\n
+ \ \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n \"51.120.99.80/28\",\r\n
+ \ \"51.120.219.192/28\",\r\n \"51.120.235.224/28\",\r\n \"51.140.212.0/28\",\r\n
+ \ \"51.145.176.215/32\",\r\n \"52.142.91.221/32\",\r\n \"52.159.55.120/32\",\r\n
+ \ \"52.162.110.176/28\",\r\n \"52.224.146.56/32\",\r\n \"52.231.148.16/28\",\r\n
+ \ \"52.232.230.201/32\",\r\n \"52.253.159.186/32\",\r\n \"52.253.225.186/32\",\r\n
+ \ \"52.253.226.110/32\",\r\n \"102.133.0.192/32\",\r\n \"102.133.28.112/28\",\r\n
+ \ \"102.133.130.206/32\",\r\n \"102.133.156.16/28\",\r\n
+ \ \"104.211.147.224/28\",\r\n \"191.233.25.183/32\",\r\n
+ \ \"191.233.50.208/28\",\r\n \"191.233.205.0/28\",\r\n \"2603:1000:4:1::380/121\",\r\n
+ \ \"2603:1000:4:402::150/124\",\r\n \"2603:1000:104:2::100/121\",\r\n
+ \ \"2603:1000:104:402::150/124\",\r\n \"2603:1010:6::600/121\",\r\n
+ \ \"2603:1010:6:402::150/124\",\r\n \"2603:1010:101:1::380/121\",\r\n
+ \ \"2603:1010:101:402::150/124\",\r\n \"2603:1010:304:1::380/121\",\r\n
+ \ \"2603:1010:304:402::150/124\",\r\n \"2603:1010:404:1::380/121\",\r\n
+ \ \"2603:1010:404:402::150/124\",\r\n \"2603:1020:5::600/121\",\r\n
+ \ \"2603:1020:5:402::150/124\",\r\n \"2603:1020:206::600/121\",\r\n
+ \ \"2603:1020:206:402::150/124\",\r\n \"2603:1020:305:402::150/124\",\r\n
+ \ \"2603:1020:405:402::150/124\",\r\n \"2603:1020:605:1::380/121\",\r\n
+ \ \"2603:1020:605:402::150/124\",\r\n \"2603:1020:705::600/121\",\r\n
+ \ \"2603:1020:705:402::150/124\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\",\r\n \"2603:1020:905:1::380/121\",\r\n
+ \ \"2603:1020:905:402::150/124\",\r\n \"2603:1020:a04::600/121\",\r\n
+ \ \"2603:1020:a04:402::150/124\",\r\n \"2603:1020:b04:1::380/121\",\r\n
+ \ \"2603:1020:b04:402::150/124\",\r\n \"2603:1020:c04::600/121\",\r\n
+ \ \"2603:1020:c04:402::150/124\",\r\n \"2603:1020:d04:1::380/121\",\r\n
+ \ \"2603:1020:d04:402::150/124\",\r\n \"2603:1020:e04::600/121\",\r\n
+ \ \"2603:1020:e04:402::150/124\",\r\n \"2603:1020:f04:1::380/121\",\r\n
+ \ \"2603:1020:f04:402::150/124\",\r\n \"2603:1020:1004:2::100/121\",\r\n
+ \ \"2603:1020:1004:800::d0/124\",\r\n \"2603:1020:1104:1::600/121\",\r\n
+ \ \"2603:1020:1104:400::150/124\",\r\n \"2603:1030:f:2::380/121\",\r\n
+ \ \"2603:1030:f:400::950/124\",\r\n \"2603:1030:10::600/121\",\r\n
+ \ \"2603:1030:10:402::150/124\",\r\n \"2603:1030:104::600/121\",\r\n
+ \ \"2603:1030:104:402::150/124\",\r\n \"2603:1030:107:1::300/121\",\r\n
+ \ \"2603:1030:107:400::e0/124\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\",\r\n \"2603:1030:40b:2::400/121\",\r\n
+ \ \"2603:1030:40b:400::950/124\",\r\n \"2603:1030:40c::600/121\",\r\n
+ \ \"2603:1030:40c:402::150/124\",\r\n \"2603:1030:504:2::180/121\",\r\n
+ \ \"2603:1030:504:802::d0/124\",\r\n \"2603:1030:608:1::380/121\",\r\n
+ \ \"2603:1030:608:402::150/124\",\r\n \"2603:1030:807::600/121\",\r\n
+ \ \"2603:1030:807:402::150/124\",\r\n \"2603:1030:a07:1::380/121\",\r\n
+ \ \"2603:1030:a07:402::8d0/124\",\r\n \"2603:1030:b04:1::380/121\",\r\n
+ \ \"2603:1030:b04:402::150/124\",\r\n \"2603:1030:c06:2::400/121\",\r\n
+ \ \"2603:1030:c06:400::950/124\",\r\n \"2603:1030:f05::600/121\",\r\n
+ \ \"2603:1030:f05:402::150/124\",\r\n \"2603:1030:1005:1::380/121\",\r\n
+ \ \"2603:1030:1005:402::150/124\",\r\n \"2603:1040:5::700/121\",\r\n
+ \ \"2603:1040:5:402::150/124\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\",\r\n \"2603:1040:407::600/121\",\r\n
+ \ \"2603:1040:407:402::150/124\",\r\n \"2603:1040:606:1::380/121\",\r\n
+ \ \"2603:1040:606:402::150/124\",\r\n \"2603:1040:806:1::380/121\",\r\n
+ \ \"2603:1040:806:402::150/124\",\r\n \"2603:1040:904::600/121\",\r\n
+ \ \"2603:1040:904:402::150/124\",\r\n \"2603:1040:a06::700/121\",\r\n
+ \ \"2603:1040:a06:402::150/124\",\r\n \"2603:1040:b04:1::380/121\",\r\n
+ \ \"2603:1040:b04:402::150/124\",\r\n \"2603:1040:c06:1::380/121\",\r\n
+ \ \"2603:1040:c06:402::150/124\",\r\n \"2603:1040:d04:2::280/121\",\r\n
+ \ \"2603:1040:d04:800::d0/124\",\r\n \"2603:1040:e05::180/121\",\r\n
+ \ \"2603:1040:f05::600/121\",\r\n \"2603:1040:f05:402::150/124\",\r\n
+ \ \"2603:1040:1104:1::680/121\",\r\n \"2603:1040:1104:400::150/124\",\r\n
+ \ \"2603:1050:6::600/121\",\r\n \"2603:1050:6:402::150/124\",\r\n
+ \ \"2603:1050:403:1::400/121\",\r\n \"2603:1050:403:400::2b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.EastAsia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.0/28\",\r\n \"20.189.74.103/32\",\r\n
+ \ \"40.81.28.50/32\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.EastUS\",\r\n \"id\":
+ \"AzureDataExplorerManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureDataExplorerManagement\",\r\n \"addressPrefixes\": [\r\n \"20.185.100.27/32\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"52.224.146.56/32\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.FranceCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.66.57.57/32\",\r\n \"40.66.57.91/32\",\r\n
+ \ \"40.79.131.224/28\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n
+ \ \"2603:1020:c04::600/121\",\r\n \"2603:1020:c04:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.SouthIndia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.195.240/28\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"2603:1040:c06:1::380/121\",\r\n \"2603:1040:c06:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.WestUS\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.WestUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.86.219.64/28\",\r\n
+ \ \"2603:1030:a07:1::380/121\",\r\n \"2603:1030:a07:402::8d0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake\",\r\n
+ \ \"id\": \"AzureDataLake\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\",\r\n
+ \ \"40.90.141.128/29\",\r\n \"40.90.141.167/32\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.145.192/26\",\r\n \"65.52.108.31/32\",\r\n \"65.52.108.38/32\",\r\n
+ \ \"104.44.88.66/31\",\r\n \"104.44.88.106/31\",\r\n \"104.44.88.112/31\",\r\n
+ \ \"104.44.88.176/31\",\r\n \"104.44.88.184/29\",\r\n \"104.44.89.39/32\",\r\n
+ \ \"104.44.89.42/32\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.194/31\",\r\n
+ \ \"104.44.91.64/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.93.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureDataLake.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.WestEurope\",\r\n
+ \ \"id\": \"AzureDataLake.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.141.167/32\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"104.44.90.194/31\",\r\n \"104.44.93.192/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces\",\r\n \"id\":
+ \"AzureDevSpaces\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.71.144/28\",\r\n \"13.70.78.176/28\",\r\n
+ \ \"13.71.175.112/28\",\r\n \"13.71.199.96/28\",\r\n \"13.73.244.128/28\",\r\n
+ \ \"13.74.111.128/28\",\r\n \"13.78.111.144/28\",\r\n \"13.86.221.224/28\",\r\n
+ \ \"20.37.157.64/28\",\r\n \"20.37.195.80/28\",\r\n \"20.38.85.128/28\",\r\n
+ \ \"20.39.11.64/28\",\r\n \"20.41.5.128/28\",\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\",\r\n \"20.42.131.192/27\",\r\n
+ \ \"20.42.230.64/28\",\r\n \"20.43.65.208/28\",\r\n \"20.43.130.240/28\",\r\n
+ \ \"20.189.108.32/28\",\r\n \"40.69.110.176/28\",\r\n \"40.70.151.80/28\",\r\n
+ \ \"40.74.30.144/28\",\r\n \"40.75.35.224/28\",\r\n \"40.78.239.0/28\",\r\n
+ \ \"40.78.251.224/27\",\r\n \"40.82.253.112/28\",\r\n \"40.89.17.192/28\",\r\n
+ \ \"40.119.9.240/28\",\r\n \"51.104.25.208/28\",\r\n \"51.105.77.64/28\",\r\n
+ \ \"52.150.139.144/28\",\r\n \"52.182.141.128/28\",\r\n \"52.228.81.224/28\",\r\n
+ \ \"104.214.161.48/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureDevSpaces.EastUS\",\r\n \"id\": \"AzureDevSpaces.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureDevSpaces\",\r\n \"addressPrefixes\": [\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.128/28\",\r\n \"40.70.151.80/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.11.64/28\",\r\n \"40.75.35.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.JapanEast\",\r\n
+ \ \"id\": \"AzureDevSpaces.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.78.111.144/28\",\r\n \"20.43.65.208/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.NorthEurope\",\r\n
+ \ \"id\": \"AzureDevSpaces.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.74.111.128/28\",\r\n \"20.38.85.128/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureDevSpaces.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.130.240/28\",\r\n \"40.78.239.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.224/28\",\r\n \"40.82.253.112/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.131.192/27\",\r\n \"40.78.251.224/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDigitalTwins\",\r\n
+ \ \"id\": \"AzureDigitalTwins\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDigitalTwins\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.125.120/29\",\r\n \"20.36.125.192/27\",\r\n
+ \ \"20.37.70.112/29\",\r\n \"20.37.70.192/27\",\r\n \"20.38.142.112/29\",\r\n
+ \ \"20.38.142.192/27\",\r\n \"20.39.2.134/32\",\r\n \"20.39.2.208/32\",\r\n
+ \ \"20.39.2.237/32\",\r\n \"20.39.3.11/32\",\r\n \"20.39.3.14/32\",\r\n
+ \ \"20.39.3.17/32\",\r\n \"20.39.3.38/32\",\r\n \"20.39.18.169/32\",\r\n
+ \ \"20.40.225.48/29\",\r\n \"20.40.225.128/27\",\r\n \"20.43.47.72/29\",\r\n
+ \ \"20.43.47.96/27\",\r\n \"20.45.116.80/29\",\r\n \"20.45.116.96/27\",\r\n
+ \ \"20.46.10.56/29\",\r\n \"20.46.10.96/27\",\r\n \"20.48.193.128/27\",\r\n
+ \ \"20.48.193.160/29\",\r\n \"20.49.103.112/29\",\r\n \"20.49.103.192/27\",\r\n
+ \ \"20.49.118.8/29\",\r\n \"20.49.118.32/27\",\r\n \"20.49.248.209/32\",\r\n
+ \ \"20.49.249.56/32\",\r\n \"20.49.249.78/32\",\r\n \"20.49.249.101/32\",\r\n
+ \ \"20.49.249.106/32\",\r\n \"20.49.249.156/32\",\r\n \"20.49.249.189/32\",\r\n
+ \ \"20.49.249.208/32\",\r\n \"20.49.249.236/32\",\r\n \"20.49.250.2/32\",\r\n
+ \ \"20.50.211.192/32\",\r\n \"20.50.212.99/32\",\r\n \"20.50.212.103/32\",\r\n
+ \ \"20.50.212.140/32\",\r\n \"20.50.213.6/32\",\r\n \"20.50.213.76/32\",\r\n
+ \ \"20.50.213.88/32\",\r\n \"20.50.213.93/32\",\r\n \"20.50.213.94/32\",\r\n
+ \ \"20.50.213.120/32\",\r\n \"20.51.8.96/27\",\r\n \"20.51.8.192/29\",\r\n
+ \ \"20.51.16.176/29\",\r\n \"20.51.17.0/27\",\r\n \"20.51.73.8/32\",\r\n
+ \ \"20.51.73.11/32\",\r\n \"20.51.73.22/31\",\r\n \"20.51.73.25/32\",\r\n
+ \ \"20.51.73.26/31\",\r\n \"20.51.73.36/32\",\r\n \"20.51.73.39/32\",\r\n
+ \ \"20.51.73.44/32\",\r\n \"20.53.44.88/29\",\r\n \"20.53.44.96/27\",\r\n
+ \ \"20.53.48.0/27\",\r\n \"20.53.48.32/29\",\r\n \"20.53.114.26/32\",\r\n
+ \ \"20.53.114.71/32\",\r\n \"20.53.114.84/32\",\r\n \"20.53.114.118/32\",\r\n
+ \ \"20.58.66.0/27\",\r\n \"20.58.66.32/29\",\r\n \"20.61.98.144/29\",\r\n
+ \ \"20.61.99.0/27\",\r\n \"20.62.129.32/27\",\r\n \"20.62.129.128/29\",\r\n
+ \ \"20.65.130.72/29\",\r\n \"20.65.130.96/27\",\r\n \"20.66.2.16/29\",\r\n
+ \ \"20.66.2.128/27\",\r\n \"20.72.20.0/27\",\r\n \"20.150.166.176/29\",\r\n
+ \ \"20.150.167.128/27\",\r\n \"20.185.75.6/32\",\r\n \"20.185.75.209/32\",\r\n
+ \ \"20.187.197.16/29\",\r\n \"20.187.197.128/27\",\r\n \"20.189.224.224/27\",\r\n
+ \ \"20.189.225.64/29\",\r\n \"20.191.161.96/27\",\r\n \"20.191.161.192/29\",\r\n
+ \ \"20.192.166.176/29\",\r\n \"20.192.167.128/27\",\r\n \"20.192.231.192/27\",\r\n
+ \ \"20.192.231.224/29\",\r\n \"20.193.3.89/32\",\r\n \"20.193.3.243/32\",\r\n
+ \ \"20.193.7.70/32\",\r\n \"20.193.7.132/32\",\r\n \"20.193.59.172/32\",\r\n
+ \ \"20.193.59.253/32\",\r\n \"20.194.72.136/29\",\r\n \"20.194.72.160/27\",\r\n
+ \ \"23.98.108.184/29\",\r\n \"23.98.109.0/27\",\r\n \"40.67.52.104/29\",\r\n
+ \ \"40.67.52.192/27\",\r\n \"40.80.173.208/29\",\r\n \"40.80.173.224/27\",\r\n
+ \ \"40.119.241.130/32\",\r\n \"40.119.241.148/32\",\r\n \"40.119.241.154/32\",\r\n
+ \ \"40.119.242.73/32\",\r\n \"40.119.242.79/32\",\r\n \"40.119.242.168/32\",\r\n
+ \ \"40.119.242.232/32\",\r\n \"40.119.243.20/32\",\r\n \"40.119.243.119/32\",\r\n
+ \ \"40.119.243.178/32\",\r\n \"40.124.97.243/32\",\r\n \"40.124.98.14/31\",\r\n
+ \ \"40.124.98.23/32\",\r\n \"40.124.98.34/31\",\r\n \"40.124.98.48/32\",\r\n
+ \ \"40.124.98.52/32\",\r\n \"40.124.98.70/32\",\r\n \"40.124.99.100/32\",\r\n
+ \ \"51.12.43.144/29\",\r\n \"51.12.43.160/27\",\r\n \"51.12.194.120/29\",\r\n
+ \ \"51.12.195.192/27\",\r\n \"51.13.136.128/27\",\r\n \"51.13.136.160/29\",\r\n
+ \ \"51.104.141.227/32\",\r\n \"51.107.241.64/27\",\r\n \"51.107.241.96/29\",\r\n
+ \ \"51.107.249.80/29\",\r\n \"51.107.249.96/27\",\r\n \"51.116.51.176/29\",\r\n
+ \ \"51.116.54.0/27\",\r\n \"51.116.148.120/29\",\r\n \"51.116.148.192/27\",\r\n
+ \ \"51.120.232.40/29\",\r\n \"51.120.232.128/27\",\r\n \"51.143.208.208/29\",\r\n
+ \ \"51.143.208.224/27\",\r\n \"52.136.52.248/29\",\r\n \"52.136.53.64/27\",\r\n
+ \ \"52.136.184.80/29\",\r\n \"52.136.184.96/27\",\r\n \"52.139.106.96/27\",\r\n
+ \ \"52.140.111.112/29\",\r\n \"52.140.111.192/27\",\r\n \"52.142.120.18/32\",\r\n
+ \ \"52.142.120.22/32\",\r\n \"52.142.120.57/32\",\r\n \"52.142.120.74/32\",\r\n
+ \ \"52.142.120.90/32\",\r\n \"52.142.120.104/32\",\r\n \"52.142.120.156/32\",\r\n
+ \ \"52.146.132.192/27\",\r\n \"52.146.132.224/29\",\r\n \"52.148.29.27/32\",\r\n
+ \ \"52.149.20.142/32\",\r\n \"52.149.234.152/32\",\r\n \"52.149.238.190/32\",\r\n
+ \ \"52.149.239.34/32\",\r\n \"52.150.156.248/29\",\r\n \"52.150.157.32/27\",\r\n
+ \ \"52.153.153.146/32\",\r\n \"52.153.153.246/32\",\r\n \"52.153.153.255/32\",\r\n
+ \ \"52.153.154.13/32\",\r\n \"52.153.154.40/32\",\r\n \"52.153.154.123/32\",\r\n
+ \ \"52.153.154.158/32\",\r\n \"52.153.154.161/32\",\r\n \"52.156.207.58/32\",\r\n
+ \ \"52.156.207.195/32\",\r\n \"52.161.185.49/32\",\r\n \"52.170.161.49/32\",\r\n
+ \ \"52.170.162.28/32\",\r\n \"52.172.112.168/29\",\r\n \"52.172.113.0/27\",\r\n
+ \ \"52.186.106.218/32\",\r\n \"52.191.16.191/32\",\r\n \"52.191.18.106/32\",\r\n
+ \ \"52.247.76.74/32\",\r\n \"52.247.76.167/32\",\r\n \"52.247.76.187/32\",\r\n
+ \ \"52.247.76.199/32\",\r\n \"52.247.76.216/32\",\r\n \"52.247.76.246/32\",\r\n
+ \ \"52.247.76.252/32\",\r\n \"52.247.77.7/32\",\r\n \"52.247.77.22/32\",\r\n
+ \ \"52.247.77.26/32\",\r\n \"52.250.39.158/32\",\r\n \"52.250.39.236/32\",\r\n
+ \ \"52.250.39.246/32\",\r\n \"52.250.39.250/32\",\r\n \"52.250.72.145/32\",\r\n
+ \ \"52.250.73.36/32\",\r\n \"52.250.73.178/32\",\r\n \"52.250.73.204/32\",\r\n
+ \ \"52.250.74.3/32\",\r\n \"52.253.224.146/32\",\r\n \"52.253.224.154/32\",\r\n
+ \ \"102.37.80.0/27\",\r\n \"102.37.80.32/29\",\r\n \"102.133.221.16/29\",\r\n
+ \ \"102.133.221.32/27\",\r\n \"104.46.178.120/29\",\r\n \"104.46.178.160/27\",\r\n
+ \ \"191.233.15.16/29\",\r\n \"191.233.15.32/27\",\r\n \"191.234.139.168/29\",\r\n
+ \ \"191.234.142.0/27\",\r\n \"2603:1020:e04::700/121\",\r\n
+ \ \"2603:1020:1004:1::540/122\",\r\n \"2603:1020:1004:2::/121\",\r\n
+ \ \"2603:1020:1104:1::380/122\",\r\n \"2603:1020:1104:1::680/121\",\r\n
+ \ \"2603:1030:f:2::500/121\",\r\n \"2603:1030:107::5c0/122\",\r\n
+ \ \"2603:1030:504::560/123\",\r\n \"2603:1030:504:2::/121\",\r\n
+ \ \"2603:1040:d04:1::540/122\",\r\n \"2603:1040:d04:2::80/121\",\r\n
+ \ \"2603:1040:f05::700/121\",\r\n \"2603:1040:1104:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid\",\r\n
+ \ \"id\": \"AzureEventGrid\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.56.240/28\",\r\n \"13.71.57.0/28\",\r\n \"13.73.248.128/25\",\r\n
+ \ \"13.86.56.32/27\",\r\n \"13.86.56.160/27\",\r\n \"13.88.73.16/28\",\r\n
+ \ \"13.88.73.32/27\",\r\n \"13.88.135.208/28\",\r\n \"13.91.193.0/28\",\r\n
+ \ \"20.36.121.0/25\",\r\n \"20.37.55.32/27\",\r\n \"20.37.65.0/25\",\r\n
+ \ \"20.37.82.224/27\",\r\n \"20.37.157.128/25\",\r\n \"20.37.196.0/25\",\r\n
+ \ \"20.37.225.0/25\",\r\n \"20.38.87.0/25\",\r\n \"20.38.137.0/25\",\r\n
+ \ \"20.39.11.128/25\",\r\n \"20.39.20.16/28\",\r\n \"20.39.80.112/28\",\r\n
+ \ \"20.39.80.128/28\",\r\n \"20.39.99.64/28\",\r\n \"20.39.99.240/28\",\r\n
+ \ \"20.40.152.128/27\",\r\n \"20.40.175.48/28\",\r\n \"20.40.175.64/28\",\r\n
+ \ \"20.41.66.0/25\",\r\n \"20.41.136.240/28\",\r\n \"20.41.195.0/25\",\r\n
+ \ \"20.42.7.0/25\",\r\n \"20.42.228.0/25\",\r\n \"20.43.42.128/25\",\r\n
+ \ \"20.43.66.128/25\",\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.39.176/28\",\r\n \"20.44.39.192/28\",\r\n
+ \ \"20.44.168.64/28\",\r\n \"20.44.205.112/28\",\r\n \"20.45.113.0/25\",\r\n
+ \ \"20.45.195.0/25\",\r\n \"20.46.152.112/28\",\r\n \"20.46.152.128/28\",\r\n
+ \ \"20.49.96.0/25\",\r\n \"20.52.90.128/25\",\r\n \"20.72.17.128/25\",\r\n
+ \ \"20.150.164.0/25\",\r\n \"20.189.108.128/25\",\r\n \"20.189.115.80/28\",\r\n
+ \ \"20.189.123.80/28\",\r\n \"20.189.125.32/27\",\r\n \"20.191.59.128/28\",\r\n
+ \ \"20.191.59.176/28\",\r\n \"20.192.164.0/25\",\r\n \"20.192.228.0/25\",\r\n
+ \ \"20.193.34.0/28\",\r\n \"20.193.34.32/28\",\r\n \"40.64.128.0/25\",\r\n
+ \ \"40.67.49.0/25\",\r\n \"40.74.31.128/25\",\r\n \"40.74.106.96/27\",\r\n
+ \ \"40.80.58.0/25\",\r\n \"40.80.170.0/25\",\r\n \"40.80.190.0/25\",\r\n
+ \ \"40.80.236.192/27\",\r\n \"40.81.93.240/28\",\r\n \"40.81.95.128/28\",\r\n
+ \ \"40.82.254.128/25\",\r\n \"40.89.18.0/25\",\r\n \"40.89.240.144/28\",\r\n
+ \ \"40.114.160.176/28\",\r\n \"40.114.160.192/28\",\r\n \"40.114.169.0/28\",\r\n
+ \ \"40.127.155.192/28\",\r\n \"40.127.251.144/28\",\r\n \"51.12.47.128/25\",\r\n
+ \ \"51.12.199.0/25\",\r\n \"51.104.27.128/25\",\r\n \"51.105.81.0/25\",\r\n
+ \ \"51.105.89.0/25\",\r\n \"51.107.4.128/27\",\r\n \"51.107.49.0/25\",\r\n
+ \ \"51.107.99.32/27\",\r\n \"51.107.145.0/25\",\r\n \"51.116.3.32/27\",\r\n
+ \ \"51.116.72.0/25\",\r\n \"51.116.100.208/28\",\r\n \"51.116.100.224/28\",\r\n
+ \ \"51.120.4.0/27\",\r\n \"51.120.41.0/25\",\r\n \"51.120.131.64/27\",\r\n
+ \ \"51.120.225.0/25\",\r\n \"51.132.161.160/28\",\r\n \"51.132.170.64/28\",\r\n
+ \ \"51.137.16.224/28\",\r\n \"51.137.142.32/28\",\r\n \"51.137.162.0/25\",\r\n
+ \ \"51.143.193.0/25\",\r\n \"52.136.49.0/25\",\r\n \"52.139.9.80/28\",\r\n
+ \ \"52.139.11.16/28\",\r\n \"52.139.85.16/28\",\r\n \"52.139.85.32/28\",\r\n
+ \ \"52.140.106.0/25\",\r\n \"52.142.152.144/28\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.149.248.0/28\",\r\n
+ \ \"52.149.248.64/27\",\r\n \"52.149.248.96/28\",\r\n \"52.150.140.0/25\",\r\n
+ \ \"52.154.57.48/28\",\r\n \"52.154.57.80/28\",\r\n \"52.154.68.16/28\",\r\n
+ \ \"52.154.68.32/28\",\r\n \"52.156.103.192/28\",\r\n \"52.159.49.144/28\",\r\n
+ \ \"52.159.51.160/28\",\r\n \"52.159.53.64/28\",\r\n \"52.159.53.112/28\",\r\n
+ \ \"52.160.136.16/28\",\r\n \"52.160.136.32/28\",\r\n \"52.161.186.128/28\",\r\n
+ \ \"52.161.186.208/28\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.170.171.192/28\",\r\n \"52.170.171.240/28\",\r\n
+ \ \"52.177.38.160/27\",\r\n \"52.185.176.112/28\",\r\n \"52.185.212.176/28\",\r\n
+ \ \"52.185.212.192/28\",\r\n \"52.186.36.16/28\",\r\n \"52.228.83.0/25\",\r\n
+ \ \"52.231.112.192/28\",\r\n \"52.231.112.224/28\",\r\n \"52.250.28.176/28\",\r\n
+ \ \"52.250.32.160/28\",\r\n \"52.252.213.192/28\",\r\n \"52.255.80.16/28\",\r\n
+ \ \"52.255.82.160/28\",\r\n \"102.37.162.0/25\",\r\n \"102.133.0.240/28\",\r\n
+ \ \"102.133.1.0/28\",\r\n \"102.133.57.0/25\",\r\n \"102.133.135.16/28\",\r\n
+ \ \"102.133.135.32/28\",\r\n \"191.233.9.128/25\",\r\n \"191.235.126.0/28\",\r\n
+ \ \"191.235.126.144/28\",\r\n \"191.235.227.0/25\",\r\n \"2603:1000:4::380/121\",\r\n
+ \ \"2603:1000:104:1::380/121\",\r\n \"2603:1010:6:1::380/121\",\r\n
+ \ \"2603:1010:101::380/121\",\r\n \"2603:1010:304::380/121\",\r\n
+ \ \"2603:1010:404::380/121\",\r\n \"2603:1020:5:1::380/121\",\r\n
+ \ \"2603:1020:206:1::380/121\",\r\n \"2603:1020:305::380/121\",\r\n
+ \ \"2603:1020:405::380/121\",\r\n \"2603:1020:605::380/121\",\r\n
+ \ \"2603:1020:705:1::380/121\",\r\n \"2603:1020:805:1::380/121\",\r\n
+ \ \"2603:1020:905::380/121\",\r\n \"2603:1020:a04:1::380/121\",\r\n
+ \ \"2603:1020:b04::380/121\",\r\n \"2603:1020:c04:1::380/121\",\r\n
+ \ \"2603:1020:d04::380/121\",\r\n \"2603:1020:e04:1::380/121\",\r\n
+ \ \"2603:1020:f04::380/121\",\r\n \"2603:1020:1004::380/121\",\r\n
+ \ \"2603:1020:1104::280/121\",\r\n \"2603:1030:f:1::380/121\",\r\n
+ \ \"2603:1030:10:1::380/121\",\r\n \"2603:1030:104:1::380/121\",\r\n
+ \ \"2603:1030:107::280/121\",\r\n \"2603:1030:210:1::380/121\",\r\n
+ \ \"2603:1030:40b:1::380/121\",\r\n \"2603:1030:40c:1::380/121\",\r\n
+ \ \"2603:1030:504:1::380/121\",\r\n \"2603:1030:608::380/121\",\r\n
+ \ \"2603:1030:807:1::380/121\",\r\n \"2603:1030:a07::380/121\",\r\n
+ \ \"2603:1030:b04::380/121\",\r\n \"2603:1030:c06:1::380/121\",\r\n
+ \ \"2603:1030:f05:1::380/121\",\r\n \"2603:1030:1005::380/121\",\r\n
+ \ \"2603:1040:5:1::380/121\",\r\n \"2603:1040:207::380/121\",\r\n
+ \ \"2603:1040:407:1::380/121\",\r\n \"2603:1040:606::380/121\",\r\n
+ \ \"2603:1040:806::380/121\",\r\n \"2603:1040:904:1::380/121\",\r\n
+ \ \"2603:1040:a06:1::380/121\",\r\n \"2603:1040:b04::380/121\",\r\n
+ \ \"2603:1040:c06::380/121\",\r\n \"2603:1040:d04::380/121\",\r\n
+ \ \"2603:1040:f05:1::380/121\",\r\n \"2603:1040:1104::280/121\",\r\n
+ \ \"2603:1050:6:1::380/121\",\r\n \"2603:1050:403::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.CanadaCentral\",\r\n
+ \ \"id\": \"AzureEventGrid.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.139.9.80/28\",\r\n \"52.139.11.16/28\",\r\n
+ \ \"52.228.83.0/25\",\r\n \"2603:1030:f05:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.EastUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.96.0/25\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.177.38.160/27\",\r\n \"2603:1030:40c:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureEventGrid.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.205.112/28\",\r\n \"2603:1040:5:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SouthIndia\",\r\n
+ \ \"id\": \"AzureEventGrid.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.195.0/25\",\r\n \"20.44.39.176/28\",\r\n
+ \ \"20.44.39.192/28\",\r\n \"2603:1040:c06::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UAENorth\",\r\n
+ \ \"id\": \"AzureEventGrid.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.137.0/25\",\r\n \"20.46.152.112/28\",\r\n
+ \ \"20.46.152.128/28\",\r\n \"2603:1040:904:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.27.128/25\",\r\n \"51.132.161.160/28\",\r\n
+ \ \"51.132.170.64/28\",\r\n \"2603:1020:705:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth2\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.193.0/25\",\r\n \"2603:1020:405::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.WestUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"40.64.128.0/25\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.156.103.192/28\",\r\n
+ \ \"52.250.28.176/28\",\r\n \"52.250.32.160/28\",\r\n \"2603:1030:c06:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFrontDoor.Backend\",\r\n
+ \ \"id\": \"AzureFrontDoor.Backend\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.16/29\",\r\n \"20.36.120.104/29\",\r\n
+ \ \"20.37.64.104/29\",\r\n \"20.37.156.120/29\",\r\n \"20.37.195.0/29\",\r\n
+ \ \"20.37.224.104/29\",\r\n \"20.38.84.72/29\",\r\n \"20.38.136.104/29\",\r\n
+ \ \"20.39.11.8/29\",\r\n \"20.41.4.88/29\",\r\n \"20.41.64.120/29\",\r\n
+ \ \"20.41.192.104/29\",\r\n \"20.42.4.120/29\",\r\n \"20.42.129.152/29\",\r\n
+ \ \"20.42.224.104/29\",\r\n \"20.43.41.136/29\",\r\n \"20.43.65.128/29\",\r\n
+ \ \"20.43.130.80/29\",\r\n \"20.45.112.104/29\",\r\n \"20.45.192.104/29\",\r\n
+ \ \"20.72.18.248/29\",\r\n \"20.150.160.96/29\",\r\n \"20.189.106.112/29\",\r\n
+ \ \"20.192.161.104/29\",\r\n \"20.192.225.48/29\",\r\n \"40.67.48.104/29\",\r\n
+ \ \"40.74.30.72/29\",\r\n \"40.80.56.104/29\",\r\n \"40.80.168.104/29\",\r\n
+ \ \"40.80.184.120/29\",\r\n \"40.82.248.248/29\",\r\n \"40.89.16.104/29\",\r\n
+ \ \"51.12.41.8/29\",\r\n \"51.12.193.8/29\",\r\n \"51.104.25.128/29\",\r\n
+ \ \"51.105.80.104/29\",\r\n \"51.105.88.104/29\",\r\n \"51.107.48.104/29\",\r\n
+ \ \"51.107.144.104/29\",\r\n \"51.120.40.104/29\",\r\n \"51.120.224.104/29\",\r\n
+ \ \"51.137.160.112/29\",\r\n \"51.143.192.104/29\",\r\n \"52.136.48.104/29\",\r\n
+ \ \"52.140.104.104/29\",\r\n \"52.150.136.120/29\",\r\n \"52.228.80.120/29\",\r\n
+ \ \"102.133.56.88/29\",\r\n \"102.133.216.88/29\",\r\n \"147.243.0.0/16\",\r\n
+ \ \"191.233.9.120/29\",\r\n \"191.235.225.128/29\",\r\n \"2603:1000:4::600/123\",\r\n
+ \ \"2603:1000:104::e0/123\",\r\n \"2603:1000:104::300/123\",\r\n
+ \ \"2603:1000:104:1::5c0/123\",\r\n \"2603:1000:104:1::7e0/123\",\r\n
+ \ \"2603:1010:6:1::5c0/123\",\r\n \"2603:1010:6:1::7e0/123\",\r\n
+ \ \"2603:1010:101::600/123\",\r\n \"2603:1010:304::600/123\",\r\n
+ \ \"2603:1010:404::600/123\",\r\n \"2603:1020:5:1::5c0/123\",\r\n
+ \ \"2603:1020:5:1::7e0/123\",\r\n \"2603:1020:206:1::5c0/123\",\r\n
+ \ \"2603:1020:206:1::7e0/123\",\r\n \"2603:1020:305::600/123\",\r\n
+ \ \"2603:1020:405::600/123\",\r\n \"2603:1020:605::600/123\",\r\n
+ \ \"2603:1020:705:1::5c0/123\",\r\n \"2603:1020:705:1::7e0/123\",\r\n
+ \ \"2603:1020:805:1::5c0/123\",\r\n \"2603:1020:805:1::7e0/123\",\r\n
+ \ \"2603:1020:905::600/123\",\r\n \"2603:1020:a04:1::5c0/123\",\r\n
+ \ \"2603:1020:a04:1::7e0/123\",\r\n \"2603:1020:b04::600/123\",\r\n
+ \ \"2603:1020:c04:1::5c0/123\",\r\n \"2603:1020:c04:1::7e0/123\",\r\n
+ \ \"2603:1020:d04::600/123\",\r\n \"2603:1020:e04:1::5c0/123\",\r\n
+ \ \"2603:1020:e04:1::7e0/123\",\r\n \"2603:1020:f04::600/123\",\r\n
+ \ \"2603:1020:1004::5c0/123\",\r\n \"2603:1020:1004::7e0/123\",\r\n
+ \ \"2603:1020:1104::680/123\",\r\n \"2603:1030:f:1::600/123\",\r\n
+ \ \"2603:1030:10:1::5c0/123\",\r\n \"2603:1030:10:1::7e0/123\",\r\n
+ \ \"2603:1030:104:1::5c0/123\",\r\n \"2603:1030:104:1::7e0/123\",\r\n
+ \ \"2603:1030:107::6a0/123\",\r\n \"2603:1030:210:1::5c0/123\",\r\n
+ \ \"2603:1030:210:1::7e0/123\",\r\n \"2603:1030:40b:1::5c0/123\",\r\n
+ \ \"2603:1030:40c:1::5c0/123\",\r\n \"2603:1030:40c:1::7e0/123\",\r\n
+ \ \"2603:1030:504:1::5c0/123\",\r\n \"2603:1030:504:1::7e0/123\",\r\n
+ \ \"2603:1030:608::600/123\",\r\n \"2603:1030:807:1::5c0/123\",\r\n
+ \ \"2603:1030:807:1::7e0/123\",\r\n \"2603:1030:a07::600/123\",\r\n
+ \ \"2603:1030:b04::600/123\",\r\n \"2603:1030:c06:1::5c0/123\",\r\n
+ \ \"2603:1030:f05:1::5c0/123\",\r\n \"2603:1030:f05:1::7e0/123\",\r\n
+ \ \"2603:1030:1005::600/123\",\r\n \"2603:1040:5::e0/123\",\r\n
+ \ \"2603:1040:5:1::5c0/123\",\r\n \"2603:1040:5:1::7e0/123\",\r\n
+ \ \"2603:1040:207::600/123\",\r\n \"2603:1040:407:1::5c0/123\",\r\n
+ \ \"2603:1040:407:1::7e0/123\",\r\n \"2603:1040:606::600/123\",\r\n
+ \ \"2603:1040:806::600/123\",\r\n \"2603:1040:904:1::5c0/123\",\r\n
+ \ \"2603:1040:904:1::7e0/123\",\r\n \"2603:1040:a06::e0/123\",\r\n
+ \ \"2603:1040:a06:1::5c0/123\",\r\n \"2603:1040:a06:1::7e0/123\",\r\n
+ \ \"2603:1040:b04::600/123\",\r\n \"2603:1040:c06::600/123\",\r\n
+ \ \"2603:1040:d04::5c0/123\",\r\n \"2603:1040:d04::7e0/123\",\r\n
+ \ \"2603:1040:f05:1::5c0/123\",\r\n \"2603:1040:f05:1::7e0/123\",\r\n
+ \ \"2603:1040:1104::680/123\",\r\n \"2603:1050:6:1::5c0/123\",\r\n
+ \ \"2603:1050:6:1::7e0/123\",\r\n \"2603:1050:403::5c0/123\",\r\n
+ \ \"2a01:111:2050::/44\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.FirstParty\",\r\n \"id\": \"AzureFrontDoor.FirstParty\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureFrontDoor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.107.3.0/24\",\r\n \"13.107.4.0/22\",\r\n \"13.107.9.0/24\",\r\n
+ \ \"13.107.12.0/23\",\r\n \"13.107.15.0/24\",\r\n \"13.107.16.0/24\",\r\n
+ \ \"13.107.18.0/23\",\r\n \"13.107.21.0/24\",\r\n \"13.107.22.0/24\",\r\n
+ \ \"13.107.37.0/24\",\r\n \"13.107.38.0/23\",\r\n \"13.107.40.0/24\",\r\n
+ \ \"13.107.42.0/23\",\r\n \"13.107.48.0/24\",\r\n \"13.107.50.0/24\",\r\n
+ \ \"13.107.52.0/24\",\r\n \"13.107.54.0/24\",\r\n \"13.107.56.0/24\",\r\n
+ \ \"13.107.64.0/18\",\r\n \"13.107.128.0/19\",\r\n \"13.107.245.0/24\",\r\n
+ \ \"13.107.254.0/23\",\r\n \"131.253.3.0/24\",\r\n \"131.253.21.0/24\",\r\n
+ \ \"131.253.33.0/24\",\r\n \"150.171.32.0/19\",\r\n \"202.89.233.96/28\",\r\n
+ \ \"204.79.197.0/24\",\r\n \"2620:1ec:4::/46\",\r\n \"2620:1ec:a::/47\",\r\n
+ \ \"2620:1ec:c::/47\",\r\n \"2620:1ec:12::/47\",\r\n \"2620:1ec:21::/48\",\r\n
+ \ \"2620:1ec:22::/48\",\r\n \"2620:1ec:26::/63\",\r\n \"2620:1ec:26:2::/64\",\r\n
+ \ \"2620:1ec:28::/48\",\r\n \"2620:1ec:34::/48\",\r\n \"2620:1ec:39::/48\",\r\n
+ \ \"2620:1ec:3e::/47\",\r\n \"2620:1ec:42::/47\",\r\n \"2620:1ec:44::/47\",\r\n
+ \ \"2620:1ec:8f0::/44\",\r\n \"2620:1ec:900::/44\",\r\n \"2620:1ec:a92::/48\",\r\n
+ \ \"2620:1ec:c11::/48\",\r\n \"2a01:111:2003::/48\",\r\n
+ \ \"2a01:111:202c::/46\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.Frontend\",\r\n \"id\": \"AzureFrontDoor.Frontend\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.8/29\",\r\n \"13.107.208.0/24\",\r\n \"13.107.213.0/24\",\r\n
+ \ \"13.107.219.0/24\",\r\n \"13.107.224.0/24\",\r\n \"13.107.246.0/24\",\r\n
+ \ \"13.107.253.0/24\",\r\n \"20.36.120.96/29\",\r\n \"20.37.64.96/29\",\r\n
+ \ \"20.37.156.112/29\",\r\n \"20.37.192.88/29\",\r\n \"20.37.224.96/29\",\r\n
+ \ \"20.38.84.64/29\",\r\n \"20.38.136.96/29\",\r\n \"20.39.11.0/29\",\r\n
+ \ \"20.41.4.80/29\",\r\n \"20.41.64.112/29\",\r\n \"20.41.192.96/29\",\r\n
+ \ \"20.42.4.112/29\",\r\n \"20.42.129.144/29\",\r\n \"20.42.224.96/29\",\r\n
+ \ \"20.43.41.128/29\",\r\n \"20.43.64.88/29\",\r\n \"20.43.128.104/29\",\r\n
+ \ \"20.45.112.96/29\",\r\n \"20.45.192.96/29\",\r\n \"20.72.18.240/29\",\r\n
+ \ \"20.150.160.72/29\",\r\n \"20.189.106.72/29\",\r\n \"20.192.161.96/29\",\r\n
+ \ \"20.192.225.40/29\",\r\n \"40.67.48.96/29\",\r\n \"40.74.30.64/29\",\r\n
+ \ \"40.80.56.96/29\",\r\n \"40.80.168.96/29\",\r\n \"40.80.184.112/29\",\r\n
+ \ \"40.82.248.72/29\",\r\n \"40.89.16.96/29\",\r\n \"51.12.41.0/29\",\r\n
+ \ \"51.12.193.0/29\",\r\n \"51.104.24.88/29\",\r\n \"51.105.80.96/29\",\r\n
+ \ \"51.105.88.96/29\",\r\n \"51.107.48.96/29\",\r\n \"51.107.144.96/29\",\r\n
+ \ \"51.120.40.96/29\",\r\n \"51.120.224.96/29\",\r\n \"51.137.160.88/29\",\r\n
+ \ \"51.143.192.96/29\",\r\n \"52.136.48.96/29\",\r\n \"52.140.104.96/29\",\r\n
+ \ \"52.150.136.112/29\",\r\n \"52.228.80.112/29\",\r\n \"102.133.56.80/29\",\r\n
+ \ \"102.133.216.80/29\",\r\n \"191.233.9.112/29\",\r\n \"191.235.224.88/29\",\r\n
+ \ \"2603:1000:4::5e0/123\",\r\n \"2603:1000:104::c0/123\",\r\n
+ \ \"2603:1000:104::160/123\",\r\n \"2603:1000:104:1::5a0/123\",\r\n
+ \ \"2603:1000:104:1::7c0/123\",\r\n \"2603:1010:6:1::5a0/123\",\r\n
+ \ \"2603:1010:6:1::7c0/123\",\r\n \"2603:1010:101::5e0/123\",\r\n
+ \ \"2603:1010:304::5e0/123\",\r\n \"2603:1010:404::5e0/123\",\r\n
+ \ \"2603:1020:5:1::5a0/123\",\r\n \"2603:1020:5:1::7c0/123\",\r\n
+ \ \"2603:1020:206:1::5a0/123\",\r\n \"2603:1020:206:1::7c0/123\",\r\n
+ \ \"2603:1020:305::5e0/123\",\r\n \"2603:1020:405::5e0/123\",\r\n
+ \ \"2603:1020:605::5e0/123\",\r\n \"2603:1020:705:1::5a0/123\",\r\n
+ \ \"2603:1020:705:1::7c0/123\",\r\n \"2603:1020:805:1::5a0/123\",\r\n
+ \ \"2603:1020:805:1::7c0/123\",\r\n \"2603:1020:905::5e0/123\",\r\n
+ \ \"2603:1020:a04:1::5a0/123\",\r\n \"2603:1020:a04:1::7c0/123\",\r\n
+ \ \"2603:1020:b04::5e0/123\",\r\n \"2603:1020:c04:1::5a0/123\",\r\n
+ \ \"2603:1020:c04:1::7c0/123\",\r\n \"2603:1020:d04::5e0/123\",\r\n
+ \ \"2603:1020:e04:1::5a0/123\",\r\n \"2603:1020:e04:1::7c0/123\",\r\n
+ \ \"2603:1020:f04::5e0/123\",\r\n \"2603:1020:1004::5a0/123\",\r\n
+ \ \"2603:1020:1004::7c0/123\",\r\n \"2603:1020:1104::5e0/123\",\r\n
+ \ \"2603:1030:f:1::5e0/123\",\r\n \"2603:1030:10:1::5a0/123\",\r\n
+ \ \"2603:1030:10:1::7c0/123\",\r\n \"2603:1030:104:1::5a0/123\",\r\n
+ \ \"2603:1030:104:1::7c0/123\",\r\n \"2603:1030:107::680/123\",\r\n
+ \ \"2603:1030:210:1::5a0/123\",\r\n \"2603:1030:210:1::7c0/123\",\r\n
+ \ \"2603:1030:40b:1::5a0/123\",\r\n \"2603:1030:40c:1::5a0/123\",\r\n
+ \ \"2603:1030:40c:1::7c0/123\",\r\n \"2603:1030:504:1::5a0/123\",\r\n
+ \ \"2603:1030:504:1::7c0/123\",\r\n \"2603:1030:608::5e0/123\",\r\n
+ \ \"2603:1030:807:1::5a0/123\",\r\n \"2603:1030:807:1::7c0/123\",\r\n
+ \ \"2603:1030:a07::5e0/123\",\r\n \"2603:1030:b04::5e0/123\",\r\n
+ \ \"2603:1030:c06:1::5a0/123\",\r\n \"2603:1030:f05:1::5a0/123\",\r\n
+ \ \"2603:1030:f05:1::7c0/123\",\r\n \"2603:1030:1005::5e0/123\",\r\n
+ \ \"2603:1040:5::c0/123\",\r\n \"2603:1040:5:1::5a0/123\",\r\n
+ \ \"2603:1040:5:1::7c0/123\",\r\n \"2603:1040:207::5e0/123\",\r\n
+ \ \"2603:1040:407:1::5a0/123\",\r\n \"2603:1040:407:1::7c0/123\",\r\n
+ \ \"2603:1040:606::5e0/123\",\r\n \"2603:1040:806::5e0/123\",\r\n
+ \ \"2603:1040:904:1::5a0/123\",\r\n \"2603:1040:904:1::7c0/123\",\r\n
+ \ \"2603:1040:a06::c0/123\",\r\n \"2603:1040:a06:1::5a0/123\",\r\n
+ \ \"2603:1040:a06:1::7c0/123\",\r\n \"2603:1040:b04::5e0/123\",\r\n
+ \ \"2603:1040:c06::5e0/123\",\r\n \"2603:1040:d04::5a0/123\",\r\n
+ \ \"2603:1040:d04::7c0/123\",\r\n \"2603:1040:f05:1::5a0/123\",\r\n
+ \ \"2603:1040:f05:1::7c0/123\",\r\n \"2603:1040:1104::5e0/123\",\r\n
+ \ \"2603:1050:6:1::5a0/123\",\r\n \"2603:1050:6:1::7c0/123\",\r\n
+ \ \"2603:1050:403::5a0/123\",\r\n \"2620:1ec:29::/48\",\r\n
+ \ \"2620:1ec:40::/47\",\r\n \"2620:1ec:46::/47\",\r\n \"2620:1ec:bdf::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureInformationProtection\",\r\n
+ \ \"id\": \"AzureInformationProtection\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureInformationProtection\",\r\n \"addressPrefixes\": [\r\n \"13.66.153.57/32\",\r\n
+ \ \"13.66.245.220/32\",\r\n \"13.66.251.171/32\",\r\n \"13.67.114.221/32\",\r\n
+ \ \"13.68.179.152/32\",\r\n \"13.76.139.8/32\",\r\n \"13.76.244.119/32\",\r\n
+ \ \"13.77.166.40/32\",\r\n \"13.77.203.47/32\",\r\n \"13.78.130.67/32\",\r\n
+ \ \"13.78.130.185/32\",\r\n \"13.78.178.191/32\",\r\n \"13.79.189.239/32\",\r\n
+ \ \"13.79.189.241/32\",\r\n \"13.82.198.231/32\",\r\n \"13.83.91.144/32\",\r\n
+ \ \"13.92.58.123/32\",\r\n \"13.92.61.93/32\",\r\n \"13.93.72.133/32\",\r\n
+ \ \"13.93.75.214/32\",\r\n \"13.94.98.184/32\",\r\n \"13.94.116.226/32\",\r\n
+ \ \"23.97.70.206/32\",\r\n \"23.99.106.184/32\",\r\n \"23.99.114.156/32\",\r\n
+ \ \"23.99.251.107/32\",\r\n \"23.101.112.34/32\",\r\n \"23.101.147.227/32\",\r\n
+ \ \"23.101.163.169/32\",\r\n \"40.69.191.65/32\",\r\n \"40.70.16.196/32\",\r\n
+ \ \"40.76.94.49/32\",\r\n \"40.83.177.47/32\",\r\n \"40.83.223.214/32\",\r\n
+ \ \"40.87.2.166/32\",\r\n \"40.87.67.213/32\",\r\n \"40.87.94.91/32\",\r\n
+ \ \"40.114.2.72/32\",\r\n \"40.117.180.9/32\",\r\n \"40.121.48.207/32\",\r\n
+ \ \"40.121.49.153/32\",\r\n \"40.121.90.82/32\",\r\n \"40.127.160.102/32\",\r\n
+ \ \"40.127.175.173/32\",\r\n \"51.136.18.12/32\",\r\n \"51.141.184.35/32\",\r\n
+ \ \"51.143.32.47/32\",\r\n \"51.143.88.135/32\",\r\n \"51.144.167.90/32\",\r\n
+ \ \"51.145.146.97/32\",\r\n \"52.162.33.18/32\",\r\n \"52.162.37.146/32\",\r\n
+ \ \"52.162.88.200/32\",\r\n \"52.162.95.132/32\",\r\n \"52.162.208.48/32\",\r\n
+ \ \"52.163.61.51/32\",\r\n \"52.163.85.21/32\",\r\n \"52.163.85.129/32\",\r\n
+ \ \"52.163.87.92/32\",\r\n \"52.163.89.155/32\",\r\n \"52.163.89.160/32\",\r\n
+ \ \"52.165.189.139/32\",\r\n \"52.167.1.118/32\",\r\n \"52.167.225.247/32\",\r\n
+ \ \"52.167.226.2/32\",\r\n \"52.167.227.104/32\",\r\n \"52.167.227.154/32\",\r\n
+ \ \"52.173.21.111/32\",\r\n \"52.173.89.54/32\",\r\n \"52.173.89.66/32\",\r\n
+ \ \"52.173.93.137/32\",\r\n \"52.176.44.178/32\",\r\n \"52.178.145.186/32\",\r\n
+ \ \"52.178.147.96/32\",\r\n \"52.179.136.129/32\",\r\n \"52.184.34.233/32\",\r\n
+ \ \"52.184.35.49/32\",\r\n \"52.232.110.114/32\",\r\n \"52.232.113.160/32\",\r\n
+ \ \"52.232.118.97/32\",\r\n \"52.232.119.81/32\",\r\n \"52.237.141.83/32\",\r\n
+ \ \"52.237.141.229/32\",\r\n \"52.250.56.125/32\",\r\n \"65.52.36.85/32\",\r\n
+ \ \"65.52.55.108/32\",\r\n \"65.52.176.250/32\",\r\n \"65.52.177.192/32\",\r\n
+ \ \"65.52.184.44/32\",\r\n \"65.52.184.218/32\",\r\n \"65.52.236.123/32\",\r\n
+ \ \"70.37.163.131/32\",\r\n \"94.245.88.160/32\",\r\n \"104.40.16.135/32\",\r\n
+ \ \"104.40.30.29/32\",\r\n \"104.41.143.145/32\",\r\n \"137.116.91.123/32\",\r\n
+ \ \"137.117.47.75/32\",\r\n \"138.91.121.248/32\",\r\n \"138.91.122.178/32\",\r\n
+ \ \"157.55.177.248/32\",\r\n \"157.55.185.205/32\",\r\n \"157.56.8.93/32\",\r\n
+ \ \"157.56.8.135/32\",\r\n \"157.56.9.127/32\",\r\n \"168.61.46.212/32\",\r\n
+ \ \"168.62.5.167/32\",\r\n \"168.62.8.139/32\",\r\n \"168.62.25.173/32\",\r\n
+ \ \"168.62.25.179/32\",\r\n \"168.62.48.148/32\",\r\n \"168.62.49.18/32\",\r\n
+ \ \"168.62.52.244/32\",\r\n \"168.62.53.73/32\",\r\n \"168.62.53.132/32\",\r\n
+ \ \"168.62.54.75/32\",\r\n \"168.62.54.211/32\",\r\n \"168.62.54.212/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub\",\r\n
+ \ \"id\": \"AzureIoTHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.96/27\",\r\n \"13.67.10.224/27\",\r\n
+ \ \"13.67.234.22/32\",\r\n \"13.69.71.0/25\",\r\n \"13.69.109.0/25\",\r\n
+ \ \"13.69.192.43/32\",\r\n \"13.69.230.64/27\",\r\n \"13.70.74.192/27\",\r\n
+ \ \"13.70.182.204/32\",\r\n \"13.70.182.210/32\",\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"13.71.150.19/32\",\r\n \"13.71.175.32/27\",\r\n
+ \ \"13.71.196.224/27\",\r\n \"13.73.115.51/32\",\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.74.108.192/27\",\r\n \"13.75.39.160/27\",\r\n
+ \ \"13.76.83.155/32\",\r\n \"13.76.217.46/32\",\r\n \"13.77.53.128/27\",\r\n
+ \ \"13.78.109.160/27\",\r\n \"13.78.129.154/32\",\r\n \"13.78.130.69/32\",\r\n
+ \ \"13.79.172.43/32\",\r\n \"13.82.93.138/32\",\r\n \"13.84.189.6/32\",\r\n
+ \ \"13.85.68.113/32\",\r\n \"13.86.221.0/25\",\r\n \"13.87.58.96/27\",\r\n
+ \ \"13.87.124.96/27\",\r\n \"13.89.174.160/27\",\r\n \"13.89.231.149/32\",\r\n
+ \ \"13.94.40.72/32\",\r\n \"13.95.15.251/32\",\r\n \"20.36.108.160/27\",\r\n
+ \ \"20.36.117.64/27\",\r\n \"20.36.123.32/27\",\r\n \"20.36.123.128/25\",\r\n
+ \ \"20.37.67.128/25\",\r\n \"20.37.68.0/27\",\r\n \"20.37.76.160/27\",\r\n
+ \ \"20.37.198.160/27\",\r\n \"20.37.199.0/25\",\r\n \"20.37.227.64/27\",\r\n
+ \ \"20.37.227.128/25\",\r\n \"20.38.128.128/27\",\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"20.38.147.192/27\",\r\n \"20.39.14.32/27\",\r\n
+ \ \"20.39.14.128/25\",\r\n \"20.40.206.192/27\",\r\n \"20.40.207.0/25\",\r\n
+ \ \"20.41.68.96/27\",\r\n \"20.41.68.128/25\",\r\n \"20.41.197.64/27\",\r\n
+ \ \"20.41.197.128/25\",\r\n \"20.42.230.160/27\",\r\n \"20.42.231.0/25\",\r\n
+ \ \"20.43.44.160/27\",\r\n \"20.43.45.0/25\",\r\n \"20.43.70.160/27\",\r\n
+ \ \"20.43.71.0/25\",\r\n \"20.43.121.64/27\",\r\n \"20.44.4.128/27\",\r\n
+ \ \"20.44.8.224/27\",\r\n \"20.44.17.96/27\",\r\n \"20.44.29.0/27\",\r\n
+ \ \"20.45.114.224/27\",\r\n \"20.45.115.0/25\",\r\n \"20.45.123.128/27\",\r\n
+ \ \"20.45.198.32/27\",\r\n \"20.45.198.128/25\",\r\n \"20.49.83.128/27\",\r\n
+ \ \"20.49.91.128/27\",\r\n \"20.49.99.96/27\",\r\n \"20.49.99.128/25\",\r\n
+ \ \"20.49.109.128/25\",\r\n \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n
+ \ \"20.49.113.32/27\",\r\n \"20.49.113.128/25\",\r\n \"20.49.120.96/27\",\r\n
+ \ \"20.49.120.128/25\",\r\n \"20.49.121.0/25\",\r\n \"20.50.65.128/25\",\r\n
+ \ \"20.50.68.0/27\",\r\n \"20.72.28.160/27\",\r\n \"20.150.165.192/27\",\r\n
+ \ \"20.150.166.0/25\",\r\n \"20.150.172.192/27\",\r\n \"20.150.179.224/27\",\r\n
+ \ \"20.150.187.224/27\",\r\n \"20.187.195.0/25\",\r\n \"20.188.0.51/32\",\r\n
+ \ \"20.188.3.145/32\",\r\n \"20.188.39.126/32\",\r\n \"20.189.109.192/27\",\r\n
+ \ \"20.192.99.224/27\",\r\n \"20.192.165.224/27\",\r\n \"20.192.166.0/25\",\r\n
+ \ \"20.192.230.32/27\",\r\n \"20.192.230.128/25\",\r\n \"20.192.238.0/27\",\r\n
+ \ \"20.193.206.0/27\",\r\n \"20.194.67.96/27\",\r\n \"23.96.222.45/32\",\r\n
+ \ \"23.96.223.89/32\",\r\n \"23.98.86.0/27\",\r\n \"23.98.104.192/27\",\r\n
+ \ \"23.98.106.0/25\",\r\n \"23.99.109.81/32\",\r\n \"23.100.4.253/32\",\r\n
+ \ \"23.100.8.130/32\",\r\n \"23.100.105.192/32\",\r\n \"23.101.29.228/32\",\r\n
+ \ \"23.102.235.31/32\",\r\n \"40.64.132.160/27\",\r\n \"40.64.134.0/25\",\r\n
+ \ \"40.67.51.0/25\",\r\n \"40.67.51.128/27\",\r\n \"40.67.60.128/27\",\r\n
+ \ \"40.69.108.128/27\",\r\n \"40.70.148.128/27\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.74.66.139/32\",\r\n \"40.74.125.44/32\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.76.71.185/32\",\r\n \"40.77.23.107/32\",\r\n
+ \ \"40.78.22.17/32\",\r\n \"40.78.196.96/27\",\r\n \"40.78.204.64/27\",\r\n
+ \ \"40.78.229.128/25\",\r\n \"40.78.238.0/27\",\r\n \"40.78.245.32/27\",\r\n
+ \ \"40.78.251.160/27\",\r\n \"40.79.114.144/32\",\r\n \"40.79.132.128/27\",\r\n
+ \ \"40.79.139.32/27\",\r\n \"40.79.148.0/27\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.79.163.32/27\",\r\n \"40.79.171.128/27\",\r\n \"40.79.180.96/27\",\r\n
+ \ \"40.79.187.224/27\",\r\n \"40.79.195.192/27\",\r\n \"40.80.51.128/27\",\r\n
+ \ \"40.80.62.64/27\",\r\n \"40.80.62.128/25\",\r\n \"40.80.172.64/27\",\r\n
+ \ \"40.80.172.128/25\",\r\n \"40.80.176.64/27\",\r\n \"40.83.177.42/32\",\r\n
+ \ \"40.84.53.157/32\",\r\n \"40.87.138.172/32\",\r\n \"40.87.143.97/32\",\r\n
+ \ \"40.89.20.192/27\",\r\n \"40.89.21.0/25\",\r\n \"40.112.221.188/32\",\r\n
+ \ \"40.112.223.235/32\",\r\n \"40.113.153.50/32\",\r\n \"40.113.176.160/27\",\r\n
+ \ \"40.113.176.192/27\",\r\n \"40.113.177.0/24\",\r\n \"40.114.53.146/32\",\r\n
+ \ \"40.118.27.192/32\",\r\n \"40.119.11.224/27\",\r\n \"40.120.75.160/27\",\r\n
+ \ \"40.127.132.17/32\",\r\n \"51.12.42.32/27\",\r\n \"51.12.42.128/25\",\r\n
+ \ \"51.12.100.64/27\",\r\n \"51.12.194.32/27\",\r\n \"51.12.194.128/25\",\r\n
+ \ \"51.12.204.64/27\",\r\n \"51.12.227.224/27\",\r\n \"51.12.235.224/27\",\r\n
+ \ \"51.104.30.0/25\",\r\n \"51.104.30.128/27\",\r\n \"51.105.69.0/27\",\r\n
+ \ \"51.105.75.192/27\",\r\n \"51.105.91.128/25\",\r\n \"51.105.92.0/27\",\r\n
+ \ \"51.107.51.64/27\",\r\n \"51.107.51.128/25\",\r\n \"51.107.60.96/27\",\r\n
+ \ \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n \"51.107.156.96/27\",\r\n
+ \ \"51.116.49.224/27\",\r\n \"51.116.50.0/25\",\r\n \"51.116.60.96/27\",\r\n
+ \ \"51.116.145.192/27\",\r\n \"51.116.146.0/25\",\r\n \"51.116.158.0/27\",\r\n
+ \ \"51.116.243.160/27\",\r\n \"51.116.251.128/27\",\r\n \"51.120.43.128/25\",\r\n
+ \ \"51.120.44.0/27\",\r\n \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n
+ \ \"51.120.211.224/27\",\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"51.137.164.160/27\",\r\n \"51.137.165.0/25\",\r\n \"51.140.84.251/32\",\r\n
+ \ \"51.140.126.10/32\",\r\n \"51.140.149.32/27\",\r\n \"51.140.212.160/27\",\r\n
+ \ \"51.140.226.207/32\",\r\n \"51.140.240.234/32\",\r\n \"51.141.49.253/32\",\r\n
+ \ \"51.144.118.31/32\",\r\n \"52.136.51.128/25\",\r\n \"52.136.52.0/27\",\r\n
+ \ \"52.136.132.236/32\",\r\n \"52.138.92.96/27\",\r\n \"52.138.229.0/27\",\r\n
+ \ \"52.140.108.160/27\",\r\n \"52.140.109.0/25\",\r\n \"52.147.10.141/32\",\r\n
+ \ \"52.147.10.149/32\",\r\n \"52.150.152.96/27\",\r\n \"52.150.153.128/25\",\r\n
+ \ \"52.151.6.77/32\",\r\n \"52.151.78.51/32\",\r\n \"52.158.236.252/32\",\r\n
+ \ \"52.161.15.247/32\",\r\n \"52.162.111.64/27\",\r\n \"52.163.212.39/32\",\r\n
+ \ \"52.163.215.122/32\",\r\n \"52.167.107.192/27\",\r\n \"52.167.155.89/32\",\r\n
+ \ \"52.168.180.95/32\",\r\n \"52.169.138.222/32\",\r\n \"52.172.203.144/32\",\r\n
+ \ \"52.175.221.106/32\",\r\n \"52.176.4.4/32\",\r\n \"52.176.92.27/32\",\r\n
+ \ \"52.177.196.50/32\",\r\n \"52.178.147.144/32\",\r\n \"52.179.159.231/32\",\r\n
+ \ \"52.180.165.88/32\",\r\n \"52.180.165.248/32\",\r\n \"52.180.177.125/32\",\r\n
+ \ \"52.182.139.224/27\",\r\n \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n
+ \ \"52.225.179.220/32\",\r\n \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n
+ \ \"52.225.187.149/32\",\r\n \"52.228.85.224/27\",\r\n \"52.228.86.0/25\",\r\n
+ \ \"52.231.20.32/27\",\r\n \"52.231.32.236/32\",\r\n \"52.231.148.128/27\",\r\n
+ \ \"52.231.205.15/32\",\r\n \"52.236.189.128/25\",\r\n \"52.237.27.123/32\",\r\n
+ \ \"52.242.31.77/32\",\r\n \"52.246.155.192/27\",\r\n \"52.250.225.32/27\",\r\n
+ \ \"65.52.252.160/27\",\r\n \"102.133.28.160/27\",\r\n \"102.133.59.0/25\",\r\n
+ \ \"102.133.59.128/27\",\r\n \"102.133.124.32/27\",\r\n \"102.133.156.64/27\",\r\n
+ \ \"102.133.218.192/27\",\r\n \"102.133.219.0/25\",\r\n \"102.133.251.128/27\",\r\n
+ \ \"104.40.49.44/32\",\r\n \"104.41.34.180/32\",\r\n \"104.43.252.98/32\",\r\n
+ \ \"104.46.115.237/32\",\r\n \"104.210.105.7/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"104.211.210.195/32\",\r\n \"104.214.34.123/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"157.55.253.43/32\",\r\n \"168.61.54.255/32\",\r\n
+ \ \"168.61.208.218/32\",\r\n \"191.233.11.160/27\",\r\n \"191.233.14.0/25\",\r\n
+ \ \"191.233.54.0/27\",\r\n \"191.233.205.128/27\",\r\n \"191.234.136.128/25\",\r\n
+ \ \"191.234.137.0/27\",\r\n \"191.234.147.224/27\",\r\n \"191.234.155.224/27\",\r\n
+ \ \"207.46.138.102/32\",\r\n \"2603:1000:4:402::300/123\",\r\n
+ \ \"2603:1000:104:402::300/123\",\r\n \"2603:1000:104:802::240/123\",\r\n
+ \ \"2603:1000:104:c02::240/123\",\r\n \"2603:1010:6:402::300/123\",\r\n
+ \ \"2603:1010:6:802::240/123\",\r\n \"2603:1010:6:c02::240/123\",\r\n
+ \ \"2603:1010:101:402::300/123\",\r\n \"2603:1010:304:402::300/123\",\r\n
+ \ \"2603:1010:404:402::300/123\",\r\n \"2603:1020:5:402::300/123\",\r\n
+ \ \"2603:1020:5:802::240/123\",\r\n \"2603:1020:5:c02::240/123\",\r\n
+ \ \"2603:1020:206:402::300/123\",\r\n \"2603:1020:206:802::240/123\",\r\n
+ \ \"2603:1020:206:c02::240/123\",\r\n \"2603:1020:305:402::300/123\",\r\n
+ \ \"2603:1020:405:402::300/123\",\r\n \"2603:1020:605:402::300/123\",\r\n
+ \ \"2603:1020:705:402::300/123\",\r\n \"2603:1020:705:802::240/123\",\r\n
+ \ \"2603:1020:705:c02::240/123\",\r\n \"2603:1020:805:402::300/123\",\r\n
+ \ \"2603:1020:805:802::240/123\",\r\n \"2603:1020:805:c02::240/123\",\r\n
+ \ \"2603:1020:905:402::300/123\",\r\n \"2603:1020:a04:402::300/123\",\r\n
+ \ \"2603:1020:a04:802::240/123\",\r\n \"2603:1020:a04:c02::240/123\",\r\n
+ \ \"2603:1020:b04:402::300/123\",\r\n \"2603:1020:c04:402::300/123\",\r\n
+ \ \"2603:1020:c04:802::240/123\",\r\n \"2603:1020:c04:c02::240/123\",\r\n
+ \ \"2603:1020:d04:402::300/123\",\r\n \"2603:1020:e04:402::300/123\",\r\n
+ \ \"2603:1020:e04:802::240/123\",\r\n \"2603:1020:e04:c02::240/123\",\r\n
+ \ \"2603:1020:f04:402::300/123\",\r\n \"2603:1020:1004:400::480/123\",\r\n
+ \ \"2603:1020:1004:800::100/123\",\r\n \"2603:1020:1004:800::240/123\",\r\n
+ \ \"2603:1020:1004:c02::2a0/123\",\r\n \"2603:1020:1104:400::300/123\",\r\n
+ \ \"2603:1030:f:400::b00/123\",\r\n \"2603:1030:10:402::300/123\",\r\n
+ \ \"2603:1030:10:802::240/123\",\r\n \"2603:1030:10:c02::240/123\",\r\n
+ \ \"2603:1030:104:402::300/123\",\r\n \"2603:1030:107:400::280/123\",\r\n
+ \ \"2603:1030:210:402::300/123\",\r\n \"2603:1030:210:802::240/123\",\r\n
+ \ \"2603:1030:210:c02::240/123\",\r\n \"2603:1030:40b:400::b00/123\",\r\n
+ \ \"2603:1030:40b:800::240/123\",\r\n \"2603:1030:40b:c00::240/123\",\r\n
+ \ \"2603:1030:40c:402::300/123\",\r\n \"2603:1030:40c:802::240/123\",\r\n
+ \ \"2603:1030:40c:c02::240/123\",\r\n \"2603:1030:504:802::100/123\",\r\n
+ \ \"2603:1030:504:c02::2a0/123\",\r\n \"2603:1030:608:402::300/123\",\r\n
+ \ \"2603:1030:807:402::300/123\",\r\n \"2603:1030:807:802::240/123\",\r\n
+ \ \"2603:1030:807:c02::240/123\",\r\n \"2603:1030:a07:402::980/123\",\r\n
+ \ \"2603:1030:b04:402::300/123\",\r\n \"2603:1030:c06:400::b00/123\",\r\n
+ \ \"2603:1030:c06:802::240/123\",\r\n \"2603:1030:c06:c02::240/123\",\r\n
+ \ \"2603:1030:f05:402::300/123\",\r\n \"2603:1030:f05:802::240/123\",\r\n
+ \ \"2603:1030:f05:c02::240/123\",\r\n \"2603:1030:1005:402::300/123\",\r\n
+ \ \"2603:1040:5:402::300/123\",\r\n \"2603:1040:5:802::240/123\",\r\n
+ \ \"2603:1040:5:c02::240/123\",\r\n \"2603:1040:207:402::300/123\",\r\n
+ \ \"2603:1040:407:402::300/123\",\r\n \"2603:1040:407:802::240/123\",\r\n
+ \ \"2603:1040:407:c02::240/123\",\r\n \"2603:1040:606:402::300/123\",\r\n
+ \ \"2603:1040:806:402::300/123\",\r\n \"2603:1040:904:402::300/123\",\r\n
+ \ \"2603:1040:904:802::240/123\",\r\n \"2603:1040:904:c02::240/123\",\r\n
+ \ \"2603:1040:a06:402::300/123\",\r\n \"2603:1040:a06:802::240/123\",\r\n
+ \ \"2603:1040:a06:c02::240/123\",\r\n \"2603:1040:b04:402::300/123\",\r\n
+ \ \"2603:1040:c06:402::300/123\",\r\n \"2603:1040:d04:400::480/123\",\r\n
+ \ \"2603:1040:d04:800::100/123\",\r\n \"2603:1040:d04:800::240/123\",\r\n
+ \ \"2603:1040:d04:c02::2a0/123\",\r\n \"2603:1040:f05:402::300/123\",\r\n
+ \ \"2603:1040:f05:802::240/123\",\r\n \"2603:1040:f05:c02::240/123\",\r\n
+ \ \"2603:1040:1104:400::300/123\",\r\n \"2603:1050:6:402::300/123\",\r\n
+ \ \"2603:1050:6:802::240/123\",\r\n \"2603:1050:6:c02::240/123\",\r\n
+ \ \"2603:1050:403:400::220/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.EastUS\",\r\n \"id\": \"AzureIoTHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.82.93.138/32\",\r\n \"20.49.109.128/25\",\r\n
+ \ \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.76.71.185/32\",\r\n \"40.78.229.128/25\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.114.53.146/32\",\r\n \"52.168.180.95/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"168.61.54.255/32\",\r\n \"2603:1030:210:402::300/123\",\r\n
+ \ \"2603:1030:210:802::240/123\",\r\n \"2603:1030:210:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureIoTHub.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.32/27\",\r\n \"20.39.14.128/25\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.79.114.144/32\",\r\n \"52.138.92.96/27\",\r\n
+ \ \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n \"52.225.179.220/32\",\r\n
+ \ \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n \"52.225.187.149/32\",\r\n
+ \ \"2603:1030:40b:400::b00/123\",\r\n \"2603:1030:40b:800::240/123\",\r\n
+ \ \"2603:1030:40b:c00::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayEast\",\r\n \"id\": \"AzureIoTHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.43.128/25\",\r\n \"51.120.44.0/27\",\r\n
+ \ \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n \"51.120.211.224/27\",\r\n
+ \ \"2603:1020:e04:402::300/123\",\r\n \"2603:1020:e04:802::240/123\",\r\n
+ \ \"2603:1020:e04:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayWest\",\r\n \"id\": \"AzureIoTHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"2603:1020:f04:402::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.SouthCentralUS\",\r\n \"id\":
+ \"AzureIoTHub.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.84.189.6/32\",\r\n \"13.85.68.113/32\",\r\n
+ \ \"20.45.123.128/27\",\r\n \"20.49.91.128/27\",\r\n \"40.119.11.224/27\",\r\n
+ \ \"104.214.34.123/32\",\r\n \"2603:1030:807:402::300/123\",\r\n
+ \ \"2603:1030:807:802::240/123\",\r\n \"2603:1030:807:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SouthIndia\",\r\n
+ \ \"id\": \"AzureIoTHub.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"20.41.197.64/27\",\r\n \"20.41.197.128/25\",\r\n
+ \ \"40.78.196.96/27\",\r\n \"104.211.210.195/32\",\r\n \"2603:1040:c06:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureIoTHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n
+ \ \"51.107.156.96/27\",\r\n \"2603:1020:b04:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.UAENorth\",\r\n
+ \ \"id\": \"AzureIoTHub.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"40.120.75.160/27\",\r\n \"65.52.252.160/27\",\r\n
+ \ \"2603:1040:904:402::300/123\",\r\n \"2603:1040:904:802::240/123\",\r\n
+ \ \"2603:1040:904:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.WestIndia\",\r\n \"id\": \"AzureIoTHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.128.128/27\",\r\n \"52.136.51.128/25\",\r\n
+ \ \"52.136.52.0/27\",\r\n \"2603:1040:806:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault\",\r\n
+ \ \"id\": \"AzureKeyVault\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"13.67.8.104/30\",\r\n \"13.68.24.216/32\",\r\n
+ \ \"13.68.29.203/32\",\r\n \"13.68.104.240/32\",\r\n \"13.69.64.72/30\",\r\n
+ \ \"13.69.227.72/30\",\r\n \"13.70.72.24/30\",\r\n \"13.70.138.129/32\",\r\n
+ \ \"13.71.170.40/30\",\r\n \"13.71.194.112/30\",\r\n \"13.72.250.239/32\",\r\n
+ \ \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n \"13.75.34.144/30\",\r\n
+ \ \"13.77.50.64/30\",\r\n \"13.78.106.88/30\",\r\n \"13.80.247.19/32\",\r\n
+ \ \"13.80.247.42/32\",\r\n \"13.84.174.143/32\",\r\n \"13.87.34.51/32\",\r\n
+ \ \"13.87.39.0/32\",\r\n \"13.87.56.80/30\",\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"13.89.61.248/32\",\r\n
+ \ \"13.89.170.200/30\",\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n
+ \ \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.36.114.16/30\",\r\n \"20.37.74.228/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.44.2.0/30\",\r\n \"20.45.90.72/29\",\r\n
+ \ \"20.45.90.80/30\",\r\n \"20.45.117.32/29\",\r\n \"20.45.117.40/30\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"20.48.197.104/29\",\r\n
+ \ \"20.48.197.112/30\",\r\n \"20.49.82.0/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.49.119.232/29\",\r\n \"20.49.119.240/28\",\r\n
+ \ \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n \"20.51.20.84/30\",\r\n
+ \ \"20.51.21.64/29\",\r\n \"20.52.88.144/29\",\r\n \"20.52.88.152/30\",\r\n
+ \ \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n \"20.53.48.40/29\",\r\n
+ \ \"20.53.49.96/30\",\r\n \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n
+ \ \"20.58.67.48/29\",\r\n \"20.58.67.56/30\",\r\n \"20.61.103.224/29\",\r\n
+ \ \"20.61.103.232/30\",\r\n \"20.62.60.128/27\",\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"20.66.2.28/30\",\r\n \"20.66.5.128/29\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"20.72.21.148/30\",\r\n \"20.72.21.192/29\",\r\n
+ \ \"20.72.26.0/30\",\r\n \"20.150.170.0/30\",\r\n \"20.150.181.28/30\",\r\n
+ \ \"20.150.181.164/30\",\r\n \"20.150.189.32/30\",\r\n \"20.150.244.36/30\",\r\n
+ \ \"20.150.245.56/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"20.186.41.83/32\",\r\n \"20.186.47.182/32\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n \"20.191.166.120/29\",\r\n
+ \ \"20.191.167.128/30\",\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"20.192.50.216/29\",\r\n \"20.192.50.224/30\",\r\n \"20.192.80.48/29\",\r\n
+ \ \"20.192.80.56/30\",\r\n \"20.192.234.0/30\",\r\n \"20.193.194.44/30\",\r\n
+ \ \"20.193.194.80/29\",\r\n \"20.193.202.0/30\",\r\n \"20.194.66.0/30\",\r\n
+ \ \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"20.195.74.168/29\",\r\n \"20.195.74.176/30\",\r\n
+ \ \"20.195.146.68/30\",\r\n \"20.195.146.192/29\",\r\n \"23.96.210.207/32\",\r\n
+ \ \"23.96.250.48/32\",\r\n \"23.97.50.43/32\",\r\n \"23.97.120.25/32\",\r\n
+ \ \"23.97.120.29/32\",\r\n \"23.97.120.39/32\",\r\n \"23.97.120.57/32\",\r\n
+ \ \"23.97.178.0/32\",\r\n \"23.99.132.207/32\",\r\n \"23.100.57.24/32\",\r\n
+ \ \"23.100.58.149/32\",\r\n \"23.101.21.103/32\",\r\n \"23.101.21.193/32\",\r\n
+ \ \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n \"23.101.159.107/32\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"40.65.188.244/32\",\r\n
+ \ \"40.65.189.219/32\",\r\n \"40.67.53.184/29\",\r\n \"40.67.53.224/30\",\r\n
+ \ \"40.67.58.0/30\",\r\n \"40.69.106.64/30\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.74.100.48/30\",\r\n \"40.76.196.75/32\",\r\n
+ \ \"40.76.212.37/32\",\r\n \"40.78.194.64/30\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"40.79.130.40/30\",\r\n \"40.79.163.156/30\",\r\n
+ \ \"40.79.173.4/30\",\r\n \"40.79.178.64/30\",\r\n \"40.84.47.24/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.85.229.9/32\",\r\n \"40.85.231.231/32\",\r\n
+ \ \"40.86.224.94/32\",\r\n \"40.86.231.180/32\",\r\n \"40.87.69.184/32\",\r\n
+ \ \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n \"40.89.180.10/32\",\r\n
+ \ \"40.89.180.25/32\",\r\n \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n
+ \ \"40.112.242.144/30\",\r\n \"40.117.157.122/32\",\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"40.124.64.128/30\",\r\n
+ \ \"51.12.17.232/29\",\r\n \"51.12.17.240/30\",\r\n \"51.12.25.204/30\",\r\n
+ \ \"51.12.28.32/29\",\r\n \"51.12.98.0/30\",\r\n \"51.12.202.0/30\",\r\n
+ \ \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.107.58.0/30\",\r\n \"51.107.154.0/30\",\r\n \"51.107.241.116/30\",\r\n
+ \ \"51.107.242.248/29\",\r\n \"51.107.250.44/30\",\r\n \"51.107.251.104/29\",\r\n
+ \ \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n \"51.116.58.0/30\",\r\n
+ \ \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n \"51.116.251.188/30\",\r\n
+ \ \"51.120.98.8/30\",\r\n \"51.120.218.0/30\",\r\n \"51.120.233.132/30\",\r\n
+ \ \"51.120.234.128/29\",\r\n \"51.138.210.132/30\",\r\n \"51.138.211.8/29\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n \"51.143.6.21/32\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n \"52.147.113.72/29\",\r\n
+ \ \"52.147.113.80/30\",\r\n \"52.148.84.142/32\",\r\n \"52.148.84.145/32\",\r\n
+ \ \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n
+ \ \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n \"52.161.31.139/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.169.232.147/32\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.175.236.86/32\",\r\n \"52.176.48.58/32\",\r\n
+ \ \"52.176.254.165/32\",\r\n \"52.177.71.51/32\",\r\n \"52.180.176.121/32\",\r\n
+ \ \"52.180.176.122/32\",\r\n \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n
+ \ \"52.183.93.92/32\",\r\n \"52.183.94.166/32\",\r\n \"52.184.155.181/32\",\r\n
+ \ \"52.184.158.37/32\",\r\n \"52.184.164.12/32\",\r\n \"52.187.161.13/32\",\r\n
+ \ \"52.187.163.139/32\",\r\n \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n
+ \ \"52.225.188.225/32\",\r\n \"52.225.191.36/32\",\r\n \"52.225.218.218/32\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"52.237.253.194/32\",\r\n \"52.246.157.4/30\",\r\n \"52.247.193.69/32\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"65.52.250.0/30\",\r\n \"102.37.81.88/29\",\r\n \"102.37.81.128/30\",\r\n
+ \ \"102.37.160.176/29\",\r\n \"102.37.160.184/30\",\r\n \"102.133.26.0/30\",\r\n
+ \ \"102.133.124.140/30\",\r\n \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n
+ \ \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.42.6.91/32\",\r\n \"104.42.136.180/32\",\r\n
+ \ \"104.43.161.34/32\",\r\n \"104.43.192.26/32\",\r\n \"104.44.136.42/32\",\r\n
+ \ \"104.46.40.31/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n \"104.208.26.47/32\",\r\n
+ \ \"104.210.195.61/32\",\r\n \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n
+ \ \"104.211.99.174/32\",\r\n \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n
+ \ \"104.211.167.57/32\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"104.214.18.168/30\",\r\n
+ \ \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n \"104.215.94.76/32\",\r\n
+ \ \"104.215.99.117/32\",\r\n \"104.215.139.166/32\",\r\n
+ \ \"104.215.140.132/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"168.62.108.27/32\",\r\n \"168.62.237.29/32\",\r\n \"168.63.167.27/32\",\r\n
+ \ \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n \"191.233.50.0/30\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1000:4::2a0/125\",\r\n \"2603:1000:4:402::80/125\",\r\n
+ \ \"2603:1000:104::660/125\",\r\n \"2603:1000:104:402::80/125\",\r\n
+ \ \"2603:1000:104:802::80/125\",\r\n \"2603:1000:104:c02::80/125\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\",\r\n
+ \ \"2603:1010:304::2a0/125\",\r\n \"2603:1010:304:402::80/125\",\r\n
+ \ \"2603:1010:404::2a0/125\",\r\n \"2603:1010:404:402::80/125\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\",\r\n
+ \ \"2603:1020:206::340/125\",\r\n \"2603:1020:206:402::80/125\",\r\n
+ \ \"2603:1020:206:802::80/125\",\r\n \"2603:1020:206:c02::80/125\",\r\n
+ \ \"2603:1020:305:402::80/125\",\r\n \"2603:1020:405:402::80/125\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\",\r\n
+ \ \"2603:1020:805::340/125\",\r\n \"2603:1020:805:402::80/125\",\r\n
+ \ \"2603:1020:805:802::80/125\",\r\n \"2603:1020:805:c02::80/125\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\",\r\n
+ \ \"2603:1020:a04::340/125\",\r\n \"2603:1020:a04:402::80/125\",\r\n
+ \ \"2603:1020:a04:802::80/125\",\r\n \"2603:1020:a04:c02::80/125\",\r\n
+ \ \"2603:1020:b04::2a0/125\",\r\n \"2603:1020:b04:402::80/125\",\r\n
+ \ \"2603:1020:c04::340/125\",\r\n \"2603:1020:c04:402::80/125\",\r\n
+ \ \"2603:1020:c04:802::80/125\",\r\n \"2603:1020:c04:c02::80/125\",\r\n
+ \ \"2603:1020:d04::2a0/125\",\r\n \"2603:1020:d04:402::80/125\",\r\n
+ \ \"2603:1020:e04::340/125\",\r\n \"2603:1020:e04:402::80/125\",\r\n
+ \ \"2603:1020:e04:802::80/125\",\r\n \"2603:1020:e04:c02::80/125\",\r\n
+ \ \"2603:1020:f04::2a0/125\",\r\n \"2603:1020:f04:402::80/125\",\r\n
+ \ \"2603:1020:1004:1::1f8/125\",\r\n \"2603:1020:1004:400::80/125\",\r\n
+ \ \"2603:1020:1004:400::2f8/125\",\r\n \"2603:1020:1004:800::140/125\",\r\n
+ \ \"2603:1020:1104:1::158/125\",\r\n \"2603:1020:1104:400::80/125\",\r\n
+ \ \"2603:1030:f:1::2a0/125\",\r\n \"2603:1030:f:400::880/125\",\r\n
+ \ \"2603:1030:10::340/125\",\r\n \"2603:1030:10:402::80/125\",\r\n
+ \ \"2603:1030:10:802::80/125\",\r\n \"2603:1030:10:c02::80/125\",\r\n
+ \ \"2603:1030:104::340/125\",\r\n \"2603:1030:104:402::80/125\",\r\n
+ \ \"2603:1030:107::738/125\",\r\n \"2603:1030:107:400::/125\",\r\n
+ \ \"2603:1030:107:400::10/125\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\",\r\n \"2603:1030:40c::340/125\",\r\n
+ \ \"2603:1030:40c:402::80/125\",\r\n \"2603:1030:40c:802::80/125\",\r\n
+ \ \"2603:1030:40c:c02::80/125\",\r\n \"2603:1030:504::1f8/125\",\r\n
+ \ \"2603:1030:504:402::80/125\",\r\n \"2603:1030:504:402::2f8/125\",\r\n
+ \ \"2603:1030:504:802::140/125\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\",\r\n \"2603:1030:807::340/125\",\r\n
+ \ \"2603:1030:807:402::80/125\",\r\n \"2603:1030:807:802::80/125\",\r\n
+ \ \"2603:1030:807:c02::80/125\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\",\r\n \"2603:1030:1005::2a0/125\",\r\n
+ \ \"2603:1030:1005:402::80/125\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\",\r\n \"2603:1040:207::2a0/125\",\r\n
+ \ \"2603:1040:207:402::80/125\",\r\n \"2603:1040:407::340/125\",\r\n
+ \ \"2603:1040:407:402::80/125\",\r\n \"2603:1040:407:802::80/125\",\r\n
+ \ \"2603:1040:407:c02::80/125\",\r\n \"2603:1040:606::2a0/125\",\r\n
+ \ \"2603:1040:606:402::80/125\",\r\n \"2603:1040:806::2a0/125\",\r\n
+ \ \"2603:1040:806:402::80/125\",\r\n \"2603:1040:904::340/125\",\r\n
+ \ \"2603:1040:904:402::80/125\",\r\n \"2603:1040:904:802::80/125\",\r\n
+ \ \"2603:1040:904:c02::80/125\",\r\n \"2603:1040:a06::440/125\",\r\n
+ \ \"2603:1040:a06:402::80/125\",\r\n \"2603:1040:a06:802::80/125\",\r\n
+ \ \"2603:1040:a06:c02::80/125\",\r\n \"2603:1040:b04::2a0/125\",\r\n
+ \ \"2603:1040:b04:402::80/125\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\",\r\n \"2603:1040:d04:1::1f8/125\",\r\n
+ \ \"2603:1040:d04:400::80/125\",\r\n \"2603:1040:d04:400::2f8/125\",\r\n
+ \ \"2603:1040:d04:800::140/125\",\r\n \"2603:1040:e05::20/125\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\",\r\n
+ \ \"2603:1040:1104:1::158/125\",\r\n \"2603:1040:1104:400::80/125\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\",\r\n
+ \ \"2603:1050:403:1::220/125\",\r\n \"2603:1050:403:400::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.53.48.40/29\",\r\n \"20.53.49.96/30\",\r\n \"2603:1010:304::2a0/125\",\r\n
+ \ \"2603:1010:304:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaCentral2\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.114.16/30\",\r\n
+ \ \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n \"2603:1010:404::2a0/125\",\r\n
+ \ \"2603:1010:404:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaEast\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.24/30\",\r\n
+ \ \"13.72.250.239/32\",\r\n \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n
+ \ \"40.79.163.156/30\",\r\n \"40.79.173.4/30\",\r\n \"52.237.253.194/32\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.138.129/32\",\r\n \"13.77.50.64/30\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.BrazilSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CanadaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.40/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.48.197.104/29\",\r\n \"20.48.197.112/30\",\r\n \"40.85.229.9/32\",\r\n
+ \ \"40.85.231.231/32\",\r\n \"52.246.157.4/30\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CanadaEast\",\r\n \"id\": \"AzureKeyVault.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.69.106.64/30\",\r\n \"40.86.224.94/32\",\r\n
+ \ \"40.86.231.180/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"2603:1030:1005::2a0/125\",\r\n \"2603:1030:1005:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralIndia\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n \"104.211.99.174/32\",\r\n
+ \ \"2603:1040:a06::440/125\",\r\n \"2603:1040:a06:402::80/125\",\r\n
+ \ \"2603:1040:a06:802::80/125\",\r\n \"2603:1040:a06:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.61.248/32\",\r\n \"13.89.170.200/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"23.99.132.207/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.176.48.58/32\",\r\n \"104.43.161.34/32\",\r\n
+ \ \"104.43.192.26/32\",\r\n \"104.208.26.47/32\",\r\n \"2603:1030:10::340/125\",\r\n
+ \ \"2603:1030:10:402::80/125\",\r\n \"2603:1030:10:802::80/125\",\r\n
+ \ \"2603:1030:10:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CentralUSEUAP\",\r\n \"id\":
+ \"AzureKeyVault.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"52.176.254.165/32\",\r\n
+ \ \"52.180.176.121/32\",\r\n \"52.180.176.122/32\",\r\n \"2603:1030:f:1::2a0/125\",\r\n
+ \ \"2603:1030:f:400::880/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastAsia\",\r\n \"id\": \"AzureKeyVault.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.144/30\",\r\n \"20.195.74.168/29\",\r\n
+ \ \"20.195.74.176/30\",\r\n \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n
+ \ \"2603:1040:207::2a0/125\",\r\n \"2603:1040:207:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.76.196.75/32\",\r\n \"40.76.212.37/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.87.69.184/32\",\r\n \"40.117.157.122/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastUS2\",\r\n \"id\": \"AzureKeyVault.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.24.216/32\",\r\n \"13.68.29.203/32\",\r\n
+ \ \"13.68.104.240/32\",\r\n \"20.62.60.128/27\",\r\n \"20.186.41.83/32\",\r\n
+ \ \"20.186.47.182/32\",\r\n \"23.101.159.107/32\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.84.47.24/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.177.71.51/32\",\r\n \"52.184.155.181/32\",\r\n \"52.184.158.37/32\",\r\n
+ \ \"52.184.164.12/32\",\r\n \"52.225.218.218/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"2603:1030:40c::340/125\",\r\n \"2603:1030:40c:402::80/125\",\r\n
+ \ \"2603:1030:40c:802::80/125\",\r\n \"2603:1030:40c:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.20.84/30\",\r\n \"20.51.21.64/29\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n
+ \ \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n \"52.225.188.225/32\",\r\n
+ \ \"52.225.191.36/32\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceCentral\",\r\n \"id\":
+ \"AzureKeyVault.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"40.79.130.40/30\",\r\n \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n
+ \ \"40.89.180.10/32\",\r\n \"40.89.180.25/32\",\r\n \"51.138.210.132/30\",\r\n
+ \ \"51.138.211.8/29\",\r\n \"2603:1020:805::340/125\",\r\n
+ \ \"2603:1020:805:402::80/125\",\r\n \"2603:1020:805:802::80/125\",\r\n
+ \ \"2603:1020:805:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceSouth\",\r\n \"id\": \"AzureKeyVault.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.64/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.GermanyNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n
+ \ \"51.116.58.0/30\",\r\n \"2603:1020:d04::2a0/125\",\r\n
+ \ \"2603:1020:d04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.GermanyWestCentral\",\r\n \"id\":
+ \"AzureKeyVault.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.52.88.144/29\",\r\n
+ \ \"20.52.88.152/30\",\r\n \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n
+ \ \"51.116.251.188/30\",\r\n \"2603:1020:c04::340/125\",\r\n
+ \ \"2603:1020:c04:402::80/125\",\r\n \"2603:1020:c04:802::80/125\",\r\n
+ \ \"2603:1020:c04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.JapanEast\",\r\n \"id\": \"AzureKeyVault.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.88/30\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.191.166.120/29\",\r\n \"20.191.167.128/30\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n
+ \ \"2603:1040:407::340/125\",\r\n \"2603:1040:407:402::80/125\",\r\n
+ \ \"2603:1040:407:802::80/125\",\r\n \"2603:1040:407:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.JapanWest\",\r\n
+ \ \"id\": \"AzureKeyVault.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n
+ \ \"40.74.100.48/30\",\r\n \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n
+ \ \"2603:1040:606::2a0/125\",\r\n \"2603:1040:606:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.66.0/30\",\r\n \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.113.72/29\",\r\n \"52.147.113.80/30\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"2603:1040:e05::20/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.232/29\",\r\n
+ \ \"20.49.119.240/28\",\r\n \"23.96.210.207/32\",\r\n \"23.96.250.48/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"168.62.108.27/32\",\r\n
+ \ \"168.62.237.29/32\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthEurope\",\r\n \"id\": \"AzureKeyVault.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.72/30\",\r\n \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n
+ \ \"23.100.57.24/32\",\r\n \"23.100.58.149/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n
+ \ \"52.169.232.147/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.NorwayEast\",\r\n
+ \ \"id\": \"AzureKeyVault.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.8/30\",\r\n
+ \ \"51.120.233.132/30\",\r\n \"51.120.234.128/29\",\r\n \"2603:1020:e04::340/125\",\r\n
+ \ \"2603:1020:e04:402::80/125\",\r\n \"2603:1020:e04:802::80/125\",\r\n
+ \ \"2603:1020:e04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorwayWest\",\r\n \"id\": \"AzureKeyVault.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n
+ \ \"51.120.218.0/30\",\r\n \"2603:1020:f04::2a0/125\",\r\n
+ \ \"2603:1020:f04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.176/29\",\r\n
+ \ \"102.37.160.184/30\",\r\n \"102.133.124.140/30\",\r\n
+ \ \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n \"2603:1000:104::660/125\",\r\n
+ \ \"2603:1000:104:402::80/125\",\r\n \"2603:1000:104:802::80/125\",\r\n
+ \ \"2603:1000:104:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaWest\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.81.88/29\",\r\n
+ \ \"102.37.81.128/30\",\r\n \"102.133.26.0/30\",\r\n \"2603:1000:4::2a0/125\",\r\n
+ \ \"2603:1000:4:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.84.174.143/32\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"40.124.64.128/30\",\r\n \"104.44.136.42/32\",\r\n \"104.210.195.61/32\",\r\n
+ \ \"104.214.18.168/30\",\r\n \"104.215.94.76/32\",\r\n \"104.215.99.117/32\",\r\n
+ \ \"2603:1030:807::340/125\",\r\n \"2603:1030:807:402::80/125\",\r\n
+ \ \"2603:1030:807:802::80/125\",\r\n \"2603:1030:807:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureKeyVault.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.104/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"23.97.50.43/32\",\r\n \"23.101.21.103/32\",\r\n
+ \ \"23.101.21.193/32\",\r\n \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n
+ \ \"40.65.188.244/32\",\r\n \"40.65.189.219/32\",\r\n \"52.148.84.142/32\",\r\n
+ \ \"52.148.84.145/32\",\r\n \"52.187.161.13/32\",\r\n \"52.187.163.139/32\",\r\n
+ \ \"104.215.139.166/32\",\r\n \"104.215.140.132/32\",\r\n
+ \ \"168.63.167.27/32\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthIndia\",\r\n \"id\": \"AzureKeyVault.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.64/30\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.107.58.0/30\",\r\n
+ \ \"51.107.241.116/30\",\r\n \"51.107.242.248/29\",\r\n \"2603:1020:a04::340/125\",\r\n
+ \ \"2603:1020:a04:402::80/125\",\r\n \"2603:1020:a04:802::80/125\",\r\n
+ \ \"2603:1020:a04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandWest\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.0/30\",\r\n \"51.107.250.44/30\",\r\n
+ \ \"51.107.251.104/29\",\r\n \"2603:1020:b04::2a0/125\",\r\n
+ \ \"2603:1020:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.UAECentral\",\r\n \"id\": \"AzureKeyVault.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.228/30\",\r\n \"20.45.90.72/29\",\r\n \"20.45.90.80/30\",\r\n
+ \ \"2603:1040:b04::2a0/125\",\r\n \"2603:1040:b04:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UAENorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"65.52.250.0/30\",\r\n
+ \ \"2603:1040:904::340/125\",\r\n \"2603:1040:904:402::80/125\",\r\n
+ \ \"2603:1040:904:802::80/125\",\r\n \"2603:1040:904:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"2603:1020:305:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKWest\",\r\n
+ \ \"id\": \"AzureKeyVault.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.58.67.48/29\",\r\n
+ \ \"20.58.67.56/30\",\r\n \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestCentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.112/30\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n
+ \ \"52.161.31.139/32\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestEurope\",\r\n \"id\": \"AzureKeyVault.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.72/30\",\r\n \"13.80.247.19/32\",\r\n \"13.80.247.42/32\",\r\n
+ \ \"20.61.103.224/29\",\r\n \"20.61.103.232/30\",\r\n \"23.97.178.0/32\",\r\n
+ \ \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"104.46.40.31/32\",\r\n \"2603:1020:206::340/125\",\r\n
+ \ \"2603:1020:206:402::80/125\",\r\n \"2603:1020:206:802::80/125\",\r\n
+ \ \"2603:1020:206:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestIndia\",\r\n \"id\": \"AzureKeyVault.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.80.48/29\",\r\n \"20.192.80.56/30\",\r\n
+ \ \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n \"104.211.167.57/32\",\r\n
+ \ \"2603:1040:806::2a0/125\",\r\n \"2603:1040:806:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.66.2.28/30\",\r\n
+ \ \"20.66.5.128/29\",\r\n \"40.112.242.144/30\",\r\n \"104.42.6.91/32\",\r\n
+ \ \"104.42.136.180/32\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestUS2\",\r\n \"id\": \"AzureKeyVault.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n
+ \ \"51.143.6.21/32\",\r\n \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n
+ \ \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n \"52.175.236.86/32\",\r\n
+ \ \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n \"52.183.93.92/32\",\r\n
+ \ \"52.183.94.166/32\",\r\n \"52.247.193.69/32\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning\",\r\n \"id\": \"AzureMachineLearning\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.87.135/32\",\r\n \"13.66.140.80/28\",\r\n
+ \ \"13.67.8.224/28\",\r\n \"13.69.64.192/28\",\r\n \"13.69.106.192/28\",\r\n
+ \ \"13.69.227.192/28\",\r\n \"13.70.72.144/28\",\r\n \"13.71.170.192/28\",\r\n
+ \ \"13.71.173.80/28\",\r\n \"13.71.194.240/28\",\r\n \"13.73.240.16/28\",\r\n
+ \ \"13.73.240.112/28\",\r\n \"13.73.240.240/28\",\r\n \"13.73.248.96/28\",\r\n
+ \ \"13.74.107.160/28\",\r\n \"13.75.36.16/28\",\r\n \"13.77.50.224/28\",\r\n
+ \ \"13.78.106.208/28\",\r\n \"13.86.195.35/32\",\r\n \"13.87.56.112/28\",\r\n
+ \ \"13.87.122.112/28\",\r\n \"13.87.160.129/32\",\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.36.106.80/28\",\r\n \"20.36.114.160/28\",\r\n \"20.37.67.80/28\",\r\n
+ \ \"20.37.74.208/28\",\r\n \"20.37.152.240/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.38.80.96/28\",\r\n \"20.38.128.48/28\",\r\n \"20.38.147.128/28\",\r\n
+ \ \"20.39.1.205/32\",\r\n \"20.39.11.80/28\",\r\n \"20.40.141.171/32\",\r\n
+ \ \"20.41.0.240/28\",\r\n \"20.41.64.80/28\",\r\n \"20.41.197.0/28\",\r\n
+ \ \"20.42.0.240/28\",\r\n \"20.42.129.16/28\",\r\n \"20.42.227.48/28\",\r\n
+ \ \"20.43.40.96/28\",\r\n \"20.43.64.96/28\",\r\n \"20.43.120.112/28\",\r\n
+ \ \"20.43.128.112/28\",\r\n \"20.44.3.32/28\",\r\n \"20.44.26.224/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"20.46.13.192/28\",\r\n \"20.72.16.48/28\",\r\n
+ \ \"20.150.161.128/28\",\r\n \"20.150.171.80/28\",\r\n \"20.150.179.64/28\",\r\n
+ \ \"20.150.187.64/28\",\r\n \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n
+ \ \"20.189.106.80/28\",\r\n \"20.192.99.64/28\",\r\n \"20.192.160.48/28\",\r\n
+ \ \"20.192.225.144/28\",\r\n \"20.192.235.16/28\",\r\n \"23.98.82.192/28\",\r\n
+ \ \"23.100.232.216/32\",\r\n \"40.66.61.146/32\",\r\n \"40.67.59.80/28\",\r\n
+ \ \"40.69.106.224/28\",\r\n \"40.70.146.192/28\",\r\n \"40.70.154.161/32\",\r\n
+ \ \"40.71.11.64/28\",\r\n \"40.74.24.96/28\",\r\n \"40.74.100.176/28\",\r\n
+ \ \"40.74.147.48/28\",\r\n \"40.75.35.48/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"40.78.202.80/28\",\r\n \"40.78.227.32/28\",\r\n \"40.78.234.128/28\",\r\n
+ \ \"40.78.242.176/28\",\r\n \"40.78.250.112/28\",\r\n \"40.79.130.192/28\",\r\n
+ \ \"40.79.138.128/28\",\r\n \"40.79.146.128/28\",\r\n \"40.79.154.64/28\",\r\n
+ \ \"40.79.162.48/28\",\r\n \"40.79.170.224/28\",\r\n \"40.79.178.224/28\",\r\n
+ \ \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n \"40.80.51.64/28\",\r\n
+ \ \"40.80.57.176/28\",\r\n \"40.80.169.160/28\",\r\n \"40.80.184.80/28\",\r\n
+ \ \"40.80.188.96/28\",\r\n \"40.81.27.228/32\",\r\n \"40.82.187.230/32\",\r\n
+ \ \"40.82.248.80/28\",\r\n \"40.89.17.208/28\",\r\n \"40.90.184.249/32\",\r\n
+ \ \"40.91.77.76/32\",\r\n \"40.112.242.176/28\",\r\n \"40.119.8.80/28\",\r\n
+ \ \"51.11.24.49/32\",\r\n \"51.12.47.32/28\",\r\n \"51.12.99.80/28\",\r\n
+ \ \"51.12.198.224/28\",\r\n \"51.12.203.80/28\",\r\n \"51.12.227.64/28\",\r\n
+ \ \"51.12.235.64/28\",\r\n \"51.104.8.64/27\",\r\n \"51.104.24.96/28\",\r\n
+ \ \"51.105.67.16/28\",\r\n \"51.105.75.128/28\",\r\n \"51.105.88.224/28\",\r\n
+ \ \"51.105.129.135/32\",\r\n \"51.107.59.48/28\",\r\n \"51.107.147.32/28\",\r\n
+ \ \"51.107.155.48/28\",\r\n \"51.116.49.176/28\",\r\n \"51.116.59.48/28\",\r\n
+ \ \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n \"51.116.250.224/28\",\r\n
+ \ \"51.120.99.64/28\",\r\n \"51.120.107.64/28\",\r\n \"51.120.211.64/28\",\r\n
+ \ \"51.120.219.80/28\",\r\n \"51.120.227.80/28\",\r\n \"51.120.234.224/28\",\r\n
+ \ \"51.137.161.224/28\",\r\n \"51.140.146.208/28\",\r\n \"51.140.210.208/28\",\r\n
+ \ \"51.144.184.47/32\",\r\n \"52.138.90.144/28\",\r\n \"52.138.226.160/28\",\r\n
+ \ \"52.139.3.33/32\",\r\n \"52.140.107.96/28\",\r\n \"52.141.25.58/32\",\r\n
+ \ \"52.141.26.97/32\",\r\n \"52.148.163.43/32\",\r\n \"52.150.136.80/28\",\r\n
+ \ \"52.151.111.249/32\",\r\n \"52.155.90.254/32\",\r\n \"52.155.115.7/32\",\r\n
+ \ \"52.156.193.50/32\",\r\n \"52.162.106.176/28\",\r\n \"52.167.106.160/28\",\r\n
+ \ \"52.177.164.219/32\",\r\n \"52.182.139.32/28\",\r\n \"52.184.87.76/32\",\r\n
+ \ \"52.185.70.56/32\",\r\n \"52.228.80.80/28\",\r\n \"52.230.56.136/32\",\r\n
+ \ \"52.231.18.192/28\",\r\n \"52.231.146.208/28\",\r\n \"52.236.186.192/28\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"52.246.155.128/28\",\r\n \"52.249.59.91/32\",\r\n
+ \ \"52.252.160.26/32\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"52.253.227.208/32\",\r\n \"52.255.214.109/32\",\r\n \"52.255.217.127/32\",\r\n
+ \ \"65.52.250.192/28\",\r\n \"102.133.27.32/28\",\r\n \"102.133.58.224/28\",\r\n
+ \ \"102.133.122.224/27\",\r\n \"102.133.155.32/28\",\r\n
+ \ \"102.133.251.64/28\",\r\n \"104.208.16.160/28\",\r\n \"104.208.144.160/28\",\r\n
+ \ \"104.211.81.144/28\",\r\n \"104.214.19.32/28\",\r\n \"191.233.8.48/28\",\r\n
+ \ \"191.233.203.144/28\",\r\n \"191.233.240.165/32\",\r\n
+ \ \"191.233.242.167/32\",\r\n \"191.234.147.64/28\",\r\n
+ \ \"191.234.155.64/28\",\r\n \"191.235.224.96/28\",\r\n \"2603:1000:4::300/122\",\r\n
+ \ \"2603:1000:104:1::2c0/122\",\r\n \"2603:1010:6:1::2c0/122\",\r\n
+ \ \"2603:1010:101::300/122\",\r\n \"2603:1010:304::300/122\",\r\n
+ \ \"2603:1010:404::300/122\",\r\n \"2603:1020:5:1::2c0/122\",\r\n
+ \ \"2603:1020:206:1::2c0/122\",\r\n \"2603:1020:305::300/122\",\r\n
+ \ \"2603:1020:405::300/122\",\r\n \"2603:1020:605::300/122\",\r\n
+ \ \"2603:1020:705:1::2c0/122\",\r\n \"2603:1020:805:1::2c0/122\",\r\n
+ \ \"2603:1020:905::300/122\",\r\n \"2603:1020:a04:1::2c0/122\",\r\n
+ \ \"2603:1020:b04::300/122\",\r\n \"2603:1020:c04:1::2c0/122\",\r\n
+ \ \"2603:1020:d04::300/122\",\r\n \"2603:1020:e04:1::2c0/122\",\r\n
+ \ \"2603:1020:f04::300/122\",\r\n \"2603:1020:1004::2c0/122\",\r\n
+ \ \"2603:1020:1104::240/122\",\r\n \"2603:1030:f:1::300/122\",\r\n
+ \ \"2603:1030:10:1::2c0/122\",\r\n \"2603:1030:104:1::2c0/122\",\r\n
+ \ \"2603:1030:107::240/122\",\r\n \"2603:1030:210:1::2c0/122\",\r\n
+ \ \"2603:1030:40b:1::2c0/122\",\r\n \"2603:1030:40c:1::2c0/122\",\r\n
+ \ \"2603:1030:504:1::2c0/122\",\r\n \"2603:1030:608::300/122\",\r\n
+ \ \"2603:1030:807:1::2c0/122\",\r\n \"2603:1030:a07::300/122\",\r\n
+ \ \"2603:1030:b04::300/122\",\r\n \"2603:1030:c06:1::2c0/122\",\r\n
+ \ \"2603:1030:f05:1::2c0/122\",\r\n \"2603:1030:1005::300/122\",\r\n
+ \ \"2603:1040:5:1::2c0/122\",\r\n \"2603:1040:207::300/122\",\r\n
+ \ \"2603:1040:407:1::2c0/122\",\r\n \"2603:1040:606::300/122\",\r\n
+ \ \"2603:1040:806::300/122\",\r\n \"2603:1040:904:1::2c0/122\",\r\n
+ \ \"2603:1040:a06:1::2c0/122\",\r\n \"2603:1040:b04::300/122\",\r\n
+ \ \"2603:1040:c06::300/122\",\r\n \"2603:1040:d04::2c0/122\",\r\n
+ \ \"2603:1040:f05:1::2c0/122\",\r\n \"2603:1040:1104::240/122\",\r\n
+ \ \"2603:1050:6:1::2c0/122\",\r\n \"2603:1050:403::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.AustraliaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.144/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n \"40.79.162.48/28\",\r\n
+ \ \"40.79.170.224/28\",\r\n \"2603:1010:6:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CanadaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.224/28\",\r\n \"40.89.17.208/28\",\r\n
+ \ \"2603:1030:1005::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.CentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.37.152.240/28\",\r\n \"52.182.139.32/28\",\r\n \"52.185.70.56/32\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"104.208.16.160/28\",\r\n \"2603:1030:10:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureMachineLearning.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.192/28\",\r\n \"40.78.202.80/28\",\r\n
+ \ \"2603:1030:f:1::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureMachineLearning.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n
+ \ \"51.116.250.224/28\",\r\n \"2603:1020:c04:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.JapanEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.208/28\",\r\n \"20.43.64.96/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n
+ \ \"52.155.115.7/32\",\r\n \"2603:1040:407:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.SouthIndia\",\r\n
+ \ \"id\": \"AzureMachineLearning.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.197.0/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"2603:1040:c06::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.WestCentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.240/28\",\r\n
+ \ \"52.150.136.80/28\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"2603:1030:b04::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor\",\r\n \"id\": \"AzureMonitor\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"5\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.96.175/32\",\r\n \"13.65.206.67/32\",\r\n
+ \ \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n \"13.66.37.172/32\",\r\n
+ \ \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.67.9.192/28\",\r\n \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n
+ \ \"13.67.15.0/32\",\r\n \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n
+ \ \"13.68.31.237/32\",\r\n \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n
+ \ \"13.68.109.212/32\",\r\n \"13.68.111.247/32\",\r\n \"13.69.51.175/32\",\r\n
+ \ \"13.69.51.218/32\",\r\n \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n
+ \ \"13.69.67.60/30\",\r\n \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n
+ \ \"13.69.106.208/28\",\r\n \"13.69.109.224/27\",\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.72.232/29\",\r\n \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n
+ \ \"13.70.124.27/32\",\r\n \"13.70.127.61/32\",\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.73.26.213/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n
+ \ \"13.75.38.0/28\",\r\n \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n
+ \ \"13.75.117.221/32\",\r\n \"13.75.119.169/32\",\r\n \"13.75.195.15/32\",\r\n
+ \ \"13.76.85.243/32\",\r\n \"13.76.87.86/32\",\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"13.77.150.166/32\",\r\n
+ \ \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n \"13.78.10.58/32\",\r\n
+ \ \"13.78.13.189/32\",\r\n \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n
+ \ \"13.78.109.112/29\",\r\n \"13.78.111.192/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"13.80.134.255/32\",\r\n \"13.82.100.176/32\",\r\n \"13.82.184.151/32\",\r\n
+ \ \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n \"13.84.149.186/32\",\r\n
+ \ \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n \"13.84.225.10/32\",\r\n
+ \ \"13.85.70.142/32\",\r\n \"13.86.218.224/28\",\r\n \"13.86.218.248/29\",\r\n
+ \ \"13.86.223.128/26\",\r\n \"13.87.56.248/29\",\r\n \"13.87.57.128/28\",\r\n
+ \ \"13.87.122.248/29\",\r\n \"13.87.123.128/28\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.88.230.43/32\",\r\n \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n
+ \ \"13.89.42.127/32\",\r\n \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n
+ \ \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n \"13.90.249.229/32\",\r\n
+ \ \"13.90.251.123/32\",\r\n \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n
+ \ \"13.92.40.198/32\",\r\n \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n
+ \ \"13.92.179.52/32\",\r\n \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n
+ \ \"13.92.254.218/32\",\r\n \"13.92.255.146/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"13.94.39.13/32\",\r\n
+ \ \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n \"20.36.114.200/29\",\r\n
+ \ \"20.36.114.208/28\",\r\n \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n
+ \ \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.37.192.68/31\",\r\n \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n
+ \ \"20.37.198.140/32\",\r\n \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.38.80.68/31\",\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"20.38.143.0/27\",\r\n \"20.38.143.44/30\",\r\n
+ \ \"20.38.146.152/29\",\r\n \"20.38.147.144/29\",\r\n \"20.38.152.32/27\",\r\n
+ \ \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.40.124.0/32\",\r\n \"20.40.137.91/32\",\r\n \"20.40.140.212/32\",\r\n
+ \ \"20.40.160.120/32\",\r\n \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n
+ \ \"20.40.206.128/28\",\r\n \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n
+ \ \"20.40.228.0/26\",\r\n \"20.41.49.208/32\",\r\n \"20.41.64.68/31\",\r\n
+ \ \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n \"20.41.69.16/28\",\r\n
+ \ \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n \"20.41.208.32/27\",\r\n
+ \ \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n \"20.42.73.128/25\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n
+ \ \"20.42.230.224/29\",\r\n \"20.42.230.232/31\",\r\n \"20.43.40.68/31\",\r\n
+ \ \"20.43.41.178/31\",\r\n \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n
+ \ \"20.43.44.224/28\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.43.98.234/32\",\r\n
+ \ \"20.43.99.158/32\",\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n \"20.44.3.48/28\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"20.44.16.0/29\",\r\n \"20.44.17.0/29\",\r\n \"20.44.26.152/29\",\r\n
+ \ \"20.44.26.248/29\",\r\n \"20.44.73.196/32\",\r\n \"20.44.192.217/32\",\r\n
+ \ \"20.45.122.152/29\",\r\n \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n
+ \ \"20.45.125.224/28\",\r\n \"20.46.10.224/27\",\r\n \"20.46.12.196/30\",\r\n
+ \ \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n \"20.48.193.224/27\",\r\n
+ \ \"20.49.83.32/28\",\r\n \"20.49.84.32/27\",\r\n \"20.49.91.32/28\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.49.99.44/31\",\r\n \"20.49.99.64/28\",\r\n
+ \ \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n \"20.49.109.46/31\",\r\n
+ \ \"20.49.109.80/28\",\r\n \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n
+ \ \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n \"20.49.114.48/31\",\r\n
+ \ \"20.49.120.64/28\",\r\n \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n
+ \ \"20.50.68.120/30\",\r\n \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n
+ \ \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n \"20.52.64.32/27\",\r\n
+ \ \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n \"20.66.2.192/26\",\r\n
+ \ \"20.72.20.48/28\",\r\n \"20.72.21.0/30\",\r\n \"20.72.21.32/27\",\r\n
+ \ \"20.72.28.192/27\",\r\n \"20.135.13.192/26\",\r\n \"20.150.167.184/29\",\r\n
+ \ \"20.150.171.208/29\",\r\n \"20.150.173.0/28\",\r\n \"20.150.178.152/29\",\r\n
+ \ \"20.150.181.96/28\",\r\n \"20.150.182.32/27\",\r\n \"20.150.186.152/29\",\r\n
+ \ \"20.150.241.64/29\",\r\n \"20.150.241.72/30\",\r\n \"20.150.241.96/27\",\r\n
+ \ \"20.187.197.192/27\",\r\n \"20.188.36.28/32\",\r\n \"20.189.109.144/28\",\r\n
+ \ \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n \"20.189.111.24/31\",\r\n
+ \ \"20.189.172.0/25\",\r\n \"20.189.225.128/27\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.50.192/28\",\r\n
+ \ \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n \"20.192.167.160/27\",\r\n
+ \ \"20.192.231.244/30\",\r\n \"20.192.235.144/28\",\r\n \"20.193.96.32/27\",\r\n
+ \ \"20.193.194.24/29\",\r\n \"20.193.194.32/29\",\r\n \"20.193.194.40/30\",\r\n
+ \ \"20.193.203.112/28\",\r\n \"20.193.204.64/27\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"23.96.28.38/32\",\r\n
+ \ \"23.96.245.125/32\",\r\n \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n
+ \ \"23.97.65.103/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"23.100.90.7/32\",\r\n \"23.100.94.221/32\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.100.228.32/32\",\r\n \"23.101.0.142/32\",\r\n
+ \ \"23.101.9.4/32\",\r\n \"23.101.13.65/32\",\r\n \"23.101.69.223/32\",\r\n
+ \ \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n \"23.101.239.238/32\",\r\n
+ \ \"23.102.44.211/32\",\r\n \"23.102.45.216/32\",\r\n \"23.102.66.132/32\",\r\n
+ \ \"23.102.77.48/32\",\r\n \"23.102.181.197/32\",\r\n \"40.64.132.128/28\",\r\n
+ \ \"40.64.132.240/28\",\r\n \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n
+ \ \"40.64.134.138/32\",\r\n \"40.67.52.224/27\",\r\n \"40.67.59.192/28\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.69.81.159/32\",\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.69.194.158/32\",\r\n \"40.70.23.205/32\",\r\n
+ \ \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n \"40.71.12.224/28\",\r\n
+ \ \"40.71.12.240/30\",\r\n \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n
+ \ \"40.71.14.112/30\",\r\n \"40.71.183.225/32\",\r\n \"40.74.24.68/31\",\r\n
+ \ \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n \"40.74.101.32/28\",\r\n
+ \ \"40.74.101.200/29\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.74.249.98/32\",\r\n \"40.75.34.40/29\",\r\n
+ \ \"40.75.35.64/29\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n \"40.77.24.27/32\",\r\n
+ \ \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.78.195.16/28\",\r\n
+ \ \"40.78.196.48/29\",\r\n \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.78.234.56/29\",\r\n
+ \ \"40.78.234.144/28\",\r\n \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n
+ \ \"40.78.247.64/26\",\r\n \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n
+ \ \"40.78.253.192/26\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.79.154.80/29\",\r\n \"40.79.156.32/29\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.79.179.8/29\",\r\n
+ \ \"40.79.179.16/28\",\r\n \"40.79.187.8/29\",\r\n \"40.79.190.160/27\",\r\n
+ \ \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n \"40.80.50.152/29\",\r\n
+ \ \"40.80.51.80/29\",\r\n \"40.80.180.160/27\",\r\n \"40.80.191.224/28\",\r\n
+ \ \"40.81.58.225/32\",\r\n \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n
+ \ \"40.84.189.107/32\",\r\n \"40.84.192.116/32\",\r\n \"40.85.180.90/32\",\r\n
+ \ \"40.85.201.168/32\",\r\n \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"40.86.201.128/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.89.153.171/32\",\r\n
+ \ \"40.89.189.61/32\",\r\n \"40.112.49.101/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.117.80.207/32\",\r\n
+ \ \"40.117.95.162/32\",\r\n \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n
+ \ \"40.117.197.224/32\",\r\n \"40.118.129.58/32\",\r\n \"40.119.4.128/32\",\r\n
+ \ \"40.119.8.72/31\",\r\n \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"40.120.75.32/28\",\r\n \"40.121.57.2/32\",\r\n
+ \ \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n \"40.121.163.228/32\",\r\n
+ \ \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"40.126.246.183/32\",\r\n \"40.127.75.125/32\",\r\n \"40.127.84.197/32\",\r\n
+ \ \"40.127.144.141/32\",\r\n \"51.11.97.96/27\",\r\n \"51.12.17.20/30\",\r\n
+ \ \"51.12.17.56/29\",\r\n \"51.12.17.128/29\",\r\n \"51.12.25.56/29\",\r\n
+ \ \"51.12.25.192/29\",\r\n \"51.12.25.200/30\",\r\n \"51.12.46.0/27\",\r\n
+ \ \"51.12.99.72/29\",\r\n \"51.12.102.192/27\",\r\n \"51.12.195.224/27\",\r\n
+ \ \"51.12.203.208/28\",\r\n \"51.12.205.96/27\",\r\n \"51.12.226.152/29\",\r\n
+ \ \"51.12.234.152/29\",\r\n \"51.12.237.32/27\",\r\n \"51.13.128.32/27\",\r\n
+ \ \"51.13.136.192/27\",\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.105.248.23/32\",\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n \"51.107.148.0/28\",\r\n
+ \ \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n \"51.107.156.48/29\",\r\n
+ \ \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n \"51.116.245.96/28\",\r\n
+ \ \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.219.208/28\",\r\n
+ \ \"51.120.232.34/31\",\r\n \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n
+ \ \"51.120.235.240/28\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.6.23/32\",\r\n
+ \ \"51.140.54.208/32\",\r\n \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n
+ \ \"51.140.148.48/28\",\r\n \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n
+ \ \"51.140.163.207/32\",\r\n \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n
+ \ \"51.140.211.160/28\",\r\n \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"51.143.165.22/32\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n \"51.145.44.242/32\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.138.31.112/32\",\r\n \"52.138.31.127/32\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"52.138.222.110/32\",\r\n
+ \ \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n \"52.139.8.32/32\",\r\n
+ \ \"52.139.106.160/27\",\r\n \"52.140.104.68/31\",\r\n \"52.140.108.96/28\",\r\n
+ \ \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n \"52.140.108.240/31\",\r\n
+ \ \"52.141.22.149/32\",\r\n \"52.141.22.239/32\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.150.36.187/32\",\r\n
+ \ \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n \"52.150.154.24/29\",\r\n
+ \ \"52.150.154.32/28\",\r\n \"52.151.11.176/32\",\r\n \"52.155.118.97/32\",\r\n
+ \ \"52.155.162.238/32\",\r\n \"52.156.40.142/32\",\r\n \"52.156.168.82/32\",\r\n
+ \ \"52.161.8.76/32\",\r\n \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n
+ \ \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n \"52.162.110.168/29\",\r\n
+ \ \"52.162.214.75/32\",\r\n \"52.163.94.131/32\",\r\n \"52.163.122.20/32\",\r\n
+ \ \"52.164.120.183/32\",\r\n \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n
+ \ \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n \"52.165.38.20/32\",\r\n
+ \ \"52.165.150.242/32\",\r\n \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n
+ \ \"52.167.221.184/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.169.4.236/32\",\r\n \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n
+ \ \"52.169.64.244/32\",\r\n \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n
+ \ \"52.172.113.64/27\",\r\n \"52.172.209.125/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.175.198.74/32\",\r\n \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.177.223.60/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.179.192.178/32\",\r\n
+ \ \"52.180.160.132/32\",\r\n \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n
+ \ \"52.180.182.209/32\",\r\n \"52.182.138.216/29\",\r\n \"52.182.139.48/29\",\r\n
+ \ \"52.183.41.109/32\",\r\n \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n
+ \ \"52.183.95.86/32\",\r\n \"52.183.127.155/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"52.185.132.101/32\",\r\n \"52.185.132.170/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.170.253/32\",\r\n \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n
+ \ \"52.224.162.220/32\",\r\n \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n
+ \ \"52.228.80.68/31\",\r\n \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n
+ \ \"52.228.86.152/29\",\r\n \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n
+ \ \"52.229.25.130/32\",\r\n \"52.229.37.75/32\",\r\n \"52.229.218.221/32\",\r\n
+ \ \"52.229.225.6/32\",\r\n \"52.230.224.237/32\",\r\n \"52.231.18.240/28\",\r\n
+ \ \"52.231.28.204/32\",\r\n \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n
+ \ \"52.231.67.208/32\",\r\n \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n
+ \ \"52.231.111.52/32\",\r\n \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n
+ \ \"52.232.35.33/32\",\r\n \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n
+ \ \"52.236.186.88/29\",\r\n \"52.236.186.208/28\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.237.157.70/32\",\r\n \"52.242.230.209/32\",\r\n \"52.246.154.152/29\",\r\n
+ \ \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n \"52.247.202.90/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"65.52.122.208/32\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"102.37.64.128/27\",\r\n
+ \ \"102.37.80.64/27\",\r\n \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n
+ \ \"102.133.122.152/29\",\r\n \"102.133.123.240/29\",\r\n
+ \ \"102.133.126.64/27\",\r\n \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n
+ \ \"102.133.162.233/32\",\r\n \"102.133.216.68/31\",\r\n
+ \ \"102.133.216.106/31\",\r\n \"102.133.218.144/28\",\r\n
+ \ \"102.133.218.244/30\",\r\n \"102.133.219.128/28\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"102.133.250.152/29\",\r\n
+ \ \"102.133.251.80/29\",\r\n \"104.40.222.36/32\",\r\n \"104.41.61.169/32\",\r\n
+ \ \"104.41.152.101/32\",\r\n \"104.41.157.59/32\",\r\n \"104.41.224.134/32\",\r\n
+ \ \"104.42.40.28/32\",\r\n \"104.44.140.84/32\",\r\n \"104.45.136.42/32\",\r\n
+ \ \"104.45.230.69/32\",\r\n \"104.45.232.72/32\",\r\n \"104.46.123.164/32\",\r\n
+ \ \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n \"104.208.33.155/32\",\r\n
+ \ \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"104.214.70.219/32\",\r\n
+ \ \"104.214.104.109/32\",\r\n \"104.214.164.128/27\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"111.221.88.173/32\",\r\n \"137.116.82.175/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"137.116.226.81/32\",\r\n
+ \ \"137.117.144.33/32\",\r\n \"138.91.9.98/32\",\r\n \"138.91.32.98/32\",\r\n
+ \ \"138.91.37.93/32\",\r\n \"157.55.177.6/32\",\r\n \"168.61.142.0/27\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"168.62.169.17/32\",\r\n \"168.63.174.169/32\",\r\n
+ \ \"168.63.242.221/32\",\r\n \"191.232.33.83/32\",\r\n \"191.232.161.75/32\",\r\n
+ \ \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.233.51.128/28\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.237.224.192/27\",\r\n
+ \ \"191.239.251.90/32\",\r\n \"207.46.224.101/32\",\r\n \"207.46.236.191/32\",\r\n
+ \ \"2603:1000:4::780/121\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\",\r\n
+ \ \"2603:1010:6::60/123\",\r\n \"2603:1010:6::1c0/122\",\r\n
+ \ \"2603:1010:6::300/123\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:1::280/122\",\r\n \"2603:1010:6:402::500/121\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\",\r\n
+ \ \"2603:1010:404::780/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::60/123\",\r\n \"2603:1020:5::1c0/122\",\r\n
+ \ \"2603:1020:5::300/123\",\r\n \"2603:1020:5::360/123\",\r\n
+ \ \"2603:1020:5::500/121\",\r\n \"2603:1020:5:1::280/122\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::60/123\",\r\n
+ \ \"2603:1020:206::1c0/122\",\r\n \"2603:1020:206::300/123\",\r\n
+ \ \"2603:1020:206::360/123\",\r\n \"2603:1020:206::500/121\",\r\n
+ \ \"2603:1020:206:1::280/122\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:305::780/121\",\r\n \"2603:1020:405::780/121\",\r\n
+ \ \"2603:1020:605::780/121\",\r\n \"2603:1020:605:1::280/123\",\r\n
+ \ \"2603:1020:605:1::300/121\",\r\n \"2603:1020:605:402::500/121\",\r\n
+ \ \"2603:1020:705::60/123\",\r\n \"2603:1020:705::1c0/122\",\r\n
+ \ \"2603:1020:705::300/123\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:1::280/122\",\r\n
+ \ \"2603:1020:705:402::500/121\",\r\n \"2603:1020:805::60/123\",\r\n
+ \ \"2603:1020:805::1c0/122\",\r\n \"2603:1020:805::300/123\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:1::280/122\",\r\n \"2603:1020:805:402::500/121\",\r\n
+ \ \"2603:1020:905::780/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::60/123\",\r\n \"2603:1020:a04::1c0/122\",\r\n
+ \ \"2603:1020:a04::300/123\",\r\n \"2603:1020:a04::360/123\",\r\n
+ \ \"2603:1020:a04::500/121\",\r\n \"2603:1020:a04:1::280/122\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04::780/121\",\r\n
+ \ \"2603:1020:b04:1::280/123\",\r\n \"2603:1020:b04:1::300/121\",\r\n
+ \ \"2603:1020:b04:402::500/121\",\r\n \"2603:1020:c01:2::b/128\",\r\n
+ \ \"2603:1020:c01:2::e/128\",\r\n \"2603:1020:c04::60/123\",\r\n
+ \ \"2603:1020:c04::1c0/122\",\r\n \"2603:1020:c04::300/123\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:1::280/122\",\r\n \"2603:1020:c04:402::500/121\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\",\r\n \"2603:1020:e04::60/123\",\r\n
+ \ \"2603:1020:e04::1c0/122\",\r\n \"2603:1020:e04::300/123\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:1::280/122\",\r\n \"2603:1020:e04:402::500/121\",\r\n
+ \ \"2603:1020:f04::780/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004::280/122\",\r\n \"2603:1020:1004:1::380/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::160/123\",\r\n
+ \ \"2603:1020:1104:1::180/122\",\r\n \"2603:1020:1104:1::1c0/123\",\r\n
+ \ \"2603:1020:1104:1::4c0/123\",\r\n \"2603:1020:1104:1::500/121\",\r\n
+ \ \"2603:1020:1104:400::440/123\",\r\n \"2603:1020:1104:400::480/121\",\r\n
+ \ \"2603:1030:7:5::e/128\",\r\n \"2603:1030:7:5::17/128\",\r\n
+ \ \"2603:1030:7:5::29/128\",\r\n \"2603:1030:7:5::32/128\",\r\n
+ \ \"2603:1030:7:6::10/128\",\r\n \"2603:1030:7:6::14/128\",\r\n
+ \ \"2603:1030:7:6::1b/128\",\r\n \"2603:1030:7:6::37/128\",\r\n
+ \ \"2603:1030:7:6::3f/128\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::60/123\",\r\n
+ \ \"2603:1030:104::1c0/122\",\r\n \"2603:1030:104::300/123\",\r\n
+ \ \"2603:1030:104::360/123\",\r\n \"2603:1030:104::500/121\",\r\n
+ \ \"2603:1030:104:1::280/122\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::80/121\",\r\n \"2603:1030:107:1::200/123\",\r\n
+ \ \"2603:1030:107:1::280/121\",\r\n \"2603:1030:107:400::3c0/123\",\r\n
+ \ \"2603:1030:107:400::480/121\",\r\n \"2603:1030:210::60/123\",\r\n
+ \ \"2603:1030:210::1c0/122\",\r\n \"2603:1030:210::300/123\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:1::280/122\",\r\n \"2603:1030:210:402::500/121\",\r\n
+ \ \"2603:1030:302:402::80/123\",\r\n \"2603:1030:302:402::100/121\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\",\r\n
+ \ \"2603:1030:504::380/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:1::280/122\",\r\n
+ \ \"2603:1030:504:c02::100/123\",\r\n \"2603:1030:504:c02::180/121\",\r\n
+ \ \"2603:1030:608::780/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:800:5::bfee:a418/128\",\r\n \"2603:1030:800:5::bfee:a429/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a42a/128\",\r\n \"2603:1030:800:5::bfee:a435/128\",\r\n
+ \ \"2603:1030:807::60/123\",\r\n \"2603:1030:807::1c0/122\",\r\n
+ \ \"2603:1030:807::300/123\",\r\n \"2603:1030:807::360/123\",\r\n
+ \ \"2603:1030:807::500/121\",\r\n \"2603:1030:807:1::280/122\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\",\r\n
+ \ \"2603:1030:c02:2::4e1/128\",\r\n \"2603:1030:c06:1::280/122\",\r\n
+ \ \"2603:1030:c06:2::80/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:d00::1d/128\",\r\n \"2603:1030:d00::48/128\",\r\n
+ \ \"2603:1030:d00::5a/128\",\r\n \"2603:1030:d00::82/128\",\r\n
+ \ \"2603:1030:d00::84/128\",\r\n \"2603:1030:d00::9a/128\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005::780/121\",\r\n
+ \ \"2603:1030:1005:1::280/123\",\r\n \"2603:1030:1005:1::300/121\",\r\n
+ \ \"2603:1030:1005:402::500/121\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2603:1040:207::780/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::60/123\",\r\n \"2603:1040:407::1c0/122\",\r\n
+ \ \"2603:1040:407::300/123\",\r\n \"2603:1040:407::360/123\",\r\n
+ \ \"2603:1040:407::500/121\",\r\n \"2603:1040:407:1::280/122\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606::780/121\",\r\n
+ \ \"2603:1040:606:1::280/123\",\r\n \"2603:1040:606:1::300/121\",\r\n
+ \ \"2603:1040:606:402::500/121\",\r\n \"2603:1040:806::780/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\",\r\n
+ \ \"2603:1040:b00:2::b/128\",\r\n \"2603:1040:b04::780/121\",\r\n
+ \ \"2603:1040:b04:1::280/123\",\r\n \"2603:1040:b04:1::300/121\",\r\n
+ \ \"2603:1040:b04:402::500/121\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04::280/122\",\r\n
+ \ \"2603:1040:d04:1::380/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::160/123\",\r\n
+ \ \"2603:1040:1104:1::180/122\",\r\n \"2603:1040:1104:1::1c0/123\",\r\n
+ \ \"2603:1040:1104:1::580/121\",\r\n \"2603:1040:1104:400::460/123\",\r\n
+ \ \"2603:1050:6::60/123\",\r\n \"2603:1050:6::1c0/122\",\r\n
+ \ \"2603:1050:6::300/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:1::280/122\",\r\n
+ \ \"2603:1050:6:402::580/121\",\r\n \"2603:1050:6:c02::2a0/123\",\r\n
+ \ \"2603:1050:403::280/122\",\r\n \"2603:1050:403:1::80/121\",\r\n
+ \ \"2603:1050:403:1::240/123\",\r\n \"2603:1050:403:1::300/121\",\r\n
+ \ \"2603:1050:403:400::580/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\",\r\n \"2a01:111:f100:4002::9d37:c0bd/128\",\r\n
+ \ \"2a01:111:f100:6000::4134:a6cf/128\",\r\n \"2a01:111:f100:7000::6fdd:5343/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:91e4/128\",\r\n \"2a01:111:f100:9001::1761:958a/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:9696/128\",\r\n \"2a01:111:f100:a001::4134:e463/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureMonitor\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.53.0.128/27\",\r\n \"20.53.48.64/27\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.200/29\",\r\n \"20.36.114.208/28\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.193.96.32/27\",\r\n \"2603:1010:404::780/121\",\r\n
+ \ \"2603:1010:404:1::280/123\",\r\n \"2603:1010:404:1::300/121\",\r\n
+ \ \"2603:1010:404:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaEast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.232/29\",\r\n
+ \ \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n \"13.70.124.27/32\",\r\n
+ \ \"13.70.127.61/32\",\r\n \"13.75.195.15/32\",\r\n \"20.37.192.68/31\",\r\n
+ \ \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n \"20.37.198.140/32\",\r\n
+ \ \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n \"20.40.124.0/32\",\r\n
+ \ \"20.43.98.234/32\",\r\n \"20.43.99.158/32\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.126.246.183/32\",\r\n
+ \ \"52.156.168.82/32\",\r\n \"2603:1010:6::60/123\",\r\n
+ \ \"2603:1010:6::1c0/122\",\r\n \"2603:1010:6::300/123\",\r\n
+ \ \"2603:1010:6::500/121\",\r\n \"2603:1010:6:1::280/122\",\r\n
+ \ \"2603:1010:6:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"20.40.160.120/32\",\r\n
+ \ \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n \"20.42.230.224/29\",\r\n
+ \ \"20.42.230.232/31\",\r\n \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n
+ \ \"23.101.239.238/32\",\r\n \"40.81.58.225/32\",\r\n \"40.127.75.125/32\",\r\n
+ \ \"40.127.84.197/32\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.BrazilSouth\",\r\n
+ \ \"id\": \"AzureMonitor.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.61.169/32\",\r\n \"191.232.33.83/32\",\r\n
+ \ \"191.232.161.75/32\",\r\n \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.239.251.90/32\",\r\n \"2603:1050:6::60/123\",\r\n
+ \ \"2603:1050:6::1c0/122\",\r\n \"2603:1050:6::300/123\",\r\n
+ \ \"2603:1050:6::360/123\",\r\n \"2603:1050:6::500/121\",\r\n
+ \ \"2603:1050:6:1::280/122\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaCentral\",\r\n \"id\":
+ \"AzureMonitor.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.88.230.43/32\",\r\n
+ \ \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n \"20.38.146.152/29\",\r\n
+ \ \"20.38.147.144/29\",\r\n \"20.48.193.224/27\",\r\n \"40.85.201.168/32\",\r\n
+ \ \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n \"52.138.31.112/32\",\r\n
+ \ \"52.138.31.127/32\",\r\n \"52.139.8.32/32\",\r\n \"52.228.80.68/31\",\r\n
+ \ \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n \"52.228.86.152/29\",\r\n
+ \ \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.246.154.152/29\",\r\n \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaEast\",\r\n \"id\": \"AzureMonitor.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.86.201.128/32\",\r\n \"52.139.106.160/27\",\r\n
+ \ \"2603:1030:1005::780/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralIndia\",\r\n
+ \ \"id\": \"AzureMonitor.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"40.80.50.152/29\",\r\n \"40.80.51.80/29\",\r\n \"52.140.104.68/31\",\r\n
+ \ \"52.140.108.96/28\",\r\n \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n
+ \ \"52.140.108.240/31\",\r\n \"52.172.209.125/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.89.42.127/32\",\r\n
+ \ \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n \"20.40.206.128/28\",\r\n
+ \ \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n
+ \ \"40.77.24.27/32\",\r\n \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n
+ \ \"52.165.38.20/32\",\r\n \"52.165.150.242/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.182.138.216/29\",\r\n
+ \ \"52.182.139.48/29\",\r\n \"52.230.224.237/32\",\r\n \"52.242.230.209/32\",\r\n
+ \ \"104.208.33.155/32\",\r\n \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"2603:1030:7:5::e/128\",\r\n
+ \ \"2603:1030:7:5::17/128\",\r\n \"2603:1030:7:5::29/128\",\r\n
+ \ \"2603:1030:7:5::32/128\",\r\n \"2603:1030:7:6::10/128\",\r\n
+ \ \"2603:1030:7:6::14/128\",\r\n \"2603:1030:7:6::1b/128\",\r\n
+ \ \"2603:1030:7:6::37/128\",\r\n \"2603:1030:7:6::3f/128\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CentralUSEUAP\",\r\n \"id\":
+ \"AzureMonitor.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.46.10.224/27\",\r\n
+ \ \"20.46.12.196/30\",\r\n \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n
+ \ \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n \"52.180.160.132/32\",\r\n
+ \ \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n \"52.180.182.209/32\",\r\n
+ \ \"168.61.142.0/27\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.Core\",\r\n
+ \ \"id\": \"AzureMonitor.Core\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.109.224/27\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.79.96/27\",\r\n \"13.71.177.32/27\",\r\n \"13.86.223.128/26\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n \"20.38.132.64/27\",\r\n
+ \ \"20.38.143.0/27\",\r\n \"20.38.152.32/27\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.41.208.32/27\",\r\n \"20.42.65.128/25\",\r\n \"20.44.11.192/26\",\r\n
+ \ \"20.46.10.224/27\",\r\n \"20.48.193.224/27\",\r\n \"20.49.84.32/27\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n
+ \ \"20.52.64.32/27\",\r\n \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n
+ \ \"20.53.46.64/27\",\r\n \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n
+ \ \"20.61.99.64/27\",\r\n \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.72.21.32/27\",\r\n \"20.72.28.192/27\",\r\n
+ \ \"20.150.182.32/27\",\r\n \"20.150.241.96/27\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.225.128/27\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"20.192.167.160/27\",\r\n \"20.193.96.32/27\",\r\n \"20.193.204.64/27\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"40.67.52.224/27\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.74.150.32/27\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.80.180.160/27\",\r\n \"40.120.8.192/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.12.46.0/27\",\r\n \"51.12.102.192/27\",\r\n
+ \ \"51.12.195.224/27\",\r\n \"51.12.205.96/27\",\r\n \"51.12.237.32/27\",\r\n
+ \ \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n \"51.105.70.128/27\",\r\n
+ \ \"51.107.128.96/27\",\r\n \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n
+ \ \"51.107.250.0/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.120.213.64/27\",\r\n \"51.120.232.160/27\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.139.106.160/27\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"168.61.142.0/27\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.237.224.192/27\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104:2::/123\",\r\n \"2603:1000:104:2::80/121\",\r\n
+ \ \"2603:1000:104:402::500/121\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:402::500/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304:1::280/123\",\r\n \"2603:1010:304:1::300/121\",\r\n
+ \ \"2603:1010:304:402::500/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:402::500/121\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:402::500/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:402::500/121\",\r\n \"2603:1020:d04:1::280/123\",\r\n
+ \ \"2603:1020:d04:1::300/121\",\r\n \"2603:1020:d04:402::500/121\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:402::500/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::4c0/123\",\r\n
+ \ \"2603:1020:1104:1::500/121\",\r\n \"2603:1020:1104:400::440/123\",\r\n
+ \ \"2603:1020:1104:400::480/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::360/123\",\r\n \"2603:1030:10::500/121\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::360/123\",\r\n
+ \ \"2603:1030:104::500/121\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::200/123\",\r\n \"2603:1030:107:1::280/121\",\r\n
+ \ \"2603:1030:107:400::3c0/123\",\r\n \"2603:1030:107:400::480/121\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2603:1030:302:402::80/123\",\r\n
+ \ \"2603:1030:302:402::100/121\",\r\n \"2603:1030:40b:2::240/123\",\r\n
+ \ \"2603:1030:40b:2::300/121\",\r\n \"2603:1030:40b:400::d00/121\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:402::500/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:c02::100/123\",\r\n
+ \ \"2603:1030:504:c02::180/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07:1::280/123\",\r\n
+ \ \"2603:1030:a07:1::300/121\",\r\n \"2603:1030:a07:402::380/121\",\r\n
+ \ \"2603:1030:b04:1::280/123\",\r\n \"2603:1030:b04:1::300/121\",\r\n
+ \ \"2603:1030:b04:402::500/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:f05::360/123\",\r\n \"2603:1030:f05::500/121\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:402::500/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:402::500/121\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:402::500/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::360/123\",\r\n \"2603:1040:f05::500/121\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::580/121\",\r\n
+ \ \"2603:1040:1104:400::460/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\",\r\n \"2603:1050:403:1::240/123\",\r\n
+ \ \"2603:1050:403:1::300/121\",\r\n \"2603:1050:403:400::580/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastAsia\",\r\n
+ \ \"id\": \"AzureMonitor.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.75.38.0/28\",\r\n
+ \ \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n \"13.75.117.221/32\",\r\n
+ \ \"13.75.119.169/32\",\r\n \"13.94.39.13/32\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.109.144/28\",\r\n \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n
+ \ \"20.189.111.24/31\",\r\n \"23.97.65.103/32\",\r\n \"23.100.90.7/32\",\r\n
+ \ \"23.100.94.221/32\",\r\n \"23.101.0.142/32\",\r\n \"23.101.9.4/32\",\r\n
+ \ \"23.101.13.65/32\",\r\n \"52.229.218.221/32\",\r\n \"52.229.225.6/32\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"2603:1040:207::780/121\",\r\n
+ \ \"2603:1040:207:1::280/123\",\r\n \"2603:1040:207:1::300/121\",\r\n
+ \ \"2603:1040:207:402::500/121\",\r\n \"2a01:111:f100:6000::4134:a6cf/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.82.100.176/32\",\r\n
+ \ \"13.82.184.151/32\",\r\n \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n
+ \ \"13.90.249.229/32\",\r\n \"13.90.251.123/32\",\r\n \"13.92.40.198/32\",\r\n
+ \ \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n \"13.92.179.52/32\",\r\n
+ \ \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n \"13.92.254.218/32\",\r\n
+ \ \"13.92.255.146/32\",\r\n \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n
+ \ \"20.42.73.128/25\",\r\n \"20.49.109.46/31\",\r\n \"20.49.109.80/28\",\r\n
+ \ \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n \"20.62.132.0/25\",\r\n
+ \ \"23.96.28.38/32\",\r\n \"40.71.12.224/28\",\r\n \"40.71.12.240/30\",\r\n
+ \ \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n \"40.71.14.112/30\",\r\n
+ \ \"40.71.183.225/32\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.79.154.80/29\",\r\n
+ \ \"40.79.156.32/29\",\r\n \"40.85.180.90/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.112.49.101/32\",\r\n \"40.117.80.207/32\",\r\n \"40.117.95.162/32\",\r\n
+ \ \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n \"40.117.197.224/32\",\r\n
+ \ \"40.121.57.2/32\",\r\n \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n
+ \ \"40.121.163.228/32\",\r\n \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n
+ \ \"52.150.36.187/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n \"52.224.162.220/32\",\r\n
+ \ \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n \"104.41.152.101/32\",\r\n
+ \ \"104.41.157.59/32\",\r\n \"104.45.136.42/32\",\r\n \"168.62.169.17/32\",\r\n
+ \ \"2603:1030:210::60/123\",\r\n \"2603:1030:210::1c0/122\",\r\n
+ \ \"2603:1030:210::300/123\",\r\n \"2603:1030:210::360/123\",\r\n
+ \ \"2603:1030:210::500/121\",\r\n \"2603:1030:210:1::280/122\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2\",\r\n \"id\":
+ \"AzureMonitor.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.68.31.237/32\",\r\n
+ \ \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n \"13.68.109.212/32\",\r\n
+ \ \"13.68.111.247/32\",\r\n \"20.41.49.208/32\",\r\n \"20.44.16.0/29\",\r\n
+ \ \"20.44.17.0/29\",\r\n \"20.44.73.196/32\",\r\n \"20.49.99.44/31\",\r\n
+ \ \"20.49.99.64/28\",\r\n \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n
+ \ \"40.70.23.205/32\",\r\n \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n
+ \ \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n \"52.167.221.184/32\",\r\n
+ \ \"52.177.223.60/32\",\r\n \"52.179.192.178/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"104.46.123.164/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"137.116.82.175/32\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.51.17.64/27\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.75.34.40/29\",\r\n \"40.75.35.64/29\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceCentral\",\r\n \"id\":
+ \"AzureMonitor.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.40.137.91/32\",\r\n
+ \ \"20.40.140.212/32\",\r\n \"20.43.40.68/31\",\r\n \"20.43.41.178/31\",\r\n
+ \ \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n \"20.43.44.224/28\",\r\n
+ \ \"20.188.36.28/32\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.89.153.171/32\",\r\n \"40.89.189.61/32\",\r\n
+ \ \"2603:1020:805::60/123\",\r\n \"2603:1020:805::1c0/122\",\r\n
+ \ \"2603:1020:805::300/123\",\r\n \"2603:1020:805::360/123\",\r\n
+ \ \"2603:1020:805::500/121\",\r\n \"2603:1020:805:1::280/122\",\r\n
+ \ \"2603:1020:805:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceSouth\",\r\n \"id\": \"AzureMonitor.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.8/29\",\r\n \"40.79.179.16/28\",\r\n \"2603:1020:905::780/121\",\r\n
+ \ \"2603:1020:905:1::280/123\",\r\n \"2603:1020:905:1::300/121\",\r\n
+ \ \"2603:1020:905:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyNorth\",\r\n \"id\": \"AzureMonitor.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.64/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyWestCentral\",\r\n \"id\":
+ \"AzureMonitor.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.32/27\",\r\n
+ \ \"51.116.149.0/27\",\r\n \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n
+ \ \"51.116.245.96/28\",\r\n \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n
+ \ \"2603:1020:c01:2::b/128\",\r\n \"2603:1020:c01:2::e/128\",\r\n
+ \ \"2603:1020:c04::60/123\",\r\n \"2603:1020:c04::1c0/122\",\r\n
+ \ \"2603:1020:c04::300/123\",\r\n \"2603:1020:c04::360/123\",\r\n
+ \ \"2603:1020:c04::500/121\",\r\n \"2603:1020:c04:1::280/122\",\r\n
+ \ \"2603:1020:c04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.JapanEast\",\r\n \"id\": \"AzureMonitor.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.26.213/32\",\r\n \"13.78.10.58/32\",\r\n \"13.78.13.189/32\",\r\n
+ \ \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n \"13.78.109.112/29\",\r\n
+ \ \"13.78.111.192/32\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.191.165.64/27\",\r\n
+ \ \"23.102.66.132/32\",\r\n \"23.102.77.48/32\",\r\n \"40.79.187.8/29\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n
+ \ \"52.155.118.97/32\",\r\n \"52.156.40.142/32\",\r\n \"52.185.132.101/32\",\r\n
+ \ \"52.185.132.170/32\",\r\n \"138.91.9.98/32\",\r\n \"2603:1040:407::60/123\",\r\n
+ \ \"2603:1040:407::1c0/122\",\r\n \"2603:1040:407::300/123\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:1::280/122\",\r\n \"2603:1040:407:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.JapanWest\",\r\n
+ \ \"id\": \"AzureMonitor.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.189.225.128/27\",\r\n
+ \ \"40.74.101.32/28\",\r\n \"40.74.101.200/29\",\r\n \"40.80.180.160/27\",\r\n
+ \ \"2603:1040:606::780/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.KoreaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.68/31\",\r\n \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n
+ \ \"20.41.69.16/28\",\r\n \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n
+ \ \"20.44.26.152/29\",\r\n \"20.44.26.248/29\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"52.141.22.149/32\",\r\n
+ \ \"52.141.22.239/32\",\r\n \"52.231.18.240/28\",\r\n \"52.231.28.204/32\",\r\n
+ \ \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n \"52.231.67.208/32\",\r\n
+ \ \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n \"52.231.111.52/32\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.KoreaSouth\",\r\n \"id\": \"AzureMonitor.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n
+ \ \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n
+ \ \"20.49.114.48/31\",\r\n \"20.135.13.192/26\",\r\n \"23.96.245.125/32\",\r\n
+ \ \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n \"23.100.228.32/32\",\r\n
+ \ \"40.80.191.224/28\",\r\n \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n
+ \ \"52.162.110.168/29\",\r\n \"52.162.214.75/32\",\r\n \"52.237.157.70/32\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"2603:1030:608::780/121\",\r\n
+ \ \"2603:1030:608:1::280/123\",\r\n \"2603:1030:608:1::300/121\",\r\n
+ \ \"2603:1030:608:402::500/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorthEurope\",\r\n \"id\":
+ \"AzureMonitor.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n \"20.38.80.68/31\",\r\n
+ \ \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n \"20.50.68.120/30\",\r\n
+ \ \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n \"23.102.44.211/32\",\r\n
+ \ \"23.102.45.216/32\",\r\n \"40.69.81.159/32\",\r\n \"40.69.194.158/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.127.144.141/32\",\r\n
+ \ \"52.138.222.110/32\",\r\n \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n
+ \ \"52.146.133.32/27\",\r\n \"52.155.162.238/32\",\r\n \"52.164.120.183/32\",\r\n
+ \ \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n \"52.169.4.236/32\",\r\n
+ \ \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n \"52.169.64.244/32\",\r\n
+ \ \"104.41.224.134/32\",\r\n \"137.116.226.81/32\",\r\n \"2603:1020:5::60/123\",\r\n
+ \ \"2603:1020:5::1c0/122\",\r\n \"2603:1020:5::300/123\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:1::280/122\",\r\n \"2603:1020:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:a001::4134:e463/128\",\r\n \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorwayEast\",\r\n \"id\":
+ \"AzureMonitor.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.232.34/31\",\r\n
+ \ \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n \"51.120.235.240/28\",\r\n
+ \ \"2603:1020:e04::60/123\",\r\n \"2603:1020:e04::1c0/122\",\r\n
+ \ \"2603:1020:e04::300/123\",\r\n \"2603:1020:e04::360/123\",\r\n
+ \ \"2603:1020:e04::500/121\",\r\n \"2603:1020:e04:1::280/122\",\r\n
+ \ \"2603:1020:e04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.NorwayWest\",\r\n \"id\": \"AzureMonitor.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n
+ \ \"51.120.219.208/28\",\r\n \"2603:1020:f04::780/121\",\r\n
+ \ \"2603:1020:f04:1::280/123\",\r\n \"2603:1020:f04:1::300/121\",\r\n
+ \ \"2603:1020:f04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureMonitor.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"102.133.122.152/29\",\r\n
+ \ \"102.133.123.240/29\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n \"102.133.162.233/32\",\r\n
+ \ \"102.133.216.68/31\",\r\n \"102.133.216.106/31\",\r\n
+ \ \"102.133.218.144/28\",\r\n \"102.133.218.244/30\",\r\n
+ \ \"102.133.219.128/28\",\r\n \"102.133.221.160/27\",\r\n
+ \ \"102.133.250.152/29\",\r\n \"102.133.251.80/29\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureMonitor.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n
+ \ \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n \"2603:1000:4::780/121\",\r\n
+ \ \"2603:1000:4:1::280/123\",\r\n \"2603:1000:4:1::300/121\",\r\n
+ \ \"2603:1000:4:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthCentralUS\",\r\n \"id\":
+ \"AzureMonitor.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.65.96.175/32\",\r\n
+ \ \"13.65.206.67/32\",\r\n \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n
+ \ \"13.66.37.172/32\",\r\n \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n
+ \ \"13.84.149.186/32\",\r\n \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n
+ \ \"13.84.225.10/32\",\r\n \"13.85.70.142/32\",\r\n \"20.45.122.152/29\",\r\n
+ \ \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n \"20.45.125.224/28\",\r\n
+ \ \"20.49.91.32/28\",\r\n \"20.49.93.192/26\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.102.181.197/32\",\r\n \"40.74.249.98/32\",\r\n
+ \ \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n \"40.84.189.107/32\",\r\n
+ \ \"40.84.192.116/32\",\r\n \"40.119.4.128/32\",\r\n \"40.119.8.72/31\",\r\n
+ \ \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"104.44.140.84/32\",\r\n \"104.214.70.219/32\",\r\n \"104.214.104.109/32\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"157.55.177.6/32\",\r\n \"2603:1030:800:5::bfee:a418/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a429/128\",\r\n \"2603:1030:800:5::bfee:a42a/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a435/128\",\r\n \"2603:1030:807::60/123\",\r\n
+ \ \"2603:1030:807::1c0/122\",\r\n \"2603:1030:807::300/123\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:1::280/122\",\r\n \"2603:1030:807:402::500/121\",\r\n
+ \ \"2a01:111:f100:4002::9d37:c0bd/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SoutheastAsia\",\r\n \"id\":
+ \"AzureMonitor.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.67.9.192/28\",\r\n
+ \ \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n \"13.67.15.0/32\",\r\n
+ \ \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n \"13.76.85.243/32\",\r\n
+ \ \"13.76.87.86/32\",\r\n \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n
+ \ \"20.44.192.217/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"40.78.234.56/29\",\r\n \"40.78.234.144/28\",\r\n \"52.163.94.131/32\",\r\n
+ \ \"52.163.122.20/32\",\r\n \"111.221.88.173/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"138.91.32.98/32\",\r\n \"138.91.37.93/32\",\r\n
+ \ \"168.63.174.169/32\",\r\n \"168.63.242.221/32\",\r\n \"207.46.224.101/32\",\r\n
+ \ \"207.46.236.191/32\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:7000::6fdd:5343/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SouthIndia\",\r\n \"id\":
+ \"AzureMonitor.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.41.208.32/27\",\r\n
+ \ \"40.78.195.16/28\",\r\n \"40.78.196.48/29\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureMonitor.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.242.0/27\",\r\n \"2603:1020:a04::60/123\",\r\n
+ \ \"2603:1020:a04::1c0/122\",\r\n \"2603:1020:a04::300/123\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:1::280/122\",\r\n \"2603:1020:a04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureMonitor.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n
+ \ \"51.107.148.0/28\",\r\n \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n
+ \ \"51.107.156.48/29\",\r\n \"51.107.192.160/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"2603:1020:b04::780/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAECentral\",\r\n
+ \ \"id\": \"AzureMonitor.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.71.0/27\",\r\n \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"2603:1040:b00:2::b/128\",\r\n
+ \ \"2603:1040:b04::780/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAENorth\",\r\n
+ \ \"id\": \"AzureMonitor.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.0/27\",\r\n
+ \ \"20.38.143.44/30\",\r\n \"20.38.152.32/27\",\r\n \"40.120.75.32/28\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.UKSouth\",\r\n \"id\": \"AzureMonitor.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.140.6.23/32\",\r\n \"51.140.54.208/32\",\r\n
+ \ \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n \"51.140.148.48/28\",\r\n
+ \ \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n \"51.140.163.207/32\",\r\n
+ \ \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n \"51.143.165.22/32\",\r\n
+ \ \"51.143.209.96/27\",\r\n \"51.145.44.242/32\",\r\n \"2603:1020:705::60/123\",\r\n
+ \ \"2603:1020:705::1c0/122\",\r\n \"2603:1020:705::300/123\",\r\n
+ \ \"2603:1020:705::360/123\",\r\n \"2603:1020:705::500/121\",\r\n
+ \ \"2603:1020:705:1::280/122\",\r\n \"2603:1020:705:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UKWest\",\r\n
+ \ \"id\": \"AzureMonitor.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.58.66.96/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.211.160/28\",\r\n
+ \ \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n \"2603:1020:605::780/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.WestCentralUS\",\r\n \"id\":
+ \"AzureMonitor.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n
+ \ \"52.150.154.24/29\",\r\n \"52.150.154.32/28\",\r\n \"52.161.8.76/32\",\r\n
+ \ \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestEurope\",\r\n
+ \ \"id\": \"AzureMonitor.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.51.175/32\",\r\n \"13.69.51.218/32\",\r\n
+ \ \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n \"13.69.67.60/30\",\r\n
+ \ \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n \"13.69.106.208/28\",\r\n
+ \ \"13.69.109.224/27\",\r\n \"13.80.134.255/32\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"23.101.69.223/32\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.74.24.68/31\",\r\n \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"51.105.248.23/32\",\r\n \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.232.35.33/32\",\r\n
+ \ \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n \"52.236.186.88/29\",\r\n
+ \ \"52.236.186.208/28\",\r\n \"104.40.222.36/32\",\r\n \"137.117.144.33/32\",\r\n
+ \ \"2603:1020:206::60/123\",\r\n \"2603:1020:206::1c0/122\",\r\n
+ \ \"2603:1020:206::300/123\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:1::280/122\",\r\n
+ \ \"2603:1020:206:402::500/121\",\r\n \"2a01:111:f100:9001::1761:91e4/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:958a/128\",\r\n \"2a01:111:f100:9001::1761:9696/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestIndia\",\r\n
+ \ \"id\": \"AzureMonitor.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"52.136.53.96/27\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"2603:1040:806::780/121\",\r\n \"2603:1040:806:1::280/123\",\r\n
+ \ \"2603:1040:806:1::300/121\",\r\n \"2603:1040:806:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestUS\",\r\n
+ \ \"id\": \"AzureMonitor.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.224/28\",\r\n
+ \ \"13.86.218.248/29\",\r\n \"13.86.223.128/26\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"20.49.120.64/28\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.189.172.0/25\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.118.129.58/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.122.208/32\",\r\n \"104.42.40.28/32\",\r\n \"104.45.230.69/32\",\r\n
+ \ \"104.45.232.72/32\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.WestUS2\",\r\n \"id\":
+ \"AzureMonitor.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.77.150.166/32\",\r\n \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.51.9.0/26\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"40.64.132.128/28\",\r\n \"40.64.132.240/28\",\r\n
+ \ \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n \"40.64.134.138/32\",\r\n
+ \ \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n \"40.78.253.192/26\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"52.151.11.176/32\",\r\n \"52.175.198.74/32\",\r\n
+ \ \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n \"52.183.41.109/32\",\r\n
+ \ \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n \"52.183.95.86/32\",\r\n
+ \ \"52.183.127.155/32\",\r\n \"52.191.170.253/32\",\r\n \"52.229.25.130/32\",\r\n
+ \ \"52.229.37.75/32\",\r\n \"52.247.202.90/32\",\r\n \"2603:1030:c02:2::4e1/128\",\r\n
+ \ \"2603:1030:c06:1::280/122\",\r\n \"2603:1030:c06:2::80/121\",\r\n
+ \ \"2603:1030:c06:2::240/123\",\r\n \"2603:1030:c06:2::300/121\",\r\n
+ \ \"2603:1030:c06:400::d00/121\",\r\n \"2603:1030:d00::1d/128\",\r\n
+ \ \"2603:1030:d00::48/128\",\r\n \"2603:1030:d00::5a/128\",\r\n
+ \ \"2603:1030:d00::82/128\",\r\n \"2603:1030:d00::84/128\",\r\n
+ \ \"2603:1030:d00::9a/128\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets\",\r\n \"id\": \"AzureOpenDatasets\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.32/28\",\r\n \"20.36.120.192/28\",\r\n
+ \ \"20.37.64.192/28\",\r\n \"20.37.156.224/28\",\r\n \"20.37.195.32/28\",\r\n
+ \ \"20.37.224.192/28\",\r\n \"20.38.84.112/28\",\r\n \"20.38.136.192/28\",\r\n
+ \ \"20.39.11.32/28\",\r\n \"20.41.4.192/28\",\r\n \"20.41.65.160/28\",\r\n
+ \ \"20.41.193.128/28\",\r\n \"20.42.4.224/28\",\r\n \"20.42.131.0/28\",\r\n
+ \ \"20.42.227.0/28\",\r\n \"20.43.41.160/28\",\r\n \"20.43.65.160/28\",\r\n
+ \ \"20.43.130.112/28\",\r\n \"20.45.112.192/28\",\r\n \"20.45.192.192/28\",\r\n
+ \ \"20.150.160.192/28\",\r\n \"20.189.106.208/28\",\r\n \"20.192.225.128/28\",\r\n
+ \ \"40.67.48.192/28\",\r\n \"40.74.30.112/28\",\r\n \"40.80.57.128/28\",\r\n
+ \ \"40.80.169.128/28\",\r\n \"40.80.188.32/28\",\r\n \"40.82.253.80/28\",\r\n
+ \ \"40.89.17.128/28\",\r\n \"51.12.41.32/28\",\r\n \"51.12.193.32/28\",\r\n
+ \ \"51.104.25.160/28\",\r\n \"51.105.80.192/28\",\r\n \"51.105.88.192/28\",\r\n
+ \ \"51.107.48.192/28\",\r\n \"51.107.144.192/28\",\r\n \"51.116.48.112/28\",\r\n
+ \ \"51.116.144.112/28\",\r\n \"51.120.40.192/28\",\r\n \"51.120.224.192/28\",\r\n
+ \ \"51.137.161.144/28\",\r\n \"51.143.192.192/28\",\r\n \"52.136.48.192/28\",\r\n
+ \ \"52.140.105.128/28\",\r\n \"52.150.139.80/28\",\r\n \"52.228.81.144/28\",\r\n
+ \ \"102.133.56.112/28\",\r\n \"102.133.216.112/28\",\r\n
+ \ \"191.235.225.160/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.AustraliaEast\",\r\n \"id\": \"AzureOpenDatasets.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.37.195.32/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.FranceSouth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.105.88.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.GermanyNorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.112/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAECentral\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.64.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAENorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.136.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UKWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.161.144/28\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets.WestEurope\",\r\n \"id\":
+ \"AzureOpenDatasets.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.30.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.WestUS2\",\r\n \"id\": \"AzureOpenDatasets.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.42.131.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal\",\r\n
+ \ \"id\": \"AzurePortal\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.35.35/32\",\r\n \"13.67.35.77/32\",\r\n \"13.68.130.251/32\",\r\n
+ \ \"13.68.235.98/32\",\r\n \"13.69.112.176/28\",\r\n \"13.69.126.92/32\",\r\n
+ \ \"13.71.190.228/32\",\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"13.77.1.236/32\",\r\n \"13.77.55.208/28\",\r\n
+ \ \"13.77.202.2/32\",\r\n \"13.78.49.187/32\",\r\n \"13.78.132.155/32\",\r\n
+ \ \"13.78.230.142/32\",\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"13.90.156.71/32\",\r\n \"13.92.138.76/32\",\r\n \"20.36.121.128/27\",\r\n
+ \ \"20.36.122.56/30\",\r\n \"20.36.125.104/29\",\r\n \"20.37.65.128/27\",\r\n
+ \ \"20.37.66.56/30\",\r\n \"20.37.70.96/29\",\r\n \"20.37.195.224/27\",\r\n
+ \ \"20.37.196.252/30\",\r\n \"20.37.198.64/27\",\r\n \"20.37.225.128/27\",\r\n
+ \ \"20.37.226.56/30\",\r\n \"20.37.229.152/29\",\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.38.137.160/27\",\r\n \"20.38.138.60/30\",\r\n
+ \ \"20.38.142.88/29\",\r\n \"20.38.149.208/28\",\r\n \"20.39.12.32/27\",\r\n
+ \ \"20.39.12.232/30\",\r\n \"20.40.200.0/27\",\r\n \"20.40.200.160/30\",\r\n
+ \ \"20.40.224.226/31\",\r\n \"20.40.225.32/29\",\r\n \"20.41.5.192/27\",\r\n
+ \ \"20.41.65.224/27\",\r\n \"20.41.67.88/30\",\r\n \"20.41.193.224/27\",\r\n
+ \ \"20.41.197.16/30\",\r\n \"20.42.6.192/27\",\r\n \"20.42.227.192/27\",\r\n
+ \ \"20.42.228.220/30\",\r\n \"20.42.228.224/27\",\r\n \"20.42.230.80/28\",\r\n
+ \ \"20.43.42.64/27\",\r\n \"20.43.43.164/30\",\r\n \"20.43.46.248/29\",\r\n
+ \ \"20.43.66.64/27\",\r\n \"20.43.67.92/30\",\r\n \"20.43.67.96/27\",\r\n
+ \ \"20.43.70.64/28\",\r\n \"20.43.123.160/28\",\r\n \"20.43.132.32/27\",\r\n
+ \ \"20.44.19.32/28\",\r\n \"20.45.112.124/30\",\r\n \"20.45.113.128/27\",\r\n
+ \ \"20.45.116.64/29\",\r\n \"20.45.125.240/28\",\r\n \"20.45.195.160/27\",\r\n
+ \ \"20.45.197.192/27\",\r\n \"20.45.197.228/30\",\r\n \"20.46.10.40/29\",\r\n
+ \ \"20.48.193.48/29\",\r\n \"20.49.99.16/28\",\r\n \"20.49.99.32/30\",\r\n
+ \ \"20.49.103.96/29\",\r\n \"20.49.109.36/30\",\r\n \"20.49.109.44/31\",\r\n
+ \ \"20.49.109.48/28\",\r\n \"20.49.115.184/29\",\r\n \"20.49.120.0/27\",\r\n
+ \ \"20.49.120.36/30\",\r\n \"20.49.126.156/30\",\r\n \"20.49.127.224/28\",\r\n
+ \ \"20.50.1.32/27\",\r\n \"20.50.1.160/27\",\r\n \"20.50.1.200/30\",\r\n
+ \ \"20.50.1.208/28\",\r\n \"20.50.65.72/30\",\r\n \"20.51.16.120/29\",\r\n
+ \ \"20.53.44.4/30\",\r\n \"20.53.44.64/29\",\r\n \"20.61.98.128/29\",\r\n
+ \ \"20.62.128.240/29\",\r\n \"20.72.20.96/27\",\r\n \"20.150.161.192/27\",\r\n
+ \ \"20.150.165.144/30\",\r\n \"20.150.166.160/29\",\r\n \"20.187.197.0/29\",\r\n
+ \ \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n \"20.189.109.160/27\",\r\n
+ \ \"20.189.224.208/29\",\r\n \"20.191.161.80/29\",\r\n \"20.192.161.192/27\",\r\n
+ \ \"20.192.164.180/30\",\r\n \"20.192.166.160/29\",\r\n \"20.192.228.128/27\",\r\n
+ \ \"20.192.230.0/30\",\r\n \"20.192.230.112/29\",\r\n \"20.194.72.56/29\",\r\n
+ \ \"23.98.104.80/28\",\r\n \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n
+ \ \"23.98.108.44/31\",\r\n \"23.98.108.168/29\",\r\n \"23.102.65.134/32\",\r\n
+ \ \"40.64.128.128/27\",\r\n \"40.64.132.88/30\",\r\n \"40.64.132.96/28\",\r\n
+ \ \"40.64.135.88/29\",\r\n \"40.65.114.234/32\",\r\n \"40.67.48.124/30\",\r\n
+ \ \"40.67.49.128/27\",\r\n \"40.67.50.192/27\",\r\n \"40.67.52.88/29\",\r\n
+ \ \"40.67.121.128/28\",\r\n \"40.71.15.144/28\",\r\n \"40.78.239.48/28\",\r\n
+ \ \"40.78.245.208/28\",\r\n \"40.79.189.96/28\",\r\n \"40.80.58.128/27\",\r\n
+ \ \"40.80.59.28/30\",\r\n \"40.80.59.32/27\",\r\n \"40.80.169.224/27\",\r\n
+ \ \"40.80.172.16/30\",\r\n \"40.80.173.192/29\",\r\n \"40.80.190.160/27\",\r\n
+ \ \"40.80.191.200/30\",\r\n \"40.82.253.224/27\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.89.18.160/27\",\r\n \"40.89.20.132/30\",\r\n
+ \ \"40.89.23.232/29\",\r\n \"40.113.117.57/32\",\r\n \"40.114.78.132/32\",\r\n
+ \ \"40.114.236.251/32\",\r\n \"40.117.86.243/32\",\r\n \"40.117.237.78/32\",\r\n
+ \ \"40.119.9.236/30\",\r\n \"51.12.41.20/30\",\r\n \"51.12.41.160/27\",\r\n
+ \ \"51.12.43.128/29\",\r\n \"51.12.193.20/30\",\r\n \"51.12.193.160/27\",\r\n
+ \ \"51.12.194.104/29\",\r\n \"51.13.136.8/29\",\r\n \"51.104.27.96/27\",\r\n
+ \ \"51.104.28.220/30\",\r\n \"51.104.28.224/28\",\r\n \"51.105.80.124/30\",\r\n
+ \ \"51.105.81.128/27\",\r\n \"51.105.89.160/27\",\r\n \"51.105.90.152/30\",\r\n
+ \ \"51.107.49.160/27\",\r\n \"51.107.50.60/30\",\r\n \"51.107.53.240/29\",\r\n
+ \ \"51.107.145.128/27\",\r\n \"51.107.146.56/30\",\r\n \"51.107.149.248/29\",\r\n
+ \ \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n \"51.116.51.160/29\",\r\n
+ \ \"51.116.144.192/27\",\r\n \"51.116.145.140/30\",\r\n \"51.116.148.104/29\",\r\n
+ \ \"51.120.41.160/27\",\r\n \"51.120.42.60/30\",\r\n \"51.120.225.128/27\",\r\n
+ \ \"51.120.226.56/30\",\r\n \"51.120.232.16/29\",\r\n \"51.137.162.160/27\",\r\n
+ \ \"51.137.164.80/30\",\r\n \"51.137.167.152/29\",\r\n \"51.140.69.25/32\",\r\n
+ \ \"51.140.138.84/32\",\r\n \"51.140.149.64/28\",\r\n \"51.143.192.124/30\",\r\n
+ \ \"51.143.193.128/27\",\r\n \"51.143.208.192/29\",\r\n \"51.145.3.27/32\",\r\n
+ \ \"51.145.21.195/32\",\r\n \"52.136.49.160/27\",\r\n \"52.136.51.72/30\",\r\n
+ \ \"52.136.52.232/29\",\r\n \"52.136.184.64/29\",\r\n \"52.140.105.224/27\",\r\n
+ \ \"52.140.107.112/28\",\r\n \"52.140.108.64/30\",\r\n \"52.140.111.96/29\",\r\n
+ \ \"52.146.132.80/29\",\r\n \"52.150.139.224/27\",\r\n \"52.150.140.216/30\",\r\n
+ \ \"52.150.152.16/28\",\r\n \"52.150.152.224/27\",\r\n \"52.150.156.232/29\",\r\n
+ \ \"52.161.101.86/32\",\r\n \"52.163.207.80/32\",\r\n \"52.172.112.152/29\",\r\n
+ \ \"52.172.181.227/32\",\r\n \"52.172.190.71/32\",\r\n \"52.172.191.4/32\",\r\n
+ \ \"52.172.215.87/32\",\r\n \"52.228.24.159/32\",\r\n \"52.228.83.160/27\",\r\n
+ \ \"52.228.84.84/30\",\r\n \"52.228.84.96/28\",\r\n \"52.233.66.46/32\",\r\n
+ \ \"52.243.76.246/32\",\r\n \"102.133.56.160/27\",\r\n \"102.133.58.192/30\",\r\n
+ \ \"102.133.61.176/29\",\r\n \"102.133.217.192/27\",\r\n
+ \ \"102.133.218.56/30\",\r\n \"102.133.221.0/29\",\r\n \"104.41.216.228/32\",\r\n
+ \ \"104.42.195.92/32\",\r\n \"104.46.178.96/29\",\r\n \"104.211.89.213/32\",\r\n
+ \ \"104.211.101.116/32\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"104.215.146.128/32\",\r\n
+ \ \"137.116.247.179/32\",\r\n \"191.233.10.96/27\",\r\n \"191.233.15.0/29\",\r\n
+ \ \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n \"191.234.139.144/29\",\r\n
+ \ \"191.235.227.160/27\",\r\n \"213.199.128.226/32\",\r\n
+ \ \"2603:1000:4::700/121\",\r\n \"2603:1000:104::200/121\",\r\n
+ \ \"2603:1000:104::400/121\",\r\n \"2603:1000:104:1::680/121\",\r\n
+ \ \"2603:1010:6::100/121\",\r\n \"2603:1010:6:1::680/121\",\r\n
+ \ \"2603:1010:101::700/121\",\r\n \"2603:1010:304::700/121\",\r\n
+ \ \"2603:1010:404::700/121\",\r\n \"2603:1020:5::100/121\",\r\n
+ \ \"2603:1020:5:1::680/121\",\r\n \"2603:1020:206::100/121\",\r\n
+ \ \"2603:1020:206:1::680/121\",\r\n \"2603:1020:305::700/121\",\r\n
+ \ \"2603:1020:405::700/121\",\r\n \"2603:1020:605::700/121\",\r\n
+ \ \"2603:1020:705::100/121\",\r\n \"2603:1020:705:1::680/121\",\r\n
+ \ \"2603:1020:805::100/121\",\r\n \"2603:1020:805:1::680/121\",\r\n
+ \ \"2603:1020:905::700/121\",\r\n \"2603:1020:a04::100/121\",\r\n
+ \ \"2603:1020:a04:1::680/121\",\r\n \"2603:1020:b04::700/121\",\r\n
+ \ \"2603:1020:c04::100/121\",\r\n \"2603:1020:c04:1::680/121\",\r\n
+ \ \"2603:1020:d04::700/121\",\r\n \"2603:1020:e04::100/121\",\r\n
+ \ \"2603:1020:e04:1::680/121\",\r\n \"2603:1020:f04::700/121\",\r\n
+ \ \"2603:1020:1004::680/121\",\r\n \"2603:1020:1004:1::100/121\",\r\n
+ \ \"2603:1020:1104::780/121\",\r\n \"2603:1030:f:1::700/121\",\r\n
+ \ \"2603:1030:10::100/121\",\r\n \"2603:1030:10:1::680/121\",\r\n
+ \ \"2603:1030:104::100/121\",\r\n \"2603:1030:104:1::680/121\",\r\n
+ \ \"2603:1030:107:1::/121\",\r\n \"2603:1030:210::100/121\",\r\n
+ \ \"2603:1030:210:1::680/121\",\r\n \"2603:1030:40b:1::680/121\",\r\n
+ \ \"2603:1030:40c::100/121\",\r\n \"2603:1030:40c:1::680/121\",\r\n
+ \ \"2603:1030:504::100/121\",\r\n \"2603:1030:504:1::680/121\",\r\n
+ \ \"2603:1030:608::700/121\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\",\r\n \"2603:1030:a07::700/121\",\r\n
+ \ \"2603:1030:b04::700/121\",\r\n \"2603:1030:c06:1::680/121\",\r\n
+ \ \"2603:1030:f05::100/121\",\r\n \"2603:1030:f05:1::680/121\",\r\n
+ \ \"2603:1030:1005::700/121\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\",\r\n \"2603:1040:207::700/121\",\r\n
+ \ \"2603:1040:407::100/121\",\r\n \"2603:1040:407:1::680/121\",\r\n
+ \ \"2603:1040:606::700/121\",\r\n \"2603:1040:806::700/121\",\r\n
+ \ \"2603:1040:904::100/121\",\r\n \"2603:1040:904:1::680/121\",\r\n
+ \ \"2603:1040:a06::200/121\",\r\n \"2603:1040:a06:1::680/121\",\r\n
+ \ \"2603:1040:b04::700/121\",\r\n \"2603:1040:c06::700/121\",\r\n
+ \ \"2603:1040:d04::680/121\",\r\n \"2603:1040:d04:1::100/121\",\r\n
+ \ \"2603:1040:f05::100/121\",\r\n \"2603:1040:f05:1::680/121\",\r\n
+ \ \"2603:1040:1104::780/121\",\r\n \"2603:1050:6::100/121\",\r\n
+ \ \"2603:1050:6:1::680/121\",\r\n \"2603:1050:403::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.AustraliaCentral\",\r\n
+ \ \"id\": \"AzurePortal.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.225.128/27\",\r\n \"20.37.226.56/30\",\r\n
+ \ \"20.37.229.152/29\",\r\n \"2603:1010:304::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.BrazilSouth\",\r\n
+ \ \"id\": \"AzurePortal.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n
+ \ \"191.234.139.144/29\",\r\n \"191.235.227.160/27\",\r\n
+ \ \"2603:1050:6::100/121\",\r\n \"2603:1050:6:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastAsia\",\r\n
+ \ \"id\": \"AzurePortal.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"20.187.197.0/29\",\r\n \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n
+ \ \"20.189.109.160/27\",\r\n \"2603:1040:207::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastUS2\",\r\n
+ \ \"id\": \"AzurePortal.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.192/27\",\r\n \"20.44.19.32/28\",\r\n \"20.49.99.16/28\",\r\n
+ \ \"20.49.99.32/30\",\r\n \"20.49.103.96/29\",\r\n \"2603:1030:40c::100/121\",\r\n
+ \ \"2603:1030:40c:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.FranceSouth\",\r\n \"id\": \"AzurePortal.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.160/27\",\r\n
+ \ \"51.105.90.152/30\",\r\n \"52.136.184.64/29\",\r\n \"2603:1020:905::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.GermanyNorth\",\r\n
+ \ \"id\": \"AzurePortal.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n
+ \ \"51.116.51.160/29\",\r\n \"2603:1020:d04::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.KoreaSouth\",\r\n
+ \ \"id\": \"AzurePortal.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.169.224/27\",\r\n \"40.80.172.16/30\",\r\n
+ \ \"40.80.173.192/29\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzurePortal.NorthEurope\",\r\n \"id\": \"AzurePortal.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.50.65.72/30\",\r\n \"52.146.132.80/29\",\r\n
+ \ \"104.41.216.228/32\",\r\n \"137.116.247.179/32\",\r\n
+ \ \"2603:1020:5::100/121\",\r\n \"2603:1020:5:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.SouthCentralUS\",\r\n
+ \ \"id\": \"AzurePortal.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"20.45.125.240/28\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.119.9.236/30\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.SoutheastAsia\",\r\n \"id\": \"AzurePortal.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"13.67.35.35/32\",\r\n
+ \ \"13.67.35.77/32\",\r\n \"20.43.132.32/27\",\r\n \"23.98.104.80/28\",\r\n
+ \ \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n \"23.98.108.44/31\",\r\n
+ \ \"23.98.108.168/29\",\r\n \"40.78.239.48/28\",\r\n \"52.163.207.80/32\",\r\n
+ \ \"104.215.146.128/32\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager\",\r\n \"id\": \"AzureResourceManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.176/28\",\r\n \"13.67.18.0/23\",\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"13.69.229.224/28\",\r\n \"13.69.234.0/23\",\r\n
+ \ \"13.70.74.64/28\",\r\n \"13.70.76.0/23\",\r\n \"13.71.173.192/28\",\r\n
+ \ \"13.71.196.80/28\",\r\n \"13.71.198.0/24\",\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"13.75.39.16/28\",\r\n \"13.77.53.32/28\",\r\n
+ \ \"13.77.55.0/25\",\r\n \"13.78.109.96/28\",\r\n \"13.86.219.80/28\",\r\n
+ \ \"13.86.222.0/24\",\r\n \"13.87.57.240/28\",\r\n \"13.87.60.0/23\",\r\n
+ \ \"13.87.123.240/28\",\r\n \"13.87.126.0/24\",\r\n \"13.89.180.0/23\",\r\n
+ \ \"20.36.108.48/28\",\r\n \"20.36.110.0/23\",\r\n \"20.36.115.144/28\",\r\n
+ \ \"20.36.118.0/23\",\r\n \"20.36.126.0/23\",\r\n \"20.37.76.48/28\",\r\n
+ \ \"20.37.78.0/23\",\r\n \"20.37.230.0/23\",\r\n \"20.38.128.32/28\",\r\n
+ \ \"20.38.130.0/23\",\r\n \"20.38.150.0/23\",\r\n \"20.40.206.240/28\",\r\n
+ \ \"20.40.226.0/23\",\r\n \"20.41.70.0/23\",\r\n \"20.43.120.224/28\",\r\n
+ \ \"20.43.124.0/23\",\r\n \"20.44.3.240/28\",\r\n \"20.44.6.0/23\",\r\n
+ \ \"20.44.8.16/28\",\r\n \"20.44.16.112/28\",\r\n \"20.44.20.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"20.45.88.0/23\",\r\n \"20.45.118.0/23\",\r\n
+ \ \"20.46.8.0/23\",\r\n \"20.48.194.0/23\",\r\n \"20.49.116.0/23\",\r\n
+ \ \"20.50.68.96/28\",\r\n \"20.51.10.0/23\",\r\n \"20.51.18.0/23\",\r\n
+ \ \"20.53.42.0/23\",\r\n \"20.58.64.0/23\",\r\n \"20.61.100.0/23\",\r\n
+ \ \"20.62.56.0/23\",\r\n \"20.62.130.0/23\",\r\n \"20.65.128.0/23\",\r\n
+ \ \"20.66.0.0/23\",\r\n \"20.72.28.64/26\",\r\n \"20.88.64.64/26\",\r\n
+ \ \"20.150.225.128/26\",\r\n \"20.150.242.0/23\",\r\n \"20.187.198.0/23\",\r\n
+ \ \"20.189.168.0/24\",\r\n \"20.189.226.0/23\",\r\n \"20.191.162.0/23\",\r\n
+ \ \"20.192.32.128/26\",\r\n \"20.192.40.0/23\",\r\n \"20.192.52.0/23\",\r\n
+ \ \"20.193.196.0/23\",\r\n \"20.193.204.0/26\",\r\n \"20.195.144.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.67.54.0/23\",\r\n \"40.67.59.208/28\",\r\n
+ \ \"40.67.62.0/23\",\r\n \"40.67.120.0/24\",\r\n \"40.69.108.32/28\",\r\n
+ \ \"40.69.112.0/22\",\r\n \"40.71.13.224/28\",\r\n \"40.74.102.0/28\",\r\n
+ \ \"40.75.35.32/28\",\r\n \"40.75.38.0/23\",\r\n \"40.78.196.32/28\",\r\n
+ \ \"40.78.198.0/23\",\r\n \"40.78.203.224/28\",\r\n \"40.78.206.0/23\",\r\n
+ \ \"40.78.234.176/28\",\r\n \"40.78.254.0/23\",\r\n \"40.79.131.240/28\",\r\n
+ \ \"40.79.134.0/23\",\r\n \"40.79.158.0/23\",\r\n \"40.79.180.0/28\",\r\n
+ \ \"40.79.182.0/23\",\r\n \"40.79.198.0/23\",\r\n \"40.80.174.0/23\",\r\n
+ \ \"40.80.178.0/23\",\r\n \"40.113.178.0/28\",\r\n \"40.120.80.0/23\",\r\n
+ \ \"51.11.64.0/24\",\r\n \"51.11.96.0/24\",\r\n \"51.12.44.0/23\",\r\n
+ \ \"51.12.101.64/26\",\r\n \"51.12.196.0/23\",\r\n \"51.12.205.0/26\",\r\n
+ \ \"51.104.8.224/28\",\r\n \"51.105.78.0/23\",\r\n \"51.105.94.0/23\",\r\n
+ \ \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n \"51.107.158.0/23\",\r\n
+ \ \"51.116.52.0/23\",\r\n \"51.116.60.32/28\",\r\n \"51.116.62.0/23\",\r\n
+ \ \"51.116.150.0/23\",\r\n \"51.116.156.32/28\",\r\n \"51.116.159.0/24\",\r\n
+ \ \"51.120.46.0/23\",\r\n \"51.120.100.32/28\",\r\n \"51.120.102.0/23\",\r\n
+ \ \"51.120.220.32/28\",\r\n \"51.120.222.0/23\",\r\n \"51.120.230.0/23\",\r\n
+ \ \"51.138.208.0/23\",\r\n \"51.140.212.16/28\",\r\n \"51.140.214.0/24\",\r\n
+ \ \"51.143.210.0/23\",\r\n \"52.136.54.0/23\",\r\n \"52.138.94.0/23\",\r\n
+ \ \"52.139.104.0/23\",\r\n \"52.146.134.0/23\",\r\n \"52.147.96.0/24\",\r\n
+ \ \"52.150.158.0/23\",\r\n \"52.162.110.224/28\",\r\n \"52.172.114.0/23\",\r\n
+ \ \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n \"52.231.148.64/28\",\r\n
+ \ \"52.231.150.0/24\",\r\n \"52.240.242.0/23\",\r\n \"65.52.252.48/28\",\r\n
+ \ \"65.52.254.0/23\",\r\n \"102.133.28.16/28\",\r\n \"102.133.30.0/23\",\r\n
+ \ \"102.133.62.0/23\",\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"104.46.160.0/24\",\r\n \"104.46.161.0/25\",\r\n
+ \ \"104.46.180.0/23\",\r\n \"104.214.162.0/23\",\r\n \"168.61.138.0/23\",\r\n
+ \ \"168.61.143.192/26\",\r\n \"191.233.52.0/23\",\r\n \"191.233.205.16/28\",\r\n
+ \ \"191.234.140.0/23\",\r\n \"191.234.158.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\",\r\n \"2603:1010:6::180/122\",\r\n
+ \ \"2603:1010:6:402::280/122\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\",\r\n \"2603:1010:304::6c0/122\",\r\n
+ \ \"2603:1010:304:402::280/122\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\",\r\n \"2603:1020:5::180/122\",\r\n
+ \ \"2603:1020:5:402::280/122\",\r\n \"2603:1020:206::180/122\",\r\n
+ \ \"2603:1020:206:402::280/122\",\r\n \"2603:1020:305::6c0/122\",\r\n
+ \ \"2603:1020:305:402::280/122\",\r\n \"2603:1020:405::6c0/122\",\r\n
+ \ \"2603:1020:405:402::280/122\",\r\n \"2603:1020:605::6c0/122\",\r\n
+ \ \"2603:1020:605:402::280/122\",\r\n \"2603:1020:705::180/122\",\r\n
+ \ \"2603:1020:705:402::280/122\",\r\n \"2603:1020:805::180/122\",\r\n
+ \ \"2603:1020:805:402::280/122\",\r\n \"2603:1020:905::6c0/122\",\r\n
+ \ \"2603:1020:905:402::280/122\",\r\n \"2603:1020:a04::180/122\",\r\n
+ \ \"2603:1020:a04:402::280/122\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\",\r\n \"2603:1020:c04::180/122\",\r\n
+ \ \"2603:1020:c04:402::280/122\",\r\n \"2603:1020:d04::6c0/122\",\r\n
+ \ \"2603:1020:d04:402::280/122\",\r\n \"2603:1020:e04::180/122\",\r\n
+ \ \"2603:1020:e04:3::300/120\",\r\n \"2603:1020:e04:402::280/122\",\r\n
+ \ \"2603:1020:f04::6c0/122\",\r\n \"2603:1020:f04:402::280/122\",\r\n
+ \ \"2603:1020:1004:1::400/120\",\r\n \"2603:1020:1004:400::180/122\",\r\n
+ \ \"2603:1020:1104:1::/120\",\r\n \"2603:1020:1104:400::280/122\",\r\n
+ \ \"2603:1030:f:1::6c0/122\",\r\n \"2603:1030:f:2::700/120\",\r\n
+ \ \"2603:1030:f:400::a80/122\",\r\n \"2603:1030:10::180/122\",\r\n
+ \ \"2603:1030:10:402::280/122\",\r\n \"2603:1030:104::180/122\",\r\n
+ \ \"2603:1030:104:402::280/122\",\r\n \"2603:1030:107:1::100/120\",\r\n
+ \ \"2603:1030:107:400::200/122\",\r\n \"2603:1030:210::180/122\",\r\n
+ \ \"2603:1030:210:402::280/122\",\r\n \"2603:1030:40b:2::40/122\",\r\n
+ \ \"2603:1030:40b:400::a80/122\",\r\n \"2603:1030:40c::180/122\",\r\n
+ \ \"2603:1030:40c:402::280/122\",\r\n \"2603:1030:504::400/120\",\r\n
+ \ \"2603:1030:504:402::180/122\",\r\n \"2603:1030:608::6c0/122\",\r\n
+ \ \"2603:1030:608:402::280/122\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\",\r\n \"2603:1030:a07::6c0/122\",\r\n
+ \ \"2603:1030:a07:402::900/122\",\r\n \"2603:1030:b04::6c0/122\",\r\n
+ \ \"2603:1030:b04:402::280/122\",\r\n \"2603:1030:c06:2::40/122\",\r\n
+ \ \"2603:1030:c06:400::a80/122\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\",\r\n \"2603:1030:1005::6c0/122\",\r\n
+ \ \"2603:1030:1005:402::280/122\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\",\r\n \"2603:1040:207::6c0/122\",\r\n
+ \ \"2603:1040:207:402::280/122\",\r\n \"2603:1040:407::180/122\",\r\n
+ \ \"2603:1040:407:402::280/122\",\r\n \"2603:1040:606::6c0/122\",\r\n
+ \ \"2603:1040:606:402::280/122\",\r\n \"2603:1040:806::6c0/122\",\r\n
+ \ \"2603:1040:806:402::280/122\",\r\n \"2603:1040:904::180/122\",\r\n
+ \ \"2603:1040:904:402::280/122\",\r\n \"2603:1040:a06::280/122\",\r\n
+ \ \"2603:1040:a06:402::280/122\",\r\n \"2603:1040:b04::6c0/122\",\r\n
+ \ \"2603:1040:b04:402::280/122\",\r\n \"2603:1040:c06::6c0/122\",\r\n
+ \ \"2603:1040:c06:402::280/122\",\r\n \"2603:1040:d04:1::400/120\",\r\n
+ \ \"2603:1040:d04:400::180/122\",\r\n \"2603:1040:f05::180/122\",\r\n
+ \ \"2603:1040:f05:2::100/120\",\r\n \"2603:1040:f05:402::280/122\",\r\n
+ \ \"2603:1040:1104:1::/120\",\r\n \"2603:1040:1104:400::280/122\",\r\n
+ \ \"2603:1050:6::180/122\",\r\n \"2603:1050:6:402::280/122\",\r\n
+ \ \"2603:1050:403:1::40/122\",\r\n \"2603:1050:403:400::440/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.115.144/28\",\r\n \"20.36.118.0/23\",\r\n
+ \ \"20.36.126.0/23\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.32/28\",\r\n \"13.77.55.0/25\",\r\n \"104.46.160.0/24\",\r\n
+ \ \"104.46.161.0/25\",\r\n \"104.46.180.0/23\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.CanadaCentral\",\r\n \"id\":
+ \"AzureResourceManager.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.71.173.192/28\",\r\n
+ \ \"20.38.150.0/23\",\r\n \"20.48.194.0/23\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.KoreaCentral\",\r\n \"id\":
+ \"AzureResourceManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.70.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n
+ \ \"2603:1040:f05::180/122\",\r\n \"2603:1040:f05:2::100/120\",\r\n
+ \ \"2603:1040:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaWest\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.28.16/28\",\r\n
+ \ \"102.133.30.0/23\",\r\n \"102.133.62.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthCentralUS\",\r\n \"id\":
+ \"AzureResourceManager.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"20.65.128.0/23\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SoutheastAsia\",\r\n \"id\":
+ \"AzureResourceManager.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.67.18.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.78.234.176/28\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureResourceManager.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"2603:1020:a04::180/122\",\r\n \"2603:1020:a04:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureResourceManager.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n
+ \ \"51.107.158.0/23\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.WestEurope\",\r\n \"id\":
+ \"AzureResourceManager.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"20.61.100.0/23\",\r\n \"40.113.178.0/28\",\r\n
+ \ \"2603:1020:206::180/122\",\r\n \"2603:1020:206:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR\",\r\n
+ \ \"id\": \"AzureSignalR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.145.0/26\",\r\n \"13.67.15.64/27\",\r\n \"13.69.113.0/24\",\r\n
+ \ \"13.69.232.128/25\",\r\n \"13.70.74.224/27\",\r\n \"13.71.199.32/27\",\r\n
+ \ \"13.73.244.64/27\",\r\n \"13.74.111.0/25\",\r\n \"13.78.109.224/27\",\r\n
+ \ \"13.89.175.128/26\",\r\n \"20.38.132.96/27\",\r\n \"20.38.143.192/27\",\r\n
+ \ \"20.38.149.224/27\",\r\n \"20.40.229.0/27\",\r\n \"20.42.64.128/25\",\r\n
+ \ \"20.42.72.0/25\",\r\n \"20.44.10.128/26\",\r\n \"20.44.17.128/26\",\r\n
+ \ \"20.45.123.192/27\",\r\n \"20.46.11.96/27\",\r\n \"20.48.196.192/27\",\r\n
+ \ \"20.49.91.192/27\",\r\n \"20.49.119.96/27\",\r\n \"20.51.12.32/27\",\r\n
+ \ \"20.51.17.224/27\",\r\n \"20.53.47.32/27\",\r\n \"20.61.102.64/27\",\r\n
+ \ \"20.62.59.32/27\",\r\n \"20.62.133.64/27\",\r\n \"20.65.132.224/27\",\r\n
+ \ \"20.66.3.224/27\",\r\n \"20.69.0.192/27\",\r\n \"20.135.13.160/27\",\r\n
+ \ \"20.150.174.160/27\",\r\n \"20.150.244.160/27\",\r\n \"20.189.170.0/24\",\r\n
+ \ \"20.191.166.64/27\",\r\n \"20.192.44.64/27\",\r\n \"20.194.73.192/27\",\r\n
+ \ \"20.195.65.192/27\",\r\n \"20.195.72.192/27\",\r\n \"23.98.86.64/27\",\r\n
+ \ \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n \"40.70.148.192/26\",\r\n
+ \ \"40.71.15.0/25\",\r\n \"40.78.204.96/27\",\r\n \"40.78.238.64/26\",\r\n
+ \ \"40.78.238.128/25\",\r\n \"40.78.245.64/26\",\r\n \"40.78.253.0/26\",\r\n
+ \ \"40.79.132.160/27\",\r\n \"40.79.139.96/27\",\r\n \"40.79.148.32/27\",\r\n
+ \ \"40.79.163.96/27\",\r\n \"40.79.171.192/27\",\r\n \"40.79.189.0/27\",\r\n
+ \ \"40.79.197.0/27\",\r\n \"40.80.53.32/27\",\r\n \"40.120.64.160/27\",\r\n
+ \ \"51.12.17.160/27\",\r\n \"51.12.46.192/27\",\r\n \"51.12.101.192/27\",\r\n
+ \ \"51.12.168.0/27\",\r\n \"51.104.9.64/27\",\r\n \"51.105.69.32/27\",\r\n
+ \ \"51.105.77.0/27\",\r\n \"51.107.128.128/27\",\r\n \"51.107.192.192/27\",\r\n
+ \ \"51.107.242.192/27\",\r\n \"51.107.250.192/27\",\r\n \"51.116.149.96/27\",\r\n
+ \ \"51.116.246.32/27\",\r\n \"51.120.213.96/27\",\r\n \"51.120.233.96/27\",\r\n
+ \ \"51.138.210.96/27\",\r\n \"51.143.212.128/27\",\r\n \"52.136.53.224/27\",\r\n
+ \ \"52.138.92.224/27\",\r\n \"52.138.229.128/25\",\r\n \"52.139.107.96/27\",\r\n
+ \ \"52.146.136.32/27\",\r\n \"52.167.109.0/26\",\r\n \"52.178.16.0/24\",\r\n
+ \ \"52.182.141.64/26\",\r\n \"52.231.20.96/27\",\r\n \"52.231.20.192/26\",\r\n
+ \ \"52.236.190.0/24\",\r\n \"102.37.160.32/27\",\r\n \"102.133.126.96/27\",\r\n
+ \ \"104.214.164.160/27\",\r\n \"191.233.207.128/27\",\r\n
+ \ \"191.238.72.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.AustraliaEast\",\r\n \"id\": \"AzureSignalR.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSignalR\",\r\n \"addressPrefixes\": [\r\n \"13.70.74.224/27\",\r\n
+ \ \"20.53.47.32/27\",\r\n \"40.79.163.96/27\",\r\n \"40.79.171.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.CanadaEast\",\r\n
+ \ \"id\": \"AzureSignalR.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n
+ \ \"52.139.107.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.EastUS\",\r\n \"id\": \"AzureSignalR.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSignalR\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.64.128/25\",\r\n \"20.42.72.0/25\",\r\n
+ \ \"20.62.133.64/27\",\r\n \"40.71.15.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.NorthEurope\",\r\n
+ \ \"id\": \"AzureSignalR.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.232.128/25\",\r\n \"13.74.111.0/25\",\r\n
+ \ \"52.138.229.128/25\",\r\n \"52.146.136.32/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSiteRecovery\",\r\n \"id\":
+ \"AzureSiteRecovery\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSiteRecovery\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.240/28\",\r\n \"13.67.10.96/28\",\r\n
+ \ \"13.69.67.80/28\",\r\n \"13.69.107.80/28\",\r\n \"13.69.230.16/28\",\r\n
+ \ \"13.70.74.96/28\",\r\n \"13.70.159.158/32\",\r\n \"13.71.173.224/28\",\r\n
+ \ \"13.71.196.144/28\",\r\n \"13.73.242.192/28\",\r\n \"13.74.108.144/28\",\r\n
+ \ \"13.75.39.80/28\",\r\n \"13.77.53.64/28\",\r\n \"13.78.109.128/28\",\r\n
+ \ \"13.82.88.226/32\",\r\n \"13.84.148.14/32\",\r\n \"13.86.219.176/28\",\r\n
+ \ \"13.87.37.4/32\",\r\n \"13.87.58.48/28\",\r\n \"13.87.124.48/28\",\r\n
+ \ \"13.89.174.144/28\",\r\n \"20.36.34.70/32\",\r\n \"20.36.69.62/32\",\r\n
+ \ \"20.36.108.96/28\",\r\n \"20.36.115.224/28\",\r\n \"20.36.120.80/28\",\r\n
+ \ \"20.37.64.80/28\",\r\n \"20.37.76.128/28\",\r\n \"20.37.156.96/28\",\r\n
+ \ \"20.37.192.112/28\",\r\n \"20.37.224.80/28\",\r\n \"20.38.80.112/28\",\r\n
+ \ \"20.38.128.80/28\",\r\n \"20.38.136.80/28\",\r\n \"20.38.147.160/28\",\r\n
+ \ \"20.39.8.80/28\",\r\n \"20.41.4.64/28\",\r\n \"20.41.64.96/28\",\r\n
+ \ \"20.41.192.80/28\",\r\n \"20.42.4.96/28\",\r\n \"20.42.129.128/28\",\r\n
+ \ \"20.42.224.80/28\",\r\n \"20.43.40.112/28\",\r\n \"20.43.64.112/28\",\r\n
+ \ \"20.43.121.16/28\",\r\n \"20.43.130.64/28\",\r\n \"20.44.4.80/28\",\r\n
+ \ \"20.44.8.176/28\",\r\n \"20.44.17.32/28\",\r\n \"20.44.27.192/28\",\r\n
+ \ \"20.45.75.232/32\",\r\n \"20.45.112.80/28\",\r\n \"20.45.123.96/28\",\r\n
+ \ \"20.45.192.80/28\",\r\n \"20.49.83.48/28\",\r\n \"20.49.91.48/28\",\r\n
+ \ \"20.72.16.0/28\",\r\n \"20.72.28.32/28\",\r\n \"20.150.160.80/28\",\r\n
+ \ \"20.150.172.48/28\",\r\n \"20.150.179.208/28\",\r\n \"20.150.187.208/28\",\r\n
+ \ \"20.189.106.96/28\",\r\n \"20.192.99.208/28\",\r\n \"20.192.160.0/28\",\r\n
+ \ \"20.192.225.0/28\",\r\n \"20.192.235.224/28\",\r\n \"20.193.203.208/28\",\r\n
+ \ \"20.194.67.48/28\",\r\n \"23.96.195.247/32\",\r\n \"23.98.83.80/28\",\r\n
+ \ \"40.67.48.80/28\",\r\n \"40.67.60.80/28\",\r\n \"40.69.108.64/28\",\r\n
+ \ \"40.69.144.231/32\",\r\n \"40.69.212.238/32\",\r\n \"40.70.148.96/28\",\r\n
+ \ \"40.71.14.0/28\",\r\n \"40.74.24.112/28\",\r\n \"40.74.147.176/28\",\r\n
+ \ \"40.75.35.80/28\",\r\n \"40.78.196.64/28\",\r\n \"40.78.204.16/28\",\r\n
+ \ \"40.78.229.48/28\",\r\n \"40.78.236.144/28\",\r\n \"40.78.243.160/28\",\r\n
+ \ \"40.78.251.96/28\",\r\n \"40.79.132.64/28\",\r\n \"40.79.139.0/28\",\r\n
+ \ \"40.79.146.192/28\",\r\n \"40.79.156.48/28\",\r\n \"40.79.163.16/28\",\r\n
+ \ \"40.79.171.96/28\",\r\n \"40.79.180.32/28\",\r\n \"40.79.187.176/28\",\r\n
+ \ \"40.79.195.160/28\",\r\n \"40.80.51.96/28\",\r\n \"40.80.56.80/28\",\r\n
+ \ \"40.80.168.80/28\",\r\n \"40.80.176.16/28\",\r\n \"40.80.184.96/28\",\r\n
+ \ \"40.82.248.96/28\",\r\n \"40.83.179.48/32\",\r\n \"40.89.16.80/28\",\r\n
+ \ \"40.119.9.192/28\",\r\n \"40.120.75.96/28\",\r\n \"40.123.219.238/32\",\r\n
+ \ \"51.12.47.0/28\",\r\n \"51.12.100.32/28\",\r\n \"51.12.198.112/28\",\r\n
+ \ \"51.12.204.32/28\",\r\n \"51.12.227.208/28\",\r\n \"51.12.235.208/28\",\r\n
+ \ \"51.104.9.0/28\",\r\n \"51.104.24.112/28\",\r\n \"51.105.67.192/28\",\r\n
+ \ \"51.105.75.160/28\",\r\n \"51.105.80.80/28\",\r\n \"51.105.88.80/28\",\r\n
+ \ \"51.107.48.80/28\",\r\n \"51.107.60.64/28\",\r\n \"51.107.68.31/32\",\r\n
+ \ \"51.107.144.80/28\",\r\n \"51.107.156.80/28\",\r\n \"51.107.231.223/32\",\r\n
+ \ \"51.116.48.80/28\",\r\n \"51.116.60.64/28\",\r\n \"51.116.144.80/28\",\r\n
+ \ \"51.116.156.176/28\",\r\n \"51.116.208.58/32\",\r\n \"51.116.243.128/28\",\r\n
+ \ \"51.116.251.48/28\",\r\n \"51.120.40.80/28\",\r\n \"51.120.100.64/28\",\r\n
+ \ \"51.120.107.208/28\",\r\n \"51.120.211.208/28\",\r\n \"51.120.220.64/28\",\r\n
+ \ \"51.120.224.80/28\",\r\n \"51.137.160.96/28\",\r\n \"51.140.43.158/32\",\r\n
+ \ \"51.140.212.80/28\",\r\n \"51.141.3.203/32\",\r\n \"51.142.209.167/32\",\r\n
+ \ \"51.143.192.80/28\",\r\n \"52.136.48.80/28\",\r\n \"52.136.139.227/32\",\r\n
+ \ \"52.138.92.64/28\",\r\n \"52.138.227.144/28\",\r\n \"52.140.104.80/28\",\r\n
+ \ \"52.143.138.106/32\",\r\n \"52.150.136.96/28\",\r\n \"52.161.20.168/32\",\r\n
+ \ \"52.162.111.0/28\",\r\n \"52.166.13.64/32\",\r\n \"52.167.107.80/28\",\r\n
+ \ \"52.172.46.220/32\",\r\n \"52.172.187.37/32\",\r\n \"52.175.17.132/32\",\r\n
+ \ \"52.175.146.69/32\",\r\n \"52.180.178.64/32\",\r\n \"52.182.139.192/28\",\r\n
+ \ \"52.183.45.166/32\",\r\n \"52.184.158.163/32\",\r\n \"52.185.150.140/32\",\r\n
+ \ \"52.187.58.193/32\",\r\n \"52.187.191.206/32\",\r\n \"52.225.188.170/32\",\r\n
+ \ \"52.228.36.192/32\",\r\n \"52.228.80.96/28\",\r\n \"52.229.125.98/32\",\r\n
+ \ \"52.231.20.16/28\",\r\n \"52.231.28.253/32\",\r\n \"52.231.148.96/28\",\r\n
+ \ \"52.231.198.185/32\",\r\n \"52.236.187.64/28\",\r\n \"52.246.155.160/28\",\r\n
+ \ \"65.52.252.192/28\",\r\n \"102.133.28.128/28\",\r\n \"102.133.59.160/28\",\r\n
+ \ \"102.133.72.51/32\",\r\n \"102.133.124.64/28\",\r\n \"102.133.156.96/28\",\r\n
+ \ \"102.133.160.44/32\",\r\n \"102.133.218.176/28\",\r\n
+ \ \"102.133.251.160/28\",\r\n \"104.210.113.114/32\",\r\n
+ \ \"104.211.177.6/32\",\r\n \"191.233.8.0/28\",\r\n \"191.233.51.192/28\",\r\n
+ \ \"191.233.205.80/28\",\r\n \"191.234.147.208/28\",\r\n
+ \ \"191.234.155.208/28\",\r\n \"191.234.185.172/32\",\r\n
+ \ \"191.235.224.112/28\",\r\n \"2603:1000:4::/123\",\r\n
+ \ \"2603:1000:4:402::2d0/125\",\r\n \"2603:1000:104:1::/123\",\r\n
+ \ \"2603:1000:104:402::2d0/125\",\r\n \"2603:1000:104:802::158/125\",\r\n
+ \ \"2603:1000:104:c02::158/125\",\r\n \"2603:1010:6:1::/123\",\r\n
+ \ \"2603:1010:6:402::2d0/125\",\r\n \"2603:1010:6:802::158/125\",\r\n
+ \ \"2603:1010:6:c02::158/125\",\r\n \"2603:1010:101::/123\",\r\n
+ \ \"2603:1010:101:402::2d0/125\",\r\n \"2603:1010:304::/123\",\r\n
+ \ \"2603:1010:304:402::2d0/125\",\r\n \"2603:1010:404::/123\",\r\n
+ \ \"2603:1010:404:402::2d0/125\",\r\n \"2603:1020:5:1::/123\",\r\n
+ \ \"2603:1020:5:402::2d0/125\",\r\n \"2603:1020:5:802::158/125\",\r\n
+ \ \"2603:1020:5:c02::158/125\",\r\n \"2603:1020:206:1::/123\",\r\n
+ \ \"2603:1020:206:402::2d0/125\",\r\n \"2603:1020:206:802::158/125\",\r\n
+ \ \"2603:1020:206:c02::158/125\",\r\n \"2603:1020:305::/123\",\r\n
+ \ \"2603:1020:305:402::2d0/125\",\r\n \"2603:1020:405::/123\",\r\n
+ \ \"2603:1020:405:402::2d0/125\",\r\n \"2603:1020:605::/123\",\r\n
+ \ \"2603:1020:605:402::2d0/125\",\r\n \"2603:1020:705:1::/123\",\r\n
+ \ \"2603:1020:705:402::2d0/125\",\r\n \"2603:1020:705:802::158/125\",\r\n
+ \ \"2603:1020:705:c02::158/125\",\r\n \"2603:1020:805:1::/123\",\r\n
+ \ \"2603:1020:805:402::2d0/125\",\r\n \"2603:1020:805:802::158/125\",\r\n
+ \ \"2603:1020:805:c02::158/125\",\r\n \"2603:1020:905::/123\",\r\n
+ \ \"2603:1020:905:402::2d0/125\",\r\n \"2603:1020:a04:1::/123\",\r\n
+ \ \"2603:1020:a04:402::2d0/125\",\r\n \"2603:1020:a04:802::158/125\",\r\n
+ \ \"2603:1020:a04:c02::158/125\",\r\n \"2603:1020:b04::/123\",\r\n
+ \ \"2603:1020:b04:402::2d0/125\",\r\n \"2603:1020:c04:1::/123\",\r\n
+ \ \"2603:1020:c04:402::2d0/125\",\r\n \"2603:1020:c04:802::158/125\",\r\n
+ \ \"2603:1020:c04:c02::158/125\",\r\n \"2603:1020:d04::/123\",\r\n
+ \ \"2603:1020:d04:402::2d0/125\",\r\n \"2603:1020:e04:1::/123\",\r\n
+ \ \"2603:1020:e04:402::2d0/125\",\r\n \"2603:1020:e04:802::158/125\",\r\n
+ \ \"2603:1020:e04:c02::158/125\",\r\n \"2603:1020:f04::/123\",\r\n
+ \ \"2603:1020:f04:402::2d0/125\",\r\n \"2603:1020:1004::/123\",\r\n
+ \ \"2603:1020:1004:400::1d0/125\",\r\n \"2603:1020:1004:400::2f0/125\",\r\n
+ \ \"2603:1020:1004:800::3e0/125\",\r\n \"2603:1020:1104::/123\",\r\n
+ \ \"2603:1020:1104:400::2d0/125\",\r\n \"2603:1030:f:1::/123\",\r\n
+ \ \"2603:1030:f:400::ad0/125\",\r\n \"2603:1030:10:1::/123\",\r\n
+ \ \"2603:1030:10:402::2d0/125\",\r\n \"2603:1030:10:802::158/125\",\r\n
+ \ \"2603:1030:10:c02::158/125\",\r\n \"2603:1030:104:1::/123\",\r\n
+ \ \"2603:1030:104:402::2d0/125\",\r\n \"2603:1030:107::/123\",\r\n
+ \ \"2603:1030:107:400::f8/125\",\r\n \"2603:1030:210:1::/123\",\r\n
+ \ \"2603:1030:210:402::2d0/125\",\r\n \"2603:1030:210:802::158/125\",\r\n
+ \ \"2603:1030:210:c02::158/125\",\r\n \"2603:1030:40b:1::/123\",\r\n
+ \ \"2603:1030:40b:400::ad0/125\",\r\n \"2603:1030:40b:800::158/125\",\r\n
+ \ \"2603:1030:40b:c00::158/125\",\r\n \"2603:1030:40c:1::/123\",\r\n
+ \ \"2603:1030:40c:402::2d0/125\",\r\n \"2603:1030:40c:802::158/125\",\r\n
+ \ \"2603:1030:40c:c02::158/125\",\r\n \"2603:1030:504:1::/123\",\r\n
+ \ \"2603:1030:504:402::1d0/125\",\r\n \"2603:1030:504:402::2f0/125\",\r\n
+ \ \"2603:1030:504:802::3e0/125\",\r\n \"2603:1030:504:c02::390/125\",\r\n
+ \ \"2603:1030:608::/123\",\r\n \"2603:1030:608:402::2d0/125\",\r\n
+ \ \"2603:1030:807:1::/123\",\r\n \"2603:1030:807:402::2d0/125\",\r\n
+ \ \"2603:1030:807:802::158/125\",\r\n \"2603:1030:807:c02::158/125\",\r\n
+ \ \"2603:1030:a07::/123\",\r\n \"2603:1030:a07:402::950/125\",\r\n
+ \ \"2603:1030:b04::/123\",\r\n \"2603:1030:b04:402::2d0/125\",\r\n
+ \ \"2603:1030:c06:1::/123\",\r\n \"2603:1030:c06:400::ad0/125\",\r\n
+ \ \"2603:1030:c06:802::158/125\",\r\n \"2603:1030:c06:c02::158/125\",\r\n
+ \ \"2603:1030:f05:1::/123\",\r\n \"2603:1030:f05:402::2d0/125\",\r\n
+ \ \"2603:1030:f05:802::158/125\",\r\n \"2603:1030:f05:c02::158/125\",\r\n
+ \ \"2603:1030:1005::/123\",\r\n \"2603:1030:1005:402::2d0/125\",\r\n
+ \ \"2603:1040:5:1::/123\",\r\n \"2603:1040:5:402::2d0/125\",\r\n
+ \ \"2603:1040:5:802::158/125\",\r\n \"2603:1040:5:c02::158/125\",\r\n
+ \ \"2603:1040:207::/123\",\r\n \"2603:1040:207:402::2d0/125\",\r\n
+ \ \"2603:1040:407:1::/123\",\r\n \"2603:1040:407:402::2d0/125\",\r\n
+ \ \"2603:1040:407:802::158/125\",\r\n \"2603:1040:407:c02::158/125\",\r\n
+ \ \"2603:1040:606::/123\",\r\n \"2603:1040:606:402::2d0/125\",\r\n
+ \ \"2603:1040:806::/123\",\r\n \"2603:1040:806:402::2d0/125\",\r\n
+ \ \"2603:1040:904:1::/123\",\r\n \"2603:1040:904:402::2d0/125\",\r\n
+ \ \"2603:1040:904:802::158/125\",\r\n \"2603:1040:904:c02::158/125\",\r\n
+ \ \"2603:1040:a06:1::/123\",\r\n \"2603:1040:a06:402::2d0/125\",\r\n
+ \ \"2603:1040:a06:802::158/125\",\r\n \"2603:1040:a06:c02::158/125\",\r\n
+ \ \"2603:1040:b04::/123\",\r\n \"2603:1040:b04:402::2d0/125\",\r\n
+ \ \"2603:1040:c06::/123\",\r\n \"2603:1040:c06:402::2d0/125\",\r\n
+ \ \"2603:1040:d04::/123\",\r\n \"2603:1040:d04:400::1d0/125\",\r\n
+ \ \"2603:1040:d04:400::2f0/125\",\r\n \"2603:1040:d04:800::3e0/125\",\r\n
+ \ \"2603:1040:f05:1::/123\",\r\n \"2603:1040:f05:402::2d0/125\",\r\n
+ \ \"2603:1040:f05:802::158/125\",\r\n \"2603:1040:f05:c02::158/125\",\r\n
+ \ \"2603:1040:1104::/123\",\r\n \"2603:1040:1104:400::2d0/125\",\r\n
+ \ \"2603:1050:6:1::/123\",\r\n \"2603:1050:6:402::2d0/125\",\r\n
+ \ \"2603:1050:6:802::158/125\",\r\n \"2603:1050:6:c02::158/125\",\r\n
+ \ \"2603:1050:403::/123\",\r\n \"2603:1050:403:400::1f0/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureTrafficManager\",\r\n
+ \ \"id\": \"AzureTrafficManager\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureTrafficManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.92.252/32\",\r\n \"13.65.95.152/32\",\r\n
+ \ \"13.75.124.254/32\",\r\n \"13.75.127.63/32\",\r\n \"13.75.152.253/32\",\r\n
+ \ \"13.75.153.124/32\",\r\n \"13.84.222.37/32\",\r\n \"23.96.236.252/32\",\r\n
+ \ \"23.101.191.199/32\",\r\n \"40.68.30.66/32\",\r\n \"40.68.31.178/32\",\r\n
+ \ \"40.78.67.110/32\",\r\n \"40.87.147.10/32\",\r\n \"40.87.151.34/32\",\r\n
+ \ \"40.114.5.197/32\",\r\n \"52.172.155.168/32\",\r\n \"52.172.158.37/32\",\r\n
+ \ \"52.173.90.107/32\",\r\n \"52.173.250.232/32\",\r\n \"52.240.144.45/32\",\r\n
+ \ \"52.240.151.125/32\",\r\n \"65.52.217.19/32\",\r\n \"104.41.187.209/32\",\r\n
+ \ \"104.41.190.203/32\",\r\n \"104.42.192.195/32\",\r\n \"104.45.149.110/32\",\r\n
+ \ \"104.215.91.84/32\",\r\n \"137.135.46.163/32\",\r\n \"137.135.47.215/32\",\r\n
+ \ \"137.135.80.149/32\",\r\n \"137.135.82.249/32\",\r\n \"191.232.208.52/32\",\r\n
+ \ \"191.232.214.62/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement\",\r\n \"id\": \"BatchNodeManagement\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.66.141.32/27\",\r\n \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n
+ \ \"13.66.227.193/32\",\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n
+ \ \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.70.73.0/27\",\r\n \"13.71.144.135/32\",\r\n \"13.71.172.96/27\",\r\n
+ \ \"13.71.195.160/27\",\r\n \"13.73.117.100/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.73.249.64/27\",\r\n \"13.74.107.128/27\",\r\n
+ \ \"13.75.36.96/27\",\r\n \"13.77.52.128/27\",\r\n \"13.77.80.138/32\",\r\n
+ \ \"13.78.108.128/27\",\r\n \"13.78.145.2/32\",\r\n \"13.78.145.73/32\",\r\n
+ \ \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n \"13.79.172.125/32\",\r\n
+ \ \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n \"13.81.59.254/32\",\r\n
+ \ \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.87.32.176/32\",\r\n \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n
+ \ \"13.87.57.96/27\",\r\n \"13.87.97.57/32\",\r\n \"13.87.97.82/32\",\r\n
+ \ \"13.87.100.219/32\",\r\n \"13.87.123.96/27\",\r\n \"13.89.55.147/32\",\r\n
+ \ \"13.89.171.224/27\",\r\n \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n
+ \ \"13.91.107.154/32\",\r\n \"13.92.114.103/32\",\r\n \"13.93.206.144/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.36.121.160/27\",\r\n
+ \ \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n \"20.37.196.128/27\",\r\n
+ \ \"20.37.225.160/27\",\r\n \"20.38.85.224/27\",\r\n \"20.38.137.192/27\",\r\n
+ \ \"20.38.146.224/27\",\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n
+ \ \"20.39.2.44/32\",\r\n \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n
+ \ \"20.39.3.186/32\",\r\n \"20.39.12.64/27\",\r\n \"20.40.137.186/32\",\r\n
+ \ \"20.40.149.165/32\",\r\n \"20.40.200.32/27\",\r\n \"20.41.5.224/27\",\r\n
+ \ \"20.41.66.128/27\",\r\n \"20.41.195.128/27\",\r\n \"20.42.6.224/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"20.43.42.96/27\",\r\n \"20.43.66.96/27\",\r\n
+ \ \"20.43.132.64/27\",\r\n \"20.44.4.112/29\",\r\n \"20.44.27.64/27\",\r\n
+ \ \"20.45.113.160/27\",\r\n \"20.45.122.224/27\",\r\n \"20.45.195.192/27\",\r\n
+ \ \"20.49.83.64/27\",\r\n \"20.49.91.64/27\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"20.72.17.64/27\",\r\n \"20.150.161.224/27\",\r\n \"20.150.172.0/27\",\r\n
+ \ \"20.150.179.96/27\",\r\n \"20.150.187.96/27\",\r\n \"20.189.109.0/27\",\r\n
+ \ \"20.192.99.96/27\",\r\n \"20.192.161.224/27\",\r\n \"20.192.228.160/27\",\r\n
+ \ \"20.192.235.192/27\",\r\n \"20.193.203.128/27\",\r\n \"23.96.12.112/32\",\r\n
+ \ \"23.96.101.73/32\",\r\n \"23.96.109.140/32\",\r\n \"23.96.232.67/32\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.97.97.29/32\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"23.98.82.160/27\",\r\n \"23.99.98.61/32\",\r\n
+ \ \"23.99.107.229/32\",\r\n \"23.99.195.236/32\",\r\n \"23.100.100.145/32\",\r\n
+ \ \"23.100.103.112/32\",\r\n \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n
+ \ \"23.102.185.64/32\",\r\n \"40.64.128.160/27\",\r\n \"40.67.49.160/27\",\r\n
+ \ \"40.67.60.0/27\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.69.107.128/27\",\r\n \"40.70.147.224/27\",\r\n
+ \ \"40.71.12.192/27\",\r\n \"40.74.101.0/27\",\r\n \"40.74.140.140/32\",\r\n
+ \ \"40.74.149.48/29\",\r\n \"40.74.177.177/32\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.77.18.99/32\",\r\n \"40.78.195.128/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"40.78.227.0/27\",\r\n \"40.78.234.96/27\",\r\n \"40.78.242.224/27\",\r\n
+ \ \"40.78.250.160/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"40.79.154.32/27\",\r\n \"40.79.162.96/27\",\r\n
+ \ \"40.79.170.192/27\",\r\n \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n
+ \ \"40.80.50.224/27\",\r\n \"40.80.58.160/27\",\r\n \"40.80.170.128/27\",\r\n
+ \ \"40.80.190.192/27\",\r\n \"40.82.255.64/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n
+ \ \"40.86.224.98/32\",\r\n \"40.86.224.104/32\",\r\n \"40.88.48.36/32\",\r\n
+ \ \"40.89.18.192/27\",\r\n \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n
+ \ \"40.89.67.77/32\",\r\n \"40.89.70.17/32\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.115.50.9/32\",\r\n \"40.118.208.127/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"51.12.41.192/27\",\r\n \"51.12.100.0/27\",\r\n \"51.12.193.192/27\",\r\n
+ \ \"51.12.204.0/27\",\r\n \"51.12.227.96/27\",\r\n \"51.12.235.96/27\",\r\n
+ \ \"51.104.28.0/27\",\r\n \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n
+ \ \"51.105.81.160/27\",\r\n \"51.105.89.192/27\",\r\n \"51.107.49.192/27\",\r\n
+ \ \"51.107.59.224/27\",\r\n \"51.107.145.160/27\",\r\n \"51.107.155.224/27\",\r\n
+ \ \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n \"51.116.144.224/27\",\r\n
+ \ \"51.116.154.32/27\",\r\n \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n
+ \ \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n \"51.120.107.96/27\",\r\n
+ \ \"51.120.211.96/27\",\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"51.137.162.192/27\",\r\n \"51.140.148.160/27\",\r\n \"51.140.184.59/32\",\r\n
+ \ \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n \"51.140.211.128/27\",\r\n
+ \ \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n \"51.141.8.64/32\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"52.136.49.192/27\",\r\n \"52.136.143.192/31\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.138.90.64/27\",\r\n \"52.138.226.128/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"52.148.148.46/32\",\r\n \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n
+ \ \"52.161.107.48/32\",\r\n \"52.162.110.32/27\",\r\n \"52.164.244.189/32\",\r\n
+ \ \"52.164.245.81/32\",\r\n \"52.165.44.224/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.167.106.128/27\",\r\n \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n
+ \ \"52.169.235.90/32\",\r\n \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n
+ \ \"52.174.35.218/32\",\r\n \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n
+ \ \"52.174.179.66/32\",\r\n \"52.174.180.164/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n
+ \ \"52.180.177.206/32\",\r\n \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n
+ \ \"52.180.181.239/32\",\r\n \"52.182.139.0/27\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"52.189.217.254/32\",\r\n \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n
+ \ \"52.225.185.38/32\",\r\n \"52.225.191.67/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.231.19.96/27\",\r\n \"52.231.32.70/31\",\r\n
+ \ \"52.231.32.82/32\",\r\n \"52.231.147.128/27\",\r\n \"52.231.200.112/31\",\r\n
+ \ \"52.231.200.126/32\",\r\n \"52.233.40.34/32\",\r\n \"52.233.157.9/32\",\r\n
+ \ \"52.233.157.78/32\",\r\n \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n
+ \ \"52.235.41.66/32\",\r\n \"52.236.186.128/26\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"52.246.154.224/27\",\r\n
+ \ \"52.249.60.22/32\",\r\n \"52.253.227.240/32\",\r\n \"65.52.199.156/32\",\r\n
+ \ \"65.52.199.188/32\",\r\n \"65.52.251.224/27\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"104.40.69.159/32\",\r\n \"104.40.183.25/32\",\r\n
+ \ \"104.41.2.182/32\",\r\n \"104.41.129.99/32\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.45.13.8/32\",\r\n
+ \ \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"104.47.149.96/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"104.208.144.128/27\",\r\n \"104.208.156.99/32\",\r\n
+ \ \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n \"104.210.115.52/32\",\r\n
+ \ \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n \"104.211.96.144/31\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"104.214.19.192/27\",\r\n
+ \ \"104.214.65.153/32\",\r\n \"111.221.104.48/32\",\r\n \"137.116.33.5/32\",\r\n
+ \ \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n \"137.116.37.146/32\",\r\n
+ \ \"137.116.46.180/32\",\r\n \"137.116.193.225/32\",\r\n
+ \ \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"138.91.1.114/32\",\r\n \"138.91.17.36/32\",\r\n \"157.55.167.71/32\",\r\n
+ \ \"157.55.210.88/32\",\r\n \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n
+ \ \"168.62.4.114/32\",\r\n \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n
+ \ \"168.63.5.53/32\",\r\n \"168.63.36.126/32\",\r\n \"168.63.133.23/32\",\r\n
+ \ \"168.63.208.148/32\",\r\n \"191.232.37.60/32\",\r\n \"191.233.10.0/27\",\r\n
+ \ \"191.233.76.85/32\",\r\n \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n
+ \ \"191.234.155.96/27\",\r\n \"191.235.227.192/27\",\r\n
+ \ \"191.236.37.239/32\",\r\n \"191.236.38.142/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"207.46.149.75/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1000:4::400/122\",\r\n \"2603:1000:104:1::340/122\",\r\n
+ \ \"2603:1010:6:1::340/122\",\r\n \"2603:1010:101::400/122\",\r\n
+ \ \"2603:1010:304::400/122\",\r\n \"2603:1010:404::400/122\",\r\n
+ \ \"2603:1020:5:1::340/122\",\r\n \"2603:1020:206:1::340/122\",\r\n
+ \ \"2603:1020:305::400/122\",\r\n \"2603:1020:405::400/122\",\r\n
+ \ \"2603:1020:605::400/122\",\r\n \"2603:1020:705:1::340/122\",\r\n
+ \ \"2603:1020:805:1::340/122\",\r\n \"2603:1020:905::400/122\",\r\n
+ \ \"2603:1020:a04:1::340/122\",\r\n \"2603:1020:b04::400/122\",\r\n
+ \ \"2603:1020:c04:1::340/122\",\r\n \"2603:1020:d04::400/122\",\r\n
+ \ \"2603:1020:e04:1::340/122\",\r\n \"2603:1020:f04::400/122\",\r\n
+ \ \"2603:1020:1004::340/122\",\r\n \"2603:1020:1104::300/122\",\r\n
+ \ \"2603:1030:f:1::400/122\",\r\n \"2603:1030:10:1::340/122\",\r\n
+ \ \"2603:1030:104:1::340/122\",\r\n \"2603:1030:107::300/122\",\r\n
+ \ \"2603:1030:210:1::340/122\",\r\n \"2603:1030:40b:1::340/122\",\r\n
+ \ \"2603:1030:40c:1::340/122\",\r\n \"2603:1030:504:1::340/122\",\r\n
+ \ \"2603:1030:608::400/122\",\r\n \"2603:1030:807:1::340/122\",\r\n
+ \ \"2603:1030:a07::400/122\",\r\n \"2603:1030:b04::400/122\",\r\n
+ \ \"2603:1030:c06:1::340/122\",\r\n \"2603:1030:f05:1::340/122\",\r\n
+ \ \"2603:1030:1005::400/122\",\r\n \"2603:1040:5:1::340/122\",\r\n
+ \ \"2603:1040:207::400/122\",\r\n \"2603:1040:407:1::340/122\",\r\n
+ \ \"2603:1040:606::400/122\",\r\n \"2603:1040:806::400/122\",\r\n
+ \ \"2603:1040:904:1::340/122\",\r\n \"2603:1040:a06:1::340/122\",\r\n
+ \ \"2603:1040:b04::400/122\",\r\n \"2603:1040:c06::400/122\",\r\n
+ \ \"2603:1040:d04::340/122\",\r\n \"2603:1040:f05:1::340/122\",\r\n
+ \ \"2603:1040:1104::300/122\",\r\n \"2603:1050:6:1::340/122\",\r\n
+ \ \"2603:1050:403::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaCentral\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.37.225.160/27\",\r\n
+ \ \"2603:1010:304::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaEast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.70.73.0/27\",\r\n
+ \ \"20.37.196.128/27\",\r\n \"40.79.162.96/27\",\r\n \"40.79.170.192/27\",\r\n
+ \ \"104.210.115.52/32\",\r\n \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n
+ \ \"2603:1010:6:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.117.100/32\",\r\n \"13.77.52.128/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"52.189.217.254/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"2603:1010:101::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.BrazilSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.97.29/32\",\r\n \"104.41.2.182/32\",\r\n \"191.232.37.60/32\",\r\n
+ \ \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n \"191.234.155.96/27\",\r\n
+ \ \"191.235.227.192/27\",\r\n \"2603:1050:6:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.96/27\",\r\n \"20.38.146.224/27\",\r\n
+ \ \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.233.40.34/32\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.246.154.224/27\",\r\n \"2603:1030:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.128/27\",\r\n \"40.86.224.98/32\",\r\n
+ \ \"40.86.224.104/32\",\r\n \"40.89.18.192/27\",\r\n \"52.235.41.66/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"2603:1030:1005::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralIndia\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.99.96/27\",\r\n \"40.80.50.224/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n
+ \ \"104.211.96.144/31\",\r\n \"2603:1040:a06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n
+ \ \"13.89.55.147/32\",\r\n \"13.89.171.224/27\",\r\n \"20.40.200.32/27\",\r\n
+ \ \"23.99.195.236/32\",\r\n \"40.77.18.99/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"52.165.44.224/32\",\r\n \"52.182.139.0/27\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n \"2603:1030:10:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.195.192/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n \"52.180.177.206/32\",\r\n
+ \ \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n \"52.180.181.239/32\",\r\n
+ \ \"2603:1030:f:1::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastAsia\",\r\n \"id\":
+ \"BatchNodeManagement.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.75.36.96/27\",\r\n
+ \ \"20.189.109.0/27\",\r\n \"23.99.98.61/32\",\r\n \"23.99.107.229/32\",\r\n
+ \ \"168.63.133.23/32\",\r\n \"168.63.208.148/32\",\r\n \"207.46.149.75/32\",\r\n
+ \ \"2603:1040:207::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastUS\",\r\n \"id\":
+ \"BatchNodeManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.92.114.103/32\",\r\n
+ \ \"20.42.6.224/27\",\r\n \"23.96.12.112/32\",\r\n \"23.96.101.73/32\",\r\n
+ \ \"23.96.109.140/32\",\r\n \"40.71.12.192/27\",\r\n \"40.78.227.0/27\",\r\n
+ \ \"40.79.154.32/27\",\r\n \"40.88.48.36/32\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"104.41.129.99/32\",\r\n \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n \"191.236.37.239/32\",\r\n
+ \ \"191.236.38.142/32\",\r\n \"2603:1030:210:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.77.80.138/32\",\r\n
+ \ \"20.41.5.224/27\",\r\n \"40.70.147.224/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"52.167.106.128/27\",\r\n \"104.208.144.128/27\",\r\n
+ \ \"104.208.156.99/32\",\r\n \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n
+ \ \"137.116.33.5/32\",\r\n \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n
+ \ \"137.116.37.146/32\",\r\n \"137.116.46.180/32\",\r\n \"2603:1030:40c:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n \"20.39.2.44/32\",\r\n
+ \ \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n \"20.39.3.186/32\",\r\n
+ \ \"20.39.12.64/27\",\r\n \"40.74.149.48/29\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n \"40.89.67.77/32\",\r\n
+ \ \"40.89.70.17/32\",\r\n \"52.138.90.64/27\",\r\n \"52.225.185.38/32\",\r\n
+ \ \"52.225.191.67/32\",\r\n \"52.253.227.240/32\",\r\n \"2603:1030:40b:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.FranceCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.40.137.186/32\",\r\n \"20.40.149.165/32\",\r\n
+ \ \"20.43.42.96/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"2603:1020:805:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.FranceSouth\",\r\n \"id\":
+ \"BatchNodeManagement.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.192/27\",\r\n
+ \ \"52.136.143.192/31\",\r\n \"2603:1020:905::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.GermanyNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n
+ \ \"2603:1020:d04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.GermanyWestCentral\",\r\n \"id\":
+ \"BatchNodeManagement.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.224/27\",\r\n \"51.116.154.32/27\",\r\n
+ \ \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n \"2603:1020:c04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.JapanEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.144.135/32\",\r\n \"13.78.108.128/27\",\r\n
+ \ \"20.43.66.96/27\",\r\n \"23.100.100.145/32\",\r\n \"23.100.103.112/32\",\r\n
+ \ \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n \"138.91.1.114/32\",\r\n
+ \ \"2603:1040:407:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.JapanWest\",\r\n \"id\":
+ \"BatchNodeManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.0/27\",\r\n
+ \ \"40.74.140.140/32\",\r\n \"40.80.58.160/27\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"138.91.17.36/32\",\r\n \"2603:1040:606::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.66.128/27\",\r\n \"20.44.27.64/27\",\r\n \"52.231.19.96/27\",\r\n
+ \ \"52.231.32.70/31\",\r\n \"52.231.32.82/32\",\r\n \"2603:1040:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.128/27\",\r\n \"52.231.147.128/27\",\r\n
+ \ \"52.231.200.112/31\",\r\n \"52.231.200.126/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorthCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.232.67/32\",\r\n \"40.80.190.192/27\",\r\n
+ \ \"52.162.110.32/27\",\r\n \"65.52.199.156/32\",\r\n \"65.52.199.188/32\",\r\n
+ \ \"157.55.167.71/32\",\r\n \"157.55.210.88/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"2603:1030:608::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.NorthEurope\",\r\n \"id\":
+ \"BatchNodeManagement.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.74.107.128/27\",\r\n \"13.79.172.125/32\",\r\n \"20.38.85.224/27\",\r\n
+ \ \"52.138.226.128/27\",\r\n \"52.164.244.189/32\",\r\n \"52.164.245.81/32\",\r\n
+ \ \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n \"52.169.235.90/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n
+ \ \"168.63.36.126/32\",\r\n \"2603:1020:5:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n
+ \ \"51.120.107.96/27\",\r\n \"51.120.211.96/27\",\r\n \"2603:1020:e04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"2603:1020:f04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"2603:1000:104:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n
+ \ \"2603:1000:4::400/122\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement.SouthCentralUS\",\r\n \"id\": \"BatchNodeManagement.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.73.249.64/27\",\r\n \"20.45.122.224/27\",\r\n \"20.49.91.64/27\",\r\n
+ \ \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n \"23.102.185.64/32\",\r\n
+ \ \"40.74.177.177/32\",\r\n \"52.249.60.22/32\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"104.214.19.192/27\",\r\n \"104.214.65.153/32\",\r\n \"2603:1030:807:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SoutheastAsia\",\r\n
+ \ \"id\": \"BatchNodeManagement.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n \"20.43.132.64/27\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.98.82.160/27\",\r\n
+ \ \"40.78.234.96/27\",\r\n \"111.221.104.48/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1040:5:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthIndia\",\r\n \"id\":
+ \"BatchNodeManagement.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.41.195.128/27\",\r\n
+ \ \"40.78.195.128/27\",\r\n \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"2603:1040:c06::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.49.192/27\",\r\n \"51.107.59.224/27\",\r\n
+ \ \"2603:1020:a04:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SwitzerlandWest\",\r\n \"id\":
+ \"BatchNodeManagement.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.107.145.160/27\",\r\n
+ \ \"51.107.155.224/27\",\r\n \"2603:1020:b04::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UAECentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n
+ \ \"2603:1040:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UAENorth\",\r\n \"id\":
+ \"BatchNodeManagement.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.38.137.192/27\",\r\n
+ \ \"65.52.251.224/27\",\r\n \"2603:1040:904:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.28.0/27\",\r\n
+ \ \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n \"51.140.148.160/27\",\r\n
+ \ \"51.140.184.59/32\",\r\n \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n
+ \ \"2603:1020:705:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UKSouth2\",\r\n \"id\":
+ \"BatchNodeManagement.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.32.176/32\",\r\n
+ \ \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n \"13.87.57.96/27\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"2603:1020:405::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.162.192/27\",\r\n
+ \ \"51.140.211.128/27\",\r\n \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n
+ \ \"51.141.8.64/32\",\r\n \"2603:1020:605::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.WestCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.160/27\",\r\n \"13.78.145.2/32\",\r\n
+ \ \"13.78.145.73/32\",\r\n \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n
+ \ \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n \"52.161.107.48/32\",\r\n
+ \ \"2603:1030:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestEurope\",\r\n \"id\":
+ \"BatchNodeManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n
+ \ \"13.81.59.254/32\",\r\n \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.115.50.9/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n \"52.174.35.218/32\",\r\n
+ \ \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n \"52.174.179.66/32\",\r\n
+ \ \"52.174.180.164/32\",\r\n \"52.233.157.9/32\",\r\n \"52.233.157.78/32\",\r\n
+ \ \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n \"52.236.186.128/26\",\r\n
+ \ \"104.40.183.25/32\",\r\n \"104.45.13.8/32\",\r\n \"104.47.149.96/32\",\r\n
+ \ \"137.116.193.225/32\",\r\n \"168.63.5.53/32\",\r\n \"191.233.76.85/32\",\r\n
+ \ \"2603:1020:206:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestIndia\",\r\n \"id\":
+ \"BatchNodeManagement.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"52.136.49.192/27\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"2603:1040:806::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n \"13.91.107.154/32\",\r\n
+ \ \"13.93.206.144/32\",\r\n \"40.82.255.64/27\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.118.208.127/32\",\r\n \"104.40.69.159/32\",\r\n \"168.62.4.114/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"2603:1030:a07::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS2\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.32/27\",\r\n
+ \ \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n \"13.66.227.193/32\",\r\n
+ \ \"40.64.128.160/27\",\r\n \"40.78.242.224/27\",\r\n \"40.78.250.160/27\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.148.148.46/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n \"2603:1030:c06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"CognitiveServicesManagement\",\r\n
+ \ \"id\": \"CognitiveServicesManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"5\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"CognitiveServicesManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.207/32\",\r\n \"13.65.241.39/32\",\r\n
+ \ \"13.66.56.76/32\",\r\n \"13.66.141.232/29\",\r\n \"13.66.142.0/26\",\r\n
+ \ \"13.67.10.80/29\",\r\n \"13.67.10.128/26\",\r\n \"13.68.82.4/32\",\r\n
+ \ \"13.68.211.223/32\",\r\n \"13.69.67.64/28\",\r\n \"13.69.67.128/26\",\r\n
+ \ \"13.69.230.0/29\",\r\n \"13.69.230.32/29\",\r\n \"13.70.74.88/29\",\r\n
+ \ \"13.70.74.120/29\",\r\n \"13.70.127.50/32\",\r\n \"13.70.149.125/32\",\r\n
+ \ \"13.71.173.216/29\",\r\n \"13.71.173.248/29\",\r\n \"13.71.196.136/29\",\r\n
+ \ \"13.71.196.168/29\",\r\n \"13.73.242.48/29\",\r\n \"13.73.242.128/26\",\r\n
+ \ \"13.73.249.0/27\",\r\n \"13.73.249.96/27\",\r\n \"13.73.249.128/28\",\r\n
+ \ \"13.73.253.122/31\",\r\n \"13.73.254.200/29\",\r\n \"13.73.254.208/29\",\r\n
+ \ \"13.73.254.216/30\",\r\n \"13.73.255.32/27\",\r\n \"13.74.139.192/32\",\r\n
+ \ \"13.75.39.64/29\",\r\n \"13.75.39.96/29\",\r\n \"13.75.92.220/32\",\r\n
+ \ \"13.75.137.81/32\",\r\n \"13.75.163.9/32\",\r\n \"13.75.168.111/32\",\r\n
+ \ \"13.77.55.152/29\",\r\n \"13.77.170.155/32\",\r\n \"13.78.17.188/32\",\r\n
+ \ \"13.78.70.7/32\",\r\n \"13.78.185.44/32\",\r\n \"13.78.187.168/32\",\r\n
+ \ \"13.83.68.180/32\",\r\n \"13.84.42.205/32\",\r\n \"13.86.178.10/32\",\r\n
+ \ \"13.86.184.142/32\",\r\n \"13.86.219.128/27\",\r\n \"13.86.219.160/29\",\r\n
+ \ \"13.87.216.38/32\",\r\n \"13.88.14.63/32\",\r\n \"13.88.26.200/32\",\r\n
+ \ \"13.91.58.176/32\",\r\n \"13.91.138.229/32\",\r\n \"13.92.179.108/32\",\r\n
+ \ \"13.93.122.1/32\",\r\n \"13.94.26.39/32\",\r\n \"20.36.120.224/27\",\r\n
+ \ \"20.36.121.192/27\",\r\n \"20.36.121.224/28\",\r\n \"20.36.125.128/26\",\r\n
+ \ \"20.37.64.224/27\",\r\n \"20.37.65.192/27\",\r\n \"20.37.65.224/28\",\r\n
+ \ \"20.37.68.36/30\",\r\n \"20.37.70.128/26\",\r\n \"20.37.70.224/27\",\r\n
+ \ \"20.37.71.208/28\",\r\n \"20.37.76.200/30\",\r\n \"20.37.156.204/30\",\r\n
+ \ \"20.37.157.96/27\",\r\n \"20.37.195.112/28\",\r\n \"20.37.195.192/27\",\r\n
+ \ \"20.37.196.160/27\",\r\n \"20.37.224.224/27\",\r\n \"20.37.225.192/27\",\r\n
+ \ \"20.37.225.224/28\",\r\n \"20.37.229.192/26\",\r\n \"20.38.84.108/30\",\r\n
+ \ \"20.38.85.160/27\",\r\n \"20.38.87.128/27\",\r\n \"20.38.87.160/28\",\r\n
+ \ \"20.38.136.240/28\",\r\n \"20.38.137.128/27\",\r\n \"20.38.137.224/27\",\r\n
+ \ \"20.38.141.12/30\",\r\n \"20.38.142.128/26\",\r\n \"20.38.142.224/27\",\r\n
+ \ \"20.38.143.240/28\",\r\n \"20.39.11.112/28\",\r\n \"20.39.12.0/27\",\r\n
+ \ \"20.39.12.96/27\",\r\n \"20.39.15.56/31\",\r\n \"20.39.15.60/30\",\r\n
+ \ \"20.40.125.208/32\",\r\n \"20.40.164.245/32\",\r\n \"20.40.170.73/32\",\r\n
+ \ \"20.40.187.210/32\",\r\n \"20.40.188.109/32\",\r\n \"20.40.190.135/32\",\r\n
+ \ \"20.40.190.225/32\",\r\n \"20.40.200.64/27\",\r\n \"20.40.200.96/28\",\r\n
+ \ \"20.40.207.152/29\",\r\n \"20.40.224.32/28\",\r\n \"20.40.224.48/30\",\r\n
+ \ \"20.40.224.56/29\",\r\n \"20.40.225.64/26\",\r\n \"20.40.225.192/26\",\r\n
+ \ \"20.40.229.64/28\",\r\n \"20.41.5.160/27\",\r\n \"20.41.65.192/27\",\r\n
+ \ \"20.41.66.160/27\",\r\n \"20.41.66.192/28\",\r\n \"20.41.69.40/29\",\r\n
+ \ \"20.41.69.56/30\",\r\n \"20.41.193.176/28\",\r\n \"20.41.193.192/27\",\r\n
+ \ \"20.41.195.160/27\",\r\n \"20.41.208.0/30\",\r\n \"20.42.4.204/30\",\r\n
+ \ \"20.42.6.144/28\",\r\n \"20.42.6.160/27\",\r\n \"20.42.7.128/27\",\r\n
+ \ \"20.42.131.240/28\",\r\n \"20.42.227.144/28\",\r\n \"20.42.227.160/27\",\r\n
+ \ \"20.42.228.128/27\",\r\n \"20.43.42.16/28\",\r\n \"20.43.42.32/27\",\r\n
+ \ \"20.43.43.0/27\",\r\n \"20.43.45.232/29\",\r\n \"20.43.45.244/30\",\r\n
+ \ \"20.43.47.0/26\",\r\n \"20.43.47.128/27\",\r\n \"20.43.66.16/28\",\r\n
+ \ \"20.43.66.32/27\",\r\n \"20.43.67.0/27\",\r\n \"20.43.88.240/32\",\r\n
+ \ \"20.43.121.0/29\",\r\n \"20.43.121.32/29\",\r\n \"20.43.131.48/28\",\r\n
+ \ \"20.43.132.0/27\",\r\n \"20.43.132.96/27\",\r\n \"20.44.8.160/29\",\r\n
+ \ \"20.44.8.192/29\",\r\n \"20.44.17.16/29\",\r\n \"20.44.17.48/29\",\r\n
+ \ \"20.44.27.120/29\",\r\n \"20.44.27.216/29\",\r\n \"20.45.67.213/32\",\r\n
+ \ \"20.45.112.224/27\",\r\n \"20.45.113.192/27\",\r\n \"20.45.113.224/28\",\r\n
+ \ \"20.45.116.128/26\",\r\n \"20.45.116.240/28\",\r\n \"20.45.192.126/31\",\r\n
+ \ \"20.45.195.128/27\",\r\n \"20.45.195.224/27\",\r\n \"20.45.196.0/28\",\r\n
+ \ \"20.45.198.88/29\",\r\n \"20.45.199.36/30\",\r\n \"20.46.10.128/26\",\r\n
+ \ \"20.46.10.192/27\",\r\n \"20.46.11.224/28\",\r\n \"20.48.192.64/29\",\r\n
+ \ \"20.48.192.80/30\",\r\n \"20.48.193.64/26\",\r\n \"20.48.193.192/27\",\r\n
+ \ \"20.48.196.240/28\",\r\n \"20.49.96.128/27\",\r\n \"20.49.96.160/28\",\r\n
+ \ \"20.49.102.56/29\",\r\n \"20.49.102.192/28\",\r\n \"20.49.102.208/30\",\r\n
+ \ \"20.49.102.216/29\",\r\n \"20.49.102.224/30\",\r\n \"20.49.103.128/26\",\r\n
+ \ \"20.49.114.160/29\",\r\n \"20.49.114.176/29\",\r\n \"20.49.114.184/30\",\r\n
+ \ \"20.49.114.224/27\",\r\n \"20.49.115.192/26\",\r\n \"20.49.118.64/27\",\r\n
+ \ \"20.49.119.208/28\",\r\n \"20.49.126.136/29\",\r\n \"20.49.126.144/29\",\r\n
+ \ \"20.49.126.152/30\",\r\n \"20.49.126.224/27\",\r\n \"20.50.1.16/28\",\r\n
+ \ \"20.50.68.126/31\",\r\n \"20.51.8.128/26\",\r\n \"20.51.8.224/27\",\r\n
+ \ \"20.51.12.192/27\",\r\n \"20.51.12.224/28\",\r\n \"20.51.16.192/26\",\r\n
+ \ \"20.51.17.32/27\",\r\n \"20.51.20.112/28\",\r\n \"20.52.64.16/29\",\r\n
+ \ \"20.52.72.48/29\",\r\n \"20.52.88.128/28\",\r\n \"20.53.41.32/29\",\r\n
+ \ \"20.53.41.40/30\",\r\n \"20.53.41.48/28\",\r\n \"20.53.44.0/30\",\r\n
+ \ \"20.53.44.128/26\",\r\n \"20.53.44.192/27\",\r\n \"20.53.47.80/28\",\r\n
+ \ \"20.53.48.176/28\",\r\n \"20.53.56.112/28\",\r\n \"20.58.66.64/27\",\r\n
+ \ \"20.58.67.32/28\",\r\n \"20.61.96.168/29\",\r\n \"20.61.96.176/29\",\r\n
+ \ \"20.61.96.188/30\",\r\n \"20.61.97.64/27\",\r\n \"20.61.98.64/31\",\r\n
+ \ \"20.61.98.192/26\",\r\n \"20.61.99.32/27\",\r\n \"20.61.103.80/28\",\r\n
+ \ \"20.62.58.0/26\",\r\n \"20.62.59.96/28\",\r\n \"20.62.128.144/30\",\r\n
+ \ \"20.62.129.64/26\",\r\n \"20.62.129.160/27\",\r\n \"20.62.134.80/28\",\r\n
+ \ \"20.65.130.0/26\",\r\n \"20.65.130.128/26\",\r\n \"20.65.133.96/28\",\r\n
+ \ \"20.66.2.64/26\",\r\n \"20.66.2.160/27\",\r\n \"20.66.4.240/28\",\r\n
+ \ \"20.69.0.240/28\",\r\n \"20.72.20.64/27\",\r\n \"20.72.20.128/26\",\r\n
+ \ \"20.72.21.8/29\",\r\n \"20.150.161.160/27\",\r\n \"20.150.164.128/27\",\r\n
+ \ \"20.150.164.160/28\",\r\n \"20.150.167.64/26\",\r\n \"20.150.174.136/29\",\r\n
+ \ \"20.150.241.80/29\",\r\n \"20.150.244.48/28\",\r\n \"20.150.244.128/27\",\r\n
+ \ \"20.184.58.62/32\",\r\n \"20.184.240.78/32\",\r\n \"20.184.241.66/32\",\r\n
+ \ \"20.184.241.238/32\",\r\n \"20.184.242.113/32\",\r\n \"20.184.242.115/32\",\r\n
+ \ \"20.184.242.189/32\",\r\n \"20.185.105.28/32\",\r\n \"20.187.195.152/29\",\r\n
+ \ \"20.187.196.192/30\",\r\n \"20.187.197.64/26\",\r\n \"20.187.197.160/27\",\r\n
+ \ \"20.189.108.64/27\",\r\n \"20.189.109.32/27\",\r\n \"20.189.109.64/28\",\r\n
+ \ \"20.189.111.200/30\",\r\n \"20.189.111.208/28\",\r\n \"20.189.225.0/26\",\r\n
+ \ \"20.189.225.96/27\",\r\n \"20.189.228.144/28\",\r\n \"20.191.160.8/29\",\r\n
+ \ \"20.191.160.20/30\",\r\n \"20.191.160.96/28\",\r\n \"20.191.160.112/30\",\r\n
+ \ \"20.191.161.128/26\",\r\n \"20.191.161.224/27\",\r\n \"20.191.166.96/28\",\r\n
+ \ \"20.192.44.96/28\",\r\n \"20.192.48.192/28\",\r\n \"20.192.50.80/28\",\r\n
+ \ \"20.192.50.208/29\",\r\n \"20.192.80.32/28\",\r\n \"20.192.161.144/28\",\r\n
+ \ \"20.192.161.160/27\",\r\n \"20.192.164.128/27\",\r\n \"20.192.167.64/26\",\r\n
+ \ \"20.192.184.84/30\",\r\n \"20.192.225.208/28\",\r\n \"20.192.225.224/27\",\r\n
+ \ \"20.192.228.192/27\",\r\n \"20.192.231.128/26\",\r\n \"20.193.194.0/28\",\r\n
+ \ \"20.193.194.48/29\",\r\n \"20.193.194.64/28\",\r\n \"20.194.72.64/26\",\r\n
+ \ \"20.194.72.192/27\",\r\n \"20.194.74.64/28\",\r\n \"20.195.65.240/29\",\r\n
+ \ \"20.195.72.240/28\",\r\n \"20.195.146.80/28\",\r\n \"23.96.13.121/32\",\r\n
+ \ \"23.96.229.148/32\",\r\n \"23.98.107.28/30\",\r\n \"23.98.107.200/29\",\r\n
+ \ \"23.98.107.208/28\",\r\n \"23.98.108.36/30\",\r\n \"23.98.108.40/31\",\r\n
+ \ \"23.98.108.192/26\",\r\n \"23.98.109.32/29\",\r\n \"23.100.0.32/32\",\r\n
+ \ \"23.100.57.171/32\",\r\n \"23.100.59.49/32\",\r\n \"40.64.128.192/27\",\r\n
+ \ \"40.64.134.140/30\",\r\n \"40.64.134.168/29\",\r\n \"40.64.134.176/28\",\r\n
+ \ \"40.64.135.80/29\",\r\n \"40.67.48.224/27\",\r\n \"40.67.49.192/27\",\r\n
+ \ \"40.67.49.224/28\",\r\n \"40.67.52.128/26\",\r\n \"40.67.53.160/28\",\r\n
+ \ \"40.69.73.194/32\",\r\n \"40.69.104.32/30\",\r\n \"40.69.111.36/30\",\r\n
+ \ \"40.70.47.165/32\",\r\n \"40.70.241.203/32\",\r\n \"40.74.30.108/30\",\r\n
+ \ \"40.74.31.64/26\",\r\n \"40.74.64.203/32\",\r\n \"40.78.20.224/32\",\r\n
+ \ \"40.78.204.0/29\",\r\n \"40.78.204.32/29\",\r\n \"40.79.132.48/29\",\r\n
+ \ \"40.79.132.80/29\",\r\n \"40.79.156.64/27\",\r\n \"40.79.176.32/30\",\r\n
+ \ \"40.79.187.168/29\",\r\n \"40.79.187.200/29\",\r\n \"40.80.57.208/28\",\r\n
+ \ \"40.80.57.224/27\",\r\n \"40.80.58.192/27\",\r\n \"40.80.63.152/30\",\r\n
+ \ \"40.80.63.224/28\",\r\n \"40.80.63.240/30\",\r\n \"40.80.169.192/27\",\r\n
+ \ \"40.80.170.160/27\",\r\n \"40.80.170.192/28\",\r\n \"40.80.172.28/30\",\r\n
+ \ \"40.80.176.0/28\",\r\n \"40.80.188.112/28\",\r\n \"40.80.190.128/27\",\r\n
+ \ \"40.80.190.224/27\",\r\n \"40.82.253.200/30\",\r\n \"40.82.253.208/28\",\r\n
+ \ \"40.82.255.0/26\",\r\n \"40.82.255.96/27\",\r\n \"40.85.230.100/32\",\r\n
+ \ \"40.86.227.247/32\",\r\n \"40.87.48.184/32\",\r\n \"40.88.22.25/32\",\r\n
+ \ \"40.89.17.240/28\",\r\n \"40.89.18.128/27\",\r\n \"40.89.18.224/27\",\r\n
+ \ \"40.89.23.36/30\",\r\n \"40.89.133.209/32\",\r\n \"40.89.134.214/32\",\r\n
+ \ \"40.90.138.4/32\",\r\n \"40.90.139.2/32\",\r\n \"40.90.139.36/32\",\r\n
+ \ \"40.90.139.163/32\",\r\n \"40.90.141.99/32\",\r\n \"40.112.254.71/32\",\r\n
+ \ \"40.113.124.208/32\",\r\n \"40.113.226.173/32\",\r\n \"40.115.248.103/32\",\r\n
+ \ \"40.117.154.42/32\",\r\n \"40.117.232.90/32\",\r\n \"40.119.2.134/32\",\r\n
+ \ \"40.119.11.216/29\",\r\n \"40.120.8.48/30\",\r\n \"40.121.217.232/32\",\r\n
+ \ \"40.122.42.111/32\",\r\n \"40.123.205.29/32\",\r\n \"40.123.210.248/32\",\r\n
+ \ \"40.123.214.182/32\",\r\n \"40.123.214.251/32\",\r\n \"40.123.218.49/32\",\r\n
+ \ \"40.127.76.4/32\",\r\n \"40.127.76.10/32\",\r\n \"40.127.165.113/32\",\r\n
+ \ \"51.11.97.80/29\",\r\n \"51.12.17.32/28\",\r\n \"51.12.17.136/29\",\r\n
+ \ \"51.12.17.144/28\",\r\n \"51.12.25.32/28\",\r\n \"51.12.25.208/29\",\r\n
+ \ \"51.12.41.48/28\",\r\n \"51.12.41.128/27\",\r\n \"51.12.41.224/27\",\r\n
+ \ \"51.12.43.192/26\",\r\n \"51.12.46.240/28\",\r\n \"51.12.193.48/28\",\r\n
+ \ \"51.12.193.128/27\",\r\n \"51.12.193.224/27\",\r\n \"51.12.195.128/26\",\r\n
+ \ \"51.13.1.0/29\",\r\n \"51.13.128.72/29\",\r\n \"51.13.136.64/26\",\r\n
+ \ \"51.13.137.192/28\",\r\n \"51.13.137.224/27\",\r\n \"51.104.25.240/28\",\r\n
+ \ \"51.104.27.64/27\",\r\n \"51.104.28.32/27\",\r\n \"51.104.31.160/29\",\r\n
+ \ \"51.104.31.168/30\",\r\n \"51.104.31.176/28\",\r\n \"51.105.67.176/29\",\r\n
+ \ \"51.105.67.208/29\",\r\n \"51.105.80.224/27\",\r\n \"51.105.81.192/27\",\r\n
+ \ \"51.105.81.224/28\",\r\n \"51.105.89.128/27\",\r\n \"51.105.89.224/27\",\r\n
+ \ \"51.105.90.0/28\",\r\n \"51.105.92.52/30\",\r\n \"51.105.170.64/32\",\r\n
+ \ \"51.107.48.240/28\",\r\n \"51.107.49.128/27\",\r\n \"51.107.49.224/27\",\r\n
+ \ \"51.107.52.216/29\",\r\n \"51.107.53.36/30\",\r\n \"51.107.53.40/29\",\r\n
+ \ \"51.107.84.104/32\",\r\n \"51.107.128.24/29\",\r\n \"51.107.144.224/27\",\r\n
+ \ \"51.107.145.192/27\",\r\n \"51.107.145.224/28\",\r\n \"51.107.148.20/30\",\r\n
+ \ \"51.107.148.64/28\",\r\n \"51.107.192.72/29\",\r\n \"51.107.241.0/26\",\r\n
+ \ \"51.107.241.128/27\",\r\n \"51.107.242.224/28\",\r\n \"51.107.249.0/26\",\r\n
+ \ \"51.107.249.128/27\",\r\n \"51.107.250.240/28\",\r\n \"51.116.48.144/28\",\r\n
+ \ \"51.116.48.160/27\",\r\n \"51.116.49.0/27\",\r\n \"51.116.51.192/26\",\r\n
+ \ \"51.116.54.176/28\",\r\n \"51.116.55.64/28\",\r\n \"51.116.144.144/28\",\r\n
+ \ \"51.116.144.160/27\",\r\n \"51.116.145.0/27\",\r\n \"51.116.148.128/26\",\r\n
+ \ \"51.116.149.208/28\",\r\n \"51.120.40.240/28\",\r\n \"51.120.41.128/27\",\r\n
+ \ \"51.120.41.224/27\",\r\n \"51.120.109.192/29\",\r\n \"51.120.224.224/27\",\r\n
+ \ \"51.120.225.192/27\",\r\n \"51.120.225.224/28\",\r\n \"51.120.232.64/26\",\r\n
+ \ \"51.120.233.144/28\",\r\n \"51.120.233.160/27\",\r\n \"51.120.237.0/29\",\r\n
+ \ \"51.124.95.46/32\",\r\n \"51.124.140.143/32\",\r\n \"51.137.162.128/27\",\r\n
+ \ \"51.137.162.224/27\",\r\n \"51.137.163.0/28\",\r\n \"51.137.166.28/30\",\r\n
+ \ \"51.137.166.44/30\",\r\n \"51.137.166.48/28\",\r\n \"51.137.167.192/26\",\r\n
+ \ \"51.138.40.194/32\",\r\n \"51.138.41.75/32\",\r\n \"51.138.160.4/30\",\r\n
+ \ \"51.138.210.144/28\",\r\n \"51.140.5.56/32\",\r\n \"51.140.105.165/32\",\r\n
+ \ \"51.140.202.0/32\",\r\n \"51.143.192.224/27\",\r\n \"51.143.193.192/27\",\r\n
+ \ \"51.143.193.224/28\",\r\n \"51.143.208.128/30\",\r\n \"51.143.209.0/26\",\r\n
+ \ \"51.143.209.64/27\",\r\n \"51.143.212.160/28\",\r\n \"51.144.83.210/32\",\r\n
+ \ \"52.136.48.240/28\",\r\n \"52.136.49.128/27\",\r\n \"52.136.49.224/27\",\r\n
+ \ \"52.136.53.0/26\",\r\n \"52.136.184.128/26\",\r\n \"52.136.184.192/27\",\r\n
+ \ \"52.136.185.160/28\",\r\n \"52.138.41.171/32\",\r\n \"52.138.92.172/30\",\r\n
+ \ \"52.139.106.0/26\",\r\n \"52.139.106.128/27\",\r\n \"52.139.107.192/28\",\r\n
+ \ \"52.140.105.192/27\",\r\n \"52.140.106.160/27\",\r\n \"52.140.106.192/28\",\r\n
+ \ \"52.140.110.96/29\",\r\n \"52.140.110.104/30\",\r\n \"52.140.110.112/28\",\r\n
+ \ \"52.140.110.160/30\",\r\n \"52.140.111.128/26\",\r\n \"52.140.111.224/27\",\r\n
+ \ \"52.142.81.236/32\",\r\n \"52.142.83.87/32\",\r\n \"52.142.84.66/32\",\r\n
+ \ \"52.142.85.51/32\",\r\n \"52.143.91.192/28\",\r\n \"52.146.79.144/28\",\r\n
+ \ \"52.146.79.224/27\",\r\n \"52.146.131.32/28\",\r\n \"52.146.131.48/30\",\r\n
+ \ \"52.146.131.96/27\",\r\n \"52.146.132.128/26\",\r\n \"52.146.133.0/27\",\r\n
+ \ \"52.146.137.16/28\",\r\n \"52.147.43.145/32\",\r\n \"52.147.44.12/32\",\r\n
+ \ \"52.147.97.4/30\",\r\n \"52.147.112.0/26\",\r\n \"52.147.112.64/27\",\r\n
+ \ \"52.147.112.208/28\",\r\n \"52.149.31.64/28\",\r\n \"52.150.139.192/27\",\r\n
+ \ \"52.150.140.160/27\",\r\n \"52.150.140.192/28\",\r\n \"52.150.154.200/29\",\r\n
+ \ \"52.150.154.208/28\",\r\n \"52.150.156.32/30\",\r\n \"52.150.156.40/30\",\r\n
+ \ \"52.150.157.64/26\",\r\n \"52.150.157.128/27\",\r\n \"52.152.207.160/28\",\r\n
+ \ \"52.152.207.192/28\",\r\n \"52.155.218.251/32\",\r\n \"52.156.93.240/28\",\r\n
+ \ \"52.156.103.64/27\",\r\n \"52.156.103.96/28\",\r\n \"52.161.16.73/32\",\r\n
+ \ \"52.162.110.248/29\",\r\n \"52.162.111.24/29\",\r\n \"52.163.56.146/32\",\r\n
+ \ \"52.168.112.0/26\",\r\n \"52.171.134.140/32\",\r\n \"52.172.112.0/28\",\r\n
+ \ \"52.172.112.16/29\",\r\n \"52.172.112.192/26\",\r\n \"52.172.113.32/27\",\r\n
+ \ \"52.172.116.16/28\",\r\n \"52.172.187.21/32\",\r\n \"52.173.240.242/32\",\r\n
+ \ \"52.174.60.141/32\",\r\n \"52.174.146.221/32\",\r\n \"52.175.18.186/32\",\r\n
+ \ \"52.175.35.166/32\",\r\n \"52.179.13.227/32\",\r\n \"52.179.14.109/32\",\r\n
+ \ \"52.179.113.96/27\",\r\n \"52.179.113.128/28\",\r\n \"52.180.162.194/32\",\r\n
+ \ \"52.180.166.172/32\",\r\n \"52.180.178.146/32\",\r\n \"52.180.179.119/32\",\r\n
+ \ \"52.183.33.203/32\",\r\n \"52.186.33.48/28\",\r\n \"52.186.91.216/32\",\r\n
+ \ \"52.187.20.181/32\",\r\n \"52.187.39.99/32\",\r\n \"52.190.33.56/32\",\r\n
+ \ \"52.190.33.61/32\",\r\n \"52.190.33.154/32\",\r\n \"52.191.160.229/32\",\r\n
+ \ \"52.191.173.81/32\",\r\n \"52.224.200.129/32\",\r\n \"52.225.176.80/32\",\r\n
+ \ \"52.228.83.128/27\",\r\n \"52.228.83.224/27\",\r\n \"52.228.84.0/28\",\r\n
+ \ \"52.229.16.14/32\",\r\n \"52.231.74.63/32\",\r\n \"52.231.79.142/32\",\r\n
+ \ \"52.231.148.200/30\",\r\n \"52.231.159.35/32\",\r\n \"52.233.163.218/32\",\r\n
+ \ \"52.237.137.4/32\",\r\n \"52.249.207.163/32\",\r\n \"52.255.83.208/28\",\r\n
+ \ \"52.255.84.176/28\",\r\n \"52.255.84.192/28\",\r\n \"52.255.124.16/28\",\r\n
+ \ \"52.255.124.80/28\",\r\n \"52.255.124.96/28\",\r\n \"65.52.205.19/32\",\r\n
+ \ \"65.52.252.208/28\",\r\n \"102.37.81.64/28\",\r\n \"102.37.160.144/28\",\r\n
+ \ \"102.133.28.72/29\",\r\n \"102.133.28.104/29\",\r\n \"102.133.56.144/28\",\r\n
+ \ \"102.133.56.224/27\",\r\n \"102.133.61.192/26\",\r\n \"102.133.75.174/32\",\r\n
+ \ \"102.133.123.248/29\",\r\n \"102.133.124.24/29\",\r\n
+ \ \"102.133.124.88/29\",\r\n \"102.133.124.96/29\",\r\n \"102.133.156.128/29\",\r\n
+ \ \"102.133.161.242/32\",\r\n \"102.133.162.109/32\",\r\n
+ \ \"102.133.162.196/32\",\r\n \"102.133.162.221/32\",\r\n
+ \ \"102.133.163.185/32\",\r\n \"102.133.217.80/28\",\r\n
+ \ \"102.133.217.96/27\",\r\n \"102.133.218.0/27\",\r\n \"102.133.220.192/30\",\r\n
+ \ \"102.133.221.64/26\",\r\n \"102.133.221.128/27\",\r\n
+ \ \"102.133.236.198/32\",\r\n \"104.42.100.80/32\",\r\n \"104.42.194.173/32\",\r\n
+ \ \"104.42.239.93/32\",\r\n \"104.44.89.44/32\",\r\n \"104.46.112.239/32\",\r\n
+ \ \"104.46.176.164/30\",\r\n \"104.46.176.176/28\",\r\n \"104.46.178.4/30\",\r\n
+ \ \"104.46.178.192/26\",\r\n \"104.46.179.0/27\",\r\n \"104.46.183.128/28\",\r\n
+ \ \"104.46.239.137/32\",\r\n \"104.211.88.173/32\",\r\n \"104.211.222.193/32\",\r\n
+ \ \"104.214.49.162/32\",\r\n \"104.214.233.86/32\",\r\n \"104.215.9.217/32\",\r\n
+ \ \"137.117.70.195/32\",\r\n \"137.135.45.32/32\",\r\n \"168.61.158.107/32\",\r\n
+ \ \"168.61.165.229/32\",\r\n \"168.63.20.177/32\",\r\n \"191.232.39.30/32\",\r\n
+ \ \"191.232.162.204/32\",\r\n \"191.233.10.48/28\",\r\n \"191.233.10.64/27\",\r\n
+ \ \"191.233.10.128/27\",\r\n \"191.233.15.64/26\",\r\n \"191.233.205.72/29\",\r\n
+ \ \"191.233.205.104/29\",\r\n \"191.234.138.136/29\",\r\n
+ \ \"191.234.138.148/30\",\r\n \"191.234.139.192/26\",\r\n
+ \ \"191.234.142.32/27\",\r\n \"191.235.227.128/27\",\r\n
+ \ \"191.235.227.224/27\",\r\n \"191.235.228.0/28\",\r\n \"191.238.72.80/28\",\r\n
+ \ \"2603:1000:4::680/122\",\r\n \"2603:1000:104::180/122\",\r\n
+ \ \"2603:1000:104::380/122\",\r\n \"2603:1000:104:1::640/122\",\r\n
+ \ \"2603:1010:6::80/122\",\r\n \"2603:1010:6:1::640/122\",\r\n
+ \ \"2603:1010:101::680/122\",\r\n \"2603:1010:304::680/122\",\r\n
+ \ \"2603:1010:404::680/122\",\r\n \"2603:1020:5::80/122\",\r\n
+ \ \"2603:1020:5:1::640/122\",\r\n \"2603:1020:206::80/122\",\r\n
+ \ \"2603:1020:206:1::640/122\",\r\n \"2603:1020:305::680/122\",\r\n
+ \ \"2603:1020:405::680/122\",\r\n \"2603:1020:605::680/122\",\r\n
+ \ \"2603:1020:705::80/122\",\r\n \"2603:1020:705:1::640/122\",\r\n
+ \ \"2603:1020:805::80/122\",\r\n \"2603:1020:805:1::640/122\",\r\n
+ \ \"2603:1020:905::680/122\",\r\n \"2603:1020:a04::80/122\",\r\n
+ \ \"2603:1020:a04:1::640/122\",\r\n \"2603:1020:b04::680/122\",\r\n
+ \ \"2603:1020:c04::80/122\",\r\n \"2603:1020:c04:1::640/122\",\r\n
+ \ \"2603:1020:d04::680/122\",\r\n \"2603:1020:e04::80/122\",\r\n
+ \ \"2603:1020:e04::358/125\",\r\n \"2603:1020:e04:1::640/122\",\r\n
+ \ \"2603:1020:e04:2::/122\",\r\n \"2603:1020:e04:3::280/122\",\r\n
+ \ \"2603:1020:f04::680/122\",\r\n \"2603:1020:f04:2::/122\",\r\n
+ \ \"2603:1020:1004::640/122\",\r\n \"2603:1020:1004:1::80/122\",\r\n
+ \ \"2603:1020:1004:1::1f0/125\",\r\n \"2603:1020:1004:1::300/122\",\r\n
+ \ \"2603:1020:1004:1::740/122\",\r\n \"2603:1020:1104::700/121\",\r\n
+ \ \"2603:1020:1104:1::150/125\",\r\n \"2603:1020:1104:1::480/122\",\r\n
+ \ \"2603:1030:f:1::2b8/125\",\r\n \"2603:1030:f:1::680/122\",\r\n
+ \ \"2603:1030:f:2::600/121\",\r\n \"2603:1030:10::80/122\",\r\n
+ \ \"2603:1030:10:1::640/122\",\r\n \"2603:1030:104::80/122\",\r\n
+ \ \"2603:1030:104:1::640/122\",\r\n \"2603:1030:107::730/125\",\r\n
+ \ \"2603:1030:107::740/122\",\r\n \"2603:1030:107::780/122\",\r\n
+ \ \"2603:1030:210::80/122\",\r\n \"2603:1030:210:1::640/122\",\r\n
+ \ \"2603:1030:40b:1::640/122\",\r\n \"2603:1030:40c::80/122\",\r\n
+ \ \"2603:1030:40c:1::640/122\",\r\n \"2603:1030:504::80/122\",\r\n
+ \ \"2603:1030:504::1f0/125\",\r\n \"2603:1030:504::300/122\",\r\n
+ \ \"2603:1030:504:1::640/122\",\r\n \"2603:1030:504:2::200/122\",\r\n
+ \ \"2603:1030:608::680/122\",\r\n \"2603:1030:807::80/122\",\r\n
+ \ \"2603:1030:807:1::640/122\",\r\n \"2603:1030:a07::680/122\",\r\n
+ \ \"2603:1030:b04::680/122\",\r\n \"2603:1030:c06:1::640/122\",\r\n
+ \ \"2603:1030:f05::80/122\",\r\n \"2603:1030:f05:1::640/122\",\r\n
+ \ \"2603:1030:1005::680/122\",\r\n \"2603:1040:5::180/122\",\r\n
+ \ \"2603:1040:5:1::640/122\",\r\n \"2603:1040:207::680/122\",\r\n
+ \ \"2603:1040:407::80/122\",\r\n \"2603:1040:407:1::640/122\",\r\n
+ \ \"2603:1040:606::680/122\",\r\n \"2603:1040:806::680/122\",\r\n
+ \ \"2603:1040:904::80/122\",\r\n \"2603:1040:904:1::640/122\",\r\n
+ \ \"2603:1040:a06::180/122\",\r\n \"2603:1040:a06:1::640/122\",\r\n
+ \ \"2603:1040:b04::680/122\",\r\n \"2603:1040:c06::680/122\",\r\n
+ \ \"2603:1040:d04::640/122\",\r\n \"2603:1040:d04:1::80/122\",\r\n
+ \ \"2603:1040:d04:1::1f0/125\",\r\n \"2603:1040:d04:1::300/122\",\r\n
+ \ \"2603:1040:d04:1::740/122\",\r\n \"2603:1040:f05::80/122\",\r\n
+ \ \"2603:1040:f05::358/125\",\r\n \"2603:1040:f05:1::640/122\",\r\n
+ \ \"2603:1040:f05:2::80/121\",\r\n \"2603:1040:1104::700/121\",\r\n
+ \ \"2603:1040:1104:1::150/125\",\r\n \"2603:1040:1104:1::500/122\",\r\n
+ \ \"2603:1050:6::80/122\",\r\n \"2603:1050:6:1::640/122\",\r\n
+ \ \"2603:1050:403::640/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory\",\r\n \"id\": \"DataFactory\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"13.67.10.208/28\",\r\n
+ \ \"13.69.67.192/28\",\r\n \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n
+ \ \"13.69.230.96/28\",\r\n \"13.70.74.144/28\",\r\n \"13.71.175.80/28\",\r\n
+ \ \"13.71.199.0/28\",\r\n \"13.73.244.32/28\",\r\n \"13.73.253.96/29\",\r\n
+ \ \"13.74.108.224/28\",\r\n \"13.75.39.112/28\",\r\n \"13.77.53.160/28\",\r\n
+ \ \"13.78.109.192/28\",\r\n \"13.86.219.208/28\",\r\n \"13.89.174.192/28\",\r\n
+ \ \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n \"13.104.252.224/28\",\r\n
+ \ \"13.104.253.48/28\",\r\n \"13.104.254.128/28\",\r\n \"20.36.117.208/28\",\r\n
+ \ \"20.36.124.32/28\",\r\n \"20.36.124.128/25\",\r\n \"20.36.125.0/26\",\r\n
+ \ \"20.37.68.144/28\",\r\n \"20.37.69.128/25\",\r\n \"20.37.70.0/26\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.37.193.0/25\",\r\n
+ \ \"20.37.193.128/26\",\r\n \"20.37.198.224/29\",\r\n \"20.37.228.16/28\",\r\n
+ \ \"20.37.228.192/26\",\r\n \"20.37.229.0/25\",\r\n \"20.38.80.192/26\",\r\n
+ \ \"20.38.82.0/23\",\r\n \"20.38.141.16/28\",\r\n \"20.38.141.128/25\",\r\n
+ \ \"20.38.142.0/26\",\r\n \"20.38.147.224/28\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"20.40.206.224/29\",\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n
+ \ \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n \"20.41.197.112/29\",\r\n
+ \ \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n \"20.42.2.0/23\",\r\n
+ \ \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n
+ \ \"20.43.44.208/29\",\r\n \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n
+ \ \"20.43.70.120/29\",\r\n \"20.43.121.48/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.44.10.64/28\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.45.123.160/28\",\r\n \"20.49.83.224/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"20.49.111.0/29\",\r\n \"20.49.114.24/29\",\r\n
+ \ \"20.49.118.128/25\",\r\n \"20.50.68.56/29\",\r\n \"20.52.64.0/28\",\r\n
+ \ \"20.53.0.48/28\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n \"20.72.22.0/23\",\r\n
+ \ \"20.72.28.48/28\",\r\n \"20.150.162.0/23\",\r\n \"20.150.173.16/28\",\r\n
+ \ \"20.150.181.112/28\",\r\n \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n
+ \ \"20.189.109.232/29\",\r\n \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n
+ \ \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n \"20.192.162.0/23\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"20.192.226.0/23\",\r\n \"20.192.238.96/28\",\r\n
+ \ \"20.193.205.144/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n \"23.98.106.128/29\",\r\n
+ \ \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n \"40.64.132.232/29\",\r\n
+ \ \"40.69.108.160/28\",\r\n \"40.69.111.48/28\",\r\n \"40.70.148.160/28\",\r\n
+ \ \"40.71.14.32/28\",\r\n \"40.74.24.192/26\",\r\n \"40.74.26.0/23\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"40.78.196.128/28\",\r\n
+ \ \"40.78.229.96/28\",\r\n \"40.78.236.176/28\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n
+ \ \"40.79.146.240/28\",\r\n \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n
+ \ \"40.79.187.208/28\",\r\n \"40.79.195.224/28\",\r\n \"40.80.51.160/28\",\r\n
+ \ \"40.80.56.128/25\",\r\n \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n
+ \ \"40.80.168.128/25\",\r\n \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n
+ \ \"40.80.176.96/28\",\r\n \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n
+ \ \"40.82.249.64/26\",\r\n \"40.82.250.0/23\",\r\n \"40.89.16.128/25\",\r\n
+ \ \"40.89.17.0/26\",\r\n \"40.89.20.224/29\",\r\n \"40.113.176.232/29\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"40.120.8.56/29\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"40.122.0.16/28\",\r\n
+ \ \"51.12.18.0/23\",\r\n \"51.12.26.0/23\",\r\n \"51.12.101.176/28\",\r\n
+ \ \"51.12.206.16/28\",\r\n \"51.12.229.64/28\",\r\n \"51.12.237.64/28\",\r\n
+ \ \"51.13.128.0/28\",\r\n \"51.104.9.32/28\",\r\n \"51.104.24.128/25\",\r\n
+ \ \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n \"51.105.67.240/28\",\r\n
+ \ \"51.105.75.240/28\",\r\n \"51.105.92.176/28\",\r\n \"51.105.93.64/26\",\r\n
+ \ \"51.105.93.128/25\",\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n
+ \ \"51.107.52.128/26\",\r\n \"51.107.128.0/28\",\r\n \"51.107.148.80/28\",\r\n
+ \ \"51.107.149.0/25\",\r\n \"51.107.149.128/26\",\r\n \"51.107.192.80/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"51.120.44.208/28\",\r\n \"51.120.45.64/26\",\r\n
+ \ \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n \"51.120.109.96/28\",\r\n
+ \ \"51.120.213.32/28\",\r\n \"51.120.228.224/27\",\r\n \"51.120.229.64/26\",\r\n
+ \ \"51.120.229.128/25\",\r\n \"51.120.238.0/23\",\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.138.160.16/28\",\r\n
+ \ \"51.140.212.112/28\",\r\n \"52.138.92.128/28\",\r\n \"52.138.229.32/28\",\r\n
+ \ \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n \"52.140.108.208/29\",\r\n
+ \ \"52.150.136.192/26\",\r\n \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n
+ \ \"52.150.155.0/24\",\r\n \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n
+ \ \"52.162.111.48/28\",\r\n \"52.167.107.224/28\",\r\n \"52.176.232.16/28\",\r\n
+ \ \"52.182.141.16/28\",\r\n \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n
+ \ \"52.228.86.144/29\",\r\n \"52.231.20.64/28\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\",\r\n \"52.236.187.112/28\",\r\n \"52.246.155.224/28\",\r\n
+ \ \"52.250.228.0/29\",\r\n \"102.37.64.96/28\",\r\n \"102.133.60.48/28\",\r\n
+ \ \"102.133.60.192/26\",\r\n \"102.133.61.0/25\",\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n \"191.233.12.0/23\",\r\n
+ \ \"191.233.54.224/28\",\r\n \"191.233.205.160/28\",\r\n
+ \ \"191.234.137.32/29\",\r\n \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n
+ \ \"191.234.149.0/28\",\r\n \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n
+ \ \"191.235.225.0/26\",\r\n \"2603:1000:4::440/122\",\r\n
+ \ \"2603:1000:4::500/121\",\r\n \"2603:1000:4:402::330/124\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\",\r\n \"2603:1010:304::440/122\",\r\n
+ \ \"2603:1010:304::500/121\",\r\n \"2603:1010:304:402::330/124\",\r\n
+ \ \"2603:1010:404::440/122\",\r\n \"2603:1010:404::500/121\",\r\n
+ \ \"2603:1010:404:402::330/124\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\",\r\n \"2603:1020:305::440/122\",\r\n
+ \ \"2603:1020:305::500/121\",\r\n \"2603:1020:305:402::330/124\",\r\n
+ \ \"2603:1020:405::440/122\",\r\n \"2603:1020:405::500/121\",\r\n
+ \ \"2603:1020:405:402::330/124\",\r\n \"2603:1020:605::440/122\",\r\n
+ \ \"2603:1020:605::500/121\",\r\n \"2603:1020:605:402::330/124\",\r\n
+ \ \"2603:1020:705:1::480/121\",\r\n \"2603:1020:705:1::500/122\",\r\n
+ \ \"2603:1020:705:1::700/121\",\r\n \"2603:1020:705:1::780/122\",\r\n
+ \ \"2603:1020:705:402::330/124\",\r\n \"2603:1020:705:802::210/124\",\r\n
+ \ \"2603:1020:705:c02::210/124\",\r\n \"2603:1020:805:1::480/121\",\r\n
+ \ \"2603:1020:805:1::500/122\",\r\n \"2603:1020:805:1::700/121\",\r\n
+ \ \"2603:1020:805:1::780/122\",\r\n \"2603:1020:805:402::330/124\",\r\n
+ \ \"2603:1020:805:802::210/124\",\r\n \"2603:1020:805:c02::210/124\",\r\n
+ \ \"2603:1020:905::440/122\",\r\n \"2603:1020:905::500/121\",\r\n
+ \ \"2603:1020:905:402::330/124\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\",\r\n
+ \ \"2603:1020:b04::440/122\",\r\n \"2603:1020:b04::500/121\",\r\n
+ \ \"2603:1020:b04:402::330/124\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\",\r\n
+ \ \"2603:1020:d04::440/122\",\r\n \"2603:1020:d04::500/121\",\r\n
+ \ \"2603:1020:d04:402::330/124\",\r\n \"2603:1020:e04:1::480/121\",\r\n
+ \ \"2603:1020:e04:1::500/122\",\r\n \"2603:1020:e04:1::700/121\",\r\n
+ \ \"2603:1020:e04:1::780/122\",\r\n \"2603:1020:e04:402::330/124\",\r\n
+ \ \"2603:1020:e04:802::210/124\",\r\n \"2603:1020:e04:c02::210/124\",\r\n
+ \ \"2603:1020:f04::440/122\",\r\n \"2603:1020:f04::500/121\",\r\n
+ \ \"2603:1020:f04:402::330/124\",\r\n \"2603:1020:1004::480/121\",\r\n
+ \ \"2603:1020:1004::500/122\",\r\n \"2603:1020:1004::700/121\",\r\n
+ \ \"2603:1020:1004::780/122\",\r\n \"2603:1020:1004:400::240/124\",\r\n
+ \ \"2603:1020:1004:800::340/124\",\r\n \"2603:1020:1004:c02::380/124\",\r\n
+ \ \"2603:1020:1104::600/121\",\r\n \"2603:1020:1104:400::500/124\",\r\n
+ \ \"2603:1030:f:1::440/122\",\r\n \"2603:1030:f:1::500/121\",\r\n
+ \ \"2603:1030:f:400::b30/124\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\",\r\n
+ \ \"2603:1030:104:1::480/121\",\r\n \"2603:1030:104:1::500/122\",\r\n
+ \ \"2603:1030:104:1::700/121\",\r\n \"2603:1030:104:1::780/122\",\r\n
+ \ \"2603:1030:104:402::330/124\",\r\n \"2603:1030:107::600/121\",\r\n
+ \ \"2603:1030:107:400::380/124\",\r\n \"2603:1030:210:1::480/121\",\r\n
+ \ \"2603:1030:210:1::500/122\",\r\n \"2603:1030:210:1::700/121\",\r\n
+ \ \"2603:1030:210:1::780/122\",\r\n \"2603:1030:210:402::330/124\",\r\n
+ \ \"2603:1030:210:802::210/124\",\r\n \"2603:1030:210:c02::210/124\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\",\r\n \"2603:1030:40c:1::480/121\",\r\n
+ \ \"2603:1030:40c:1::500/122\",\r\n \"2603:1030:40c:1::700/121\",\r\n
+ \ \"2603:1030:40c:1::780/122\",\r\n \"2603:1030:40c:402::330/124\",\r\n
+ \ \"2603:1030:40c:802::210/124\",\r\n \"2603:1030:40c:c02::210/124\",\r\n
+ \ \"2603:1030:504:1::480/121\",\r\n \"2603:1030:504:1::500/122\",\r\n
+ \ \"2603:1030:504:1::700/121\",\r\n \"2603:1030:504:1::780/122\",\r\n
+ \ \"2603:1030:504:402::240/124\",\r\n \"2603:1030:504:802::340/124\",\r\n
+ \ \"2603:1030:504:c02::380/124\",\r\n \"2603:1030:608::440/122\",\r\n
+ \ \"2603:1030:608::500/121\",\r\n \"2603:1030:608:402::330/124\",\r\n
+ \ \"2603:1030:807:1::480/121\",\r\n \"2603:1030:807:1::500/122\",\r\n
+ \ \"2603:1030:807:1::700/121\",\r\n \"2603:1030:807:1::780/122\",\r\n
+ \ \"2603:1030:807:402::330/124\",\r\n \"2603:1030:807:802::210/124\",\r\n
+ \ \"2603:1030:807:c02::210/124\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\",\r\n
+ \ \"2603:1030:b04::440/122\",\r\n \"2603:1030:b04::500/121\",\r\n
+ \ \"2603:1030:b04:402::330/124\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\",\r\n
+ \ \"2603:1030:f05:1::480/121\",\r\n \"2603:1030:f05:1::500/122\",\r\n
+ \ \"2603:1030:f05:1::700/121\",\r\n \"2603:1030:f05:1::780/122\",\r\n
+ \ \"2603:1030:f05:402::330/124\",\r\n \"2603:1030:f05:802::210/124\",\r\n
+ \ \"2603:1030:f05:c02::210/124\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\",\r\n
+ \ \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\",\r\n \"2603:1040:207::440/122\",\r\n
+ \ \"2603:1040:207::500/121\",\r\n \"2603:1040:207:402::330/124\",\r\n
+ \ \"2603:1040:407:1::480/121\",\r\n \"2603:1040:407:1::500/122\",\r\n
+ \ \"2603:1040:407:1::700/121\",\r\n \"2603:1040:407:1::780/122\",\r\n
+ \ \"2603:1040:407:402::330/124\",\r\n \"2603:1040:407:802::210/124\",\r\n
+ \ \"2603:1040:407:c02::210/124\",\r\n \"2603:1040:606::440/122\",\r\n
+ \ \"2603:1040:606::500/121\",\r\n \"2603:1040:606:402::330/124\",\r\n
+ \ \"2603:1040:806::440/122\",\r\n \"2603:1040:806::500/121\",\r\n
+ \ \"2603:1040:806:402::330/124\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\",\r\n
+ \ \"2603:1040:a06::/121\",\r\n \"2603:1040:a06::80/122\",\r\n
+ \ \"2603:1040:a06:1::480/121\",\r\n \"2603:1040:a06:1::500/122\",\r\n
+ \ \"2603:1040:a06:1::700/121\",\r\n \"2603:1040:a06:1::780/122\",\r\n
+ \ \"2603:1040:a06:402::330/124\",\r\n \"2603:1040:a06:802::210/124\",\r\n
+ \ \"2603:1040:a06:c02::210/124\",\r\n \"2603:1040:b04::440/122\",\r\n
+ \ \"2603:1040:b04::500/121\",\r\n \"2603:1040:b04:402::330/124\",\r\n
+ \ \"2603:1040:c06::440/122\",\r\n \"2603:1040:c06::500/121\",\r\n
+ \ \"2603:1040:c06:402::330/124\",\r\n \"2603:1040:d04::480/121\",\r\n
+ \ \"2603:1040:d04::500/122\",\r\n \"2603:1040:d04::700/121\",\r\n
+ \ \"2603:1040:d04::780/122\",\r\n \"2603:1040:d04:400::240/124\",\r\n
+ \ \"2603:1040:d04:800::340/124\",\r\n \"2603:1040:d04:c02::380/124\",\r\n
+ \ \"2603:1040:f05:1::480/121\",\r\n \"2603:1040:f05:1::500/122\",\r\n
+ \ \"2603:1040:f05:1::700/121\",\r\n \"2603:1040:f05:1::780/122\",\r\n
+ \ \"2603:1040:f05:402::330/124\",\r\n \"2603:1040:f05:802::210/124\",\r\n
+ \ \"2603:1040:f05:c02::210/124\",\r\n \"2603:1040:1104::600/121\",\r\n
+ \ \"2603:1040:1104:400::500/124\",\r\n \"2603:1050:6:1::480/121\",\r\n
+ \ \"2603:1050:6:1::500/122\",\r\n \"2603:1050:6:1::700/121\",\r\n
+ \ \"2603:1050:6:1::780/122\",\r\n \"2603:1050:6:402::330/124\",\r\n
+ \ \"2603:1050:6:802::210/124\",\r\n \"2603:1050:6:c02::210/124\",\r\n
+ \ \"2603:1050:403::480/121\",\r\n \"2603:1050:403::500/122\",\r\n
+ \ \"2603:1050:403:400::240/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.AustraliaEast\",\r\n \"id\": \"DataFactory.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.144/28\",\r\n \"20.37.193.0/25\",\r\n \"20.37.193.128/26\",\r\n
+ \ \"20.37.198.224/29\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.AustraliaSoutheast\",\r\n
+ \ \"id\": \"DataFactory.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.160/28\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.BrazilSouth\",\r\n \"id\": \"DataFactory.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.205.160/28\",\r\n \"191.234.137.32/29\",\r\n
+ \ \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n \"191.234.149.0/28\",\r\n
+ \ \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n \"191.235.225.0/26\",\r\n
+ \ \"2603:1050:6:1::480/121\",\r\n \"2603:1050:6:1::500/122\",\r\n
+ \ \"2603:1050:6:1::700/121\",\r\n \"2603:1050:6:1::780/122\",\r\n
+ \ \"2603:1050:6:402::330/124\",\r\n \"2603:1050:6:802::210/124\",\r\n
+ \ \"2603:1050:6:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.CanadaCentral\",\r\n \"id\": \"DataFactory.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.175.80/28\",\r\n \"20.38.147.224/28\",\r\n
+ \ \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n \"52.228.86.144/29\",\r\n
+ \ \"52.246.155.224/28\",\r\n \"2603:1030:f05:1::480/121\",\r\n
+ \ \"2603:1030:f05:1::500/122\",\r\n \"2603:1030:f05:1::700/121\",\r\n
+ \ \"2603:1030:f05:1::780/122\",\r\n \"2603:1030:f05:402::330/124\",\r\n
+ \ \"2603:1030:f05:802::210/124\",\r\n \"2603:1030:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CanadaEast\",\r\n
+ \ \"id\": \"DataFactory.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.160/28\",\r\n
+ \ \"40.69.111.48/28\",\r\n \"40.89.16.128/25\",\r\n \"40.89.17.0/26\",\r\n
+ \ \"40.89.20.224/29\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralIndia\",\r\n
+ \ \"id\": \"DataFactory.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.121.48/28\",\r\n \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n
+ \ \"40.80.51.160/28\",\r\n \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n
+ \ \"52.140.108.208/29\",\r\n \"2603:1040:a06::/121\",\r\n
+ \ \"2603:1040:a06::80/122\",\r\n \"2603:1040:a06:1::480/121\",\r\n
+ \ \"2603:1040:a06:1::500/122\",\r\n \"2603:1040:a06:1::700/121\",\r\n
+ \ \"2603:1040:a06:1::780/122\",\r\n \"2603:1040:a06:402::330/124\",\r\n
+ \ \"2603:1040:a06:802::210/124\",\r\n \"2603:1040:a06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralUS\",\r\n
+ \ \"id\": \"DataFactory.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.89.174.192/28\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.40.206.224/29\",\r\n
+ \ \"20.44.10.64/28\",\r\n \"52.182.141.16/28\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.EastAsia\",\r\n
+ \ \"id\": \"DataFactory.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.75.39.112/28\",\r\n
+ \ \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n \"20.189.109.232/29\",\r\n
+ \ \"2603:1040:207::440/122\",\r\n \"2603:1040:207::500/121\",\r\n
+ \ \"2603:1040:207:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS\",\r\n \"id\": \"DataFactory.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.2.0/23\",\r\n \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n
+ \ \"20.49.111.0/29\",\r\n \"40.71.14.32/28\",\r\n \"40.78.229.96/28\",\r\n
+ \ \"2603:1030:210:1::480/121\",\r\n \"2603:1030:210:1::500/122\",\r\n
+ \ \"2603:1030:210:1::700/121\",\r\n \"2603:1030:210:1::780/122\",\r\n
+ \ \"2603:1030:210:402::330/124\",\r\n \"2603:1030:210:802::210/124\",\r\n
+ \ \"2603:1030:210:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2\",\r\n \"id\": \"DataFactory.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"40.70.148.160/28\",\r\n \"52.167.107.224/28\",\r\n
+ \ \"2603:1030:40c:1::480/121\",\r\n \"2603:1030:40c:1::500/122\",\r\n
+ \ \"2603:1030:40c:1::700/121\",\r\n \"2603:1030:40c:1::780/122\",\r\n
+ \ \"2603:1030:40c:402::330/124\",\r\n \"2603:1030:40c:802::210/124\",\r\n
+ \ \"2603:1030:40c:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2EUAP\",\r\n \"id\": \"DataFactory.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"52.138.92.128/28\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.FranceCentral\",\r\n \"id\": \"DataFactory.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n \"20.43.44.208/29\",\r\n
+ \ \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n \"40.79.146.240/28\",\r\n
+ \ \"2603:1020:805:1::480/121\",\r\n \"2603:1020:805:1::500/122\",\r\n
+ \ \"2603:1020:805:1::700/121\",\r\n \"2603:1020:805:1::780/122\",\r\n
+ \ \"2603:1020:805:402::330/124\",\r\n \"2603:1020:805:802::210/124\",\r\n
+ \ \"2603:1020:805:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.GermanyWestCentral\",\r\n \"id\":
+ \"DataFactory.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.0/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanEast\",\r\n
+ \ \"id\": \"DataFactory.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.78.109.192/28\",\r\n
+ \ \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n \"20.43.70.120/29\",\r\n
+ \ \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n \"40.79.187.208/28\",\r\n
+ \ \"40.79.195.224/28\",\r\n \"2603:1040:407:1::480/121\",\r\n
+ \ \"2603:1040:407:1::500/122\",\r\n \"2603:1040:407:1::700/121\",\r\n
+ \ \"2603:1040:407:1::780/122\",\r\n \"2603:1040:407:402::330/124\",\r\n
+ \ \"2603:1040:407:802::210/124\",\r\n \"2603:1040:407:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanWest\",\r\n
+ \ \"id\": \"DataFactory.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.56.128/25\",\r\n
+ \ \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n \"40.80.176.96/28\",\r\n
+ \ \"2603:1040:606::440/122\",\r\n \"2603:1040:606::500/121\",\r\n
+ \ \"2603:1040:606:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.KoreaCentral\",\r\n \"id\": \"DataFactory.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"52.231.20.64/28\",\r\n \"2603:1040:f05:1::480/121\",\r\n
+ \ \"2603:1040:f05:1::500/122\",\r\n \"2603:1040:f05:1::700/121\",\r\n
+ \ \"2603:1040:f05:1::780/122\",\r\n \"2603:1040:f05:402::330/124\",\r\n
+ \ \"2603:1040:f05:802::210/124\",\r\n \"2603:1040:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.KoreaSouth\",\r\n
+ \ \"id\": \"DataFactory.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.168.128/25\",\r\n
+ \ \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"DataFactory.NorthCentralUS\",\r\n \"id\": \"DataFactory.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.24/29\",\r\n \"20.49.118.128/25\",\r\n
+ \ \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n \"52.162.111.48/28\",\r\n
+ \ \"2603:1030:608::440/122\",\r\n \"2603:1030:608::500/121\",\r\n
+ \ \"2603:1030:608:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.NorthEurope\",\r\n \"id\": \"DataFactory.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.230.96/28\",\r\n \"13.74.108.224/28\",\r\n
+ \ \"20.38.80.192/26\",\r\n \"20.38.82.0/23\",\r\n \"20.50.68.56/29\",\r\n
+ \ \"52.138.229.32/28\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.NorwayEast\",\r\n
+ \ \"id\": \"DataFactory.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.208/28\",\r\n
+ \ \"51.120.45.64/26\",\r\n \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n
+ \ \"51.120.109.96/28\",\r\n \"51.120.213.32/28\",\r\n \"51.120.238.0/23\",\r\n
+ \ \"2603:1020:e04:1::480/121\",\r\n \"2603:1020:e04:1::500/122\",\r\n
+ \ \"2603:1020:e04:1::700/121\",\r\n \"2603:1020:e04:1::780/122\",\r\n
+ \ \"2603:1020:e04:402::330/124\",\r\n \"2603:1020:e04:802::210/124\",\r\n
+ \ \"2603:1020:e04:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthAfricaNorth\",\r\n \"id\":
+ \"DataFactory.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthCentralUS\",\r\n \"id\":
+ \"DataFactory.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.32/28\",\r\n
+ \ \"13.73.253.96/29\",\r\n \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n
+ \ \"20.45.123.160/28\",\r\n \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"2603:1030:807:1::480/121\",\r\n
+ \ \"2603:1030:807:1::500/122\",\r\n \"2603:1030:807:1::700/121\",\r\n
+ \ \"2603:1030:807:1::780/122\",\r\n \"2603:1030:807:402::330/124\",\r\n
+ \ \"2603:1030:807:802::210/124\",\r\n \"2603:1030:807:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SoutheastAsia\",\r\n
+ \ \"id\": \"DataFactory.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.10.208/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n
+ \ \"23.98.106.128/29\",\r\n \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n
+ \ \"40.78.236.176/28\",\r\n \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthIndia\",\r\n \"id\": \"DataFactory.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n
+ \ \"20.41.197.112/29\",\r\n \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"40.78.196.128/28\",\r\n \"2603:1040:c06::440/122\",\r\n
+ \ \"2603:1040:c06::500/121\",\r\n \"2603:1040:c06:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SwitzerlandNorth\",\r\n
+ \ \"id\": \"DataFactory.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n \"51.107.52.128/26\",\r\n
+ \ \"51.107.128.0/28\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UAENorth\",\r\n
+ \ \"id\": \"DataFactory.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.38.141.16/28\",\r\n
+ \ \"20.38.141.128/25\",\r\n \"20.38.142.0/26\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKSouth\",\r\n
+ \ \"id\": \"DataFactory.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.32/28\",\r\n
+ \ \"51.104.24.128/25\",\r\n \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n
+ \ \"51.105.67.240/28\",\r\n \"51.105.75.240/28\",\r\n \"2603:1020:705:1::480/121\",\r\n
+ \ \"2603:1020:705:1::500/122\",\r\n \"2603:1020:705:1::700/121\",\r\n
+ \ \"2603:1020:705:1::780/122\",\r\n \"2603:1020:705:402::330/124\",\r\n
+ \ \"2603:1020:705:802::210/124\",\r\n \"2603:1020:705:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKWest\",\r\n
+ \ \"id\": \"DataFactory.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.140.212.112/28\",\r\n
+ \ \"2603:1020:605::440/122\",\r\n \"2603:1020:605::500/121\",\r\n
+ \ \"2603:1020:605:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestCentralUS\",\r\n \"id\": \"DataFactory.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.199.0/28\",\r\n \"52.150.136.192/26\",\r\n
+ \ \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n \"52.150.155.0/24\",\r\n
+ \ \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n \"2603:1030:b04::440/122\",\r\n
+ \ \"2603:1030:b04::500/121\",\r\n \"2603:1030:b04:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestEurope\",\r\n
+ \ \"id\": \"DataFactory.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.192/28\",\r\n
+ \ \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n \"40.74.24.192/26\",\r\n
+ \ \"40.74.26.0/23\",\r\n \"40.113.176.232/29\",\r\n \"52.236.187.112/28\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestUS\",\r\n \"id\": \"DataFactory.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.219.208/28\",\r\n \"40.82.249.64/26\",\r\n
+ \ \"40.82.250.0/23\",\r\n \"52.250.228.0/29\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestUS2\",\r\n
+ \ \"id\": \"DataFactory.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"40.64.132.232/29\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n
+ \ \"13.69.226.128/25\",\r\n \"13.71.171.0/24\",\r\n \"13.74.106.128/25\",\r\n
+ \ \"13.75.35.0/24\",\r\n \"13.77.51.0/24\",\r\n \"13.78.107.0/24\",\r\n
+ \ \"40.78.242.0/25\",\r\n \"40.79.138.192/26\",\r\n \"40.120.64.224/27\",\r\n
+ \ \"51.107.129.64/27\",\r\n \"51.140.147.0/24\",\r\n \"65.52.252.128/27\",\r\n
+ \ \"102.133.251.96/27\",\r\n \"104.211.80.0/24\",\r\n \"191.233.202.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.51.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.202.0/24\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.171.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.80.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.35.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.138.192/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.107.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.128/25\",\r\n \"13.74.106.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.251.96/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.224/27\",\r\n \"65.52.252.128/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.147.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n \"40.78.242.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub\",\r\n
+ \ \"id\": \"EventHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureEventHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.195.117/32\",\r\n \"13.65.209.24/32\",\r\n
+ \ \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n \"13.66.149.0/26\",\r\n
+ \ \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n
+ \ \"13.69.111.128/26\",\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n
+ \ \"13.69.253.135/32\",\r\n \"13.69.255.140/32\",\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.71.30.214/32\",\r\n
+ \ \"13.71.123.78/32\",\r\n \"13.71.154.11/32\",\r\n \"13.71.170.16/28\",\r\n
+ \ \"13.71.177.128/26\",\r\n \"13.71.194.64/27\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"13.74.107.0/26\",\r\n \"13.75.34.64/26\",\r\n \"13.76.179.223/32\",\r\n
+ \ \"13.76.216.217/32\",\r\n \"13.77.50.32/27\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"13.78.149.209/32\",\r\n \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n
+ \ \"13.84.145.196/32\",\r\n \"13.87.34.139/32\",\r\n \"13.87.34.243/32\",\r\n
+ \ \"13.87.56.32/27\",\r\n \"13.87.102.63/32\",\r\n \"13.87.102.68/32\",\r\n
+ \ \"13.87.122.32/27\",\r\n \"13.88.20.117/32\",\r\n \"13.88.26.28/32\",\r\n
+ \ \"13.89.58.37/32\",\r\n \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n
+ \ \"13.89.178.112/28\",\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n
+ \ \"13.91.61.11/32\",\r\n \"13.92.124.151/32\",\r\n \"13.92.180.208/32\",\r\n
+ \ \"13.92.190.184/32\",\r\n \"13.93.226.138/32\",\r\n \"13.94.47.61/32\",\r\n
+ \ \"20.36.46.142/32\",\r\n \"20.36.74.130/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"20.36.114.32/27\",\r\n \"20.36.144.64/26\",\r\n \"20.37.74.0/27\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.42.68.64/26\",\r\n \"20.42.74.0/26\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.43.126.64/26\",\r\n
+ \ \"20.44.2.128/26\",\r\n \"20.44.13.64/26\",\r\n \"20.44.26.64/26\",\r\n
+ \ \"20.44.31.128/26\",\r\n \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n
+ \ \"20.47.216.64/26\",\r\n \"20.49.93.64/27\",\r\n \"20.49.93.128/27\",\r\n
+ \ \"20.49.95.128/26\",\r\n \"20.50.72.64/26\",\r\n \"20.50.80.64/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"20.52.64.128/26\",\r\n \"20.72.27.192/26\",\r\n
+ \ \"20.83.192.0/26\",\r\n \"20.89.0.64/26\",\r\n \"20.150.160.224/27\",\r\n
+ \ \"20.150.170.160/27\",\r\n \"20.150.175.64/26\",\r\n \"20.150.178.64/26\",\r\n
+ \ \"20.150.182.0/27\",\r\n \"20.150.186.64/26\",\r\n \"20.150.189.128/26\",\r\n
+ \ \"20.151.32.64/26\",\r\n \"20.192.33.64/26\",\r\n \"20.192.98.64/26\",\r\n
+ \ \"20.192.102.0/26\",\r\n \"20.192.161.64/27\",\r\n \"20.192.225.160/27\",\r\n
+ \ \"20.192.234.32/27\",\r\n \"20.193.202.32/27\",\r\n \"20.193.204.192/26\",\r\n
+ \ \"20.194.68.192/26\",\r\n \"20.194.80.0/26\",\r\n \"20.194.128.192/26\",\r\n
+ \ \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n \"23.96.214.181/32\",\r\n
+ \ \"23.96.253.236/32\",\r\n \"23.97.67.90/32\",\r\n \"23.97.97.36/32\",\r\n
+ \ \"23.97.103.3/32\",\r\n \"23.97.120.51/32\",\r\n \"23.97.226.21/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"23.99.7.105/32\",\r\n
+ \ \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n \"23.99.80.186/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"23.100.14.185/32\",\r\n \"23.100.100.84/32\",\r\n \"23.101.3.68/32\",\r\n
+ \ \"23.101.8.229/32\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"23.102.128.15/32\",\r\n \"23.102.160.39/32\",\r\n
+ \ \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n \"23.102.165.127/32\",\r\n
+ \ \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n \"23.102.234.49/32\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.67.58.128/26\",\r\n \"40.67.72.64/26\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"40.69.29.216/32\",\r\n
+ \ \"40.69.106.32/27\",\r\n \"40.69.217.246/32\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n \"40.74.146.16/28\",\r\n
+ \ \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n \"40.76.29.197/32\",\r\n
+ \ \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n \"40.78.110.196/32\",\r\n
+ \ \"40.78.194.32/27\",\r\n \"40.78.202.32/27\",\r\n \"40.78.226.128/26\",\r\n
+ \ \"40.78.234.0/27\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"40.79.44.59/32\",\r\n
+ \ \"40.79.74.86/32\",\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n
+ \ \"40.79.142.0/26\",\r\n \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n
+ \ \"40.79.155.0/26\",\r\n \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n
+ \ \"40.79.170.32/28\",\r\n \"40.79.174.128/26\",\r\n \"40.79.178.32/27\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"40.80.50.64/26\",\r\n
+ \ \"40.83.191.202/32\",\r\n \"40.83.222.100/32\",\r\n \"40.84.150.241/32\",\r\n
+ \ \"40.84.185.67/32\",\r\n \"40.85.226.62/32\",\r\n \"40.85.229.32/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.86.176.23/32\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"40.89.122.0/26\",\r\n
+ \ \"40.112.185.115/32\",\r\n \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.117.88.66/32\",\r\n \"40.120.75.64/27\",\r\n
+ \ \"40.120.78.0/26\",\r\n \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n
+ \ \"40.121.148.193/32\",\r\n \"40.122.173.108/32\",\r\n \"40.122.213.155/32\",\r\n
+ \ \"40.124.65.64/26\",\r\n \"40.127.83.123/32\",\r\n \"40.127.132.254/32\",\r\n
+ \ \"51.11.192.128/26\",\r\n \"51.12.98.160/27\",\r\n \"51.12.102.64/26\",\r\n
+ \ \"51.12.202.160/27\",\r\n \"51.12.206.64/26\",\r\n \"51.12.226.64/26\",\r\n
+ \ \"51.12.234.64/26\",\r\n \"51.13.0.192/26\",\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.107.58.128/27\",\r\n
+ \ \"51.107.129.0/26\",\r\n \"51.107.154.128/27\",\r\n \"51.116.58.128/27\",\r\n
+ \ \"51.116.154.192/27\",\r\n \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n
+ \ \"51.116.246.192/26\",\r\n \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n
+ \ \"51.120.98.128/27\",\r\n \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n
+ \ \"51.120.218.160/27\",\r\n \"51.132.192.192/26\",\r\n \"51.140.80.99/32\",\r\n
+ \ \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n \"51.140.146.32/28\",\r\n
+ \ \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n \"51.140.189.108/32\",\r\n
+ \ \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n \"51.141.14.168/32\",\r\n
+ \ \"51.141.50.179/32\",\r\n \"51.144.238.23/32\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"52.138.90.0/28\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"52.151.58.121/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"52.162.106.64/26\",\r\n \"52.165.34.144/32\",\r\n
+ \ \"52.165.179.109/32\",\r\n \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.169.18.8/32\",\r\n
+ \ \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.175.35.235/32\",\r\n \"52.176.47.198/32\",\r\n
+ \ \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n \"52.178.211.227/32\",\r\n
+ \ \"52.179.6.240/32\",\r\n \"52.179.8.35/32\",\r\n \"52.179.157.59/32\",\r\n
+ \ \"52.180.180.228/32\",\r\n \"52.180.182.75/32\",\r\n \"52.182.138.128/26\",\r\n
+ \ \"52.182.143.64/26\",\r\n \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"52.191.213.188/32\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"52.226.36.235/32\",\r\n \"52.231.18.16/28\",\r\n
+ \ \"52.231.29.105/32\",\r\n \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n
+ \ \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n \"52.231.200.153/32\",\r\n
+ \ \"52.231.207.155/32\",\r\n \"52.232.27.189/32\",\r\n \"52.233.30.41/32\",\r\n
+ \ \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n \"52.236.186.0/26\",\r\n
+ \ \"52.237.33.36/32\",\r\n \"52.237.33.104/32\",\r\n \"52.237.143.176/32\",\r\n
+ \ \"52.242.20.204/32\",\r\n \"52.243.36.161/32\",\r\n \"52.246.154.64/26\",\r\n
+ \ \"52.246.159.0/26\",\r\n \"65.52.129.16/32\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"102.37.65.0/26\",\r\n \"102.37.72.64/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"102.133.122.64/26\",\r\n \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n
+ \ \"102.133.250.64/26\",\r\n \"102.133.254.0/26\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.40.150.139/32\",\r\n \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n
+ \ \"104.41.63.213/32\",\r\n \"104.41.201.10/32\",\r\n \"104.42.97.95/32\",\r\n
+ \ \"104.43.18.219/32\",\r\n \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n
+ \ \"104.43.192.222/32\",\r\n \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.16.0/26\",\r\n \"104.208.144.0/26\",\r\n
+ \ \"104.208.237.147/32\",\r\n \"104.209.186.70/32\",\r\n
+ \ \"104.210.14.49/32\",\r\n \"104.210.106.31/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"104.211.224.190/32\",\r\n
+ \ \"104.211.224.238/32\",\r\n \"104.214.18.128/27\",\r\n
+ \ \"104.214.70.229/32\",\r\n \"137.116.48.46/32\",\r\n \"137.116.77.157/32\",\r\n
+ \ \"137.116.91.178/32\",\r\n \"137.116.157.26/32\",\r\n \"137.116.158.30/32\",\r\n
+ \ \"137.117.85.236/32\",\r\n \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n
+ \ \"137.135.102.226/32\",\r\n \"138.91.1.105/32\",\r\n \"138.91.17.38/32\",\r\n
+ \ \"138.91.17.85/32\",\r\n \"138.91.193.184/32\",\r\n \"168.61.92.197/32\",\r\n
+ \ \"168.61.143.128/26\",\r\n \"168.61.148.205/32\",\r\n \"168.62.52.235/32\",\r\n
+ \ \"168.62.234.250/32\",\r\n \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n
+ \ \"168.63.141.27/32\",\r\n \"191.233.9.64/27\",\r\n \"191.233.73.228/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"191.237.47.93/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"191.237.224.0/26\",\r\n \"191.238.99.131/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"191.239.64.142/32\",\r\n \"191.239.64.144/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"207.46.153.127/32\",\r\n
+ \ \"207.46.154.16/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1000:4::240/122\",\r\n
+ \ \"2603:1000:4:402::1c0/123\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\",\r\n \"2603:1010:304::240/122\",\r\n
+ \ \"2603:1010:304:402::1c0/123\",\r\n \"2603:1010:404::240/122\",\r\n
+ \ \"2603:1010:404:402::1c0/123\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\",\r\n \"2603:1020:305::240/122\",\r\n
+ \ \"2603:1020:305:402::1c0/123\",\r\n \"2603:1020:405::240/122\",\r\n
+ \ \"2603:1020:405:402::1c0/123\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\",\r\n \"2603:1020:905::240/122\",\r\n
+ \ \"2603:1020:905:402::1c0/123\",\r\n \"2603:1020:a04:1::240/122\",\r\n
+ \ \"2603:1020:a04:402::1c0/123\",\r\n \"2603:1020:a04:802::160/123\",\r\n
+ \ \"2603:1020:a04:c02::160/123\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\",\r\n \"2603:1020:d04::240/122\",\r\n
+ \ \"2603:1020:d04:402::1c0/123\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\",\r\n \"2603:1020:1004::240/122\",\r\n
+ \ \"2603:1020:1004:400::2c0/123\",\r\n \"2603:1020:1004:c02::c0/123\",\r\n
+ \ \"2603:1020:1104:400::1c0/123\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\",\r\n \"2603:1030:104:1::240/122\",\r\n
+ \ \"2603:1030:104:402::1c0/123\",\r\n \"2603:1030:107:400::140/123\",\r\n
+ \ \"2603:1030:210:1::240/122\",\r\n \"2603:1030:210:402::1c0/123\",\r\n
+ \ \"2603:1030:210:802::160/123\",\r\n \"2603:1030:210:c02::160/123\",\r\n
+ \ \"2603:1030:40b:1::240/122\",\r\n \"2603:1030:40b:400::9c0/123\",\r\n
+ \ \"2603:1030:40b:800::160/123\",\r\n \"2603:1030:40b:c00::160/123\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\",\r\n
+ \ \"2603:1030:504:1::240/122\",\r\n \"2603:1030:504:402::2c0/123\",\r\n
+ \ \"2603:1030:504:802::240/123\",\r\n \"2603:1030:504:c02::c0/123\",\r\n
+ \ \"2603:1030:608::240/122\",\r\n \"2603:1030:608:402::1c0/123\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\",\r\n
+ \ \"2603:1030:a07::240/122\",\r\n \"2603:1030:a07:402::140/123\",\r\n
+ \ \"2603:1030:b04::240/122\",\r\n \"2603:1030:b04:402::1c0/123\",\r\n
+ \ \"2603:1030:c06:1::240/122\",\r\n \"2603:1030:c06:400::9c0/123\",\r\n
+ \ \"2603:1030:c06:802::160/123\",\r\n \"2603:1030:c06:c02::160/123\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\",\r\n
+ \ \"2603:1040:5:1::240/122\",\r\n \"2603:1040:5:402::1c0/123\",\r\n
+ \ \"2603:1040:5:802::160/123\",\r\n \"2603:1040:5:c02::160/123\",\r\n
+ \ \"2603:1040:207::240/122\",\r\n \"2603:1040:207:402::1c0/123\",\r\n
+ \ \"2603:1040:407:1::240/122\",\r\n \"2603:1040:407:402::1c0/123\",\r\n
+ \ \"2603:1040:407:802::160/123\",\r\n \"2603:1040:407:c02::160/123\",\r\n
+ \ \"2603:1040:606::240/122\",\r\n \"2603:1040:606:402::1c0/123\",\r\n
+ \ \"2603:1040:806::240/122\",\r\n \"2603:1040:806:402::1c0/123\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\",\r\n
+ \ \"2603:1040:b04::240/122\",\r\n \"2603:1040:b04:402::1c0/123\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\",\r\n
+ \ \"2603:1040:d04::240/122\",\r\n \"2603:1040:d04:400::2c0/123\",\r\n
+ \ \"2603:1040:d04:c02::c0/123\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\",\r\n \"2603:1040:1104:400::1c0/123\",\r\n
+ \ \"2603:1050:6:1::240/122\",\r\n \"2603:1050:6:402::1c0/123\",\r\n
+ \ \"2603:1050:6:802::160/123\",\r\n \"2603:1050:6:c02::160/123\",\r\n
+ \ \"2603:1050:403::240/122\",\r\n \"2603:1050:403:400::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.46.142/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"2603:1010:304::240/122\",\r\n \"2603:1010:304:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral2\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.130/32\",\r\n \"20.36.114.32/27\",\r\n
+ \ \"2603:1010:404::240/122\",\r\n \"2603:1010:404:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaEast\",\r\n
+ \ \"id\": \"EventHub.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n \"40.79.170.32/28\",\r\n
+ \ \"40.79.174.128/26\",\r\n \"104.210.106.31/32\",\r\n \"191.239.64.142/32\",\r\n
+ \ \"191.239.64.144/32\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.AustraliaSoutheast\",\r\n \"id\":
+ \"EventHub.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.77.50.32/27\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.127.83.123/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.BrazilSouth\",\r\n \"id\": \"EventHub.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n
+ \ \"23.97.97.36/32\",\r\n \"23.97.103.3/32\",\r\n \"104.41.63.213/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"2603:1050:6:1::240/122\",\r\n
+ \ \"2603:1050:6:402::1c0/123\",\r\n \"2603:1050:6:802::160/123\",\r\n
+ \ \"2603:1050:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CanadaCentral\",\r\n \"id\": \"EventHub.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.16/28\",\r\n \"13.71.177.128/26\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.151.32.64/26\",\r\n \"40.85.226.62/32\",\r\n
+ \ \"40.85.229.32/32\",\r\n \"52.233.30.41/32\",\r\n \"52.237.33.36/32\",\r\n
+ \ \"52.237.33.104/32\",\r\n \"52.246.154.64/26\",\r\n \"52.246.159.0/26\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CanadaEast\",\r\n
+ \ \"id\": \"EventHub.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.32/27\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"52.242.20.204/32\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralIndia\",\r\n
+ \ \"id\": \"EventHub.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.30.214/32\",\r\n
+ \ \"20.43.126.64/26\",\r\n \"20.192.98.64/26\",\r\n \"20.192.102.0/26\",\r\n
+ \ \"40.80.50.64/26\",\r\n \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralUS\",\r\n
+ \ \"id\": \"EventHub.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.89.58.37/32\",\r\n
+ \ \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n \"13.89.178.112/28\",\r\n
+ \ \"20.44.13.64/26\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.122.173.108/32\",\r\n
+ \ \"40.122.213.155/32\",\r\n \"52.165.34.144/32\",\r\n \"52.165.179.109/32\",\r\n
+ \ \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.176.47.198/32\",\r\n \"52.182.138.128/26\",\r\n \"52.182.143.64/26\",\r\n
+ \ \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n \"104.43.192.222/32\",\r\n
+ \ \"104.208.16.0/26\",\r\n \"168.61.148.205/32\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CentralUSEUAP\",\r\n \"id\": \"EventHub.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.32/27\",\r\n \"52.180.180.228/32\",\r\n
+ \ \"52.180.182.75/32\",\r\n \"168.61.143.128/26\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastAsia\",\r\n \"id\": \"EventHub.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.64/26\",\r\n \"13.94.47.61/32\",\r\n \"23.97.67.90/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.101.3.68/32\",\r\n \"23.101.8.229/32\",\r\n
+ \ \"23.102.234.49/32\",\r\n \"52.175.35.235/32\",\r\n \"168.63.141.27/32\",\r\n
+ \ \"207.46.153.127/32\",\r\n \"207.46.154.16/32\",\r\n \"2603:1040:207::240/122\",\r\n
+ \ \"2603:1040:207:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS\",\r\n \"id\": \"EventHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n \"13.92.124.151/32\",\r\n
+ \ \"13.92.180.208/32\",\r\n \"13.92.190.184/32\",\r\n \"20.42.68.64/26\",\r\n
+ \ \"20.42.74.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.76.29.197/32\",\r\n \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n
+ \ \"40.78.226.128/26\",\r\n \"40.79.155.0/26\",\r\n \"40.117.88.66/32\",\r\n
+ \ \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n \"40.121.148.193/32\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.179.6.240/32\",\r\n
+ \ \"52.179.8.35/32\",\r\n \"52.191.213.188/32\",\r\n \"52.226.36.235/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"137.117.85.236/32\",\r\n
+ \ \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n \"137.135.102.226/32\",\r\n
+ \ \"168.62.52.235/32\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.237.47.93/32\",\r\n \"2603:1030:210:1::240/122\",\r\n
+ \ \"2603:1030:210:402::1c0/123\",\r\n \"2603:1030:210:802::160/123\",\r\n
+ \ \"2603:1030:210:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS2\",\r\n \"id\": \"EventHub.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"20.36.144.64/26\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.79.44.59/32\",\r\n \"40.79.74.86/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.179.157.59/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.144.0/26\",\r\n \"104.208.237.147/32\",\r\n
+ \ \"104.209.186.70/32\",\r\n \"104.210.14.49/32\",\r\n \"137.116.48.46/32\",\r\n
+ \ \"137.116.77.157/32\",\r\n \"137.116.91.178/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"EventHub.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"20.47.216.64/26\",\r\n
+ \ \"40.74.146.16/28\",\r\n \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n
+ \ \"40.89.122.0/26\",\r\n \"52.138.90.0/28\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"2603:1030:40b:1::240/122\",\r\n
+ \ \"2603:1030:40b:400::9c0/123\",\r\n \"2603:1030:40b:800::160/123\",\r\n
+ \ \"2603:1030:40b:c00::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceCentral\",\r\n \"id\": \"EventHub.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n \"40.79.142.0/26\",\r\n
+ \ \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n \"51.11.192.128/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceSouth\",\r\n \"id\": \"EventHub.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.32/27\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"2603:1020:905::240/122\",\r\n \"2603:1020:905:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyNorth\",\r\n
+ \ \"id\": \"EventHub.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.116.58.128/27\",\r\n
+ \ \"2603:1020:d04::240/122\",\r\n \"2603:1020:d04:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyWestCentral\",\r\n
+ \ \"id\": \"EventHub.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.64.128/26\",\r\n \"51.116.154.192/27\",\r\n
+ \ \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n \"51.116.246.192/26\",\r\n
+ \ \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanEast\",\r\n \"id\": \"EventHub.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.154.11/32\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"20.89.0.64/26\",\r\n \"20.194.128.192/26\",\r\n \"23.100.100.84/32\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"52.243.36.161/32\",\r\n
+ \ \"138.91.1.105/32\",\r\n \"2603:1040:407:1::240/122\",\r\n
+ \ \"2603:1040:407:402::1c0/123\",\r\n \"2603:1040:407:802::160/123\",\r\n
+ \ \"2603:1040:407:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanWest\",\r\n \"id\": \"EventHub.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n
+ \ \"138.91.17.38/32\",\r\n \"138.91.17.85/32\",\r\n \"2603:1040:606::240/122\",\r\n
+ \ \"2603:1040:606:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaCentral\",\r\n \"id\": \"EventHub.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.64/26\",\r\n \"20.44.31.128/26\",\r\n \"20.194.68.192/26\",\r\n
+ \ \"20.194.80.0/26\",\r\n \"52.231.18.16/28\",\r\n \"52.231.29.105/32\",\r\n
+ \ \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaSouth\",\r\n \"id\": \"EventHub.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n
+ \ \"52.231.200.153/32\",\r\n \"52.231.207.155/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"EventHub.NorthCentralUS\",\r\n
+ \ \"id\": \"EventHub.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.214.181/32\",\r\n \"23.96.253.236/32\",\r\n
+ \ \"52.162.106.64/26\",\r\n \"52.237.143.176/32\",\r\n \"168.62.234.250/32\",\r\n
+ \ \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"2603:1030:608::240/122\",\r\n
+ \ \"2603:1030:608:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorthEurope\",\r\n \"id\": \"EventHub.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n \"13.69.253.135/32\",\r\n
+ \ \"13.69.255.140/32\",\r\n \"13.74.107.0/26\",\r\n \"20.50.72.64/26\",\r\n
+ \ \"20.50.80.64/26\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"40.69.29.216/32\",\r\n \"40.69.217.246/32\",\r\n
+ \ \"40.127.132.254/32\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.169.18.8/32\",\r\n \"52.178.211.227/32\",\r\n \"104.41.201.10/32\",\r\n
+ \ \"168.61.92.197/32\",\r\n \"191.238.99.131/32\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayEast\",\r\n \"id\": \"EventHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.192/26\",\r\n \"51.120.98.128/27\",\r\n
+ \ \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayWest\",\r\n \"id\": \"EventHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.160/27\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaNorth\",\r\n \"id\": \"EventHub.SouthAfricaNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricanorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.64/26\",\r\n \"102.133.122.64/26\",\r\n
+ \ \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n \"102.133.250.64/26\",\r\n
+ \ \"102.133.254.0/26\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaWest\",\r\n \"id\": \"EventHub.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.0/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"2603:1000:4::240/122\",\r\n \"2603:1000:4:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SouthCentralUS\",\r\n
+ \ \"id\": \"EventHub.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.209.24/32\",\r\n \"13.84.145.196/32\",\r\n
+ \ \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n \"20.49.93.64/27\",\r\n
+ \ \"20.49.93.128/27\",\r\n \"20.49.95.128/26\",\r\n \"23.102.128.15/32\",\r\n
+ \ \"23.102.160.39/32\",\r\n \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n
+ \ \"23.102.165.127/32\",\r\n \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n
+ \ \"40.84.150.241/32\",\r\n \"40.84.185.67/32\",\r\n \"40.124.65.64/26\",\r\n
+ \ \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.214.18.128/27\",\r\n \"104.214.70.229/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SoutheastAsia\",\r\n
+ \ \"id\": \"EventHub.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.76.179.223/32\",\r\n \"13.76.216.217/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"40.78.234.0/27\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"104.43.18.219/32\",\r\n \"137.116.157.26/32\",\r\n
+ \ \"137.116.158.30/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1040:5:1::240/122\",\r\n
+ \ \"2603:1040:5:402::1c0/123\",\r\n \"2603:1040:5:802::160/123\",\r\n
+ \ \"2603:1040:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthIndia\",\r\n \"id\": \"EventHub.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.123.78/32\",\r\n \"40.78.194.32/27\",\r\n
+ \ \"104.211.224.190/32\",\r\n \"104.211.224.238/32\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandNorth\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.128/27\",\r\n \"51.107.129.0/26\",\r\n
+ \ \"2603:1020:a04:1::240/122\",\r\n \"2603:1020:a04:402::1c0/123\",\r\n
+ \ \"2603:1020:a04:802::160/123\",\r\n \"2603:1020:a04:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.128/27\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAECentral\",\r\n \"id\": \"EventHub.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.0/27\",\r\n \"2603:1040:b04::240/122\",\r\n
+ \ \"2603:1040:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAENorth\",\r\n \"id\": \"EventHub.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.75.64/27\",\r\n \"40.120.78.0/26\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.UKSouth\",\r\n
+ \ \"id\": \"EventHub.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.132.192.192/26\",\r\n
+ \ \"51.140.80.99/32\",\r\n \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n
+ \ \"51.140.146.32/28\",\r\n \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n
+ \ \"51.140.189.108/32\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UKWest\",\r\n \"id\": \"EventHub.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n
+ \ \"51.141.14.168/32\",\r\n \"51.141.50.179/32\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestCentralUS\",\r\n \"id\": \"EventHub.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.64/27\",\r\n \"13.78.149.209/32\",\r\n
+ \ \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"2603:1030:b04::240/122\",\r\n
+ \ \"2603:1030:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestEurope\",\r\n \"id\": \"EventHub.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n \"13.69.111.128/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"23.97.226.21/32\",\r\n \"23.100.14.185/32\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"51.144.238.23/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n
+ \ \"52.232.27.189/32\",\r\n \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n
+ \ \"52.236.186.0/26\",\r\n \"65.52.129.16/32\",\r\n \"104.40.150.139/32\",\r\n
+ \ \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"191.233.73.228/32\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestIndia\",\r\n \"id\": \"EventHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"2603:1040:806::240/122\",\r\n
+ \ \"2603:1040:806:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS\",\r\n \"id\": \"EventHub.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.195.117/32\",\r\n \"13.88.20.117/32\",\r\n
+ \ \"13.88.26.28/32\",\r\n \"13.91.61.11/32\",\r\n \"13.93.226.138/32\",\r\n
+ \ \"23.99.7.105/32\",\r\n \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n
+ \ \"23.99.80.186/32\",\r\n \"40.78.110.196/32\",\r\n \"40.83.191.202/32\",\r\n
+ \ \"40.83.222.100/32\",\r\n \"40.86.176.23/32\",\r\n \"40.112.185.115/32\",\r\n
+ \ \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.42.97.95/32\",\r\n \"138.91.193.184/32\",\r\n \"2603:1030:a07::240/122\",\r\n
+ \ \"2603:1030:a07:402::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS2\",\r\n \"id\": \"EventHub.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n
+ \ \"13.66.149.0/26\",\r\n \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.83.192.0/26\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"52.151.58.121/32\",\r\n
+ \ \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n \"2603:1030:c06:1::240/122\",\r\n
+ \ \"2603:1030:c06:400::9c0/123\",\r\n \"2603:1030:c06:802::160/123\",\r\n
+ \ \"2603:1030:c06:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager\",\r\n \"id\": \"GatewayManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.66.140.144/29\",\r\n
+ \ \"13.67.9.128/29\",\r\n \"13.69.64.224/29\",\r\n \"13.69.227.224/29\",\r\n
+ \ \"13.70.72.208/29\",\r\n \"13.70.185.130/32\",\r\n \"13.71.170.240/29\",\r\n
+ \ \"13.71.194.232/29\",\r\n \"13.75.36.8/29\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"13.78.108.16/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"13.85.74.21/32\",\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"13.87.122.104/29\",\r\n \"13.89.171.96/29\",\r\n
+ \ \"13.91.249.235/32\",\r\n \"13.91.254.232/32\",\r\n \"13.92.84.128/32\",\r\n
+ \ \"13.93.112.146/32\",\r\n \"13.93.117.26/32\",\r\n \"20.36.42.151/32\",\r\n
+ \ \"20.36.42.152/32\",\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.36.114.24/29\",\r\n \"20.36.120.72/29\",\r\n
+ \ \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n \"20.37.64.72/29\",\r\n
+ \ \"20.37.74.88/29\",\r\n \"20.37.152.72/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"20.38.80.72/29\",\r\n \"20.38.136.72/29\",\r\n
+ \ \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"20.40.173.147/32\",\r\n
+ \ \"20.41.0.72/29\",\r\n \"20.41.64.72/29\",\r\n \"20.41.192.72/29\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"20.42.128.72/29\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"20.43.40.72/29\",\r\n \"20.43.64.72/29\",\r\n \"20.43.128.72/29\",\r\n
+ \ \"20.44.3.16/29\",\r\n \"20.45.112.72/29\",\r\n \"20.45.192.72/29\",\r\n
+ \ \"20.46.13.128/26\",\r\n \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n
+ \ \"20.72.16.64/26\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"20.150.160.64/29\",\r\n \"20.150.161.0/26\",\r\n \"20.150.171.64/29\",\r\n
+ \ \"20.189.104.72/29\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"20.192.160.64/26\",\r\n \"20.192.224.192/26\",\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"20.194.75.128/26\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.67.48.72/29\",\r\n \"40.67.59.64/29\",\r\n
+ \ \"40.69.106.88/29\",\r\n \"40.70.146.224/29\",\r\n \"40.71.11.96/29\",\r\n
+ \ \"40.74.24.72/29\",\r\n \"40.74.100.168/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"40.79.130.224/29\",\r\n \"40.79.178.88/29\",\r\n
+ \ \"40.80.56.72/29\",\r\n \"40.80.168.72/29\",\r\n \"40.80.184.72/29\",\r\n
+ \ \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n \"40.81.180.83/32\",\r\n
+ \ \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n \"40.81.189.42/32\",\r\n
+ \ \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n \"40.82.248.240/29\",\r\n
+ \ \"40.88.222.179/32\",\r\n \"40.88.223.53/32\",\r\n \"40.89.16.72/29\",\r\n
+ \ \"40.89.217.100/32\",\r\n \"40.89.217.109/32\",\r\n \"40.90.186.21/32\",\r\n
+ \ \"40.90.186.91/32\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"40.112.242.168/29\",\r\n \"40.115.248.200/32\",\r\n \"40.115.254.17/32\",\r\n
+ \ \"40.119.8.64/29\",\r\n \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n
+ \ \"51.12.40.192/26\",\r\n \"51.12.192.192/26\",\r\n \"51.104.24.72/29\",\r\n
+ \ \"51.105.80.72/29\",\r\n \"51.105.88.72/29\",\r\n \"51.107.48.72/29\",\r\n
+ \ \"51.107.59.32/29\",\r\n \"51.107.144.72/29\",\r\n \"51.107.155.32/29\",\r\n
+ \ \"51.116.48.72/29\",\r\n \"51.116.59.32/29\",\r\n \"51.116.144.72/29\",\r\n
+ \ \"51.116.155.96/29\",\r\n \"51.120.40.72/29\",\r\n \"51.120.98.168/29\",\r\n
+ \ \"51.120.219.64/29\",\r\n \"51.120.224.72/29\",\r\n \"51.120.235.128/26\",\r\n
+ \ \"51.137.160.72/29\",\r\n \"51.140.63.41/32\",\r\n \"51.140.114.209/32\",\r\n
+ \ \"51.140.148.16/29\",\r\n \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n
+ \ \"51.141.29.178/32\",\r\n \"51.142.209.124/32\",\r\n \"51.142.210.184/32\",\r\n
+ \ \"51.143.192.72/29\",\r\n \"52.136.48.72/29\",\r\n \"52.136.137.15/32\",\r\n
+ \ \"52.136.137.16/32\",\r\n \"52.138.70.115/32\",\r\n \"52.138.71.153/32\",\r\n
+ \ \"52.138.90.40/29\",\r\n \"52.139.87.129/32\",\r\n \"52.139.87.150/32\",\r\n
+ \ \"52.140.104.72/29\",\r\n \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n
+ \ \"52.143.136.58/31\",\r\n \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"52.148.30.6/32\",\r\n \"52.149.24.100/32\",\r\n
+ \ \"52.149.26.14/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"52.162.106.168/29\",\r\n \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n
+ \ \"52.165.221.72/32\",\r\n \"52.169.225.171/32\",\r\n \"52.169.231.163/32\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"52.173.250.124/32\",\r\n \"52.177.204.204/32\",\r\n
+ \ \"52.177.207.219/32\",\r\n \"52.179.10.142/32\",\r\n \"52.180.178.35/32\",\r\n
+ \ \"52.180.178.191/32\",\r\n \"52.180.182.210/32\",\r\n \"52.184.255.23/32\",\r\n
+ \ \"52.191.140.123/32\",\r\n \"52.191.170.38/32\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.229.161.220/32\",\r\n \"52.229.166.101/32\",\r\n \"52.231.18.224/29\",\r\n
+ \ \"52.231.24.186/32\",\r\n \"52.231.35.84/32\",\r\n \"52.231.146.200/29\",\r\n
+ \ \"52.231.203.87/32\",\r\n \"52.231.204.175/32\",\r\n \"52.237.24.145/32\",\r\n
+ \ \"52.237.30.255/32\",\r\n \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n
+ \ \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n \"52.251.12.161/32\",\r\n
+ \ \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n \"52.253.232.235/32\",\r\n
+ \ \"52.253.239.162/32\",\r\n \"65.52.250.24/29\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"102.133.27.16/29\",\r\n \"102.133.56.72/29\",\r\n
+ \ \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n \"104.211.81.208/29\",\r\n
+ \ \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n \"104.211.191.94/32\",\r\n
+ \ \"104.214.19.64/29\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"168.62.208.162/32\",\r\n \"168.62.209.95/32\",\r\n
+ \ \"191.233.8.64/26\",\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1000:4::40/122\",\r\n
+ \ \"2603:1000:104:1::40/122\",\r\n \"2603:1010:6:1::40/122\",\r\n
+ \ \"2603:1010:101::40/122\",\r\n \"2603:1010:304::40/122\",\r\n
+ \ \"2603:1010:404::40/122\",\r\n \"2603:1020:5:1::40/122\",\r\n
+ \ \"2603:1020:206:1::40/122\",\r\n \"2603:1020:305::40/122\",\r\n
+ \ \"2603:1020:405::40/122\",\r\n \"2603:1020:605::40/122\",\r\n
+ \ \"2603:1020:705:1::40/122\",\r\n \"2603:1020:805:1::40/122\",\r\n
+ \ \"2603:1020:905::40/122\",\r\n \"2603:1020:a04:1::40/122\",\r\n
+ \ \"2603:1020:b04::40/122\",\r\n \"2603:1020:c04:1::40/122\",\r\n
+ \ \"2603:1020:d04::40/122\",\r\n \"2603:1020:e04:1::40/122\",\r\n
+ \ \"2603:1020:f04::40/122\",\r\n \"2603:1020:1004::40/122\",\r\n
+ \ \"2603:1020:1104::40/122\",\r\n \"2603:1030:f:1::40/122\",\r\n
+ \ \"2603:1030:10:1::40/122\",\r\n \"2603:1030:104:1::40/122\",\r\n
+ \ \"2603:1030:107::40/122\",\r\n \"2603:1030:210:1::40/122\",\r\n
+ \ \"2603:1030:40b:1::40/122\",\r\n \"2603:1030:40c:1::40/122\",\r\n
+ \ \"2603:1030:504:1::40/122\",\r\n \"2603:1030:608::40/122\",\r\n
+ \ \"2603:1030:807:1::40/122\",\r\n \"2603:1030:a07::40/122\",\r\n
+ \ \"2603:1030:b04::40/122\",\r\n \"2603:1030:c06:1::40/122\",\r\n
+ \ \"2603:1030:f05:1::40/122\",\r\n \"2603:1030:1005::40/122\",\r\n
+ \ \"2603:1040:5:1::40/122\",\r\n \"2603:1040:207::40/122\",\r\n
+ \ \"2603:1040:407:1::40/122\",\r\n \"2603:1040:606::40/122\",\r\n
+ \ \"2603:1040:806::40/122\",\r\n \"2603:1040:904:1::40/122\",\r\n
+ \ \"2603:1040:a06:1::40/122\",\r\n \"2603:1040:b04::40/122\",\r\n
+ \ \"2603:1040:c06::40/122\",\r\n \"2603:1040:d04::40/122\",\r\n
+ \ \"2603:1040:f05:1::40/122\",\r\n \"2603:1040:1104::40/122\",\r\n
+ \ \"2603:1050:6:1::40/122\",\r\n \"2603:1050:403::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.151/32\",\r\n \"20.36.42.152/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"2603:1010:304::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n \"20.36.114.24/29\",\r\n
+ \ \"20.36.120.72/29\",\r\n \"2603:1010:404::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaEast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.208/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n \"2603:1010:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.185.130/32\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"20.40.173.147/32\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"2603:1010:101::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.BrazilSouth\",\r\n
+ \ \"id\": \"GatewayManager.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1050:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaCentral\",\r\n
+ \ \"id\": \"GatewayManager.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.240/29\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.237.24.145/32\",\r\n \"52.237.30.255/32\",\r\n \"2603:1030:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaEast\",\r\n
+ \ \"id\": \"GatewayManager.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.88/29\",\r\n \"40.89.16.72/29\",\r\n \"52.139.87.129/32\",\r\n
+ \ \"52.139.87.150/32\",\r\n \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n
+ \ \"2603:1030:1005::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.CentralIndia\",\r\n \"id\":
+ \"GatewayManager.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"52.140.104.72/29\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"104.211.81.208/29\",\r\n \"2603:1040:a06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUS\",\r\n
+ \ \"id\": \"GatewayManager.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.96/29\",\r\n \"20.37.152.72/29\",\r\n
+ \ \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n \"52.165.221.72/32\",\r\n
+ \ \"52.173.250.124/32\",\r\n \"2603:1030:10:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUSEUAP\",\r\n
+ \ \"id\": \"GatewayManager.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.72/29\",\r\n \"20.46.13.128/26\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"52.180.178.35/32\",\r\n \"52.180.178.191/32\",\r\n
+ \ \"52.180.182.210/32\",\r\n \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n
+ \ \"52.253.232.235/32\",\r\n \"52.253.239.162/32\",\r\n \"2603:1030:f:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastAsia\",\r\n
+ \ \"id\": \"GatewayManager.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.8/29\",\r\n \"20.189.104.72/29\",\r\n \"52.229.161.220/32\",\r\n
+ \ \"52.229.166.101/32\",\r\n \"2603:1040:207::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS\",\r\n
+ \ \"id\": \"GatewayManager.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.92.84.128/32\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"40.71.11.96/29\",\r\n \"40.88.222.179/32\",\r\n
+ \ \"40.88.223.53/32\",\r\n \"52.179.10.142/32\",\r\n \"2603:1030:210:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.0.72/29\",\r\n
+ \ \"40.70.146.224/29\",\r\n \"52.177.204.204/32\",\r\n \"52.177.207.219/32\",\r\n
+ \ \"52.184.255.23/32\",\r\n \"52.251.12.161/32\",\r\n \"2603:1030:40c:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2EUAP\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"52.138.70.115/32\",\r\n
+ \ \"52.138.71.153/32\",\r\n \"52.138.90.40/29\",\r\n \"2603:1030:40b:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceCentral\",\r\n
+ \ \"id\": \"GatewayManager.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.72/29\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"40.79.130.224/29\",\r\n \"52.143.136.58/31\",\r\n \"2603:1020:805:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceSouth\",\r\n
+ \ \"id\": \"GatewayManager.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.88/29\",\r\n \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n
+ \ \"51.105.88.72/29\",\r\n \"52.136.137.15/32\",\r\n \"52.136.137.16/32\",\r\n
+ \ \"2603:1020:905::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.GermanyNorth\",\r\n \"id\":
+ \"GatewayManager.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.116.48.72/29\",\r\n
+ \ \"51.116.59.32/29\",\r\n \"2603:1020:d04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.GermanyWestCentral\",\r\n
+ \ \"id\": \"GatewayManager.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.72/29\",\r\n \"51.116.155.96/29\",\r\n
+ \ \"2603:1020:c04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.JapanEast\",\r\n \"id\": \"GatewayManager.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.108.16/29\",\r\n \"20.43.64.72/29\",\r\n \"40.115.248.200/32\",\r\n
+ \ \"40.115.254.17/32\",\r\n \"2603:1040:407:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.JapanWest\",\r\n
+ \ \"id\": \"GatewayManager.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.168/29\",\r\n \"40.80.56.72/29\",\r\n
+ \ \"40.81.180.83/32\",\r\n \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n
+ \ \"40.81.189.42/32\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"2603:1040:606::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.KoreaCentral\",\r\n \"id\":
+ \"GatewayManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.64.72/29\",\r\n
+ \ \"20.194.75.128/26\",\r\n \"52.231.18.224/29\",\r\n \"52.231.24.186/32\",\r\n
+ \ \"52.231.35.84/32\",\r\n \"2603:1040:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.KoreaSouth\",\r\n
+ \ \"id\": \"GatewayManager.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.168.72/29\",\r\n \"40.89.217.100/32\",\r\n
+ \ \"40.89.217.109/32\",\r\n \"52.231.146.200/29\",\r\n \"52.231.203.87/32\",\r\n
+ \ \"52.231.204.175/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"GatewayManager.NorthCentralUS\",\r\n \"id\": \"GatewayManager.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.80.184.72/29\",\r\n \"52.162.106.168/29\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"2603:1030:608::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorthEurope\",\r\n
+ \ \"id\": \"GatewayManager.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.224/29\",\r\n \"20.38.80.72/29\",\r\n
+ \ \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n \"52.169.225.171/32\",\r\n
+ \ \"52.169.231.163/32\",\r\n \"2603:1020:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayEast\",\r\n
+ \ \"id\": \"GatewayManager.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.72/29\",\r\n
+ \ \"51.120.98.168/29\",\r\n \"51.120.235.128/26\",\r\n \"2603:1020:e04:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayWest\",\r\n
+ \ \"id\": \"GatewayManager.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.219.64/29\",\r\n
+ \ \"51.120.224.72/29\",\r\n \"2603:1020:f04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthAfricaNorth\",\r\n
+ \ \"id\": \"GatewayManager.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n
+ \ \"2603:1000:104:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SouthAfricaWest\",\r\n \"id\":
+ \"GatewayManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.27.16/29\",\r\n
+ \ \"102.133.56.72/29\",\r\n \"2603:1000:4::40/122\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.85.74.21/32\",\r\n \"40.119.8.64/29\",\r\n
+ \ \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"104.214.19.64/29\",\r\n \"2603:1030:807:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SoutheastAsia\",\r\n
+ \ \"id\": \"GatewayManager.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.128/29\",\r\n \"20.43.128.72/29\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"40.90.186.21/32\",\r\n \"40.90.186.91/32\",\r\n
+ \ \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n \"2603:1040:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthIndia\",\r\n
+ \ \"id\": \"GatewayManager.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.72/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"2603:1040:c06::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SwitzerlandNorth\",\r\n
+ \ \"id\": \"GatewayManager.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.48.72/29\",\r\n \"51.107.59.32/29\",\r\n
+ \ \"2603:1020:a04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SwitzerlandWest\",\r\n \"id\":
+ \"GatewayManager.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.107.144.72/29\",\r\n
+ \ \"51.107.155.32/29\",\r\n \"2603:1020:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAECentral\",\r\n
+ \ \"id\": \"GatewayManager.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.64.72/29\",\r\n \"20.37.74.88/29\",\r\n \"2603:1040:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAENorth\",\r\n
+ \ \"id\": \"GatewayManager.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.136.72/29\",\r\n \"65.52.250.24/29\",\r\n
+ \ \"2603:1040:904:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.UKSouth\",\r\n \"id\": \"GatewayManager.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.24.72/29\",\r\n \"51.140.63.41/32\",\r\n
+ \ \"51.140.114.209/32\",\r\n \"51.140.148.16/29\",\r\n \"2603:1020:705:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKSouth2\",\r\n
+ \ \"id\": \"GatewayManager.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"51.143.192.72/29\",\r\n \"2603:1020:405::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKWest\",\r\n
+ \ \"id\": \"GatewayManager.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.72/29\",\r\n
+ \ \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n \"51.141.29.178/32\",\r\n
+ \ \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n \"2603:1020:605::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.232/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"52.148.30.6/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"2603:1030:b04::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.WestEurope\",\r\n \"id\": \"GatewayManager.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.224/29\",\r\n \"13.93.112.146/32\",\r\n
+ \ \"13.93.117.26/32\",\r\n \"40.74.24.72/29\",\r\n \"2603:1020:206:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestIndia\",\r\n
+ \ \"id\": \"GatewayManager.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n
+ \ \"52.136.48.72/29\",\r\n \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n
+ \ \"104.211.191.94/32\",\r\n \"2603:1040:806::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS\",\r\n
+ \ \"id\": \"GatewayManager.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.91.249.235/32\",\r\n
+ \ \"13.91.254.232/32\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"40.82.248.240/29\",\r\n \"40.112.242.168/29\",\r\n \"168.62.208.162/32\",\r\n
+ \ \"168.62.209.95/32\",\r\n \"2603:1030:a07::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS2\",\r\n
+ \ \"id\": \"GatewayManager.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.144/29\",\r\n
+ \ \"20.42.128.72/29\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"52.149.24.100/32\",\r\n \"52.149.26.14/32\",\r\n \"52.191.140.123/32\",\r\n
+ \ \"52.191.170.38/32\",\r\n \"2603:1030:c06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement\",\r\n
+ \ \"id\": \"GuestAndHybridManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAutomation\",\r\n \"addressPrefixes\": [\r\n \"13.65.24.129/32\",\r\n
+ \ \"13.66.138.94/31\",\r\n \"13.66.141.224/29\",\r\n \"13.66.145.80/28\",\r\n
+ \ \"13.67.8.110/31\",\r\n \"13.67.10.72/29\",\r\n \"13.69.64.78/31\",\r\n
+ \ \"13.69.67.48/29\",\r\n \"13.69.107.64/29\",\r\n \"13.69.109.128/31\",\r\n
+ \ \"13.69.109.176/28\",\r\n \"13.69.227.78/31\",\r\n \"13.69.229.248/29\",\r\n
+ \ \"13.70.72.30/31\",\r\n \"13.70.74.80/29\",\r\n \"13.70.123.166/32\",\r\n
+ \ \"13.71.170.46/31\",\r\n \"13.71.173.208/29\",\r\n \"13.71.175.144/28\",\r\n
+ \ \"13.71.194.118/31\",\r\n \"13.71.196.128/29\",\r\n \"13.71.199.176/28\",\r\n
+ \ \"13.73.242.40/29\",\r\n \"13.73.242.210/31\",\r\n \"13.73.244.208/28\",\r\n
+ \ \"13.74.107.92/31\",\r\n \"13.74.108.136/29\",\r\n \"13.75.34.150/31\",\r\n
+ \ \"13.75.39.104/29\",\r\n \"13.77.1.26/32\",\r\n \"13.77.1.212/32\",\r\n
+ \ \"13.77.50.70/31\",\r\n \"13.77.53.56/29\",\r\n \"13.77.55.192/28\",\r\n
+ \ \"13.78.59.184/32\",\r\n \"13.78.106.94/31\",\r\n \"13.78.109.120/29\",\r\n
+ \ \"13.78.111.208/28\",\r\n \"13.86.219.200/29\",\r\n \"13.86.221.216/31\",\r\n
+ \ \"13.86.223.64/28\",\r\n \"13.87.56.86/31\",\r\n \"13.87.58.72/29\",\r\n
+ \ \"13.87.122.86/31\",\r\n \"13.87.124.72/29\",\r\n \"13.88.240.74/32\",\r\n
+ \ \"13.88.244.195/32\",\r\n \"13.89.170.206/31\",\r\n \"13.89.174.136/29\",\r\n
+ \ \"13.89.178.96/28\",\r\n \"13.94.240.75/32\",\r\n \"20.36.39.150/32\",\r\n
+ \ \"20.36.106.70/31\",\r\n \"20.36.108.128/29\",\r\n \"20.36.108.240/28\",\r\n
+ \ \"20.36.114.22/31\",\r\n \"20.36.117.32/29\",\r\n \"20.36.117.144/28\",\r\n
+ \ \"20.37.74.226/31\",\r\n \"20.37.76.120/29\",\r\n \"20.38.128.104/29\",\r\n
+ \ \"20.38.128.168/31\",\r\n \"20.38.132.0/28\",\r\n \"20.38.147.152/29\",\r\n
+ \ \"20.38.149.128/31\",\r\n \"20.42.64.32/31\",\r\n \"20.42.72.128/31\",\r\n
+ \ \"20.42.72.144/28\",\r\n \"20.43.120.248/29\",\r\n \"20.43.121.120/31\",\r\n
+ \ \"20.43.123.48/28\",\r\n \"20.44.2.6/31\",\r\n \"20.44.4.104/29\",\r\n
+ \ \"20.44.8.200/29\",\r\n \"20.44.10.120/31\",\r\n \"20.44.17.8/29\",\r\n
+ \ \"20.44.17.216/31\",\r\n \"20.44.19.16/28\",\r\n \"20.44.27.112/29\",\r\n
+ \ \"20.44.29.48/31\",\r\n \"20.44.29.96/28\",\r\n \"20.45.123.88/29\",\r\n
+ \ \"20.45.123.232/31\",\r\n \"20.49.82.24/29\",\r\n \"20.49.90.24/29\",\r\n
+ \ \"20.72.27.176/29\",\r\n \"20.150.171.216/29\",\r\n \"20.150.172.224/31\",\r\n
+ \ \"20.150.179.192/29\",\r\n \"20.150.181.24/31\",\r\n \"20.150.181.176/28\",\r\n
+ \ \"20.150.187.192/29\",\r\n \"20.150.189.24/31\",\r\n \"20.192.99.192/29\",\r\n
+ \ \"20.192.101.24/31\",\r\n \"20.192.184.64/28\",\r\n \"20.192.234.176/28\",\r\n
+ \ \"20.192.235.8/29\",\r\n \"20.192.238.120/31\",\r\n \"20.193.202.176/28\",\r\n
+ \ \"20.193.203.192/29\",\r\n \"20.194.66.24/29\",\r\n \"23.96.225.107/32\",\r\n
+ \ \"23.96.225.182/32\",\r\n \"23.98.83.64/29\",\r\n \"23.98.86.56/31\",\r\n
+ \ \"40.67.60.96/29\",\r\n \"40.67.60.108/31\",\r\n \"40.69.106.70/31\",\r\n
+ \ \"40.69.108.88/29\",\r\n \"40.69.110.240/28\",\r\n \"40.70.146.78/31\",\r\n
+ \ \"40.70.148.48/29\",\r\n \"40.71.10.206/31\",\r\n \"40.71.13.240/29\",\r\n
+ \ \"40.71.30.252/32\",\r\n \"40.74.146.82/31\",\r\n \"40.74.149.32/29\",\r\n
+ \ \"40.74.150.16/28\",\r\n \"40.75.35.128/29\",\r\n \"40.75.35.216/31\",\r\n
+ \ \"40.78.194.70/31\",\r\n \"40.78.196.88/29\",\r\n \"40.78.202.130/31\",\r\n
+ \ \"40.78.203.248/29\",\r\n \"40.78.229.40/29\",\r\n \"40.78.236.128/29\",\r\n
+ \ \"40.78.238.56/31\",\r\n \"40.78.239.32/28\",\r\n \"40.78.242.172/31\",\r\n
+ \ \"40.78.243.24/29\",\r\n \"40.78.250.108/31\",\r\n \"40.78.250.216/29\",\r\n
+ \ \"40.79.130.46/31\",\r\n \"40.79.132.40/29\",\r\n \"40.79.138.44/31\",\r\n
+ \ \"40.79.138.152/29\",\r\n \"40.79.139.208/28\",\r\n \"40.79.146.44/31\",\r\n
+ \ \"40.79.146.152/29\",\r\n \"40.79.156.40/29\",\r\n \"40.79.163.8/29\",\r\n
+ \ \"40.79.163.152/31\",\r\n \"40.79.170.248/29\",\r\n \"40.79.171.224/31\",\r\n
+ \ \"40.79.173.16/28\",\r\n \"40.79.178.70/31\",\r\n \"40.79.180.56/29\",\r\n
+ \ \"40.79.180.208/28\",\r\n \"40.79.187.160/29\",\r\n \"40.79.189.56/31\",\r\n
+ \ \"40.79.194.120/29\",\r\n \"40.79.197.32/31\",\r\n \"40.80.51.88/29\",\r\n
+ \ \"40.80.53.0/31\",\r\n \"40.80.176.48/29\",\r\n \"40.80.180.0/31\",\r\n
+ \ \"40.80.180.96/28\",\r\n \"40.85.168.201/32\",\r\n \"40.89.129.151/32\",\r\n
+ \ \"40.89.132.62/32\",\r\n \"40.89.137.16/32\",\r\n \"40.89.157.7/32\",\r\n
+ \ \"40.114.77.89/32\",\r\n \"40.114.85.4/32\",\r\n \"40.118.103.191/32\",\r\n
+ \ \"40.120.8.32/28\",\r\n \"40.120.64.48/28\",\r\n \"40.120.75.48/29\",\r\n
+ \ \"51.11.97.0/31\",\r\n \"51.11.97.64/28\",\r\n \"51.12.99.208/29\",\r\n
+ \ \"51.12.203.72/29\",\r\n \"51.12.227.192/29\",\r\n \"51.12.235.192/29\",\r\n
+ \ \"51.104.8.240/29\",\r\n \"51.104.9.96/31\",\r\n \"51.105.67.168/29\",\r\n
+ \ \"51.105.69.80/31\",\r\n \"51.105.75.152/29\",\r\n \"51.105.77.48/31\",\r\n
+ \ \"51.105.77.80/28\",\r\n \"51.107.60.80/29\",\r\n \"51.107.60.92/31\",\r\n
+ \ \"51.107.60.208/28\",\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"51.116.60.80/29\",\r\n \"51.116.60.224/28\",\r\n
+ \ \"51.116.156.160/29\",\r\n \"51.116.158.56/31\",\r\n \"51.116.158.80/28\",\r\n
+ \ \"51.116.243.144/29\",\r\n \"51.116.243.216/31\",\r\n \"51.116.251.32/29\",\r\n
+ \ \"51.116.251.184/31\",\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"51.120.220.80/29\",\r\n
+ \ \"51.120.220.92/31\",\r\n \"51.120.220.176/28\",\r\n \"51.140.6.15/32\",\r\n
+ \ \"51.140.51.174/32\",\r\n \"51.140.212.104/29\",\r\n \"52.138.90.52/31\",\r\n
+ \ \"52.138.92.80/29\",\r\n \"52.138.227.136/29\",\r\n \"52.138.229.64/31\",\r\n
+ \ \"52.138.229.80/28\",\r\n \"52.147.97.0/31\",\r\n \"52.151.62.99/32\",\r\n
+ \ \"52.161.14.192/32\",\r\n \"52.161.28.108/32\",\r\n \"52.162.110.240/29\",\r\n
+ \ \"52.162.111.128/31\",\r\n \"52.163.228.23/32\",\r\n \"52.167.107.72/29\",\r\n
+ \ \"52.167.109.64/31\",\r\n \"52.169.105.82/32\",\r\n \"52.172.153.216/32\",\r\n
+ \ \"52.172.155.142/32\",\r\n \"52.178.223.62/32\",\r\n \"52.180.166.238/32\",\r\n
+ \ \"52.180.179.25/32\",\r\n \"52.182.139.56/29\",\r\n \"52.182.141.12/31\",\r\n
+ \ \"52.182.141.144/28\",\r\n \"52.183.5.195/32\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"52.231.148.120/29\",\r\n \"52.231.148.208/28\",\r\n \"52.236.186.240/29\",\r\n
+ \ \"52.236.189.72/31\",\r\n \"52.240.241.64/28\",\r\n \"52.246.155.152/29\",\r\n
+ \ \"52.246.157.0/31\",\r\n \"65.52.250.6/31\",\r\n \"65.52.252.120/29\",\r\n
+ \ \"102.37.64.32/28\",\r\n \"102.133.26.6/31\",\r\n \"102.133.28.144/29\",\r\n
+ \ \"102.133.124.16/29\",\r\n \"102.133.156.112/29\",\r\n
+ \ \"102.133.251.176/29\",\r\n \"102.133.253.32/28\",\r\n
+ \ \"104.41.9.106/32\",\r\n \"104.41.178.182/32\",\r\n \"104.208.163.218/32\",\r\n
+ \ \"104.209.137.89/32\",\r\n \"104.210.80.208/32\",\r\n \"104.210.158.71/32\",\r\n
+ \ \"104.214.164.32/28\",\r\n \"104.215.254.56/32\",\r\n \"168.61.140.48/28\",\r\n
+ \ \"191.232.170.251/32\",\r\n \"191.233.51.144/29\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1000:4:402::2c0/124\",\r\n \"2603:1000:104:402::2c0/124\",\r\n
+ \ \"2603:1000:104:802::200/124\",\r\n \"2603:1000:104:c02::200/124\",\r\n
+ \ \"2603:1010:6:402::2c0/124\",\r\n \"2603:1010:6:802::200/124\",\r\n
+ \ \"2603:1010:6:c02::200/124\",\r\n \"2603:1010:101:402::2c0/124\",\r\n
+ \ \"2603:1010:304:402::2c0/124\",\r\n \"2603:1010:404:402::2c0/124\",\r\n
+ \ \"2603:1020:5:402::2c0/124\",\r\n \"2603:1020:5:802::200/124\",\r\n
+ \ \"2603:1020:5:c02::200/124\",\r\n \"2603:1020:206:402::2c0/124\",\r\n
+ \ \"2603:1020:206:802::200/124\",\r\n \"2603:1020:206:c02::200/124\",\r\n
+ \ \"2603:1020:305:402::2c0/124\",\r\n \"2603:1020:405:402::2c0/124\",\r\n
+ \ \"2603:1020:605:402::2c0/124\",\r\n \"2603:1020:705:402::2c0/124\",\r\n
+ \ \"2603:1020:705:802::200/124\",\r\n \"2603:1020:705:c02::200/124\",\r\n
+ \ \"2603:1020:805:402::2c0/124\",\r\n \"2603:1020:805:802::200/124\",\r\n
+ \ \"2603:1020:805:c02::200/124\",\r\n \"2603:1020:905:402::2c0/124\",\r\n
+ \ \"2603:1020:a04:402::2c0/124\",\r\n \"2603:1020:a04:802::200/124\",\r\n
+ \ \"2603:1020:a04:c02::200/124\",\r\n \"2603:1020:b04:402::2c0/124\",\r\n
+ \ \"2603:1020:c04:402::2c0/124\",\r\n \"2603:1020:c04:802::200/124\",\r\n
+ \ \"2603:1020:c04:c02::200/124\",\r\n \"2603:1020:d04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:402::2c0/124\",\r\n \"2603:1020:e04:802::200/124\",\r\n
+ \ \"2603:1020:e04:c02::200/124\",\r\n \"2603:1020:f04:402::2c0/124\",\r\n
+ \ \"2603:1020:1004:400::1c0/124\",\r\n \"2603:1020:1004:400::2e0/124\",\r\n
+ \ \"2603:1020:1004:400::3a0/124\",\r\n \"2603:1020:1004:800::3d0/124\",\r\n
+ \ \"2603:1020:1004:800::3f0/124\",\r\n \"2603:1020:1104:400::2c0/124\",\r\n
+ \ \"2603:1030:f:400::ac0/124\",\r\n \"2603:1030:10:402::2c0/124\",\r\n
+ \ \"2603:1030:10:802::200/124\",\r\n \"2603:1030:10:c02::200/124\",\r\n
+ \ \"2603:1030:104:402::2c0/124\",\r\n \"2603:1030:107:400::240/124\",\r\n
+ \ \"2603:1030:210:402::2c0/124\",\r\n \"2603:1030:210:802::200/124\",\r\n
+ \ \"2603:1030:210:c02::200/124\",\r\n \"2603:1030:40b:400::ac0/124\",\r\n
+ \ \"2603:1030:40b:800::200/124\",\r\n \"2603:1030:40b:c00::200/124\",\r\n
+ \ \"2603:1030:40c:402::2c0/124\",\r\n \"2603:1030:40c:802::200/124\",\r\n
+ \ \"2603:1030:40c:c02::200/124\",\r\n \"2603:1030:504:402::1c0/124\",\r\n
+ \ \"2603:1030:504:402::2e0/124\",\r\n \"2603:1030:504:402::3a0/124\",\r\n
+ \ \"2603:1030:504:402::440/124\",\r\n \"2603:1030:504:802::3c0/123\",\r\n
+ \ \"2603:1030:504:802::3f0/124\",\r\n \"2603:1030:608:402::2c0/124\",\r\n
+ \ \"2603:1030:807:402::2c0/124\",\r\n \"2603:1030:807:802::200/124\",\r\n
+ \ \"2603:1030:807:c02::200/124\",\r\n \"2603:1030:a07:402::940/124\",\r\n
+ \ \"2603:1030:b04:402::2c0/124\",\r\n \"2603:1030:c06:400::ac0/124\",\r\n
+ \ \"2603:1030:c06:802::200/124\",\r\n \"2603:1030:c06:c02::200/124\",\r\n
+ \ \"2603:1030:f05:402::2c0/124\",\r\n \"2603:1030:f05:802::200/124\",\r\n
+ \ \"2603:1030:f05:c02::200/124\",\r\n \"2603:1030:1005:402::2c0/124\",\r\n
+ \ \"2603:1040:5:402::2c0/124\",\r\n \"2603:1040:5:802::200/124\",\r\n
+ \ \"2603:1040:5:c02::200/124\",\r\n \"2603:1040:207:402::2c0/124\",\r\n
+ \ \"2603:1040:407:402::2c0/124\",\r\n \"2603:1040:407:802::200/124\",\r\n
+ \ \"2603:1040:407:c02::200/124\",\r\n \"2603:1040:606:402::2c0/124\",\r\n
+ \ \"2603:1040:806:402::2c0/124\",\r\n \"2603:1040:904:402::2c0/124\",\r\n
+ \ \"2603:1040:904:802::200/124\",\r\n \"2603:1040:904:c02::200/124\",\r\n
+ \ \"2603:1040:a06:402::2c0/124\",\r\n \"2603:1040:a06:802::200/124\",\r\n
+ \ \"2603:1040:a06:c02::200/124\",\r\n \"2603:1040:b04:402::2c0/124\",\r\n
+ \ \"2603:1040:c06:402::2c0/124\",\r\n \"2603:1040:d04:400::1c0/124\",\r\n
+ \ \"2603:1040:d04:400::2e0/124\",\r\n \"2603:1040:d04:400::3a0/124\",\r\n
+ \ \"2603:1040:d04:800::3d0/124\",\r\n \"2603:1040:d04:800::3f0/124\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\",\r\n \"2603:1040:1104:400::2c0/124\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\",\r\n \"2603:1050:403:400::1e0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.BrazilSouth\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"104.41.9.106/32\",\r\n \"191.232.170.251/32\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.KoreaCentral\",\r\n \"id\":
+ \"GuestAndHybridManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.27.112/29\",\r\n \"20.44.29.48/31\",\r\n
+ \ \"20.44.29.96/28\",\r\n \"20.194.66.24/29\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.NorwayEast\",\r\n \"id\":
+ \"GuestAndHybridManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAutomation\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"2603:1020:e04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:802::200/124\",\r\n \"2603:1020:e04:c02::200/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.NorwayWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.220.80/29\",\r\n \"51.120.220.92/31\",\r\n
+ \ \"51.120.220.176/28\",\r\n \"2603:1020:f04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"2603:1020:b04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n
+ \ \"id\": \"HDInsight\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.66.141.144/29\",\r\n
+ \ \"13.67.9.152/29\",\r\n \"13.69.65.8/29\",\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.70.73.96/29\",\r\n \"13.71.172.240/29\",\r\n \"13.71.196.48/29\",\r\n
+ \ \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n \"13.74.153.132/32\",\r\n
+ \ \"13.75.38.112/29\",\r\n \"13.75.152.195/32\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n
+ \ \"13.77.52.8/29\",\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n
+ \ \"13.82.225.233/32\",\r\n \"13.86.218.240/29\",\r\n \"13.87.58.32/29\",\r\n
+ \ \"13.87.124.32/29\",\r\n \"13.89.171.120/29\",\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.36.123.88/29\",\r\n \"20.37.68.40/29\",\r\n
+ \ \"20.37.76.96/29\",\r\n \"20.37.228.0/29\",\r\n \"20.38.139.88/29\",\r\n
+ \ \"20.39.15.48/29\",\r\n \"20.40.207.144/29\",\r\n \"20.41.69.32/29\",\r\n
+ \ \"20.41.197.120/29\",\r\n \"20.43.45.224/29\",\r\n \"20.43.120.8/29\",\r\n
+ \ \"20.44.4.64/29\",\r\n \"20.44.16.8/29\",\r\n \"20.44.26.240/29\",\r\n
+ \ \"20.45.115.128/29\",\r\n \"20.45.198.80/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"20.49.114.56/29\",\r\n \"20.49.126.128/29\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"20.61.96.160/29\",\r\n \"20.72.20.40/29\",\r\n
+ \ \"20.150.167.176/29\",\r\n \"20.150.172.232/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"20.189.111.192/29\",\r\n \"20.191.160.0/29\",\r\n \"20.192.48.216/29\",\r\n
+ \ \"20.192.235.248/29\",\r\n \"20.193.194.16/29\",\r\n \"20.193.203.200/29\",\r\n
+ \ \"23.98.107.192/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"40.64.134.160/29\",\r\n \"40.67.50.248/29\",\r\n
+ \ \"40.67.60.64/29\",\r\n \"40.69.107.8/29\",\r\n \"40.71.13.160/29\",\r\n
+ \ \"40.71.175.99/32\",\r\n \"40.74.101.192/29\",\r\n \"40.74.125.69/32\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.78.195.8/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.79.180.16/29\",\r\n \"40.79.187.0/29\",\r\n
+ \ \"40.80.63.144/29\",\r\n \"40.80.172.120/29\",\r\n \"40.89.22.88/29\",\r\n
+ \ \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n \"40.89.157.135/32\",\r\n
+ \ \"51.12.17.48/29\",\r\n \"51.12.25.48/29\",\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.105.92.56/29\",\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"51.116.49.168/29\",\r\n \"51.116.60.48/29\",\r\n \"51.116.145.168/29\",\r\n
+ \ \"51.116.156.48/29\",\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"51.120.220.48/29\",\r\n \"51.120.228.40/29\",\r\n \"51.137.166.32/29\",\r\n
+ \ \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"52.136.52.40/29\",\r\n
+ \ \"52.140.108.248/29\",\r\n \"52.146.79.136/29\",\r\n \"52.146.130.184/29\",\r\n
+ \ \"52.150.154.192/29\",\r\n \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n
+ \ \"52.162.110.160/29\",\r\n \"52.164.210.96/32\",\r\n \"52.166.243.90/32\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"52.175.38.134/32\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"52.228.37.66/32\",\r\n
+ \ \"52.228.45.222/32\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"52.231.36.209/32\",\r\n \"52.231.39.142/32\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\",\r\n \"65.52.252.96/29\",\r\n
+ \ \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n \"102.133.124.0/29\",\r\n
+ \ \"102.133.219.176/29\",\r\n \"104.46.176.168/29\",\r\n
+ \ \"104.210.84.115/32\",\r\n \"104.211.216.210/32\",\r\n
+ \ \"104.211.223.67/32\",\r\n \"138.91.29.150/32\",\r\n \"138.91.141.162/32\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"168.61.48.131/32\",\r\n
+ \ \"168.61.49.99/32\",\r\n \"191.233.10.184/29\",\r\n \"191.233.51.152/29\",\r\n
+ \ \"191.233.204.240/29\",\r\n \"191.234.138.128/29\",\r\n
+ \ \"191.235.84.104/32\",\r\n \"191.235.87.113/32\",\r\n \"2603:1000:4:402::320/124\",\r\n
+ \ \"2603:1000:104:402::320/124\",\r\n \"2603:1010:6:402::320/124\",\r\n
+ \ \"2603:1010:101:402::320/124\",\r\n \"2603:1010:304:402::320/124\",\r\n
+ \ \"2603:1010:404:402::320/124\",\r\n \"2603:1020:5:402::320/124\",\r\n
+ \ \"2603:1020:206:402::320/124\",\r\n \"2603:1020:305:402::320/124\",\r\n
+ \ \"2603:1020:405:402::320/124\",\r\n \"2603:1020:605:402::320/124\",\r\n
+ \ \"2603:1020:705:402::320/124\",\r\n \"2603:1020:805:402::320/124\",\r\n
+ \ \"2603:1020:905:402::320/124\",\r\n \"2603:1020:a04:402::320/124\",\r\n
+ \ \"2603:1020:b04:402::320/124\",\r\n \"2603:1020:c04:402::320/124\",\r\n
+ \ \"2603:1020:d04:402::320/124\",\r\n \"2603:1020:e04::790/124\",\r\n
+ \ \"2603:1020:e04:402::320/124\",\r\n \"2603:1020:f04:402::320/124\",\r\n
+ \ \"2603:1020:1004:1::1e0/124\",\r\n \"2603:1020:1104:1::140/124\",\r\n
+ \ \"2603:1030:f:2::4b0/124\",\r\n \"2603:1030:f:400::b20/124\",\r\n
+ \ \"2603:1030:10:402::320/124\",\r\n \"2603:1030:104:402::320/124\",\r\n
+ \ \"2603:1030:107::720/124\",\r\n \"2603:1030:210:402::320/124\",\r\n
+ \ \"2603:1030:40b:400::b20/124\",\r\n \"2603:1030:40c:402::320/124\",\r\n
+ \ \"2603:1030:504::1e0/124\",\r\n \"2603:1030:608:402::320/124\",\r\n
+ \ \"2603:1030:807:402::320/124\",\r\n \"2603:1030:a07:402::9a0/124\",\r\n
+ \ \"2603:1030:b04:402::320/124\",\r\n \"2603:1030:c06:400::b20/124\",\r\n
+ \ \"2603:1030:f05:402::320/124\",\r\n \"2603:1030:1005:402::320/124\",\r\n
+ \ \"2603:1040:5:402::320/124\",\r\n \"2603:1040:207:402::320/124\",\r\n
+ \ \"2603:1040:407:402::320/124\",\r\n \"2603:1040:606:402::320/124\",\r\n
+ \ \"2603:1040:806:402::320/124\",\r\n \"2603:1040:904:402::320/124\",\r\n
+ \ \"2603:1040:a06:402::320/124\",\r\n \"2603:1040:b04:402::320/124\",\r\n
+ \ \"2603:1040:c06:402::320/124\",\r\n \"2603:1040:d04:1::1e0/124\",\r\n
+ \ \"2603:1040:f05::790/124\",\r\n \"2603:1040:f05:402::320/124\",\r\n
+ \ \"2603:1040:1104:1::140/124\",\r\n \"2603:1050:6:402::320/124\",\r\n
+ \ \"2603:1050:403:400::420/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.AustraliaCentral\",\r\n \"id\":
+ \"HDInsight.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.37.228.0/29\",\r\n \"2603:1010:304:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaEast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.73.96/29\",\r\n \"13.75.152.195/32\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"104.210.84.115/32\",\r\n \"2603:1010:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaSoutheast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n \"13.77.52.8/29\",\r\n
+ \ \"104.46.176.168/29\",\r\n \"2603:1010:101:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.BrazilSouth\",\r\n
+ \ \"id\": \"HDInsight.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"191.233.204.240/29\",\r\n
+ \ \"191.234.138.128/29\",\r\n \"191.235.84.104/32\",\r\n
+ \ \"191.235.87.113/32\",\r\n \"2603:1050:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaCentral\",\r\n
+ \ \"id\": \"HDInsight.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.240/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"52.228.37.66/32\",\r\n \"52.228.45.222/32\",\r\n \"2603:1030:f05:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaEast\",\r\n
+ \ \"id\": \"HDInsight.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.69.107.8/29\",\r\n
+ \ \"40.89.22.88/29\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"2603:1030:1005:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.CentralIndia\",\r\n \"id\": \"HDInsight.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.8/29\",\r\n \"52.140.108.248/29\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"2603:1040:a06:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUS\",\r\n
+ \ \"id\": \"HDInsight.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.120/29\",\r\n
+ \ \"20.40.207.144/29\",\r\n \"2603:1030:10:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUSEUAP\",\r\n
+ \ \"id\": \"HDInsight.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.80/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"2603:1030:f:2::4b0/124\",\r\n
+ \ \"2603:1030:f:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.EastAsia\",\r\n \"id\": \"HDInsight.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.38.112/29\",\r\n \"20.189.111.192/29\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"52.175.38.134/32\",\r\n \"2603:1040:207:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS\",\r\n
+ \ \"id\": \"HDInsight.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.82.225.233/32\",\r\n
+ \ \"40.71.13.160/29\",\r\n \"40.71.175.99/32\",\r\n \"52.146.79.136/29\",\r\n
+ \ \"168.61.48.131/32\",\r\n \"168.61.49.99/32\",\r\n \"2603:1030:210:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2\",\r\n
+ \ \"id\": \"HDInsight.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.44.16.8/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"2603:1030:40c:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2EUAP\",\r\n
+ \ \"id\": \"HDInsight.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.39.15.48/29\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n
+ \ \"2603:1030:40b:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.FranceCentral\",\r\n \"id\": \"HDInsight.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.45.224/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.89.157.135/32\",\r\n \"2603:1020:805:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.FranceSouth\",\r\n
+ \ \"id\": \"HDInsight.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.79.180.16/29\",\r\n
+ \ \"51.105.92.56/29\",\r\n \"2603:1020:905:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyNorth\",\r\n
+ \ \"id\": \"HDInsight.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.116.49.168/29\",\r\n
+ \ \"51.116.60.48/29\",\r\n \"2603:1020:d04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyWestCentral\",\r\n
+ \ \"id\": \"HDInsight.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.168/29\",\r\n \"51.116.156.48/29\",\r\n
+ \ \"2603:1020:c04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.JapanEast\",\r\n \"id\": \"HDInsight.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n \"20.191.160.0/29\",\r\n
+ \ \"40.79.187.0/29\",\r\n \"2603:1040:407:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.JapanWest\",\r\n
+ \ \"id\": \"HDInsight.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.192/29\",\r\n
+ \ \"40.74.125.69/32\",\r\n \"40.80.63.144/29\",\r\n \"138.91.29.150/32\",\r\n
+ \ \"2603:1040:606:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaCentral\",\r\n \"id\": \"HDInsight.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.32/29\",\r\n \"20.44.26.240/29\",\r\n \"52.231.36.209/32\",\r\n
+ \ \"52.231.39.142/32\",\r\n \"2603:1040:f05::790/124\",\r\n
+ \ \"2603:1040:f05:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaSouth\",\r\n \"id\": \"HDInsight.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.172.120/29\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthCentralUS\",\r\n
+ \ \"id\": \"HDInsight.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.56/29\",\r\n \"52.162.110.160/29\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"2603:1030:608:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthEurope\",\r\n
+ \ \"id\": \"HDInsight.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.74.153.132/32\",\r\n \"52.146.130.184/29\",\r\n \"52.164.210.96/32\",\r\n
+ \ \"2603:1020:5:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.NorwayEast\",\r\n \"id\": \"HDInsight.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"2603:1020:e04::790/124\",\r\n \"2603:1020:e04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorwayWest\",\r\n
+ \ \"id\": \"HDInsight.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.120.220.48/29\",\r\n
+ \ \"51.120.228.40/29\",\r\n \"2603:1020:f04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthAfricaNorth\",\r\n
+ \ \"id\": \"HDInsight.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.124.0/29\",\r\n \"102.133.219.176/29\",\r\n
+ \ \"2603:1000:104:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthAfricaWest\",\r\n \"id\": \"HDInsight.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n
+ \ \"2603:1000:4:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthCentralUS\",\r\n \"id\": \"HDInsight.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n
+ \ \"2603:1030:807:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SoutheastAsia\",\r\n \"id\": \"HDInsight.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.152/29\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"23.98.107.192/29\",\r\n \"2603:1040:5:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthIndia\",\r\n
+ \ \"id\": \"HDInsight.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.41.197.120/29\",\r\n
+ \ \"40.78.195.8/29\",\r\n \"104.211.216.210/32\",\r\n \"104.211.223.67/32\",\r\n
+ \ \"2603:1040:c06:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SwitzerlandNorth\",\r\n \"id\":
+ \"HDInsight.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"2603:1020:a04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SwitzerlandWest\",\r\n
+ \ \"id\": \"HDInsight.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"2603:1020:b04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UAECentral\",\r\n \"id\": \"HDInsight.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.40/29\",\r\n \"20.37.76.96/29\",\r\n \"2603:1040:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UAENorth\",\r\n
+ \ \"id\": \"HDInsight.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.88/29\",\r\n
+ \ \"65.52.252.96/29\",\r\n \"2603:1040:904:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UKNorth\",\r\n
+ \ \"id\": \"HDInsight.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.87.124.32/29\",\r\n
+ \ \"2603:1020:305:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKSouth\",\r\n \"id\": \"HDInsight.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n
+ \ \"2603:1020:705:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKWest\",\r\n \"id\": \"HDInsight.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.166.32/29\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"2603:1020:605:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestCentralUS\",\r\n
+ \ \"id\": \"HDInsight.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.48/29\",\r\n \"52.150.154.192/29\",\r\n
+ \ \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n \"2603:1030:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestEurope\",\r\n
+ \ \"id\": \"HDInsight.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.8/29\",\r\n
+ \ \"20.61.96.160/29\",\r\n \"52.166.243.90/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"2603:1020:206:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.WestUS\",\r\n \"id\": \"HDInsight.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.86.218.240/29\",\r\n
+ \ \"20.49.126.128/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"138.91.141.162/32\",\r\n \"2603:1030:a07:402::9a0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestUS2\",\r\n
+ \ \"id\": \"HDInsight.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.144/29\",\r\n
+ \ \"40.64.134.160/29\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"2603:1030:c06:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps\",\r\n \"id\": \"LogicApps\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.82.17/32\",\r\n \"13.65.82.190/32\",\r\n
+ \ \"13.65.86.56/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.52.232/32\",\r\n
+ \ \"13.66.128.68/32\",\r\n \"13.66.201.169/32\",\r\n \"13.66.210.167/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.66.246.219/32\",\r\n \"13.67.13.224/27\",\r\n
+ \ \"13.67.91.135/32\",\r\n \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n
+ \ \"13.67.236.76/32\",\r\n \"13.67.236.125/32\",\r\n \"13.69.71.160/27\",\r\n
+ \ \"13.69.109.144/28\",\r\n \"13.69.231.160/27\",\r\n \"13.69.233.16/28\",\r\n
+ \ \"13.70.78.192/27\",\r\n \"13.70.159.205/32\",\r\n \"13.71.146.140/32\",\r\n
+ \ \"13.71.158.3/32\",\r\n \"13.71.158.120/32\",\r\n \"13.71.184.150/32\",\r\n
+ \ \"13.71.186.1/32\",\r\n \"13.71.199.128/27\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.4.207/32\",\r\n \"13.73.114.207/32\",\r\n \"13.73.115.153/32\",\r\n
+ \ \"13.73.244.144/28\",\r\n \"13.73.244.160/27\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.94.173/32\",\r\n \"13.75.149.4/32\",\r\n \"13.75.153.66/32\",\r\n
+ \ \"13.76.4.194/32\",\r\n \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n
+ \ \"13.77.3.139/32\",\r\n \"13.77.53.224/27\",\r\n \"13.77.55.128/28\",\r\n
+ \ \"13.77.56.167/32\",\r\n \"13.77.58.136/32\",\r\n \"13.77.149.159/32\",\r\n
+ \ \"13.77.152.21/32\",\r\n \"13.78.18.168/32\",\r\n \"13.78.20.232/32\",\r\n
+ \ \"13.78.21.155/32\",\r\n \"13.78.35.229/32\",\r\n \"13.78.42.223/32\",\r\n
+ \ \"13.78.43.164/32\",\r\n \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n
+ \ \"13.78.111.160/27\",\r\n \"13.78.129.20/32\",\r\n \"13.78.137.179/32\",\r\n
+ \ \"13.78.137.247/32\",\r\n \"13.78.141.75/32\",\r\n \"13.78.148.140/32\",\r\n
+ \ \"13.78.151.161/32\",\r\n \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n
+ \ \"13.84.43.45/32\",\r\n \"13.84.159.168/32\",\r\n \"13.85.79.155/32\",\r\n
+ \ \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.58.160/27\",\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n \"13.91.252.184/32\",\r\n
+ \ \"13.92.98.111/32\",\r\n \"13.95.147.65/32\",\r\n \"13.95.155.53/32\",\r\n
+ \ \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n \"20.36.117.96/27\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.37.76.224/27\",\r\n
+ \ \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n \"20.38.149.144/28\",\r\n
+ \ \"20.38.149.160/27\",\r\n \"20.42.64.48/28\",\r\n \"20.42.72.160/27\",\r\n
+ \ \"20.43.121.192/27\",\r\n \"20.43.121.224/28\",\r\n \"20.44.4.176/28\",\r\n
+ \ \"20.44.4.192/27\",\r\n \"20.44.17.224/27\",\r\n \"20.45.64.29/32\",\r\n
+ \ \"20.45.64.87/32\",\r\n \"20.45.67.134/31\",\r\n \"20.45.67.170/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.72.54/32\",\r\n \"20.45.72.72/32\",\r\n
+ \ \"20.45.75.193/32\",\r\n \"20.45.75.200/32\",\r\n \"20.45.75.236/32\",\r\n
+ \ \"20.45.79.239/32\",\r\n \"20.72.30.160/28\",\r\n \"20.72.30.192/27\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.150.173.192/27\",\r\n \"20.150.181.32/27\",\r\n
+ \ \"20.188.33.169/32\",\r\n \"20.188.39.105/32\",\r\n \"20.192.184.0/27\",\r\n
+ \ \"20.192.238.128/27\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"20.193.206.128/27\",\r\n \"23.96.200.77/32\",\r\n \"23.96.200.227/32\",\r\n
+ \ \"23.96.203.46/32\",\r\n \"23.96.210.49/32\",\r\n \"23.96.212.28/32\",\r\n
+ \ \"23.96.253.219/32\",\r\n \"23.97.68.172/32\",\r\n \"23.97.210.126/32\",\r\n
+ \ \"23.97.211.179/32\",\r\n \"23.97.218.130/32\",\r\n \"23.99.125.99/32\",\r\n
+ \ \"23.100.29.190/32\",\r\n \"23.100.82.16/32\",\r\n \"23.100.86.139/32\",\r\n
+ \ \"23.100.87.24/32\",\r\n \"23.100.87.56/32\",\r\n \"23.100.124.84/32\",\r\n
+ \ \"23.100.127.172/32\",\r\n \"23.101.132.208/32\",\r\n \"23.101.136.201/32\",\r\n
+ \ \"23.101.139.153/32\",\r\n \"23.101.183.225/32\",\r\n \"23.101.191.106/32\",\r\n
+ \ \"23.102.70.174/32\",\r\n \"40.67.60.176/28\",\r\n \"40.67.60.192/27\",\r\n
+ \ \"40.68.209.23/32\",\r\n \"40.68.222.65/32\",\r\n \"40.69.110.192/27\",\r\n
+ \ \"40.69.110.224/28\",\r\n \"40.70.26.154/32\",\r\n \"40.70.27.236/32\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.70.29.214/32\",\r\n \"40.70.131.151/32\",\r\n
+ \ \"40.74.64.207/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.68.85/32\",\r\n
+ \ \"40.74.74.21/32\",\r\n \"40.74.76.213/32\",\r\n \"40.74.77.205/32\",\r\n
+ \ \"40.74.81.13/32\",\r\n \"40.74.85.215/32\",\r\n \"40.74.131.151/32\",\r\n
+ \ \"40.74.132.29/32\",\r\n \"40.74.136.23/32\",\r\n \"40.74.140.4/32\",\r\n
+ \ \"40.74.140.162/32\",\r\n \"40.74.140.173/32\",\r\n \"40.74.142.133/32\",\r\n
+ \ \"40.74.143.215/32\",\r\n \"40.74.149.96/27\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.204.224/27\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"40.78.245.144/28\",\r\n \"40.78.245.160/27\",\r\n \"40.79.44.7/32\",\r\n
+ \ \"40.79.139.144/28\",\r\n \"40.79.139.160/27\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.160/27\",\r\n \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n
+ \ \"40.80.180.16/28\",\r\n \"40.80.180.32/27\",\r\n \"40.83.73.39/32\",\r\n
+ \ \"40.83.75.165/32\",\r\n \"40.83.77.208/32\",\r\n \"40.83.98.194/32\",\r\n
+ \ \"40.83.100.69/32\",\r\n \"40.83.127.19/32\",\r\n \"40.83.164.80/32\",\r\n
+ \ \"40.84.25.234/32\",\r\n \"40.84.30.147/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n
+ \ \"40.85.250.212/32\",\r\n \"40.85.252.47/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.86.203.228/32\",\r\n \"40.86.216.241/32\",\r\n \"40.86.217.241/32\",\r\n
+ \ \"40.86.226.149/32\",\r\n \"40.86.228.93/32\",\r\n \"40.89.186.28/32\",\r\n
+ \ \"40.89.186.30/32\",\r\n \"40.89.188.169/32\",\r\n \"40.89.190.104/32\",\r\n
+ \ \"40.89.191.161/32\",\r\n \"40.112.90.39/32\",\r\n \"40.112.92.104/32\",\r\n
+ \ \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n \"40.113.3.202/32\",\r\n
+ \ \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n \"40.113.11.17/32\",\r\n
+ \ \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n \"40.113.20.202/32\",\r\n
+ \ \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n \"40.113.218.230/32\",\r\n
+ \ \"40.114.8.21/32\",\r\n \"40.114.12.31/32\",\r\n \"40.114.13.216/32\",\r\n
+ \ \"40.114.14.143/32\",\r\n \"40.114.40.186/32\",\r\n \"40.114.51.5/32\",\r\n
+ \ \"40.114.82.191/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"40.120.64.0/27\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"40.121.91.41/32\",\r\n \"40.122.41.236/32\",\r\n \"40.122.46.197/32\",\r\n
+ \ \"40.122.170.198/32\",\r\n \"40.126.227.199/32\",\r\n \"40.126.240.14/32\",\r\n
+ \ \"40.126.249.73/32\",\r\n \"40.126.252.33/32\",\r\n \"40.126.252.85/32\",\r\n
+ \ \"40.126.252.107/32\",\r\n \"40.127.80.231/32\",\r\n \"40.127.83.170/32\",\r\n
+ \ \"40.127.84.38/32\",\r\n \"40.127.86.12/32\",\r\n \"40.127.91.18/32\",\r\n
+ \ \"40.127.93.92/32\",\r\n \"51.11.97.16/28\",\r\n \"51.11.97.32/27\",\r\n
+ \ \"51.12.100.112/28\",\r\n \"51.12.102.160/27\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.12.204.192/27\",\r\n \"51.12.229.32/27\",\r\n \"51.104.9.112/28\",\r\n
+ \ \"51.105.69.96/27\",\r\n \"51.107.60.160/27\",\r\n \"51.107.60.192/28\",\r\n
+ \ \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.104/32\",\r\n
+ \ \"51.116.168.222/32\",\r\n \"51.116.171.49/32\",\r\n \"51.116.171.209/32\",\r\n
+ \ \"51.116.175.0/32\",\r\n \"51.116.175.17/32\",\r\n \"51.116.175.51/32\",\r\n
+ \ \"51.116.233.22/32\",\r\n \"51.116.233.33/32\",\r\n \"51.116.233.35/32\",\r\n
+ \ \"51.116.233.40/32\",\r\n \"51.116.233.87/32\",\r\n \"51.116.243.224/27\",\r\n
+ \ \"51.120.100.160/27\",\r\n \"51.120.109.32/28\",\r\n \"51.120.220.128/27\",\r\n
+ \ \"51.120.220.160/28\",\r\n \"51.140.28.225/32\",\r\n \"51.140.73.85/32\",\r\n
+ \ \"51.140.74.14/32\",\r\n \"51.140.78.44/32\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.137.190/32\",\r\n
+ \ \"51.140.142.28/32\",\r\n \"51.140.153.135/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.140.158.24/32\",\r\n \"51.141.45.238/32\",\r\n \"51.141.47.136/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.54.185/32\",\r\n \"51.141.112.112/32\",\r\n \"51.141.113.36/32\",\r\n
+ \ \"51.141.114.77/32\",\r\n \"51.141.118.119/32\",\r\n \"51.141.119.63/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"51.144.182.201/32\",\r\n
+ \ \"52.143.156.55/32\",\r\n \"52.143.158.203/32\",\r\n \"52.143.162.83/32\",\r\n
+ \ \"52.143.164.15/32\",\r\n \"52.143.164.80/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.147.97.32/27\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"52.161.8.128/32\",\r\n \"52.161.9.108/32\",\r\n \"52.161.18.218/32\",\r\n
+ \ \"52.161.19.82/32\",\r\n \"52.161.26.172/32\",\r\n \"52.161.27.190/32\",\r\n
+ \ \"52.162.111.144/28\",\r\n \"52.162.111.160/27\",\r\n \"52.162.208.216/32\",\r\n
+ \ \"52.162.213.231/32\",\r\n \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n
+ \ \"52.163.230.166/32\",\r\n \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n
+ \ \"52.169.220.174/32\",\r\n \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n
+ \ \"52.172.50.24/32\",\r\n \"52.172.51.140/32\",\r\n \"52.172.52.0/32\",\r\n
+ \ \"52.172.55.231/32\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n
+ \ \"52.175.33.254/32\",\r\n \"52.175.198.132/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"52.182.141.160/27\",\r\n \"52.183.29.132/32\",\r\n
+ \ \"52.183.30.10/32\",\r\n \"52.183.30.169/32\",\r\n \"52.183.39.67/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"52.187.226.96/32\",\r\n
+ \ \"52.187.226.139/32\",\r\n \"52.187.227.245/32\",\r\n \"52.187.229.130/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.187.231.184/32\",\r\n \"52.189.214.42/32\",\r\n
+ \ \"52.189.216.28/32\",\r\n \"52.189.220.75/32\",\r\n \"52.189.222.77/32\",\r\n
+ \ \"52.228.39.244/32\",\r\n \"52.229.120.45/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.229.126.25/32\",\r\n \"52.231.23.16/28\",\r\n \"52.231.23.32/27\",\r\n
+ \ \"52.232.128.155/32\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n
+ \ \"65.52.8.225/32\",\r\n \"65.52.9.64/32\",\r\n \"65.52.9.96/32\",\r\n
+ \ \"65.52.10.183/32\",\r\n \"65.52.60.5/32\",\r\n \"65.52.175.34/32\",\r\n
+ \ \"65.52.185.96/32\",\r\n \"65.52.185.218/32\",\r\n \"65.52.186.153/32\",\r\n
+ \ \"65.52.186.190/32\",\r\n \"65.52.186.225/32\",\r\n \"65.52.211.164/32\",\r\n
+ \ \"70.37.50.6/32\",\r\n \"70.37.54.122/32\",\r\n \"102.133.28.208/28\",\r\n
+ \ \"102.133.28.224/27\",\r\n \"102.133.72.37/32\",\r\n \"102.133.72.98/32\",\r\n
+ \ \"102.133.72.113/32\",\r\n \"102.133.72.132/32\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.179/32\",\r\n \"102.133.72.183/32\",\r\n
+ \ \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n \"102.133.75.169/32\",\r\n
+ \ \"102.133.75.191/32\",\r\n \"102.133.156.176/28\",\r\n
+ \ \"102.133.224.125/32\",\r\n \"102.133.226.199/32\",\r\n
+ \ \"102.133.227.103/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.6/32\",\r\n
+ \ \"102.133.228.9/32\",\r\n \"102.133.230.4/32\",\r\n \"102.133.230.82/32\",\r\n
+ \ \"102.133.231.9/32\",\r\n \"102.133.231.51/32\",\r\n \"102.133.231.117/32\",\r\n
+ \ \"102.133.231.188/32\",\r\n \"102.133.251.224/27\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.40.218.37/32\",\r\n
+ \ \"104.41.0.115/32\",\r\n \"104.41.33.103/32\",\r\n \"104.41.162.245/32\",\r\n
+ \ \"104.41.163.102/32\",\r\n \"104.41.168.76/32\",\r\n \"104.41.173.132/32\",\r\n
+ \ \"104.41.179.165/32\",\r\n \"104.41.181.59/32\",\r\n \"104.41.182.232/32\",\r\n
+ \ \"104.42.38.32/32\",\r\n \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n
+ \ \"104.42.236.93/32\",\r\n \"104.43.166.135/32\",\r\n \"104.43.243.39/32\",\r\n
+ \ \"104.45.9.52/32\",\r\n \"104.45.153.81/32\",\r\n \"104.46.32.99/32\",\r\n
+ \ \"104.46.34.93/32\",\r\n \"104.46.34.208/32\",\r\n \"104.46.39.63/32\",\r\n
+ \ \"104.46.42.167/32\",\r\n \"104.46.98.208/32\",\r\n \"104.46.106.158/32\",\r\n
+ \ \"104.47.138.214/32\",\r\n \"104.208.25.27/32\",\r\n \"104.208.140.40/32\",\r\n
+ \ \"104.208.155.200/32\",\r\n \"104.208.158.174/32\",\r\n
+ \ \"104.209.131.77/32\",\r\n \"104.209.133.254/32\",\r\n
+ \ \"104.209.134.133/32\",\r\n \"104.210.89.222/32\",\r\n
+ \ \"104.210.89.244/32\",\r\n \"104.210.90.241/32\",\r\n \"104.210.91.55/32\",\r\n
+ \ \"104.210.144.48/32\",\r\n \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n
+ \ \"104.211.74.145/32\",\r\n \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n
+ \ \"104.211.101.108/32\",\r\n \"104.211.102.62/32\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"104.211.225.152/32\",\r\n \"104.211.227.229/32\",\r\n
+ \ \"104.211.229.115/32\",\r\n \"104.211.230.126/32\",\r\n
+ \ \"104.211.230.129/32\",\r\n \"104.211.231.39/32\",\r\n
+ \ \"104.214.137.243/32\",\r\n \"104.214.161.64/27\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.88.156/32\",\r\n \"104.215.89.144/32\",\r\n
+ \ \"104.215.90.86/32\",\r\n \"104.215.90.189/32\",\r\n \"104.215.90.203/32\",\r\n
+ \ \"104.215.93.125/32\",\r\n \"104.215.176.31/32\",\r\n \"104.215.176.81/32\",\r\n
+ \ \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n \"104.215.179.133/32\",\r\n
+ \ \"104.215.180.203/32\",\r\n \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n
+ \ \"111.221.85.74/32\",\r\n \"137.116.44.82/32\",\r\n \"137.116.80.70/32\",\r\n
+ \ \"137.116.85.245/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.117.72.32/32\",\r\n \"137.135.106.54/32\",\r\n \"138.91.17.47/32\",\r\n
+ \ \"138.91.25.99/32\",\r\n \"138.91.26.45/32\",\r\n \"138.91.188.137/32\",\r\n
+ \ \"157.55.210.61/32\",\r\n \"157.55.212.238/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n \"157.56.167.147/32\",\r\n
+ \ \"168.61.86.120/32\",\r\n \"168.61.152.201/32\",\r\n \"168.61.172.83/32\",\r\n
+ \ \"168.61.172.225/32\",\r\n \"168.61.173.172/32\",\r\n \"168.61.217.177/32\",\r\n
+ \ \"168.62.109.110/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"168.62.248.37/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.136.37/32\",\r\n
+ \ \"168.63.200.173/32\",\r\n \"191.232.32.19/32\",\r\n \"191.232.32.100/32\",\r\n
+ \ \"191.232.34.78/32\",\r\n \"191.232.34.249/32\",\r\n \"191.232.35.177/32\",\r\n
+ \ \"191.232.36.213/32\",\r\n \"191.233.54.240/28\",\r\n \"191.233.68.51/32\",\r\n
+ \ \"191.233.207.0/28\",\r\n \"191.233.207.32/27\",\r\n \"191.234.161.28/32\",\r\n
+ \ \"191.234.161.168/32\",\r\n \"191.234.162.131/32\",\r\n
+ \ \"191.234.162.178/32\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.234.182.26/32\",\r\n \"191.235.82.221/32\",\r\n \"191.235.86.199/32\",\r\n
+ \ \"191.235.91.7/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"191.235.180.188/32\",\r\n \"191.237.255.116/32\",\r\n
+ \ \"191.238.41.107/32\",\r\n \"191.238.161.62/32\",\r\n \"191.238.163.65/32\",\r\n
+ \ \"191.239.67.132/32\",\r\n \"191.239.82.62/32\",\r\n \"191.239.161.74/32\",\r\n
+ \ \"191.239.177.86/32\",\r\n \"207.46.148.176/32\",\r\n \"2603:1000:4:402::3c0/124\",\r\n
+ \ \"2603:1000:4:402::3e0/123\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1000:104:402::3e0/123\",\r\n \"2603:1010:6:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3e0/123\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:101:402::3e0/123\",\r\n \"2603:1010:304:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3e0/123\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1010:404:402::3e0/123\",\r\n \"2603:1020:5:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3e0/123\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:206:402::3e0/123\",\r\n \"2603:1020:305:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3e0/123\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:405:402::3e0/123\",\r\n \"2603:1020:605:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3e0/123\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:705:402::3e0/123\",\r\n \"2603:1020:805:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3e0/123\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:905:402::3e0/123\",\r\n \"2603:1020:a04:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3e0/123\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:b04:402::3e0/123\",\r\n \"2603:1020:c04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3e0/123\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\",\r\n \"2603:1020:e04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3e0/123\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:f04:402::3e0/123\",\r\n \"2603:1020:1004:400::250/124\",\r\n
+ \ \"2603:1020:1004:400::260/123\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1020:1104:400::520/123\",\r\n \"2603:1030:f:400::bc0/124\",\r\n
+ \ \"2603:1030:f:400::be0/123\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:10:402::3e0/123\",\r\n \"2603:1030:104:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3e0/123\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:107:400::3a0/123\",\r\n \"2603:1030:210:402::3c0/124\",\r\n
+ \ \"2603:1030:210:402::3e0/123\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40b:400::be0/123\",\r\n \"2603:1030:40c:402::3c0/124\",\r\n
+ \ \"2603:1030:40c:402::3e0/123\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:504:402::260/123\",\r\n \"2603:1030:608:402::3c0/124\",\r\n
+ \ \"2603:1030:608:402::3e0/123\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:807:402::3e0/123\",\r\n \"2603:1030:a07:402::340/124\",\r\n
+ \ \"2603:1030:a07:402::360/123\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:b04:402::3e0/123\",\r\n \"2603:1030:c06:400::bc0/124\",\r\n
+ \ \"2603:1030:c06:400::be0/123\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\",\r\n \"2603:1030:1005:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3e0/123\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:5:402::3e0/123\",\r\n \"2603:1040:207:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3e0/123\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:407:402::3e0/123\",\r\n \"2603:1040:606:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3e0/123\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:806:402::3e0/123\",\r\n \"2603:1040:904:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3e0/123\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\",\r\n \"2603:1040:b04:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3e0/123\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:c06:402::3e0/123\",\r\n \"2603:1040:d04:400::250/124\",\r\n
+ \ \"2603:1040:d04:400::260/123\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:f05:402::3e0/123\",\r\n \"2603:1040:1104:400::510/124\",\r\n
+ \ \"2603:1040:1104:400::520/123\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:6:402::3e0/123\",\r\n \"2603:1050:403:400::180/123\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.AustraliaCentral\",\r\n \"id\":
+ \"LogicApps.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:304:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.CanadaCentral\",\r\n
+ \ \"id\": \"LogicApps.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.184.150/32\",\r\n \"13.71.186.1/32\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"20.38.149.144/28\",\r\n \"20.38.149.160/27\",\r\n
+ \ \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n \"40.85.250.212/32\",\r\n
+ \ \"40.85.252.47/32\",\r\n \"52.228.39.244/32\",\r\n \"52.233.29.79/32\",\r\n
+ \ \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.CentralIndia\",\r\n \"id\": \"LogicApps.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.192/27\",\r\n
+ \ \"20.43.121.224/28\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.74.145/32\",\r\n
+ \ \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n \"104.211.101.108/32\",\r\n
+ \ \"104.211.102.62/32\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.GermanyNorth\",\r\n \"id\": \"LogicApps.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.NorthEurope\",\r\n \"id\": \"LogicApps.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"13.69.231.160/27\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.79.173.49/32\",\r\n \"40.112.90.39/32\",\r\n
+ \ \"40.112.92.104/32\",\r\n \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n
+ \ \"40.113.3.202/32\",\r\n \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n
+ \ \"40.113.11.17/32\",\r\n \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n
+ \ \"40.113.20.202/32\",\r\n \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n
+ \ \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"168.61.86.120/32\",\r\n \"191.235.180.188/32\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SoutheastAsia\",\r\n
+ \ \"id\": \"LogicApps.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.13.224/27\",\r\n \"13.67.91.135/32\",\r\n
+ \ \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n \"13.76.4.194/32\",\r\n
+ \ \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n \"52.163.230.166/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"104.215.176.31/32\",\r\n
+ \ \"104.215.176.81/32\",\r\n \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n
+ \ \"104.215.179.133/32\",\r\n \"104.215.180.203/32\",\r\n
+ \ \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n \"111.221.85.74/32\",\r\n
+ \ \"2603:1040:5:402::3c0/124\",\r\n \"2603:1040:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SwitzerlandWest\",\r\n
+ \ \"id\": \"LogicApps.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"2603:1020:b04:402::3c0/124\",\r\n \"2603:1020:b04:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKNorth\",\r\n
+ \ \"id\": \"LogicApps.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:305:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKSouth2\",\r\n
+ \ \"id\": \"LogicApps.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.58.144/28\",\r\n \"13.87.58.160/27\",\r\n
+ \ \"2603:1020:405:402::3c0/124\",\r\n \"2603:1020:405:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestIndia\",\r\n
+ \ \"id\": \"LogicApps.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"2603:1040:806:402::3c0/124\",\r\n \"2603:1040:806:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestUS\",\r\n
+ \ \"id\": \"LogicApps.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"40.83.164.80/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.42.38.32/32\",\r\n
+ \ \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n \"104.42.236.93/32\",\r\n
+ \ \"138.91.188.137/32\",\r\n \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n
+ \ \"157.56.167.147/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:a07:402::360/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicAppsManagement\",\r\n
+ \ \"id\": \"LogicAppsManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.128.68/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.67.236.76/32\",\r\n \"13.69.109.144/28\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.71.146.140/32\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.115.153/32\",\r\n \"13.73.244.144/28\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.153.66/32\",\r\n \"13.77.55.128/28\",\r\n \"13.78.43.164/32\",\r\n
+ \ \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n \"13.78.137.247/32\",\r\n
+ \ \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n \"13.84.43.45/32\",\r\n
+ \ \"13.85.79.155/32\",\r\n \"13.86.221.240/28\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.124.144/28\",\r\n \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"13.95.155.53/32\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.38.128.176/28\",\r\n
+ \ \"20.38.149.144/28\",\r\n \"20.42.64.48/28\",\r\n \"20.43.121.224/28\",\r\n
+ \ \"20.44.4.176/28\",\r\n \"20.45.64.29/32\",\r\n \"20.45.64.87/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.75.193/32\",\r\n \"20.72.30.160/28\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"23.97.68.172/32\",\r\n \"40.67.60.176/28\",\r\n \"40.69.110.224/28\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.81.13/32\",\r\n
+ \ \"40.74.85.215/32\",\r\n \"40.74.140.173/32\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.239.16/28\",\r\n \"40.78.245.144/28\",\r\n
+ \ \"40.79.44.7/32\",\r\n \"40.79.139.144/28\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n \"40.80.180.16/28\",\r\n
+ \ \"40.83.98.194/32\",\r\n \"40.84.25.234/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.112.90.39/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"51.11.97.16/28\",\r\n \"51.12.100.112/28\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.104.9.112/28\",\r\n \"51.107.60.192/28\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"51.116.60.144/28\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.222/32\",\r\n
+ \ \"51.116.171.209/32\",\r\n \"51.116.175.0/32\",\r\n \"51.116.233.40/32\",\r\n
+ \ \"51.120.109.32/28\",\r\n \"51.120.220.160/28\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.160.90.237/32\",\r\n \"52.161.8.128/32\",\r\n \"52.161.19.82/32\",\r\n
+ \ \"52.161.26.172/32\",\r\n \"52.162.111.144/28\",\r\n \"52.163.93.214/32\",\r\n
+ \ \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n
+ \ \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n \"52.172.51.140/32\",\r\n
+ \ \"52.172.157.194/32\",\r\n \"52.172.184.192/32\",\r\n \"52.172.191.194/32\",\r\n
+ \ \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n \"52.183.30.10/32\",\r\n
+ \ \"52.183.39.67/32\",\r\n \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.189.216.28/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.231.23.16/28\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.30.218/32\",\r\n \"65.52.9.64/32\",\r\n
+ \ \"65.52.211.164/32\",\r\n \"102.133.28.208/28\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n
+ \ \"102.133.156.176/28\",\r\n \"102.133.224.125/32\",\r\n
+ \ \"102.133.226.199/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.9/32\",\r\n
+ \ \"104.43.243.39/32\",\r\n \"104.210.89.222/32\",\r\n \"104.210.89.244/32\",\r\n
+ \ \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.157.237/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.165.81/32\",\r\n \"104.211.225.152/32\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.181.6/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.135.106.54/32\",\r\n \"138.91.188.137/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.200.173/32\",\r\n
+ \ \"191.233.54.240/28\",\r\n \"191.233.207.0/28\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.235.86.199/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"2603:1000:4:402::3c0/124\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3c0/124\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3c0/124\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3c0/124\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3c0/124\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3c0/124\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3c0/124\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:1004:400::250/124\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1030:f:400::bc0/124\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3c0/124\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:210:402::3c0/124\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40c:402::3c0/124\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:608:402::3c0/124\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:c06:400::bc0/124\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3c0/124\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3c0/124\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3c0/124\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3c0/124\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3c0/124\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:d04:400::250/124\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:1104:400::510/124\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftCloudAppSecurity\",\r\n \"id\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.26.88/32\",\r\n \"13.64.28.87/32\",\r\n
+ \ \"13.64.29.32/32\",\r\n \"13.64.29.161/32\",\r\n \"13.64.30.76/32\",\r\n
+ \ \"13.64.30.117/32\",\r\n \"13.64.30.118/32\",\r\n \"13.64.31.116/32\",\r\n
+ \ \"13.64.196.27/32\",\r\n \"13.64.198.19/32\",\r\n \"13.64.198.97/32\",\r\n
+ \ \"13.64.199.41/32\",\r\n \"13.64.252.115/32\",\r\n \"13.66.134.18/32\",\r\n
+ \ \"13.66.142.80/28\",\r\n \"13.66.158.8/32\",\r\n \"13.66.168.209/32\",\r\n
+ \ \"13.66.173.192/32\",\r\n \"13.66.210.205/32\",\r\n \"13.67.10.192/28\",\r\n
+ \ \"13.67.48.221/32\",\r\n \"13.69.67.96/28\",\r\n \"13.69.107.96/28\",\r\n
+ \ \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n \"13.70.74.160/27\",\r\n
+ \ \"13.71.175.0/27\",\r\n \"13.71.196.192/27\",\r\n \"13.73.242.224/27\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"13.75.39.128/27\",\r\n
+ \ \"13.76.43.73/32\",\r\n \"13.76.129.255/32\",\r\n \"13.77.53.96/27\",\r\n
+ \ \"13.77.80.28/32\",\r\n \"13.77.136.80/32\",\r\n \"13.77.148.229/32\",\r\n
+ \ \"13.77.160.162/32\",\r\n \"13.77.163.148/32\",\r\n \"13.77.165.61/32\",\r\n
+ \ \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n \"13.80.125.22/32\",\r\n
+ \ \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n \"13.81.212.71/32\",\r\n
+ \ \"13.86.176.189/32\",\r\n \"13.86.176.211/32\",\r\n \"13.86.219.224/27\",\r\n
+ \ \"13.86.235.202/32\",\r\n \"13.86.239.236/32\",\r\n \"13.88.224.38/32\",\r\n
+ \ \"13.88.224.211/32\",\r\n \"13.88.224.222/32\",\r\n \"13.88.226.74/32\",\r\n
+ \ \"13.88.227.7/32\",\r\n \"13.89.178.0/28\",\r\n \"13.91.61.249/32\",\r\n
+ \ \"13.91.91.243/32\",\r\n \"13.91.98.185/32\",\r\n \"13.93.32.114/32\",\r\n
+ \ \"13.93.113.192/32\",\r\n \"13.93.196.52/32\",\r\n \"13.93.216.68/32\",\r\n
+ \ \"13.93.233.42/32\",\r\n \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n
+ \ \"13.95.30.46/32\",\r\n \"20.36.220.93/32\",\r\n \"20.36.222.59/32\",\r\n
+ \ \"20.36.222.60/32\",\r\n \"20.36.240.76/32\",\r\n \"20.36.244.208/32\",\r\n
+ \ \"20.36.245.0/32\",\r\n \"20.36.245.182/32\",\r\n \"20.36.245.235/32\",\r\n
+ \ \"20.36.246.188/32\",\r\n \"20.36.248.40/32\",\r\n \"20.40.106.50/31\",\r\n
+ \ \"20.40.107.84/32\",\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"20.40.160.184/32\",\r\n \"20.40.161.119/32\",\r\n
+ \ \"20.40.161.131/32\",\r\n \"20.40.161.132/32\",\r\n \"20.40.161.135/32\",\r\n
+ \ \"20.40.161.140/30\",\r\n \"20.40.161.160/31\",\r\n \"20.40.162.86/32\",\r\n
+ \ \"20.40.162.200/32\",\r\n \"20.40.163.88/32\",\r\n \"20.40.163.96/31\",\r\n
+ \ \"20.40.163.130/32\",\r\n \"20.40.163.133/32\",\r\n \"20.40.163.178/31\",\r\n
+ \ \"20.42.29.162/32\",\r\n \"20.42.31.48/32\",\r\n \"20.42.31.251/32\",\r\n
+ \ \"20.44.8.208/28\",\r\n \"20.44.17.64/28\",\r\n \"20.44.72.173/32\",\r\n
+ \ \"20.44.72.217/32\",\r\n \"20.44.73.253/32\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.184.57.4/32\",\r\n \"20.184.57.218/32\",\r\n \"20.184.58.46/32\",\r\n
+ \ \"20.184.58.110/32\",\r\n \"20.184.60.77/32\",\r\n \"20.184.61.67/32\",\r\n
+ \ \"20.184.61.253/32\",\r\n \"20.184.63.158/32\",\r\n \"20.184.63.216/32\",\r\n
+ \ \"20.184.63.232/32\",\r\n \"20.188.72.248/32\",\r\n \"23.97.54.160/32\",\r\n
+ \ \"23.97.55.165/32\",\r\n \"23.98.83.96/28\",\r\n \"23.100.67.153/32\",\r\n
+ \ \"40.65.169.46/32\",\r\n \"40.65.169.97/32\",\r\n \"40.65.169.196/32\",\r\n
+ \ \"40.65.169.236/32\",\r\n \"40.65.170.17/32\",\r\n \"40.65.170.26/32\",\r\n
+ \ \"40.65.170.80/30\",\r\n \"40.65.170.112/31\",\r\n \"40.65.170.123/32\",\r\n
+ \ \"40.65.170.125/32\",\r\n \"40.65.170.128/32\",\r\n \"40.65.170.133/32\",\r\n
+ \ \"40.65.170.137/32\",\r\n \"40.65.233.253/32\",\r\n \"40.65.235.54/32\",\r\n
+ \ \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n \"40.66.57.203/32\",\r\n
+ \ \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n \"40.66.59.195/32\",\r\n
+ \ \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n \"40.66.60.101/32\",\r\n
+ \ \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n \"40.66.60.185/32\",\r\n
+ \ \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n \"40.66.60.208/31\",\r\n
+ \ \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n \"40.66.60.216/31\",\r\n
+ \ \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n \"40.66.60.222/32\",\r\n
+ \ \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n \"40.66.60.232/32\",\r\n
+ \ \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n \"40.66.61.193/32\",\r\n
+ \ \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n \"40.66.62.9/32\",\r\n
+ \ \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n \"40.66.62.154/32\",\r\n
+ \ \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n \"40.66.63.255/32\",\r\n
+ \ \"40.67.152.91/32\",\r\n \"40.67.152.227/32\",\r\n \"40.67.154.160/32\",\r\n
+ \ \"40.67.155.146/32\",\r\n \"40.67.159.55/32\",\r\n \"40.67.216.253/32\",\r\n
+ \ \"40.67.219.133/32\",\r\n \"40.67.251.0/32\",\r\n \"40.67.254.233/32\",\r\n
+ \ \"40.68.245.184/32\",\r\n \"40.69.108.96/27\",\r\n \"40.70.0.255/32\",\r\n
+ \ \"40.70.29.49/32\",\r\n \"40.70.29.200/32\",\r\n \"40.70.148.112/28\",\r\n
+ \ \"40.70.184.90/32\",\r\n \"40.71.14.16/28\",\r\n \"40.74.1.235/32\",\r\n
+ \ \"40.74.6.204/32\",\r\n \"40.76.78.217/32\",\r\n \"40.78.23.204/32\",\r\n
+ \ \"40.78.56.129/32\",\r\n \"40.78.229.64/28\",\r\n \"40.78.236.160/28\",\r\n
+ \ \"40.78.245.0/28\",\r\n \"40.78.251.128/28\",\r\n \"40.79.132.96/28\",\r\n
+ \ \"40.79.139.16/28\",\r\n \"40.79.146.224/28\",\r\n \"40.79.156.112/28\",\r\n
+ \ \"40.79.180.64/27\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.81.56.80/32\",\r\n \"40.81.57.138/32\",\r\n
+ \ \"40.81.57.141/32\",\r\n \"40.81.57.144/32\",\r\n \"40.81.57.157/32\",\r\n
+ \ \"40.81.57.164/32\",\r\n \"40.81.57.169/32\",\r\n \"40.81.58.180/32\",\r\n
+ \ \"40.81.58.184/32\",\r\n \"40.81.58.193/32\",\r\n \"40.81.59.4/32\",\r\n
+ \ \"40.81.59.90/32\",\r\n \"40.81.59.93/32\",\r\n \"40.81.62.162/32\",\r\n
+ \ \"40.81.62.179/32\",\r\n \"40.81.62.193/32\",\r\n \"40.81.62.199/32\",\r\n
+ \ \"40.81.62.206/32\",\r\n \"40.81.62.209/32\",\r\n \"40.81.62.212/32\",\r\n
+ \ \"40.81.62.220/30\",\r\n \"40.81.62.224/32\",\r\n \"40.81.62.255/32\",\r\n
+ \ \"40.81.63.1/32\",\r\n \"40.81.63.2/32\",\r\n \"40.81.63.4/31\",\r\n
+ \ \"40.81.63.7/32\",\r\n \"40.81.63.8/32\",\r\n \"40.81.63.235/32\",\r\n
+ \ \"40.81.63.245/32\",\r\n \"40.81.63.248/32\",\r\n \"40.81.120.13/32\",\r\n
+ \ \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n \"40.81.120.187/32\",\r\n
+ \ \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n \"40.81.121.66/32\",\r\n
+ \ \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n \"40.81.121.107/32\",\r\n
+ \ \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n \"40.81.121.127/32\",\r\n
+ \ \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n \"40.81.121.175/32\",\r\n
+ \ \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n \"40.81.122.76/32\",\r\n
+ \ \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n \"40.81.123.157/32\",\r\n
+ \ \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n \"40.81.127.25/32\",\r\n
+ \ \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n \"40.81.127.229/32\",\r\n
+ \ \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n \"40.81.152.126/32\",\r\n
+ \ \"40.81.152.171/32\",\r\n \"40.81.152.172/32\",\r\n \"40.81.156.153/32\",\r\n
+ \ \"40.81.156.154/31\",\r\n \"40.81.156.156/32\",\r\n \"40.81.159.35/32\",\r\n
+ \ \"40.81.159.77/32\",\r\n \"40.82.184.80/32\",\r\n \"40.82.185.36/32\",\r\n
+ \ \"40.82.185.117/32\",\r\n \"40.82.185.229/32\",\r\n \"40.82.186.166/32\",\r\n
+ \ \"40.82.186.168/31\",\r\n \"40.82.186.176/31\",\r\n \"40.82.186.180/32\",\r\n
+ \ \"40.82.186.182/32\",\r\n \"40.82.186.185/32\",\r\n \"40.82.186.214/32\",\r\n
+ \ \"40.82.186.231/32\",\r\n \"40.82.187.161/32\",\r\n \"40.82.187.162/31\",\r\n
+ \ \"40.82.187.164/32\",\r\n \"40.82.187.177/32\",\r\n \"40.82.187.178/31\",\r\n
+ \ \"40.82.187.199/32\",\r\n \"40.82.187.200/32\",\r\n \"40.82.187.202/32\",\r\n
+ \ \"40.82.187.204/30\",\r\n \"40.82.187.208/30\",\r\n \"40.82.187.212/31\",\r\n
+ \ \"40.82.187.218/32\",\r\n \"40.82.187.223/32\",\r\n \"40.82.190.163/32\",\r\n
+ \ \"40.82.191.58/32\",\r\n \"40.84.2.83/32\",\r\n \"40.84.4.93/32\",\r\n
+ \ \"40.84.4.119/32\",\r\n \"40.84.5.28/32\",\r\n \"40.84.49.16/32\",\r\n
+ \ \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n \"40.89.142.184/32\",\r\n
+ \ \"40.89.143.43/32\",\r\n \"40.90.184.197/32\",\r\n \"40.90.185.64/32\",\r\n
+ \ \"40.90.191.153/32\",\r\n \"40.90.218.196/31\",\r\n \"40.90.218.198/32\",\r\n
+ \ \"40.90.218.203/32\",\r\n \"40.90.219.121/32\",\r\n \"40.90.219.184/32\",\r\n
+ \ \"40.90.220.37/32\",\r\n \"40.90.220.190/32\",\r\n \"40.90.220.196/32\",\r\n
+ \ \"40.90.222.64/32\",\r\n \"40.91.74.37/32\",\r\n \"40.91.78.105/32\",\r\n
+ \ \"40.91.114.40/29\",\r\n \"40.91.114.48/31\",\r\n \"40.91.122.25/32\",\r\n
+ \ \"40.91.122.38/32\",\r\n \"40.91.126.157/32\",\r\n \"40.91.127.44/32\",\r\n
+ \ \"40.91.198.19/32\",\r\n \"40.113.121.176/32\",\r\n \"40.114.112.147/32\",\r\n
+ \ \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n \"40.115.25.50/32\",\r\n
+ \ \"40.115.71.111/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.118.211.172/32\",\r\n \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n
+ \ \"40.119.154.72/32\",\r\n \"40.119.203.98/31\",\r\n \"40.119.203.158/31\",\r\n
+ \ \"40.119.203.208/31\",\r\n \"40.119.207.131/32\",\r\n \"40.119.207.144/32\",\r\n
+ \ \"40.119.207.164/32\",\r\n \"40.119.207.166/32\",\r\n \"40.119.207.174/32\",\r\n
+ \ \"40.119.207.182/32\",\r\n \"40.119.207.193/32\",\r\n \"40.119.207.200/32\",\r\n
+ \ \"40.119.215.167/32\",\r\n \"40.121.134.1/32\",\r\n \"40.124.53.69/32\",\r\n
+ \ \"51.11.26.92/32\",\r\n \"51.11.26.95/32\",\r\n \"51.104.9.16/28\",\r\n
+ \ \"51.105.37.244/32\",\r\n \"51.105.67.224/28\",\r\n \"51.105.75.176/28\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.1.10/32\",\r\n
+ \ \"51.140.8.108/32\",\r\n \"51.140.8.180/32\",\r\n \"51.140.35.95/32\",\r\n
+ \ \"51.140.52.106/32\",\r\n \"51.140.78.213/32\",\r\n \"51.140.105.124/32\",\r\n
+ \ \"51.140.125.227/32\",\r\n \"51.140.164.179/32\",\r\n \"51.140.191.146/32\",\r\n
+ \ \"51.140.212.128/27\",\r\n \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n
+ \ \"51.141.2.189/32\",\r\n \"51.141.7.11/32\",\r\n \"51.143.58.207/32\",\r\n
+ \ \"51.143.111.58/32\",\r\n \"51.143.120.236/32\",\r\n \"51.143.120.242/32\",\r\n
+ \ \"51.143.122.59/32\",\r\n \"51.143.122.60/32\",\r\n \"51.144.56.60/32\",\r\n
+ \ \"51.145.108.227/32\",\r\n \"51.145.108.250/32\",\r\n \"51.145.181.195/32\",\r\n
+ \ \"51.145.181.214/32\",\r\n \"52.137.56.200/32\",\r\n \"52.137.89.147/32\",\r\n
+ \ \"52.138.227.160/28\",\r\n \"52.139.1.70/32\",\r\n \"52.139.1.156/32\",\r\n
+ \ \"52.139.1.158/31\",\r\n \"52.139.1.200/32\",\r\n \"52.139.1.218/32\",\r\n
+ \ \"52.139.2.0/32\",\r\n \"52.139.16.105/32\",\r\n \"52.139.18.234/32\",\r\n
+ \ \"52.139.18.236/32\",\r\n \"52.139.19.71/32\",\r\n \"52.139.19.187/32\",\r\n
+ \ \"52.139.19.215/32\",\r\n \"52.139.19.247/32\",\r\n \"52.139.20.31/32\",\r\n
+ \ \"52.139.20.118/32\",\r\n \"52.139.21.70/32\",\r\n \"52.139.245.1/32\",\r\n
+ \ \"52.139.245.21/32\",\r\n \"52.139.245.40/32\",\r\n \"52.139.245.48/32\",\r\n
+ \ \"52.139.251.219/32\",\r\n \"52.139.252.105/32\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.143.73.88/32\",\r\n \"52.143.74.31/32\",\r\n \"52.148.115.188/32\",\r\n
+ \ \"52.148.115.194/32\",\r\n \"52.148.115.238/32\",\r\n \"52.148.116.37/32\",\r\n
+ \ \"52.148.161.45/32\",\r\n \"52.148.161.53/32\",\r\n \"52.151.237.243/32\",\r\n
+ \ \"52.151.238.5/32\",\r\n \"52.151.244.65/32\",\r\n \"52.151.247.27/32\",\r\n
+ \ \"52.153.240.107/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.157.19.228/32\",\r\n \"52.157.20.142/32\",\r\n \"52.157.218.219/32\",\r\n
+ \ \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n \"52.157.232.147/32\",\r\n
+ \ \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n \"52.157.233.133/32\",\r\n
+ \ \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n \"52.157.234.222/32\",\r\n
+ \ \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n \"52.157.236.195/32\",\r\n
+ \ \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n \"52.157.237.255/32\",\r\n
+ \ \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n \"52.157.239.132/32\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.167.107.96/28\",\r\n \"52.169.192.237/32\",\r\n
+ \ \"52.174.56.180/32\",\r\n \"52.177.85.43/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.179.155.177/32\",\r\n \"52.179.194.73/32\",\r\n
+ \ \"52.179.198.41/32\",\r\n \"52.182.139.208/28\",\r\n \"52.183.24.254/32\",\r\n
+ \ \"52.183.30.204/32\",\r\n \"52.183.75.62/32\",\r\n \"52.184.165.82/32\",\r\n
+ \ \"52.188.217.236/32\",\r\n \"52.189.208.36/32\",\r\n \"52.189.213.36/32\",\r\n
+ \ \"52.189.213.124/32\",\r\n \"52.189.218.253/32\",\r\n \"52.190.26.220/32\",\r\n
+ \ \"52.190.31.62/32\",\r\n \"52.191.129.65/32\",\r\n \"52.191.237.188/32\",\r\n
+ \ \"52.191.238.65/32\",\r\n \"52.224.188.157/32\",\r\n \"52.224.188.168/32\",\r\n
+ \ \"52.224.190.225/32\",\r\n \"52.224.191.62/32\",\r\n \"52.224.201.216/32\",\r\n
+ \ \"52.224.201.223/32\",\r\n \"52.224.202.86/32\",\r\n \"52.224.202.91/32\",\r\n
+ \ \"52.225.225.218/32\",\r\n \"52.225.231.232/32\",\r\n \"52.232.224.227/32\",\r\n
+ \ \"52.232.225.84/32\",\r\n \"52.232.228.217/32\",\r\n \"52.232.245.96/32\",\r\n
+ \ \"52.236.187.80/28\",\r\n \"52.249.25.160/32\",\r\n \"52.249.25.165/32\",\r\n
+ \ \"65.52.138.123/32\",\r\n \"65.52.229.200/32\",\r\n \"104.40.28.202/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.42.15.41/32\",\r\n \"104.42.34.58/32\",\r\n
+ \ \"104.42.38.254/32\",\r\n \"104.42.54.24/32\",\r\n \"104.42.75.120/32\",\r\n
+ \ \"104.42.211.215/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.45.168.103/32\",\r\n \"104.45.168.104/32\",\r\n \"104.45.168.106/32\",\r\n
+ \ \"104.45.168.108/32\",\r\n \"104.45.168.111/32\",\r\n \"104.45.168.114/32\",\r\n
+ \ \"104.45.170.70/32\",\r\n \"104.45.170.127/32\",\r\n \"104.45.170.161/32\",\r\n
+ \ \"104.45.170.173/32\",\r\n \"104.45.170.174/31\",\r\n \"104.45.170.176/32\",\r\n
+ \ \"104.45.170.178/32\",\r\n \"104.45.170.180/32\",\r\n \"104.45.170.182/31\",\r\n
+ \ \"104.45.170.184/31\",\r\n \"104.45.170.186/32\",\r\n \"104.45.170.188/32\",\r\n
+ \ \"104.45.170.191/32\",\r\n \"104.45.170.194/32\",\r\n \"104.45.170.196/32\",\r\n
+ \ \"104.46.116.211/32\",\r\n \"104.46.121.72/32\",\r\n \"104.46.122.189/32\",\r\n
+ \ \"104.208.216.221/32\",\r\n \"104.209.35.177/32\",\r\n
+ \ \"104.209.168.251/32\",\r\n \"104.210.0.32/32\",\r\n \"104.211.9.226/32\",\r\n
+ \ \"104.214.225.33/32\",\r\n \"137.116.52.31/32\",\r\n \"138.91.147.71/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.96/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.128/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n
+ \ \"40.66.57.203/32\",\r\n \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n
+ \ \"40.66.59.195/32\",\r\n \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n
+ \ \"40.66.60.101/32\",\r\n \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n
+ \ \"40.66.60.185/32\",\r\n \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n
+ \ \"40.66.60.208/31\",\r\n \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n
+ \ \"40.66.60.216/31\",\r\n \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n
+ \ \"40.66.60.222/32\",\r\n \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n
+ \ \"40.66.60.232/32\",\r\n \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n
+ \ \"40.66.61.193/32\",\r\n \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n
+ \ \"40.66.62.9/32\",\r\n \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n
+ \ \"40.66.62.154/32\",\r\n \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n
+ \ \"40.66.63.255/32\",\r\n \"40.79.132.96/28\",\r\n \"40.79.139.16/28\",\r\n
+ \ \"40.79.146.224/28\",\r\n \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n
+ \ \"40.89.142.184/32\",\r\n \"40.89.143.43/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"40.67.251.0/32\",\r\n
+ \ \"40.67.254.233/32\",\r\n \"52.138.227.160/28\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.169.192.237/32\",\r\n \"65.52.229.200/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.242.224/27\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.188.72.248/32\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.124.53.69/32\",\r\n \"52.153.240.107/32\",\r\n
+ \ \"52.249.25.160/32\",\r\n \"52.249.25.165/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.106.50/31\",\r\n \"20.40.107.84/32\",\r\n
+ \ \"40.81.120.13/32\",\r\n \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n
+ \ \"40.81.120.187/32\",\r\n \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n
+ \ \"40.81.121.66/32\",\r\n \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n
+ \ \"40.81.121.107/32\",\r\n \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n
+ \ \"40.81.121.127/32\",\r\n \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n
+ \ \"40.81.121.175/32\",\r\n \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n
+ \ \"40.81.122.76/32\",\r\n \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n
+ \ \"40.81.123.157/32\",\r\n \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n
+ \ \"40.81.127.25/32\",\r\n \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n
+ \ \"40.81.127.229/32\",\r\n \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.212.128/27\",\r\n
+ \ \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n \"51.141.2.189/32\",\r\n
+ \ \"51.141.7.11/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.96/28\",\r\n
+ \ \"13.69.107.96/28\",\r\n \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n
+ \ \"13.80.125.22/32\",\r\n \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n
+ \ \"13.81.212.71/32\",\r\n \"13.93.32.114/32\",\r\n \"13.93.113.192/32\",\r\n
+ \ \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n \"13.95.30.46/32\",\r\n
+ \ \"40.67.216.253/32\",\r\n \"40.67.219.133/32\",\r\n \"40.68.245.184/32\",\r\n
+ \ \"40.74.1.235/32\",\r\n \"40.74.6.204/32\",\r\n \"40.91.198.19/32\",\r\n
+ \ \"40.113.121.176/32\",\r\n \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n
+ \ \"40.115.25.50/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n \"40.119.154.72/32\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.144.56.60/32\",\r\n \"51.145.181.195/32\",\r\n \"51.145.181.214/32\",\r\n
+ \ \"52.137.56.200/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.157.218.219/32\",\r\n \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n
+ \ \"52.157.232.147/32\",\r\n \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n
+ \ \"52.157.233.133/32\",\r\n \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n
+ \ \"52.157.234.222/32\",\r\n \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n
+ \ \"52.157.236.195/32\",\r\n \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n
+ \ \"52.157.237.255/32\",\r\n \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n
+ \ \"52.157.239.132/32\",\r\n \"52.174.56.180/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.236.187.80/28\",\r\n \"65.52.138.123/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.214.225.33/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftContainerRegistry\",\r\n \"id\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n \"13.67.8.112/29\",\r\n
+ \ \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"13.69.227.80/29\",\r\n
+ \ \"13.70.72.128/29\",\r\n \"13.71.170.48/29\",\r\n \"13.71.194.120/29\",\r\n
+ \ \"13.74.107.72/29\",\r\n \"13.75.34.152/29\",\r\n \"13.77.50.72/29\",\r\n
+ \ \"13.78.106.192/29\",\r\n \"13.87.56.88/29\",\r\n \"13.87.122.88/29\",\r\n
+ \ \"13.89.170.208/29\",\r\n \"20.37.74.64/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"20.44.2.16/29\",\r\n \"20.44.26.136/29\",\r\n \"20.45.122.136/29\",\r\n
+ \ \"20.49.82.8/29\",\r\n \"20.49.90.8/29\",\r\n \"20.72.26.8/29\",\r\n
+ \ \"20.150.170.16/29\",\r\n \"20.150.178.136/29\",\r\n \"20.150.186.136/29\",\r\n
+ \ \"20.192.98.136/29\",\r\n \"20.192.234.16/29\",\r\n \"20.193.202.8/29\",\r\n
+ \ \"20.194.66.8/29\",\r\n \"23.98.82.104/29\",\r\n \"40.67.58.16/29\",\r\n
+ \ \"40.69.106.72/29\",\r\n \"40.70.146.80/29\",\r\n \"40.71.10.208/29\",\r\n
+ \ \"40.74.100.56/29\",\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n
+ \ \"40.78.194.72/29\",\r\n \"40.78.202.64/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.78.234.40/29\",\r\n \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n
+ \ \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n \"40.79.146.24/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"40.79.162.24/29\",\r\n \"40.79.170.8/29\",\r\n
+ \ \"40.79.178.72/29\",\r\n \"40.79.186.0/29\",\r\n \"40.79.194.88/29\",\r\n
+ \ \"40.80.50.136/29\",\r\n \"40.112.242.152/29\",\r\n \"40.120.74.8/29\",\r\n
+ \ \"51.12.98.16/29\",\r\n \"51.12.202.16/29\",\r\n \"51.12.226.136/29\",\r\n
+ \ \"51.12.234.136/29\",\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.107.58.16/29\",\r\n \"51.107.154.16/29\",\r\n \"51.116.58.16/29\",\r\n
+ \ \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n \"51.116.250.136/29\",\r\n
+ \ \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n \"51.120.210.136/29\",\r\n
+ \ \"51.120.218.16/29\",\r\n \"51.140.146.192/29\",\r\n \"51.140.210.88/29\",\r\n
+ \ \"52.138.90.24/29\",\r\n \"52.138.226.72/29\",\r\n \"52.162.106.152/29\",\r\n
+ \ \"52.167.106.72/29\",\r\n \"52.182.138.200/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"52.231.146.88/29\",\r\n \"52.236.186.72/29\",\r\n \"52.246.154.136/29\",\r\n
+ \ \"65.52.250.8/29\",\r\n \"102.133.26.16/29\",\r\n \"102.133.122.136/29\",\r\n
+ \ \"102.133.154.16/29\",\r\n \"102.133.250.136/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"104.208.144.72/29\",\r\n \"104.211.81.128/29\",\r\n
+ \ \"104.211.146.72/29\",\r\n \"104.214.18.176/29\",\r\n \"191.233.50.8/29\",\r\n
+ \ \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1000:4:402::88/125\",\r\n
+ \ \"2603:1000:104:402::88/125\",\r\n \"2603:1000:104:802::88/125\",\r\n
+ \ \"2603:1000:104:c02::88/125\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\",\r\n
+ \ \"2603:1010:101:402::88/125\",\r\n \"2603:1010:304:402::88/125\",\r\n
+ \ \"2603:1010:404:402::88/125\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\",\r\n \"2603:1020:305:402::88/125\",\r\n
+ \ \"2603:1020:405:402::88/125\",\r\n \"2603:1020:605:402::88/125\",\r\n
+ \ \"2603:1020:705:402::88/125\",\r\n \"2603:1020:705:802::88/125\",\r\n
+ \ \"2603:1020:705:c02::88/125\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\",\r\n
+ \ \"2603:1020:905:402::88/125\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\",\r\n
+ \ \"2603:1020:b04:402::88/125\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\",\r\n
+ \ \"2603:1020:d04:402::88/125\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\",\r\n
+ \ \"2603:1020:f04:402::88/125\",\r\n \"2603:1020:1004:400::88/125\",\r\n
+ \ \"2603:1020:1004:400::3b0/125\",\r\n \"2603:1020:1004:800::148/125\",\r\n
+ \ \"2603:1020:1104:400::88/125\",\r\n \"2603:1030:f:400::888/125\",\r\n
+ \ \"2603:1030:10:402::88/125\",\r\n \"2603:1030:10:802::88/125\",\r\n
+ \ \"2603:1030:10:c02::88/125\",\r\n \"2603:1030:104:402::88/125\",\r\n
+ \ \"2603:1030:107:400::8/125\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\",\r\n
+ \ \"2603:1030:504:402::88/125\",\r\n \"2603:1030:504:402::3b0/125\",\r\n
+ \ \"2603:1030:504:802::148/125\",\r\n \"2603:1030:504:802::3e8/125\",\r\n
+ \ \"2603:1030:608:402::88/125\",\r\n \"2603:1030:807:402::88/125\",\r\n
+ \ \"2603:1030:807:802::88/125\",\r\n \"2603:1030:807:c02::88/125\",\r\n
+ \ \"2603:1030:a07:402::88/125\",\r\n \"2603:1030:b04:402::88/125\",\r\n
+ \ \"2603:1030:c06:400::888/125\",\r\n \"2603:1030:c06:802::88/125\",\r\n
+ \ \"2603:1030:c06:c02::88/125\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\",\r\n
+ \ \"2603:1030:1005:402::88/125\",\r\n \"2603:1040:5:402::88/125\",\r\n
+ \ \"2603:1040:5:802::88/125\",\r\n \"2603:1040:5:c02::88/125\",\r\n
+ \ \"2603:1040:207:402::88/125\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\",\r\n
+ \ \"2603:1040:606:402::88/125\",\r\n \"2603:1040:806:402::88/125\",\r\n
+ \ \"2603:1040:904:402::88/125\",\r\n \"2603:1040:904:802::88/125\",\r\n
+ \ \"2603:1040:904:c02::88/125\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\",\r\n
+ \ \"2603:1040:b04:402::88/125\",\r\n \"2603:1040:c06:402::88/125\",\r\n
+ \ \"2603:1040:d04:400::88/125\",\r\n \"2603:1040:d04:400::3b0/125\",\r\n
+ \ \"2603:1040:d04:800::148/125\",\r\n \"2603:1040:f05:402::88/125\",\r\n
+ \ \"2603:1040:f05:802::88/125\",\r\n \"2603:1040:f05:c02::88/125\",\r\n
+ \ \"2603:1040:1104:400::88/125\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\",\r\n
+ \ \"2603:1050:403:400::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.128/29\",\r\n \"40.79.162.24/29\",\r\n
+ \ \"40.79.170.8/29\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.72/29\",\r\n \"2603:1010:101:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.48/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"52.246.154.136/29\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.72/29\",\r\n \"2603:1030:1005:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.192.98.136/29\",\r\n \"40.80.50.136/29\",\r\n
+ \ \"104.211.81.128/29\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.208/29\",\r\n \"52.182.138.200/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"2603:1030:10:402::88/125\",\r\n
+ \ \"2603:1030:10:802::88/125\",\r\n \"2603:1030:10:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.64/29\",\r\n \"2603:1030:f:400::888/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.152/29\",\r\n \"2603:1040:207:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.71.10.208/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.70.146.80/29\",\r\n \"52.167.106.72/29\",\r\n
+ \ \"104.208.144.72/29\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n \"52.138.90.24/29\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n
+ \ \"40.79.146.24/29\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.72/29\",\r\n \"2603:1020:905:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.16/29\",\r\n \"2603:1020:d04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n
+ \ \"51.116.250.136/29\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.192/29\",\r\n \"40.79.186.0/29\",\r\n
+ \ \"40.79.194.88/29\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.56/29\",\r\n \"2603:1040:606:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.136/29\",\r\n \"20.194.66.8/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"2603:1040:f05:402::88/125\",\r\n \"2603:1040:f05:802::88/125\",\r\n
+ \ \"2603:1040:f05:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.88/29\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.152/29\",\r\n \"2603:1030:608:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.80/29\",\r\n \"13.74.107.72/29\",\r\n
+ \ \"52.138.226.72/29\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n
+ \ \"51.120.210.136/29\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.16/29\",\r\n \"2603:1020:f04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.136/29\",\r\n \"102.133.154.16/29\",\r\n
+ \ \"102.133.250.136/29\",\r\n \"2603:1000:104:402::88/125\",\r\n
+ \ \"2603:1000:104:802::88/125\",\r\n \"2603:1000:104:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.16/29\",\r\n \"2603:1000:4:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.122.136/29\",\r\n \"20.49.90.8/29\",\r\n \"104.214.18.176/29\",\r\n
+ \ \"2603:1030:807:402::88/125\",\r\n \"2603:1030:807:802::88/125\",\r\n
+ \ \"2603:1030:807:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.112/29\",\r\n \"23.98.82.104/29\",\r\n \"40.78.234.40/29\",\r\n
+ \ \"2603:1040:5:402::88/125\",\r\n \"2603:1040:5:802::88/125\",\r\n
+ \ \"2603:1040:5:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.72/29\",\r\n \"2603:1040:c06:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.16/29\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.16/29\",\r\n \"2603:1020:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.64/29\",\r\n \"2603:1040:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.8/29\",\r\n \"65.52.250.8/29\",\r\n \"2603:1040:904:402::88/125\",\r\n
+ \ \"2603:1040:904:802::88/125\",\r\n \"2603:1040:904:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.140.146.192/29\",\r\n \"2603:1020:705:402::88/125\",\r\n
+ \ \"2603:1020:705:802::88/125\",\r\n \"2603:1020:705:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.56.88/29\",\r\n \"2603:1020:405:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.88/29\",\r\n \"2603:1020:605:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.194.120/29\",\r\n \"2603:1030:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"52.236.186.72/29\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"104.211.146.72/29\",\r\n
+ \ \"2603:1040:806:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.112.242.152/29\",\r\n
+ \ \"2603:1030:a07:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS2\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n
+ \ \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n \"2603:1030:c06:400::888/125\",\r\n
+ \ \"2603:1030:c06:802::88/125\",\r\n \"2603:1030:c06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerBI\",\r\n
+ \ \"id\": \"PowerBI\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerBI\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.4/31\",\r\n \"13.73.248.48/28\",\r\n \"13.73.248.64/27\",\r\n
+ \ \"20.36.120.122/31\",\r\n \"20.36.120.124/30\",\r\n \"20.36.120.208/29\",\r\n
+ \ \"20.37.64.122/31\",\r\n \"20.37.64.124/30\",\r\n \"20.37.64.208/29\",\r\n
+ \ \"20.37.156.200/30\",\r\n \"20.37.156.240/28\",\r\n \"20.37.157.0/29\",\r\n
+ \ \"20.37.157.16/28\",\r\n \"20.37.157.32/27\",\r\n \"20.37.195.24/31\",\r\n
+ \ \"20.37.195.48/29\",\r\n \"20.37.195.64/28\",\r\n \"20.37.195.128/26\",\r\n
+ \ \"20.37.224.122/31\",\r\n \"20.37.224.124/30\",\r\n \"20.37.224.208/29\",\r\n
+ \ \"20.38.84.104/31\",\r\n \"20.38.84.128/25\",\r\n \"20.38.85.0/25\",\r\n
+ \ \"20.38.86.0/24\",\r\n \"20.38.136.70/31\",\r\n \"20.38.136.208/30\",\r\n
+ \ \"20.38.136.216/29\",\r\n \"20.39.11.26/31\",\r\n \"20.39.11.28/30\",\r\n
+ \ \"20.39.11.48/28\",\r\n \"20.41.4.104/31\",\r\n \"20.41.4.108/30\",\r\n
+ \ \"20.41.4.208/28\",\r\n \"20.41.4.224/27\",\r\n \"20.41.5.0/25\",\r\n
+ \ \"20.41.65.146/31\",\r\n \"20.41.65.148/30\",\r\n \"20.41.65.152/29\",\r\n
+ \ \"20.41.192.122/31\",\r\n \"20.41.192.124/30\",\r\n \"20.41.193.144/29\",\r\n
+ \ \"20.42.0.70/31\",\r\n \"20.42.4.240/29\",\r\n \"20.42.6.0/27\",\r\n
+ \ \"20.42.6.64/26\",\r\n \"20.42.131.32/31\",\r\n \"20.42.131.40/29\",\r\n
+ \ \"20.42.131.48/29\",\r\n \"20.42.131.128/26\",\r\n \"20.42.224.122/31\",\r\n
+ \ \"20.42.227.16/28\",\r\n \"20.42.227.32/29\",\r\n \"20.42.227.64/26\",\r\n
+ \ \"20.43.41.176/31\",\r\n \"20.43.41.184/29\",\r\n \"20.43.41.192/26\",\r\n
+ \ \"20.43.65.152/31\",\r\n \"20.43.65.176/29\",\r\n \"20.43.65.192/28\",\r\n
+ \ \"20.43.65.224/27\",\r\n \"20.43.130.192/31\",\r\n \"20.43.130.196/30\",\r\n
+ \ \"20.43.130.200/29\",\r\n \"20.43.130.208/28\",\r\n \"20.43.130.224/28\",\r\n
+ \ \"20.43.131.0/27\",\r\n \"20.43.131.64/26\",\r\n \"20.45.192.122/31\",\r\n
+ \ \"20.45.192.124/31\",\r\n \"20.45.192.208/30\",\r\n \"20.45.192.216/29\",\r\n
+ \ \"20.45.192.224/28\",\r\n \"20.48.196.232/29\",\r\n \"20.50.0.0/24\",\r\n
+ \ \"20.51.21.160/30\",\r\n \"20.65.133.80/29\",\r\n \"20.72.16.22/31\",\r\n
+ \ \"20.72.16.44/30\",\r\n \"20.72.20.32/29\",\r\n \"20.150.160.110/31\",\r\n
+ \ \"20.150.160.124/30\",\r\n \"20.150.161.144/29\",\r\n \"20.189.104.70/31\",\r\n
+ \ \"20.189.106.224/27\",\r\n \"20.189.108.0/27\",\r\n \"20.192.160.22/31\",\r\n
+ \ \"20.192.161.112/30\",\r\n \"20.192.161.120/29\",\r\n \"20.192.225.34/31\",\r\n
+ \ \"20.192.225.36/30\",\r\n \"20.192.225.192/29\",\r\n \"40.74.24.70/31\",\r\n
+ \ \"40.74.30.128/29\",\r\n \"40.74.30.160/27\",\r\n \"40.74.30.192/26\",\r\n
+ \ \"40.74.31.0/26\",\r\n \"40.80.56.122/31\",\r\n \"40.80.57.144/29\",\r\n
+ \ \"40.80.57.160/28\",\r\n \"40.80.168.122/31\",\r\n \"40.80.168.124/30\",\r\n
+ \ \"40.80.169.144/29\",\r\n \"40.80.184.70/31\",\r\n \"40.80.188.48/28\",\r\n
+ \ \"40.80.188.64/27\",\r\n \"40.80.188.128/25\",\r\n \"40.80.189.0/24\",\r\n
+ \ \"40.82.248.68/31\",\r\n \"40.82.253.96/28\",\r\n \"40.82.253.128/26\",\r\n
+ \ \"40.82.254.0/25\",\r\n \"40.89.16.122/31\",\r\n \"40.89.17.144/28\",\r\n
+ \ \"40.89.17.160/27\",\r\n \"40.119.8.76/30\",\r\n \"40.119.11.64/26\",\r\n
+ \ \"51.12.17.16/30\",\r\n \"51.12.17.24/29\",\r\n \"51.12.25.8/29\",\r\n
+ \ \"51.12.46.230/31\",\r\n \"51.12.47.28/30\",\r\n \"51.12.198.210/31\",\r\n
+ \ \"51.104.25.140/31\",\r\n \"51.104.25.152/30\",\r\n \"51.104.25.176/28\",\r\n
+ \ \"51.104.25.192/29\",\r\n \"51.104.27.0/26\",\r\n \"51.105.88.122/31\",\r\n
+ \ \"51.105.88.124/30\",\r\n \"51.105.88.208/28\",\r\n \"51.107.48.124/31\",\r\n
+ \ \"51.107.48.208/30\",\r\n \"51.107.48.216/29\",\r\n \"51.107.144.122/31\",\r\n
+ \ \"51.107.144.124/30\",\r\n \"51.107.144.208/29\",\r\n \"51.116.48.68/31\",\r\n
+ \ \"51.116.48.128/30\",\r\n \"51.116.48.136/29\",\r\n \"51.116.144.68/31\",\r\n
+ \ \"51.116.144.128/30\",\r\n \"51.116.144.136/29\",\r\n \"51.116.149.232/29\",\r\n
+ \ \"51.120.40.124/31\",\r\n \"51.120.40.208/30\",\r\n \"51.120.40.216/29\",\r\n
+ \ \"51.120.224.122/31\",\r\n \"51.120.224.124/30\",\r\n \"51.120.224.208/29\",\r\n
+ \ \"51.137.160.70/31\",\r\n \"51.137.161.160/27\",\r\n \"51.137.161.192/27\",\r\n
+ \ \"52.136.48.120/31\",\r\n \"52.136.48.124/30\",\r\n \"52.136.48.208/29\",\r\n
+ \ \"52.136.48.224/28\",\r\n \"52.140.105.144/28\",\r\n \"52.140.105.160/28\",\r\n
+ \ \"52.150.139.76/31\",\r\n \"52.150.139.96/30\",\r\n \"52.150.139.112/28\",\r\n
+ \ \"52.150.139.128/28\",\r\n \"52.150.139.160/27\",\r\n \"52.228.81.160/31\",\r\n
+ \ \"52.228.81.168/29\",\r\n \"52.228.81.176/28\",\r\n \"52.228.81.192/27\",\r\n
+ \ \"102.37.160.160/29\",\r\n \"102.133.56.98/31\",\r\n \"102.133.56.100/30\",\r\n
+ \ \"102.133.56.104/29\",\r\n \"102.133.216.104/31\",\r\n
+ \ \"102.133.216.108/30\",\r\n \"102.133.217.64/29\",\r\n
+ \ \"191.233.8.22/31\",\r\n \"191.233.10.32/30\",\r\n \"191.233.10.40/29\",\r\n
+ \ \"191.235.225.152/31\",\r\n \"191.235.225.156/30\",\r\n
+ \ \"191.235.225.176/28\",\r\n \"191.235.225.192/28\",\r\n
+ \ \"191.235.225.224/27\",\r\n \"191.238.72.128/28\",\r\n
+ \ \"2603:1000:4::620/123\",\r\n \"2603:1000:4::640/122\",\r\n
+ \ \"2603:1000:104::100/122\",\r\n \"2603:1000:104::140/123\",\r\n
+ \ \"2603:1000:104::320/123\",\r\n \"2603:1000:104::340/122\",\r\n
+ \ \"2603:1000:104:1::5e0/123\",\r\n \"2603:1000:104:1::600/122\",\r\n
+ \ \"2603:1010:6::/122\",\r\n \"2603:1010:6::40/123\",\r\n
+ \ \"2603:1010:6:1::5e0/123\",\r\n \"2603:1010:6:1::600/122\",\r\n
+ \ \"2603:1010:101::620/123\",\r\n \"2603:1010:101::640/122\",\r\n
+ \ \"2603:1010:304::620/123\",\r\n \"2603:1010:304::640/122\",\r\n
+ \ \"2603:1010:404::620/123\",\r\n \"2603:1010:404::640/122\",\r\n
+ \ \"2603:1020:5::/122\",\r\n \"2603:1020:5::40/123\",\r\n
+ \ \"2603:1020:5:1::5e0/123\",\r\n \"2603:1020:5:1::600/122\",\r\n
+ \ \"2603:1020:206::/122\",\r\n \"2603:1020:206::40/123\",\r\n
+ \ \"2603:1020:206:1::5e0/123\",\r\n \"2603:1020:206:1::600/122\",\r\n
+ \ \"2603:1020:305::620/123\",\r\n \"2603:1020:305::640/122\",\r\n
+ \ \"2603:1020:405::620/123\",\r\n \"2603:1020:405::640/122\",\r\n
+ \ \"2603:1020:605::620/123\",\r\n \"2603:1020:605::640/122\",\r\n
+ \ \"2603:1020:705::/122\",\r\n \"2603:1020:705::40/123\",\r\n
+ \ \"2603:1020:705:1::5e0/123\",\r\n \"2603:1020:705:1::600/122\",\r\n
+ \ \"2603:1020:805::/122\",\r\n \"2603:1020:805::40/123\",\r\n
+ \ \"2603:1020:805:1::5e0/123\",\r\n \"2603:1020:805:1::600/122\",\r\n
+ \ \"2603:1020:905::620/123\",\r\n \"2603:1020:905::640/122\",\r\n
+ \ \"2603:1020:a04::/122\",\r\n \"2603:1020:a04::40/123\",\r\n
+ \ \"2603:1020:a04:1::5e0/123\",\r\n \"2603:1020:a04:1::600/122\",\r\n
+ \ \"2603:1020:b04::620/123\",\r\n \"2603:1020:b04::640/122\",\r\n
+ \ \"2603:1020:c04::/122\",\r\n \"2603:1020:c04::40/123\",\r\n
+ \ \"2603:1020:c04:1::5e0/123\",\r\n \"2603:1020:c04:1::600/122\",\r\n
+ \ \"2603:1020:d04::620/123\",\r\n \"2603:1020:d04::640/122\",\r\n
+ \ \"2603:1020:e04::/122\",\r\n \"2603:1020:e04::40/123\",\r\n
+ \ \"2603:1020:e04:1::5e0/123\",\r\n \"2603:1020:e04:1::600/122\",\r\n
+ \ \"2603:1020:f04::620/123\",\r\n \"2603:1020:f04::640/122\",\r\n
+ \ \"2603:1020:1004::5e0/123\",\r\n \"2603:1020:1004::600/122\",\r\n
+ \ \"2603:1020:1004:1::/122\",\r\n \"2603:1020:1004:1::40/123\",\r\n
+ \ \"2603:1020:1104::6a0/123\",\r\n \"2603:1020:1104::6c0/122\",\r\n
+ \ \"2603:1030:f:1::620/123\",\r\n \"2603:1030:f:1::640/122\",\r\n
+ \ \"2603:1030:10::/122\",\r\n \"2603:1030:10::40/123\",\r\n
+ \ \"2603:1030:10:1::5e0/123\",\r\n \"2603:1030:10:1::600/122\",\r\n
+ \ \"2603:1030:104::/122\",\r\n \"2603:1030:104::40/123\",\r\n
+ \ \"2603:1030:104:1::5e0/123\",\r\n \"2603:1030:104:1::600/122\",\r\n
+ \ \"2603:1030:107::6c0/122\",\r\n \"2603:1030:107::700/123\",\r\n
+ \ \"2603:1030:210::/122\",\r\n \"2603:1030:210::40/123\",\r\n
+ \ \"2603:1030:210:1::5e0/123\",\r\n \"2603:1030:210:1::600/122\",\r\n
+ \ \"2603:1030:40b:1::5e0/123\",\r\n \"2603:1030:40b:1::600/122\",\r\n
+ \ \"2603:1030:40c::/122\",\r\n \"2603:1030:40c::40/123\",\r\n
+ \ \"2603:1030:40c:1::5e0/123\",\r\n \"2603:1030:40c:1::600/122\",\r\n
+ \ \"2603:1030:504::/122\",\r\n \"2603:1030:504::40/123\",\r\n
+ \ \"2603:1030:504:1::5e0/123\",\r\n \"2603:1030:504:1::600/122\",\r\n
+ \ \"2603:1030:608::620/123\",\r\n \"2603:1030:608::640/122\",\r\n
+ \ \"2603:1030:807::/122\",\r\n \"2603:1030:807::40/123\",\r\n
+ \ \"2603:1030:807:1::5e0/123\",\r\n \"2603:1030:807:1::600/122\",\r\n
+ \ \"2603:1030:a07::620/123\",\r\n \"2603:1030:a07::640/122\",\r\n
+ \ \"2603:1030:b04::620/123\",\r\n \"2603:1030:b04::640/122\",\r\n
+ \ \"2603:1030:c06:1::5e0/123\",\r\n \"2603:1030:c06:1::600/122\",\r\n
+ \ \"2603:1030:f05::/122\",\r\n \"2603:1030:f05::40/123\",\r\n
+ \ \"2603:1030:f05:1::5e0/123\",\r\n \"2603:1030:f05:1::600/122\",\r\n
+ \ \"2603:1030:1005::620/123\",\r\n \"2603:1030:1005::640/122\",\r\n
+ \ \"2603:1040:5::100/122\",\r\n \"2603:1040:5::140/123\",\r\n
+ \ \"2603:1040:5:1::5e0/123\",\r\n \"2603:1040:5:1::600/122\",\r\n
+ \ \"2603:1040:207::620/123\",\r\n \"2603:1040:207::640/122\",\r\n
+ \ \"2603:1040:407::/122\",\r\n \"2603:1040:407::40/123\",\r\n
+ \ \"2603:1040:407:1::5e0/123\",\r\n \"2603:1040:407:1::600/122\",\r\n
+ \ \"2603:1040:606::620/123\",\r\n \"2603:1040:606::640/122\",\r\n
+ \ \"2603:1040:806::620/123\",\r\n \"2603:1040:806::640/122\",\r\n
+ \ \"2603:1040:904::/122\",\r\n \"2603:1040:904::40/123\",\r\n
+ \ \"2603:1040:904:1::5e0/123\",\r\n \"2603:1040:904:1::600/122\",\r\n
+ \ \"2603:1040:a06::100/122\",\r\n \"2603:1040:a06::140/123\",\r\n
+ \ \"2603:1040:a06:1::5e0/123\",\r\n \"2603:1040:a06:1::600/122\",\r\n
+ \ \"2603:1040:b04::620/123\",\r\n \"2603:1040:b04::640/122\",\r\n
+ \ \"2603:1040:c06::620/123\",\r\n \"2603:1040:c06::640/122\",\r\n
+ \ \"2603:1040:d04::5e0/123\",\r\n \"2603:1040:d04::600/122\",\r\n
+ \ \"2603:1040:d04:1::/122\",\r\n \"2603:1040:d04:1::40/123\",\r\n
+ \ \"2603:1040:f05::/122\",\r\n \"2603:1040:f05::40/123\",\r\n
+ \ \"2603:1040:f05:1::5e0/123\",\r\n \"2603:1040:f05:1::600/122\",\r\n
+ \ \"2603:1040:1104::6a0/123\",\r\n \"2603:1040:1104::6c0/122\",\r\n
+ \ \"2603:1050:6::/122\",\r\n \"2603:1050:6::40/123\",\r\n
+ \ \"2603:1050:6:1::5e0/123\",\r\n \"2603:1050:6:1::600/122\",\r\n
+ \ \"2603:1050:403::5e0/123\",\r\n \"2603:1050:403::600/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline\",\r\n
+ \ \"id\": \"PowerQueryOnline\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.120.120/31\",\r\n \"20.37.64.120/31\",\r\n
+ \ \"20.37.152.70/31\",\r\n \"20.37.192.70/31\",\r\n \"20.37.224.120/31\",\r\n
+ \ \"20.38.80.70/31\",\r\n \"20.38.136.68/31\",\r\n \"20.39.11.24/31\",\r\n
+ \ \"20.41.0.68/30\",\r\n \"20.41.64.70/31\",\r\n \"20.41.65.144/31\",\r\n
+ \ \"20.41.192.120/31\",\r\n \"20.42.4.200/30\",\r\n \"20.42.128.70/31\",\r\n
+ \ \"20.42.129.184/29\",\r\n \"20.42.224.120/31\",\r\n \"20.43.40.70/31\",\r\n
+ \ \"20.43.64.70/31\",\r\n \"20.43.128.70/31\",\r\n \"20.45.112.120/31\",\r\n
+ \ \"20.45.192.120/31\",\r\n \"20.72.16.20/31\",\r\n \"20.150.160.108/31\",\r\n
+ \ \"20.189.104.68/31\",\r\n \"20.192.160.20/31\",\r\n \"20.192.225.32/31\",\r\n
+ \ \"40.67.48.120/31\",\r\n \"40.74.30.104/30\",\r\n \"40.80.56.120/31\",\r\n
+ \ \"40.80.168.120/31\",\r\n \"40.80.184.68/31\",\r\n \"40.82.253.72/29\",\r\n
+ \ \"40.89.16.120/31\",\r\n \"40.119.8.74/31\",\r\n \"51.12.46.228/31\",\r\n
+ \ \"51.12.198.208/31\",\r\n \"51.104.24.70/31\",\r\n \"51.105.80.120/31\",\r\n
+ \ \"51.105.88.120/31\",\r\n \"51.107.48.70/31\",\r\n \"51.107.144.120/31\",\r\n
+ \ \"51.116.48.70/31\",\r\n \"51.116.144.70/31\",\r\n \"51.120.40.70/31\",\r\n
+ \ \"51.120.224.120/31\",\r\n \"51.137.160.68/31\",\r\n \"51.143.192.120/31\",\r\n
+ \ \"52.140.104.70/31\",\r\n \"52.150.139.72/30\",\r\n \"52.228.80.70/31\",\r\n
+ \ \"102.133.56.96/31\",\r\n \"102.133.216.70/31\",\r\n \"191.233.8.20/31\",\r\n
+ \ \"191.235.224.70/31\",\r\n \"2603:1000:4::200/123\",\r\n
+ \ \"2603:1000:104:1::200/123\",\r\n \"2603:1010:6:1::200/123\",\r\n
+ \ \"2603:1010:101::200/123\",\r\n \"2603:1010:304::200/123\",\r\n
+ \ \"2603:1010:404::200/123\",\r\n \"2603:1020:5:1::200/123\",\r\n
+ \ \"2603:1020:206:1::200/123\",\r\n \"2603:1020:305::200/123\",\r\n
+ \ \"2603:1020:405::200/123\",\r\n \"2603:1020:605::200/123\",\r\n
+ \ \"2603:1020:705:1::200/123\",\r\n \"2603:1020:805:1::200/123\",\r\n
+ \ \"2603:1020:905::200/123\",\r\n \"2603:1020:a04:1::200/123\",\r\n
+ \ \"2603:1020:b04::200/123\",\r\n \"2603:1020:c04:1::200/123\",\r\n
+ \ \"2603:1020:d04::200/123\",\r\n \"2603:1020:e04:1::200/123\",\r\n
+ \ \"2603:1020:f04::200/123\",\r\n \"2603:1020:1004::200/123\",\r\n
+ \ \"2603:1020:1104::200/123\",\r\n \"2603:1030:f:1::200/123\",\r\n
+ \ \"2603:1030:10:1::200/123\",\r\n \"2603:1030:104:1::200/123\",\r\n
+ \ \"2603:1030:107::200/123\",\r\n \"2603:1030:210:1::200/123\",\r\n
+ \ \"2603:1030:40b:1::200/123\",\r\n \"2603:1030:40c:1::200/123\",\r\n
+ \ \"2603:1030:504:1::200/123\",\r\n \"2603:1030:608::200/123\",\r\n
+ \ \"2603:1030:807:1::200/123\",\r\n \"2603:1030:a07::200/123\",\r\n
+ \ \"2603:1030:b04::200/123\",\r\n \"2603:1030:c06:1::200/123\",\r\n
+ \ \"2603:1030:f05:1::200/123\",\r\n \"2603:1030:1005::200/123\",\r\n
+ \ \"2603:1040:5:1::200/123\",\r\n \"2603:1040:207::200/123\",\r\n
+ \ \"2603:1040:407:1::200/123\",\r\n \"2603:1040:606::200/123\",\r\n
+ \ \"2603:1040:806::200/123\",\r\n \"2603:1040:904:1::200/123\",\r\n
+ \ \"2603:1040:a06:1::200/123\",\r\n \"2603:1040:b04::200/123\",\r\n
+ \ \"2603:1040:c06::200/123\",\r\n \"2603:1040:d04::200/123\",\r\n
+ \ \"2603:1040:f05:1::200/123\",\r\n \"2603:1040:1104::200/123\",\r\n
+ \ \"2603:1050:6:1::200/123\",\r\n \"2603:1050:403::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.120/31\",\r\n \"2603:1010:304::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral2\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.120/31\",\r\n \"2603:1010:404::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.224.120/31\",\r\n \"2603:1010:101::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.CentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.152.70/31\",\r\n \"2603:1030:10:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.EastUS2\",\r\n
+ \ \"id\": \"PowerQueryOnline.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.0.68/30\",\r\n \"2603:1030:40c:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.FranceCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.40.70/31\",\r\n \"2603:1020:805:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.JapanWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.56.120/31\",\r\n \"2603:1040:606::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.KoreaSouth\",\r\n
+ \ \"id\": \"PowerQueryOnline.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.168.120/31\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.NorwayEast\",\r\n
+ \ \"id\": \"PowerQueryOnline.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.70/31\",\r\n \"2603:1020:e04:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SouthCentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.119.8.74/31\",\r\n \"2603:1030:807:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SwitzerlandWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.120/31\",\r\n \"2603:1020:b04::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.UKSouth2\",\r\n
+ \ \"id\": \"PowerQueryOnline.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.192.120/31\",\r\n \"2603:1020:405::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.WestUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"40.82.253.72/29\",\r\n \"2603:1030:a07::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus\",\r\n
+ \ \"id\": \"ServiceBus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.68.110.36/32\",\r\n
+ \ \"13.69.64.64/29\",\r\n \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n
+ \ \"13.69.227.64/29\",\r\n \"13.69.233.192/26\",\r\n \"13.70.72.16/29\",\r\n
+ \ \"13.70.114.0/26\",\r\n \"13.70.186.33/32\",\r\n \"13.71.114.157/32\",\r\n
+ \ \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n \"13.71.194.96/28\",\r\n
+ \ \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n \"13.75.34.128/28\",\r\n
+ \ \"13.76.141.36/32\",\r\n \"13.77.50.16/28\",\r\n \"13.78.94.187/32\",\r\n
+ \ \"13.78.106.80/29\",\r\n \"13.85.81.218/32\",\r\n \"13.87.35.8/32\",\r\n
+ \ \"13.87.56.64/28\",\r\n \"13.87.122.64/28\",\r\n \"13.88.10.93/32\",\r\n
+ \ \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n \"20.36.106.224/27\",\r\n
+ \ \"20.36.114.128/27\",\r\n \"20.36.144.0/26\",\r\n \"20.37.74.32/27\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.42.65.0/26\",\r\n \"20.42.68.0/26\",\r\n
+ \ \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n \"20.43.126.0/26\",\r\n
+ \ \"20.44.2.8/29\",\r\n \"20.44.13.0/26\",\r\n \"20.44.26.128/29\",\r\n
+ \ \"20.44.31.64/26\",\r\n \"20.45.122.128/29\",\r\n \"20.45.126.128/26\",\r\n
+ \ \"20.47.216.0/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n
+ \ \"20.50.201.0/26\",\r\n \"20.52.64.64/26\",\r\n \"20.72.27.144/29\",\r\n
+ \ \"20.72.27.160/28\",\r\n \"20.89.0.0/26\",\r\n \"20.150.160.216/29\",\r\n
+ \ \"20.150.170.8/29\",\r\n \"20.150.175.0/26\",\r\n \"20.150.178.128/29\",\r\n
+ \ \"20.150.182.64/28\",\r\n \"20.150.186.128/29\",\r\n \"20.150.189.48/28\",\r\n
+ \ \"20.150.189.64/26\",\r\n \"20.151.32.0/26\",\r\n \"20.192.32.240/28\",\r\n
+ \ \"20.192.98.128/29\",\r\n \"20.192.101.192/26\",\r\n \"20.192.160.40/29\",\r\n
+ \ \"20.192.225.56/29\",\r\n \"20.192.234.8/29\",\r\n \"20.193.204.104/29\",\r\n
+ \ \"20.193.204.112/28\",\r\n \"20.194.67.208/29\",\r\n \"20.194.68.128/28\",\r\n
+ \ \"20.194.128.128/26\",\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"23.97.120.37/32\",\r\n \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n
+ \ \"23.98.112.128/26\",\r\n \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n
+ \ \"40.67.58.8/29\",\r\n \"40.67.72.0/26\",\r\n \"40.68.127.68/32\",\r\n
+ \ \"40.69.106.16/28\",\r\n \"40.70.146.64/29\",\r\n \"40.70.151.128/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n \"40.75.34.16/29\",\r\n
+ \ \"40.78.194.16/28\",\r\n \"40.78.202.16/28\",\r\n \"40.78.226.192/29\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"40.78.242.144/29\",\r\n \"40.78.247.192/26\",\r\n
+ \ \"40.78.250.80/29\",\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"40.79.154.88/29\",\r\n \"40.79.162.16/29\",\r\n \"40.79.166.128/26\",\r\n
+ \ \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n \"40.79.178.16/28\",\r\n
+ \ \"40.79.186.64/27\",\r\n \"40.79.194.80/29\",\r\n \"40.80.50.128/29\",\r\n
+ \ \"40.86.91.130/32\",\r\n \"40.89.121.192/26\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"40.124.65.0/26\",\r\n \"51.11.192.64/26\",\r\n \"51.12.98.8/29\",\r\n
+ \ \"51.12.101.224/28\",\r\n \"51.12.202.8/29\",\r\n \"51.12.206.0/28\",\r\n
+ \ \"51.12.226.128/29\",\r\n \"51.12.234.128/29\",\r\n \"51.13.0.128/26\",\r\n
+ \ \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n \"51.105.74.128/29\",\r\n
+ \ \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n \"51.107.154.8/29\",\r\n
+ \ \"51.116.58.8/29\",\r\n \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n
+ \ \"51.116.246.128/26\",\r\n \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n
+ \ \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n \"51.120.109.208/28\",\r\n
+ \ \"51.120.210.128/29\",\r\n \"51.120.218.8/29\",\r\n \"51.132.192.128/26\",\r\n
+ \ \"51.140.43.12/32\",\r\n \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n
+ \ \"51.140.210.64/28\",\r\n \"51.141.1.129/32\",\r\n \"51.142.210.16/32\",\r\n
+ \ \"52.138.71.95/32\",\r\n \"52.138.90.16/29\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"52.161.17.198/32\",\r\n \"52.162.106.128/28\",\r\n \"52.167.106.64/29\",\r\n
+ \ \"52.167.109.128/26\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"52.172.220.188/32\",\r\n \"52.178.17.64/26\",\r\n
+ \ \"52.180.178.204/32\",\r\n \"52.182.138.192/29\",\r\n \"52.182.143.0/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"52.231.146.64/28\",\r\n \"52.232.119.191/32\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"52.242.36.0/32\",\r\n \"52.246.154.128/29\",\r\n
+ \ \"52.246.158.192/26\",\r\n \"65.52.219.186/32\",\r\n \"65.52.250.64/27\",\r\n
+ \ \"102.37.64.192/26\",\r\n \"102.37.72.0/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"104.208.16.64/29\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"104.211.81.16/29\",\r\n \"104.211.146.16/28\",\r\n
+ \ \"104.211.190.88/32\",\r\n \"104.214.18.160/29\",\r\n \"168.61.142.56/29\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.8.40/29\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"191.237.224.64/26\",\r\n
+ \ \"207.46.138.15/32\",\r\n \"2603:1000:4::220/123\",\r\n
+ \ \"2603:1000:4:402::170/125\",\r\n \"2603:1000:104:1::220/123\",\r\n
+ \ \"2603:1000:104:402::170/125\",\r\n \"2603:1000:104:802::150/125\",\r\n
+ \ \"2603:1000:104:c02::150/125\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\",\r\n \"2603:1010:404::220/123\",\r\n
+ \ \"2603:1010:404:402::170/125\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\",\r\n \"2603:1020:305::220/123\",\r\n
+ \ \"2603:1020:305:402::170/125\",\r\n \"2603:1020:405::220/123\",\r\n
+ \ \"2603:1020:405:402::170/125\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\",\r\n \"2603:1020:a04:1::220/123\",\r\n
+ \ \"2603:1020:a04:402::170/125\",\r\n \"2603:1020:a04:802::150/125\",\r\n
+ \ \"2603:1020:a04:c02::150/125\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\",\r\n \"2603:1020:1004::220/123\",\r\n
+ \ \"2603:1020:1004:800::e0/124\",\r\n \"2603:1020:1004:800::f0/125\",\r\n
+ \ \"2603:1020:1004:800::358/125\",\r\n \"2603:1020:1004:800::3c0/124\",\r\n
+ \ \"2603:1020:1004:800::3e8/125\",\r\n \"2603:1020:1004:c02::180/123\",\r\n
+ \ \"2603:1020:1004:c02::1a0/125\",\r\n \"2603:1020:1104:400::170/125\",\r\n
+ \ \"2603:1030:f:1::220/123\",\r\n \"2603:1030:f:400::970/125\",\r\n
+ \ \"2603:1030:10:1::220/123\",\r\n \"2603:1030:10:402::170/125\",\r\n
+ \ \"2603:1030:10:802::150/125\",\r\n \"2603:1030:10:c02::150/125\",\r\n
+ \ \"2603:1030:104:1::220/123\",\r\n \"2603:1030:104:402::170/125\",\r\n
+ \ \"2603:1030:107:400::d8/125\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\",\r\n \"2603:1030:504:1::220/123\",\r\n
+ \ \"2603:1030:504:802::e0/124\",\r\n \"2603:1030:504:802::f0/125\",\r\n
+ \ \"2603:1030:504:802::358/125\",\r\n \"2603:1030:608::220/123\",\r\n
+ \ \"2603:1030:608:402::170/125\",\r\n \"2603:1030:807:1::220/123\",\r\n
+ \ \"2603:1030:807:402::170/125\",\r\n \"2603:1030:807:802::150/125\",\r\n
+ \ \"2603:1030:807:c02::150/125\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\",\r\n \"2603:1030:b04::220/123\",\r\n
+ \ \"2603:1030:b04:402::170/125\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\",\r\n \"2603:1040:207::220/123\",\r\n
+ \ \"2603:1040:207:402::170/125\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\",\r\n \"2603:1040:606::220/123\",\r\n
+ \ \"2603:1040:606:402::170/125\",\r\n \"2603:1040:806::220/123\",\r\n
+ \ \"2603:1040:806:402::170/125\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\",\r\n \"2603:1040:c06::220/123\",\r\n
+ \ \"2603:1040:c06:402::170/125\",\r\n \"2603:1040:d04::220/123\",\r\n
+ \ \"2603:1040:d04:800::e0/124\",\r\n \"2603:1040:d04:800::f0/125\",\r\n
+ \ \"2603:1040:d04:800::358/125\",\r\n \"2603:1040:d04:800::3c0/125\",\r\n
+ \ \"2603:1040:d04:800::3e8/125\",\r\n \"2603:1040:f05:1::220/123\",\r\n
+ \ \"2603:1040:f05:402::170/125\",\r\n \"2603:1040:f05:802::150/125\",\r\n
+ \ \"2603:1040:f05:c02::150/125\",\r\n \"2603:1040:1104:400::170/125\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\",\r\n
+ \ \"2603:1050:403::220/123\",\r\n \"2603:1050:403:400::148/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaCentral\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.224/27\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaCentral2\",\r\n \"id\":
+ \"ServiceBus.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.36.114.128/27\",\r\n
+ \ \"2603:1010:404::220/123\",\r\n \"2603:1010:404:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaEast\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.16/29\",\r\n \"13.70.114.0/26\",\r\n \"40.79.162.16/29\",\r\n
+ \ \"40.79.166.128/26\",\r\n \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaSoutheast\",\r\n \"id\":
+ \"ServiceBus.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.70.186.33/32\",\r\n
+ \ \"13.77.50.16/28\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.BrazilSouth\",\r\n \"id\": \"ServiceBus.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.CanadaCentral\",\r\n
+ \ \"id\": \"ServiceBus.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.151.32.0/26\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.246.154.128/29\",\r\n \"52.246.158.192/26\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CanadaEast\",\r\n \"id\": \"ServiceBus.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.16/28\",\r\n \"52.242.36.0/32\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralIndia\",\r\n \"id\": \"ServiceBus.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.126.0/26\",\r\n \"20.192.98.128/29\",\r\n
+ \ \"20.192.101.192/26\",\r\n \"40.80.50.128/29\",\r\n \"52.172.220.188/32\",\r\n
+ \ \"104.211.81.16/29\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUS\",\r\n \"id\": \"ServiceBus.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n
+ \ \"20.44.13.0/26\",\r\n \"40.86.91.130/32\",\r\n \"52.182.138.192/29\",\r\n
+ \ \"52.182.143.0/26\",\r\n \"104.208.16.64/29\",\r\n \"2603:1030:10:1::220/123\",\r\n
+ \ \"2603:1030:10:402::170/125\",\r\n \"2603:1030:10:802::150/125\",\r\n
+ \ \"2603:1030:10:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUSEUAP\",\r\n \"id\": \"ServiceBus.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.16/28\",\r\n \"52.180.178.204/32\",\r\n
+ \ \"168.61.142.56/29\",\r\n \"2603:1030:f:1::220/123\",\r\n
+ \ \"2603:1030:f:400::970/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastAsia\",\r\n \"id\": \"ServiceBus.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.128/28\",\r\n \"207.46.138.15/32\",\r\n
+ \ \"2603:1040:207::220/123\",\r\n \"2603:1040:207:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.EastUS\",\r\n
+ \ \"id\": \"ServiceBus.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.0/26\",\r\n
+ \ \"20.42.68.0/26\",\r\n \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.78.226.192/29\",\r\n \"40.79.154.88/29\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2\",\r\n \"id\": \"ServiceBus.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.110.36/32\",\r\n \"20.36.144.0/26\",\r\n \"40.70.146.64/29\",\r\n
+ \ \"40.70.151.128/26\",\r\n \"52.167.106.64/29\",\r\n \"52.167.109.128/26\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2EUAP\",\r\n \"id\": \"ServiceBus.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.216.0/26\",\r\n \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n
+ \ \"40.75.34.16/29\",\r\n \"40.89.121.192/26\",\r\n \"52.138.71.95/32\",\r\n
+ \ \"52.138.90.16/29\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceCentral\",\r\n \"id\": \"ServiceBus.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"51.11.192.64/26\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceSouth\",\r\n \"id\": \"ServiceBus.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.16/28\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyNorth\",\r\n \"id\": \"ServiceBus.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.8/29\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyWestCentral\",\r\n \"id\":
+ \"ServiceBus.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.64/26\",\r\n
+ \ \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n \"51.116.246.128/26\",\r\n
+ \ \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanEast\",\r\n \"id\": \"ServiceBus.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.94.187/32\",\r\n \"13.78.106.80/29\",\r\n
+ \ \"20.89.0.0/26\",\r\n \"20.194.128.128/26\",\r\n \"40.79.186.64/27\",\r\n
+ \ \"40.79.194.80/29\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanWest\",\r\n \"id\": \"ServiceBus.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"2603:1040:606::220/123\",\r\n \"2603:1040:606:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaCentral\",\r\n
+ \ \"id\": \"ServiceBus.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.128/29\",\r\n \"20.44.31.64/26\",\r\n \"20.194.67.208/29\",\r\n
+ \ \"20.194.68.128/28\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"2603:1040:f05:1::220/123\",\r\n \"2603:1040:f05:402::170/125\",\r\n
+ \ \"2603:1040:f05:802::150/125\",\r\n \"2603:1040:f05:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaSouth\",\r\n
+ \ \"id\": \"ServiceBus.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"52.231.146.64/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.128/28\",\r\n \"65.52.219.186/32\",\r\n
+ \ \"2603:1030:608::220/123\",\r\n \"2603:1030:608:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthEurope\",\r\n
+ \ \"id\": \"ServiceBus.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.64/29\",\r\n
+ \ \"13.69.233.192/26\",\r\n \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n
+ \ \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayEast\",\r\n \"id\": \"ServiceBus.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.128/26\",\r\n \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n
+ \ \"51.120.109.208/28\",\r\n \"51.120.210.128/29\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayWest\",\r\n \"id\": \"ServiceBus.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.218.8/29\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthAfricaNorth\",\r\n \"id\":
+ \"ServiceBus.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"102.37.72.0/26\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"2603:1000:104:1::220/123\",\r\n \"2603:1000:104:402::170/125\",\r\n
+ \ \"2603:1000:104:802::150/125\",\r\n \"2603:1000:104:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthAfricaWest\",\r\n
+ \ \"id\": \"ServiceBus.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"102.37.64.192/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"2603:1000:4::220/123\",\r\n \"2603:1000:4:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.85.81.218/32\",\r\n \"20.45.122.128/29\",\r\n
+ \ \"20.45.126.128/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"40.124.65.0/26\",\r\n \"104.214.18.160/29\",\r\n
+ \ \"2603:1030:807:1::220/123\",\r\n \"2603:1030:807:402::170/125\",\r\n
+ \ \"2603:1030:807:802::150/125\",\r\n \"2603:1030:807:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SoutheastAsia\",\r\n
+ \ \"id\": \"ServiceBus.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.76.141.36/32\",\r\n
+ \ \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n \"23.98.112.128/26\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthIndia\",\r\n \"id\": \"ServiceBus.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.114.157/32\",\r\n \"40.78.194.16/28\",\r\n
+ \ \"2603:1040:c06::220/123\",\r\n \"2603:1040:c06:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n
+ \ \"2603:1020:a04:1::220/123\",\r\n \"2603:1020:a04:402::170/125\",\r\n
+ \ \"2603:1020:a04:802::150/125\",\r\n \"2603:1020:a04:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandWest\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.8/29\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAECentral\",\r\n \"id\": \"ServiceBus.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.32/27\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAENorth\",\r\n \"id\": \"ServiceBus.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"65.52.250.64/27\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth\",\r\n \"id\": \"ServiceBus.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n
+ \ \"51.105.74.128/29\",\r\n \"51.132.192.128/26\",\r\n \"51.140.43.12/32\",\r\n
+ \ \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth2\",\r\n \"id\": \"ServiceBus.UKSouth2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.35.8/32\",\r\n \"13.87.56.64/28\",\r\n
+ \ \"2603:1020:405::220/123\",\r\n \"2603:1020:405:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.UKWest\",\r\n
+ \ \"id\": \"ServiceBus.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.64/28\",\r\n
+ \ \"51.141.1.129/32\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestCentralUS\",\r\n \"id\": \"ServiceBus.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.96/28\",\r\n \"52.161.17.198/32\",\r\n
+ \ \"2603:1030:b04::220/123\",\r\n \"2603:1030:b04:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestEurope\",\r\n
+ \ \"id\": \"ServiceBus.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.64/29\",\r\n
+ \ \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n \"20.50.201.0/26\",\r\n
+ \ \"40.68.127.68/32\",\r\n \"52.178.17.64/26\",\r\n \"52.232.119.191/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestIndia\",\r\n \"id\": \"ServiceBus.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.16/28\",\r\n \"104.211.190.88/32\",\r\n
+ \ \"2603:1040:806::220/123\",\r\n \"2603:1040:806:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestUS\",\r\n
+ \ \"id\": \"ServiceBus.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.10.93/32\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestUS2\",\r\n \"id\": \"ServiceBus.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n \"40.78.242.144/29\",\r\n
+ \ \"40.78.247.192/26\",\r\n \"40.78.250.80/29\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric\",\r\n \"id\": \"ServiceFabric\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.152/29\",\r\n \"13.66.167.194/32\",\r\n
+ \ \"13.66.226.151/32\",\r\n \"13.67.9.136/29\",\r\n \"13.69.64.232/29\",\r\n
+ \ \"13.69.109.136/30\",\r\n \"13.69.227.232/29\",\r\n \"13.70.72.216/29\",\r\n
+ \ \"13.70.78.172/30\",\r\n \"13.71.170.224/29\",\r\n \"13.71.170.248/29\",\r\n
+ \ \"13.71.195.48/29\",\r\n \"13.74.80.74/32\",\r\n \"13.74.111.144/30\",\r\n
+ \ \"13.75.36.80/29\",\r\n \"13.75.41.166/32\",\r\n \"13.75.42.35/32\",\r\n
+ \ \"13.77.52.0/29\",\r\n \"13.78.108.24/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"13.87.32.204/32\",\r\n \"13.87.56.240/29\",\r\n
+ \ \"13.87.98.166/32\",\r\n \"13.87.122.240/29\",\r\n \"13.89.171.104/29\",\r\n
+ \ \"13.91.7.211/32\",\r\n \"13.91.252.58/32\",\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.36.40.70/32\",\r\n \"20.36.72.79/32\",\r\n \"20.36.107.16/29\",\r\n
+ \ \"20.36.114.192/29\",\r\n \"20.37.74.80/29\",\r\n \"20.38.149.192/30\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"20.44.3.24/29\",\r\n
+ \ \"20.44.10.124/30\",\r\n \"20.44.19.0/30\",\r\n \"20.44.29.52/30\",\r\n
+ \ \"20.45.79.240/32\",\r\n \"20.45.123.244/30\",\r\n \"20.49.82.4/30\",\r\n
+ \ \"20.49.90.4/30\",\r\n \"20.72.26.4/30\",\r\n \"20.150.171.72/29\",\r\n
+ \ \"20.150.181.160/30\",\r\n \"20.150.189.28/30\",\r\n \"20.150.225.4/30\",\r\n
+ \ \"20.184.2.84/32\",\r\n \"20.192.32.224/30\",\r\n \"20.192.101.28/30\",\r\n
+ \ \"20.192.235.0/29\",\r\n \"20.193.202.24/29\",\r\n \"20.193.204.100/30\",\r\n
+ \ \"20.194.66.4/30\",\r\n \"23.96.200.228/32\",\r\n \"23.96.210.6/32\",\r\n
+ \ \"23.96.214.100/32\",\r\n \"23.98.86.60/30\",\r\n \"23.99.11.219/32\",\r\n
+ \ \"23.100.199.230/32\",\r\n \"40.67.59.72/29\",\r\n \"40.69.107.0/29\",\r\n
+ \ \"40.69.166.6/32\",\r\n \"40.70.146.232/29\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.74.100.240/29\",\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"40.78.195.0/29\",\r\n
+ \ \"40.78.202.120/29\",\r\n \"40.78.238.60/30\",\r\n \"40.78.245.192/30\",\r\n
+ \ \"40.78.253.64/30\",\r\n \"40.79.114.102/32\",\r\n \"40.79.130.232/29\",\r\n
+ \ \"40.79.139.192/30\",\r\n \"40.79.148.80/30\",\r\n \"40.79.165.80/29\",\r\n
+ \ \"40.79.171.228/30\",\r\n \"40.79.173.0/30\",\r\n \"40.79.179.0/29\",\r\n
+ \ \"40.79.189.60/30\",\r\n \"40.79.197.36/30\",\r\n \"40.80.53.4/30\",\r\n
+ \ \"40.84.62.189/32\",\r\n \"40.84.133.64/32\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"40.86.230.174/32\",\r\n \"40.89.168.15/32\",\r\n \"40.112.243.176/29\",\r\n
+ \ \"40.113.23.157/32\",\r\n \"40.113.88.37/32\",\r\n \"40.115.64.123/32\",\r\n
+ \ \"40.115.113.228/32\",\r\n \"40.120.74.4/30\",\r\n \"40.123.204.26/32\",\r\n
+ \ \"51.12.99.64/29\",\r\n \"51.12.101.168/30\",\r\n \"51.12.203.64/29\",\r\n
+ \ \"51.12.204.240/30\",\r\n \"51.105.69.84/30\",\r\n \"51.105.77.52/30\",\r\n
+ \ \"51.107.59.40/29\",\r\n \"51.107.76.20/32\",\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"51.116.59.40/29\",\r\n \"51.116.155.104/29\",\r\n
+ \ \"51.116.208.26/32\",\r\n \"51.116.232.27/32\",\r\n \"51.116.245.160/30\",\r\n
+ \ \"51.116.253.128/30\",\r\n \"51.120.68.23/32\",\r\n \"51.120.98.240/29\",\r\n
+ \ \"51.120.109.28/30\",\r\n \"51.120.164.23/32\",\r\n \"51.120.219.72/29\",\r\n
+ \ \"51.140.148.24/29\",\r\n \"51.140.184.27/32\",\r\n \"51.140.211.16/29\",\r\n
+ \ \"51.141.8.30/32\",\r\n \"52.136.136.27/32\",\r\n \"52.138.70.82/32\",\r\n
+ \ \"52.138.92.168/30\",\r\n \"52.138.143.55/32\",\r\n \"52.138.229.68/30\",\r\n
+ \ \"52.143.136.15/32\",\r\n \"52.143.184.15/32\",\r\n \"52.151.38.144/32\",\r\n
+ \ \"52.158.236.247/32\",\r\n \"52.162.107.176/29\",\r\n \"52.163.90.165/32\",\r\n
+ \ \"52.163.94.113/32\",\r\n \"52.165.37.188/32\",\r\n \"52.167.0.27/32\",\r\n
+ \ \"52.167.109.68/30\",\r\n \"52.167.227.220/32\",\r\n \"52.174.163.204/32\",\r\n
+ \ \"52.174.164.254/32\",\r\n \"52.178.30.193/32\",\r\n \"52.180.176.84/32\",\r\n
+ \ \"52.182.141.56/30\",\r\n \"52.182.172.232/32\",\r\n \"52.225.184.94/32\",\r\n
+ \ \"52.225.185.159/32\",\r\n \"52.230.8.61/32\",\r\n \"52.231.18.232/29\",\r\n
+ \ \"52.231.32.81/32\",\r\n \"52.231.147.16/29\",\r\n \"52.231.200.124/32\",\r\n
+ \ \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n \"52.246.157.8/30\",\r\n
+ \ \"65.52.250.224/29\",\r\n \"102.37.48.12/32\",\r\n \"102.133.27.24/29\",\r\n
+ \ \"102.133.72.31/32\",\r\n \"102.133.155.24/29\",\r\n \"102.133.160.28/32\",\r\n
+ \ \"102.133.235.169/32\",\r\n \"102.133.251.216/30\",\r\n
+ \ \"104.41.9.53/32\",\r\n \"104.41.187.29/32\",\r\n \"104.42.181.121/32\",\r\n
+ \ \"104.43.213.84/32\",\r\n \"104.45.19.250/32\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"104.210.107.69/32\",\r\n \"104.211.81.216/29\",\r\n \"104.211.103.201/32\",\r\n
+ \ \"104.211.146.240/29\",\r\n \"104.211.164.163/32\",\r\n
+ \ \"104.211.228.68/32\",\r\n \"104.214.19.72/29\",\r\n \"104.215.78.146/32\",\r\n
+ \ \"137.116.252.9/32\",\r\n \"137.135.33.49/32\",\r\n \"168.61.142.48/30\",\r\n
+ \ \"191.233.50.24/29\",\r\n \"191.233.203.216/29\",\r\n \"191.234.149.32/30\",\r\n
+ \ \"191.234.157.128/30\",\r\n \"207.46.234.62/32\",\r\n \"2603:1000:4:402::98/125\",\r\n
+ \ \"2603:1000:104:402::98/125\",\r\n \"2603:1000:104:802::98/125\",\r\n
+ \ \"2603:1000:104:c02::98/125\",\r\n \"2603:1010:6:402::98/125\",\r\n
+ \ \"2603:1010:6:802::98/125\",\r\n \"2603:1010:6:c02::98/125\",\r\n
+ \ \"2603:1010:101:402::98/125\",\r\n \"2603:1010:304:402::98/125\",\r\n
+ \ \"2603:1010:404:402::98/125\",\r\n \"2603:1020:5:402::98/125\",\r\n
+ \ \"2603:1020:5:802::98/125\",\r\n \"2603:1020:5:c02::98/125\",\r\n
+ \ \"2603:1020:206:402::98/125\",\r\n \"2603:1020:206:802::98/125\",\r\n
+ \ \"2603:1020:206:c02::98/125\",\r\n \"2603:1020:305:402::98/125\",\r\n
+ \ \"2603:1020:405:402::98/125\",\r\n \"2603:1020:605:402::98/125\",\r\n
+ \ \"2603:1020:705:402::98/125\",\r\n \"2603:1020:705:802::98/125\",\r\n
+ \ \"2603:1020:705:c02::98/125\",\r\n \"2603:1020:805:402::98/125\",\r\n
+ \ \"2603:1020:805:802::98/125\",\r\n \"2603:1020:805:c02::98/125\",\r\n
+ \ \"2603:1020:905:402::98/125\",\r\n \"2603:1020:a04:402::98/125\",\r\n
+ \ \"2603:1020:a04:802::98/125\",\r\n \"2603:1020:a04:c02::98/125\",\r\n
+ \ \"2603:1020:b04:402::98/125\",\r\n \"2603:1020:c04:402::98/125\",\r\n
+ \ \"2603:1020:c04:802::98/125\",\r\n \"2603:1020:c04:c02::98/125\",\r\n
+ \ \"2603:1020:d04:402::98/125\",\r\n \"2603:1020:e04:402::98/125\",\r\n
+ \ \"2603:1020:e04:802::98/125\",\r\n \"2603:1020:e04:c02::98/125\",\r\n
+ \ \"2603:1020:f04:402::98/125\",\r\n \"2603:1020:1004:400::98/125\",\r\n
+ \ \"2603:1020:1004:800::158/125\",\r\n \"2603:1020:1004:800::350/125\",\r\n
+ \ \"2603:1020:1104:400::98/125\",\r\n \"2603:1030:f:400::898/125\",\r\n
+ \ \"2603:1030:10:402::98/125\",\r\n \"2603:1030:10:802::98/125\",\r\n
+ \ \"2603:1030:10:c02::98/125\",\r\n \"2603:1030:104:402::98/125\",\r\n
+ \ \"2603:1030:107:400::d0/125\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\",\r\n
+ \ \"2603:1030:40b:400::898/125\",\r\n \"2603:1030:40b:800::98/125\",\r\n
+ \ \"2603:1030:40b:c00::98/125\",\r\n \"2603:1030:40c:402::98/125\",\r\n
+ \ \"2603:1030:40c:802::98/125\",\r\n \"2603:1030:40c:c02::98/125\",\r\n
+ \ \"2603:1030:504:402::98/125\",\r\n \"2603:1030:504:802::c8/125\",\r\n
+ \ \"2603:1030:504:802::158/125\",\r\n \"2603:1030:504:802::350/125\",\r\n
+ \ \"2603:1030:608:402::98/125\",\r\n \"2603:1030:807:402::98/125\",\r\n
+ \ \"2603:1030:807:802::98/125\",\r\n \"2603:1030:807:c02::98/125\",\r\n
+ \ \"2603:1030:a07:402::98/125\",\r\n \"2603:1030:b04:402::98/125\",\r\n
+ \ \"2603:1030:c06:400::898/125\",\r\n \"2603:1030:c06:802::98/125\",\r\n
+ \ \"2603:1030:c06:c02::98/125\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\",\r\n
+ \ \"2603:1030:1005:402::98/125\",\r\n \"2603:1040:5:402::98/125\",\r\n
+ \ \"2603:1040:5:802::98/125\",\r\n \"2603:1040:5:c02::98/125\",\r\n
+ \ \"2603:1040:207:402::98/125\",\r\n \"2603:1040:407:402::98/125\",\r\n
+ \ \"2603:1040:407:802::98/125\",\r\n \"2603:1040:407:c02::98/125\",\r\n
+ \ \"2603:1040:606:402::98/125\",\r\n \"2603:1040:806:402::98/125\",\r\n
+ \ \"2603:1040:904:402::98/125\",\r\n \"2603:1040:904:802::98/125\",\r\n
+ \ \"2603:1040:904:c02::98/125\",\r\n \"2603:1040:a06:402::98/125\",\r\n
+ \ \"2603:1040:a06:802::98/125\",\r\n \"2603:1040:a06:c02::98/125\",\r\n
+ \ \"2603:1040:b04:402::98/125\",\r\n \"2603:1040:c06:402::98/125\",\r\n
+ \ \"2603:1040:d04:400::98/125\",\r\n \"2603:1040:d04:800::158/125\",\r\n
+ \ \"2603:1040:d04:800::350/125\",\r\n \"2603:1040:f05:402::98/125\",\r\n
+ \ \"2603:1040:f05:802::98/125\",\r\n \"2603:1040:f05:c02::98/125\",\r\n
+ \ \"2603:1040:1104:400::98/125\",\r\n \"2603:1050:6:402::98/125\",\r\n
+ \ \"2603:1050:6:802::98/125\",\r\n \"2603:1050:6:c02::98/125\",\r\n
+ \ \"2603:1050:403:400::140/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.CanadaCentral\",\r\n \"id\":
+ \"ServiceFabric.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.71.170.224/29\",\r\n
+ \ \"13.71.170.248/29\",\r\n \"20.38.149.192/30\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"52.246.157.8/30\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS2EUAP\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.79.114.102/32\",\r\n \"52.138.70.82/32\",\r\n \"52.138.92.168/30\",\r\n
+ \ \"52.225.184.94/32\",\r\n \"52.225.185.159/32\",\r\n \"2603:1030:40b:400::898/125\",\r\n
+ \ \"2603:1030:40b:800::98/125\",\r\n \"2603:1030:40b:c00::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.FranceSouth\",\r\n
+ \ \"id\": \"ServiceFabric.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.0/29\",\r\n \"52.136.136.27/32\",\r\n
+ \ \"2603:1020:905:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.JapanWest\",\r\n \"id\": \"ServiceFabric.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.240/29\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"2603:1040:606:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.SwitzerlandWest\",\r\n \"id\":
+ \"ServiceFabric.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"2603:1020:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.UAECentral\",\r\n
+ \ \"id\": \"ServiceFabric.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.80/29\",\r\n \"20.45.79.240/32\",\r\n \"2603:1040:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.WestCentralUS\",\r\n
+ \ \"id\": \"ServiceFabric.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.48/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"2603:1030:b04:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.WestEurope\",\r\n \"id\": \"ServiceFabric.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.64.232/29\",\r\n \"13.69.109.136/30\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"52.174.163.204/32\",\r\n \"52.174.164.254/32\",\r\n
+ \ \"52.178.30.193/32\",\r\n \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n
+ \ \"104.45.19.250/32\",\r\n \"2603:1020:206:402::98/125\",\r\n
+ \ \"2603:1020:206:802::98/125\",\r\n \"2603:1020:206:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql\",\r\n \"id\":
+ \"Sql\",\r\n \"properties\": {\r\n \"changeNumber\": \"3\",\r\n
+ \ \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.66.136.0/26\",\r\n \"13.66.136.192/29\",\r\n
+ \ \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n \"13.66.229.222/32\",\r\n
+ \ \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n \"13.66.230.64/32\",\r\n
+ \ \"13.66.230.103/32\",\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n
+ \ \"13.67.17.0/26\",\r\n \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n
+ \ \"13.67.59.217/32\",\r\n \"13.67.215.62/32\",\r\n \"13.68.22.44/32\",\r\n
+ \ \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.70.148.251/32\",\r\n \"13.70.155.163/32\",\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.73.109.251/32\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n
+ \ \"13.77.7.78/32\",\r\n \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n
+ \ \"13.77.49.32/29\",\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n
+ \ \"13.78.104.32/29\",\r\n \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n
+ \ \"13.78.144.57/32\",\r\n \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n
+ \ \"13.78.151.189/32\",\r\n \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n
+ \ \"13.78.178.151/32\",\r\n \"13.78.248.32/27\",\r\n \"13.84.223.76/32\",\r\n
+ \ \"13.85.65.48/32\",\r\n \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n
+ \ \"13.86.216.0/25\",\r\n \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n
+ \ \"13.86.217.0/25\",\r\n \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n
+ \ \"13.86.217.224/29\",\r\n \"13.87.16.64/27\",\r\n \"13.87.17.0/27\",\r\n
+ \ \"13.87.33.234/32\",\r\n \"13.87.34.7/32\",\r\n \"13.87.34.19/32\",\r\n
+ \ \"13.87.38.138/32\",\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"13.89.36.110/32\",\r\n \"13.89.37.61/32\",\r\n
+ \ \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n \"13.89.168.0/26\",\r\n
+ \ \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n
+ \ \"20.36.105.32/29\",\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n
+ \ \"20.36.113.32/29\",\r\n \"20.37.71.64/26\",\r\n \"20.37.71.128/26\",\r\n
+ \ \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n \"20.37.73.64/27\",\r\n
+ \ \"20.37.73.96/29\",\r\n \"20.38.143.64/26\",\r\n \"20.38.143.128/26\",\r\n
+ \ \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n \"20.38.145.0/27\",\r\n
+ \ \"20.38.152.24/29\",\r\n \"20.40.228.128/25\",\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.43.47.192/26\",\r\n \"20.44.0.0/27\",\r\n
+ \ \"20.44.1.0/27\",\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n
+ \ \"20.44.25.0/27\",\r\n \"20.45.120.0/27\",\r\n \"20.45.121.0/27\",\r\n
+ \ \"20.45.121.32/29\",\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n
+ \ \"20.46.11.128/26\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"20.49.80.0/27\",\r\n \"20.49.80.32/29\",\r\n
+ \ \"20.49.81.0/27\",\r\n \"20.49.88.0/27\",\r\n \"20.49.88.32/29\",\r\n
+ \ \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"20.51.17.160/27\",\r\n \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n
+ \ \"20.53.46.128/25\",\r\n \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n
+ \ \"20.53.48.192/26\",\r\n \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n
+ \ \"20.53.56.128/26\",\r\n \"20.58.66.128/25\",\r\n \"20.61.99.192/26\",\r\n
+ \ \"20.61.102.0/26\",\r\n \"20.62.58.128/25\",\r\n \"20.62.132.160/27\",\r\n
+ \ \"20.62.132.192/27\",\r\n \"20.62.133.0/26\",\r\n \"20.65.132.160/27\",\r\n
+ \ \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n \"20.66.3.64/26\",\r\n
+ \ \"20.66.3.128/26\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"20.72.21.224/27\",\r\n \"20.72.24.64/27\",\r\n
+ \ \"20.72.24.128/27\",\r\n \"20.72.25.128/27\",\r\n \"20.88.64.0/27\",\r\n
+ \ \"20.150.168.0/27\",\r\n \"20.150.168.32/29\",\r\n \"20.150.169.0/27\",\r\n
+ \ \"20.150.176.0/27\",\r\n \"20.150.176.32/29\",\r\n \"20.150.177.0/27\",\r\n
+ \ \"20.150.184.0/27\",\r\n \"20.150.184.32/29\",\r\n \"20.150.185.0/27\",\r\n
+ \ \"20.150.241.128/25\",\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"20.191.165.160/27\",\r\n \"20.191.165.192/27\",\r\n
+ \ \"20.191.166.0/26\",\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.48.32/27\",\r\n \"20.192.48.64/27\",\r\n
+ \ \"20.192.48.128/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"20.192.167.224/27\",\r\n \"20.192.232.0/27\",\r\n
+ \ \"20.192.233.0/27\",\r\n \"20.192.233.32/29\",\r\n \"20.193.192.0/27\",\r\n
+ \ \"20.193.192.64/26\",\r\n \"20.193.200.0/27\",\r\n \"20.193.200.32/29\",\r\n
+ \ \"20.193.201.0/27\",\r\n \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n
+ \ \"20.194.65.0/27\",\r\n \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n
+ \ \"20.195.65.32/27\",\r\n \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"20.195.146.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"23.96.178.199/32\",\r\n \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n
+ \ \"23.96.205.215/32\",\r\n \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n
+ \ \"23.96.247.75/32\",\r\n \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.98.55.75/32\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.98.162.75/32\",\r\n
+ \ \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n \"23.98.170.75/32\",\r\n
+ \ \"23.98.170.76/31\",\r\n \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n
+ \ \"23.99.10.185/32\",\r\n \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n
+ \ \"23.99.34.78/32\",\r\n \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n
+ \ \"23.99.57.14/32\",\r\n \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n
+ \ \"23.99.90.75/32\",\r\n \"23.99.91.130/32\",\r\n \"23.99.102.124/32\",\r\n
+ \ \"23.99.118.196/32\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"23.101.64.10/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"23.102.16.130/32\",\r\n \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n
+ \ \"23.102.52.155/32\",\r\n \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n
+ \ \"23.102.69.95/32\",\r\n \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n
+ \ \"23.102.172.251/32\",\r\n \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n
+ \ \"23.102.179.187/32\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.67.53.0/25\",\r\n \"40.67.56.0/27\",\r\n \"40.67.56.32/29\",\r\n
+ \ \"40.67.57.0/27\",\r\n \"40.68.37.158/32\",\r\n \"40.68.215.206/32\",\r\n
+ \ \"40.68.220.16/32\",\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n
+ \ \"40.69.105.32/29\",\r\n \"40.69.132.90/32\",\r\n \"40.69.143.202/32\",\r\n
+ \ \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n \"40.70.144.0/26\",\r\n
+ \ \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n \"40.71.8.0/26\",\r\n
+ \ \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n \"40.71.9.192/26\",\r\n
+ \ \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n \"40.71.211.227/32\",\r\n
+ \ \"40.71.226.18/32\",\r\n \"40.74.51.145/32\",\r\n \"40.74.53.36/32\",\r\n
+ \ \"40.74.60.91/32\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"40.74.144.0/27\",\r\n \"40.74.144.32/29\",\r\n
+ \ \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n \"40.74.254.156/32\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"40.76.2.172/32\",\r\n \"40.76.26.90/32\",\r\n
+ \ \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n \"40.76.66.9/32\",\r\n
+ \ \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n \"40.76.219.185/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.78.192.0/27\",\r\n
+ \ \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n \"40.78.193.32/29\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"40.78.224.0/26\",\r\n
+ \ \"40.78.224.128/26\",\r\n \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n
+ \ \"40.78.232.0/26\",\r\n \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"40.79.152.0/26\",\r\n \"40.79.152.192/26\",\r\n
+ \ \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.79.176.0/27\",\r\n
+ \ \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n \"40.79.177.32/29\",\r\n
+ \ \"40.79.184.0/27\",\r\n \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n
+ \ \"40.79.192.0/27\",\r\n \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n
+ \ \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n \"40.80.49.0/27\",\r\n
+ \ \"40.83.178.165/32\",\r\n \"40.83.186.249/32\",\r\n \"40.84.5.64/32\",\r\n
+ \ \"40.84.54.249/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n \"40.86.75.134/32\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"40.112.139.250/32\",\r\n
+ \ \"40.112.240.0/27\",\r\n \"40.112.246.0/27\",\r\n \"40.113.14.53/32\",\r\n
+ \ \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n \"40.113.20.38/32\",\r\n
+ \ \"40.113.93.91/32\",\r\n \"40.113.200.119/32\",\r\n \"40.114.40.118/32\",\r\n
+ \ \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n \"40.114.46.128/32\",\r\n
+ \ \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.118.12.208/32\",\r\n \"40.118.129.167/32\",\r\n
+ \ \"40.118.170.1/32\",\r\n \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n
+ \ \"40.118.249.123/32\",\r\n \"40.118.250.19/32\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"40.121.143.204/32\",\r\n
+ \ \"40.121.149.49/32\",\r\n \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"40.126.228.153/32\",\r\n \"40.126.230.223/32\",\r\n
+ \ \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n \"40.126.250.24/32\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"51.12.46.32/27\",\r\n
+ \ \"51.12.46.64/27\",\r\n \"51.12.46.128/26\",\r\n \"51.12.96.0/27\",\r\n
+ \ \"51.12.96.32/29\",\r\n \"51.12.97.0/27\",\r\n \"51.12.198.32/27\",\r\n
+ \ \"51.12.198.64/27\",\r\n \"51.12.198.128/26\",\r\n \"51.12.200.0/27\",\r\n
+ \ \"51.12.200.32/29\",\r\n \"51.12.201.0/27\",\r\n \"51.12.201.32/29\",\r\n
+ \ \"51.12.224.0/27\",\r\n \"51.12.224.32/29\",\r\n \"51.12.225.0/27\",\r\n
+ \ \"51.12.232.0/27\",\r\n \"51.12.232.32/29\",\r\n \"51.12.233.0/27\",\r\n
+ \ \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n \"51.13.137.64/26\",\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.152.0/27\",\r\n \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"51.107.250.64/26\",\r\n \"51.107.250.128/26\",\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"51.120.96.0/27\",\r\n
+ \ \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n \"51.120.104.0/27\",\r\n
+ \ \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n \"51.120.208.0/27\",\r\n
+ \ \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n \"51.120.216.0/27\",\r\n
+ \ \"51.120.217.0/27\",\r\n \"51.120.217.32/29\",\r\n \"51.120.232.192/26\",\r\n
+ \ \"51.120.233.0/26\",\r\n \"51.138.210.0/26\",\r\n \"51.140.77.9/32\",\r\n
+ \ \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n \"51.140.144.0/27\",\r\n
+ \ \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n \"51.140.180.9/32\",\r\n
+ \ \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n \"51.140.184.12/32\",\r\n
+ \ \"51.140.208.64/27\",\r\n \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n
+ \ \"51.140.209.32/29\",\r\n \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n
+ \ \"51.141.15.53/32\",\r\n \"51.141.25.212/32\",\r\n \"51.142.211.129/32\",\r\n
+ \ \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n \"51.143.212.64/26\",\r\n
+ \ \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n \"52.136.185.0/25\",\r\n
+ \ \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n \"52.138.89.0/27\",\r\n
+ \ \"52.138.89.32/29\",\r\n \"52.138.224.0/26\",\r\n \"52.138.224.128/26\",\r\n
+ \ \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n \"52.138.229.72/29\",\r\n
+ \ \"52.139.106.192/26\",\r\n \"52.139.107.0/26\",\r\n \"52.146.133.128/25\",\r\n
+ \ \"52.147.112.160/27\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"52.162.104.0/26\",\r\n
+ \ \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n \"52.162.125.1/32\",\r\n
+ \ \"52.162.241.250/32\",\r\n \"52.165.184.67/32\",\r\n \"52.166.76.0/32\",\r\n
+ \ \"52.166.131.195/32\",\r\n \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n
+ \ \"52.167.105.0/26\",\r\n \"52.167.117.226/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.171.56.10/32\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n \"52.173.205.59/32\",\r\n
+ \ \"52.175.33.150/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.177.185.181/32\",\r\n
+ \ \"52.177.197.103/32\",\r\n \"52.177.200.215/32\",\r\n \"52.179.16.95/32\",\r\n
+ \ \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n \"52.179.167.70/32\",\r\n
+ \ \"52.179.178.184/32\",\r\n \"52.180.176.154/31\",\r\n \"52.180.183.226/32\",\r\n
+ \ \"52.182.136.0/26\",\r\n \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n
+ \ \"52.183.250.62/32\",\r\n \"52.184.192.175/32\",\r\n \"52.184.231.0/32\",\r\n
+ \ \"52.185.152.149/32\",\r\n \"52.187.15.214/32\",\r\n \"52.187.76.130/32\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.225.188.46/32\",\r\n \"52.225.188.113/32\",\r\n
+ \ \"52.225.222.124/32\",\r\n \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n
+ \ \"52.228.39.117/32\",\r\n \"52.229.17.93/32\",\r\n \"52.229.122.195/32\",\r\n
+ \ \"52.229.123.147/32\",\r\n \"52.229.124.23/32\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"52.231.144.0/27\",\r\n \"52.231.145.0/27\",\r\n
+ \ \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n \"52.231.206.133/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"52.237.28.86/32\",\r\n
+ \ \"52.237.219.227/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"52.243.32.19/32\",\r\n
+ \ \"52.243.43.186/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"52.246.251.248/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"65.52.208.91/32\",\r\n \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n
+ \ \"65.52.218.82/32\",\r\n \"65.52.225.245/32\",\r\n \"65.52.226.209/32\",\r\n
+ \ \"65.52.248.0/27\",\r\n \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n
+ \ \"102.37.80.96/27\",\r\n \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n
+ \ \"102.37.160.0/27\",\r\n \"102.37.160.64/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"102.133.120.0/27\",\r\n
+ \ \"102.133.120.32/29\",\r\n \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n
+ \ \"102.133.152.32/29\",\r\n \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n
+ \ \"102.133.248.0/27\",\r\n \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n
+ \ \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n \"104.40.54.130/32\",\r\n
+ \ \"104.40.82.151/32\",\r\n \"104.40.155.247/32\",\r\n \"104.40.168.64/26\",\r\n
+ \ \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n \"104.40.169.32/29\",\r\n
+ \ \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n \"104.40.220.28/32\",\r\n
+ \ \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n \"104.40.237.111/32\",\r\n
+ \ \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n \"104.41.13.233/32\",\r\n
+ \ \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n \"104.41.57.82/32\",\r\n
+ \ \"104.41.59.170/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.41.168.103/32\",\r\n \"104.41.169.34/32\",\r\n \"104.41.202.30/32\",\r\n
+ \ \"104.41.205.195/32\",\r\n \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n
+ \ \"104.41.211.98/32\",\r\n \"104.42.120.235/32\",\r\n \"104.42.127.95/32\",\r\n
+ \ \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n \"104.42.192.190/32\",\r\n
+ \ \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n \"104.42.237.198/32\",\r\n
+ \ \"104.42.238.205/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.43.164.21/32\",\r\n \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n
+ \ \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n \"104.45.158.30/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n
+ \ \"104.46.183.0/26\",\r\n \"104.47.157.97/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"104.210.32.128/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"104.211.144.0/27\",\r\n
+ \ \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n \"104.211.145.32/29\",\r\n
+ \ \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n \"104.211.190.46/32\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n
+ \ \"104.214.17.0/26\",\r\n \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n
+ \ \"104.214.73.137/32\",\r\n \"104.214.78.242/32\",\r\n \"104.214.148.156/32\",\r\n
+ \ \"104.214.150.17/32\",\r\n \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n
+ \ \"111.221.106.161/32\",\r\n \"137.116.31.224/27\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"137.116.203.91/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"137.135.109.63/32\",\r\n \"137.135.186.126/32\",\r\n
+ \ \"137.135.189.158/32\",\r\n \"137.135.205.85/32\",\r\n
+ \ \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n \"138.91.58.227/32\",\r\n
+ \ \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n \"138.91.240.14/32\",\r\n
+ \ \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n \"138.91.251.139/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"168.62.115.112/28\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"168.63.13.214/32\",\r\n
+ \ \"168.63.98.91/32\",\r\n \"168.63.175.68/32\",\r\n \"191.233.15.160/27\",\r\n
+ \ \"191.233.15.192/27\",\r\n \"191.233.48.0/27\",\r\n \"191.233.48.32/29\",\r\n
+ \ \"191.233.49.0/27\",\r\n \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n
+ \ \"191.233.200.0/27\",\r\n \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"191.234.142.160/27\",\r\n \"191.234.142.192/27\",\r\n
+ \ \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n \"191.234.145.0/27\",\r\n
+ \ \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n \"191.235.170.58/32\",\r\n
+ \ \"191.235.193.75/32\",\r\n \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n
+ \ \"191.235.193.139/32\",\r\n \"191.235.193.140/31\",\r\n
+ \ \"191.235.209.79/32\",\r\n \"191.236.119.31/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.237.219.202/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"191.237.240.43/32\",\r\n
+ \ \"191.237.240.44/32\",\r\n \"191.237.240.46/32\",\r\n \"191.238.6.43/32\",\r\n
+ \ \"191.238.6.44/31\",\r\n \"191.238.6.46/32\",\r\n \"191.238.68.11/32\",\r\n
+ \ \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"191.239.12.154/32\",\r\n \"191.239.189.48/32\",\r\n
+ \ \"191.239.192.109/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1000:4::280/123\",\r\n \"2603:1000:4:1::200/121\",\r\n
+ \ \"2603:1000:4:400::/123\",\r\n \"2603:1000:4:401::/123\",\r\n
+ \ \"2603:1000:104::640/123\",\r\n \"2603:1000:104::680/121\",\r\n
+ \ \"2603:1000:104:400::/123\",\r\n \"2603:1000:104:401::/123\",\r\n
+ \ \"2603:1000:104:800::/123\",\r\n \"2603:1000:104:801::/123\",\r\n
+ \ \"2603:1000:104:c00::/123\",\r\n \"2603:1000:104:c01::/123\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\",\r\n \"2603:1010:304::280/123\",\r\n
+ \ \"2603:1010:304:1::200/121\",\r\n \"2603:1010:304:400::/123\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\",\r\n
+ \ \"2603:1020:705::320/123\",\r\n \"2603:1020:705::380/121\",\r\n
+ \ \"2603:1020:705:400::/123\",\r\n \"2603:1020:705:401::/123\",\r\n
+ \ \"2603:1020:705:800::/123\",\r\n \"2603:1020:705:801::/123\",\r\n
+ \ \"2603:1020:705:c00::/123\",\r\n \"2603:1020:705:c01::/123\",\r\n
+ \ \"2603:1020:805::320/123\",\r\n \"2603:1020:805::380/121\",\r\n
+ \ \"2603:1020:805:400::/123\",\r\n \"2603:1020:805:401::/123\",\r\n
+ \ \"2603:1020:805:800::/123\",\r\n \"2603:1020:805:801::/123\",\r\n
+ \ \"2603:1020:805:c00::/123\",\r\n \"2603:1020:805:c01::/123\",\r\n
+ \ \"2603:1020:905::280/123\",\r\n \"2603:1020:905:1::200/121\",\r\n
+ \ \"2603:1020:905:400::/123\",\r\n \"2603:1020:a04::320/123\",\r\n
+ \ \"2603:1020:a04::380/121\",\r\n \"2603:1020:a04:400::/123\",\r\n
+ \ \"2603:1020:a04:401::/123\",\r\n \"2603:1020:a04:800::/123\",\r\n
+ \ \"2603:1020:a04:801::/123\",\r\n \"2603:1020:a04:c00::/123\",\r\n
+ \ \"2603:1020:a04:c01::/123\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\",\r\n
+ \ \"2603:1020:c04::320/123\",\r\n \"2603:1020:c04::380/121\",\r\n
+ \ \"2603:1020:c04:400::/123\",\r\n \"2603:1020:c04:401::/123\",\r\n
+ \ \"2603:1020:c04:800::/123\",\r\n \"2603:1020:c04:801::/123\",\r\n
+ \ \"2603:1020:c04:c00::/123\",\r\n \"2603:1020:c04:c01::/123\",\r\n
+ \ \"2603:1020:d04::280/123\",\r\n \"2603:1020:d04:1::200/121\",\r\n
+ \ \"2603:1020:d04:400::/123\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\",\r\n
+ \ \"2603:1020:1004:1::520/123\",\r\n \"2603:1020:1004:1::580/121\",\r\n
+ \ \"2603:1020:1004:400::400/123\",\r\n \"2603:1020:1004:402::/123\",\r\n
+ \ \"2603:1020:1004:403::/123\",\r\n \"2603:1020:1004:802::/123\",\r\n
+ \ \"2603:1020:1004:803::/123\",\r\n \"2603:1020:1004:c03::/123\",\r\n
+ \ \"2603:1020:1004:c04::/123\",\r\n \"2603:1020:1104::500/123\",\r\n
+ \ \"2603:1020:1104:1::300/121\",\r\n \"2603:1020:1104:400::420/123\",\r\n
+ \ \"2603:1020:1104:402::/123\",\r\n \"2603:1030:f:1::280/123\",\r\n
+ \ \"2603:1030:f:2::200/121\",\r\n \"2603:1030:f:402::/122\",\r\n
+ \ \"2603:1030:f:403::/122\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\",\r\n \"2603:1030:104::320/123\",\r\n
+ \ \"2603:1030:104::380/121\",\r\n \"2603:1030:104:400::/123\",\r\n
+ \ \"2603:1030:104:401::/123\",\r\n \"2603:1030:107:1::380/123\",\r\n
+ \ \"2603:1030:107:401::40/122\",\r\n \"2603:1030:107:402::40/123\",\r\n
+ \ \"2603:1030:210::320/123\",\r\n \"2603:1030:210::380/121\",\r\n
+ \ \"2603:1030:210:400::/123\",\r\n \"2603:1030:210:401::/123\",\r\n
+ \ \"2603:1030:210:800::/123\",\r\n \"2603:1030:210:801::/123\",\r\n
+ \ \"2603:1030:210:c00::/123\",\r\n \"2603:1030:210:c01::/123\",\r\n
+ \ \"2603:1030:40b:2::200/123\",\r\n \"2603:1030:40b:2::280/121\",\r\n
+ \ \"2603:1030:40b:402::/122\",\r\n \"2603:1030:40b:403::/122\",\r\n
+ \ \"2603:1030:40b:802::/122\",\r\n \"2603:1030:40b:803::/122\",\r\n
+ \ \"2603:1030:40b:c02::/122\",\r\n \"2603:1030:40b:c03::/122\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\",\r\n
+ \ \"2603:1030:504::520/123\",\r\n \"2603:1030:504::580/121\",\r\n
+ \ \"2603:1030:504:400::/123\",\r\n \"2603:1030:504:401::/123\",\r\n
+ \ \"2603:1030:504:800::/123\",\r\n \"2603:1030:504:801::/123\",\r\n
+ \ \"2603:1030:504:c00::/123\",\r\n \"2603:1030:504:c01::/123\",\r\n
+ \ \"2603:1030:608::280/123\",\r\n \"2603:1030:608:1::200/121\",\r\n
+ \ \"2603:1030:608:400::/123\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\",\r\n \"2603:1030:a07::280/123\",\r\n
+ \ \"2603:1030:a07:1::200/121\",\r\n \"2603:1030:a07:400::/123\",\r\n
+ \ \"2603:1030:b04::280/123\",\r\n \"2603:1030:b04:1::200/121\",\r\n
+ \ \"2603:1030:b04:400::/123\",\r\n \"2603:1030:c06:2::200/123\",\r\n
+ \ \"2603:1030:c06:2::280/121\",\r\n \"2603:1030:c06:401::/123\",\r\n
+ \ \"2603:1030:c06:402::/123\",\r\n \"2603:1030:c06:800::/123\",\r\n
+ \ \"2603:1030:c06:801::/123\",\r\n \"2603:1030:c06:c00::/123\",\r\n
+ \ \"2603:1030:c06:c01::/123\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\",\r\n
+ \ \"2603:1040:5::420/123\",\r\n \"2603:1040:5::480/121\",\r\n
+ \ \"2603:1040:5:400::/123\",\r\n \"2603:1040:5:401::/123\",\r\n
+ \ \"2603:1040:5:800::/123\",\r\n \"2603:1040:5:801::/123\",\r\n
+ \ \"2603:1040:5:c00::/123\",\r\n \"2603:1040:5:c01::/123\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\",\r\n
+ \ \"2603:1040:407::320/123\",\r\n \"2603:1040:407::380/121\",\r\n
+ \ \"2603:1040:407:400::/123\",\r\n \"2603:1040:407:401::/123\",\r\n
+ \ \"2603:1040:407:800::/123\",\r\n \"2603:1040:407:801::/123\",\r\n
+ \ \"2603:1040:407:c00::/123\",\r\n \"2603:1040:407:c01::/123\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\",\r\n
+ \ \"2603:1040:904::320/123\",\r\n \"2603:1040:904::380/121\",\r\n
+ \ \"2603:1040:904:400::/123\",\r\n \"2603:1040:904:401::/123\",\r\n
+ \ \"2603:1040:904:800::/123\",\r\n \"2603:1040:904:801::/123\",\r\n
+ \ \"2603:1040:904:c00::/123\",\r\n \"2603:1040:904:c01::/123\",\r\n
+ \ \"2603:1040:a06::420/123\",\r\n \"2603:1040:a06::480/121\",\r\n
+ \ \"2603:1040:a06:400::/123\",\r\n \"2603:1040:a06:401::/123\",\r\n
+ \ \"2603:1040:a06:800::/123\",\r\n \"2603:1040:a06:801::/123\",\r\n
+ \ \"2603:1040:a06:c00::/123\",\r\n \"2603:1040:a06:c01::/123\",\r\n
+ \ \"2603:1040:b04::280/123\",\r\n \"2603:1040:b04:1::200/121\",\r\n
+ \ \"2603:1040:b04:400::/123\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\",\r\n \"2603:1040:d04:1::520/123\",\r\n
+ \ \"2603:1040:d04:1::580/121\",\r\n \"2603:1040:d04:400::400/123\",\r\n
+ \ \"2603:1040:d04:402::/123\",\r\n \"2603:1040:d04:403::/123\",\r\n
+ \ \"2603:1040:d04:802::/123\",\r\n \"2603:1040:d04:803::/123\",\r\n
+ \ \"2603:1040:d04:c03::/123\",\r\n \"2603:1040:d04:c04::/123\",\r\n
+ \ \"2603:1040:e05::/123\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\",\r\n \"2603:1040:1104::500/123\",\r\n
+ \ \"2603:1040:1104:1::300/121\",\r\n \"2603:1040:1104:400::440/123\",\r\n
+ \ \"2603:1040:1104:402::/123\",\r\n \"2603:1050:6::320/123\",\r\n
+ \ \"2603:1050:6::380/121\",\r\n \"2603:1050:6:400::/123\",\r\n
+ \ \"2603:1050:6:401::/123\",\r\n \"2603:1050:6:800::/123\",\r\n
+ \ \"2603:1050:6:801::/123\",\r\n \"2603:1050:6:c00::/122\",\r\n
+ \ \"2603:1050:6:c01::/122\",\r\n \"2603:1050:403:1::200/123\",\r\n
+ \ \"2603:1050:403:1::280/121\",\r\n \"2603:1050:403:402::/123\",\r\n
+ \ \"2603:1050:403:403::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral\",\r\n \"id\": \"Sql.AustraliaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n \"20.36.105.32/29\",\r\n
+ \ \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n \"20.53.48.192/26\",\r\n
+ \ \"2603:1010:304::280/123\",\r\n \"2603:1010:304:1::200/121\",\r\n
+ \ \"2603:1010:304:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral2\",\r\n \"id\": \"Sql.AustraliaCentral2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n \"20.36.113.32/29\",\r\n
+ \ \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n \"20.53.56.128/26\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaEast\",\r\n \"id\": \"Sql.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"20.53.46.128/25\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.126.228.153/32\",\r\n
+ \ \"40.126.230.223/32\",\r\n \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n
+ \ \"40.126.250.24/32\",\r\n \"52.237.219.227/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Sql.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.70.148.251/32\",\r\n
+ \ \"13.70.155.163/32\",\r\n \"13.73.109.251/32\",\r\n \"13.77.7.78/32\",\r\n
+ \ \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n \"13.77.49.32/29\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n \"104.46.183.0/26\",\r\n
+ \ \"191.239.189.48/32\",\r\n \"191.239.192.109/32\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.BrazilSouth\",\r\n \"id\": \"Sql.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n
+ \ \"104.41.13.233/32\",\r\n \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n
+ \ \"104.41.57.82/32\",\r\n \"104.41.59.170/32\",\r\n \"191.233.200.0/27\",\r\n
+ \ \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n \"191.234.142.160/27\",\r\n
+ \ \"191.234.142.192/27\",\r\n \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n
+ \ \"191.234.145.0/27\",\r\n \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n
+ \ \"2603:1050:6::320/123\",\r\n \"2603:1050:6::380/121\",\r\n
+ \ \"2603:1050:6:400::/123\",\r\n \"2603:1050:6:401::/123\",\r\n
+ \ \"2603:1050:6:800::/123\",\r\n \"2603:1050:6:801::/123\",\r\n
+ \ \"2603:1050:6:c00::/122\",\r\n \"2603:1050:6:c01::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CanadaCentral\",\r\n
+ \ \"id\": \"Sql.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n
+ \ \"20.38.145.0/27\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n
+ \ \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n \"52.228.39.117/32\",\r\n
+ \ \"52.237.28.86/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CanadaEast\",\r\n \"id\": \"Sql.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n \"40.69.105.32/29\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"52.139.106.192/26\",\r\n
+ \ \"52.139.107.0/26\",\r\n \"52.229.122.195/32\",\r\n \"52.229.123.147/32\",\r\n
+ \ \"52.229.124.23/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CentralIndia\",\r\n
+ \ \"id\": \"Sql.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n
+ \ \"40.80.49.0/27\",\r\n \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"2603:1040:a06::420/123\",\r\n
+ \ \"2603:1040:a06::480/121\",\r\n \"2603:1040:a06:400::/123\",\r\n
+ \ \"2603:1040:a06:401::/123\",\r\n \"2603:1040:a06:800::/123\",\r\n
+ \ \"2603:1040:a06:801::/123\",\r\n \"2603:1040:a06:c00::/123\",\r\n
+ \ \"2603:1040:a06:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUS\",\r\n \"id\": \"Sql.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.215.62/32\",\r\n \"13.89.36.110/32\",\r\n
+ \ \"13.89.37.61/32\",\r\n \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n
+ \ \"13.89.168.0/26\",\r\n \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n
+ \ \"20.40.228.128/25\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"40.69.132.90/32\",\r\n
+ \ \"40.69.143.202/32\",\r\n \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.86.75.134/32\",\r\n \"40.113.200.119/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"52.165.184.67/32\",\r\n
+ \ \"52.173.205.59/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.182.136.0/26\",\r\n
+ \ \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n \"104.43.164.21/32\",\r\n
+ \ \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUSEUAP\",\r\n \"id\": \"Sql.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n \"20.46.11.128/26\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"52.180.176.154/31\",\r\n
+ \ \"52.180.183.226/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"2603:1030:f:1::280/123\",\r\n \"2603:1030:f:2::200/121\",\r\n
+ \ \"2603:1030:f:402::/122\",\r\n \"2603:1030:f:403::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastAsia\",\r\n
+ \ \"id\": \"Sql.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.99.102.124/32\",\r\n \"23.99.118.196/32\",\r\n \"52.175.33.150/32\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS\",\r\n
+ \ \"id\": \"Sql.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.62.132.160/27\",\r\n \"20.62.132.192/27\",\r\n
+ \ \"20.62.133.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"40.71.8.0/26\",\r\n \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n
+ \ \"40.71.9.192/26\",\r\n \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n
+ \ \"40.71.211.227/32\",\r\n \"40.71.226.18/32\",\r\n \"40.76.2.172/32\",\r\n
+ \ \"40.76.26.90/32\",\r\n \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n
+ \ \"40.76.66.9/32\",\r\n \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n
+ \ \"40.76.219.185/32\",\r\n \"40.78.224.0/26\",\r\n \"40.78.224.128/26\",\r\n
+ \ \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n \"40.79.152.0/26\",\r\n
+ \ \"40.79.152.192/26\",\r\n \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n
+ \ \"40.114.40.118/32\",\r\n \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n
+ \ \"40.114.46.128/32\",\r\n \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.121.143.204/32\",\r\n \"40.121.149.49/32\",\r\n
+ \ \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.179.16.95/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.45.158.30/32\",\r\n \"137.135.109.63/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.238.6.43/32\",\r\n \"191.238.6.44/31\",\r\n
+ \ \"191.238.6.46/32\",\r\n \"2603:1030:210::320/123\",\r\n
+ \ \"2603:1030:210::380/121\",\r\n \"2603:1030:210:400::/123\",\r\n
+ \ \"2603:1030:210:401::/123\",\r\n \"2603:1030:210:800::/123\",\r\n
+ \ \"2603:1030:210:801::/123\",\r\n \"2603:1030:210:c00::/123\",\r\n
+ \ \"2603:1030:210:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2\",\r\n \"id\": \"Sql.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.22.44/32\",\r\n \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n
+ \ \"20.62.58.128/25\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.70.144.0/26\",\r\n \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.84.5.64/32\",\r\n \"40.84.54.249/32\",\r\n
+ \ \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n \"52.167.105.0/26\",\r\n
+ \ \"52.167.117.226/32\",\r\n \"52.177.185.181/32\",\r\n \"52.177.197.103/32\",\r\n
+ \ \"52.177.200.215/32\",\r\n \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n
+ \ \"52.179.167.70/32\",\r\n \"52.179.178.184/32\",\r\n \"52.184.192.175/32\",\r\n
+ \ \"52.184.231.0/32\",\r\n \"52.225.222.124/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS2EUAP\",\r\n
+ \ \"id\": \"Sql.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.51.17.160/27\",\r\n
+ \ \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n \"40.74.144.0/27\",\r\n
+ \ \"40.74.144.32/29\",\r\n \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n
+ \ \"52.138.89.0/27\",\r\n \"52.138.89.32/29\",\r\n \"52.225.188.46/32\",\r\n
+ \ \"52.225.188.113/32\",\r\n \"2603:1030:40b:2::200/123\",\r\n
+ \ \"2603:1030:40b:2::280/121\",\r\n \"2603:1030:40b:402::/122\",\r\n
+ \ \"2603:1030:40b:403::/122\",\r\n \"2603:1030:40b:802::/122\",\r\n
+ \ \"2603:1030:40b:803::/122\",\r\n \"2603:1030:40b:c02::/122\",\r\n
+ \ \"2603:1030:40b:c03::/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2Stage\",\r\n \"id\": \"Sql.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.31.224/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceCentral\",\r\n \"id\": \"Sql.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.47.192/26\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"51.138.210.0/26\",\r\n \"2603:1020:805::320/123\",\r\n
+ \ \"2603:1020:805::380/121\",\r\n \"2603:1020:805:400::/123\",\r\n
+ \ \"2603:1020:805:401::/123\",\r\n \"2603:1020:805:800::/123\",\r\n
+ \ \"2603:1020:805:801::/123\",\r\n \"2603:1020:805:c00::/123\",\r\n
+ \ \"2603:1020:805:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceSouth\",\r\n \"id\": \"Sql.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.176.0/27\",\r\n \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n
+ \ \"40.79.177.32/29\",\r\n \"52.136.185.0/25\",\r\n \"2603:1020:905::280/123\",\r\n
+ \ \"2603:1020:905:1::200/121\",\r\n \"2603:1020:905:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyNorth\",\r\n
+ \ \"id\": \"Sql.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"2603:1020:d04::280/123\",\r\n
+ \ \"2603:1020:d04:1::200/121\",\r\n \"2603:1020:d04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyWestCentral\",\r\n
+ \ \"id\": \"Sql.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"2603:1020:c04::320/123\",\r\n
+ \ \"2603:1020:c04::380/121\",\r\n \"2603:1020:c04:400::/123\",\r\n
+ \ \"2603:1020:c04:401::/123\",\r\n \"2603:1020:c04:800::/123\",\r\n
+ \ \"2603:1020:c04:801::/123\",\r\n \"2603:1020:c04:c00::/123\",\r\n
+ \ \"2603:1020:c04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanEast\",\r\n \"id\": \"Sql.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n \"13.78.104.32/29\",\r\n
+ \ \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n \"20.191.165.160/27\",\r\n
+ \ \"20.191.165.192/27\",\r\n \"20.191.166.0/26\",\r\n \"23.102.69.95/32\",\r\n
+ \ \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n \"40.79.184.0/27\",\r\n
+ \ \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n \"40.79.192.0/27\",\r\n
+ \ \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n \"52.185.152.149/32\",\r\n
+ \ \"52.243.32.19/32\",\r\n \"52.243.43.186/32\",\r\n \"104.41.168.103/32\",\r\n
+ \ \"104.41.169.34/32\",\r\n \"191.237.240.43/32\",\r\n \"191.237.240.44/32\",\r\n
+ \ \"191.237.240.46/32\",\r\n \"2603:1040:407::320/123\",\r\n
+ \ \"2603:1040:407::380/121\",\r\n \"2603:1040:407:400::/123\",\r\n
+ \ \"2603:1040:407:401::/123\",\r\n \"2603:1040:407:800::/123\",\r\n
+ \ \"2603:1040:407:801::/123\",\r\n \"2603:1040:407:c00::/123\",\r\n
+ \ \"2603:1040:407:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanWest\",\r\n \"id\": \"Sql.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"104.214.148.156/32\",\r\n \"104.214.150.17/32\",\r\n
+ \ \"191.238.68.11/32\",\r\n \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaCentral\",\r\n \"id\": \"Sql.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n \"20.44.25.0/27\",\r\n
+ \ \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n \"20.194.65.0/27\",\r\n
+ \ \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaSouth\",\r\n \"id\": \"Sql.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.112.160/27\",\r\n \"52.231.144.0/27\",\r\n
+ \ \"52.231.145.0/27\",\r\n \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n
+ \ \"52.231.206.133/32\",\r\n \"2603:1040:e05::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUS\",\r\n
+ \ \"id\": \"Sql.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"23.96.178.199/32\",\r\n
+ \ \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n \"23.96.205.215/32\",\r\n
+ \ \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n \"23.96.247.75/32\",\r\n
+ \ \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n \"23.98.55.75/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"52.162.104.0/26\",\r\n \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n
+ \ \"52.162.125.1/32\",\r\n \"52.162.241.250/32\",\r\n \"65.52.208.91/32\",\r\n
+ \ \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n \"65.52.218.82/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"2603:1030:608::280/123\",\r\n
+ \ \"2603:1030:608:1::200/121\",\r\n \"2603:1030:608:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUSStage\",\r\n
+ \ \"id\": \"Sql.NorthCentralUSStage\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"168.62.115.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.NorthEurope\",\r\n \"id\": \"Sql.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"23.102.16.130/32\",\r\n
+ \ \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n \"23.102.52.155/32\",\r\n
+ \ \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.113.14.53/32\",\r\n \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n
+ \ \"40.113.20.38/32\",\r\n \"40.113.93.91/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"52.138.224.0/26\",\r\n
+ \ \"52.138.224.128/26\",\r\n \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n
+ \ \"52.138.229.72/29\",\r\n \"52.146.133.128/25\",\r\n \"65.52.225.245/32\",\r\n
+ \ \"65.52.226.209/32\",\r\n \"104.41.202.30/32\",\r\n \"104.41.205.195/32\",\r\n
+ \ \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n \"104.41.211.98/32\",\r\n
+ \ \"137.135.186.126/32\",\r\n \"137.135.189.158/32\",\r\n
+ \ \"137.135.205.85/32\",\r\n \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n
+ \ \"138.91.58.227/32\",\r\n \"191.235.170.58/32\",\r\n \"191.235.193.75/32\",\r\n
+ \ \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n \"191.235.193.139/32\",\r\n
+ \ \"191.235.193.140/31\",\r\n \"191.235.209.79/32\",\r\n
+ \ \"191.237.219.202/32\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayEast\",\r\n \"id\": \"Sql.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.96.0/27\",\r\n \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n
+ \ \"51.120.104.0/27\",\r\n \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n
+ \ \"51.120.208.0/27\",\r\n \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n
+ \ \"51.120.232.192/26\",\r\n \"51.120.233.0/26\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayWest\",\r\n \"id\": \"Sql.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n
+ \ \"51.13.137.64/26\",\r\n \"51.120.216.0/27\",\r\n \"51.120.217.0/27\",\r\n
+ \ \"51.120.217.32/29\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Sql.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.0/27\",\r\n
+ \ \"102.37.160.64/26\",\r\n \"102.133.120.0/27\",\r\n \"102.133.120.32/29\",\r\n
+ \ \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n \"102.133.152.32/29\",\r\n
+ \ \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n \"102.133.248.0/27\",\r\n
+ \ \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n \"2603:1000:104::640/123\",\r\n
+ \ \"2603:1000:104::680/121\",\r\n \"2603:1000:104:400::/123\",\r\n
+ \ \"2603:1000:104:401::/123\",\r\n \"2603:1000:104:800::/123\",\r\n
+ \ \"2603:1000:104:801::/123\",\r\n \"2603:1000:104:c00::/123\",\r\n
+ \ \"2603:1000:104:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthAfricaWest\",\r\n \"id\": \"Sql.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.80.96/27\",\r\n
+ \ \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"2603:1000:4::280/123\",\r\n
+ \ \"2603:1000:4:1::200/121\",\r\n \"2603:1000:4:400::/123\",\r\n
+ \ \"2603:1000:4:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthCentralUS\",\r\n \"id\": \"Sql.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.84.223.76/32\",\r\n \"13.85.65.48/32\",\r\n
+ \ \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n \"20.45.120.0/27\",\r\n
+ \ \"20.45.121.0/27\",\r\n \"20.45.121.32/29\",\r\n \"20.49.88.0/27\",\r\n
+ \ \"20.49.88.32/29\",\r\n \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n
+ \ \"20.65.132.160/27\",\r\n \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n
+ \ \"23.98.162.75/32\",\r\n \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n
+ \ \"23.98.170.75/32\",\r\n \"23.98.170.76/31\",\r\n \"23.102.172.251/32\",\r\n
+ \ \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n \"23.102.179.187/32\",\r\n
+ \ \"40.74.254.156/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"52.171.56.10/32\",\r\n \"52.183.250.62/32\",\r\n
+ \ \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n \"104.214.17.0/26\",\r\n
+ \ \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n \"104.214.73.137/32\",\r\n
+ \ \"104.214.78.242/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SoutheastAsia\",\r\n \"id\": \"Sql.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n \"13.67.17.0/26\",\r\n
+ \ \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n \"13.67.59.217/32\",\r\n
+ \ \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n \"20.195.65.32/27\",\r\n
+ \ \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"40.78.232.0/26\",\r\n
+ \ \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n \"52.187.15.214/32\",\r\n
+ \ \"52.187.76.130/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n \"111.221.106.161/32\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"168.63.175.68/32\",\r\n \"2603:1040:5::420/123\",\r\n
+ \ \"2603:1040:5::480/121\",\r\n \"2603:1040:5:400::/123\",\r\n
+ \ \"2603:1040:5:401::/123\",\r\n \"2603:1040:5:800::/123\",\r\n
+ \ \"2603:1040:5:801::/123\",\r\n \"2603:1040:5:c00::/123\",\r\n
+ \ \"2603:1040:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthIndia\",\r\n \"id\": \"Sql.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.192.0/27\",\r\n \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n
+ \ \"40.78.193.32/29\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SwitzerlandNorth\",\r\n \"id\": \"Sql.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"2603:1020:a04::320/123\",\r\n \"2603:1020:a04::380/121\",\r\n
+ \ \"2603:1020:a04:400::/123\",\r\n \"2603:1020:a04:401::/123\",\r\n
+ \ \"2603:1020:a04:800::/123\",\r\n \"2603:1020:a04:801::/123\",\r\n
+ \ \"2603:1020:a04:c00::/123\",\r\n \"2603:1020:a04:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SwitzerlandWest\",\r\n
+ \ \"id\": \"Sql.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.107.152.0/27\",\r\n
+ \ \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n \"51.107.250.64/26\",\r\n
+ \ \"51.107.250.128/26\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAECentral\",\r\n
+ \ \"id\": \"Sql.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.37.71.64/26\",\r\n
+ \ \"20.37.71.128/26\",\r\n \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n
+ \ \"20.37.73.64/27\",\r\n \"20.37.73.96/29\",\r\n \"2603:1040:b04::280/123\",\r\n
+ \ \"2603:1040:b04:1::200/121\",\r\n \"2603:1040:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAENorth\",\r\n
+ \ \"id\": \"Sql.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.64/26\",\r\n
+ \ \"20.38.143.128/26\",\r\n \"20.38.152.24/29\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"65.52.248.0/27\",\r\n
+ \ \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n \"2603:1040:904::320/123\",\r\n
+ \ \"2603:1040:904::380/121\",\r\n \"2603:1040:904:400::/123\",\r\n
+ \ \"2603:1040:904:401::/123\",\r\n \"2603:1040:904:800::/123\",\r\n
+ \ \"2603:1040:904:801::/123\",\r\n \"2603:1040:904:c00::/123\",\r\n
+ \ \"2603:1040:904:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKNorth\",\r\n \"id\": \"Sql.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"51.142.211.129/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.UKSouth\",\r\n \"id\": \"Sql.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.140.77.9/32\",\r\n \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n
+ \ \"51.140.144.0/27\",\r\n \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n
+ \ \"51.140.180.9/32\",\r\n \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n
+ \ \"51.140.184.12/32\",\r\n \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n
+ \ \"51.143.212.64/26\",\r\n \"2603:1020:705::320/123\",\r\n
+ \ \"2603:1020:705::380/121\",\r\n \"2603:1020:705:400::/123\",\r\n
+ \ \"2603:1020:705:401::/123\",\r\n \"2603:1020:705:800::/123\",\r\n
+ \ \"2603:1020:705:801::/123\",\r\n \"2603:1020:705:c00::/123\",\r\n
+ \ \"2603:1020:705:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKWest\",\r\n \"id\": \"Sql.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.58.66.128/25\",\r\n \"51.140.208.64/27\",\r\n
+ \ \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n \"51.140.209.32/29\",\r\n
+ \ \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n \"51.141.15.53/32\",\r\n
+ \ \"51.141.25.212/32\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestCentralUS\",\r\n
+ \ \"id\": \"Sql.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.78.144.57/32\",\r\n
+ \ \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n \"13.78.151.189/32\",\r\n
+ \ \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n \"13.78.178.151/32\",\r\n
+ \ \"13.78.248.32/27\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"2603:1030:b04::280/123\",\r\n
+ \ \"2603:1030:b04:1::200/121\",\r\n \"2603:1030:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestEurope\",\r\n
+ \ \"id\": \"Sql.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"20.61.99.192/26\",\r\n \"20.61.102.0/26\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.101.64.10/32\",\r\n \"40.68.37.158/32\",\r\n
+ \ \"40.68.215.206/32\",\r\n \"40.68.220.16/32\",\r\n \"40.74.51.145/32\",\r\n
+ \ \"40.74.53.36/32\",\r\n \"40.74.60.91/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.118.12.208/32\",\r\n \"52.166.76.0/32\",\r\n \"52.166.131.195/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"104.40.155.247/32\",\r\n
+ \ \"104.40.168.64/26\",\r\n \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n
+ \ \"104.40.169.32/29\",\r\n \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n
+ \ \"104.40.220.28/32\",\r\n \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n
+ \ \"104.40.237.111/32\",\r\n \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.47.157.97/32\",\r\n
+ \ \"137.116.203.91/32\",\r\n \"168.63.13.214/32\",\r\n \"168.63.98.91/32\",\r\n
+ \ \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestIndia\",\r\n \"id\": \"Sql.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n
+ \ \"104.211.144.0/27\",\r\n \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n
+ \ \"104.211.145.32/29\",\r\n \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n
+ \ \"104.211.190.46/32\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestUS\",\r\n
+ \ \"id\": \"Sql.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.86.216.0/25\",\r\n
+ \ \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n \"13.86.217.0/25\",\r\n
+ \ \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n \"13.86.217.224/29\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.66.3.64/26\",\r\n \"20.66.3.128/26\",\r\n
+ \ \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n \"23.99.10.185/32\",\r\n
+ \ \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n \"23.99.34.78/32\",\r\n
+ \ \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n \"23.99.57.14/32\",\r\n
+ \ \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n \"23.99.90.75/32\",\r\n
+ \ \"23.99.91.130/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.83.178.165/32\",\r\n
+ \ \"40.83.186.249/32\",\r\n \"40.112.139.250/32\",\r\n \"40.112.240.0/27\",\r\n
+ \ \"40.112.246.0/27\",\r\n \"40.118.129.167/32\",\r\n \"40.118.170.1/32\",\r\n
+ \ \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n \"40.118.249.123/32\",\r\n
+ \ \"40.118.250.19/32\",\r\n \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n
+ \ \"104.40.54.130/32\",\r\n \"104.40.82.151/32\",\r\n \"104.42.120.235/32\",\r\n
+ \ \"104.42.127.95/32\",\r\n \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n
+ \ \"104.42.192.190/32\",\r\n \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n
+ \ \"104.42.237.198/32\",\r\n \"104.42.238.205/32\",\r\n \"104.210.32.128/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n
+ \ \"138.91.240.14/32\",\r\n \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n
+ \ \"138.91.251.139/32\",\r\n \"191.236.119.31/32\",\r\n \"191.239.12.154/32\",\r\n
+ \ \"2603:1030:a07::280/123\",\r\n \"2603:1030:a07:1::200/121\",\r\n
+ \ \"2603:1030:a07:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestUS2\",\r\n \"id\": \"Sql.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.66.136.0/26\",\r\n
+ \ \"13.66.136.192/29\",\r\n \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n
+ \ \"13.66.229.222/32\",\r\n \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n
+ \ \"13.66.230.64/32\",\r\n \"13.66.230.103/32\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.229.17.93/32\",\r\n \"52.246.251.248/32\",\r\n
+ \ \"2603:1030:c06:2::200/123\",\r\n \"2603:1030:c06:2::280/121\",\r\n
+ \ \"2603:1030:c06:401::/123\",\r\n \"2603:1030:c06:402::/123\",\r\n
+ \ \"2603:1030:c06:800::/123\",\r\n \"2603:1030:c06:801::/123\",\r\n
+ \ \"2603:1030:c06:c00::/123\",\r\n \"2603:1030:c06:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"SqlManagement\",\r\n
+ \ \"id\": \"SqlManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"SqlManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.155.40/32\",\r\n \"13.66.140.96/27\",\r\n
+ \ \"13.66.141.192/27\",\r\n \"13.67.8.192/27\",\r\n \"13.67.10.32/27\",\r\n
+ \ \"13.69.64.96/27\",\r\n \"13.69.67.0/27\",\r\n \"13.69.106.96/27\",\r\n
+ \ \"13.69.107.32/27\",\r\n \"13.69.227.96/27\",\r\n \"13.69.229.192/27\",\r\n
+ \ \"13.70.72.160/27\",\r\n \"13.70.73.224/27\",\r\n \"13.71.119.167/32\",\r\n
+ \ \"13.71.123.234/32\",\r\n \"13.71.170.160/27\",\r\n \"13.71.173.96/27\",\r\n
+ \ \"13.71.195.0/27\",\r\n \"13.71.196.96/27\",\r\n \"13.73.240.192/27\",\r\n
+ \ \"13.73.242.0/27\",\r\n \"13.73.249.176/28\",\r\n \"13.74.107.96/27\",\r\n
+ \ \"13.74.107.224/27\",\r\n \"13.75.36.32/27\",\r\n \"13.75.39.32/27\",\r\n
+ \ \"13.77.50.192/27\",\r\n \"13.77.53.0/27\",\r\n \"13.78.106.224/27\",\r\n
+ \ \"13.78.109.64/27\",\r\n \"13.78.181.246/32\",\r\n \"13.78.182.82/32\",\r\n
+ \ \"13.84.52.76/32\",\r\n \"13.86.219.96/27\",\r\n \"13.87.39.133/32\",\r\n
+ \ \"13.87.39.173/32\",\r\n \"13.87.56.192/27\",\r\n \"13.87.58.0/27\",\r\n
+ \ \"13.87.122.192/27\",\r\n \"13.87.124.0/27\",\r\n \"13.89.170.224/27\",\r\n
+ \ \"13.89.174.96/27\",\r\n \"13.92.242.41/32\",\r\n \"13.94.47.38/32\",\r\n
+ \ \"13.104.248.32/27\",\r\n \"13.104.248.96/27\",\r\n \"20.36.46.202/32\",\r\n
+ \ \"20.36.46.220/32\",\r\n \"20.36.75.75/32\",\r\n \"20.36.75.114/32\",\r\n
+ \ \"20.36.108.0/27\",\r\n \"20.36.108.64/27\",\r\n \"20.36.115.160/27\",\r\n
+ \ \"20.36.115.192/27\",\r\n \"20.36.123.0/28\",\r\n \"20.37.67.64/28\",\r\n
+ \ \"20.37.76.0/27\",\r\n \"20.37.76.64/27\",\r\n \"20.37.198.96/28\",\r\n
+ \ \"20.37.227.0/28\",\r\n \"20.38.87.208/28\",\r\n \"20.38.128.0/27\",\r\n
+ \ \"20.38.139.64/28\",\r\n \"20.38.146.192/27\",\r\n \"20.38.147.32/27\",\r\n
+ \ \"20.39.12.240/28\",\r\n \"20.40.200.176/28\",\r\n \"20.41.67.96/28\",\r\n
+ \ \"20.41.197.32/28\",\r\n \"20.42.131.34/31\",\r\n \"20.42.230.96/28\",\r\n
+ \ \"20.43.43.176/28\",\r\n \"20.43.70.80/28\",\r\n \"20.43.120.192/27\",\r\n
+ \ \"20.44.4.0/26\",\r\n \"20.44.8.128/27\",\r\n \"20.44.16.160/27\",\r\n
+ \ \"20.44.26.192/27\",\r\n \"20.44.27.160/27\",\r\n \"20.45.75.228/32\",\r\n
+ \ \"20.45.75.230/32\",\r\n \"20.45.114.208/28\",\r\n \"20.45.122.192/27\",\r\n
+ \ \"20.45.126.32/27\",\r\n \"20.45.197.240/28\",\r\n \"20.49.83.160/27\",\r\n
+ \ \"20.49.83.192/27\",\r\n \"20.49.91.160/27\",\r\n \"20.49.93.96/27\",\r\n
+ \ \"20.49.99.48/28\",\r\n \"20.49.109.64/28\",\r\n \"20.49.113.16/28\",\r\n
+ \ \"20.49.120.48/28\",\r\n \"20.50.1.224/28\",\r\n \"20.72.21.16/28\",\r\n
+ \ \"20.72.28.224/27\",\r\n \"20.72.30.128/27\",\r\n \"20.150.165.160/28\",\r\n
+ \ \"20.150.170.32/27\",\r\n \"20.150.170.128/27\",\r\n \"20.150.172.96/27\",\r\n
+ \ \"20.150.178.192/26\",\r\n \"20.150.186.192/26\",\r\n \"20.187.194.208/28\",\r\n
+ \ \"20.192.98.192/26\",\r\n \"20.192.165.192/28\",\r\n \"20.192.230.16/28\",\r\n
+ \ \"20.192.238.32/27\",\r\n \"20.192.238.64/27\",\r\n \"20.193.205.160/27\",\r\n
+ \ \"20.193.205.192/27\",\r\n \"20.194.67.128/26\",\r\n \"23.96.185.63/32\",\r\n
+ \ \"23.96.243.93/32\",\r\n \"23.97.120.24/32\",\r\n \"23.98.82.128/27\",\r\n
+ \ \"23.98.83.32/27\",\r\n \"23.98.104.144/28\",\r\n \"23.99.97.255/32\",\r\n
+ \ \"40.64.132.112/28\",\r\n \"40.65.124.161/32\",\r\n \"40.67.50.224/28\",\r\n
+ \ \"40.67.58.32/27\",\r\n \"40.67.60.32/27\",\r\n \"40.69.106.192/27\",\r\n
+ \ \"40.69.108.0/27\",\r\n \"40.69.161.215/32\",\r\n \"40.70.72.228/32\",\r\n
+ \ \"40.70.146.96/27\",\r\n \"40.70.148.64/27\",\r\n \"40.71.10.224/27\",\r\n
+ \ \"40.71.13.192/27\",\r\n \"40.71.215.148/32\",\r\n \"40.74.100.192/27\",\r\n
+ \ \"40.74.101.224/27\",\r\n \"40.74.147.0/27\",\r\n \"40.74.147.96/27\",\r\n
+ \ \"40.74.147.128/27\",\r\n \"40.74.254.227/32\",\r\n \"40.75.34.64/27\",\r\n
+ \ \"40.75.35.0/27\",\r\n \"40.78.194.192/27\",\r\n \"40.78.196.0/27\",\r\n
+ \ \"40.78.203.128/27\",\r\n \"40.78.203.192/27\",\r\n \"40.78.226.224/27\",\r\n
+ \ \"40.78.229.0/27\",\r\n \"40.78.234.64/27\",\r\n \"40.78.234.224/27\",\r\n
+ \ \"40.78.242.192/27\",\r\n \"40.78.243.128/27\",\r\n \"40.78.250.128/27\",\r\n
+ \ \"40.78.251.64/27\",\r\n \"40.79.32.162/32\",\r\n \"40.79.130.160/27\",\r\n
+ \ \"40.79.132.0/27\",\r\n \"40.79.138.64/27\",\r\n \"40.79.138.160/27\",\r\n
+ \ \"40.79.146.64/27\",\r\n \"40.79.146.160/27\",\r\n \"40.79.154.0/27\",\r\n
+ \ \"40.79.154.224/27\",\r\n \"40.79.156.0/27\",\r\n \"40.79.162.64/27\",\r\n
+ \ \"40.79.162.160/27\",\r\n \"40.79.170.160/27\",\r\n \"40.79.171.0/27\",\r\n
+ \ \"40.79.178.192/27\",\r\n \"40.79.179.224/27\",\r\n \"40.79.186.96/27\",\r\n
+ \ \"40.79.187.128/27\",\r\n \"40.79.194.0/27\",\r\n \"40.79.195.128/27\",\r\n
+ \ \"40.80.50.192/27\",\r\n \"40.80.51.32/27\",\r\n \"40.80.62.0/28\",\r\n
+ \ \"40.80.172.32/28\",\r\n \"40.89.20.144/28\",\r\n \"40.112.243.128/27\",\r\n
+ \ \"40.120.75.192/26\",\r\n \"40.123.207.224/32\",\r\n \"40.123.219.239/32\",\r\n
+ \ \"40.126.238.47/32\",\r\n \"40.127.3.232/32\",\r\n \"51.12.42.0/28\",\r\n
+ \ \"51.12.98.32/27\",\r\n \"51.12.98.128/27\",\r\n \"51.12.194.0/28\",\r\n
+ \ \"51.12.202.32/27\",\r\n \"51.12.202.128/27\",\r\n \"51.12.226.192/26\",\r\n
+ \ \"51.12.234.192/26\",\r\n \"51.104.8.192/27\",\r\n \"51.104.28.240/28\",\r\n
+ \ \"51.105.66.192/27\",\r\n \"51.105.67.128/27\",\r\n \"51.105.74.192/27\",\r\n
+ \ \"51.105.75.32/27\",\r\n \"51.105.83.0/28\",\r\n \"51.105.90.160/28\",\r\n
+ \ \"51.107.51.0/28\",\r\n \"51.107.58.32/27\",\r\n \"51.107.60.0/27\",\r\n
+ \ \"51.107.147.0/28\",\r\n \"51.107.154.32/27\",\r\n \"51.107.156.0/27\",\r\n
+ \ \"51.116.49.144/28\",\r\n \"51.116.58.32/27\",\r\n \"51.116.60.0/27\",\r\n
+ \ \"51.116.145.144/28\",\r\n \"51.116.154.96/27\",\r\n \"51.116.156.0/27\",\r\n
+ \ \"51.116.242.192/26\",\r\n \"51.116.243.32/27\",\r\n \"51.116.250.192/27\",\r\n
+ \ \"51.116.253.96/27\",\r\n \"51.120.43.64/28\",\r\n \"51.120.98.32/27\",\r\n
+ \ \"51.120.100.0/27\",\r\n \"51.120.106.192/26\",\r\n \"51.120.210.192/26\",\r\n
+ \ \"51.120.218.32/27\",\r\n \"51.120.218.128/27\",\r\n \"51.120.227.64/28\",\r\n
+ \ \"51.137.164.96/28\",\r\n \"51.140.121.92/32\",\r\n \"51.140.127.51/32\",\r\n
+ \ \"51.140.146.224/27\",\r\n \"51.140.210.224/27\",\r\n \"51.140.212.32/27\",\r\n
+ \ \"51.141.38.88/32\",\r\n \"51.141.39.175/32\",\r\n \"51.142.213.97/32\",\r\n
+ \ \"51.142.215.251/32\",\r\n \"51.143.195.0/28\",\r\n \"52.136.51.80/28\",\r\n
+ \ \"52.136.139.224/32\",\r\n \"52.136.140.157/32\",\r\n \"52.138.90.96/27\",\r\n
+ \ \"52.138.226.96/27\",\r\n \"52.138.226.224/27\",\r\n \"52.140.108.80/28\",\r\n
+ \ \"52.143.136.162/32\",\r\n \"52.143.139.82/32\",\r\n \"52.150.139.78/31\",\r\n
+ \ \"52.150.152.32/28\",\r\n \"52.162.107.128/27\",\r\n \"52.162.110.192/27\",\r\n
+ \ \"52.164.200.174/32\",\r\n \"52.165.237.178/32\",\r\n \"52.166.50.138/32\",\r\n
+ \ \"52.167.106.96/27\",\r\n \"52.167.106.224/27\",\r\n \"52.169.6.70/32\",\r\n
+ \ \"52.172.193.99/32\",\r\n \"52.172.204.185/32\",\r\n \"52.173.243.204/32\",\r\n
+ \ \"52.175.156.251/32\",\r\n \"52.182.138.224/27\",\r\n \"52.182.139.96/27\",\r\n
+ \ \"52.183.64.43/32\",\r\n \"52.185.145.40/32\",\r\n \"52.185.154.136/32\",\r\n
+ \ \"52.187.185.17/32\",\r\n \"52.225.130.171/32\",\r\n \"52.228.84.112/28\",\r\n
+ \ \"52.230.122.197/32\",\r\n \"52.231.18.160/27\",\r\n \"52.231.19.224/27\",\r\n
+ \ \"52.231.30.200/32\",\r\n \"52.231.34.21/32\",\r\n \"52.231.146.224/27\",\r\n
+ \ \"52.231.148.32/27\",\r\n \"52.231.202.76/32\",\r\n \"52.231.206.187/32\",\r\n
+ \ \"52.233.30.2/32\",\r\n \"52.233.38.82/32\",\r\n \"52.233.130.100/32\",\r\n
+ \ \"52.235.36.131/32\",\r\n \"52.236.186.96/27\",\r\n \"52.236.187.32/27\",\r\n
+ \ \"52.237.244.169/32\",\r\n \"52.242.36.170/32\",\r\n \"52.243.87.200/32\",\r\n
+ \ \"52.246.154.192/27\",\r\n \"52.246.155.32/27\",\r\n \"52.255.51.21/32\",\r\n
+ \ \"65.52.252.0/27\",\r\n \"65.52.252.64/27\",\r\n \"102.133.27.224/27\",\r\n
+ \ \"102.133.28.32/27\",\r\n \"102.133.58.208/28\",\r\n \"102.133.72.35/32\",\r\n
+ \ \"102.133.72.42/32\",\r\n \"102.133.122.192/27\",\r\n \"102.133.123.192/27\",\r\n
+ \ \"102.133.155.224/27\",\r\n \"102.133.156.32/27\",\r\n
+ \ \"102.133.160.35/32\",\r\n \"102.133.218.128/28\",\r\n
+ \ \"102.133.250.192/27\",\r\n \"102.133.251.32/27\",\r\n
+ \ \"104.42.96.175/32\",\r\n \"104.208.16.96/27\",\r\n \"104.208.144.96/27\",\r\n
+ \ \"104.211.81.160/27\",\r\n \"104.211.146.192/27\",\r\n
+ \ \"104.211.187.232/32\",\r\n \"104.214.19.0/27\",\r\n \"104.214.108.80/32\",\r\n
+ \ \"104.215.17.87/32\",\r\n \"191.232.163.58/32\",\r\n \"191.233.11.128/28\",\r\n
+ \ \"191.233.54.32/27\",\r\n \"191.233.54.192/27\",\r\n \"191.233.203.160/27\",\r\n
+ \ \"191.233.205.32/27\",\r\n \"191.234.136.64/28\",\r\n \"191.234.146.192/26\",\r\n
+ \ \"191.234.154.192/26\",\r\n \"2603:1000:4:402::380/122\",\r\n
+ \ \"2603:1000:104:402::380/122\",\r\n \"2603:1000:104:802::260/123\",\r\n
+ \ \"2603:1000:104:802::280/123\",\r\n \"2603:1000:104:c02::260/123\",\r\n
+ \ \"2603:1000:104:c02::280/123\",\r\n \"2603:1010:6:402::380/122\",\r\n
+ \ \"2603:1010:6:802::260/123\",\r\n \"2603:1010:6:802::280/123\",\r\n
+ \ \"2603:1010:6:c02::260/123\",\r\n \"2603:1010:6:c02::280/123\",\r\n
+ \ \"2603:1010:101:402::380/122\",\r\n \"2603:1010:304:402::380/122\",\r\n
+ \ \"2603:1010:404:402::380/122\",\r\n \"2603:1020:5:402::380/122\",\r\n
+ \ \"2603:1020:5:802::260/123\",\r\n \"2603:1020:5:802::280/123\",\r\n
+ \ \"2603:1020:5:c02::260/123\",\r\n \"2603:1020:5:c02::280/123\",\r\n
+ \ \"2603:1020:206:402::380/122\",\r\n \"2603:1020:206:802::260/123\",\r\n
+ \ \"2603:1020:206:802::280/123\",\r\n \"2603:1020:206:c02::260/123\",\r\n
+ \ \"2603:1020:206:c02::280/123\",\r\n \"2603:1020:305:402::380/122\",\r\n
+ \ \"2603:1020:405:402::380/122\",\r\n \"2603:1020:605:402::380/122\",\r\n
+ \ \"2603:1020:705:402::380/122\",\r\n \"2603:1020:705:802::260/123\",\r\n
+ \ \"2603:1020:705:802::280/123\",\r\n \"2603:1020:705:c02::260/123\",\r\n
+ \ \"2603:1020:705:c02::280/123\",\r\n \"2603:1020:805:402::380/122\",\r\n
+ \ \"2603:1020:805:802::260/123\",\r\n \"2603:1020:805:802::280/123\",\r\n
+ \ \"2603:1020:805:c02::260/123\",\r\n \"2603:1020:805:c02::280/123\",\r\n
+ \ \"2603:1020:905:402::380/122\",\r\n \"2603:1020:a04:402::380/122\",\r\n
+ \ \"2603:1020:a04:802::260/123\",\r\n \"2603:1020:a04:802::280/123\",\r\n
+ \ \"2603:1020:a04:c02::260/123\",\r\n \"2603:1020:a04:c02::280/123\",\r\n
+ \ \"2603:1020:b04:402::380/122\",\r\n \"2603:1020:c04:402::380/122\",\r\n
+ \ \"2603:1020:c04:802::260/123\",\r\n \"2603:1020:c04:802::280/123\",\r\n
+ \ \"2603:1020:c04:c02::260/123\",\r\n \"2603:1020:c04:c02::280/123\",\r\n
+ \ \"2603:1020:d04:402::380/122\",\r\n \"2603:1020:e04:3::400/123\",\r\n
+ \ \"2603:1020:e04:402::380/122\",\r\n \"2603:1020:e04:802::260/123\",\r\n
+ \ \"2603:1020:e04:802::280/123\",\r\n \"2603:1020:e04:c02::260/123\",\r\n
+ \ \"2603:1020:e04:c02::280/123\",\r\n \"2603:1020:f04:402::380/122\",\r\n
+ \ \"2603:1020:1004:1::500/123\",\r\n \"2603:1020:1004:400::200/122\",\r\n
+ \ \"2603:1020:1004:800::300/122\",\r\n \"2603:1020:1004:c02::2c0/122\",\r\n
+ \ \"2603:1020:1104:1::1e0/123\",\r\n \"2603:1020:1104:400::340/122\",\r\n
+ \ \"2603:1030:f:2::6e0/123\",\r\n \"2603:1030:f:400::b80/122\",\r\n
+ \ \"2603:1030:10:402::380/122\",\r\n \"2603:1030:10:802::260/123\",\r\n
+ \ \"2603:1030:10:802::280/123\",\r\n \"2603:1030:10:c02::260/123\",\r\n
+ \ \"2603:1030:10:c02::280/123\",\r\n \"2603:1030:104:402::380/122\",\r\n
+ \ \"2603:1030:107:1::220/123\",\r\n \"2603:1030:107:400::2c0/122\",\r\n
+ \ \"2603:1030:210:402::380/122\",\r\n \"2603:1030:210:802::260/123\",\r\n
+ \ \"2603:1030:210:802::280/123\",\r\n \"2603:1030:210:c02::260/123\",\r\n
+ \ \"2603:1030:210:c02::280/123\",\r\n \"2603:1030:40b:400::b80/122\",\r\n
+ \ \"2603:1030:40b:800::260/123\",\r\n \"2603:1030:40b:800::280/123\",\r\n
+ \ \"2603:1030:40b:c00::260/123\",\r\n \"2603:1030:40b:c00::280/123\",\r\n
+ \ \"2603:1030:40c:402::380/122\",\r\n \"2603:1030:40c:802::260/123\",\r\n
+ \ \"2603:1030:40c:802::280/123\",\r\n \"2603:1030:40c:c02::260/123\",\r\n
+ \ \"2603:1030:40c:c02::280/123\",\r\n \"2603:1030:504::500/123\",\r\n
+ \ \"2603:1030:504:402::200/122\",\r\n \"2603:1030:504:802::300/122\",\r\n
+ \ \"2603:1030:504:c02::2c0/122\",\r\n \"2603:1030:608:402::380/122\",\r\n
+ \ \"2603:1030:807:402::380/122\",\r\n \"2603:1030:807:802::260/123\",\r\n
+ \ \"2603:1030:807:802::280/123\",\r\n \"2603:1030:807:c02::260/123\",\r\n
+ \ \"2603:1030:807:c02::280/123\",\r\n \"2603:1030:a07:402::300/122\",\r\n
+ \ \"2603:1030:b04:402::380/122\",\r\n \"2603:1030:c06:400::b80/122\",\r\n
+ \ \"2603:1030:c06:802::260/123\",\r\n \"2603:1030:c06:802::280/123\",\r\n
+ \ \"2603:1030:c06:c02::260/123\",\r\n \"2603:1030:c06:c02::280/123\",\r\n
+ \ \"2603:1030:f05:402::380/122\",\r\n \"2603:1030:f05:802::260/123\",\r\n
+ \ \"2603:1030:f05:802::280/123\",\r\n \"2603:1030:f05:c02::260/123\",\r\n
+ \ \"2603:1030:f05:c02::280/123\",\r\n \"2603:1030:1005:402::380/122\",\r\n
+ \ \"2603:1040:5:402::380/122\",\r\n \"2603:1040:5:802::260/123\",\r\n
+ \ \"2603:1040:5:802::280/123\",\r\n \"2603:1040:5:c02::260/123\",\r\n
+ \ \"2603:1040:5:c02::280/123\",\r\n \"2603:1040:207:402::380/122\",\r\n
+ \ \"2603:1040:407:402::380/122\",\r\n \"2603:1040:407:802::260/123\",\r\n
+ \ \"2603:1040:407:802::280/123\",\r\n \"2603:1040:407:c02::260/123\",\r\n
+ \ \"2603:1040:407:c02::280/123\",\r\n \"2603:1040:606:402::380/122\",\r\n
+ \ \"2603:1040:806:402::380/122\",\r\n \"2603:1040:904:402::380/122\",\r\n
+ \ \"2603:1040:904:802::260/123\",\r\n \"2603:1040:904:802::280/123\",\r\n
+ \ \"2603:1040:904:c02::260/123\",\r\n \"2603:1040:904:c02::280/123\",\r\n
+ \ \"2603:1040:a06:402::380/122\",\r\n \"2603:1040:a06:802::260/123\",\r\n
+ \ \"2603:1040:a06:802::280/123\",\r\n \"2603:1040:a06:c02::260/123\",\r\n
+ \ \"2603:1040:a06:c02::280/123\",\r\n \"2603:1040:b04:402::380/122\",\r\n
+ \ \"2603:1040:c06:402::380/122\",\r\n \"2603:1040:d04:1::500/123\",\r\n
+ \ \"2603:1040:d04:400::200/122\",\r\n \"2603:1040:d04:800::300/122\",\r\n
+ \ \"2603:1040:d04:c02::2c0/122\",\r\n \"2603:1040:f05:2::240/123\",\r\n
+ \ \"2603:1040:f05:402::380/122\",\r\n \"2603:1040:f05:802::260/123\",\r\n
+ \ \"2603:1040:f05:802::280/123\",\r\n \"2603:1040:f05:c02::260/123\",\r\n
+ \ \"2603:1040:f05:c02::280/123\",\r\n \"2603:1040:1104:1::1e0/123\",\r\n
+ \ \"2603:1040:1104:400::340/122\",\r\n \"2603:1050:6:402::380/122\",\r\n
+ \ \"2603:1050:6:802::260/123\",\r\n \"2603:1050:6:802::280/123\",\r\n
+ \ \"2603:1050:6:c02::260/123\",\r\n \"2603:1050:6:c02::280/123\",\r\n
+ \ \"2603:1050:403:400::260/123\",\r\n \"2603:1050:403:400::280/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage\",\r\n
+ \ \"id\": \"Storage\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureStorage\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n \"13.65.160.16/28\",\r\n
+ \ \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.67.155.16/28\",\r\n
+ \ \"13.68.120.64/28\",\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.69.40.16/28\",\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.71.200.64/28\",\r\n \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n
+ \ \"13.71.202.16/28\",\r\n \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n
+ \ \"13.72.235.64/28\",\r\n \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n
+ \ \"13.72.237.48/28\",\r\n \"13.72.237.64/28\",\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n
+ \ \"13.74.208.144/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"13.76.104.16/28\",\r\n \"13.77.8.16/28\",\r\n
+ \ \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n \"13.77.8.96/28\",\r\n
+ \ \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n \"13.77.8.192/27\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"13.77.184.64/28\",\r\n \"13.78.152.64/28\",\r\n \"13.78.240.16/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n \"13.82.152.48/28\",\r\n
+ \ \"13.82.152.80/28\",\r\n \"13.83.72.16/28\",\r\n \"13.84.56.16/28\",\r\n
+ \ \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n \"13.87.40.64/28\",\r\n
+ \ \"13.87.40.96/28\",\r\n \"13.87.104.64/28\",\r\n \"13.87.104.96/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"13.95.96.176/28\",\r\n
+ \ \"13.95.240.16/28\",\r\n \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n
+ \ \"20.38.96.0/19\",\r\n \"20.47.0.0/18\",\r\n \"20.60.0.0/16\",\r\n
+ \ \"20.150.0.0/17\",\r\n \"20.157.32.0/19\",\r\n \"20.157.128.0/19\",\r\n
+ \ \"23.96.64.64/26\",\r\n \"23.97.112.64/26\",\r\n \"23.98.49.0/26\",\r\n
+ \ \"23.98.49.192/26\",\r\n \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n
+ \ \"23.98.55.144/28\",\r\n \"23.98.56.0/26\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.98.160.64/26\",\r\n \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n
+ \ \"23.98.192.64/26\",\r\n \"23.98.255.64/26\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"23.99.160.64/26\",\r\n \"23.99.160.192/28\",\r\n \"23.102.206.0/28\",\r\n
+ \ \"23.102.206.128/28\",\r\n \"23.102.206.192/28\",\r\n \"40.68.176.16/28\",\r\n
+ \ \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n \"40.68.232.48/28\",\r\n
+ \ \"40.69.176.16/28\",\r\n \"40.70.88.0/28\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.78.72.16/28\",\r\n
+ \ \"40.78.112.64/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.79.88.16/28\",\r\n \"40.83.24.16/28\",\r\n \"40.83.24.80/28\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.104.176/28\",\r\n \"40.83.104.208/28\",\r\n
+ \ \"40.83.225.32/28\",\r\n \"40.83.227.16/28\",\r\n \"40.84.8.32/28\",\r\n
+ \ \"40.84.11.80/28\",\r\n \"40.85.105.32/28\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"40.86.232.64/28\",\r\n
+ \ \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n \"40.86.232.176/28\",\r\n
+ \ \"40.86.232.192/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"40.113.27.176/28\",\r\n \"40.114.152.16/28\",\r\n
+ \ \"40.114.152.48/28\",\r\n \"40.115.169.32/28\",\r\n \"40.115.175.16/28\",\r\n
+ \ \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n \"40.115.229.16/28\",\r\n
+ \ \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n \"40.115.231.112/28\",\r\n
+ \ \"40.115.231.128/28\",\r\n \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n
+ \ \"40.116.232.48/28\",\r\n \"40.116.232.96/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"40.118.72.176/28\",\r\n
+ \ \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n \"40.118.73.208/28\",\r\n
+ \ \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"51.140.16.16/28\",\r\n \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n
+ \ \"51.140.168.112/28\",\r\n \"51.140.168.128/28\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/23\",\r\n \"51.141.130.0/25\",\r\n \"52.161.112.16/28\",\r\n
+ \ \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n \"52.161.168.32/28\",\r\n
+ \ \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n \"52.162.56.64/27\",\r\n
+ \ \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n \"52.163.176.16/28\",\r\n
+ \ \"52.163.232.16/28\",\r\n \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n
+ \ \"52.164.232.32/28\",\r\n \"52.164.232.64/28\",\r\n \"52.165.104.16/28\",\r\n
+ \ \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n \"52.165.104.112/28\",\r\n
+ \ \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n \"52.165.136.32/28\",\r\n
+ \ \"52.165.240.64/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n
+ \ \"52.167.240.16/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.171.144.32/27\",\r\n
+ \ \"52.171.144.80/28\",\r\n \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n
+ \ \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n \"52.174.224.32/28\",\r\n
+ \ \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n \"52.174.224.128/28\",\r\n
+ \ \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.177.208.80/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.179.24.16/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n \"52.182.176.32/28\",\r\n
+ \ \"52.182.176.64/27\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n
+ \ \"52.184.168.32/28\",\r\n \"52.184.168.96/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.80/28\",\r\n
+ \ \"52.185.112.112/28\",\r\n \"52.185.233.0/24\",\r\n \"52.186.112.32/27\",\r\n
+ \ \"52.187.141.32/27\",\r\n \"52.189.177.0/24\",\r\n \"52.190.240.16/28\",\r\n
+ \ \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n \"52.190.240.112/28\",\r\n
+ \ \"52.190.240.128/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.225.40.32/27\",\r\n \"52.225.136.16/28\",\r\n \"52.225.136.32/28\",\r\n
+ \ \"52.225.240.0/28\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.228.232.0/28\",\r\n
+ \ \"52.229.80.64/27\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n
+ \ \"52.231.80.128/28\",\r\n \"52.231.80.160/27\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.232.232.16/28\",\r\n \"52.232.232.32/28\",\r\n
+ \ \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n \"52.232.232.128/27\",\r\n
+ \ \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.236.40.16/28\",\r\n
+ \ \"52.236.40.32/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.238.56.16/28\",\r\n
+ \ \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n \"52.238.56.112/28\",\r\n
+ \ \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n \"52.238.200.32/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.128.0/20\",\r\n
+ \ \"52.239.144.0/22\",\r\n \"52.239.148.0/27\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.152.0/21\",\r\n \"52.239.160.0/22\",\r\n \"52.239.164.0/24\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/21\",\r\n \"52.239.176.128/25\",\r\n
+ \ \"52.239.177.0/24\",\r\n \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n
+ \ \"52.239.184.0/22\",\r\n \"52.239.188.0/23\",\r\n \"52.239.190.0/24\",\r\n
+ \ \"52.239.191.0/28\",\r\n \"52.239.192.0/21\",\r\n \"52.239.200.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.206.0/23\",\r\n \"52.239.208.0/20\",\r\n
+ \ \"52.239.224.0/19\",\r\n \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n
+ \ \"52.240.60.16/28\",\r\n \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n
+ \ \"52.241.88.16/28\",\r\n \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n
+ \ \"52.245.40.0/24\",\r\n \"104.41.232.16/28\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.46.31.16/28\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n
+ \ \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n \"104.211.104.128/28\",\r\n
+ \ \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n \"104.211.109.80/28\",\r\n
+ \ \"104.211.109.96/28\",\r\n \"104.211.168.16/28\",\r\n \"104.211.232.16/28\",\r\n
+ \ \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n \"104.211.232.176/28\",\r\n
+ \ \"104.214.40.16/28\",\r\n \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n
+ \ \"104.215.32.64/27\",\r\n \"104.215.35.32/27\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/25\",\r\n \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n
+ \ \"137.116.96.0/25\",\r\n \"137.116.96.128/26\",\r\n \"137.135.192.64/26\",\r\n
+ \ \"137.135.192.192/26\",\r\n \"137.135.193.192/26\",\r\n
+ \ \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.61.120.32/27\",\r\n
+ \ \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.62.0.0/26\",\r\n \"168.62.1.128/26\",\r\n \"168.62.32.0/26\",\r\n
+ \ \"168.62.32.192/26\",\r\n \"168.62.33.128/26\",\r\n \"168.62.96.128/25\",\r\n
+ \ \"168.62.128.128/26\",\r\n \"168.63.0.0/26\",\r\n \"168.63.2.64/26\",\r\n
+ \ \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n \"168.63.32.0/26\",\r\n
+ \ \"168.63.33.192/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"168.63.128.0/26\",\r\n
+ \ \"168.63.128.128/25\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n
+ \ \"168.63.130.128/26\",\r\n \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n
+ \ \"168.63.156.192/26\",\r\n \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n
+ \ \"168.63.161.64/26\",\r\n \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n
+ \ \"168.63.162.32/27\",\r\n \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n
+ \ \"168.63.162.192/26\",\r\n \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n
+ \ \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n \"191.232.221.32/28\",\r\n
+ \ \"191.233.128.0/24\",\r\n \"191.235.192.192/26\",\r\n \"191.235.193.32/28\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.192/26\",\r\n
+ \ \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n \"191.237.32.240/28\",\r\n
+ \ \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.237.232.32/28\",\r\n \"191.237.232.128/28\",\r\n
+ \ \"191.237.238.32/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\",\r\n
+ \ \"191.238.64.64/26\",\r\n \"191.238.64.192/28\",\r\n \"191.238.66.0/26\",\r\n
+ \ \"191.239.192.0/26\",\r\n \"191.239.203.0/28\",\r\n \"191.239.224.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.35.0/24\",\r\n \"20.150.124.0/24\",\r\n \"52.239.216.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral2\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.36.0/24\",\r\n \"20.150.103.0/24\",\r\n \"52.239.218.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaEast\",\r\n
+ \ \"id\": \"Storage.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.72.235.64/28\",\r\n
+ \ \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n \"13.72.237.48/28\",\r\n
+ \ \"13.72.237.64/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"20.38.112.0/23\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.150.66.0/24\",\r\n
+ \ \"20.150.92.0/24\",\r\n \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n \"104.46.31.16/28\",\r\n
+ \ \"191.238.66.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.AustraliaSoutheast\",\r\n \"id\": \"Storage.AustraliaSoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.8.16/28\",\r\n \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n
+ \ \"13.77.8.96/28\",\r\n \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n
+ \ \"13.77.8.192/27\",\r\n \"20.47.38.0/24\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n \"191.239.192.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.BrazilSouth\",\r\n
+ \ \"id\": \"Storage.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.60.36.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"23.97.112.64/26\",\r\n \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n
+ \ \"191.232.221.32/28\",\r\n \"191.233.128.0/24\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaCentral\",\r\n \"id\": \"Storage.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.0/25\",\r\n \"20.47.40.0/24\",\r\n \"20.60.42.0/23\",\r\n
+ \ \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.100.0/24\",\r\n \"20.157.52.0/24\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaEast\",\r\n \"id\": \"Storage.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.60.142.0/23\",\r\n
+ \ \"20.150.1.0/25\",\r\n \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"40.86.232.64/28\",\r\n \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n
+ \ \"40.86.232.176/28\",\r\n \"40.86.232.192/28\",\r\n \"52.229.80.64/27\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralIndia\",\r\n
+ \ \"id\": \"Storage.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.150.114.0/24\",\r\n \"52.239.135.64/26\",\r\n
+ \ \"52.239.202.0/24\",\r\n \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n
+ \ \"104.211.104.128/28\",\r\n \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n
+ \ \"104.211.109.80/28\",\r\n \"104.211.109.96/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUS\",\r\n \"id\":
+ \"Storage.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.67.155.16/28\",\r\n
+ \ \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n \"20.47.58.0/23\",\r\n
+ \ \"20.60.18.0/24\",\r\n \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n
+ \ \"20.60.194.0/23\",\r\n \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n
+ \ \"20.150.63.0/24\",\r\n \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.95.0/24\",\r\n \"20.157.34.0/23\",\r\n \"23.99.160.64/26\",\r\n
+ \ \"23.99.160.192/28\",\r\n \"40.69.176.16/28\",\r\n \"40.83.24.16/28\",\r\n
+ \ \"40.83.24.80/28\",\r\n \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n
+ \ \"52.165.104.16/28\",\r\n \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n
+ \ \"52.165.104.112/28\",\r\n \"52.165.136.32/28\",\r\n \"52.165.240.64/28\",\r\n
+ \ \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n
+ \ \"52.182.176.32/28\",\r\n \"52.182.176.64/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.112/28\",\r\n
+ \ \"52.228.232.0/28\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.238.200.32/27\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.177.32/27\",\r\n \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.234.0/23\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUSEUAP\",\r\n
+ \ \"id\": \"Storage.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.150.23.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n
+ \ \"52.185.112.80/28\",\r\n \"52.239.177.0/27\",\r\n \"52.239.238.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastAsia\",\r\n
+ \ \"id\": \"Storage.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.43.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"40.83.104.176/28\",\r\n
+ \ \"40.83.104.208/28\",\r\n \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n
+ \ \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n \"52.239.128.0/24\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"168.63.128.0/26\",\r\n \"168.63.128.128/25\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n \"168.63.130.128/26\",\r\n
+ \ \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n \"168.63.156.192/26\",\r\n
+ \ \"191.237.238.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS\",\r\n \"id\": \"Storage.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n
+ \ \"13.82.152.48/28\",\r\n \"13.82.152.80/28\",\r\n \"20.38.98.0/24\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.60.0.0/24\",\r\n \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.60.0/22\",\r\n \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.146.0/23\",\r\n \"20.150.32.0/23\",\r\n \"20.150.90.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"23.96.64.64/26\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"52.179.24.16/28\",\r\n
+ \ \"52.186.112.32/27\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.239.152.0/22\",\r\n
+ \ \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n \"52.239.214.0/23\",\r\n
+ \ \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.252.0/24\",\r\n
+ \ \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n \"52.240.60.16/28\",\r\n
+ \ \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"168.62.32.0/26\",\r\n \"168.62.32.192/26\",\r\n
+ \ \"168.62.33.128/26\",\r\n \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n
+ \ \"191.237.32.240/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastUS2\",\r\n
+ \ \"id\": \"Storage.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.68.120.64/28\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"20.38.100.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.60.56.0/22\",\r\n
+ \ \"20.60.132.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.150.29.0/24\",\r\n
+ \ \"20.150.36.0/24\",\r\n \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n
+ \ \"20.150.82.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n
+ \ \"20.157.48.0/23\",\r\n \"23.102.206.0/28\",\r\n \"23.102.206.128/28\",\r\n
+ \ \"23.102.206.192/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.84.8.32/28\",\r\n \"40.84.11.80/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n \"52.167.240.16/28\",\r\n
+ \ \"52.177.208.80/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.184.168.96/27\",\r\n \"52.225.136.16/28\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.240.0/28\",\r\n \"52.232.232.16/28\",\r\n
+ \ \"52.232.232.32/28\",\r\n \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n
+ \ \"52.232.232.128/27\",\r\n \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n
+ \ \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n
+ \ \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n \"52.239.184.0/25\",\r\n
+ \ \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.185.32/27\",\r\n
+ \ \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n \"52.239.192.96/27\",\r\n
+ \ \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n \"52.239.198.0/25\",\r\n
+ \ \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n \"52.239.207.32/28\",\r\n
+ \ \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/26\",\r\n \"137.116.2.96/29\",\r\n \"137.116.2.104/30\",\r\n
+ \ \"137.116.2.108/32\",\r\n \"137.116.2.110/31\",\r\n \"137.116.2.112/32\",\r\n
+ \ \"137.116.2.114/32\",\r\n \"137.116.2.116/30\",\r\n \"137.116.2.120/29\",\r\n
+ \ \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n \"137.116.96.0/25\",\r\n
+ \ \"137.116.96.128/26\",\r\n \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.239.224.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2EUAP\",\r\n \"id\": \"Storage.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.6.0/24\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.150.108.0/24\",\r\n \"40.70.88.0/30\",\r\n \"40.70.88.4/31\",\r\n
+ \ \"40.70.88.6/32\",\r\n \"40.70.88.8/31\",\r\n \"40.70.88.10/32\",\r\n
+ \ \"40.70.88.12/32\",\r\n \"40.70.88.14/31\",\r\n \"40.79.88.16/30\",\r\n
+ \ \"40.79.88.20/31\",\r\n \"40.79.88.22/32\",\r\n \"40.79.88.24/31\",\r\n
+ \ \"40.79.88.26/32\",\r\n \"40.79.88.28/32\",\r\n \"40.79.88.30/31\",\r\n
+ \ \"52.184.168.32/30\",\r\n \"52.184.168.36/31\",\r\n \"52.184.168.38/32\",\r\n
+ \ \"52.184.168.40/31\",\r\n \"52.184.168.42/32\",\r\n \"52.184.168.44/32\",\r\n
+ \ \"52.184.168.46/31\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2Stage\",\r\n \"id\": \"Storage.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.2.64/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceCentral\",\r\n \"id\": \"Storage.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.44.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"52.239.134.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.241.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceSouth\",\r\n \"id\": \"Storage.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.28.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.150.19.0/24\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyNorth\",\r\n
+ \ \"id\": \"Storage.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.115.0/24\",\r\n
+ \ \"20.47.45.0/24\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyWestCentral\",\r\n
+ \ \"id\": \"Storage.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.118.0/24\",\r\n \"20.47.27.0/24\",\r\n \"20.60.22.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.JapanEast\",\r\n \"id\":
+ \"Storage.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"20.38.116.0/23\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n
+ \ \"20.157.38.0/24\",\r\n \"23.98.57.64/26\",\r\n \"40.115.169.32/28\",\r\n
+ \ \"40.115.175.16/28\",\r\n \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n
+ \ \"40.115.229.16/28\",\r\n \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n
+ \ \"40.115.231.112/28\",\r\n \"40.115.231.128/28\",\r\n \"52.239.144.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.JapanWest\",\r\n
+ \ \"id\": \"Storage.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.10.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.157.56.0/24\",\r\n \"23.98.56.0/26\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n \"104.215.32.64/27\",\r\n
+ \ \"104.215.35.32/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaCentral\",\r\n \"id\": \"Storage.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.46.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n \"52.231.80.128/28\",\r\n
+ \ \"52.231.80.160/27\",\r\n \"52.239.148.0/27\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.190.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaSouth\",\r\n \"id\": \"Storage.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.47.0/24\",\r\n \"20.150.14.0/23\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n
+ \ \"52.239.190.192/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUS\",\r\n \"id\": \"Storage.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"23.98.49.0/26\",\r\n \"23.98.49.192/26\",\r\n
+ \ \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n \"23.98.55.144/28\",\r\n
+ \ \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n \"40.116.232.48/28\",\r\n
+ \ \"40.116.232.96/28\",\r\n \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n
+ \ \"52.162.56.64/27\",\r\n \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.62.96.128/26\",\r\n \"168.62.96.210/32\",\r\n
+ \ \"168.62.96.224/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUSStage\",\r\n \"id\": \"Storage.NorthCentralUSStage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"168.62.96.192/29\",\r\n \"168.62.96.200/30\",\r\n
+ \ \"168.62.96.204/32\",\r\n \"168.62.96.206/31\",\r\n \"168.62.96.208/32\",\r\n
+ \ \"168.62.96.212/30\",\r\n \"168.62.96.216/29\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorthEurope\",\r\n
+ \ \"id\": \"Storage.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n \"13.74.208.144/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.144.0/23\",\r\n \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n
+ \ \"20.150.48.0/24\",\r\n \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"40.85.105.32/28\",\r\n \"40.113.27.176/28\",\r\n
+ \ \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n \"52.164.232.32/28\",\r\n
+ \ \"52.164.232.64/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.236.40.16/28\",\r\n \"52.236.40.32/28\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/24\",\r\n
+ \ \"104.41.232.16/28\",\r\n \"137.135.192.64/26\",\r\n \"137.135.192.192/26\",\r\n
+ \ \"137.135.193.192/26\",\r\n \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n
+ \ \"168.61.120.32/27\",\r\n \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n
+ \ \"168.63.32.0/26\",\r\n \"168.63.33.192/26\",\r\n \"191.235.192.192/26\",\r\n
+ \ \"191.235.193.32/28\",\r\n \"191.235.255.192/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayEast\",\r\n
+ \ \"id\": \"Storage.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.120.0/24\",\r\n
+ \ \"20.47.48.0/24\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayWest\",\r\n
+ \ \"id\": \"Storage.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.150.0.0/24\",\r\n \"20.150.56.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Storage.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.128/25\",\r\n \"20.47.50.0/24\",\r\n \"20.60.190.0/23\",\r\n
+ \ \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.101.0/24\",\r\n
+ \ \"52.239.232.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthAfricaWest\",\r\n \"id\": \"Storage.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.0/25\",\r\n \"20.47.51.0/24\",\r\n \"20.60.8.0/24\",\r\n
+ \ \"20.150.20.0/25\",\r\n \"52.239.232.128/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.SouthCentralUS\",\r\n
+ \ \"id\": \"Storage.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n
+ \ \"13.65.160.16/28\",\r\n \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n
+ \ \"13.84.56.16/28\",\r\n \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n
+ \ \"20.38.104.0/23\",\r\n \"20.47.0.0/27\",\r\n \"20.47.24.0/23\",\r\n
+ \ \"20.47.29.0/24\",\r\n \"20.60.48.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n \"20.150.70.0/24\",\r\n
+ \ \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n \"23.98.160.64/26\",\r\n
+ \ \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n \"23.98.192.64/26\",\r\n
+ \ \"23.98.255.64/26\",\r\n \"52.171.144.32/27\",\r\n \"52.171.144.80/28\",\r\n
+ \ \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n \"52.185.233.0/24\",\r\n
+ \ \"52.189.177.0/24\",\r\n \"52.239.158.0/23\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n \"104.214.40.16/28\",\r\n
+ \ \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"168.62.128.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SoutheastAsia\",\r\n \"id\": \"Storage.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.76.104.16/28\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.150.17.128/25\",\r\n
+ \ \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n \"20.150.127.0/24\",\r\n
+ \ \"52.163.176.16/28\",\r\n \"52.163.232.16/28\",\r\n \"52.187.141.32/27\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.197.0/24\",\r\n \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n
+ \ \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n \"168.63.161.64/26\",\r\n
+ \ \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n \"168.63.162.32/27\",\r\n
+ \ \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n \"168.63.162.192/26\",\r\n
+ \ \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n \"191.238.64.64/26\",\r\n
+ \ \"191.238.64.192/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthIndia\",\r\n \"id\": \"Storage.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.52.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.150.24.0/24\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.239.135.128/26\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"104.211.232.16/28\",\r\n \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n
+ \ \"104.211.232.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandNorth\",\r\n \"id\": \"Storage.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.53.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n
+ \ \"52.239.251.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandWest\",\r\n \"id\": \"Storage.SwitzerlandWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.26.0/24\",\r\n \"20.60.176.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"52.239.250.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.UAECentral\",\r\n
+ \ \"id\": \"Storage.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"52.239.233.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UAENorth\",\r\n
+ \ \"id\": \"Storage.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.60.21.0/24\",\r\n \"52.239.233.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKSouth\",\r\n
+ \ \"id\": \"Storage.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.60.17.0/24\",\r\n
+ \ \"20.60.166.0/23\",\r\n \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.69.0/24\",\r\n \"51.140.16.16/28\",\r\n
+ \ \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n \"51.140.168.112/28\",\r\n
+ \ \"51.140.168.128/28\",\r\n \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"52.239.187.0/25\",\r\n \"52.239.231.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKWest\",\r\n
+ \ \"id\": \"Storage.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.56.0/24\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n
+ \ \"20.150.110.0/24\",\r\n \"20.157.46.0/24\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n \"51.141.128.128/25\",\r\n
+ \ \"51.141.129.128/26\",\r\n \"52.239.240.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestCentralUS\",\r\n
+ \ \"id\": \"Storage.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.71.200.64/28\",\r\n
+ \ \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n \"13.71.202.16/28\",\r\n
+ \ \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n \"13.78.152.64/28\",\r\n
+ \ \"13.78.240.16/28\",\r\n \"20.47.4.0/24\",\r\n \"20.60.4.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"52.161.112.16/28\",\r\n \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n
+ \ \"52.161.168.32/28\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.WestEurope\",\r\n \"id\": \"Storage.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.40.16/28\",\r\n \"13.95.96.176/28\",\r\n \"13.95.240.16/28\",\r\n
+ \ \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.60.26.0/23\",\r\n \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n
+ \ \"20.60.196.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"40.68.176.16/28\",\r\n \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n
+ \ \"40.68.232.48/28\",\r\n \"40.114.152.16/28\",\r\n \"40.114.152.48/28\",\r\n
+ \ \"40.118.72.176/28\",\r\n \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n
+ \ \"40.118.73.208/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n
+ \ \"52.174.224.32/28\",\r\n \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n
+ \ \"52.174.224.128/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.63.0.0/26\",\r\n
+ \ \"168.63.2.64/26\",\r\n \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"191.237.232.32/28\",\r\n
+ \ \"191.237.232.128/28\",\r\n \"191.239.203.0/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestIndia\",\r\n \"id\":
+ \"Storage.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n \"104.211.168.16/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS\",\r\n
+ \ \"id\": \"Storage.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.83.72.16/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.22.0/23\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n
+ \ \"20.157.32.0/24\",\r\n \"20.157.57.0/24\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"40.78.72.16/28\",\r\n \"40.78.112.64/28\",\r\n \"40.83.225.32/28\",\r\n
+ \ \"40.83.227.16/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.190.240.16/28\",\r\n \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n
+ \ \"52.190.240.112/28\",\r\n \"52.190.240.128/28\",\r\n \"52.225.40.32/27\",\r\n
+ \ \"52.238.56.16/28\",\r\n \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n
+ \ \"52.238.56.112/28\",\r\n \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n \"52.241.88.16/28\",\r\n
+ \ \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n \"168.62.0.0/26\",\r\n
+ \ \"168.62.1.128/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS2\",\r\n
+ \ \"id\": \"Storage.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.77.184.64/28\",\r\n
+ \ \"20.38.99.0/24\",\r\n \"20.47.62.0/23\",\r\n \"20.60.20.0/24\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n
+ \ \"52.239.210.0/23\",\r\n \"52.239.236.0/23\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"StorageSyncService\",\r\n
+ \ \"id\": \"StorageSyncService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.176.196/32\",\r\n \"13.73.248.112/29\",\r\n
+ \ \"13.75.153.240/32\",\r\n \"13.76.81.46/32\",\r\n \"20.36.120.216/29\",\r\n
+ \ \"20.37.64.216/29\",\r\n \"20.37.157.80/29\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"20.37.224.216/29\",\r\n \"20.38.85.152/29\",\r\n \"20.38.136.224/29\",\r\n
+ \ \"20.39.11.96/29\",\r\n \"20.41.5.144/29\",\r\n \"20.41.65.184/29\",\r\n
+ \ \"20.41.193.160/29\",\r\n \"20.42.4.248/29\",\r\n \"20.42.131.224/29\",\r\n
+ \ \"20.42.227.128/29\",\r\n \"20.43.42.8/29\",\r\n \"20.43.66.0/29\",\r\n
+ \ \"20.43.131.40/29\",\r\n \"20.45.71.151/32\",\r\n \"20.45.112.216/29\",\r\n
+ \ \"20.45.192.248/29\",\r\n \"20.45.208.0/29\",\r\n \"20.50.1.0/29\",\r\n
+ \ \"20.72.27.184/29\",\r\n \"20.150.172.40/29\",\r\n \"20.189.108.56/29\",\r\n
+ \ \"20.192.32.232/29\",\r\n \"20.193.205.128/29\",\r\n \"23.100.106.151/32\",\r\n
+ \ \"23.102.225.54/32\",\r\n \"40.67.48.208/29\",\r\n \"40.80.57.192/29\",\r\n
+ \ \"40.80.169.176/29\",\r\n \"40.80.188.24/29\",\r\n \"40.82.253.192/29\",\r\n
+ \ \"40.89.17.232/29\",\r\n \"40.112.150.67/32\",\r\n \"40.113.94.67/32\",\r\n
+ \ \"40.123.47.110/32\",\r\n \"40.123.216.130/32\",\r\n \"51.12.101.240/29\",\r\n
+ \ \"51.12.204.248/29\",\r\n \"51.104.25.224/29\",\r\n \"51.105.80.208/29\",\r\n
+ \ \"51.105.88.248/29\",\r\n \"51.107.48.224/29\",\r\n \"51.107.144.216/29\",\r\n
+ \ \"51.116.60.244/30\",\r\n \"51.116.245.168/30\",\r\n \"51.120.40.224/29\",\r\n
+ \ \"51.120.224.216/29\",\r\n \"51.137.161.240/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"51.140.202.34/32\",\r\n \"51.143.192.208/29\",\r\n \"52.136.48.216/29\",\r\n
+ \ \"52.136.131.99/32\",\r\n \"52.140.105.184/29\",\r\n \"52.143.166.54/32\",\r\n
+ \ \"52.150.139.104/29\",\r\n \"52.161.25.233/32\",\r\n \"52.176.149.179/32\",\r\n
+ \ \"52.183.27.204/32\",\r\n \"52.225.171.85/32\",\r\n \"52.228.42.41/32\",\r\n
+ \ \"52.228.81.248/29\",\r\n \"52.231.67.75/32\",\r\n \"52.231.159.38/32\",\r\n
+ \ \"52.235.36.119/32\",\r\n \"65.52.62.167/32\",\r\n \"102.133.56.128/29\",\r\n
+ \ \"102.133.75.173/32\",\r\n \"102.133.175.72/32\",\r\n \"104.40.191.8/32\",\r\n
+ \ \"104.41.148.238/32\",\r\n \"104.41.161.113/32\",\r\n \"104.208.61.223/32\",\r\n
+ \ \"104.210.219.252/32\",\r\n \"104.211.73.56/32\",\r\n \"104.211.231.18/32\",\r\n
+ \ \"191.233.9.96/29\",\r\n \"191.235.225.216/29\",\r\n \"191.237.253.115/32\",\r\n
+ \ \"2603:1000:4::340/123\",\r\n \"2603:1000:104:1::300/123\",\r\n
+ \ \"2603:1010:6:1::300/123\",\r\n \"2603:1010:101::340/123\",\r\n
+ \ \"2603:1010:304::340/123\",\r\n \"2603:1010:404::340/123\",\r\n
+ \ \"2603:1020:5:1::300/123\",\r\n \"2603:1020:206:1::300/123\",\r\n
+ \ \"2603:1020:305::340/123\",\r\n \"2603:1020:405::340/123\",\r\n
+ \ \"2603:1020:605::340/123\",\r\n \"2603:1020:705:1::300/123\",\r\n
+ \ \"2603:1020:805:1::300/123\",\r\n \"2603:1020:905::340/123\",\r\n
+ \ \"2603:1020:a04:1::300/123\",\r\n \"2603:1020:b04::340/123\",\r\n
+ \ \"2603:1020:c04:1::300/123\",\r\n \"2603:1020:d04::340/123\",\r\n
+ \ \"2603:1020:e04:1::300/123\",\r\n \"2603:1020:e04:802::2a0/123\",\r\n
+ \ \"2603:1020:f04::340/123\",\r\n \"2603:1020:1004::300/123\",\r\n
+ \ \"2603:1020:1004:800::120/123\",\r\n \"2603:1020:1104:400::320/123\",\r\n
+ \ \"2603:1030:f:1::340/123\",\r\n \"2603:1030:f:400::dc0/123\",\r\n
+ \ \"2603:1030:10:1::300/123\",\r\n \"2603:1030:104:1::300/123\",\r\n
+ \ \"2603:1030:107:400::2a0/123\",\r\n \"2603:1030:210:1::300/123\",\r\n
+ \ \"2603:1030:40b:1::300/123\",\r\n \"2603:1030:40c:1::300/123\",\r\n
+ \ \"2603:1030:504:1::300/123\",\r\n \"2603:1030:504:802::120/123\",\r\n
+ \ \"2603:1030:608::340/123\",\r\n \"2603:1030:807:1::300/123\",\r\n
+ \ \"2603:1030:a07::340/123\",\r\n \"2603:1030:b04::340/123\",\r\n
+ \ \"2603:1030:c06:1::300/123\",\r\n \"2603:1030:f05:1::300/123\",\r\n
+ \ \"2603:1030:1005::340/123\",\r\n \"2603:1040:5:1::300/123\",\r\n
+ \ \"2603:1040:207::340/123\",\r\n \"2603:1040:407:1::300/123\",\r\n
+ \ \"2603:1040:606::340/123\",\r\n \"2603:1040:806::340/123\",\r\n
+ \ \"2603:1040:904:1::300/123\",\r\n \"2603:1040:a06:1::300/123\",\r\n
+ \ \"2603:1040:b04::340/123\",\r\n \"2603:1040:c06::340/123\",\r\n
+ \ \"2603:1040:d04::300/123\",\r\n \"2603:1040:d04:800::120/123\",\r\n
+ \ \"2603:1040:f05:1::300/123\",\r\n \"2603:1040:f05:802::2a0/123\",\r\n
+ \ \"2603:1040:1104:400::320/123\",\r\n \"2603:1050:6:1::300/123\",\r\n
+ \ \"2603:1050:6:802::2a0/123\",\r\n \"2603:1050:403::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.216/29\",\r\n \"2603:1010:304::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral2\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.216/29\",\r\n \"2603:1010:404::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaEast\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.153.240/32\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"2603:1010:6:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.CanadaEast\",\r\n \"id\":
+ \"StorageSyncService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.89.17.232/29\",\r\n \"52.235.36.119/32\",\r\n
+ \ \"2603:1030:1005::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.EastUS2\",\r\n \"id\":
+ \"StorageSyncService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.144/29\",\r\n \"40.123.47.110/32\",\r\n
+ \ \"2603:1030:40c:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.FranceSouth\",\r\n \"id\":
+ \"StorageSyncService.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.88.248/29\",\r\n \"52.136.131.99/32\",\r\n
+ \ \"2603:1020:905::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.SouthAfricaWest\",\r\n \"id\":
+ \"StorageSyncService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.56.128/29\",\r\n \"102.133.75.173/32\",\r\n
+ \ \"2603:1000:4::340/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"StorageSyncService.SouthIndia\",\r\n \"id\": \"StorageSyncService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"StorageSyncService\",\r\n \"addressPrefixes\": [\r\n \"20.41.193.160/29\",\r\n
+ \ \"104.211.231.18/32\",\r\n \"2603:1040:c06::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.SwitzerlandWest\",\r\n
+ \ \"id\": \"StorageSyncService.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.216/29\",\r\n \"2603:1020:b04::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.UKSouth\",\r\n
+ \ \"id\": \"StorageSyncService.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.25.224/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"2603:1020:705:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"WindowsVirtualDesktop\",\r\n \"id\": \"WindowsVirtualDesktop\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.251.49/32\",\r\n \"13.67.68.78/32\",\r\n \"13.68.76.104/32\",\r\n
+ \ \"13.69.82.138/32\",\r\n \"13.69.156.85/32\",\r\n \"13.70.40.201/32\",\r\n
+ \ \"13.70.120.215/32\",\r\n \"13.71.5.20/32\",\r\n \"13.71.67.87/32\",\r\n
+ \ \"13.71.81.161/32\",\r\n \"13.71.113.6/32\",\r\n \"13.73.237.154/32\",\r\n
+ \ \"13.75.114.143/32\",\r\n \"13.75.171.61/32\",\r\n \"13.75.198.169/32\",\r\n
+ \ \"13.76.88.89/32\",\r\n \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n
+ \ \"13.77.45.213/32\",\r\n \"13.77.140.58/32\",\r\n \"13.79.243.194/32\",\r\n
+ \ \"13.88.221.28/32\",\r\n \"13.88.254.98/32\",\r\n \"20.36.33.29/32\",\r\n
+ \ \"20.36.33.170/32\",\r\n \"20.36.35.190/32\",\r\n \"20.36.38.195/32\",\r\n
+ \ \"20.36.39.50/32\",\r\n \"20.36.39.171/32\",\r\n \"20.36.41.74/32\",\r\n
+ \ \"20.41.77.252/32\",\r\n \"20.45.64.86/32\",\r\n \"20.45.67.112/32\",\r\n
+ \ \"20.45.67.185/32\",\r\n \"20.45.79.3/32\",\r\n \"20.45.79.24/32\",\r\n
+ \ \"20.45.79.91/32\",\r\n \"20.45.79.96/32\",\r\n \"20.45.79.168/32\",\r\n
+ \ \"20.46.45.161/32\",\r\n \"20.46.46.252/32\",\r\n \"20.188.3.1/32\",\r\n
+ \ \"20.188.39.108/32\",\r\n \"20.188.41.240/32\",\r\n \"20.188.45.82/32\",\r\n
+ \ \"20.190.43.99/32\",\r\n \"23.97.108.170/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"23.98.133.187/32\",\r\n \"23.99.141.138/32\",\r\n \"23.100.50.154/32\",\r\n
+ \ \"23.100.98.36/32\",\r\n \"23.101.5.54/32\",\r\n \"23.101.220.135/32\",\r\n
+ \ \"23.102.229.113/32\",\r\n \"40.65.122.222/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.69.31.73/32\",\r\n \"40.69.90.166/32\",\r\n \"40.69.102.46/32\",\r\n
+ \ \"40.69.149.151/32\",\r\n \"40.70.189.87/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"40.75.30.117/32\",\r\n \"40.80.80.48/32\",\r\n \"40.83.79.39/32\",\r\n
+ \ \"40.85.241.159/32\",\r\n \"40.86.204.245/32\",\r\n \"40.86.205.216/32\",\r\n
+ \ \"40.86.208.118/32\",\r\n \"40.86.222.183/32\",\r\n \"40.89.129.146/32\",\r\n
+ \ \"40.89.154.76/32\",\r\n \"40.113.199.138/32\",\r\n \"40.113.200.58/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"40.115.136.175/32\",\r\n \"40.119.163.43/32\",\r\n
+ \ \"40.119.167.95/32\",\r\n \"40.120.39.124/32\",\r\n \"40.122.28.196/32\",\r\n
+ \ \"40.122.212.20/32\",\r\n \"40.123.228.58/32\",\r\n \"40.123.230.81/32\",\r\n
+ \ \"40.123.230.179/32\",\r\n \"40.123.230.249/32\",\r\n \"40.127.3.207/32\",\r\n
+ \ \"51.11.13.248/32\",\r\n \"51.11.241.142/32\",\r\n \"51.104.49.88/32\",\r\n
+ \ \"51.105.54.123/32\",\r\n \"51.107.68.172/32\",\r\n \"51.107.69.35/32\",\r\n
+ \ \"51.107.78.168/32\",\r\n \"51.107.85.67/32\",\r\n \"51.107.85.110/32\",\r\n
+ \ \"51.107.86.7/32\",\r\n \"51.107.86.99/32\",\r\n \"51.116.171.102/32\",\r\n
+ \ \"51.116.182.248/32\",\r\n \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n
+ \ \"51.116.225.55/32\",\r\n \"51.116.236.74/32\",\r\n \"51.116.236.84/32\",\r\n
+ \ \"51.120.69.158/32\",\r\n \"51.120.70.135/32\",\r\n \"51.120.70.141/32\",\r\n
+ \ \"51.120.77.155/32\",\r\n \"51.120.78.142/32\",\r\n \"51.120.79.212/32\",\r\n
+ \ \"51.120.88.120/32\",\r\n \"51.132.29.107/32\",\r\n \"51.136.28.200/32\",\r\n
+ \ \"51.137.89.79/32\",\r\n \"51.140.57.159/32\",\r\n \"51.140.206.110/32\",\r\n
+ \ \"51.140.231.223/32\",\r\n \"51.140.255.55/32\",\r\n \"51.141.30.31/32\",\r\n
+ \ \"51.141.122.89/32\",\r\n \"51.141.173.236/32\",\r\n \"51.143.39.79/32\",\r\n
+ \ \"51.143.164.192/32\",\r\n \"51.143.169.107/32\",\r\n \"51.145.17.75/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"52.138.20.115/32\",\r\n \"52.138.28.23/32\",\r\n
+ \ \"52.141.37.201/32\",\r\n \"52.141.56.101/32\",\r\n \"52.142.161.0/32\",\r\n
+ \ \"52.142.162.226/32\",\r\n \"52.143.96.87/32\",\r\n \"52.143.182.208/32\",\r\n
+ \ \"52.147.3.93/32\",\r\n \"52.147.160.158/32\",\r\n \"52.151.53.196/32\",\r\n
+ \ \"52.155.111.124/32\",\r\n \"52.156.171.127/32\",\r\n \"52.163.209.255/32\",\r\n
+ \ \"52.164.126.124/32\",\r\n \"52.165.218.15/32\",\r\n \"52.167.163.135/32\",\r\n
+ \ \"52.167.171.53/32\",\r\n \"52.169.5.116/32\",\r\n \"52.171.36.33/32\",\r\n
+ \ \"52.172.34.74/32\",\r\n \"52.172.40.215/32\",\r\n \"52.172.133.5/32\",\r\n
+ \ \"52.172.194.109/32\",\r\n \"52.172.210.235/32\",\r\n \"52.172.217.34/32\",\r\n
+ \ \"52.172.223.46/32\",\r\n \"52.173.89.168/32\",\r\n \"52.175.144.120/32\",\r\n
+ \ \"52.175.253.156/32\",\r\n \"52.177.123.162/32\",\r\n \"52.177.172.247/32\",\r\n
+ \ \"52.183.19.64/32\",\r\n \"52.183.130.137/32\",\r\n \"52.185.202.152/32\",\r\n
+ \ \"52.187.127.152/32\",\r\n \"52.189.194.14/32\",\r\n \"52.189.215.151/32\",\r\n
+ \ \"52.189.233.158/32\",\r\n \"52.191.129.231/32\",\r\n \"52.228.29.164/32\",\r\n
+ \ \"52.229.117.254/32\",\r\n \"52.229.125.45/32\",\r\n \"52.229.207.180/32\",\r\n
+ \ \"52.231.13.193/32\",\r\n \"52.231.38.211/32\",\r\n \"52.231.93.224/32\",\r\n
+ \ \"52.231.98.58/32\",\r\n \"52.231.155.130/32\",\r\n \"52.231.156.19/32\",\r\n
+ \ \"52.231.164.163/32\",\r\n \"52.231.166.199/32\",\r\n \"52.231.195.7/32\",\r\n
+ \ \"52.231.197.195/32\",\r\n \"52.231.206.162/32\",\r\n \"52.233.16.198/32\",\r\n
+ \ \"52.237.20.14/32\",\r\n \"52.237.201.246/32\",\r\n \"52.237.253.245/32\",\r\n
+ \ \"52.242.86.101/32\",\r\n \"52.243.65.107/32\",\r\n \"52.243.74.213/32\",\r\n
+ \ \"52.246.165.140/32\",\r\n \"52.246.177.221/32\",\r\n \"52.246.191.98/32\",\r\n
+ \ \"52.247.122.225/32\",\r\n \"52.247.123.0/32\",\r\n \"52.255.40.105/32\",\r\n
+ \ \"52.255.61.145/32\",\r\n \"65.52.71.120/32\",\r\n \"65.52.158.177/32\",\r\n
+ \ \"70.37.83.67/32\",\r\n \"70.37.86.126/32\",\r\n \"70.37.99.24/32\",\r\n
+ \ \"102.37.42.159/32\",\r\n \"102.133.64.36/32\",\r\n \"102.133.64.68/32\",\r\n
+ \ \"102.133.64.91/32\",\r\n \"102.133.64.111/32\",\r\n \"102.133.72.250/32\",\r\n
+ \ \"102.133.75.8/32\",\r\n \"102.133.75.32/32\",\r\n \"102.133.75.35/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\",\r\n
+ \ \"104.40.156.194/32\",\r\n \"104.41.45.182/32\",\r\n \"104.41.166.159/32\",\r\n
+ \ \"104.43.169.4/32\",\r\n \"104.46.237.209/32\",\r\n \"104.208.28.82/32\",\r\n
+ \ \"104.209.233.222/32\",\r\n \"104.210.150.160/32\",\r\n
+ \ \"104.211.78.17/32\",\r\n \"104.211.114.61/32\",\r\n \"104.211.138.88/32\",\r\n
+ \ \"104.211.140.190/32\",\r\n \"104.211.155.114/32\",\r\n
+ \ \"104.211.165.123/32\",\r\n \"104.211.184.150/32\",\r\n
+ \ \"104.211.188.151/32\",\r\n \"104.211.211.213/32\",\r\n
+ \ \"104.211.216.230/32\",\r\n \"104.211.242.104/32\",\r\n
+ \ \"104.214.60.144/32\",\r\n \"104.214.237.23/32\",\r\n \"104.215.51.3/32\",\r\n
+ \ \"104.215.103.51/32\",\r\n \"104.215.112.85/32\",\r\n \"137.116.49.12/32\",\r\n
+ \ \"137.116.248.148/32\",\r\n \"137.117.171.26/32\",\r\n
+ \ \"137.135.243.65/32\",\r\n \"138.91.44.13/32\",\r\n \"168.61.167.193/32\",\r\n
+ \ \"168.63.31.54/32\",\r\n \"168.63.71.119/32\",\r\n \"168.63.137.213/32\",\r\n
+ \ \"191.232.49.74/32\",\r\n \"191.232.166.149/32\",\r\n \"191.232.235.70/32\",\r\n
+ \ \"191.232.238.73/32\",\r\n \"191.234.191.63/32\",\r\n \"191.235.65.127/32\",\r\n
+ \ \"191.235.73.211/32\",\r\n \"191.235.78.126/32\",\r\n \"191.239.248.16/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.171.102/32\",\r\n \"51.116.182.248/32\",\r\n
+ \ \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n \"51.116.225.55/32\",\r\n
+ \ \"51.116.236.74/32\",\r\n \"51.116.236.84/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.JapanWest\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.237.154/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"52.175.144.120/32\",\r\n \"104.46.237.209/32\",\r\n \"104.215.51.3/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.127.3.207/32\",\r\n \"102.37.42.159/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.68.78/32\",\r\n \"13.76.88.89/32\",\r\n
+ \ \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"52.163.209.255/32\",\r\n \"52.187.127.152/32\",\r\n \"138.91.44.13/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.WestEurope\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.82.138/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"51.136.28.200/32\",\r\n \"51.137.89.79/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"65.52.158.177/32\",\r\n \"104.40.156.194/32\",\r\n
+ \ \"104.214.237.23/32\",\r\n \"137.117.171.26/32\",\r\n \"168.63.31.54/32\"\r\n
+ \ ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1580866'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 08:51:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 875d2940-829b-462a-b61a-3e72306d04ec
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction remove
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --service-tag
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"East
+ US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOTNETCORE|3.1","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"AzureFrontDoor.Backend","action":"Allow","tag":"ServiceTag","priority":200,"name":"afd","headers":{"x-azure-fdid":["12345678-abcd-1234-abcd-12345678910a"]}},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3918'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm",
+ "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx",
+ "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion":
+ "", "pythonVersion": "", "nodeVersion": "", "powerShellVersion": "", "linuxFxVersion":
+ "DOTNETCORE|3.1", "requestTracingEnabled": false, "remoteDebuggingEnabled":
+ false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit":
+ 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$cli-webapp-nwr000002",
+ "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false,
+ "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated",
+ "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot",
+ "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments":
+ {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "vnetRouteAllEnabled":
+ false, "vnetPrivatePortsCount": 0, "localMySqlEnabled": false, "ipSecurityRestrictions":
+ [{"ipAddress": "Any", "action": "Deny", "priority": 2147483647, "name": "Deny
+ all", "description": "Deny all access"}], "scmIpSecurityRestrictions": [{"ipAddress":
+ "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description":
+ "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled":
+ true, "minTlsVersion": "1.2", "scmMinTlsVersion": "1.0", "ftpsState": "AllAllowed",
+ "preWarmedInstanceCount": 0}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction remove
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1519'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --service-tag
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"East
+ US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOTNETCORE|3.1","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3723'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:45 GMT
+ etag:
+ - '"1D7310B637BA08B"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1196'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app,linux","location":"East
+ US 2","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-EastUS2webspace-Linux","selfLink":"https://waws-prod-bn1-081.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-EastUS2webspace-Linux/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"DOTNETCORE|3.1"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:51:46.17","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app,linux","inboundIpAddress":"20.49.97.4","possibleInboundIpAddresses":"20.49.97.4","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-bn1-081.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.177.39.2,52.232.208.24,52.232.209.56,52.232.212.180,52.167.13.214,52.232.212.233,20.49.97.4","possibleOutboundIpAddresses":"52.177.39.2,52.232.208.24,52.232.209.56,52.232.212.180,52.167.13.214,52.232.212.233,52.232.213.56,52.232.213.85,52.232.213.90,52.232.213.100,52.232.213.122,52.232.208.182,52.247.76.89,52.247.76.111,52.247.76.163,52.247.76.166,52.247.76.170,52.247.76.201,20.49.97.4","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-081","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6189'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:46 GMT
+ etag:
+ - '"1D7310B6650EDA0"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/East%20US%202/serviceTags?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"Public\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/serviceTags/Public\",\r\n
+ \ \"type\": \"Microsoft.Network/serviceTags\",\r\n \"changeNumber\": \"71\",\r\n
+ \ \"cloud\": \"Public\",\r\n \"values\": [\r\n {\r\n \"name\": \"ActionGroup\",\r\n
+ \ \"id\": \"ActionGroup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.60.119/32\",\r\n \"13.66.143.220/30\",\r\n
+ \ \"13.66.202.14/32\",\r\n \"13.66.248.225/32\",\r\n \"13.66.249.211/32\",\r\n
+ \ \"13.67.10.124/30\",\r\n \"13.69.109.132/30\",\r\n \"13.71.199.112/30\",\r\n
+ \ \"13.77.53.216/30\",\r\n \"13.77.172.102/32\",\r\n \"13.77.183.209/32\",\r\n
+ \ \"13.78.109.156/30\",\r\n \"13.84.49.247/32\",\r\n \"13.84.51.172/32\",\r\n
+ \ \"13.84.52.58/32\",\r\n \"13.86.221.220/30\",\r\n \"13.106.38.142/32\",\r\n
+ \ \"13.106.38.148/32\",\r\n \"13.106.54.3/32\",\r\n \"13.106.54.19/32\",\r\n
+ \ \"13.106.57.181/32\",\r\n \"13.106.57.196/31\",\r\n \"20.38.149.132/30\",\r\n
+ \ \"20.42.64.36/30\",\r\n \"20.43.121.124/30\",\r\n \"20.44.17.220/30\",\r\n
+ \ \"20.45.123.236/30\",\r\n \"20.72.27.152/30\",\r\n \"20.150.172.228/30\",\r\n
+ \ \"20.192.238.124/30\",\r\n \"20.193.202.4/30\",\r\n \"40.68.195.137/32\",\r\n
+ \ \"40.68.201.58/32\",\r\n \"40.68.201.65/32\",\r\n \"40.68.201.206/32\",\r\n
+ \ \"40.68.201.211/32\",\r\n \"40.68.204.18/32\",\r\n \"40.115.37.106/32\",\r\n
+ \ \"40.121.219.215/32\",\r\n \"40.121.221.62/32\",\r\n \"40.121.222.201/32\",\r\n
+ \ \"40.121.223.186/32\",\r\n \"51.12.101.172/30\",\r\n \"51.12.204.244/30\",\r\n
+ \ \"51.104.9.100/30\",\r\n \"52.183.20.244/32\",\r\n \"52.183.31.0/32\",\r\n
+ \ \"52.183.94.59/32\",\r\n \"52.184.145.166/32\",\r\n \"168.61.142.52/30\",\r\n
+ \ \"191.233.50.4/30\",\r\n \"191.233.207.64/26\",\r\n \"2603:1000:4:402::178/125\",\r\n
+ \ \"2603:1000:104:402::178/125\",\r\n \"2603:1010:6:402::178/125\",\r\n
+ \ \"2603:1010:101:402::178/125\",\r\n \"2603:1010:304:402::178/125\",\r\n
+ \ \"2603:1010:404:402::178/125\",\r\n \"2603:1020:5:402::178/125\",\r\n
+ \ \"2603:1020:206:402::178/125\",\r\n \"2603:1020:305:402::178/125\",\r\n
+ \ \"2603:1020:405:402::178/125\",\r\n \"2603:1020:605:402::178/125\",\r\n
+ \ \"2603:1020:705:402::178/125\",\r\n \"2603:1020:805:402::178/125\",\r\n
+ \ \"2603:1020:905:402::178/125\",\r\n \"2603:1020:a04:402::178/125\",\r\n
+ \ \"2603:1020:b04:402::178/125\",\r\n \"2603:1020:c04:402::178/125\",\r\n
+ \ \"2603:1020:d04:402::178/125\",\r\n \"2603:1020:e04:402::178/125\",\r\n
+ \ \"2603:1020:f04:402::178/125\",\r\n \"2603:1020:1004:800::f8/125\",\r\n
+ \ \"2603:1020:1104:400::178/125\",\r\n \"2603:1030:f:400::978/125\",\r\n
+ \ \"2603:1030:10:402::178/125\",\r\n \"2603:1030:104:402::178/125\",\r\n
+ \ \"2603:1030:107:400::f0/125\",\r\n \"2603:1030:210:402::178/125\",\r\n
+ \ \"2603:1030:40b:400::978/125\",\r\n \"2603:1030:40c:402::178/125\",\r\n
+ \ \"2603:1030:504:802::f8/125\",\r\n \"2603:1030:608:402::178/125\",\r\n
+ \ \"2603:1030:807:402::178/125\",\r\n \"2603:1030:a07:402::8f8/125\",\r\n
+ \ \"2603:1030:b04:402::178/125\",\r\n \"2603:1030:c06:400::978/125\",\r\n
+ \ \"2603:1030:f05:402::178/125\",\r\n \"2603:1030:1005:402::178/125\",\r\n
+ \ \"2603:1040:5:402::178/125\",\r\n \"2603:1040:207:402::178/125\",\r\n
+ \ \"2603:1040:407:402::178/125\",\r\n \"2603:1040:606:402::178/125\",\r\n
+ \ \"2603:1040:806:402::178/125\",\r\n \"2603:1040:904:402::178/125\",\r\n
+ \ \"2603:1040:a06:402::178/125\",\r\n \"2603:1040:b04:402::178/125\",\r\n
+ \ \"2603:1040:c06:402::178/125\",\r\n \"2603:1040:d04:800::f8/125\",\r\n
+ \ \"2603:1040:f05:402::178/125\",\r\n \"2603:1040:1104:400::178/125\",\r\n
+ \ \"2603:1050:6:402::178/125\",\r\n \"2603:1050:403:400::1f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:304:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral2\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:404:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaEast\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:6:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CanadaEast\",\r\n
+ \ \"id\": \"ActionGroup.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:1005:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUS\",\r\n
+ \ \"id\": \"ActionGroup.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:10:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUSEUAP\",\r\n
+ \ \"id\": \"ActionGroup.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"168.61.142.52/30\",\r\n
+ \ \"2603:1030:f:400::978/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastAsia\",\r\n \"id\": \"ActionGroup.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1040:207:402::178/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.EastUS2\",\r\n \"id\":
+ \"ActionGroup.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.17.220/30\",\r\n \"52.184.145.166/32\",\r\n
+ \ \"2603:1030:40c:402::178/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastUS2EUAP\",\r\n \"id\": \"ActionGroup.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1030:40b:400::978/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.FranceCentral\",\r\n \"id\":
+ \"ActionGroup.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:805:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.FranceSouth\",\r\n
+ \ \"id\": \"ActionGroup.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:905:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyNorth\",\r\n
+ \ \"id\": \"ActionGroup.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyWestCentral\",\r\n
+ \ \"id\": \"ActionGroup.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:c04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.JapanWest\",\r\n
+ \ \"id\": \"ActionGroup.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:606:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.KoreaCentral\",\r\n
+ \ \"id\": \"ActionGroup.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1040:f05:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorthEurope\",\r\n
+ \ \"id\": \"ActionGroup.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:5:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayEast\",\r\n
+ \ \"id\": \"ActionGroup.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:e04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayWest\",\r\n
+ \ \"id\": \"ActionGroup.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:f04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaNorth\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:104:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaWest\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthIndia\",\r\n
+ \ \"id\": \"ActionGroup.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:c06:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:a04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandWest\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAECentral\",\r\n
+ \ \"id\": \"ActionGroup.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAENorth\",\r\n
+ \ \"id\": \"ActionGroup.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:904:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKNorth\",\r\n
+ \ \"id\": \"ActionGroup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:305:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKSouth2\",\r\n
+ \ \"id\": \"ActionGroup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:405:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKWest\",\r\n
+ \ \"id\": \"ActionGroup.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:605:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestIndia\",\r\n
+ \ \"id\": \"ActionGroup.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:806:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestUS\",\r\n
+ \ \"id\": \"ActionGroup.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.221.220/30\",\r\n \"2603:1030:a07:402::8f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement\",\r\n
+ \ \"id\": \"ApiManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.39.16/32\",\r\n \"13.66.138.92/31\",\r\n \"13.66.140.176/28\",\r\n
+ \ \"13.67.8.108/31\",\r\n \"13.67.9.208/28\",\r\n \"13.69.64.76/31\",\r\n
+ \ \"13.69.66.144/28\",\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.71.49.1/32\",\r\n
+ \ \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n \"13.71.194.116/31\",\r\n
+ \ \"13.71.196.32/28\",\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n
+ \ \"13.75.217.184/32\",\r\n \"13.75.221.78/32\",\r\n \"13.77.50.68/31\",\r\n
+ \ \"13.77.52.224/28\",\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"13.86.102.66/32\",\r\n
+ \ \"13.87.56.84/31\",\r\n \"13.87.57.144/28\",\r\n \"13.87.122.84/31\",\r\n
+ \ \"13.87.123.144/28\",\r\n \"13.89.170.204/31\",\r\n \"13.89.174.64/28\",\r\n
+ \ \"20.36.106.68/31\",\r\n \"20.36.107.176/28\",\r\n \"20.36.114.20/31\",\r\n
+ \ \"20.36.115.128/28\",\r\n \"20.37.52.67/32\",\r\n \"20.37.74.224/31\",\r\n
+ \ \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n \"20.39.80.2/32\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"20.40.125.155/32\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"20.44.2.4/31\",\r\n \"20.44.3.224/28\",\r\n \"20.44.33.246/32\",\r\n
+ \ \"20.44.72.3/32\",\r\n \"20.46.13.224/28\",\r\n \"20.46.144.85/32\",\r\n
+ \ \"20.72.26.16/28\",\r\n \"20.150.167.160/28\",\r\n \"20.150.170.224/28\",\r\n
+ \ \"20.188.77.119/32\",\r\n \"20.192.50.64/28\",\r\n \"20.192.234.160/28\",\r\n
+ \ \"20.193.192.48/28\",\r\n \"20.193.202.160/28\",\r\n \"20.194.74.240/28\",\r\n
+ \ \"23.96.224.175/32\",\r\n \"23.101.67.140/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.66.60.111/32\",\r\n \"40.67.58.224/28\",\r\n \"40.69.106.68/31\",\r\n
+ \ \"40.69.107.224/28\",\r\n \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n
+ \ \"40.71.10.204/31\",\r\n \"40.71.13.128/28\",\r\n \"40.74.100.52/31\",\r\n
+ \ \"40.74.101.48/28\",\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"40.78.194.68/31\",\r\n \"40.78.195.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"40.79.130.44/31\",\r\n \"40.79.131.192/28\",\r\n
+ \ \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n \"40.80.232.185/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"40.81.89.24/32\",\r\n \"40.81.185.8/32\",\r\n
+ \ \"40.82.157.167/32\",\r\n \"40.90.185.46/32\",\r\n \"40.112.242.148/31\",\r\n
+ \ \"40.112.243.240/28\",\r\n \"51.12.17.0/28\",\r\n \"51.12.25.16/28\",\r\n
+ \ \"51.12.98.224/28\",\r\n \"51.12.202.224/28\",\r\n \"51.107.0.91/32\",\r\n
+ \ \"51.107.59.0/28\",\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n
+ \ \"51.116.0.0/32\",\r\n \"51.116.59.0/28\",\r\n \"51.116.96.0/32\",\r\n
+ \ \"51.116.155.64/28\",\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n \"51.120.234.240/28\",\r\n
+ \ \"51.137.136.0/32\",\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"51.143.127.203/32\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"51.145.179.78/32\",\r\n \"52.139.20.34/32\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"52.139.152.27/32\",\r\n \"52.140.238.179/32\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"52.224.186.99/32\",\r\n \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n
+ \ \"52.231.146.84/31\",\r\n \"52.231.147.176/28\",\r\n \"52.253.135.58/32\",\r\n
+ \ \"52.253.159.160/32\",\r\n \"52.253.229.253/32\",\r\n \"65.52.164.91/32\",\r\n
+ \ \"65.52.173.247/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n \"102.133.28.0/28\",\r\n
+ \ \"102.133.130.197/32\",\r\n \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n
+ \ \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n \"104.211.81.28/31\",\r\n
+ \ \"104.211.81.240/28\",\r\n \"104.211.146.68/31\",\r\n \"104.211.147.144/28\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"137.117.160.56/32\",\r\n
+ \ \"191.232.18.181/32\",\r\n \"191.233.24.179/32\",\r\n \"191.233.50.192/28\",\r\n
+ \ \"191.233.203.28/31\",\r\n \"191.233.203.240/28\",\r\n
+ \ \"191.238.241.97/32\",\r\n \"2603:1000:4:402::140/124\",\r\n
+ \ \"2603:1000:104:402::140/124\",\r\n \"2603:1010:6:402::140/124\",\r\n
+ \ \"2603:1010:101:402::140/124\",\r\n \"2603:1010:304:402::140/124\",\r\n
+ \ \"2603:1010:404:402::140/124\",\r\n \"2603:1020:5:402::140/124\",\r\n
+ \ \"2603:1020:206:402::140/124\",\r\n \"2603:1020:305:402::140/124\",\r\n
+ \ \"2603:1020:405:402::140/124\",\r\n \"2603:1020:605:402::140/124\",\r\n
+ \ \"2603:1020:705:402::140/124\",\r\n \"2603:1020:805:402::140/124\",\r\n
+ \ \"2603:1020:905:402::140/124\",\r\n \"2603:1020:a04:402::140/124\",\r\n
+ \ \"2603:1020:b04:402::140/124\",\r\n \"2603:1020:c04:402::140/124\",\r\n
+ \ \"2603:1020:d04:402::140/124\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\",\r\n \"2603:1020:f04:402::140/124\",\r\n
+ \ \"2603:1020:1004:1::700/124\",\r\n \"2603:1020:1004:800::c0/124\",\r\n
+ \ \"2603:1020:1104:1::3c0/124\",\r\n \"2603:1020:1104:400::140/124\",\r\n
+ \ \"2603:1030:f:2::490/124\",\r\n \"2603:1030:f:400::940/124\",\r\n
+ \ \"2603:1030:10:402::140/124\",\r\n \"2603:1030:104:402::140/124\",\r\n
+ \ \"2603:1030:107:400::c0/124\",\r\n \"2603:1030:210:402::140/124\",\r\n
+ \ \"2603:1030:40b:400::940/124\",\r\n \"2603:1030:40c:402::140/124\",\r\n
+ \ \"2603:1030:504:2::80/124\",\r\n \"2603:1030:608:402::140/124\",\r\n
+ \ \"2603:1030:807:402::140/124\",\r\n \"2603:1030:a07:402::8c0/124\",\r\n
+ \ \"2603:1030:b04:402::140/124\",\r\n \"2603:1030:c06:400::940/124\",\r\n
+ \ \"2603:1030:f05:402::140/124\",\r\n \"2603:1030:1005:402::140/124\",\r\n
+ \ \"2603:1040:5:402::140/124\",\r\n \"2603:1040:207:402::140/124\",\r\n
+ \ \"2603:1040:407:402::140/124\",\r\n \"2603:1040:606:402::140/124\",\r\n
+ \ \"2603:1040:806:402::140/124\",\r\n \"2603:1040:904:402::140/124\",\r\n
+ \ \"2603:1040:a06:402::140/124\",\r\n \"2603:1040:b04:402::140/124\",\r\n
+ \ \"2603:1040:c06:402::140/124\",\r\n \"2603:1040:d04:1::700/124\",\r\n
+ \ \"2603:1040:d04:800::c0/124\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\",\r\n \"2603:1040:1104:1::400/124\",\r\n
+ \ \"2603:1040:1104:400::140/124\",\r\n \"2603:1050:6:402::140/124\",\r\n
+ \ \"2603:1050:403:400::2a0/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.AustraliaCentral\",\r\n \"id\":
+ \"ApiManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.106.68/31\",\r\n
+ \ \"20.36.107.176/28\",\r\n \"20.37.52.67/32\",\r\n \"2603:1010:304:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.20/31\",\r\n \"20.36.115.128/28\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"2603:1010:404:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaEast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.75.217.184/32\",\r\n
+ \ \"13.75.221.78/32\",\r\n \"20.40.125.155/32\",\r\n \"2603:1010:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.68/31\",\r\n \"13.77.52.224/28\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"2603:1010:101:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.BrazilSouth\",\r\n \"id\": \"ApiManagement.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.24.179/32\",\r\n \"191.233.203.28/31\",\r\n
+ \ \"191.233.203.240/28\",\r\n \"2603:1050:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaCentral\",\r\n
+ \ \"id\": \"ApiManagement.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n
+ \ \"52.139.20.34/32\",\r\n \"2603:1030:f05:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaEast\",\r\n
+ \ \"id\": \"ApiManagement.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.68/31\",\r\n \"40.69.107.224/28\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"2603:1030:1005:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralIndia\",\r\n
+ \ \"id\": \"ApiManagement.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.49.1/32\",\r\n \"104.211.81.28/31\",\r\n \"104.211.81.240/28\",\r\n
+ \ \"2603:1040:a06:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.CentralUS\",\r\n \"id\": \"ApiManagement.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.102.66/32\",\r\n \"13.89.170.204/31\",\r\n
+ \ \"13.89.174.64/28\",\r\n \"2603:1030:10:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"ApiManagement.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"52.253.159.160/32\",\r\n \"2603:1030:f:2::490/124\",\r\n
+ \ \"2603:1030:f:400::940/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.EastAsia\",\r\n \"id\": \"ApiManagement.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n \"52.139.152.27/32\",\r\n
+ \ \"65.52.164.91/32\",\r\n \"65.52.173.247/32\",\r\n \"2603:1040:207:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS\",\r\n
+ \ \"id\": \"ApiManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.10.204/31\",\r\n
+ \ \"40.71.13.128/28\",\r\n \"52.224.186.99/32\",\r\n \"2603:1030:210:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.72.3/32\",\r\n
+ \ \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n \"2603:1030:40c:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"52.253.229.253/32\",\r\n \"2603:1030:40b:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceCentral\",\r\n
+ \ \"id\": \"ApiManagement.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.66.60.111/32\",\r\n \"40.79.130.44/31\",\r\n
+ \ \"40.79.131.192/28\",\r\n \"2603:1020:805:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceSouth\",\r\n
+ \ \"id\": \"ApiManagement.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.80.2/32\",\r\n \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n
+ \ \"2603:1020:905:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.GermanyNorth\",\r\n \"id\":
+ \"ApiManagement.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.116.0.0/32\",\r\n
+ \ \"51.116.59.0/28\",\r\n \"2603:1020:d04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"ApiManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.96.0/32\",\r\n \"51.116.155.64/28\",\r\n
+ \ \"2603:1020:c04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.JapanEast\",\r\n \"id\": \"ApiManagement.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"52.140.238.179/32\",\r\n \"2603:1040:407:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.JapanWest\",\r\n
+ \ \"id\": \"ApiManagement.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.52/31\",\r\n \"40.74.101.48/28\",\r\n
+ \ \"40.81.185.8/32\",\r\n \"2603:1040:606:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.KoreaCentral\",\r\n
+ \ \"id\": \"ApiManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.74.240/28\",\r\n \"40.82.157.167/32\",\r\n
+ \ \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.KoreaSouth\",\r\n \"id\": \"ApiManagement.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.232.185/32\",\r\n \"52.231.146.84/31\",\r\n
+ \ \"52.231.147.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"ApiManagement.NorthCentralUS\",\r\n \"id\": \"ApiManagement.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.224.175/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"2603:1030:608:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorthEurope\",\r\n \"id\": \"ApiManagement.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n
+ \ \"2603:1020:5:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayEast\",\r\n \"id\": \"ApiManagement.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.234.240/28\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayWest\",\r\n \"id\": \"ApiManagement.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n
+ \ \"2603:1020:f04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"ApiManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.130.197/32\",\r\n
+ \ \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n \"2603:1000:104:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"ApiManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n
+ \ \"102.133.28.0/28\",\r\n \"2603:1000:4:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"20.188.77.119/32\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"191.238.241.97/32\",\r\n
+ \ \"2603:1030:807:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SoutheastAsia\",\r\n \"id\":
+ \"ApiManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.108/31\",\r\n
+ \ \"13.67.9.208/28\",\r\n \"40.90.185.46/32\",\r\n \"2603:1040:5:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthIndia\",\r\n
+ \ \"id\": \"ApiManagement.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.33.246/32\",\r\n \"40.78.194.68/31\",\r\n
+ \ \"40.78.195.224/28\",\r\n \"2603:1040:c06:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.0.91/32\",\r\n \"51.107.59.0/28\",\r\n \"2603:1020:a04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n \"2603:1020:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UAECentral\",\r\n
+ \ \"id\": \"ApiManagement.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.224/31\",\r\n \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n
+ \ \"2603:1040:b04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UAENorth\",\r\n \"id\": \"ApiManagement.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.144.85/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"2603:1040:904:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKNorth\",\r\n \"id\": \"ApiManagement.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.84/31\",\r\n \"13.87.123.144/28\",\r\n
+ \ \"2603:1020:305:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKSouth\",\r\n \"id\": \"ApiManagement.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"2603:1020:705:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UKWest\",\r\n
+ \ \"id\": \"ApiManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.136.0/32\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"2603:1020:605:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.116/31\",\r\n \"13.71.196.32/28\",\r\n
+ \ \"52.253.135.58/32\",\r\n \"2603:1030:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestEurope\",\r\n
+ \ \"id\": \"ApiManagement.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.76/31\",\r\n \"13.69.66.144/28\",\r\n \"23.101.67.140/32\",\r\n
+ \ \"51.145.179.78/32\",\r\n \"137.117.160.56/32\",\r\n \"2603:1020:206:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestIndia\",\r\n
+ \ \"id\": \"ApiManagement.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.89.24/32\",\r\n \"104.211.146.68/31\",\r\n
+ \ \"104.211.147.144/28\",\r\n \"2603:1040:806:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS\",\r\n
+ \ \"id\": \"ApiManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.39.16/32\",\r\n
+ \ \"40.112.242.148/31\",\r\n \"40.112.243.240/28\",\r\n \"2603:1030:a07:402::8c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS2\",\r\n
+ \ \"id\": \"ApiManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.92/31\",\r\n
+ \ \"13.66.140.176/28\",\r\n \"51.143.127.203/32\",\r\n \"2603:1030:c06:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppConfiguration\",\r\n
+ \ \"id\": \"AppConfiguration\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppConfiguration\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.72/29\",\r\n \"13.66.143.192/28\",\r\n
+ \ \"13.66.143.208/29\",\r\n \"13.67.10.112/29\",\r\n \"13.67.13.192/28\",\r\n
+ \ \"13.67.13.208/29\",\r\n \"13.69.67.112/29\",\r\n \"13.69.67.240/28\",\r\n
+ \ \"13.69.71.128/29\",\r\n \"13.69.107.72/29\",\r\n \"13.69.112.144/28\",\r\n
+ \ \"13.69.112.160/29\",\r\n \"13.69.230.8/29\",\r\n \"13.69.230.40/29\",\r\n
+ \ \"13.69.231.144/28\",\r\n \"13.70.74.128/29\",\r\n \"13.70.78.144/28\",\r\n
+ \ \"13.70.78.160/29\",\r\n \"13.71.175.64/28\",\r\n \"13.71.175.96/28\",\r\n
+ \ \"13.71.196.176/28\",\r\n \"13.71.199.80/28\",\r\n \"13.73.242.56/29\",\r\n
+ \ \"13.73.244.96/28\",\r\n \"13.73.244.112/29\",\r\n \"13.73.255.128/26\",\r\n
+ \ \"13.74.108.160/28\",\r\n \"13.74.108.240/28\",\r\n \"13.77.53.88/29\",\r\n
+ \ \"13.77.53.192/28\",\r\n \"13.77.53.208/29\",\r\n \"13.78.109.144/29\",\r\n
+ \ \"13.78.109.208/28\",\r\n \"13.78.111.128/29\",\r\n \"13.86.219.192/29\",\r\n
+ \ \"13.86.221.192/28\",\r\n \"13.86.221.208/29\",\r\n \"13.87.58.64/29\",\r\n
+ \ \"13.87.58.80/28\",\r\n \"13.87.58.128/29\",\r\n \"13.87.124.64/29\",\r\n
+ \ \"13.87.124.80/28\",\r\n \"13.87.124.128/29\",\r\n \"13.89.175.208/28\",\r\n
+ \ \"13.89.178.16/29\",\r\n \"13.89.178.32/29\",\r\n \"20.36.108.120/29\",\r\n
+ \ \"20.36.108.136/29\",\r\n \"20.36.108.144/28\",\r\n \"20.36.115.248/29\",\r\n
+ \ \"20.36.117.40/29\",\r\n \"20.36.117.48/28\",\r\n \"20.36.123.16/28\",\r\n
+ \ \"20.36.124.64/26\",\r\n \"20.37.67.96/28\",\r\n \"20.37.69.64/26\",\r\n
+ \ \"20.37.76.112/29\",\r\n \"20.37.76.144/28\",\r\n \"20.37.76.192/29\",\r\n
+ \ \"20.37.198.144/28\",\r\n \"20.37.227.32/28\",\r\n \"20.37.228.128/26\",\r\n
+ \ \"20.38.128.96/29\",\r\n \"20.38.128.112/28\",\r\n \"20.38.128.160/29\",\r\n
+ \ \"20.38.139.96/28\",\r\n \"20.38.141.64/26\",\r\n \"20.38.147.176/28\",\r\n
+ \ \"20.38.147.240/28\",\r\n \"20.39.14.16/28\",\r\n \"20.40.206.144/28\",\r\n
+ \ \"20.40.206.160/28\",\r\n \"20.40.224.128/26\",\r\n \"20.41.68.64/28\",\r\n
+ \ \"20.41.69.192/26\",\r\n \"20.41.197.48/28\",\r\n \"20.42.64.16/28\",\r\n
+ \ \"20.42.230.144/28\",\r\n \"20.43.44.144/28\",\r\n \"20.43.46.128/26\",\r\n
+ \ \"20.43.70.128/28\",\r\n \"20.43.121.40/29\",\r\n \"20.43.121.96/28\",\r\n
+ \ \"20.43.121.112/29\",\r\n \"20.44.4.96/29\",\r\n \"20.44.4.120/29\",\r\n
+ \ \"20.44.4.160/28\",\r\n \"20.44.8.168/29\",\r\n \"20.44.10.96/28\",\r\n
+ \ \"20.44.10.112/29\",\r\n \"20.44.17.56/29\",\r\n \"20.44.17.192/28\",\r\n
+ \ \"20.44.17.208/29\",\r\n \"20.44.27.224/28\",\r\n \"20.44.29.32/28\",\r\n
+ \ \"20.45.116.0/26\",\r\n \"20.45.123.120/29\",\r\n \"20.45.123.176/28\",\r\n
+ \ \"20.45.123.224/29\",\r\n \"20.45.126.0/27\",\r\n \"20.45.198.0/27\",\r\n
+ \ \"20.45.199.64/26\",\r\n \"20.48.192.192/26\",\r\n \"20.49.83.96/27\",\r\n
+ \ \"20.49.91.96/27\",\r\n \"20.49.99.80/28\",\r\n \"20.49.103.0/26\",\r\n
+ \ \"20.49.109.96/28\",\r\n \"20.49.115.64/26\",\r\n \"20.49.120.80/28\",\r\n
+ \ \"20.49.127.64/26\",\r\n \"20.50.1.240/28\",\r\n \"20.50.65.96/28\",\r\n
+ \ \"20.51.8.0/26\",\r\n \"20.51.16.0/26\",\r\n \"20.53.41.192/26\",\r\n
+ \ \"20.61.98.0/26\",\r\n \"20.62.128.64/26\",\r\n \"20.72.20.192/26\",\r\n
+ \ \"20.72.28.128/27\",\r\n \"20.150.165.176/28\",\r\n \"20.150.167.0/26\",\r\n
+ \ \"20.150.172.64/27\",\r\n \"20.150.173.32/27\",\r\n \"20.150.179.200/29\",\r\n
+ \ \"20.150.181.0/28\",\r\n \"20.150.181.16/29\",\r\n \"20.150.181.128/27\",\r\n
+ \ \"20.150.187.200/29\",\r\n \"20.150.189.0/28\",\r\n \"20.150.189.16/29\",\r\n
+ \ \"20.150.190.32/27\",\r\n \"20.187.194.224/28\",\r\n \"20.187.196.128/26\",\r\n
+ \ \"20.189.224.64/26\",\r\n \"20.191.160.192/26\",\r\n \"20.192.99.200/29\",\r\n
+ \ \"20.192.101.0/28\",\r\n \"20.192.101.16/29\",\r\n \"20.192.167.0/26\",\r\n
+ \ \"20.192.231.64/26\",\r\n \"20.192.235.240/29\",\r\n \"20.192.238.112/29\",\r\n
+ \ \"20.192.238.192/27\",\r\n \"20.193.203.224/27\",\r\n \"20.194.67.64/27\",\r\n
+ \ \"23.98.83.72/29\",\r\n \"23.98.86.32/28\",\r\n \"23.98.86.48/29\",\r\n
+ \ \"23.98.104.176/28\",\r\n \"23.98.108.64/26\",\r\n \"40.64.132.144/28\",\r\n
+ \ \"40.67.52.0/26\",\r\n \"40.67.60.72/29\",\r\n \"40.67.60.112/28\",\r\n
+ \ \"40.67.60.160/29\",\r\n \"40.69.108.80/29\",\r\n \"40.69.108.176/28\",\r\n
+ \ \"40.69.110.160/29\",\r\n \"40.70.148.56/29\",\r\n \"40.70.151.48/28\",\r\n
+ \ \"40.70.151.64/29\",\r\n \"40.71.13.248/29\",\r\n \"40.71.14.120/29\",\r\n
+ \ \"40.71.15.128/28\",\r\n \"40.74.149.40/29\",\r\n \"40.74.149.56/29\",\r\n
+ \ \"40.74.149.80/28\",\r\n \"40.75.35.72/29\",\r\n \"40.75.35.192/28\",\r\n
+ \ \"40.75.35.208/29\",\r\n \"40.78.196.80/29\",\r\n \"40.78.196.144/28\",\r\n
+ \ \"40.78.196.160/29\",\r\n \"40.78.204.8/29\",\r\n \"40.78.204.144/28\",\r\n
+ \ \"40.78.204.192/29\",\r\n \"40.78.229.80/28\",\r\n \"40.78.229.112/28\",\r\n
+ \ \"40.78.236.136/29\",\r\n \"40.78.238.32/28\",\r\n \"40.78.238.48/29\",\r\n
+ \ \"40.78.243.176/28\",\r\n \"40.78.245.128/28\",\r\n \"40.78.251.144/28\",\r\n
+ \ \"40.78.251.208/28\",\r\n \"40.79.132.88/29\",\r\n \"40.79.139.64/28\",\r\n
+ \ \"40.79.139.128/28\",\r\n \"40.79.146.208/28\",\r\n \"40.79.148.64/28\",\r\n
+ \ \"40.79.156.96/28\",\r\n \"40.79.163.64/29\",\r\n \"40.79.163.128/28\",\r\n
+ \ \"40.79.163.144/29\",\r\n \"40.79.165.96/27\",\r\n \"40.79.171.112/28\",\r\n
+ \ \"40.79.171.176/28\",\r\n \"40.79.180.48/29\",\r\n \"40.79.180.128/28\",\r\n
+ \ \"40.79.180.144/29\",\r\n \"40.79.187.192/29\",\r\n \"40.79.189.32/28\",\r\n
+ \ \"40.79.189.48/29\",\r\n \"40.79.195.176/28\",\r\n \"40.79.195.240/28\",\r\n
+ \ \"40.80.51.112/28\",\r\n \"40.80.51.176/28\",\r\n \"40.80.62.32/28\",\r\n
+ \ \"40.80.172.48/28\",\r\n \"40.80.173.64/26\",\r\n \"40.80.176.40/29\",\r\n
+ \ \"40.80.176.56/29\",\r\n \"40.80.176.112/28\",\r\n \"40.80.191.240/28\",\r\n
+ \ \"40.89.20.160/28\",\r\n \"40.89.23.128/26\",\r\n \"40.119.11.192/28\",\r\n
+ \ \"40.120.75.128/27\",\r\n \"51.11.192.0/28\",\r\n \"51.11.192.16/29\",\r\n
+ \ \"51.12.43.64/26\",\r\n \"51.12.99.216/29\",\r\n \"51.12.100.48/28\",\r\n
+ \ \"51.12.100.96/29\",\r\n \"51.12.102.128/27\",\r\n \"51.12.195.64/26\",\r\n
+ \ \"51.12.204.48/28\",\r\n \"51.12.204.96/28\",\r\n \"51.12.206.32/27\",\r\n
+ \ \"51.12.227.200/29\",\r\n \"51.12.229.0/28\",\r\n \"51.12.229.16/29\",\r\n
+ \ \"51.12.235.200/29\",\r\n \"51.12.237.0/28\",\r\n \"51.12.237.16/29\",\r\n
+ \ \"51.104.9.48/28\",\r\n \"51.104.29.224/28\",\r\n \"51.105.67.184/29\",\r\n
+ \ \"51.105.67.216/29\",\r\n \"51.105.69.64/28\",\r\n \"51.105.75.224/28\",\r\n
+ \ \"51.105.77.32/28\",\r\n \"51.105.83.64/26\",\r\n \"51.105.90.176/28\",\r\n
+ \ \"51.105.93.0/26\",\r\n \"51.107.51.48/28\",\r\n \"51.107.53.128/26\",\r\n
+ \ \"51.107.60.56/29\",\r\n \"51.107.60.128/28\",\r\n \"51.107.60.144/29\",\r\n
+ \ \"51.107.147.48/28\",\r\n \"51.107.148.192/26\",\r\n \"51.107.156.64/29\",\r\n
+ \ \"51.107.156.136/29\",\r\n \"51.107.156.144/28\",\r\n \"51.116.49.192/28\",\r\n
+ \ \"51.116.51.64/26\",\r\n \"51.116.60.56/29\",\r\n \"51.116.60.88/29\",\r\n
+ \ \"51.116.60.128/28\",\r\n \"51.116.145.176/28\",\r\n \"51.116.148.0/26\",\r\n
+ \ \"51.116.156.56/29\",\r\n \"51.116.156.168/29\",\r\n \"51.116.158.32/28\",\r\n
+ \ \"51.116.158.48/29\",\r\n \"51.116.243.152/29\",\r\n \"51.116.243.192/28\",\r\n
+ \ \"51.116.243.208/29\",\r\n \"51.116.245.128/27\",\r\n \"51.116.251.40/29\",\r\n
+ \ \"51.116.251.160/28\",\r\n \"51.116.251.176/29\",\r\n \"51.116.253.64/27\",\r\n
+ \ \"51.120.43.96/28\",\r\n \"51.120.45.0/26\",\r\n \"51.120.100.56/29\",\r\n
+ \ \"51.120.100.128/28\",\r\n \"51.120.100.144/29\",\r\n \"51.120.107.200/29\",\r\n
+ \ \"51.120.109.0/28\",\r\n \"51.120.109.16/29\",\r\n \"51.120.110.160/27\",\r\n
+ \ \"51.120.211.200/29\",\r\n \"51.120.213.0/28\",\r\n \"51.120.213.16/29\",\r\n
+ \ \"51.120.220.56/29\",\r\n \"51.120.220.96/28\",\r\n \"51.120.220.112/29\",\r\n
+ \ \"51.120.227.96/28\",\r\n \"51.120.229.0/26\",\r\n \"51.137.164.128/28\",\r\n
+ \ \"51.137.167.0/26\",\r\n \"51.140.148.40/29\",\r\n \"51.140.149.16/29\",\r\n
+ \ \"51.140.212.96/29\",\r\n \"51.140.212.192/28\",\r\n \"51.140.212.208/29\",\r\n
+ \ \"51.143.195.64/26\",\r\n \"51.143.208.64/26\",\r\n \"52.136.51.96/28\",\r\n
+ \ \"52.136.52.128/26\",\r\n \"52.138.92.88/29\",\r\n \"52.138.92.144/28\",\r\n
+ \ \"52.138.92.160/29\",\r\n \"52.138.227.176/28\",\r\n \"52.138.229.48/28\",\r\n
+ \ \"52.140.108.112/28\",\r\n \"52.140.108.128/28\",\r\n \"52.140.111.0/26\",\r\n
+ \ \"52.146.131.192/26\",\r\n \"52.150.152.64/28\",\r\n \"52.150.156.128/26\",\r\n
+ \ \"52.162.111.32/28\",\r\n \"52.162.111.112/28\",\r\n \"52.167.107.112/28\",\r\n
+ \ \"52.167.107.240/28\",\r\n \"52.172.112.64/26\",\r\n \"52.182.141.0/29\",\r\n
+ \ \"52.182.141.32/28\",\r\n \"52.182.141.48/29\",\r\n \"52.228.85.208/28\",\r\n
+ \ \"52.231.20.8/29\",\r\n \"52.231.20.80/28\",\r\n \"52.231.23.0/29\",\r\n
+ \ \"52.231.148.112/29\",\r\n \"52.231.148.176/28\",\r\n \"52.231.148.192/29\",\r\n
+ \ \"52.236.186.248/29\",\r\n \"52.236.187.96/28\",\r\n \"52.236.189.64/29\",\r\n
+ \ \"52.246.155.176/28\",\r\n \"52.246.155.240/28\",\r\n \"52.246.157.32/27\",\r\n
+ \ \"65.52.252.112/29\",\r\n \"65.52.252.224/28\",\r\n \"65.52.252.240/29\",\r\n
+ \ \"102.133.28.96/29\",\r\n \"102.133.28.152/29\",\r\n \"102.133.28.192/28\",\r\n
+ \ \"102.133.58.240/28\",\r\n \"102.133.60.128/26\",\r\n \"102.133.124.80/29\",\r\n
+ \ \"102.133.124.112/28\",\r\n \"102.133.124.128/29\",\r\n
+ \ \"102.133.156.120/29\",\r\n \"102.133.156.152/29\",\r\n
+ \ \"102.133.156.160/28\",\r\n \"102.133.218.160/28\",\r\n
+ \ \"102.133.220.128/26\",\r\n \"102.133.251.88/29\",\r\n
+ \ \"102.133.251.192/28\",\r\n \"102.133.251.208/29\",\r\n
+ \ \"104.46.177.192/26\",\r\n \"104.214.161.0/29\",\r\n \"104.214.161.16/28\",\r\n
+ \ \"104.214.161.32/29\",\r\n \"168.61.142.96/27\",\r\n \"191.233.11.144/28\",\r\n
+ \ \"191.233.14.128/26\",\r\n \"191.233.51.224/27\",\r\n \"191.233.205.112/28\",\r\n
+ \ \"191.233.205.176/28\",\r\n \"191.234.136.96/28\",\r\n
+ \ \"191.234.139.64/26\",\r\n \"191.234.147.200/29\",\r\n
+ \ \"191.234.149.16/28\",\r\n \"191.234.149.128/29\",\r\n
+ \ \"191.234.149.192/27\",\r\n \"191.234.155.200/29\",\r\n
+ \ \"191.234.157.16/28\",\r\n \"191.234.157.32/29\",\r\n \"191.234.157.96/27\",\r\n
+ \ \"2603:1000:4:402::2e0/123\",\r\n \"2603:1000:104:402::2e0/123\",\r\n
+ \ \"2603:1000:104:802::220/123\",\r\n \"2603:1000:104:c02::220/123\",\r\n
+ \ \"2603:1010:6:402::2e0/123\",\r\n \"2603:1010:6:802::220/123\",\r\n
+ \ \"2603:1010:6:c02::220/123\",\r\n \"2603:1010:101:402::2e0/123\",\r\n
+ \ \"2603:1010:304:402::2e0/123\",\r\n \"2603:1010:404:402::2e0/123\",\r\n
+ \ \"2603:1020:5:402::2e0/123\",\r\n \"2603:1020:5:802::220/123\",\r\n
+ \ \"2603:1020:5:c02::220/123\",\r\n \"2603:1020:206:402::2e0/123\",\r\n
+ \ \"2603:1020:206:802::220/123\",\r\n \"2603:1020:206:c02::220/123\",\r\n
+ \ \"2603:1020:305:402::2e0/123\",\r\n \"2603:1020:405:402::2e0/123\",\r\n
+ \ \"2603:1020:605:402::2e0/123\",\r\n \"2603:1020:705:402::2e0/123\",\r\n
+ \ \"2603:1020:705:802::220/123\",\r\n \"2603:1020:705:c02::220/123\",\r\n
+ \ \"2603:1020:805:402::2e0/123\",\r\n \"2603:1020:805:802::220/123\",\r\n
+ \ \"2603:1020:805:c02::220/123\",\r\n \"2603:1020:905:402::2e0/123\",\r\n
+ \ \"2603:1020:a04:402::2e0/123\",\r\n \"2603:1020:a04:802::220/123\",\r\n
+ \ \"2603:1020:a04:c02::220/123\",\r\n \"2603:1020:b04:402::2e0/123\",\r\n
+ \ \"2603:1020:c04:402::2e0/123\",\r\n \"2603:1020:c04:802::220/123\",\r\n
+ \ \"2603:1020:c04:c02::220/123\",\r\n \"2603:1020:d04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:3::2c0/122\",\r\n \"2603:1020:e04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:802::220/123\",\r\n \"2603:1020:e04:c02::220/123\",\r\n
+ \ \"2603:1020:f04:402::2e0/123\",\r\n \"2603:1020:1004:1::340/122\",\r\n
+ \ \"2603:1020:1004:400::1e0/123\",\r\n \"2603:1020:1004:400::380/123\",\r\n
+ \ \"2603:1020:1004:c02::280/123\",\r\n \"2603:1020:1104:1::100/122\",\r\n
+ \ \"2603:1020:1104:400::2e0/123\",\r\n \"2603:1030:f:2::680/122\",\r\n
+ \ \"2603:1030:f:400::ae0/123\",\r\n \"2603:1030:10:402::2e0/123\",\r\n
+ \ \"2603:1030:10:802::220/123\",\r\n \"2603:1030:10:c02::220/123\",\r\n
+ \ \"2603:1030:104:402::2e0/123\",\r\n \"2603:1030:107::7c0/122\",\r\n
+ \ \"2603:1030:107:400::260/123\",\r\n \"2603:1030:210:402::2e0/123\",\r\n
+ \ \"2603:1030:210:802::220/123\",\r\n \"2603:1030:210:c02::220/123\",\r\n
+ \ \"2603:1030:40b:400::ae0/123\",\r\n \"2603:1030:40b:800::220/123\",\r\n
+ \ \"2603:1030:40b:c00::220/123\",\r\n \"2603:1030:40c:402::2e0/123\",\r\n
+ \ \"2603:1030:40c:802::220/123\",\r\n \"2603:1030:40c:c02::220/123\",\r\n
+ \ \"2603:1030:504::340/122\",\r\n \"2603:1030:504:402::1e0/123\",\r\n
+ \ \"2603:1030:504:402::380/123\",\r\n \"2603:1030:504:802::260/123\",\r\n
+ \ \"2603:1030:504:c02::280/123\",\r\n \"2603:1030:608:402::2e0/123\",\r\n
+ \ \"2603:1030:807:402::2e0/123\",\r\n \"2603:1030:807:802::220/123\",\r\n
+ \ \"2603:1030:807:c02::220/123\",\r\n \"2603:1030:a07:402::960/123\",\r\n
+ \ \"2603:1030:b04:402::2e0/123\",\r\n \"2603:1030:c06:400::ae0/123\",\r\n
+ \ \"2603:1030:c06:802::220/123\",\r\n \"2603:1030:c06:c02::220/123\",\r\n
+ \ \"2603:1030:f05:402::2e0/123\",\r\n \"2603:1030:f05:802::220/123\",\r\n
+ \ \"2603:1030:f05:c02::220/123\",\r\n \"2603:1030:1005:402::2e0/123\",\r\n
+ \ \"2603:1040:5:402::2e0/123\",\r\n \"2603:1040:5:802::220/123\",\r\n
+ \ \"2603:1040:5:c02::220/123\",\r\n \"2603:1040:207:402::2e0/123\",\r\n
+ \ \"2603:1040:407:402::2e0/123\",\r\n \"2603:1040:407:802::220/123\",\r\n
+ \ \"2603:1040:407:c02::220/123\",\r\n \"2603:1040:606:402::2e0/123\",\r\n
+ \ \"2603:1040:806:402::2e0/123\",\r\n \"2603:1040:904:402::2e0/123\",\r\n
+ \ \"2603:1040:904:802::220/123\",\r\n \"2603:1040:904:c02::220/123\",\r\n
+ \ \"2603:1040:a06:402::2e0/123\",\r\n \"2603:1040:a06:802::220/123\",\r\n
+ \ \"2603:1040:a06:c02::220/123\",\r\n \"2603:1040:b04:402::2e0/123\",\r\n
+ \ \"2603:1040:c06:402::2e0/123\",\r\n \"2603:1040:d04:1::340/122\",\r\n
+ \ \"2603:1040:d04:400::1e0/123\",\r\n \"2603:1040:d04:400::380/123\",\r\n
+ \ \"2603:1040:d04:c02::280/123\",\r\n \"2603:1040:f05:2::200/122\",\r\n
+ \ \"2603:1040:f05:402::2e0/123\",\r\n \"2603:1040:f05:802::220/123\",\r\n
+ \ \"2603:1040:f05:c02::220/123\",\r\n \"2603:1040:1104:1::100/122\",\r\n
+ \ \"2603:1040:1104:400::2e0/123\",\r\n \"2603:1050:6:402::2e0/123\",\r\n
+ \ \"2603:1050:6:802::220/123\",\r\n \"2603:1050:6:c02::220/123\",\r\n
+ \ \"2603:1050:403:400::200/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApplicationInsightsAvailability\",\r\n \"id\":
+ \"ApplicationInsightsAvailability\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ApplicationInsightsAvailability\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.97.224/27\",\r\n \"13.86.98.0/27\",\r\n
+ \ \"13.86.98.48/28\",\r\n \"13.86.98.64/28\",\r\n \"20.37.156.64/27\",\r\n
+ \ \"20.37.192.80/29\",\r\n \"20.38.80.80/28\",\r\n \"20.40.104.96/27\",\r\n
+ \ \"20.40.104.128/27\",\r\n \"20.40.124.176/28\",\r\n \"20.40.124.240/28\",\r\n
+ \ \"20.40.125.80/28\",\r\n \"20.40.129.32/27\",\r\n \"20.40.129.64/26\",\r\n
+ \ \"20.40.129.128/27\",\r\n \"20.42.4.64/27\",\r\n \"20.42.35.32/28\",\r\n
+ \ \"20.42.35.64/26\",\r\n \"20.42.35.128/28\",\r\n \"20.42.129.32/27\",\r\n
+ \ \"20.43.40.80/28\",\r\n \"20.43.64.80/29\",\r\n \"20.43.128.96/29\",\r\n
+ \ \"20.45.5.160/27\",\r\n \"20.45.5.192/26\",\r\n \"20.189.106.64/29\",\r\n
+ \ \"23.100.224.16/28\",\r\n \"23.100.224.32/27\",\r\n \"23.100.224.64/26\",\r\n
+ \ \"23.100.225.0/28\",\r\n \"40.74.24.80/28\",\r\n \"40.80.186.128/26\",\r\n
+ \ \"40.91.82.48/28\",\r\n \"40.91.82.64/26\",\r\n \"40.91.82.128/28\",\r\n
+ \ \"40.119.8.96/27\",\r\n \"51.104.24.80/29\",\r\n \"51.105.9.128/27\",\r\n
+ \ \"51.105.9.160/28\",\r\n \"51.137.160.80/29\",\r\n \"51.144.56.96/27\",\r\n
+ \ \"51.144.56.128/26\",\r\n \"52.139.250.96/27\",\r\n \"52.139.250.128/27\",\r\n
+ \ \"52.140.232.160/27\",\r\n \"52.140.232.192/28\",\r\n \"52.158.28.64/26\",\r\n
+ \ \"52.229.216.48/28\",\r\n \"52.229.216.64/27\",\r\n \"191.233.26.64/28\",\r\n
+ \ \"191.233.26.128/28\",\r\n \"191.233.26.176/28\",\r\n \"191.235.224.80/29\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApplicationInsightsAvailability.JapanEast\",\r\n
+ \ \"id\": \"ApplicationInsightsAvailability.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ApplicationInsightsAvailability\",\r\n \"addressPrefixes\": [\r\n
+ \ \"20.43.64.80/29\",\r\n \"52.140.232.160/27\",\r\n \"52.140.232.192/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService\",\r\n
+ \ \"id\": \"AppService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.110/32\",\r\n \"13.65.30.245/32\",\r\n
+ \ \"13.65.37.122/32\",\r\n \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n
+ \ \"13.65.42.183/32\",\r\n \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n
+ \ \"13.65.89.91/32\",\r\n \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n
+ \ \"13.65.95.109/32\",\r\n \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n
+ \ \"13.65.210.166/32\",\r\n \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n
+ \ \"13.65.243.110/32\",\r\n \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n
+ \ \"13.66.39.88/32\",\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.67.9.0/25\",\r\n
+ \ \"13.67.56.225/32\",\r\n \"13.67.63.90/32\",\r\n \"13.67.129.26/32\",\r\n
+ \ \"13.67.141.98/32\",\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.69.68.0/23\",\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n \"13.71.122.35/32\",\r\n
+ \ \"13.71.123.138/32\",\r\n \"13.71.149.151/32\",\r\n \"13.71.170.128/27\",\r\n
+ \ \"13.71.194.192/27\",\r\n \"13.73.1.134/32\",\r\n \"13.73.26.73/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.74.41.233/32\",\r\n
+ \ \"13.74.147.218/32\",\r\n \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n
+ \ \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n \"13.75.47.15/32\",\r\n
+ \ \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n \"13.75.115.40/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"13.77.7.175/32\",\r\n \"13.77.50.96/27\",\r\n \"13.77.82.141/32\",\r\n
+ \ \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"13.78.59.237/32\",\r\n
+ \ \"13.78.106.96/27\",\r\n \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n
+ \ \"13.78.150.96/32\",\r\n \"13.78.184.89/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n \"13.82.175.96/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"13.89.57.7/32\",\r\n
+ \ \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n \"13.90.143.69/32\",\r\n
+ \ \"13.90.213.204/32\",\r\n \"13.91.40.166/32\",\r\n \"13.91.242.166/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n \"13.93.220.109/32\",\r\n
+ \ \"13.93.231.75/32\",\r\n \"13.94.47.87/32\",\r\n \"13.94.143.57/32\",\r\n
+ \ \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n \"13.95.82.181/32\",\r\n
+ \ \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n \"13.95.238.192/32\",\r\n
+ \ \"20.36.43.207/32\",\r\n \"20.36.72.230/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n \"20.37.66.0/27\",\r\n
+ \ \"20.37.74.96/27\",\r\n \"20.37.196.192/27\",\r\n \"20.37.226.0/27\",\r\n
+ \ \"20.38.138.0/27\",\r\n \"20.38.146.160/27\",\r\n \"20.39.11.104/29\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"20.41.66.224/27\",\r\n \"20.41.195.192/27\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.42.128.96/27\",\r\n \"20.42.228.160/27\",\r\n
+ \ \"20.43.43.32/27\",\r\n \"20.43.67.32/27\",\r\n \"20.43.132.128/25\",\r\n
+ \ \"20.44.2.32/27\",\r\n \"20.44.26.160/27\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.45.196.16/29\",\r\n \"20.49.82.32/27\",\r\n \"20.49.90.32/27\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"20.49.104.0/25\",\r\n \"20.50.2.0/23\",\r\n
+ \ \"20.50.64.0/25\",\r\n \"20.72.26.32/27\",\r\n \"20.150.170.192/27\",\r\n
+ \ \"20.150.178.160/27\",\r\n \"20.150.186.160/27\",\r\n \"20.188.98.74/32\",\r\n
+ \ \"20.189.104.96/27\",\r\n \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n
+ \ \"20.192.98.160/27\",\r\n \"20.192.234.128/27\",\r\n \"20.193.202.128/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"23.96.0.52/32\",\r\n \"23.96.1.109/32\",\r\n
+ \ \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n \"23.96.96.142/32\",\r\n
+ \ \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n \"23.96.113.128/32\",\r\n
+ \ \"23.96.124.25/32\",\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n
+ \ \"23.96.207.177/32\",\r\n \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n
+ \ \"23.97.56.169/32\",\r\n \"23.97.79.119/32\",\r\n \"23.97.96.32/32\",\r\n
+ \ \"23.97.160.56/32\",\r\n \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n
+ \ \"23.97.195.129/32\",\r\n \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n
+ \ \"23.97.216.47/32\",\r\n \"23.97.224.11/32\",\r\n \"23.98.64.36/32\",\r\n
+ \ \"23.98.64.158/32\",\r\n \"23.99.0.12/32\",\r\n \"23.99.65.65/32\",\r\n
+ \ \"23.99.91.55/32\",\r\n \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n
+ \ \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n \"23.99.192.132/32\",\r\n
+ \ \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n \"23.99.224.56/32\",\r\n
+ \ \"23.100.1.29/32\",\r\n \"23.100.46.198/32\",\r\n \"23.100.48.106/32\",\r\n
+ \ \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n \"23.100.56.27/32\",\r\n
+ \ \"23.100.72.240/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"23.101.27.182/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.101.67.245/32\",\r\n \"23.101.118.145/32\",\r\n \"23.101.119.44/32\",\r\n
+ \ \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n \"23.101.125.65/32\",\r\n
+ \ \"23.101.147.117/32\",\r\n \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n
+ \ \"23.101.172.244/32\",\r\n \"23.101.180.75/32\",\r\n \"23.101.203.117/32\",\r\n
+ \ \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"23.101.224.24/32\",\r\n \"23.101.230.162/32\",\r\n \"23.102.12.43/32\",\r\n
+ \ \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n \"23.102.25.149/32\",\r\n
+ \ \"23.102.28.178/32\",\r\n \"23.102.154.38/32\",\r\n \"23.102.161.217/32\",\r\n
+ \ \"23.102.191.170/32\",\r\n \"40.64.128.224/27\",\r\n \"40.67.58.192/27\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.106.96/27\",\r\n \"40.69.190.41/32\",\r\n
+ \ \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n \"40.69.218.150/32\",\r\n
+ \ \"40.70.27.35/32\",\r\n \"40.70.147.0/25\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.74.100.128/27\",\r\n
+ \ \"40.74.133.20/32\",\r\n \"40.74.245.188/32\",\r\n \"40.74.253.108/32\",\r\n
+ \ \"40.74.255.112/32\",\r\n \"40.76.5.137/32\",\r\n \"40.76.192.15/32\",\r\n
+ \ \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n \"40.76.223.101/32\",\r\n
+ \ \"40.77.56.174/32\",\r\n \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n
+ \ \"40.78.48.219/32\",\r\n \"40.78.194.96/27\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"40.79.65.200/32\",\r\n \"40.79.130.128/27\",\r\n \"40.79.154.192/27\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.79.178.96/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.80.50.160/27\",\r\n \"40.80.58.224/27\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.80.170.224/27\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"40.82.191.84/32\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.82.255.128/25\",\r\n \"40.83.16.172/32\",\r\n \"40.83.72.59/32\",\r\n
+ \ \"40.83.124.73/32\",\r\n \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n
+ \ \"40.83.182.206/32\",\r\n \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n
+ \ \"40.84.54.203/32\",\r\n \"40.84.59.174/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.85.74.227/32\",\r\n
+ \ \"40.85.92.115/32\",\r\n \"40.85.96.208/32\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n \"40.86.86.144/32\",\r\n
+ \ \"40.86.91.212/32\",\r\n \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n
+ \ \"40.86.225.89/32\",\r\n \"40.86.230.96/32\",\r\n \"40.87.65.131/32\",\r\n
+ \ \"40.87.70.95/32\",\r\n \"40.89.19.0/27\",\r\n \"40.89.131.148/32\",\r\n
+ \ \"40.89.141.103/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.112.142.148/32\",\r\n \"40.112.143.134/32\",\r\n
+ \ \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n \"40.112.165.44/32\",\r\n
+ \ \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n \"40.112.192.69/32\",\r\n
+ \ \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n \"40.113.2.52/32\",\r\n
+ \ \"40.113.65.9/32\",\r\n \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n
+ \ \"40.113.90.202/32\",\r\n \"40.113.126.251/32\",\r\n \"40.113.131.37/32\",\r\n
+ \ \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n
+ \ \"40.114.228.161/32\",\r\n \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n
+ \ \"40.115.55.251/32\",\r\n \"40.115.98.85/32\",\r\n \"40.115.179.121/32\",\r\n
+ \ \"40.115.251.148/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n
+ \ \"40.118.96.231/32\",\r\n \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n
+ \ \"40.118.102.46/32\",\r\n \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n
+ \ \"40.118.246.51/32\",\r\n \"40.118.255.59/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.120.74.32/27\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n \"40.124.12.75/32\",\r\n
+ \ \"40.124.13.58/32\",\r\n \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n
+ \ \"40.126.242.59/32\",\r\n \"40.126.245.169/32\",\r\n \"40.127.132.204/32\",\r\n
+ \ \"40.127.139.252/32\",\r\n \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n
+ \ \"51.12.98.192/27\",\r\n \"51.12.202.192/27\",\r\n \"51.12.226.160/27\",\r\n
+ \ \"51.12.234.160/27\",\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.105.90.32/27\",\r\n \"51.105.172.25/32\",\r\n
+ \ \"51.107.50.0/27\",\r\n \"51.107.58.160/27\",\r\n \"51.107.146.0/27\",\r\n
+ \ \"51.107.154.160/27\",\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n \"51.116.242.160/27\",\r\n
+ \ \"51.116.250.160/27\",\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"51.120.218.192/27\",\r\n
+ \ \"51.120.226.0/27\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.137.163.32/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.140.210.96/27\",\r\n \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n
+ \ \"51.141.12.112/32\",\r\n \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n
+ \ \"51.141.45.207/32\",\r\n \"51.141.90.252/32\",\r\n \"51.143.102.21/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n
+ \ \"51.144.116.43/32\",\r\n \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n
+ \ \"52.136.50.0/27\",\r\n \"52.136.138.55/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.140.106.224/27\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"52.150.140.224/27\",\r\n \"52.151.62.51/32\",\r\n \"52.160.40.218/32\",\r\n
+ \ \"52.161.96.193/32\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"52.172.54.225/32\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"52.173.28.95/32\",\r\n \"52.173.36.83/32\",\r\n
+ \ \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n \"52.173.83.49/32\",\r\n
+ \ \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n \"52.173.94.173/32\",\r\n
+ \ \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n \"52.173.139.125/32\",\r\n
+ \ \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n \"52.173.184.147/32\",\r\n
+ \ \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.175.158.219/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.176.2.229/32\",\r\n
+ \ \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n \"52.176.6.37/32\",\r\n
+ \ \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n \"52.176.149.197/32\",\r\n
+ \ \"52.176.165.69/32\",\r\n \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n
+ \ \"52.177.206.73/32\",\r\n \"52.178.29.39/32\",\r\n \"52.178.37.244/32\",\r\n
+ \ \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n \"52.178.46.181/32\",\r\n
+ \ \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n \"52.178.89.129/32\",\r\n
+ \ \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n \"52.178.105.179/32\",\r\n
+ \ \"52.178.114.226/32\",\r\n \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n
+ \ \"52.178.179.169/32\",\r\n \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n
+ \ \"52.178.208.12/32\",\r\n \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n
+ \ \"52.179.97.15/32\",\r\n \"52.179.188.206/32\",\r\n \"52.180.178.6/32\",\r\n
+ \ \"52.180.183.66/32\",\r\n \"52.183.82.125/32\",\r\n \"52.184.162.135/32\",\r\n
+ \ \"52.184.193.103/32\",\r\n \"52.184.193.104/32\",\r\n \"52.187.17.126/32\",\r\n
+ \ \"52.187.36.104/32\",\r\n \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n
+ \ \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n \"52.189.213.49/32\",\r\n
+ \ \"52.225.179.39/32\",\r\n \"52.225.190.65/32\",\r\n \"52.226.134.64/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"52.229.115.84/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n \"52.231.38.95/32\",\r\n
+ \ \"52.231.77.58/32\",\r\n \"52.231.146.96/27\",\r\n \"52.231.200.101/32\",\r\n
+ \ \"52.231.200.179/32\",\r\n \"52.232.19.237/32\",\r\n \"52.232.26.228/32\",\r\n
+ \ \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n \"52.232.127.196/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"52.234.209.94/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n
+ \ \"52.237.246.162/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"52.243.39.89/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"52.252.160.21/32\",\r\n \"52.253.224.223/32\",\r\n
+ \ \"52.255.35.249/32\",\r\n \"52.255.54.134/32\",\r\n \"65.52.24.41/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"65.52.213.73/32\",\r\n \"65.52.217.59/32\",\r\n
+ \ \"65.52.218.253/32\",\r\n \"65.52.250.96/27\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n \"102.133.122.160/27\",\r\n
+ \ \"102.133.154.32/27\",\r\n \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"104.40.3.53/32\",\r\n \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n
+ \ \"104.40.53.219/32\",\r\n \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n
+ \ \"104.40.92.107/32\",\r\n \"104.40.129.89/32\",\r\n \"104.40.147.180/32\",\r\n
+ \ \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n \"104.40.179.243/32\",\r\n
+ \ \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n \"104.40.187.26/32\",\r\n
+ \ \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n \"104.40.215.219/32\",\r\n
+ \ \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n \"104.41.9.139/32\",\r\n
+ \ \"104.41.13.179/32\",\r\n \"104.41.63.108/32\",\r\n \"104.41.186.103/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.42.53.248/32\",\r\n
+ \ \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n \"104.42.148.55/32\",\r\n
+ \ \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n \"104.42.188.146/32\",\r\n
+ \ \"104.42.231.5/32\",\r\n \"104.43.129.105/32\",\r\n \"104.43.140.101/32\",\r\n
+ \ \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n \"104.43.246.71/32\",\r\n
+ \ \"104.43.254.102/32\",\r\n \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"104.45.129.178/32\",\r\n \"104.45.141.247/32\",\r\n
+ \ \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n \"104.45.154.200/32\",\r\n
+ \ \"104.45.226.98/32\",\r\n \"104.45.231.79/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.46.101.59/32\",\r\n
+ \ \"104.47.137.62/32\",\r\n \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n
+ \ \"104.47.164.119/32\",\r\n \"104.208.48.107/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"104.210.38.149/32\",\r\n \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n
+ \ \"104.210.145.181/32\",\r\n \"104.210.147.57/32\",\r\n
+ \ \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.211.26.212/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"104.211.146.96/27\",\r\n \"104.211.160.159/32\",\r\n
+ \ \"104.211.179.11/32\",\r\n \"104.211.184.197/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"104.215.11.176/32\",\r\n
+ \ \"104.215.58.230/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n
+ \ \"111.221.95.27/32\",\r\n \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"137.117.9.212/32\",\r\n \"137.117.17.70/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.117.166.35/32\",\r\n \"137.117.175.14/32\",\r\n
+ \ \"137.117.203.130/32\",\r\n \"137.117.211.244/32\",\r\n
+ \ \"137.117.218.101/32\",\r\n \"137.117.224.218/32\",\r\n
+ \ \"137.117.225.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"138.91.0.30/32\",\r\n \"138.91.16.18/32\",\r\n \"138.91.224.84/32\",\r\n
+ \ \"138.91.225.40/32\",\r\n \"138.91.240.81/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.61.152.29/32\",\r\n \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n
+ \ \"168.61.218.125/32\",\r\n \"168.62.20.37/32\",\r\n \"168.62.48.183/32\",\r\n
+ \ \"168.62.180.173/32\",\r\n \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.53.239/32\",\r\n \"168.63.107.5/32\",\r\n
+ \ \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n \"191.233.50.32/27\",\r\n
+ \ \"191.233.82.44/32\",\r\n \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.16.188/32\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n \"191.235.177.30/32\",\r\n
+ \ \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"191.236.16.12/32\",\r\n \"191.236.59.67/32\",\r\n
+ \ \"191.236.80.12/32\",\r\n \"191.236.106.123/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"191.236.192.121/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n
+ \ \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"191.239.58.162/32\",\r\n \"191.239.188.11/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1000:4:402::a0/123\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\",\r\n
+ \ \"2603:1010:101:402::a0/123\",\r\n \"2603:1010:304:402::a0/123\",\r\n
+ \ \"2603:1010:404:402::a0/123\",\r\n \"2603:1020:5:402::a0/123\",\r\n
+ \ \"2603:1020:5:802::a0/123\",\r\n \"2603:1020:5:c02::a0/123\",\r\n
+ \ \"2603:1020:206:402::a0/123\",\r\n \"2603:1020:206:802::a0/123\",\r\n
+ \ \"2603:1020:206:c02::a0/123\",\r\n \"2603:1020:305:402::a0/123\",\r\n
+ \ \"2603:1020:405:402::a0/123\",\r\n \"2603:1020:605:402::a0/123\",\r\n
+ \ \"2603:1020:705:402::a0/123\",\r\n \"2603:1020:705:802::a0/123\",\r\n
+ \ \"2603:1020:705:c02::a0/123\",\r\n \"2603:1020:805:402::a0/123\",\r\n
+ \ \"2603:1020:805:802::a0/123\",\r\n \"2603:1020:805:c02::a0/123\",\r\n
+ \ \"2603:1020:905:402::a0/123\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\",\r\n
+ \ \"2603:1020:b04:402::a0/123\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\",\r\n
+ \ \"2603:1020:d04:402::a0/123\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\",\r\n
+ \ \"2603:1020:f04:402::a0/123\",\r\n \"2603:1020:1004:400::a0/123\",\r\n
+ \ \"2603:1020:1004:800::160/123\",\r\n \"2603:1020:1004:800::360/123\",\r\n
+ \ \"2603:1020:1104:400::a0/123\",\r\n \"2603:1030:f:400::8a0/123\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\",\r\n \"2603:1030:104:402::a0/123\",\r\n
+ \ \"2603:1030:107:400::20/123\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\",\r\n
+ \ \"2603:1030:40b:400::8a0/123\",\r\n \"2603:1030:40b:800::a0/123\",\r\n
+ \ \"2603:1030:40b:c00::a0/123\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\",\r\n
+ \ \"2603:1030:504:402::a0/123\",\r\n \"2603:1030:504:802::160/123\",\r\n
+ \ \"2603:1030:504:802::360/123\",\r\n \"2603:1030:504:c02::3a0/123\",\r\n
+ \ \"2603:1030:608:402::a0/123\",\r\n \"2603:1030:807:402::a0/123\",\r\n
+ \ \"2603:1030:807:802::a0/123\",\r\n \"2603:1030:807:c02::a0/123\",\r\n
+ \ \"2603:1030:a07:402::a0/123\",\r\n \"2603:1030:b04:402::a0/123\",\r\n
+ \ \"2603:1030:c06:400::8a0/123\",\r\n \"2603:1030:c06:802::a0/123\",\r\n
+ \ \"2603:1030:c06:c02::a0/123\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\",\r\n
+ \ \"2603:1030:1005:402::a0/123\",\r\n \"2603:1040:5:402::a0/123\",\r\n
+ \ \"2603:1040:5:802::a0/123\",\r\n \"2603:1040:5:c02::a0/123\",\r\n
+ \ \"2603:1040:207:402::a0/123\",\r\n \"2603:1040:407:402::a0/123\",\r\n
+ \ \"2603:1040:407:802::a0/123\",\r\n \"2603:1040:407:c02::a0/123\",\r\n
+ \ \"2603:1040:606:402::a0/123\",\r\n \"2603:1040:806:402::a0/123\",\r\n
+ \ \"2603:1040:904:402::a0/123\",\r\n \"2603:1040:904:802::a0/123\",\r\n
+ \ \"2603:1040:904:c02::a0/123\",\r\n \"2603:1040:a06:402::a0/123\",\r\n
+ \ \"2603:1040:a06:802::a0/123\",\r\n \"2603:1040:a06:c02::a0/123\",\r\n
+ \ \"2603:1040:b04:402::a0/123\",\r\n \"2603:1040:c06:402::a0/123\",\r\n
+ \ \"2603:1040:d04:400::a0/123\",\r\n \"2603:1040:d04:800::160/123\",\r\n
+ \ \"2603:1040:d04:800::360/123\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\",\r\n
+ \ \"2603:1040:1104:400::a0/123\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\",\r\n
+ \ \"2603:1050:403:400::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaCentral\",\r\n \"id\":
+ \"AppService.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.43.207/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.37.226.0/27\",\r\n \"2603:1010:304:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppService.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.230/32\",\r\n \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n
+ \ \"2603:1010:404:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaEast\",\r\n \"id\": \"AppService.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"20.37.196.192/27\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n \"40.126.242.59/32\",\r\n
+ \ \"40.126.245.169/32\",\r\n \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n
+ \ \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n \"52.237.246.162/32\",\r\n
+ \ \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppService.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.77.7.175/32\",\r\n
+ \ \"13.77.50.96/27\",\r\n \"20.42.228.160/27\",\r\n \"23.101.224.24/32\",\r\n
+ \ \"23.101.230.162/32\",\r\n \"52.189.213.49/32\",\r\n \"52.255.35.249/32\",\r\n
+ \ \"52.255.54.134/32\",\r\n \"191.239.188.11/32\",\r\n \"2603:1010:101:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.BrazilSouth\",\r\n
+ \ \"id\": \"AppService.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.96.32/32\",\r\n \"104.41.9.139/32\",\r\n \"104.41.13.179/32\",\r\n
+ \ \"104.41.63.108/32\",\r\n \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaCentral\",\r\n
+ \ \"id\": \"AppService.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.128/27\",\r\n \"20.38.146.160/27\",\r\n
+ \ \"40.82.191.84/32\",\r\n \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaEast\",\r\n
+ \ \"id\": \"AppService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.96/27\",\r\n \"40.86.225.89/32\",\r\n
+ \ \"40.86.230.96/32\",\r\n \"40.89.19.0/27\",\r\n \"52.229.115.84/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"2603:1030:1005:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CentralIndia\",\r\n
+ \ \"id\": \"AppService.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.98.160/27\",\r\n \"40.80.50.160/27\",\r\n
+ \ \"52.140.106.224/27\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"2603:1040:a06:402::a0/123\",\r\n \"2603:1040:a06:802::a0/123\",\r\n
+ \ \"2603:1040:a06:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUS\",\r\n \"id\": \"AppService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.129.26/32\",\r\n \"13.67.141.98/32\",\r\n
+ \ \"13.89.57.7/32\",\r\n \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n
+ \ \"23.99.192.132/32\",\r\n \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n
+ \ \"23.99.224.56/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.118.145/32\",\r\n
+ \ \"23.101.119.44/32\",\r\n \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n
+ \ \"23.101.125.65/32\",\r\n \"40.69.190.41/32\",\r\n \"40.77.56.174/32\",\r\n
+ \ \"40.83.16.172/32\",\r\n \"40.86.86.144/32\",\r\n \"40.86.91.212/32\",\r\n
+ \ \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.173.28.95/32\",\r\n
+ \ \"52.173.36.83/32\",\r\n \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n
+ \ \"52.173.83.49/32\",\r\n \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n
+ \ \"52.173.94.173/32\",\r\n \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n
+ \ \"52.173.139.125/32\",\r\n \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n
+ \ \"52.173.184.147/32\",\r\n \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n
+ \ \"52.176.2.229/32\",\r\n \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n
+ \ \"52.176.6.37/32\",\r\n \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n
+ \ \"52.176.149.197/32\",\r\n \"52.176.165.69/32\",\r\n \"104.43.129.105/32\",\r\n
+ \ \"104.43.140.101/32\",\r\n \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n
+ \ \"104.43.246.71/32\",\r\n \"104.43.254.102/32\",\r\n \"168.61.152.29/32\",\r\n
+ \ \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n \"168.61.218.125/32\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUSEUAP\",\r\n \"id\": \"AppService.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.196.16/29\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"52.180.178.6/32\",\r\n \"52.180.183.66/32\",\r\n \"104.208.48.107/32\",\r\n
+ \ \"2603:1030:f:400::8a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.EastAsia\",\r\n \"id\": \"AppService.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n
+ \ \"13.75.47.15/32\",\r\n \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n
+ \ \"13.75.115.40/32\",\r\n \"13.94.47.87/32\",\r\n \"20.189.104.96/27\",\r\n
+ \ \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n \"23.97.79.119/32\",\r\n
+ \ \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"40.83.72.59/32\",\r\n \"40.83.124.73/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"191.234.16.188/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1040:207:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS\",\r\n
+ \ \"id\": \"AppService.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n
+ \ \"13.82.175.96/32\",\r\n \"13.90.143.69/32\",\r\n \"13.90.213.204/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.49.104.0/25\",\r\n \"23.96.0.52/32\",\r\n
+ \ \"23.96.1.109/32\",\r\n \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n
+ \ \"23.96.96.142/32\",\r\n \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n
+ \ \"23.96.113.128/32\",\r\n \"23.96.124.25/32\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.76.5.137/32\",\r\n
+ \ \"40.76.192.15/32\",\r\n \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n
+ \ \"40.76.223.101/32\",\r\n \"40.79.154.192/27\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.87.65.131/32\",\r\n \"40.87.70.95/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.179.97.15/32\",\r\n
+ \ \"52.226.134.64/32\",\r\n \"52.234.209.94/32\",\r\n \"104.45.129.178/32\",\r\n
+ \ \"104.45.141.247/32\",\r\n \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n
+ \ \"104.45.154.200/32\",\r\n \"104.211.26.212/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"168.62.48.183/32\",\r\n \"168.62.180.173/32\",\r\n \"191.236.16.12/32\",\r\n
+ \ \"191.236.59.67/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2\",\r\n
+ \ \"id\": \"AppService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.77.82.141/32\",\r\n \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"23.101.147.117/32\",\r\n \"40.70.27.35/32\",\r\n
+ \ \"40.70.147.0/25\",\r\n \"40.79.65.200/32\",\r\n \"40.84.54.203/32\",\r\n
+ \ \"40.84.59.174/32\",\r\n \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n
+ \ \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n \"52.177.206.73/32\",\r\n
+ \ \"52.179.188.206/32\",\r\n \"52.184.162.135/32\",\r\n \"52.184.193.103/32\",\r\n
+ \ \"52.184.193.104/32\",\r\n \"104.46.101.59/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n \"191.236.192.121/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2EUAP\",\r\n
+ \ \"id\": \"AppService.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.11.104/29\",\r\n \"52.225.179.39/32\",\r\n
+ \ \"52.225.190.65/32\",\r\n \"52.253.224.223/32\",\r\n \"2603:1030:40b:400::8a0/123\",\r\n
+ \ \"2603:1030:40b:800::a0/123\",\r\n \"2603:1030:40b:c00::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.FranceCentral\",\r\n
+ \ \"id\": \"AppService.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.43.32/27\",\r\n \"40.79.130.128/27\",\r\n
+ \ \"40.89.131.148/32\",\r\n \"40.89.141.103/32\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"2603:1020:805:402::a0/123\",\r\n \"2603:1020:805:802::a0/123\",\r\n
+ \ \"2603:1020:805:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.FranceSouth\",\r\n \"id\": \"AppService.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.79.178.96/27\",\r\n \"51.105.90.32/27\",\r\n
+ \ \"52.136.138.55/32\",\r\n \"2603:1020:905:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.GermanyNorth\",\r\n
+ \ \"id\": \"AppService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"2603:1020:d04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.GermanyWestCentral\",\r\n \"id\":
+ \"AppService.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n
+ \ \"51.116.242.160/27\",\r\n \"51.116.250.160/27\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.JapanEast\",\r\n
+ \ \"id\": \"AppService.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.149.151/32\",\r\n \"13.73.1.134/32\",\r\n
+ \ \"13.73.26.73/32\",\r\n \"13.78.59.237/32\",\r\n \"13.78.106.96/27\",\r\n
+ \ \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n \"20.43.67.32/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.115.179.121/32\",\r\n \"40.115.251.148/32\",\r\n
+ \ \"52.243.39.89/32\",\r\n \"104.41.186.103/32\",\r\n \"138.91.0.30/32\",\r\n
+ \ \"2603:1040:407:402::a0/123\",\r\n \"2603:1040:407:802::a0/123\",\r\n
+ \ \"2603:1040:407:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.JapanWest\",\r\n \"id\": \"AppService.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.128/27\",\r\n \"40.74.133.20/32\",\r\n
+ \ \"40.80.58.224/27\",\r\n \"52.175.158.219/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.215.11.176/32\",\r\n \"104.215.58.230/32\",\r\n \"138.91.16.18/32\",\r\n
+ \ \"2603:1040:606:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.KoreaCentral\",\r\n \"id\": \"AppService.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.66.224/27\",\r\n \"20.44.26.160/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n
+ \ \"52.231.38.95/32\",\r\n \"52.231.77.58/32\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.KoreaSouth\",\r\n
+ \ \"id\": \"AppService.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.224/27\",\r\n \"52.231.146.96/27\",\r\n
+ \ \"52.231.200.101/32\",\r\n \"52.231.200.179/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AppService.NorthCentralUS\",\r\n
+ \ \"id\": \"AppService.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n \"23.96.207.177/32\",\r\n
+ \ \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n \"23.100.72.240/32\",\r\n
+ \ \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n \"23.101.172.244/32\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.252.160.21/32\",\r\n \"65.52.24.41/32\",\r\n \"65.52.213.73/32\",\r\n
+ \ \"65.52.217.59/32\",\r\n \"65.52.218.253/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"2603:1030:608:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorthEurope\",\r\n \"id\": \"AppService.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.74.41.233/32\",\r\n \"13.74.147.218/32\",\r\n
+ \ \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"20.50.64.0/25\",\r\n
+ \ \"23.100.48.106/32\",\r\n \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n
+ \ \"23.100.56.27/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.102.12.43/32\",\r\n \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n
+ \ \"23.102.25.149/32\",\r\n \"23.102.28.178/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n
+ \ \"40.69.218.150/32\",\r\n \"40.85.74.227/32\",\r\n \"40.85.92.115/32\",\r\n
+ \ \"40.85.96.208/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.113.2.52/32\",\r\n \"40.113.65.9/32\",\r\n
+ \ \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n \"40.113.90.202/32\",\r\n
+ \ \"40.115.98.85/32\",\r\n \"40.127.132.204/32\",\r\n \"40.127.139.252/32\",\r\n
+ \ \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n \"52.178.179.169/32\",\r\n
+ \ \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n \"52.178.208.12/32\",\r\n
+ \ \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"168.63.53.239/32\",\r\n \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n
+ \ \"191.235.177.30/32\",\r\n \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"2603:1020:5:402::a0/123\",\r\n \"2603:1020:5:802::a0/123\",\r\n
+ \ \"2603:1020:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorwayEast\",\r\n \"id\": \"AppService.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.NorwayWest\",\r\n
+ \ \"id\": \"AppService.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.192/27\",\r\n \"51.120.226.0/27\",\r\n
+ \ \"2603:1020:f04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaNorth\",\r\n \"id\":
+ \"AppService.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.160/27\",\r\n \"102.133.154.32/27\",\r\n
+ \ \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaWest\",\r\n \"id\":
+ \"AppService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n
+ \ \"2603:1000:4:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthCentralUS\",\r\n \"id\": \"AppService.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.30.245/32\",\r\n \"13.65.37.122/32\",\r\n
+ \ \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n \"13.65.42.183/32\",\r\n
+ \ \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n \"13.65.89.91/32\",\r\n
+ \ \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n \"13.65.95.109/32\",\r\n
+ \ \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n \"13.65.210.166/32\",\r\n
+ \ \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n \"13.65.243.110/32\",\r\n
+ \ \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n \"13.66.39.88/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.49.90.32/27\",\r\n \"23.101.180.75/32\",\r\n \"23.102.154.38/32\",\r\n
+ \ \"23.102.161.217/32\",\r\n \"23.102.191.170/32\",\r\n \"40.74.245.188/32\",\r\n
+ \ \"40.74.253.108/32\",\r\n \"40.74.255.112/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.124.12.75/32\",\r\n \"40.124.13.58/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n \"104.210.145.181/32\",\r\n
+ \ \"104.210.147.57/32\",\r\n \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"2603:1030:807:402::a0/123\",\r\n \"2603:1030:807:802::a0/123\",\r\n
+ \ \"2603:1030:807:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SoutheastAsia\",\r\n \"id\": \"AppService.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.9.0/25\",\r\n \"13.67.56.225/32\",\r\n
+ \ \"13.67.63.90/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"20.43.132.128/25\",\r\n \"20.188.98.74/32\",\r\n \"23.97.56.169/32\",\r\n
+ \ \"23.98.64.36/32\",\r\n \"23.98.64.158/32\",\r\n \"23.101.27.182/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.187.17.126/32\",\r\n \"52.187.36.104/32\",\r\n
+ \ \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n \"111.221.95.27/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"2603:1040:5:402::a0/123\",\r\n \"2603:1040:5:802::a0/123\",\r\n
+ \ \"2603:1040:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthIndia\",\r\n \"id\": \"AppService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.122.35/32\",\r\n \"13.71.123.138/32\",\r\n
+ \ \"20.41.195.192/27\",\r\n \"40.78.194.96/27\",\r\n \"52.172.54.225/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"2603:1040:c06:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SwitzerlandNorth\",\r\n \"id\":
+ \"AppService.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"51.107.50.0/27\",\r\n
+ \ \"51.107.58.160/27\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppService.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.146.0/27\",\r\n \"51.107.154.160/27\",\r\n
+ \ \"2603:1020:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAECentral\",\r\n \"id\": \"AppService.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.66.0/27\",\r\n \"20.37.74.96/27\",\r\n
+ \ \"2603:1040:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAENorth\",\r\n \"id\": \"AppService.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.138.0/27\",\r\n \"40.120.74.32/27\",\r\n
+ \ \"65.52.250.96/27\",\r\n \"2603:1040:904:402::a0/123\",\r\n
+ \ \"2603:1040:904:802::a0/123\",\r\n \"2603:1040:904:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKNorth\",\r\n
+ \ \"id\": \"AppService.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:305:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth\",\r\n
+ \ \"id\": \"AppService.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"2603:1020:705:402::a0/123\",\r\n
+ \ \"2603:1020:705:802::a0/123\",\r\n \"2603:1020:705:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth2\",\r\n
+ \ \"id\": \"AppService.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:405:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKWest\",\r\n
+ \ \"id\": \"AppService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.163.32/27\",\r\n \"51.140.210.96/27\",\r\n
+ \ \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n \"51.141.12.112/32\",\r\n
+ \ \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n \"51.141.45.207/32\",\r\n
+ \ \"51.141.90.252/32\",\r\n \"2603:1020:605:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestCentralUS\",\r\n
+ \ \"id\": \"AppService.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.192/27\",\r\n \"13.78.150.96/32\",\r\n
+ \ \"13.78.184.89/32\",\r\n \"52.150.140.224/27\",\r\n \"52.161.96.193/32\",\r\n
+ \ \"2603:1030:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestEurope\",\r\n \"id\": \"AppService.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.68.0/23\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.94.143.57/32\",\r\n \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n
+ \ \"13.95.82.181/32\",\r\n \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n
+ \ \"13.95.238.192/32\",\r\n \"20.50.2.0/23\",\r\n \"23.97.160.56/32\",\r\n
+ \ \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n \"23.97.195.129/32\",\r\n
+ \ \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n \"23.97.216.47/32\",\r\n
+ \ \"23.97.224.11/32\",\r\n \"23.100.1.29/32\",\r\n \"23.101.67.245/32\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.113.126.251/32\",\r\n
+ \ \"40.113.131.37/32\",\r\n \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n
+ \ \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n \"40.114.228.161/32\",\r\n
+ \ \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n \"40.115.55.251/32\",\r\n
+ \ \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n \"40.118.96.231/32\",\r\n
+ \ \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n \"40.118.102.46/32\",\r\n
+ \ \"51.105.172.25/32\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n \"51.144.116.43/32\",\r\n
+ \ \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.178.29.39/32\",\r\n
+ \ \"52.178.37.244/32\",\r\n \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n
+ \ \"52.178.46.181/32\",\r\n \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n
+ \ \"52.178.89.129/32\",\r\n \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n
+ \ \"52.178.105.179/32\",\r\n \"52.178.114.226/32\",\r\n \"52.232.19.237/32\",\r\n
+ \ \"52.232.26.228/32\",\r\n \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n
+ \ \"52.232.127.196/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"104.40.129.89/32\",\r\n
+ \ \"104.40.147.180/32\",\r\n \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n
+ \ \"104.40.179.243/32\",\r\n \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n
+ \ \"104.40.187.26/32\",\r\n \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n
+ \ \"104.40.215.219/32\",\r\n \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.47.137.62/32\",\r\n
+ \ \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n \"104.47.164.119/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"137.117.166.35/32\",\r\n
+ \ \"137.117.175.14/32\",\r\n \"137.117.203.130/32\",\r\n
+ \ \"137.117.211.244/32\",\r\n \"137.117.218.101/32\",\r\n
+ \ \"137.117.224.218/32\",\r\n \"137.117.225.87/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.107.5/32\",\r\n \"191.233.82.44/32\",\r\n
+ \ \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n \"2603:1020:206:402::a0/123\",\r\n
+ \ \"2603:1020:206:802::a0/123\",\r\n \"2603:1020:206:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestIndia\",\r\n
+ \ \"id\": \"AppService.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.50.0/27\",\r\n \"104.211.146.96/27\",\r\n
+ \ \"104.211.160.159/32\",\r\n \"104.211.179.11/32\",\r\n
+ \ \"104.211.184.197/32\",\r\n \"2603:1040:806:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestUS\",\r\n
+ \ \"id\": \"AppService.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.73.110/32\",\r\n \"13.91.40.166/32\",\r\n
+ \ \"13.91.242.166/32\",\r\n \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n
+ \ \"13.93.220.109/32\",\r\n \"13.93.231.75/32\",\r\n \"23.99.0.12/32\",\r\n
+ \ \"23.99.65.65/32\",\r\n \"23.99.91.55/32\",\r\n \"23.100.46.198/32\",\r\n
+ \ \"23.101.203.117/32\",\r\n \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n
+ \ \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n \"40.78.48.219/32\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.82.255.128/25\",\r\n
+ \ \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n \"40.83.182.206/32\",\r\n
+ \ \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n \"40.112.142.148/32\",\r\n
+ \ \"40.112.143.134/32\",\r\n \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n
+ \ \"40.112.165.44/32\",\r\n \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n
+ \ \"40.112.192.69/32\",\r\n \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n
+ \ \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n \"40.118.246.51/32\",\r\n
+ \ \"40.118.255.59/32\",\r\n \"52.160.40.218/32\",\r\n \"104.40.3.53/32\",\r\n
+ \ \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n \"104.40.53.219/32\",\r\n
+ \ \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n \"104.40.92.107/32\",\r\n
+ \ \"104.42.53.248/32\",\r\n \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n
+ \ \"104.42.148.55/32\",\r\n \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n
+ \ \"104.42.188.146/32\",\r\n \"104.42.231.5/32\",\r\n \"104.45.226.98/32\",\r\n
+ \ \"104.45.231.79/32\",\r\n \"104.210.38.149/32\",\r\n \"137.117.9.212/32\",\r\n
+ \ \"137.117.17.70/32\",\r\n \"138.91.224.84/32\",\r\n \"138.91.225.40/32\",\r\n
+ \ \"138.91.240.81/32\",\r\n \"168.62.20.37/32\",\r\n \"191.236.80.12/32\",\r\n
+ \ \"191.236.106.123/32\",\r\n \"191.239.58.162/32\",\r\n
+ \ \"2603:1030:a07:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestUS2\",\r\n \"id\": \"AppService.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"20.42.128.96/27\",\r\n
+ \ \"40.64.128.224/27\",\r\n \"51.143.102.21/32\",\r\n \"52.151.62.51/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.183.82.125/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"2603:1030:c06:400::8a0/123\",\r\n
+ \ \"2603:1030:c06:802::a0/123\",\r\n \"2603:1030:c06:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement\",\r\n
+ \ \"id\": \"AppServiceManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppServiceManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n \"13.66.140.0/26\",\r\n
+ \ \"13.67.8.128/26\",\r\n \"13.69.64.128/26\",\r\n \"13.69.227.128/26\",\r\n
+ \ \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"13.71.170.64/26\",\r\n
+ \ \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n \"13.71.194.128/26\",\r\n
+ \ \"13.73.240.128/26\",\r\n \"13.73.242.64/26\",\r\n \"13.75.34.192/26\",\r\n
+ \ \"13.75.127.117/32\",\r\n \"13.77.50.128/26\",\r\n \"13.78.106.128/26\",\r\n
+ \ \"13.78.109.0/26\",\r\n \"13.87.56.128/26\",\r\n \"13.87.122.128/26\",\r\n
+ \ \"13.89.171.0/26\",\r\n \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n
+ \ \"13.94.149.179/32\",\r\n \"20.36.106.128/26\",\r\n \"20.36.114.64/26\",\r\n
+ \ \"20.37.74.128/26\",\r\n \"20.43.120.128/26\",\r\n \"20.44.2.192/26\",\r\n
+ \ \"20.44.27.0/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.82.128/26\",\r\n
+ \ \"20.49.90.128/26\",\r\n \"20.72.26.192/26\",\r\n \"20.150.171.0/26\",\r\n
+ \ \"20.150.179.0/26\",\r\n \"20.150.187.0/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"20.192.234.192/26\",\r\n \"20.193.202.192/26\",\r\n \"20.194.66.128/26\",\r\n
+ \ \"23.96.195.3/32\",\r\n \"23.100.226.236/32\",\r\n \"23.102.188.65/32\",\r\n
+ \ \"40.67.59.0/26\",\r\n \"40.69.106.128/26\",\r\n \"40.70.146.128/26\",\r\n
+ \ \"40.71.11.0/26\",\r\n \"40.71.13.64/26\",\r\n \"40.74.100.64/26\",\r\n
+ \ \"40.78.194.128/26\",\r\n \"40.79.130.64/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"40.79.178.128/26\",\r\n \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n
+ \ \"40.83.125.161/32\",\r\n \"40.90.240.166/32\",\r\n \"40.91.126.196/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"40.119.4.111/32\",\r\n \"40.120.74.128/26\",\r\n
+ \ \"40.124.47.188/32\",\r\n \"51.12.99.0/26\",\r\n \"51.12.203.0/26\",\r\n
+ \ \"51.12.227.0/26\",\r\n \"51.12.235.0/26\",\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.107.58.192/26\",\r\n \"51.107.154.192/26\",\r\n
+ \ \"51.116.58.192/26\",\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"51.120.219.0/26\",\r\n
+ \ \"51.140.146.64/26\",\r\n \"51.140.210.128/26\",\r\n \"52.151.25.45/32\",\r\n
+ \ \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"52.178.177.147/32\",\r\n \"52.178.184.149/32\",\r\n
+ \ \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n \"52.187.56.50/32\",\r\n
+ \ \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n \"52.187.63.37/32\",\r\n
+ \ \"52.224.105.172/32\",\r\n \"52.225.177.15/32\",\r\n \"52.225.177.153/32\",\r\n
+ \ \"52.231.18.64/26\",\r\n \"52.231.146.128/26\",\r\n \"52.246.157.64/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.172.237/32\",\r\n \"65.52.193.203/32\",\r\n
+ \ \"65.52.250.128/26\",\r\n \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n
+ \ \"102.133.26.192/26\",\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"104.43.242.137/32\",\r\n
+ \ \"104.44.129.141/32\",\r\n \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n
+ \ \"104.44.134.255/32\",\r\n \"104.208.54.11/32\",\r\n \"104.211.81.64/26\",\r\n
+ \ \"104.211.146.128/26\",\r\n \"104.214.18.192/26\",\r\n
+ \ \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"168.61.143.0/26\",\r\n \"191.233.50.128/26\",\r\n \"191.233.203.64/26\",\r\n
+ \ \"191.234.147.0/26\",\r\n \"191.234.155.0/26\",\r\n \"191.236.154.88/32\",\r\n
+ \ \"2603:1000:4:402::100/122\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\",\r\n \"2603:1010:101:402::100/122\",\r\n
+ \ \"2603:1010:304:402::100/122\",\r\n \"2603:1010:404:402::100/122\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\",\r\n
+ \ \"2603:1020:305:402::100/122\",\r\n \"2603:1020:405:402::100/122\",\r\n
+ \ \"2603:1020:605:402::100/122\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\",\r\n
+ \ \"2603:1020:805:402::100/122\",\r\n \"2603:1020:805:802::100/122\",\r\n
+ \ \"2603:1020:805:c02::100/122\",\r\n \"2603:1020:905:402::100/122\",\r\n
+ \ \"2603:1020:a04:402::100/122\",\r\n \"2603:1020:a04:802::100/122\",\r\n
+ \ \"2603:1020:a04:c02::100/122\",\r\n \"2603:1020:b04:402::100/122\",\r\n
+ \ \"2603:1020:c04:402::100/122\",\r\n \"2603:1020:c04:802::100/122\",\r\n
+ \ \"2603:1020:c04:c02::100/122\",\r\n \"2603:1020:d04:402::100/122\",\r\n
+ \ \"2603:1020:e04:402::100/122\",\r\n \"2603:1020:e04:802::100/122\",\r\n
+ \ \"2603:1020:e04:c02::100/122\",\r\n \"2603:1020:f04:402::100/122\",\r\n
+ \ \"2603:1020:1004:400::440/122\",\r\n \"2603:1020:1004:800::80/122\",\r\n
+ \ \"2603:1020:1004:800::200/122\",\r\n \"2603:1020:1004:800::380/122\",\r\n
+ \ \"2603:1020:1104:400::100/122\",\r\n \"2603:1030:f:400::900/122\",\r\n
+ \ \"2603:1030:10:402::100/122\",\r\n \"2603:1030:10:802::100/122\",\r\n
+ \ \"2603:1030:10:c02::100/122\",\r\n \"2603:1030:104:402::100/122\",\r\n
+ \ \"2603:1030:107:400::80/122\",\r\n \"2603:1030:210:402::100/122\",\r\n
+ \ \"2603:1030:210:802::100/122\",\r\n \"2603:1030:210:c02::100/122\",\r\n
+ \ \"2603:1030:40b:400::900/122\",\r\n \"2603:1030:40b:800::100/122\",\r\n
+ \ \"2603:1030:40b:c00::100/122\",\r\n \"2603:1030:40c:402::100/122\",\r\n
+ \ \"2603:1030:40c:802::100/122\",\r\n \"2603:1030:40c:c02::100/122\",\r\n
+ \ \"2603:1030:504:402::400/122\",\r\n \"2603:1030:504:802::80/122\",\r\n
+ \ \"2603:1030:504:802::380/122\",\r\n \"2603:1030:608:402::100/122\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\",\r\n \"2603:1030:a07:402::880/122\",\r\n
+ \ \"2603:1030:b04:402::100/122\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\",\r\n
+ \ \"2603:1030:f05:402::100/122\",\r\n \"2603:1030:f05:802::100/122\",\r\n
+ \ \"2603:1030:f05:c02::100/122\",\r\n \"2603:1030:1005:402::100/122\",\r\n
+ \ \"2603:1040:5:402::100/122\",\r\n \"2603:1040:5:802::100/122\",\r\n
+ \ \"2603:1040:5:c02::100/122\",\r\n \"2603:1040:207:402::100/122\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\",\r\n \"2603:1040:606:402::100/122\",\r\n
+ \ \"2603:1040:806:402::100/122\",\r\n \"2603:1040:904:402::100/122\",\r\n
+ \ \"2603:1040:904:802::100/122\",\r\n \"2603:1040:904:c02::100/122\",\r\n
+ \ \"2603:1040:a06:402::100/122\",\r\n \"2603:1040:a06:802::100/122\",\r\n
+ \ \"2603:1040:a06:c02::100/122\",\r\n \"2603:1040:b04:402::100/122\",\r\n
+ \ \"2603:1040:c06:402::100/122\",\r\n \"2603:1040:d04:400::440/122\",\r\n
+ \ \"2603:1040:d04:800::80/122\",\r\n \"2603:1040:d04:800::200/122\",\r\n
+ \ \"2603:1040:d04:800::380/122\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\",\r\n
+ \ \"2603:1040:1104:400::100/122\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\",\r\n
+ \ \"2603:1050:403:400::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaCentral\",\r\n \"id\":
+ \"AppServiceManagement.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.128/26\",\r\n \"2603:1010:304:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.64/26\",\r\n \"2603:1010:404:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.128/26\",\r\n \"2603:1010:101:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.BrazilSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.64/26\",\r\n \"191.234.147.0/26\",\r\n
+ \ \"191.234.155.0/26\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.64/26\",\r\n \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n
+ \ \"52.246.157.64/26\",\r\n \"2603:1030:f05:402::100/122\",\r\n
+ \ \"2603:1030:f05:802::100/122\",\r\n \"2603:1030:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.128/26\",\r\n \"2603:1030:1005:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.128/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"104.211.81.64/26\",\r\n \"2603:1040:a06:402::100/122\",\r\n
+ \ \"2603:1040:a06:802::100/122\",\r\n \"2603:1040:a06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.0/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"104.43.242.137/32\",\r\n \"2603:1030:10:402::100/122\",\r\n
+ \ \"2603:1030:10:802::100/122\",\r\n \"2603:1030:10:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastAsia\",\r\n
+ \ \"id\": \"AppServiceManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.192/26\",\r\n \"13.75.127.117/32\",\r\n
+ \ \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n \"40.83.125.161/32\",\r\n
+ \ \"65.52.172.237/32\",\r\n \"2603:1040:207:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastUS\",\r\n
+ \ \"id\": \"AppServiceManagement.EastUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.0/26\",\r\n
+ \ \"40.71.13.64/26\",\r\n \"40.90.240.166/32\",\r\n \"52.224.105.172/32\",\r\n
+ \ \"2603:1030:210:402::100/122\",\r\n \"2603:1030:210:802::100/122\",\r\n
+ \ \"2603:1030:210:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.128/26\",\r\n
+ \ \"2603:1030:40c:402::100/122\",\r\n \"2603:1030:40c:802::100/122\",\r\n
+ \ \"2603:1030:40c:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2EUAP\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"52.225.177.15/32\",\r\n
+ \ \"52.225.177.153/32\",\r\n \"2603:1030:40b:400::900/122\",\r\n
+ \ \"2603:1030:40b:800::100/122\",\r\n \"2603:1030:40b:c00::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.64/26\",\r\n \"2603:1020:805:402::100/122\",\r\n
+ \ \"2603:1020:805:802::100/122\",\r\n \"2603:1020:805:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.128/26\",\r\n \"2603:1020:905:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.192/26\",\r\n \"2603:1020:d04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"2603:1020:c04:402::100/122\",\r\n
+ \ \"2603:1020:c04:802::100/122\",\r\n \"2603:1020:c04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.JapanEast\",\r\n
+ \ \"id\": \"AppServiceManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.128/26\",\r\n \"13.78.109.0/26\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.JapanWest\",\r\n \"id\":
+ \"AppServiceManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.100.64/26\",\r\n
+ \ \"2603:1040:606:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.KoreaCentral\",\r\n \"id\":
+ \"AppServiceManagement.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.0/26\",\r\n
+ \ \"20.194.66.128/26\",\r\n \"52.231.18.64/26\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.KoreaSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.128/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorthCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"23.96.195.3/32\",\r\n
+ \ \"23.100.226.236/32\",\r\n \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.193.203/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"191.236.154.88/32\",\r\n \"2603:1030:608:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorthEurope\",\r\n
+ \ \"id\": \"AppServiceManagement.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.128/26\",\r\n \"52.178.177.147/32\",\r\n
+ \ \"52.178.184.149/32\",\r\n \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorwayEast\",\r\n \"id\":
+ \"AppServiceManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"2603:1020:e04:402::100/122\",\r\n
+ \ \"2603:1020:e04:802::100/122\",\r\n \"2603:1020:e04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorwayWest\",\r\n
+ \ \"id\": \"AppServiceManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.219.0/26\",\r\n \"2603:1020:f04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.192/26\",\r\n \"2603:1000:4:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.128/26\",\r\n
+ \ \"13.73.242.64/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.90.128/26\",\r\n
+ \ \"23.102.188.65/32\",\r\n \"40.119.4.111/32\",\r\n \"40.124.47.188/32\",\r\n
+ \ \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n \"104.44.129.141/32\",\r\n
+ \ \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n \"104.44.134.255/32\",\r\n
+ \ \"104.214.18.192/26\",\r\n \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.SoutheastAsia\",\r\n \"id\":
+ \"AppServiceManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.128/26\",\r\n
+ \ \"52.187.56.50/32\",\r\n \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n
+ \ \"52.187.63.37/32\",\r\n \"2603:1040:5:402::100/122\",\r\n
+ \ \"2603:1040:5:802::100/122\",\r\n \"2603:1040:5:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.128/26\",\r\n \"2603:1040:c06:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.192/26\",\r\n \"2603:1020:a04:402::100/122\",\r\n
+ \ \"2603:1020:a04:802::100/122\",\r\n \"2603:1020:a04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.192/26\",\r\n \"2603:1020:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAECentral\",\r\n
+ \ \"id\": \"AppServiceManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.128/26\",\r\n \"2603:1040:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAENorth\",\r\n
+ \ \"id\": \"AppServiceManagement.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.128/26\",\r\n \"65.52.250.128/26\",\r\n
+ \ \"2603:1040:904:402::100/122\",\r\n \"2603:1040:904:802::100/122\",\r\n
+ \ \"2603:1040:904:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKSouth\",\r\n \"id\":
+ \"AppServiceManagement.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.140.146.64/26\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UKSouth2\",\r\n
+ \ \"id\": \"AppServiceManagement.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.56.128/26\",\r\n
+ \ \"2603:1020:405:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKWest\",\r\n \"id\":
+ \"AppServiceManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.128/26\",\r\n
+ \ \"2603:1020:605:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.128/26\",\r\n
+ \ \"2603:1030:b04:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestEurope\",\r\n \"id\":
+ \"AppServiceManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.128/26\",\r\n
+ \ \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n \"13.94.149.179/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.128/26\",\r\n \"2603:1040:806:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"2603:1030:a07:402::880/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS2\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.0/26\",\r\n
+ \ \"40.91.126.196/32\",\r\n \"52.151.25.45/32\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectory\",\r\n
+ \ \"id\": \"AzureActiveDirectory\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAD\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n \"13.66.141.64/27\",\r\n
+ \ \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n \"13.69.229.96/27\",\r\n
+ \ \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n \"13.71.195.224/27\",\r\n
+ \ \"13.71.201.64/26\",\r\n \"13.73.240.32/27\",\r\n \"13.74.104.0/26\",\r\n
+ \ \"13.74.249.156/32\",\r\n \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n
+ \ \"13.77.52.160/27\",\r\n \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n
+ \ \"13.79.37.247/32\",\r\n \"13.86.219.0/27\",\r\n \"13.87.16.0/26\",\r\n
+ \ \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n \"13.89.174.0/27\",\r\n
+ \ \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n \"20.37.75.96/27\",\r\n
+ \ \"20.40.228.64/28\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.9.80/28\",\r\n
+ \ \"20.51.16.128/27\",\r\n \"20.61.98.160/27\",\r\n \"20.61.99.128/28\",\r\n
+ \ \"20.62.58.80/28\",\r\n \"20.62.129.0/27\",\r\n \"20.62.129.240/28\",\r\n
+ \ \"20.65.132.96/28\",\r\n \"20.66.2.32/27\",\r\n \"20.66.3.16/28\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.187.197.240/28\",\r\n \"20.190.128.0/18\",\r\n
+ \ \"20.194.73.0/28\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"20.195.64.240/28\",\r\n \"23.101.0.70/32\",\r\n
+ \ \"23.101.6.190/32\",\r\n \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n
+ \ \"40.71.13.0/27\",\r\n \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n
+ \ \"40.78.195.160/27\",\r\n \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n
+ \ \"40.79.179.128/27\",\r\n \"40.83.144.56/32\",\r\n \"40.126.0.0/18\",\r\n
+ \ \"51.140.148.192/27\",\r\n \"51.140.208.0/26\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.146.133.80/28\",\r\n \"52.150.157.0/27\",\r\n \"52.159.175.31/32\",\r\n
+ \ \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n \"52.161.110.169/32\",\r\n
+ \ \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n \"52.169.218.0/32\",\r\n
+ \ \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n \"52.178.27.112/32\",\r\n
+ \ \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n \"52.180.177.87/32\",\r\n
+ \ \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n \"52.180.183.8/32\",\r\n
+ \ \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n \"52.187.117.83/32\",\r\n
+ \ \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n \"52.225.188.89/32\",\r\n
+ \ \"52.226.169.40/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.40.168.0/26\",\r\n \"104.41.159.212/32\",\r\n
+ \ \"104.45.138.161/32\",\r\n \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\",\r\n \"2603:1006:2000::/48\",\r\n
+ \ \"2603:1007:200::/48\",\r\n \"2603:1016:1400::/48\",\r\n
+ \ \"2603:1017::/48\",\r\n \"2603:1026:3000::/48\",\r\n \"2603:1027:1::/48\",\r\n
+ \ \"2603:1036:3000::/48\",\r\n \"2603:1037:1::/48\",\r\n
+ \ \"2603:1046:2000::/48\",\r\n \"2603:1047:1::/48\",\r\n
+ \ \"2603:1056:2000::/48\",\r\n \"2603:1057:2::/48\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectoryDomainServices\",\r\n
+ \ \"id\": \"AzureActiveDirectoryDomainServices\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureIdentity\",\r\n \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n
+ \ \"13.66.141.64/27\",\r\n \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n
+ \ \"13.69.229.96/27\",\r\n \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n
+ \ \"13.71.195.224/27\",\r\n \"13.73.240.32/27\",\r\n \"13.74.249.156/32\",\r\n
+ \ \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n \"13.77.52.160/27\",\r\n
+ \ \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n \"13.79.37.247/32\",\r\n
+ \ \"13.86.219.0/27\",\r\n \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n
+ \ \"13.89.174.0/27\",\r\n \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n
+ \ \"20.37.75.96/27\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.16.128/27\",\r\n
+ \ \"20.61.98.160/27\",\r\n \"20.62.129.0/27\",\r\n \"20.66.2.32/27\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"23.101.0.70/32\",\r\n \"23.101.6.190/32\",\r\n
+ \ \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n \"40.71.13.0/27\",\r\n
+ \ \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n \"40.78.195.160/27\",\r\n
+ \ \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n \"40.79.179.128/27\",\r\n
+ \ \"40.83.144.56/32\",\r\n \"51.140.148.192/27\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.150.157.0/27\",\r\n \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n
+ \ \"52.161.110.169/32\",\r\n \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n
+ \ \"52.169.218.0/32\",\r\n \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n
+ \ \"52.178.27.112/32\",\r\n \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n
+ \ \"52.180.177.87/32\",\r\n \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n
+ \ \"52.180.183.8/32\",\r\n \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n
+ \ \"52.187.117.83/32\",\r\n \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n
+ \ \"52.225.188.89/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.41.159.212/32\",\r\n \"104.45.138.161/32\",\r\n
+ \ \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureAdvancedThreatProtection\",\r\n \"id\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.72.105.31/32\",\r\n \"13.72.105.76/32\",\r\n
+ \ \"13.93.176.195/32\",\r\n \"13.93.176.215/32\",\r\n \"20.36.120.112/29\",\r\n
+ \ \"20.37.64.112/29\",\r\n \"20.37.156.192/29\",\r\n \"20.37.195.8/29\",\r\n
+ \ \"20.37.224.112/29\",\r\n \"20.38.84.96/29\",\r\n \"20.38.136.112/29\",\r\n
+ \ \"20.39.11.16/29\",\r\n \"20.41.4.96/29\",\r\n \"20.41.65.128/29\",\r\n
+ \ \"20.41.192.112/29\",\r\n \"20.42.4.192/29\",\r\n \"20.42.129.176/29\",\r\n
+ \ \"20.42.224.112/29\",\r\n \"20.43.41.144/29\",\r\n \"20.43.65.136/29\",\r\n
+ \ \"20.43.130.88/29\",\r\n \"20.45.112.112/29\",\r\n \"20.45.192.112/29\",\r\n
+ \ \"20.72.16.24/29\",\r\n \"20.150.160.112/29\",\r\n \"20.184.13.55/32\",\r\n
+ \ \"20.184.14.129/32\",\r\n \"20.189.106.120/29\",\r\n \"20.192.160.24/29\",\r\n
+ \ \"20.192.225.16/29\",\r\n \"40.65.107.78/32\",\r\n \"40.65.111.206/32\",\r\n
+ \ \"40.67.48.112/29\",\r\n \"40.74.30.96/29\",\r\n \"40.80.56.112/29\",\r\n
+ \ \"40.80.168.112/29\",\r\n \"40.80.188.16/29\",\r\n \"40.82.253.64/29\",\r\n
+ \ \"40.85.133.119/32\",\r\n \"40.85.133.178/32\",\r\n \"40.87.44.77/32\",\r\n
+ \ \"40.87.45.222/32\",\r\n \"40.89.16.112/29\",\r\n \"40.119.9.224/29\",\r\n
+ \ \"51.12.46.232/29\",\r\n \"51.12.198.192/29\",\r\n \"51.104.25.144/29\",\r\n
+ \ \"51.105.80.112/29\",\r\n \"51.105.88.112/29\",\r\n \"51.107.48.112/29\",\r\n
+ \ \"51.107.144.112/29\",\r\n \"51.120.40.112/29\",\r\n \"51.120.224.112/29\",\r\n
+ \ \"51.137.161.128/29\",\r\n \"51.143.183.3/32\",\r\n \"51.143.183.52/32\",\r\n
+ \ \"51.143.192.112/29\",\r\n \"52.136.48.112/29\",\r\n \"52.140.104.112/29\",\r\n
+ \ \"52.150.139.64/29\",\r\n \"52.170.0.116/32\",\r\n \"52.170.1.228/32\",\r\n
+ \ \"52.170.249.197/32\",\r\n \"52.174.66.179/32\",\r\n \"52.174.66.180/32\",\r\n
+ \ \"52.225.176.98/32\",\r\n \"52.225.181.34/32\",\r\n \"52.225.183.206/32\",\r\n
+ \ \"52.228.81.128/29\",\r\n \"104.42.25.10/32\",\r\n \"104.42.29.8/32\",\r\n
+ \ \"168.63.46.233/32\",\r\n \"168.63.46.241/32\",\r\n \"191.233.8.24/29\",\r\n
+ \ \"191.235.225.136/29\",\r\n \"2603:1000:4::140/123\",\r\n
+ \ \"2603:1000:104:1::140/123\",\r\n \"2603:1010:6:1::140/123\",\r\n
+ \ \"2603:1010:101::140/123\",\r\n \"2603:1010:304::140/123\",\r\n
+ \ \"2603:1010:404::140/123\",\r\n \"2603:1020:5:1::140/123\",\r\n
+ \ \"2603:1020:206:1::140/123\",\r\n \"2603:1020:305::140/123\",\r\n
+ \ \"2603:1020:405::140/123\",\r\n \"2603:1020:605::140/123\",\r\n
+ \ \"2603:1020:705:1::140/123\",\r\n \"2603:1020:805:1::140/123\",\r\n
+ \ \"2603:1020:905::140/123\",\r\n \"2603:1020:a04:1::140/123\",\r\n
+ \ \"2603:1020:b04::140/123\",\r\n \"2603:1020:c04:1::140/123\",\r\n
+ \ \"2603:1020:d04::140/123\",\r\n \"2603:1020:e04:1::140/123\",\r\n
+ \ \"2603:1020:f04::140/123\",\r\n \"2603:1020:1004::140/123\",\r\n
+ \ \"2603:1020:1104::140/123\",\r\n \"2603:1030:f:1::140/123\",\r\n
+ \ \"2603:1030:10:1::140/123\",\r\n \"2603:1030:104:1::140/123\",\r\n
+ \ \"2603:1030:107::140/123\",\r\n \"2603:1030:210:1::140/123\",\r\n
+ \ \"2603:1030:40b:1::140/123\",\r\n \"2603:1030:40c:1::140/123\",\r\n
+ \ \"2603:1030:504:1::140/123\",\r\n \"2603:1030:608::140/123\",\r\n
+ \ \"2603:1030:807:1::140/123\",\r\n \"2603:1030:a07::140/123\",\r\n
+ \ \"2603:1030:b04::140/123\",\r\n \"2603:1030:c06:1::140/123\",\r\n
+ \ \"2603:1030:f05:1::140/123\",\r\n \"2603:1030:1005::140/123\",\r\n
+ \ \"2603:1040:5:1::140/123\",\r\n \"2603:1040:207::140/123\",\r\n
+ \ \"2603:1040:407:1::140/123\",\r\n \"2603:1040:606::140/123\",\r\n
+ \ \"2603:1040:806::140/123\",\r\n \"2603:1040:904:1::140/123\",\r\n
+ \ \"2603:1040:a06:1::140/123\",\r\n \"2603:1040:b04::140/123\",\r\n
+ \ \"2603:1040:c06::140/123\",\r\n \"2603:1040:d04::140/123\",\r\n
+ \ \"2603:1040:f05:1::140/123\",\r\n \"2603:1040:1104::140/123\",\r\n
+ \ \"2603:1050:6:1::140/123\",\r\n \"2603:1050:403::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"40.89.16.112/29\",\r\n
+ \ \"2603:1030:1005::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR\",\r\n
+ \ \"id\": \"AzureAPIForFHIR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"13.69.233.32/31\",\r\n
+ \ \"13.70.78.170/31\",\r\n \"13.71.175.130/31\",\r\n \"13.71.199.118/31\",\r\n
+ \ \"13.73.244.194/31\",\r\n \"13.73.254.220/30\",\r\n \"13.78.111.194/31\",\r\n
+ \ \"13.80.124.132/32\",\r\n \"13.82.180.206/32\",\r\n \"13.86.221.218/31\",\r\n
+ \ \"13.87.58.136/31\",\r\n \"13.87.124.136/31\",\r\n \"20.36.117.192/31\",\r\n
+ \ \"20.36.123.84/30\",\r\n \"20.37.68.224/30\",\r\n \"20.37.76.204/31\",\r\n
+ \ \"20.37.198.142/31\",\r\n \"20.37.227.102/31\",\r\n \"20.37.228.12/31\",\r\n
+ \ \"20.38.128.170/31\",\r\n \"20.38.141.6/31\",\r\n \"20.38.142.104/31\",\r\n
+ \ \"20.39.15.58/31\",\r\n \"20.40.224.224/31\",\r\n \"20.40.224.228/31\",\r\n
+ \ \"20.40.230.128/28\",\r\n \"20.41.69.50/31\",\r\n \"20.41.69.60/31\",\r\n
+ \ \"20.42.230.234/31\",\r\n \"20.43.45.248/30\",\r\n \"20.43.121.122/31\",\r\n
+ \ \"20.44.4.232/31\",\r\n \"20.44.19.4/31\",\r\n \"20.45.90.96/28\",\r\n
+ \ \"20.45.112.122/31\",\r\n \"20.45.114.204/31\",\r\n \"20.45.117.48/28\",\r\n
+ \ \"20.45.199.40/30\",\r\n \"20.46.12.208/28\",\r\n \"20.46.15.0/27\",\r\n
+ \ \"20.48.192.84/30\",\r\n \"20.48.197.160/28\",\r\n \"20.49.99.46/31\",\r\n
+ \ \"20.49.102.228/31\",\r\n \"20.49.114.188/30\",\r\n \"20.49.127.240/31\",\r\n
+ \ \"20.51.0.208/28\",\r\n \"20.51.13.80/28\",\r\n \"20.51.16.168/31\",\r\n
+ \ \"20.51.21.80/28\",\r\n \"20.52.88.224/28\",\r\n \"20.53.0.32/31\",\r\n
+ \ \"20.53.44.80/31\",\r\n \"20.53.47.208/28\",\r\n \"20.53.49.112/28\",\r\n
+ \ \"20.53.57.64/28\",\r\n \"20.58.67.96/28\",\r\n \"20.61.98.66/31\",\r\n
+ \ \"20.61.98.68/31\",\r\n \"20.61.103.240/28\",\r\n \"20.62.60.112/28\",\r\n
+ \ \"20.62.128.148/30\",\r\n \"20.62.134.240/28\",\r\n \"20.65.134.80/28\",\r\n
+ \ \"20.66.5.144/28\",\r\n \"20.69.1.160/28\",\r\n \"20.72.21.208/28\",\r\n
+ \ \"20.150.165.156/30\",\r\n \"20.150.225.0/31\",\r\n \"20.150.245.64/28\",\r\n
+ \ \"20.150.245.160/27\",\r\n \"20.187.196.196/30\",\r\n \"20.189.228.224/28\",\r\n
+ \ \"20.191.160.26/31\",\r\n \"20.191.160.116/31\",\r\n \"20.191.167.144/28\",\r\n
+ \ \"20.192.45.0/28\",\r\n \"20.192.50.96/27\",\r\n \"20.192.50.240/28\",\r\n
+ \ \"20.192.80.192/28\",\r\n \"20.192.164.188/30\",\r\n \"20.192.184.80/31\",\r\n
+ \ \"20.192.225.200/30\",\r\n \"20.192.238.122/31\",\r\n \"20.193.194.128/27\",\r\n
+ \ \"20.193.194.160/28\",\r\n \"20.193.206.36/31\",\r\n \"20.194.74.160/28\",\r\n
+ \ \"20.194.75.192/27\",\r\n \"20.195.67.208/28\",\r\n \"20.195.74.224/28\",\r\n
+ \ \"20.195.146.208/28\",\r\n \"23.96.205.55/32\",\r\n \"23.98.108.42/31\",\r\n
+ \ \"23.98.108.46/31\",\r\n \"40.64.135.76/30\",\r\n \"40.67.48.122/31\",\r\n
+ \ \"40.67.50.244/31\",\r\n \"40.67.53.240/28\",\r\n \"40.67.60.110/31\",\r\n
+ \ \"40.69.111.32/31\",\r\n \"40.71.15.192/31\",\r\n \"40.75.35.218/31\",\r\n
+ \ \"40.78.204.44/31\",\r\n \"40.78.238.58/31\",\r\n \"40.78.250.110/31\",\r\n
+ \ \"40.79.116.45/32\",\r\n \"40.80.63.158/31\",\r\n \"40.80.63.244/31\",\r\n
+ \ \"40.80.173.128/30\",\r\n \"40.80.180.2/31\",\r\n \"40.82.248.70/31\",\r\n
+ \ \"40.89.23.40/31\",\r\n \"40.113.78.45/32\",\r\n \"40.120.82.160/28\",\r\n
+ \ \"40.126.239.114/32\",\r\n \"51.11.192.32/31\",\r\n \"51.12.20.32/28\",\r\n
+ \ \"51.12.20.64/27\",\r\n \"51.12.28.64/27\",\r\n \"51.12.28.96/28\",\r\n
+ \ \"51.12.42.64/30\",\r\n \"51.12.100.104/31\",\r\n \"51.12.193.28/30\",\r\n
+ \ \"51.12.204.224/31\",\r\n \"51.13.136.56/31\",\r\n \"51.13.138.32/28\",\r\n
+ \ \"51.104.9.98/31\",\r\n \"51.104.30.170/31\",\r\n \"51.107.53.48/30\",\r\n
+ \ \"51.107.60.94/31\",\r\n \"51.107.148.18/31\",\r\n \"51.107.156.134/31\",\r\n
+ \ \"51.107.243.128/28\",\r\n \"51.107.249.72/31\",\r\n \"51.107.251.112/28\",\r\n
+ \ \"51.116.51.32/30\",\r\n \"51.116.55.128/28\",\r\n \"51.116.60.240/31\",\r\n
+ \ \"51.116.146.216/30\",\r\n \"51.116.158.58/31\",\r\n \"51.120.40.126/31\",\r\n
+ \ \"51.120.100.94/31\",\r\n \"51.120.220.94/31\",\r\n \"51.120.228.36/31\",\r\n
+ \ \"51.120.232.32/31\",\r\n \"51.120.234.144/28\",\r\n \"51.120.235.192/27\",\r\n
+ \ \"51.137.164.94/31\",\r\n \"51.137.167.168/31\",\r\n \"51.138.160.0/31\",\r\n
+ \ \"51.138.211.16/28\",\r\n \"51.140.40.89/32\",\r\n \"51.140.210.86/31\",\r\n
+ \ \"51.140.224.110/32\",\r\n \"51.143.208.132/31\",\r\n \"51.143.213.208/28\",\r\n
+ \ \"52.136.48.122/31\",\r\n \"52.136.52.36/31\",\r\n \"52.136.184.0/30\",\r\n
+ \ \"52.136.186.32/28\",\r\n \"52.139.106.72/31\",\r\n \"52.139.108.32/28\",\r\n
+ \ \"52.140.110.164/30\",\r\n \"52.146.131.52/30\",\r\n \"52.146.137.176/28\",\r\n
+ \ \"52.147.113.96/28\",\r\n \"52.150.156.44/30\",\r\n \"52.161.13.30/32\",\r\n
+ \ \"52.162.111.130/31\",\r\n \"52.167.239.195/32\",\r\n \"52.172.112.24/30\",\r\n
+ \ \"52.172.116.144/28\",\r\n \"52.178.17.0/31\",\r\n \"52.182.141.14/31\",\r\n
+ \ \"52.231.23.8/31\",\r\n \"52.231.146.86/31\",\r\n \"52.231.152.94/32\",\r\n
+ \ \"52.247.220.99/32\",\r\n \"65.52.252.248/31\",\r\n \"102.37.64.48/31\",\r\n
+ \ \"102.37.81.144/28\",\r\n \"102.37.161.64/28\",\r\n \"102.133.58.204/30\",\r\n
+ \ \"102.133.124.12/31\",\r\n \"102.133.220.196/30\",\r\n
+ \ \"104.46.162.0/31\",\r\n \"104.46.178.112/31\",\r\n \"104.46.183.192/28\",\r\n
+ \ \"104.210.152.157/32\",\r\n \"104.214.161.14/31\",\r\n
+ \ \"191.233.14.192/30\",\r\n \"191.233.51.212/31\",\r\n \"191.233.207.24/31\",\r\n
+ \ \"191.234.139.160/31\",\r\n \"191.235.225.154/31\",\r\n
+ \ \"191.238.72.224/28\",\r\n \"2603:1020:e04::7c0/123\",\r\n
+ \ \"2603:1020:1004:2::c0/123\",\r\n \"2603:1020:1104:1::4e0/123\",\r\n
+ \ \"2603:1030:f:2::4e0/123\",\r\n \"2603:1030:504:2::c0/123\",\r\n
+ \ \"2603:1040:d04:2::20/123\",\r\n \"2603:1040:f05::7c0/123\",\r\n
+ \ \"2603:1040:1104:1::440/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"id\":
+ \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"20.195.67.208/28\",\r\n
+ \ \"23.98.108.42/31\",\r\n \"23.98.108.46/31\",\r\n \"40.78.238.58/31\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR.UKNorth\",\r\n
+ \ \"id\": \"AzureAPIForFHIR.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.136/31\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureArcInfrastructure\",\r\n \"id\": \"AzureArcInfrastructure\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureArcInfrastructure\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.219/32\",\r\n \"13.70.79.64/32\",\r\n
+ \ \"13.71.175.129/32\",\r\n \"13.71.199.117/32\",\r\n \"13.73.244.196/32\",\r\n
+ \ \"13.73.253.124/30\",\r\n \"13.74.107.94/32\",\r\n \"13.77.53.221/32\",\r\n
+ \ \"13.78.111.193/32\",\r\n \"13.81.244.155/32\",\r\n \"13.86.223.80/32\",\r\n
+ \ \"13.90.194.180/32\",\r\n \"20.36.122.52/30\",\r\n \"20.37.66.52/30\",\r\n
+ \ \"20.37.196.248/30\",\r\n \"20.37.226.52/30\",\r\n \"20.37.228.8/30\",\r\n
+ \ \"20.38.87.188/30\",\r\n \"20.38.138.56/30\",\r\n \"20.38.141.8/30\",\r\n
+ \ \"20.39.12.228/30\",\r\n \"20.39.14.84/30\",\r\n \"20.40.200.152/29\",\r\n
+ \ \"20.40.224.52/30\",\r\n \"20.41.67.84/30\",\r\n \"20.41.69.52/30\",\r\n
+ \ \"20.41.195.252/30\",\r\n \"20.42.228.216/30\",\r\n \"20.43.43.160/30\",\r\n
+ \ \"20.43.45.240/30\",\r\n \"20.43.67.88/30\",\r\n \"20.43.121.252/32\",\r\n
+ \ \"20.44.19.6/32\",\r\n \"20.45.197.224/30\",\r\n \"20.45.199.32/30\",\r\n
+ \ \"20.48.192.76/30\",\r\n \"20.49.99.12/30\",\r\n \"20.49.102.212/30\",\r\n
+ \ \"20.49.109.32/30\",\r\n \"20.49.113.12/30\",\r\n \"20.49.114.52/30\",\r\n
+ \ \"20.49.120.32/30\",\r\n \"20.49.125.188/30\",\r\n \"20.50.1.196/30\",\r\n
+ \ \"20.53.0.34/32\",\r\n \"20.53.41.44/30\",\r\n \"20.61.96.184/30\",\r\n
+ \ \"20.150.165.140/30\",\r\n \"20.187.194.204/30\",\r\n \"20.189.111.204/30\",\r\n
+ \ \"20.191.160.28/30\",\r\n \"20.192.164.176/30\",\r\n \"20.192.228.252/30\",\r\n
+ \ \"23.98.104.12/30\",\r\n \"23.98.108.32/30\",\r\n \"40.64.132.84/30\",\r\n
+ \ \"40.64.135.72/30\",\r\n \"40.69.111.34/32\",\r\n \"40.71.15.194/32\",\r\n
+ \ \"40.78.204.46/32\",\r\n \"40.78.239.96/32\",\r\n \"40.79.138.46/32\",\r\n
+ \ \"40.80.59.24/30\",\r\n \"40.80.172.12/30\",\r\n \"40.89.20.128/30\",\r\n
+ \ \"40.89.23.32/30\",\r\n \"40.119.9.232/30\",\r\n \"51.104.28.216/30\",\r\n
+ \ \"51.104.31.172/30\",\r\n \"51.105.77.50/32\",\r\n \"51.105.90.148/30\",\r\n
+ \ \"51.107.50.56/30\",\r\n \"51.107.53.32/30\",\r\n \"51.107.60.152/32\",\r\n
+ \ \"51.107.146.52/30\",\r\n \"51.116.49.136/30\",\r\n \"51.116.145.136/30\",\r\n
+ \ \"51.116.146.212/30\",\r\n \"51.116.158.60/32\",\r\n \"51.120.42.56/30\",\r\n
+ \ \"51.120.44.196/30\",\r\n \"51.120.100.156/32\",\r\n \"51.120.226.52/30\",\r\n
+ \ \"51.137.164.76/30\",\r\n \"51.137.166.40/30\",\r\n \"51.140.212.216/32\",\r\n
+ \ \"52.136.51.68/30\",\r\n \"52.138.90.54/32\",\r\n \"52.140.107.92/30\",\r\n
+ \ \"52.140.110.108/30\",\r\n \"52.146.79.132/30\",\r\n \"52.146.130.180/30\",\r\n
+ \ \"52.150.152.204/30\",\r\n \"52.150.156.36/30\",\r\n \"52.162.111.132/32\",\r\n
+ \ \"52.182.141.60/32\",\r\n \"52.228.84.80/30\",\r\n \"52.231.23.10/32\",\r\n
+ \ \"52.236.189.74/32\",\r\n \"65.52.252.250/32\",\r\n \"102.133.57.188/30\",\r\n
+ \ \"102.133.154.6/32\",\r\n \"102.133.218.52/30\",\r\n \"102.133.219.188/30\",\r\n
+ \ \"104.46.178.0/30\",\r\n \"104.214.164.48/32\",\r\n \"137.135.98.137/32\",\r\n
+ \ \"191.233.207.26/32\",\r\n \"191.234.136.44/30\",\r\n \"191.234.138.144/30\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup\",\r\n
+ \ \"id\": \"AzureBackup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"13.67.12.0/24\",\r\n \"13.67.13.0/25\",\r\n \"13.69.65.32/27\",\r\n
+ \ \"13.69.65.128/25\",\r\n \"13.69.107.0/27\",\r\n \"13.69.107.128/25\",\r\n
+ \ \"13.69.228.128/25\",\r\n \"13.69.229.0/27\",\r\n \"13.70.73.192/27\",\r\n
+ \ \"13.70.74.0/26\",\r\n \"13.71.172.0/26\",\r\n \"13.71.172.64/27\",\r\n
+ \ \"13.71.195.64/26\",\r\n \"13.71.195.128/27\",\r\n \"13.74.107.192/27\",\r\n
+ \ \"13.74.108.0/25\",\r\n \"13.75.36.128/25\",\r\n \"13.75.37.0/24\",\r\n
+ \ \"13.77.52.32/27\",\r\n \"13.77.52.64/26\",\r\n \"13.78.108.32/27\",\r\n
+ \ \"13.78.108.64/26\",\r\n \"13.86.218.0/25\",\r\n \"13.86.218.128/26\",\r\n
+ \ \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"13.87.123.0/26\",\r\n
+ \ \"13.87.123.64/27\",\r\n \"13.89.171.128/26\",\r\n \"13.89.171.192/27\",\r\n
+ \ \"20.36.107.32/27\",\r\n \"20.36.107.64/26\",\r\n \"20.36.114.224/27\",\r\n
+ \ \"20.36.115.0/26\",\r\n \"20.37.75.0/26\",\r\n \"20.37.75.64/27\",\r\n
+ \ \"20.38.147.0/27\",\r\n \"20.38.147.64/26\",\r\n \"20.40.229.128/25\",\r\n
+ \ \"20.44.3.64/26\",\r\n \"20.44.3.128/27\",\r\n \"20.44.8.32/27\",\r\n
+ \ \"20.44.8.64/26\",\r\n \"20.44.16.128/27\",\r\n \"20.44.16.192/26\",\r\n
+ \ \"20.44.27.128/27\",\r\n \"20.45.90.0/26\",\r\n \"20.45.123.0/26\",\r\n
+ \ \"20.45.123.64/28\",\r\n \"20.45.125.192/27\",\r\n \"20.46.12.0/25\",\r\n
+ \ \"20.48.197.0/26\",\r\n \"20.49.82.192/26\",\r\n \"20.49.83.0/27\",\r\n
+ \ \"20.49.90.192/26\",\r\n \"20.49.91.0/27\",\r\n \"20.51.0.0/26\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"20.51.20.128/25\",\r\n \"20.52.88.0/26\",\r\n
+ \ \"20.53.47.128/26\",\r\n \"20.53.49.0/26\",\r\n \"20.53.56.192/26\",\r\n
+ \ \"20.58.67.128/25\",\r\n \"20.61.102.128/25\",\r\n \"20.61.103.0/26\",\r\n
+ \ \"20.62.59.128/25\",\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"20.65.133.128/26\",\r\n \"20.66.4.0/25\",\r\n \"20.66.4.128/26\",\r\n
+ \ \"20.69.1.0/26\",\r\n \"20.72.27.64/26\",\r\n \"20.150.171.96/27\",\r\n
+ \ \"20.150.171.128/26\",\r\n \"20.150.179.80/28\",\r\n \"20.150.179.128/26\",\r\n
+ \ \"20.150.181.64/27\",\r\n \"20.150.187.80/28\",\r\n \"20.150.187.128/26\",\r\n
+ \ \"20.150.190.0/27\",\r\n \"20.150.244.64/26\",\r\n \"20.189.228.64/26\",\r\n
+ \ \"20.191.166.128/26\",\r\n \"20.192.44.128/26\",\r\n \"20.192.50.128/26\",\r\n
+ \ \"20.192.80.64/26\",\r\n \"20.192.99.80/28\",\r\n \"20.192.99.128/26\",\r\n
+ \ \"20.192.235.32/27\",\r\n \"20.192.235.64/26\",\r\n \"20.193.192.192/26\",\r\n
+ \ \"20.193.203.0/26\",\r\n \"20.193.203.64/27\",\r\n \"20.194.66.192/26\",\r\n
+ \ \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n \"20.195.66.0/24\",\r\n
+ \ \"20.195.67.0/25\",\r\n \"20.195.73.0/24\",\r\n \"20.195.74.0/25\",\r\n
+ \ \"20.195.146.128/26\",\r\n \"23.98.83.0/27\",\r\n \"23.98.83.128/25\",\r\n
+ \ \"23.98.84.0/24\",\r\n \"40.67.59.96/27\",\r\n \"40.67.59.128/26\",\r\n
+ \ \"40.69.107.32/27\",\r\n \"40.69.107.64/26\",\r\n \"40.70.147.128/26\",\r\n
+ \ \"40.70.147.192/27\",\r\n \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n
+ \ \"40.74.98.64/26\",\r\n \"40.74.98.128/27\",\r\n \"40.74.146.96/27\",\r\n
+ \ \"40.74.146.128/26\",\r\n \"40.75.34.96/27\",\r\n \"40.75.34.192/26\",\r\n
+ \ \"40.78.195.32/27\",\r\n \"40.78.195.64/26\",\r\n \"40.78.202.160/27\",\r\n
+ \ \"40.78.202.192/26\",\r\n \"40.78.227.64/26\",\r\n \"40.78.227.128/25\",\r\n
+ \ \"40.78.234.192/27\",\r\n \"40.78.235.0/24\",\r\n \"40.78.236.0/25\",\r\n
+ \ \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n \"40.78.250.224/27\",\r\n
+ \ \"40.78.251.0/26\",\r\n \"40.79.131.0/26\",\r\n \"40.79.131.64/27\",\r\n
+ \ \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n \"40.79.162.128/27\",\r\n
+ \ \"40.79.162.192/26\",\r\n \"40.79.170.64/26\",\r\n \"40.79.170.128/27\",\r\n
+ \ \"40.79.171.32/27\",\r\n \"40.79.179.32/27\",\r\n \"40.79.179.64/26\",\r\n
+ \ \"40.79.187.32/27\",\r\n \"40.79.187.64/26\",\r\n \"40.79.195.32/27\",\r\n
+ \ \"40.79.195.64/26\",\r\n \"40.80.51.0/27\",\r\n \"40.120.74.192/26\",\r\n
+ \ \"40.120.75.0/27\",\r\n \"40.120.82.0/26\",\r\n \"51.12.17.64/26\",\r\n
+ \ \"51.12.25.128/26\",\r\n \"51.12.99.96/27\",\r\n \"51.12.99.128/26\",\r\n
+ \ \"51.12.203.96/27\",\r\n \"51.12.203.128/26\",\r\n \"51.12.227.80/28\",\r\n
+ \ \"51.12.227.128/26\",\r\n \"51.12.235.80/28\",\r\n \"51.12.235.128/26\",\r\n
+ \ \"51.13.137.128/26\",\r\n \"51.105.67.32/27\",\r\n \"51.105.67.64/26\",\r\n
+ \ \"51.105.75.0/27\",\r\n \"51.105.75.64/26\",\r\n \"51.107.59.64/26\",\r\n
+ \ \"51.107.59.128/27\",\r\n \"51.107.155.64/26\",\r\n \"51.107.155.128/27\",\r\n
+ \ \"51.107.243.0/26\",\r\n \"51.107.251.0/26\",\r\n \"51.116.55.0/26\",\r\n
+ \ \"51.116.59.64/26\",\r\n \"51.116.59.128/27\",\r\n \"51.116.155.128/26\",\r\n
+ \ \"51.116.155.192/27\",\r\n \"51.116.156.144/28\",\r\n \"51.116.156.192/26\",\r\n
+ \ \"51.116.245.0/26\",\r\n \"51.116.245.64/27\",\r\n \"51.116.250.240/28\",\r\n
+ \ \"51.116.251.64/26\",\r\n \"51.116.253.0/27\",\r\n \"51.120.99.96/27\",\r\n
+ \ \"51.120.99.128/26\",\r\n \"51.120.107.80/28\",\r\n \"51.120.107.128/26\",\r\n
+ \ \"51.120.110.128/27\",\r\n \"51.120.211.80/28\",\r\n \"51.120.211.128/26\",\r\n
+ \ \"51.120.219.96/27\",\r\n \"51.120.219.128/26\",\r\n \"51.120.233.192/26\",\r\n
+ \ \"51.138.210.192/26\",\r\n \"51.140.148.64/26\",\r\n \"51.140.148.128/27\",\r\n
+ \ \"51.140.211.32/27\",\r\n \"51.140.211.64/26\",\r\n \"51.143.212.192/26\",\r\n
+ \ \"51.143.213.0/25\",\r\n \"52.136.185.192/26\",\r\n \"52.138.90.160/27\",\r\n
+ \ \"52.138.90.192/26\",\r\n \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n
+ \ \"52.139.107.128/26\",\r\n \"52.146.136.64/26\",\r\n \"52.146.136.128/25\",\r\n
+ \ \"52.147.113.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"52.167.106.192/27\",\r\n \"52.167.107.0/26\",\r\n \"52.172.116.64/26\",\r\n
+ \ \"52.182.139.64/27\",\r\n \"52.182.139.128/26\",\r\n \"52.231.19.0/26\",\r\n
+ \ \"52.231.19.64/27\",\r\n \"52.231.147.32/27\",\r\n \"52.231.147.64/26\",\r\n
+ \ \"52.236.187.0/27\",\r\n \"52.236.187.128/25\",\r\n \"52.246.155.0/27\",\r\n
+ \ \"52.246.155.64/26\",\r\n \"65.52.251.0/26\",\r\n \"65.52.251.64/27\",\r\n
+ \ \"102.37.81.0/26\",\r\n \"102.37.160.192/26\",\r\n \"102.133.27.64/26\",\r\n
+ \ \"102.133.27.128/27\",\r\n \"102.133.123.96/27\",\r\n \"102.133.155.64/26\",\r\n
+ \ \"102.133.155.128/27\",\r\n \"102.133.251.0/27\",\r\n \"104.46.183.64/26\",\r\n
+ \ \"104.211.82.0/26\",\r\n \"104.211.82.64/27\",\r\n \"104.211.147.0/26\",\r\n
+ \ \"104.211.147.64/27\",\r\n \"104.214.19.96/27\",\r\n \"104.214.19.128/26\",\r\n
+ \ \"191.233.50.224/27\",\r\n \"191.233.51.64/26\",\r\n \"191.233.204.0/26\",\r\n
+ \ \"191.233.204.64/27\",\r\n \"191.234.147.80/28\",\r\n \"191.234.147.128/26\",\r\n
+ \ \"191.234.149.160/27\",\r\n \"191.234.155.80/28\",\r\n
+ \ \"191.234.155.128/26\",\r\n \"191.234.157.64/27\",\r\n
+ \ \"191.238.72.0/26\",\r\n \"2603:1000:4:402::200/121\",\r\n
+ \ \"2603:1000:104:402::200/121\",\r\n \"2603:1000:104:802::180/121\",\r\n
+ \ \"2603:1000:104:c02::180/121\",\r\n \"2603:1010:6:402::200/121\",\r\n
+ \ \"2603:1010:6:802::180/121\",\r\n \"2603:1010:6:c02::180/121\",\r\n
+ \ \"2603:1010:101:402::200/121\",\r\n \"2603:1010:304:402::200/121\",\r\n
+ \ \"2603:1010:404:402::200/121\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\",\r\n
+ \ \"2603:1020:206:402::200/121\",\r\n \"2603:1020:206:802::180/121\",\r\n
+ \ \"2603:1020:206:c02::180/121\",\r\n \"2603:1020:305:402::200/121\",\r\n
+ \ \"2603:1020:405:402::200/121\",\r\n \"2603:1020:605:402::200/121\",\r\n
+ \ \"2603:1020:705:402::200/121\",\r\n \"2603:1020:705:802::180/121\",\r\n
+ \ \"2603:1020:705:c02::180/121\",\r\n \"2603:1020:805:402::200/121\",\r\n
+ \ \"2603:1020:805:802::180/121\",\r\n \"2603:1020:805:c02::180/121\",\r\n
+ \ \"2603:1020:905:402::200/121\",\r\n \"2603:1020:a04:402::200/121\",\r\n
+ \ \"2603:1020:a04:802::180/121\",\r\n \"2603:1020:a04:c02::180/121\",\r\n
+ \ \"2603:1020:b04:402::200/121\",\r\n \"2603:1020:c04:402::200/121\",\r\n
+ \ \"2603:1020:c04:802::180/121\",\r\n \"2603:1020:c04:c02::180/121\",\r\n
+ \ \"2603:1020:d04:402::200/121\",\r\n \"2603:1020:e04:3::200/121\",\r\n
+ \ \"2603:1020:e04:402::200/121\",\r\n \"2603:1020:e04:802::180/121\",\r\n
+ \ \"2603:1020:e04:c02::180/121\",\r\n \"2603:1020:f04:402::200/121\",\r\n
+ \ \"2603:1020:1004:1::780/121\",\r\n \"2603:1020:1004:400::100/121\",\r\n
+ \ \"2603:1020:1004:400::300/121\",\r\n \"2603:1020:1004:c02::200/121\",\r\n
+ \ \"2603:1020:1104:1::400/121\",\r\n \"2603:1020:1104:400::200/121\",\r\n
+ \ \"2603:1030:f:2::580/121\",\r\n \"2603:1030:f:400::a00/121\",\r\n
+ \ \"2603:1030:10:402::200/121\",\r\n \"2603:1030:10:802::180/121\",\r\n
+ \ \"2603:1030:10:c02::180/121\",\r\n \"2603:1030:104:402::200/121\",\r\n
+ \ \"2603:1030:107:400::180/121\",\r\n \"2603:1030:210:402::200/121\",\r\n
+ \ \"2603:1030:210:802::180/121\",\r\n \"2603:1030:210:c02::180/121\",\r\n
+ \ \"2603:1030:40b:400::a00/121\",\r\n \"2603:1030:40b:800::180/121\",\r\n
+ \ \"2603:1030:40b:c00::180/121\",\r\n \"2603:1030:40c:402::200/121\",\r\n
+ \ \"2603:1030:40c:802::180/121\",\r\n \"2603:1030:40c:c02::180/121\",\r\n
+ \ \"2603:1030:504:2::100/121\",\r\n \"2603:1030:504:402::100/121\",\r\n
+ \ \"2603:1030:504:402::300/121\",\r\n \"2603:1030:504:802::280/121\",\r\n
+ \ \"2603:1030:504:c02::200/121\",\r\n \"2603:1030:608:402::200/121\",\r\n
+ \ \"2603:1030:807:402::200/121\",\r\n \"2603:1030:807:802::180/121\",\r\n
+ \ \"2603:1030:807:c02::180/121\",\r\n \"2603:1030:a07:402::180/121\",\r\n
+ \ \"2603:1030:b04:402::200/121\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\",\r\n
+ \ \"2603:1030:f05:402::200/121\",\r\n \"2603:1030:f05:802::180/121\",\r\n
+ \ \"2603:1030:f05:c02::180/121\",\r\n \"2603:1030:1005:402::200/121\",\r\n
+ \ \"2603:1040:5:402::200/121\",\r\n \"2603:1040:5:802::180/121\",\r\n
+ \ \"2603:1040:5:c02::180/121\",\r\n \"2603:1040:207:402::200/121\",\r\n
+ \ \"2603:1040:407:402::200/121\",\r\n \"2603:1040:407:802::180/121\",\r\n
+ \ \"2603:1040:407:c02::180/121\",\r\n \"2603:1040:606:402::200/121\",\r\n
+ \ \"2603:1040:806:402::200/121\",\r\n \"2603:1040:904:402::200/121\",\r\n
+ \ \"2603:1040:904:802::180/121\",\r\n \"2603:1040:904:c02::180/121\",\r\n
+ \ \"2603:1040:a06:402::200/121\",\r\n \"2603:1040:a06:802::180/121\",\r\n
+ \ \"2603:1040:a06:c02::180/121\",\r\n \"2603:1040:b04:402::200/121\",\r\n
+ \ \"2603:1040:c06:402::200/121\",\r\n \"2603:1040:d04:1::780/121\",\r\n
+ \ \"2603:1040:d04:400::100/121\",\r\n \"2603:1040:d04:400::300/121\",\r\n
+ \ \"2603:1040:d04:c02::200/121\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\",\r\n \"2603:1040:1104:1::480/121\",\r\n
+ \ \"2603:1040:1104:400::200/121\",\r\n \"2603:1050:6:402::200/121\",\r\n
+ \ \"2603:1050:6:802::180/121\",\r\n \"2603:1050:6:c02::180/121\",\r\n
+ \ \"2603:1050:403:400::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.AustraliaCentral2\",\r\n \"id\":
+ \"AzureBackup.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.224/27\",\r\n \"20.36.115.0/26\",\r\n
+ \ \"20.53.56.192/26\",\r\n \"2603:1010:404:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.BrazilSoutheast\",\r\n
+ \ \"id\": \"AzureBackup.BrazilSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilse\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBackup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.195.146.128/26\",\r\n \"191.233.50.224/27\",\r\n
+ \ \"191.233.51.64/26\",\r\n \"2603:1050:403:400::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.EastUS\",\r\n
+ \ \"id\": \"AzureBackup.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n \"40.78.227.64/26\",\r\n
+ \ \"40.78.227.128/25\",\r\n \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n
+ \ \"2603:1030:210:402::200/121\",\r\n \"2603:1030:210:802::180/121\",\r\n
+ \ \"2603:1030:210:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.KoreaCentral\",\r\n \"id\": \"AzureBackup.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.128/27\",\r\n
+ \ \"20.194.66.192/26\",\r\n \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n
+ \ \"52.231.19.0/26\",\r\n \"52.231.19.64/27\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthCentralUS\",\r\n \"id\":
+ \"AzureBackup.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.0.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"2603:1030:608:402::200/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthEurope\",\r\n \"id\": \"AzureBackup.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"13.69.228.128/25\",\r\n
+ \ \"13.69.229.0/27\",\r\n \"13.74.107.192/27\",\r\n \"13.74.108.0/25\",\r\n
+ \ \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n \"52.146.136.64/26\",\r\n
+ \ \"52.146.136.128/25\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKNorth\",\r\n
+ \ \"id\": \"AzureBackup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.123.0/26\",\r\n \"13.87.123.64/27\",\r\n \"2603:1020:305:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKSouth2\",\r\n
+ \ \"id\": \"AzureBackup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"2603:1020:405:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.WestUS2\",\r\n
+ \ \"id\": \"AzureBackup.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n
+ \ \"40.78.250.224/27\",\r\n \"40.78.251.0/26\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService\",\r\n
+ \ \"id\": \"AzureBotService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.64/30\",\r\n \"13.67.10.88/30\",\r\n \"13.69.67.56/30\",\r\n
+ \ \"13.69.227.252/30\",\r\n \"13.70.74.112/30\",\r\n \"13.71.173.240/30\",\r\n
+ \ \"13.71.196.160/30\",\r\n \"13.73.248.0/30\",\r\n \"13.75.39.72/30\",\r\n
+ \ \"13.77.53.80/30\",\r\n \"13.78.108.172/30\",\r\n \"13.86.219.168/30\",\r\n
+ \ \"13.87.58.40/30\",\r\n \"13.87.124.40/30\",\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.36.108.112/30\",\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"20.37.64.64/30\",\r\n \"20.37.76.104/30\",\r\n \"20.37.152.64/30\",\r\n
+ \ \"20.37.192.64/30\",\r\n \"20.37.224.64/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"20.38.128.72/30\",\r\n \"20.38.136.64/30\",\r\n \"20.39.8.64/30\",\r\n
+ \ \"20.41.0.64/30\",\r\n \"20.41.64.64/30\",\r\n \"20.41.192.64/30\",\r\n
+ \ \"20.42.0.64/30\",\r\n \"20.42.128.64/30\",\r\n \"20.42.224.64/30\",\r\n
+ \ \"20.43.40.64/30\",\r\n \"20.43.64.64/30\",\r\n \"20.43.121.8/30\",\r\n
+ \ \"20.43.128.64/30\",\r\n \"20.44.4.72/30\",\r\n \"20.44.17.24/30\",\r\n
+ \ \"20.44.27.208/30\",\r\n \"20.45.112.64/30\",\r\n \"20.45.123.112/30\",\r\n
+ \ \"20.45.192.64/30\",\r\n \"20.72.16.16/30\",\r\n \"20.150.160.120/30\",\r\n
+ \ \"20.189.104.64/30\",\r\n \"20.192.160.16/30\",\r\n \"20.192.224.64/26\",\r\n
+ \ \"40.67.48.64/30\",\r\n \"40.67.58.4/30\",\r\n \"40.69.108.56/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"40.74.24.64/30\",\r\n \"40.74.147.168/30\",\r\n
+ \ \"40.78.196.56/30\",\r\n \"40.78.202.132/30\",\r\n \"40.79.132.56/30\",\r\n
+ \ \"40.79.180.24/30\",\r\n \"40.80.56.64/30\",\r\n \"40.80.168.64/30\",\r\n
+ \ \"40.80.176.32/30\",\r\n \"40.80.184.64/30\",\r\n \"40.82.248.64/30\",\r\n
+ \ \"40.89.16.64/30\",\r\n \"51.12.40.64/26\",\r\n \"51.12.192.64/26\",\r\n
+ \ \"51.104.8.248/30\",\r\n \"51.104.24.64/30\",\r\n \"51.105.80.64/30\",\r\n
+ \ \"51.105.88.64/30\",\r\n \"51.107.48.64/30\",\r\n \"51.107.58.4/30\",\r\n
+ \ \"51.107.144.64/30\",\r\n \"51.107.154.4/30\",\r\n \"51.116.48.64/30\",\r\n
+ \ \"51.116.144.64/30\",\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"51.120.218.4/30\",\r\n \"51.120.224.64/30\",\r\n \"51.137.160.64/30\",\r\n
+ \ \"51.140.212.72/30\",\r\n \"51.143.192.64/30\",\r\n \"52.136.48.64/30\",\r\n
+ \ \"52.140.104.64/30\",\r\n \"52.150.136.64/30\",\r\n \"52.162.111.16/30\",\r\n
+ \ \"52.228.80.64/30\",\r\n \"52.231.148.88/30\",\r\n \"65.52.252.104/30\",\r\n
+ \ \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n \"102.133.124.8/30\",\r\n
+ \ \"102.133.216.64/30\",\r\n \"191.233.8.16/30\",\r\n \"191.233.205.96/30\",\r\n
+ \ \"191.235.224.64/30\",\r\n \"2603:1000:4::20/123\",\r\n
+ \ \"2603:1000:104:1::20/123\",\r\n \"2603:1010:6:1::20/123\",\r\n
+ \ \"2603:1010:101::20/123\",\r\n \"2603:1010:304::20/123\",\r\n
+ \ \"2603:1010:404::20/123\",\r\n \"2603:1020:5:1::20/123\",\r\n
+ \ \"2603:1020:206:1::20/123\",\r\n \"2603:1020:305::20/123\",\r\n
+ \ \"2603:1020:405::20/123\",\r\n \"2603:1020:605::20/123\",\r\n
+ \ \"2603:1020:705:1::20/123\",\r\n \"2603:1020:805:1::20/123\",\r\n
+ \ \"2603:1020:905::20/123\",\r\n \"2603:1020:a04:1::20/123\",\r\n
+ \ \"2603:1020:b04::20/123\",\r\n \"2603:1020:c04:1::20/123\",\r\n
+ \ \"2603:1020:d04::20/123\",\r\n \"2603:1020:e04:1::20/123\",\r\n
+ \ \"2603:1020:f04::20/123\",\r\n \"2603:1020:1004::20/123\",\r\n
+ \ \"2603:1020:1104::20/123\",\r\n \"2603:1030:f:1::20/123\",\r\n
+ \ \"2603:1030:10:1::20/123\",\r\n \"2603:1030:104:1::20/123\",\r\n
+ \ \"2603:1030:107::20/123\",\r\n \"2603:1030:210:1::20/123\",\r\n
+ \ \"2603:1030:40b:1::20/123\",\r\n \"2603:1030:40c:1::20/123\",\r\n
+ \ \"2603:1030:504:1::20/123\",\r\n \"2603:1030:608::20/123\",\r\n
+ \ \"2603:1030:807:1::20/123\",\r\n \"2603:1030:a07::20/123\",\r\n
+ \ \"2603:1030:b04::20/123\",\r\n \"2603:1030:c06:1::20/123\",\r\n
+ \ \"2603:1030:f05:1::20/123\",\r\n \"2603:1030:1005::20/123\",\r\n
+ \ \"2603:1040:5:1::20/123\",\r\n \"2603:1040:207::20/123\",\r\n
+ \ \"2603:1040:407:1::20/123\",\r\n \"2603:1040:606::20/123\",\r\n
+ \ \"2603:1040:806::20/123\",\r\n \"2603:1040:904:1::20/123\",\r\n
+ \ \"2603:1040:a06:1::20/123\",\r\n \"2603:1040:b04::20/123\",\r\n
+ \ \"2603:1040:c06::20/123\",\r\n \"2603:1040:d04::20/123\",\r\n
+ \ \"2603:1040:f05:1::20/123\",\r\n \"2603:1040:1104::20/123\",\r\n
+ \ \"2603:1050:6:1::20/123\",\r\n \"2603:1050:403::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureBotService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"2603:1010:404::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.CentralUS\",\r\n \"id\": \"AzureBotService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.37.152.64/30\",\r\n \"2603:1030:10:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureBotService.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.192.64/30\",\r\n \"40.78.202.132/30\",\r\n
+ \ \"2603:1030:f:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.EastUS\",\r\n \"id\": \"AzureBotService.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"20.42.0.64/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"2603:1030:210:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.GermanyNorth\",\r\n
+ \ \"id\": \"AzureBotService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.64/30\",\r\n \"2603:1020:d04::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.NorthEurope\",\r\n
+ \ \"id\": \"AzureBotService.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.227.252/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"2603:1020:5:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.NorwayEast\",\r\n \"id\":
+ \"AzureBotService.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"2603:1020:e04:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.SouthAfricaWest\",\r\n \"id\":
+ \"AzureBotService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n
+ \ \"2603:1000:4::20/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureBotService.UKSouth\",\r\n \"id\": \"AzureBotService.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.248/30\",\r\n
+ \ \"51.104.24.64/30\",\r\n \"2603:1020:705:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.UKWest\",\r\n
+ \ \"id\": \"AzureBotService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.160.64/30\",\r\n \"51.140.212.72/30\",\r\n
+ \ \"2603:1020:605::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestCentralUS\",\r\n \"id\":
+ \"AzureBotService.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.160/30\",\r\n \"52.150.136.64/30\",\r\n
+ \ \"2603:1030:b04::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestEurope\",\r\n \"id\":
+ \"AzureBotService.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.67.56/30\",\r\n \"40.74.24.64/30\",\r\n \"2603:1020:206:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud\",\r\n
+ \ \"id\": \"AzureCloud\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.65.0.0/16\",\r\n \"13.66.0.0/17\",\r\n \"13.66.128.0/17\",\r\n
+ \ \"13.67.0.0/17\",\r\n \"13.67.128.0/20\",\r\n \"13.67.144.0/21\",\r\n
+ \ \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n
+ \ \"13.67.160.0/19\",\r\n \"13.67.192.0/18\",\r\n \"13.68.0.0/17\",\r\n
+ \ \"13.68.128.0/17\",\r\n \"13.69.0.0/17\",\r\n \"13.69.128.0/17\",\r\n
+ \ \"13.70.0.0/18\",\r\n \"13.70.64.0/18\",\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.70.192.0/18\",\r\n \"13.71.0.0/18\",\r\n \"13.71.64.0/18\",\r\n
+ \ \"13.71.128.0/19\",\r\n \"13.71.160.0/19\",\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.72.64.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.72.224.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.73.32.0/19\",\r\n \"13.73.96.0/19\",\r\n
+ \ \"13.73.128.0/18\",\r\n \"13.73.192.0/20\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.73.232.0/21\",\r\n \"13.73.240.0/20\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.75.0.0/17\",\r\n \"13.75.128.0/17\",\r\n \"13.76.0.0/16\",\r\n
+ \ \"13.77.0.0/18\",\r\n \"13.77.64.0/18\",\r\n \"13.77.128.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.78.128.0/17\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.80.0.0/15\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.83.0.0/16\",\r\n \"13.84.0.0/15\",\r\n \"13.86.0.0/17\",\r\n
+ \ \"13.86.128.0/17\",\r\n \"13.87.0.0/18\",\r\n \"13.87.64.0/18\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.88.200.0/21\",\r\n \"13.88.208.0/20\",\r\n \"13.88.224.0/19\",\r\n
+ \ \"13.89.0.0/16\",\r\n \"13.90.0.0/16\",\r\n \"13.91.0.0/16\",\r\n
+ \ \"13.92.0.0/16\",\r\n \"13.93.0.0/17\",\r\n \"13.93.128.0/17\",\r\n
+ \ \"13.94.0.0/18\",\r\n \"13.94.64.0/18\",\r\n \"13.94.128.0/17\",\r\n
+ \ \"13.95.0.0/16\",\r\n \"13.104.129.0/26\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.129.128/26\",\r\n \"13.104.129.192/26\",\r\n \"13.104.144.0/27\",\r\n
+ \ \"13.104.144.32/27\",\r\n \"13.104.144.64/27\",\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.144.128/27\",\r\n \"13.104.144.160/27\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.144.224/27\",\r\n \"13.104.145.0/26\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.145.128/27\",\r\n \"13.104.145.160/27\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.64/26\",\r\n \"13.104.146.128/25\",\r\n
+ \ \"13.104.147.0/25\",\r\n \"13.104.147.128/25\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.148.128/25\",\r\n \"13.104.149.0/26\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.150.128/26\",\r\n
+ \ \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n \"13.104.151.64/26\",\r\n
+ \ \"13.104.151.128/26\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.153.0/27\",\r\n \"13.104.153.32/28\",\r\n
+ \ \"13.104.153.48/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.153.128/26\",\r\n \"13.104.153.192/26\",\r\n \"13.104.154.0/25\",\r\n
+ \ \"13.104.154.128/25\",\r\n \"13.104.155.0/27\",\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.155.64/26\",\r\n \"13.104.155.128/26\",\r\n \"13.104.155.192/26\",\r\n
+ \ \"13.104.156.0/24\",\r\n \"13.104.157.0/25\",\r\n \"13.104.157.128/25\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.16/28\",\r\n \"13.104.158.32/27\",\r\n
+ \ \"13.104.158.64/26\",\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.176/28\",\r\n \"13.104.158.192/27\",\r\n \"13.104.158.224/27\",\r\n
+ \ \"13.104.159.0/25\",\r\n \"13.104.159.128/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.192.0/21\",\r\n \"13.104.208.0/26\",\r\n \"13.104.208.64/27\",\r\n
+ \ \"13.104.208.96/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.208.192/26\",\r\n \"13.104.209.0/24\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.104.211.0/25\",\r\n \"13.104.211.128/26\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"13.104.212.0/26\",\r\n \"13.104.212.64/26\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.104.212.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.213.128/25\",\r\n \"13.104.214.0/25\",\r\n \"13.104.214.128/25\",\r\n
+ \ \"13.104.215.0/25\",\r\n \"13.104.215.128/25\",\r\n \"13.104.216.0/24\",\r\n
+ \ \"13.104.217.0/25\",\r\n \"13.104.217.128/25\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.104.218.128/25\",\r\n \"13.104.219.0/25\",\r\n \"13.104.219.128/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.104.220.128/25\",\r\n \"13.104.221.0/24\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.104.223.192/26\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.17.0/26\",\r\n \"13.105.17.64/26\",\r\n \"13.105.17.128/26\",\r\n
+ \ \"13.105.17.192/26\",\r\n \"13.105.18.0/26\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.19.0/25\",\r\n
+ \ \"13.105.19.128/25\",\r\n \"13.105.20.0/25\",\r\n \"13.105.20.128/26\",\r\n
+ \ \"13.105.20.192/26\",\r\n \"13.105.21.0/24\",\r\n \"13.105.22.0/24\",\r\n
+ \ \"13.105.23.0/26\",\r\n \"13.105.23.64/26\",\r\n \"13.105.23.128/25\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.25.0/24\",\r\n \"13.105.26.0/24\",\r\n
+ \ \"13.105.27.0/25\",\r\n \"13.105.27.128/27\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.27.224/27\",\r\n \"13.105.28.0/28\",\r\n
+ \ \"13.105.28.16/28\",\r\n \"13.105.28.32/28\",\r\n \"13.105.28.48/28\",\r\n
+ \ \"13.105.28.128/25\",\r\n \"13.105.29.0/25\",\r\n \"13.105.29.128/25\",\r\n
+ \ \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.96/27\",\r\n \"13.105.36.128/26\",\r\n
+ \ \"13.105.36.192/26\",\r\n \"13.105.37.0/26\",\r\n \"13.105.37.64/26\",\r\n
+ \ \"13.105.37.128/26\",\r\n \"13.105.37.192/26\",\r\n \"13.105.52.0/27\",\r\n
+ \ \"13.105.52.32/27\",\r\n \"13.105.52.64/28\",\r\n \"13.105.52.80/28\",\r\n
+ \ \"13.105.52.96/27\",\r\n \"13.105.52.128/26\",\r\n \"13.105.52.192/26\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.53.128/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n \"13.105.60.48/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.60.96/27\",\r\n \"13.105.60.128/27\",\r\n
+ \ \"13.105.60.160/27\",\r\n \"13.105.60.192/26\",\r\n \"13.105.61.0/28\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.32/27\",\r\n \"13.105.61.64/26\",\r\n
+ \ \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"13.105.66.144/28\",\r\n \"13.105.66.192/26\",\r\n \"13.105.67.0/25\",\r\n
+ \ \"13.105.67.128/25\",\r\n \"13.105.74.48/28\",\r\n \"13.105.74.96/27\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.74.192/26\",\r\n \"13.105.75.0/27\",\r\n
+ \ \"13.105.75.32/28\",\r\n \"13.105.75.64/27\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.96.112/28\",\r\n \"13.105.96.128/25\",\r\n
+ \ \"13.105.97.0/27\",\r\n \"13.105.97.32/27\",\r\n \"13.105.97.64/27\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.36.32.0/19\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.96.0/21\",\r\n \"20.36.104.0/21\",\r\n \"20.36.112.0/20\",\r\n
+ \ \"20.36.128.0/17\",\r\n \"20.37.0.0/18\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.37.128.0/18\",\r\n \"20.37.192.0/19\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.64.0/19\",\r\n \"20.38.96.0/23\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.38.99.0/24\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.38.104.0/23\",\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.38.108.0/23\",\r\n \"20.38.112.0/23\",\r\n \"20.38.114.0/25\",\r\n
+ \ \"20.38.114.128/25\",\r\n \"20.38.115.0/24\",\r\n \"20.38.116.0/23\",\r\n
+ \ \"20.38.118.0/24\",\r\n \"20.38.120.0/24\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.38.122.0/23\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.126.0/23\",\r\n \"20.38.128.0/21\",\r\n \"20.38.136.0/21\",\r\n
+ \ \"20.38.144.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.38.184.0/22\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.38.196.0/22\",\r\n \"20.38.200.0/22\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.39.0.0/19\",\r\n \"20.39.32.0/19\",\r\n
+ \ \"20.39.64.0/21\",\r\n \"20.39.72.0/21\",\r\n \"20.39.80.0/20\",\r\n
+ \ \"20.39.96.0/19\",\r\n \"20.39.128.0/20\",\r\n \"20.39.144.0/20\",\r\n
+ \ \"20.39.160.0/21\",\r\n \"20.39.168.0/21\",\r\n \"20.39.176.0/21\",\r\n
+ \ \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n \"20.39.208.0/20\",\r\n
+ \ \"20.39.224.0/21\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.40.16.0/21\",\r\n
+ \ \"20.40.32.0/21\",\r\n \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n
+ \ \"20.40.64.0/20\",\r\n \"20.40.80.0/21\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.40.104.0/21\",\r\n \"20.40.112.0/21\",\r\n
+ \ \"20.40.120.0/21\",\r\n \"20.40.128.0/19\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.40.176.0/20\",\r\n \"20.40.192.0/18\",\r\n \"20.41.0.0/18\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.41.128.0/18\",\r\n \"20.41.192.0/18\",\r\n
+ \ \"20.42.0.0/17\",\r\n \"20.42.128.0/18\",\r\n \"20.42.192.0/19\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.43.0.0/19\",\r\n \"20.43.32.0/19\",\r\n
+ \ \"20.43.64.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.43.128.0/18\",\r\n \"20.43.192.0/18\",\r\n \"20.44.8.0/21\",\r\n
+ \ \"20.44.16.0/21\",\r\n \"20.44.24.0/21\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.44.128.0/18\",\r\n \"20.44.192.0/18\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.64.0/19\",\r\n \"20.45.120.0/21\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.45.136.0/21\",\r\n \"20.45.144.0/20\",\r\n
+ \ \"20.45.160.0/19\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.46.32.0/19\",\r\n \"20.46.96.0/20\",\r\n \"20.46.112.0/20\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.46.192.0/21\",\r\n
+ \ \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.0.0/24\",\r\n \"20.47.1.0/24\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.3.0/24\",\r\n \"20.47.4.0/24\",\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.7.0/24\",\r\n \"20.47.8.0/24\",\r\n
+ \ \"20.47.9.0/24\",\r\n \"20.47.10.0/24\",\r\n \"20.47.11.0/24\",\r\n
+ \ \"20.47.12.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.47.16.0/23\",\r\n
+ \ \"20.47.18.0/23\",\r\n \"20.47.20.0/23\",\r\n \"20.47.22.0/23\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.26.0/24\",\r\n \"20.47.27.0/24\",\r\n
+ \ \"20.47.28.0/24\",\r\n \"20.47.29.0/24\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.47.31.0/24\",\r\n \"20.47.32.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.34.0/24\",\r\n \"20.47.35.0/24\",\r\n \"20.47.36.0/24\",\r\n
+ \ \"20.47.37.0/24\",\r\n \"20.47.38.0/24\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.40.0/24\",\r\n \"20.47.41.0/24\",\r\n \"20.47.42.0/24\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.44.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.46.0/24\",\r\n \"20.47.47.0/24\",\r\n \"20.47.48.0/24\",\r\n
+ \ \"20.47.49.0/24\",\r\n \"20.47.50.0/24\",\r\n \"20.47.51.0/24\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.53.0/24\",\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.47.56.0/24\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.47.62.0/23\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.67.0/24\",\r\n \"20.47.68.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.71.0/24\",\r\n \"20.47.72.0/23\",\r\n
+ \ \"20.47.74.0/23\",\r\n \"20.47.76.0/23\",\r\n \"20.47.78.0/23\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.47.82.0/23\",\r\n \"20.47.84.0/23\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.47.87.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.47.89.0/24\",\r\n \"20.47.90.0/24\",\r\n \"20.47.91.0/24\",\r\n
+ \ \"20.47.92.0/24\",\r\n \"20.47.93.0/24\",\r\n \"20.47.94.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.98.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.47.100.0/24\",\r\n \"20.47.101.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.47.103.0/24\",\r\n \"20.47.104.0/24\",\r\n
+ \ \"20.47.105.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.107.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.110.0/24\",\r\n \"20.47.111.0/24\",\r\n
+ \ \"20.47.112.0/24\",\r\n \"20.47.113.0/24\",\r\n \"20.47.114.0/24\",\r\n
+ \ \"20.47.115.0/24\",\r\n \"20.47.116.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.47.120.0/23\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.47.124.0/23\",\r\n \"20.47.126.0/23\",\r\n
+ \ \"20.47.128.0/17\",\r\n \"20.48.0.0/17\",\r\n \"20.48.128.0/18\",\r\n
+ \ \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n \"20.49.0.0/18\",\r\n
+ \ \"20.49.88.0/21\",\r\n \"20.49.96.0/21\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.49.112.0/21\",\r\n \"20.49.120.0/21\",\r\n \"20.49.128.0/17\",\r\n
+ \ \"20.50.0.0/18\",\r\n \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n
+ \ \"20.50.96.0/19\",\r\n \"20.50.128.0/17\",\r\n \"20.51.0.0/21\",\r\n
+ \ \"20.51.8.0/21\",\r\n \"20.51.16.0/21\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.51.32.0/19\",\r\n \"20.51.64.0/18\",\r\n \"20.51.128.0/17\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.72.0/21\",\r\n
+ \ \"20.52.80.0/27\",\r\n \"20.52.80.32/27\",\r\n \"20.52.80.64/27\",\r\n
+ \ \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n \"20.52.128.0/17\",\r\n
+ \ \"20.53.0.0/19\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.48.0/21\",\r\n \"20.53.56.0/21\",\r\n \"20.53.64.0/18\",\r\n
+ \ \"20.53.128.0/17\",\r\n \"20.54.0.0/17\",\r\n \"20.54.128.0/17\",\r\n
+ \ \"20.55.0.0/17\",\r\n \"20.55.128.0/18\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.56.0.0/16\",\r\n \"20.57.0.0/17\",\r\n \"20.57.128.0/18\",\r\n
+ \ \"20.57.192.0/19\",\r\n \"20.57.224.0/19\",\r\n \"20.58.0.0/18\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.58.128.0/18\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.59.0.0/18\",\r\n \"20.59.64.0/18\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.59.192.0/18\",\r\n \"20.60.0.0/24\",\r\n \"20.60.1.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.4.0/24\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.60.11.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.15.0/24\",\r\n
+ \ \"20.60.16.0/24\",\r\n \"20.60.17.0/24\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.20.0/24\",\r\n \"20.60.21.0/24\",\r\n
+ \ \"20.60.22.0/23\",\r\n \"20.60.24.0/23\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.28.0/23\",\r\n \"20.60.30.0/23\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.60.34.0/23\",\r\n \"20.60.36.0/23\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.60.48.0/22\",\r\n \"20.60.52.0/23\",\r\n
+ \ \"20.60.56.0/22\",\r\n \"20.60.60.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.72.0/22\",\r\n \"20.60.80.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.60.128.0/23\",\r\n \"20.60.130.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.60.132.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.60.140.0/23\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.60.144.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.60.148.0/23\",\r\n \"20.60.150.0/23\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.60.154.0/23\",\r\n \"20.60.156.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.60.166.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.60.174.0/23\",\r\n \"20.60.176.0/23\",\r\n
+ \ \"20.60.178.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.60.182.0/23\",\r\n
+ \ \"20.60.184.0/23\",\r\n \"20.60.186.0/23\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.60.194.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.62.0.0/17\",\r\n \"20.62.128.0/17\",\r\n
+ \ \"20.63.0.0/17\",\r\n \"20.63.128.0/18\",\r\n \"20.63.192.0/18\",\r\n
+ \ \"20.64.0.0/17\",\r\n \"20.64.128.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.65.128.0/17\",\r\n \"20.66.0.0/17\",\r\n \"20.66.128.0/17\",\r\n
+ \ \"20.67.0.0/17\",\r\n \"20.67.128.0/17\",\r\n \"20.68.0.0/18\",\r\n
+ \ \"20.68.64.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.69.0.0/18\",\r\n
+ \ \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n \"20.69.192.0/18\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.70.64.0/18\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.71.0.0/16\",\r\n \"20.72.32.0/19\",\r\n \"20.72.64.0/18\",\r\n
+ \ \"20.72.128.0/18\",\r\n \"20.72.192.0/18\",\r\n \"20.73.0.0/16\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.74.128.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.75.128.0/17\",\r\n \"20.76.0.0/16\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.77.192.0/18\",\r\n \"20.78.0.0/17\",\r\n
+ \ \"20.78.128.0/18\",\r\n \"20.78.192.0/18\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.80.0.0/18\",\r\n \"20.80.64.0/18\",\r\n
+ \ \"20.80.128.0/18\",\r\n \"20.80.192.0/18\",\r\n \"20.81.0.0/17\",\r\n
+ \ \"20.81.128.0/17\",\r\n \"20.82.0.0/17\",\r\n \"20.82.128.0/17\",\r\n
+ \ \"20.83.0.0/18\",\r\n \"20.83.64.0/18\",\r\n \"20.83.128.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.84.0.0/17\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.85.0.0/17\",\r\n \"20.85.128.0/17\",\r\n \"20.86.0.0/17\",\r\n
+ \ \"20.87.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.88.96.0/19\",\r\n
+ \ \"20.88.128.0/18\",\r\n \"20.88.192.0/18\",\r\n \"20.89.0.0/17\",\r\n
+ \ \"20.90.0.0/18\",\r\n \"20.92.0.0/18\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.4.0/22\",\r\n \"20.135.8.0/22\",\r\n
+ \ \"20.135.12.0/22\",\r\n \"20.135.16.0/23\",\r\n \"20.135.18.0/23\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.24.0/23\",\r\n \"20.135.26.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.135.30.0/23\",\r\n \"20.135.32.0/23\",\r\n
+ \ \"20.135.36.0/23\",\r\n \"20.135.40.0/23\",\r\n \"20.135.42.0/23\",\r\n
+ \ \"20.135.44.0/23\",\r\n \"20.135.48.0/23\",\r\n \"20.135.50.0/23\",\r\n
+ \ \"20.135.52.0/23\",\r\n \"20.135.54.0/23\",\r\n \"20.135.56.0/23\",\r\n
+ \ \"20.135.58.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.135.66.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.135.70.0/23\",\r\n
+ \ \"20.135.72.0/23\",\r\n \"20.135.74.0/23\",\r\n \"20.135.76.0/23\",\r\n
+ \ \"20.135.78.0/23\",\r\n \"20.135.80.0/22\",\r\n \"20.135.84.0/22\",\r\n
+ \ \"20.135.88.0/23\",\r\n \"20.135.90.0/23\",\r\n \"20.135.92.0/22\",\r\n
+ \ \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.135.128.0/22\",\r\n \"20.135.132.0/23\",\r\n
+ \ \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n
+ \ \"20.135.216.0/22\",\r\n \"20.135.220.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.0.0/24\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.1.128/25\",\r\n \"20.150.2.0/23\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.14.0/23\",\r\n \"20.150.16.0/24\",\r\n
+ \ \"20.150.17.0/25\",\r\n \"20.150.17.128/25\",\r\n \"20.150.18.0/25\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.19.0/24\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.21.0/24\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.23.0/24\",\r\n \"20.150.24.0/24\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.27.0/24\",\r\n \"20.150.28.0/24\",\r\n
+ \ \"20.150.29.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.36.0/24\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.38.0/23\",\r\n \"20.150.40.0/25\",\r\n \"20.150.40.128/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.42.0/24\",\r\n \"20.150.43.0/25\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.46.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n \"20.150.49.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.53.0/24\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.55.0/24\",\r\n \"20.150.56.0/24\",\r\n
+ \ \"20.150.58.0/24\",\r\n \"20.150.59.0/24\",\r\n \"20.150.60.0/24\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.66.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.150.70.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.72.0/24\",\r\n \"20.150.73.0/24\",\r\n \"20.150.74.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.76.0/24\",\r\n \"20.150.77.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.82.0/24\",\r\n \"20.150.83.0/24\",\r\n
+ \ \"20.150.84.0/24\",\r\n \"20.150.85.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.150.91.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.150.100.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.150.103.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"20.150.107.0/24\",\r\n \"20.150.108.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.150.111.0/24\",\r\n \"20.150.112.0/24\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"20.150.114.0/24\",\r\n \"20.150.115.0/24\",\r\n \"20.150.116.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.150.121.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.150.123.0/24\",\r\n
+ \ \"20.150.124.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.151.0.0/17\",\r\n \"20.151.128.0/18\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.157.2.0/24\",\r\n
+ \ \"20.157.3.0/24\",\r\n \"20.157.32.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.157.36.0/23\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"20.157.41.0/24\",\r\n \"20.157.42.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.157.47.0/24\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"20.157.52.0/24\",\r\n \"20.157.53.0/24\",\r\n
+ \ \"20.157.54.0/24\",\r\n \"20.157.55.0/24\",\r\n \"20.157.56.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.157.96.0/24\",\r\n \"20.184.0.0/18\",\r\n
+ \ \"20.184.64.0/18\",\r\n \"20.184.128.0/17\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.187.64.0/18\",\r\n \"20.187.128.0/18\",\r\n
+ \ \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n \"20.188.0.0/19\",\r\n
+ \ \"20.188.32.0/19\",\r\n \"20.188.64.0/19\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.188.128.0/17\",\r\n \"20.189.0.0/18\",\r\n \"20.189.64.0/18\",\r\n
+ \ \"20.189.128.0/18\",\r\n \"20.189.192.0/18\",\r\n \"20.190.0.0/18\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.96.0/19\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.130.0/24\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.133.0/24\",\r\n \"20.190.134.0/24\",\r\n
+ \ \"20.190.135.0/24\",\r\n \"20.190.136.0/24\",\r\n \"20.190.137.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.138.128/25\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.139.128/25\",\r\n \"20.190.140.0/25\",\r\n \"20.190.140.128/25\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.141.128/25\",\r\n \"20.190.142.0/25\",\r\n
+ \ \"20.190.142.128/25\",\r\n \"20.190.143.0/25\",\r\n \"20.190.143.128/25\",\r\n
+ \ \"20.190.144.0/25\",\r\n \"20.190.144.128/25\",\r\n \"20.190.145.0/25\",\r\n
+ \ \"20.190.145.128/25\",\r\n \"20.190.146.0/25\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.147.0/25\",\r\n \"20.190.147.128/25\",\r\n \"20.190.148.0/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.149.0/24\",\r\n \"20.190.150.0/24\",\r\n
+ \ \"20.190.151.0/24\",\r\n \"20.190.152.0/24\",\r\n \"20.190.153.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.190.155.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"20.190.158.0/24\",\r\n \"20.190.159.0/24\",\r\n
+ \ \"20.190.160.0/24\",\r\n \"20.190.161.0/24\",\r\n \"20.190.162.0/24\",\r\n
+ \ \"20.190.163.0/24\",\r\n \"20.190.164.0/24\",\r\n \"20.190.165.0/24\",\r\n
+ \ \"20.190.166.0/24\",\r\n \"20.190.167.0/24\",\r\n \"20.190.168.0/24\",\r\n
+ \ \"20.190.169.0/24\",\r\n \"20.190.170.0/24\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"20.190.172.0/24\",\r\n \"20.190.173.0/24\",\r\n \"20.190.174.0/24\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.190.176.0/24\",\r\n \"20.190.177.0/24\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"20.190.179.0/24\",\r\n \"20.190.180.0/24\",\r\n
+ \ \"20.190.183.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.190.185.0/24\",\r\n
+ \ \"20.190.186.0/24\",\r\n \"20.190.187.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"20.190.189.64/26\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"20.190.190.0/26\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"20.190.192.0/18\",\r\n \"20.191.0.0/18\",\r\n \"20.191.64.0/18\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.191.160.0/19\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n \"20.192.64.0/19\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"20.193.96.0/19\",\r\n
+ \ \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.194.128.0/17\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n
+ \ \"20.195.128.0/22\",\r\n \"20.195.136.0/21\",\r\n \"20.195.144.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.197.64.0/18\",\r\n \"20.197.128.0/17\",\r\n
+ \ \"20.198.0.0/17\",\r\n \"20.198.128.0/17\",\r\n \"20.199.0.0/17\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"20.199.192.0/18\",\r\n \"20.200.0.0/18\",\r\n
+ \ \"20.200.64.0/18\",\r\n \"20.200.128.0/18\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"20.201.0.0/18\",\r\n \"23.96.0.0/17\",\r\n \"23.96.128.0/17\",\r\n
+ \ \"23.97.48.0/20\",\r\n \"23.97.64.0/19\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"23.97.112.192/27\",\r\n \"23.97.112.224/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"23.97.128.0/17\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.98.45.0/24\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.98.47.0/24\",\r\n \"23.98.48.0/21\",\r\n
+ \ \"23.98.56.0/24\",\r\n \"23.98.57.64/26\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.98.128.0/17\",\r\n \"23.99.0.0/18\",\r\n \"23.99.64.0/19\",\r\n
+ \ \"23.99.96.0/19\",\r\n \"23.99.128.0/17\",\r\n \"23.100.0.0/20\",\r\n
+ \ \"23.100.16.0/20\",\r\n \"23.100.32.0/20\",\r\n \"23.100.48.0/20\",\r\n
+ \ \"23.100.64.0/21\",\r\n \"23.100.72.0/21\",\r\n \"23.100.80.0/21\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.100.96.0/21\",\r\n \"23.100.104.0/21\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.100.120.0/21\",\r\n \"23.100.128.0/18\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.100.240.0/20\",\r\n \"23.101.0.0/20\",\r\n
+ \ \"23.101.16.0/20\",\r\n \"23.101.32.0/21\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.101.64.0/20\",\r\n \"23.101.80.0/21\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.101.128.0/20\",\r\n \"23.101.144.0/20\",\r\n \"23.101.160.0/20\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.101.192.0/20\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"23.101.224.0/19\",\r\n \"23.102.0.0/18\",\r\n \"23.102.64.0/19\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.128.0/18\",\r\n \"23.102.192.0/21\",\r\n
+ \ \"23.102.200.0/23\",\r\n \"23.102.202.0/24\",\r\n \"23.102.203.0/24\",\r\n
+ \ \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n \"23.102.224.0/19\",\r\n
+ \ \"23.103.64.32/27\",\r\n \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n
+ \ \"40.64.64.0/18\",\r\n \"40.64.128.0/21\",\r\n \"40.65.0.0/18\",\r\n
+ \ \"40.65.64.0/18\",\r\n \"40.65.128.0/18\",\r\n \"40.65.192.0/18\",\r\n
+ \ \"40.66.32.0/19\",\r\n \"40.66.120.0/21\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.67.128.0/19\",\r\n \"40.67.160.0/19\",\r\n \"40.67.192.0/19\",\r\n
+ \ \"40.67.224.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.96.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.69.192.0/19\",\r\n \"40.70.0.0/18\",\r\n \"40.70.64.0/20\",\r\n
+ \ \"40.70.80.0/21\",\r\n \"40.70.88.0/28\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.74.0.0/18\",\r\n \"40.74.64.0/18\",\r\n
+ \ \"40.74.128.0/20\",\r\n \"40.74.144.0/20\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.75.0.0/19\",\r\n \"40.75.32.0/21\",\r\n
+ \ \"40.75.64.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.76.0.0/16\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.128.0/25\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.130.128/26\",\r\n
+ \ \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n \"40.77.131.128/26\",\r\n
+ \ \"40.77.131.192/27\",\r\n \"40.77.131.224/28\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.132.0/24\",\r\n \"40.77.133.0/24\",\r\n \"40.77.134.0/24\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.0/28\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.48/28\",\r\n \"40.77.136.64/28\",\r\n
+ \ \"40.77.136.80/28\",\r\n \"40.77.136.96/28\",\r\n \"40.77.136.128/25\",\r\n
+ \ \"40.77.137.0/25\",\r\n \"40.77.137.128/26\",\r\n \"40.77.137.192/27\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.138.128/25\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n \"40.77.160.32/27\",\r\n
+ \ \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n \"40.77.161.0/26\",\r\n
+ \ \"40.77.161.64/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.162.0/24\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.166.0/25\",\r\n \"40.77.166.128/28\",\r\n \"40.77.166.160/27\",\r\n
+ \ \"40.77.166.192/26\",\r\n \"40.77.167.0/24\",\r\n \"40.77.168.0/24\",\r\n
+ \ \"40.77.169.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.171.0/24\",\r\n
+ \ \"40.77.172.0/24\",\r\n \"40.77.173.0/24\",\r\n \"40.77.174.0/24\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.175.32/27\",\r\n \"40.77.175.64/27\",\r\n
+ \ \"40.77.175.96/27\",\r\n \"40.77.175.128/27\",\r\n \"40.77.175.160/27\",\r\n
+ \ \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n \"40.77.176.0/24\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.180.0/23\",\r\n
+ \ \"40.77.182.0/28\",\r\n \"40.77.182.16/28\",\r\n \"40.77.182.32/27\",\r\n
+ \ \"40.77.182.64/27\",\r\n \"40.77.182.96/27\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.182.192/26\",\r\n \"40.77.183.0/24\",\r\n
+ \ \"40.77.184.0/25\",\r\n \"40.77.184.128/25\",\r\n \"40.77.185.0/25\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.188.0/22\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.196.0/24\",\r\n \"40.77.197.0/24\",\r\n
+ \ \"40.77.198.0/26\",\r\n \"40.77.198.64/26\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.0/25\",\r\n \"40.77.199.128/26\",\r\n \"40.77.199.192/26\",\r\n
+ \ \"40.77.200.0/25\",\r\n \"40.77.200.128/25\",\r\n \"40.77.201.0/24\",\r\n
+ \ \"40.77.202.0/24\",\r\n \"40.77.224.0/28\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.224.64/27\",\r\n \"40.77.224.96/27\",\r\n
+ \ \"40.77.224.128/25\",\r\n \"40.77.225.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.227.0/24\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.229.0/24\",\r\n \"40.77.230.0/24\",\r\n \"40.77.231.0/24\",\r\n
+ \ \"40.77.232.0/25\",\r\n \"40.77.232.128/25\",\r\n \"40.77.233.0/24\",\r\n
+ \ \"40.77.234.0/25\",\r\n \"40.77.234.128/27\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.234.192/27\",\r\n \"40.77.234.224/27\",\r\n \"40.77.235.0/24\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.32/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.236.96/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.236.160/28\",\r\n
+ \ \"40.77.236.176/28\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.237.128/25\",\r\n \"40.77.240.0/25\",\r\n
+ \ \"40.77.240.128/25\",\r\n \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n
+ \ \"40.77.245.0/24\",\r\n \"40.77.246.0/24\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.248.128/25\",\r\n \"40.77.249.0/24\",\r\n
+ \ \"40.77.250.0/24\",\r\n \"40.77.251.0/24\",\r\n \"40.77.252.0/23\",\r\n
+ \ \"40.77.254.0/26\",\r\n \"40.77.254.128/25\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.77.255.128/26\",\r\n \"40.77.255.192/26\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.128.0/18\",\r\n \"40.78.192.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.0/28\",\r\n \"40.78.208.16/28\",\r\n \"40.78.208.32/30\",\r\n
+ \ \"40.78.208.48/28\",\r\n \"40.78.208.64/28\",\r\n \"40.78.209.0/24\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.78.211.0/24\",\r\n \"40.78.212.0/24\",\r\n
+ \ \"40.78.214.0/24\",\r\n \"40.78.216.0/24\",\r\n \"40.78.217.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.78.219.0/24\",\r\n \"40.78.220.0/24\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.78.222.0/24\",\r\n \"40.78.223.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.78.232.0/21\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n \"40.79.8.32/28\",\r\n
+ \ \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n \"40.79.9.0/24\",\r\n
+ \ \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n \"40.79.48.0/27\",\r\n
+ \ \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n \"40.79.56.0/21\",\r\n
+ \ \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n \"40.79.88.0/27\",\r\n
+ \ \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n \"40.79.90.0/24\",\r\n
+ \ \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n \"40.79.93.0/28\",\r\n
+ \ \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n \"40.79.96.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.152.0/21\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.176.0/21\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.201.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.79.203.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.79.204.192/26\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n \"40.79.205.240/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.79.206.32/27\",\r\n \"40.79.206.64/27\",\r\n
+ \ \"40.79.206.96/27\",\r\n \"40.79.206.128/27\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.206.224/27\",\r\n \"40.79.207.0/27\",\r\n
+ \ \"40.79.207.32/27\",\r\n \"40.79.207.64/28\",\r\n \"40.79.207.80/28\",\r\n
+ \ \"40.79.207.96/27\",\r\n \"40.79.207.128/25\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.79.210.0/24\",\r\n \"40.79.211.0/24\",\r\n
+ \ \"40.79.212.0/24\",\r\n \"40.79.213.0/24\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.79.216.0/24\",\r\n \"40.79.217.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.79.219.0/24\",\r\n \"40.79.220.0/24\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.79.222.0/24\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.79.232.0/21\",\r\n \"40.79.240.0/20\",\r\n \"40.80.0.0/22\",\r\n
+ \ \"40.80.4.0/22\",\r\n \"40.80.12.0/22\",\r\n \"40.80.16.0/22\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.24.0/22\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.36.0/22\",\r\n \"40.80.40.0/22\",\r\n \"40.80.44.0/22\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.56.0/21\",\r\n \"40.80.64.0/19\",\r\n
+ \ \"40.80.96.0/20\",\r\n \"40.80.144.0/21\",\r\n \"40.80.152.0/21\",\r\n
+ \ \"40.80.160.0/24\",\r\n \"40.80.168.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.80.184.0/21\",\r\n \"40.80.192.0/19\",\r\n \"40.80.224.0/20\",\r\n
+ \ \"40.80.240.0/20\",\r\n \"40.81.0.0/20\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.81.48.0/20\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.81.96.0/20\",\r\n \"40.81.112.0/20\",\r\n
+ \ \"40.81.128.0/19\",\r\n \"40.81.160.0/20\",\r\n \"40.81.176.0/20\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.81.224.0/19\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.82.4.0/22\",\r\n \"40.82.8.0/22\",\r\n \"40.82.16.0/22\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.24.0/22\",\r\n \"40.82.28.0/22\",\r\n
+ \ \"40.82.32.0/22\",\r\n \"40.82.36.0/22\",\r\n \"40.82.44.0/22\",\r\n
+ \ \"40.82.48.0/22\",\r\n \"40.82.52.0/22\",\r\n \"40.82.60.0/22\",\r\n
+ \ \"40.82.64.0/22\",\r\n \"40.82.68.0/22\",\r\n \"40.82.72.0/22\",\r\n
+ \ \"40.82.84.0/22\",\r\n \"40.82.88.0/22\",\r\n \"40.82.92.0/22\",\r\n
+ \ \"40.82.96.0/22\",\r\n \"40.82.100.0/22\",\r\n \"40.82.116.0/22\",\r\n
+ \ \"40.82.120.0/22\",\r\n \"40.82.128.0/19\",\r\n \"40.82.160.0/19\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.82.224.0/20\",\r\n \"40.82.240.0/22\",\r\n
+ \ \"40.82.244.0/22\",\r\n \"40.82.248.0/21\",\r\n \"40.83.0.0/20\",\r\n
+ \ \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n \"40.83.24.64/27\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.83.64.0/18\",\r\n \"40.83.128.0/17\",\r\n \"40.84.0.0/17\",\r\n
+ \ \"40.84.128.0/17\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.85.144.0/20\",\r\n \"40.85.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.86.128.0/19\",\r\n \"40.86.160.0/19\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.87.0.0/17\",\r\n \"40.87.128.0/19\",\r\n
+ \ \"40.87.160.0/22\",\r\n \"40.87.164.0/22\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.4/30\",\r\n \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n
+ \ \"40.87.168.32/29\",\r\n \"40.87.168.40/29\",\r\n \"40.87.168.48/28\",\r\n
+ \ \"40.87.168.64/30\",\r\n \"40.87.168.68/31\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.208/31\",\r\n
+ \ \"40.87.168.210/31\",\r\n \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n
+ \ \"40.87.168.224/27\",\r\n \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n
+ \ \"40.87.169.40/30\",\r\n \"40.87.169.44/30\",\r\n \"40.87.169.48/29\",\r\n
+ \ \"40.87.169.56/31\",\r\n \"40.87.169.58/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.98/31\",\r\n
+ \ \"40.87.169.100/31\",\r\n \"40.87.169.102/31\",\r\n \"40.87.169.104/29\",\r\n
+ \ \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n \"40.87.169.136/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.144/28\",\r\n
+ \ \"40.87.169.160/27\",\r\n \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n
+ \ \"40.87.170.128/28\",\r\n \"40.87.170.144/31\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.188/30\",\r\n
+ \ \"40.87.170.192/31\",\r\n \"40.87.170.194/31\",\r\n \"40.87.170.196/30\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n \"40.87.170.220/30\",\r\n
+ \ \"40.87.170.224/30\",\r\n \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n
+ \ \"40.87.170.240/29\",\r\n \"40.87.170.248/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.32/30\",\r\n
+ \ \"40.87.171.36/30\",\r\n \"40.87.171.40/31\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n \"40.87.171.96/27\",\r\n
+ \ \"40.87.171.128/28\",\r\n \"40.87.172.0/22\",\r\n \"40.87.176.0/25\",\r\n
+ \ \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n \"40.87.176.174/31\",\r\n
+ \ \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n \"40.87.176.216/29\",\r\n
+ \ \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n \"40.87.176.240/28\",\r\n
+ \ \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n \"40.87.177.64/27\",\r\n
+ \ \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n \"40.87.177.120/31\",\r\n
+ \ \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n \"40.87.177.144/29\",\r\n
+ \ \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n \"40.87.177.160/27\",\r\n
+ \ \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n \"40.87.177.212/30\",\r\n
+ \ \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n \"40.87.178.0/26\",\r\n
+ \ \"40.87.178.64/29\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n \"40.87.180.12/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n \"40.87.180.28/30\",\r\n
+ \ \"40.87.180.32/29\",\r\n \"40.87.180.40/31\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n \"40.87.180.74/31\",\r\n
+ \ \"40.87.180.76/30\",\r\n \"40.87.182.0/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.24/29\",\r\n
+ \ \"40.87.182.32/28\",\r\n \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n
+ \ \"40.87.182.60/31\",\r\n \"40.87.182.62/31\",\r\n \"40.87.182.64/26\",\r\n
+ \ \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n \"40.87.183.16/29\",\r\n
+ \ \"40.87.183.24/30\",\r\n \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n
+ \ \"40.87.183.34/31\",\r\n \"40.87.183.36/30\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n \"40.87.183.48/30\",\r\n
+ \ \"40.87.183.52/31\",\r\n \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n
+ \ \"40.87.183.64/26\",\r\n \"40.87.183.128/28\",\r\n \"40.87.183.144/28\",\r\n
+ \ \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n \"40.87.183.224/29\",\r\n
+ \ \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n \"40.87.183.238/31\",\r\n
+ \ \"40.87.183.240/30\",\r\n \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n
+ \ \"40.87.184.0/22\",\r\n \"40.87.188.0/22\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.87.196.0/22\",\r\n \"40.87.200.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.87.208.0/22\",\r\n \"40.87.212.0/22\",\r\n \"40.87.216.0/22\",\r\n
+ \ \"40.87.220.0/22\",\r\n \"40.87.224.0/22\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.88.0.0/16\",\r\n \"40.89.0.0/19\",\r\n
+ \ \"40.89.32.0/19\",\r\n \"40.89.64.0/18\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.89.192.0/19\",\r\n \"40.89.224.0/19\",\r\n \"40.90.16.0/27\",\r\n
+ \ \"40.90.16.64/27\",\r\n \"40.90.16.96/27\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.16.192/26\",\r\n \"40.90.17.0/27\",\r\n
+ \ \"40.90.17.32/27\",\r\n \"40.90.17.64/27\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.17.128/28\",\r\n \"40.90.17.144/28\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.17.192/27\",\r\n \"40.90.17.224/27\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.18.64/26\",\r\n \"40.90.18.128/26\",\r\n
+ \ \"40.90.18.192/26\",\r\n \"40.90.19.0/27\",\r\n \"40.90.19.32/27\",\r\n
+ \ \"40.90.19.64/26\",\r\n \"40.90.19.128/25\",\r\n \"40.90.20.0/25\",\r\n
+ \ \"40.90.20.128/25\",\r\n \"40.90.21.0/25\",\r\n \"40.90.21.128/25\",\r\n
+ \ \"40.90.22.0/25\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.0/25\",\r\n \"40.90.24.128/25\",\r\n
+ \ \"40.90.25.0/26\",\r\n \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.26.0/26\",\r\n \"40.90.26.64/26\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.27.0/26\",\r\n \"40.90.27.64/26\",\r\n
+ \ \"40.90.27.128/26\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.28.192/26\",\r\n
+ \ \"40.90.29.0/26\",\r\n \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.30.0/25\",\r\n \"40.90.30.128/27\",\r\n
+ \ \"40.90.30.160/27\",\r\n \"40.90.30.192/26\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.31.96/27\",\r\n \"40.90.31.128/25\",\r\n \"40.90.128.0/28\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.128.48/28\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.128.80/28\",\r\n \"40.90.128.96/28\",\r\n \"40.90.128.112/28\",\r\n
+ \ \"40.90.128.128/28\",\r\n \"40.90.128.144/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.128.176/28\",\r\n \"40.90.128.192/28\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.128.240/28\",\r\n \"40.90.129.48/28\",\r\n
+ \ \"40.90.129.96/27\",\r\n \"40.90.129.128/26\",\r\n \"40.90.129.192/27\",\r\n
+ \ \"40.90.129.224/27\",\r\n \"40.90.130.0/27\",\r\n \"40.90.130.32/28\",\r\n
+ \ \"40.90.130.48/28\",\r\n \"40.90.130.64/28\",\r\n \"40.90.130.80/28\",\r\n
+ \ \"40.90.130.96/28\",\r\n \"40.90.130.112/28\",\r\n \"40.90.130.128/28\",\r\n
+ \ \"40.90.130.144/28\",\r\n \"40.90.130.160/27\",\r\n \"40.90.130.192/28\",\r\n
+ \ \"40.90.130.208/28\",\r\n \"40.90.130.224/28\",\r\n \"40.90.130.240/28\",\r\n
+ \ \"40.90.131.0/27\",\r\n \"40.90.131.32/27\",\r\n \"40.90.131.64/27\",\r\n
+ \ \"40.90.131.96/27\",\r\n \"40.90.131.128/27\",\r\n \"40.90.131.160/27\",\r\n
+ \ \"40.90.131.192/27\",\r\n \"40.90.131.224/27\",\r\n \"40.90.132.0/27\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.132.48/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.132.96/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.132.192/26\",\r\n \"40.90.133.0/27\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.133.96/28\",\r\n \"40.90.133.112/28\",\r\n
+ \ \"40.90.133.128/28\",\r\n \"40.90.133.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.133.192/26\",\r\n \"40.90.134.0/26\",\r\n \"40.90.134.64/26\",\r\n
+ \ \"40.90.134.128/26\",\r\n \"40.90.134.192/26\",\r\n \"40.90.135.0/26\",\r\n
+ \ \"40.90.135.64/26\",\r\n \"40.90.135.128/25\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.136.160/28\",\r\n \"40.90.136.176/28\",\r\n
+ \ \"40.90.136.192/27\",\r\n \"40.90.136.224/27\",\r\n \"40.90.137.0/27\",\r\n
+ \ \"40.90.137.32/27\",\r\n \"40.90.137.64/27\",\r\n \"40.90.137.96/27\",\r\n
+ \ \"40.90.137.128/27\",\r\n \"40.90.137.160/27\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.137.224/27\",\r\n \"40.90.138.0/27\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.138.96/27\",\r\n \"40.90.138.128/27\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.138.192/28\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.90.139.0/27\",\r\n \"40.90.139.32/27\",\r\n
+ \ \"40.90.139.64/27\",\r\n \"40.90.139.96/27\",\r\n \"40.90.139.128/27\",\r\n
+ \ \"40.90.139.160/27\",\r\n \"40.90.139.192/27\",\r\n \"40.90.139.224/27\",\r\n
+ \ \"40.90.140.0/27\",\r\n \"40.90.140.32/27\",\r\n \"40.90.140.64/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.128/27\",\r\n \"40.90.140.160/27\",\r\n
+ \ \"40.90.140.192/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.64/27\",\r\n \"40.90.141.96/27\",\r\n
+ \ \"40.90.141.128/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.32/27\",\r\n \"40.90.142.64/27\",\r\n
+ \ \"40.90.142.96/27\",\r\n \"40.90.142.128/27\",\r\n \"40.90.142.160/27\",\r\n
+ \ \"40.90.142.192/28\",\r\n \"40.90.142.208/28\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.142.240/28\",\r\n \"40.90.143.0/27\",\r\n \"40.90.143.32/27\",\r\n
+ \ \"40.90.143.64/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.143.128/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.143.192/26\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.32/27\",\r\n \"40.90.144.64/26\",\r\n \"40.90.144.128/26\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.144.224/27\",\r\n \"40.90.145.0/27\",\r\n
+ \ \"40.90.145.32/27\",\r\n \"40.90.145.64/27\",\r\n \"40.90.145.96/27\",\r\n
+ \ \"40.90.145.128/27\",\r\n \"40.90.145.160/27\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"40.90.145.224/27\",\r\n \"40.90.146.0/28\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.32/27\",\r\n \"40.90.146.64/26\",\r\n \"40.90.146.128/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.192/27\",\r\n \"40.90.146.224/27\",\r\n
+ \ \"40.90.147.0/27\",\r\n \"40.90.147.32/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.147.96/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.90.147.224/27\",\r\n \"40.90.148.0/26\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.148.96/27\",\r\n \"40.90.148.128/27\",\r\n \"40.90.148.160/28\",\r\n
+ \ \"40.90.148.176/28\",\r\n \"40.90.148.192/27\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.149.0/27\",\r\n \"40.90.149.32/27\",\r\n \"40.90.149.64/27\",\r\n
+ \ \"40.90.149.96/27\",\r\n \"40.90.149.128/25\",\r\n \"40.90.150.0/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.90.150.128/25\",\r\n \"40.90.151.0/26\",\r\n \"40.90.151.64/27\",\r\n
+ \ \"40.90.151.96/27\",\r\n \"40.90.151.128/28\",\r\n \"40.90.151.144/28\",\r\n
+ \ \"40.90.151.160/27\",\r\n \"40.90.151.224/27\",\r\n \"40.90.152.0/25\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.90.152.160/27\",\r\n \"40.90.152.192/27\",\r\n
+ \ \"40.90.152.224/27\",\r\n \"40.90.153.0/26\",\r\n \"40.90.153.64/27\",\r\n
+ \ \"40.90.153.96/27\",\r\n \"40.90.153.128/25\",\r\n \"40.90.154.0/26\",\r\n
+ \ \"40.90.154.64/26\",\r\n \"40.90.154.128/26\",\r\n \"40.90.154.192/26\",\r\n
+ \ \"40.90.155.0/26\",\r\n \"40.90.155.64/26\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.155.192/26\",\r\n \"40.90.156.0/26\",\r\n \"40.90.156.64/27\",\r\n
+ \ \"40.90.156.96/27\",\r\n \"40.90.156.128/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.157.0/27\",\r\n \"40.90.157.32/27\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.157.192/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.90.158.0/26\",\r\n \"40.90.158.64/26\",\r\n \"40.90.158.128/25\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.90.160.0/19\",\r\n \"40.90.192.0/19\",\r\n
+ \ \"40.90.224.0/19\",\r\n \"40.91.0.0/22\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.91.12.0/28\",\r\n \"40.91.12.16/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n
+ \ \"40.91.13.128/27\",\r\n \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n
+ \ \"40.91.16.0/22\",\r\n \"40.91.20.0/22\",\r\n \"40.91.24.0/22\",\r\n
+ \ \"40.91.28.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.91.64.0/18\",\r\n
+ \ \"40.91.160.0/19\",\r\n \"40.91.192.0/18\",\r\n \"40.93.0.0/23\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.3.0/24\",\r\n \"40.93.4.0/24\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.93.6.0/24\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.93.8.0/24\",\r\n \"40.96.46.0/24\",\r\n \"40.96.52.0/24\",\r\n
+ \ \"40.96.55.0/24\",\r\n \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.112.36.0/25\",\r\n \"40.112.36.128/25\",\r\n
+ \ \"40.112.37.0/26\",\r\n \"40.112.37.64/26\",\r\n \"40.112.37.128/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.112.38.192/26\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.112.48.0/20\",\r\n \"40.112.64.0/19\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.112.128.0/17\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.113.192.0/18\",\r\n \"40.114.0.0/17\",\r\n \"40.114.128.0/17\",\r\n
+ \ \"40.115.0.0/18\",\r\n \"40.115.64.0/19\",\r\n \"40.115.96.0/19\",\r\n
+ \ \"40.115.128.0/17\",\r\n \"40.116.0.0/16\",\r\n \"40.117.0.0/19\",\r\n
+ \ \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n \"40.117.128.0/17\",\r\n
+ \ \"40.118.0.0/17\",\r\n \"40.118.128.0/17\",\r\n \"40.119.0.0/18\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.119.68.0/22\",\r\n \"40.119.72.0/22\",\r\n
+ \ \"40.119.76.0/22\",\r\n \"40.119.80.0/22\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.119.92.0/22\",\r\n \"40.119.96.0/22\",\r\n \"40.119.104.0/22\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.119.128.0/19\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.119.192.0/18\",\r\n \"40.120.0.0/20\",\r\n \"40.120.16.0/20\",\r\n
+ \ \"40.120.32.0/19\",\r\n \"40.120.64.0/18\",\r\n \"40.121.0.0/16\",\r\n
+ \ \"40.122.0.0/20\",\r\n \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n
+ \ \"40.122.64.0/18\",\r\n \"40.122.128.0/17\",\r\n \"40.123.0.0/17\",\r\n
+ \ \"40.123.128.0/22\",\r\n \"40.123.132.0/22\",\r\n \"40.123.136.0/24\",\r\n
+ \ \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.124.0.0/16\",\r\n \"40.125.0.0/19\",\r\n \"40.125.32.0/19\",\r\n
+ \ \"40.125.64.0/18\",\r\n \"40.126.0.0/24\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.3.0/24\",\r\n \"40.126.4.0/24\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.6.0/24\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.8.0/24\",\r\n \"40.126.9.0/24\",\r\n \"40.126.10.0/25\",\r\n
+ \ \"40.126.10.128/25\",\r\n \"40.126.11.0/25\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.12.0/25\",\r\n \"40.126.12.128/25\",\r\n \"40.126.13.0/25\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.14.0/25\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.15.128/25\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.16.128/25\",\r\n \"40.126.17.0/25\",\r\n \"40.126.17.128/25\",\r\n
+ \ \"40.126.18.0/25\",\r\n \"40.126.18.128/25\",\r\n \"40.126.19.0/25\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.20.0/25\",\r\n \"40.126.20.128/25\",\r\n
+ \ \"40.126.21.0/24\",\r\n \"40.126.22.0/24\",\r\n \"40.126.23.0/24\",\r\n
+ \ \"40.126.24.0/24\",\r\n \"40.126.25.0/24\",\r\n \"40.126.26.0/24\",\r\n
+ \ \"40.126.27.0/24\",\r\n \"40.126.28.0/24\",\r\n \"40.126.29.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"40.126.31.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"40.126.34.0/24\",\r\n \"40.126.35.0/24\",\r\n
+ \ \"40.126.36.0/24\",\r\n \"40.126.37.0/24\",\r\n \"40.126.38.0/24\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.40.0/24\",\r\n \"40.126.41.0/24\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"40.126.43.0/24\",\r\n \"40.126.44.0/24\",\r\n
+ \ \"40.126.45.0/24\",\r\n \"40.126.46.0/24\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"40.126.48.0/24\",\r\n \"40.126.49.0/24\",\r\n \"40.126.50.0/24\",\r\n
+ \ \"40.126.51.0/24\",\r\n \"40.126.52.0/24\",\r\n \"40.126.55.0/24\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.57.0/24\",\r\n \"40.126.58.0/24\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.60.0/24\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.61.64/26\",\r\n \"40.126.61.128/26\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.126.62.64/26\",\r\n \"40.126.128.0/18\",\r\n
+ \ \"40.126.192.0/24\",\r\n \"40.126.193.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"40.126.195.0/24\",\r\n \"40.126.197.0/24\",\r\n \"40.126.198.0/24\",\r\n
+ \ \"40.126.200.0/24\",\r\n \"40.126.201.0/24\",\r\n \"40.126.207.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"40.126.224.0/19\",\r\n \"40.127.0.0/19\",\r\n
+ \ \"40.127.64.0/19\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.11.0.0/18\",\r\n \"51.11.64.0/19\",\r\n \"51.11.96.0/19\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.11.192.0/18\",\r\n \"51.13.0.0/17\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.103.0.0/17\",\r\n \"51.103.128.0/18\",\r\n
+ \ \"51.103.192.0/27\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.104.0.0/19\",\r\n \"51.104.32.0/19\",\r\n \"51.104.64.0/18\",\r\n
+ \ \"51.104.128.0/18\",\r\n \"51.104.192.0/18\",\r\n \"51.105.0.0/18\",\r\n
+ \ \"51.105.64.0/20\",\r\n \"51.105.80.0/21\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.107.0.0/18\",\r\n
+ \ \"51.107.64.0/19\",\r\n \"51.107.96.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n \"51.107.160.0/20\",\r\n
+ \ \"51.107.192.0/21\",\r\n \"51.107.200.0/21\",\r\n \"51.107.208.0/20\",\r\n
+ \ \"51.107.224.0/20\",\r\n \"51.107.240.0/21\",\r\n \"51.107.248.0/21\",\r\n
+ \ \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.200.0/21\",\r\n
+ \ \"51.116.208.0/20\",\r\n \"51.116.224.0/19\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n \"51.120.208.0/21\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"51.120.232.0/21\",\r\n
+ \ \"51.120.240.0/20\",\r\n \"51.124.0.0/17\",\r\n \"51.124.128.0/18\",\r\n
+ \ \"51.132.0.0/18\",\r\n \"51.132.64.0/18\",\r\n \"51.132.128.0/17\",\r\n
+ \ \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n \"51.137.128.0/18\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.138.128.0/19\",\r\n
+ \ \"51.138.160.0/21\",\r\n \"51.138.192.0/19\",\r\n \"51.140.0.0/17\",\r\n
+ \ \"51.140.128.0/18\",\r\n \"51.140.192.0/18\",\r\n \"51.141.0.0/17\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.32/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.32/27\",\r\n
+ \ \"51.141.129.64/26\",\r\n \"51.141.129.128/26\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"51.141.134.0/24\",\r\n \"51.141.135.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"51.141.156.0/22\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.141.192.0/18\",\r\n \"51.142.0.0/17\",\r\n \"51.142.128.0/17\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"51.143.128.0/18\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"51.143.208.0/20\",\r\n
+ \ \"51.143.224.0/19\",\r\n \"51.144.0.0/16\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.0.0/22\",\r\n
+ \ \"52.101.4.0/22\",\r\n \"52.101.8.0/24\",\r\n \"52.101.9.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.11.0/24\",\r\n \"52.101.12.0/22\",\r\n
+ \ \"52.101.16.0/22\",\r\n \"52.101.20.0/22\",\r\n \"52.101.24.0/22\",\r\n
+ \ \"52.101.28.0/22\",\r\n \"52.101.32.0/22\",\r\n \"52.101.36.0/22\",\r\n
+ \ \"52.101.40.0/24\",\r\n \"52.101.41.0/24\",\r\n \"52.101.42.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.129.0/24\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.102.131.0/24\",\r\n \"52.102.132.0/24\",\r\n \"52.102.133.0/24\",\r\n
+ \ \"52.102.134.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.102.159.0/24\",\r\n
+ \ \"52.103.0.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.2.0/24\",\r\n
+ \ \"52.103.3.0/24\",\r\n \"52.103.4.0/24\",\r\n \"52.103.5.0/24\",\r\n
+ \ \"52.103.6.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.128.0/24\",\r\n \"52.103.129.0/24\",\r\n \"52.103.130.0/24\",\r\n
+ \ \"52.103.131.0/24\",\r\n \"52.103.132.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.0.0/21\",\r\n \"52.108.16.0/21\",\r\n
+ \ \"52.108.24.0/21\",\r\n \"52.108.32.0/22\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.40.0/23\",\r\n \"52.108.42.0/23\",\r\n \"52.108.44.0/23\",\r\n
+ \ \"52.108.46.0/23\",\r\n \"52.108.48.0/23\",\r\n \"52.108.50.0/23\",\r\n
+ \ \"52.108.52.0/23\",\r\n \"52.108.54.0/23\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.68.0/23\",\r\n \"52.108.70.0/23\",\r\n \"52.108.72.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.74.0/24\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.76.0/24\",\r\n \"52.108.77.0/24\",\r\n \"52.108.78.0/24\",\r\n
+ \ \"52.108.79.0/24\",\r\n \"52.108.80.0/24\",\r\n \"52.108.81.0/24\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.83.0/24\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.108.85.0/24\",\r\n \"52.108.86.0/24\",\r\n \"52.108.87.0/24\",\r\n
+ \ \"52.108.88.0/24\",\r\n \"52.108.89.0/24\",\r\n \"52.108.90.0/24\",\r\n
+ \ \"52.108.91.0/24\",\r\n \"52.108.92.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.108.94.0/24\",\r\n \"52.108.95.0/24\",\r\n \"52.108.96.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.108.108.0/23\",\r\n
+ \ \"52.108.110.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.108.113.0/24\",\r\n \"52.108.116.0/24\",\r\n \"52.108.128.0/24\",\r\n
+ \ \"52.108.137.0/24\",\r\n \"52.108.138.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.177.0/24\",\r\n \"52.108.178.0/24\",\r\n
+ \ \"52.108.179.0/24\",\r\n \"52.108.180.0/24\",\r\n \"52.108.181.0/24\",\r\n
+ \ \"52.108.182.0/24\",\r\n \"52.108.183.0/24\",\r\n \"52.108.184.0/24\",\r\n
+ \ \"52.108.185.0/24\",\r\n \"52.108.186.0/24\",\r\n \"52.108.187.0/24\",\r\n
+ \ \"52.108.188.0/24\",\r\n \"52.108.189.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.191.0/24\",\r\n \"52.108.192.0/24\",\r\n \"52.108.193.0/24\",\r\n
+ \ \"52.108.194.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.196.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.198.0/24\",\r\n \"52.108.199.0/24\",\r\n
+ \ \"52.108.200.0/24\",\r\n \"52.108.201.0/24\",\r\n \"52.108.202.0/24\",\r\n
+ \ \"52.108.203.0/24\",\r\n \"52.108.204.0/23\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.208.0/21\",\r\n \"52.108.216.0/22\",\r\n \"52.108.220.0/23\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.108.224.0/23\",\r\n \"52.108.226.0/23\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.108.230.0/23\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.108.236.0/22\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.108.248.0/21\",\r\n \"52.109.0.0/22\",\r\n \"52.109.4.0/22\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.109.12.0/22\",\r\n \"52.109.16.0/22\",\r\n
+ \ \"52.109.20.0/22\",\r\n \"52.109.24.0/22\",\r\n \"52.109.28.0/22\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.109.36.0/22\",\r\n \"52.109.40.0/22\",\r\n
+ \ \"52.109.44.0/22\",\r\n \"52.109.48.0/22\",\r\n \"52.109.52.0/22\",\r\n
+ \ \"52.109.56.0/22\",\r\n \"52.109.60.0/22\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.109.72.0/22\",\r\n \"52.109.76.0/22\",\r\n
+ \ \"52.109.86.0/23\",\r\n \"52.109.88.0/22\",\r\n \"52.109.92.0/22\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.109.100.0/23\",\r\n \"52.109.102.0/23\",\r\n
+ \ \"52.109.104.0/23\",\r\n \"52.109.108.0/22\",\r\n \"52.109.112.0/22\",\r\n
+ \ \"52.109.116.0/22\",\r\n \"52.109.120.0/22\",\r\n \"52.109.124.0/22\",\r\n
+ \ \"52.109.128.0/22\",\r\n \"52.109.132.0/22\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.109.140.0/22\",\r\n \"52.109.144.0/23\",\r\n \"52.109.150.0/23\",\r\n
+ \ \"52.109.152.0/23\",\r\n \"52.109.156.0/23\",\r\n \"52.109.158.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.109.162.0/23\",\r\n \"52.109.164.0/24\",\r\n
+ \ \"52.111.194.0/24\",\r\n \"52.111.197.0/24\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.111.202.0/24\",\r\n \"52.111.203.0/24\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.111.205.0/24\",\r\n \"52.111.206.0/24\",\r\n \"52.111.207.0/24\",\r\n
+ \ \"52.111.224.0/24\",\r\n \"52.111.225.0/24\",\r\n \"52.111.226.0/24\",\r\n
+ \ \"52.111.227.0/24\",\r\n \"52.111.228.0/24\",\r\n \"52.111.229.0/24\",\r\n
+ \ \"52.111.230.0/24\",\r\n \"52.111.231.0/24\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.111.233.0/24\",\r\n \"52.111.234.0/24\",\r\n \"52.111.235.0/24\",\r\n
+ \ \"52.111.236.0/24\",\r\n \"52.111.237.0/24\",\r\n \"52.111.238.0/24\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.111.240.0/24\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.111.242.0/24\",\r\n \"52.111.243.0/24\",\r\n \"52.111.244.0/24\",\r\n
+ \ \"52.111.245.0/24\",\r\n \"52.111.246.0/24\",\r\n \"52.111.247.0/24\",\r\n
+ \ \"52.111.248.0/24\",\r\n \"52.111.249.0/24\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.111.251.0/24\",\r\n \"52.111.252.0/24\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.111.254.0/24\",\r\n \"52.111.255.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.24.0/21\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.83.0/24\",\r\n \"52.112.88.0/22\",\r\n
+ \ \"52.112.93.0/24\",\r\n \"52.112.94.0/24\",\r\n \"52.112.95.0/24\",\r\n
+ \ \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.105.0/24\",\r\n \"52.112.106.0/23\",\r\n \"52.112.108.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.110.0/23\",\r\n \"52.112.112.0/24\",\r\n
+ \ \"52.112.113.0/24\",\r\n \"52.112.114.0/24\",\r\n \"52.112.115.0/24\",\r\n
+ \ \"52.112.116.0/24\",\r\n \"52.112.117.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.112.144.0/20\",\r\n \"52.112.168.0/22\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.112.190.0/24\",\r\n
+ \ \"52.112.191.0/24\",\r\n \"52.112.197.0/24\",\r\n \"52.112.200.0/22\",\r\n
+ \ \"52.112.204.0/23\",\r\n \"52.112.206.0/24\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.229.0/24\",\r\n \"52.112.230.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.233.0/24\",\r\n
+ \ \"52.112.236.0/24\",\r\n \"52.112.237.0/24\",\r\n \"52.112.238.0/24\",\r\n
+ \ \"52.112.240.0/20\",\r\n \"52.113.9.0/24\",\r\n \"52.113.10.0/23\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.14.0/24\",\r\n \"52.113.15.0/24\",\r\n
+ \ \"52.113.16.0/20\",\r\n \"52.113.37.0/24\",\r\n \"52.113.40.0/21\",\r\n
+ \ \"52.113.48.0/20\",\r\n \"52.113.70.0/23\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.76.0/23\",\r\n \"52.113.78.0/23\",\r\n \"52.113.83.0/24\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.88.0/22\",\r\n \"52.113.92.0/22\",\r\n
+ \ \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.103.0/24\",\r\n \"52.113.104.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.113.107.0/24\",\r\n
+ \ \"52.113.108.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.110.0/23\",\r\n
+ \ \"52.113.112.0/20\",\r\n \"52.113.128.0/24\",\r\n \"52.113.129.0/24\",\r\n
+ \ \"52.113.130.0/24\",\r\n \"52.113.131.0/24\",\r\n \"52.113.132.0/24\",\r\n
+ \ \"52.113.133.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.113.136.0/21\",\r\n
+ \ \"52.113.144.0/21\",\r\n \"52.113.160.0/19\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.113.193.0/24\",\r\n \"52.113.198.0/24\",\r\n \"52.113.199.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.205.0/24\",\r\n
+ \ \"52.113.206.0/24\",\r\n \"52.113.207.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.113.224.0/19\",\r\n \"52.114.0.0/21\",\r\n \"52.114.8.0/21\",\r\n
+ \ \"52.114.16.0/22\",\r\n \"52.114.20.0/22\",\r\n \"52.114.24.0/22\",\r\n
+ \ \"52.114.28.0/22\",\r\n \"52.114.32.0/22\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.114.40.0/22\",\r\n \"52.114.44.0/22\",\r\n \"52.114.48.0/22\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.60.0/23\",\r\n \"52.114.64.0/21\",\r\n
+ \ \"52.114.72.0/22\",\r\n \"52.114.76.0/22\",\r\n \"52.114.80.0/22\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.88.0/22\",\r\n \"52.114.92.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.104.0/22\",\r\n \"52.114.108.0/22\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.116.0/22\",\r\n \"52.114.120.0/22\",\r\n
+ \ \"52.114.128.0/22\",\r\n \"52.114.132.0/22\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.144.0/22\",\r\n \"52.114.148.0/22\",\r\n \"52.114.152.0/21\",\r\n
+ \ \"52.114.160.0/22\",\r\n \"52.114.164.0/22\",\r\n \"52.114.168.0/22\",\r\n
+ \ \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n \"52.114.180.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.114.186.0/23\",\r\n \"52.114.192.0/23\",\r\n
+ \ \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n \"52.114.200.0/22\",\r\n
+ \ \"52.114.216.0/22\",\r\n \"52.114.224.0/24\",\r\n \"52.114.226.0/24\",\r\n
+ \ \"52.114.228.0/24\",\r\n \"52.114.230.0/24\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.232.0/24\",\r\n \"52.114.233.0/24\",\r\n \"52.114.234.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.114.238.0/24\",\r\n \"52.114.240.0/24\",\r\n
+ \ \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n \"52.114.244.0/24\",\r\n
+ \ \"52.114.248.0/22\",\r\n \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n
+ \ \"52.115.8.0/22\",\r\n \"52.115.16.0/21\",\r\n \"52.115.24.0/22\",\r\n
+ \ \"52.115.32.0/22\",\r\n \"52.115.36.0/23\",\r\n \"52.115.38.0/24\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.47.0/24\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.54.0/24\",\r\n \"52.115.55.0/24\",\r\n
+ \ \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.64.0/22\",\r\n \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n
+ \ \"52.115.76.0/22\",\r\n \"52.115.80.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.115.88.0/22\",\r\n \"52.115.96.0/24\",\r\n \"52.115.97.0/24\",\r\n
+ \ \"52.115.98.0/24\",\r\n \"52.115.99.0/24\",\r\n \"52.115.100.0/22\",\r\n
+ \ \"52.115.104.0/23\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n \"52.115.140.0/22\",\r\n
+ \ \"52.115.144.0/20\",\r\n \"52.115.160.0/19\",\r\n \"52.115.192.0/19\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.64.0/19\",\r\n
+ \ \"52.120.96.0/19\",\r\n \"52.120.128.0/21\",\r\n \"52.120.136.0/21\",\r\n
+ \ \"52.120.144.0/21\",\r\n \"52.120.152.0/22\",\r\n \"52.120.156.0/24\",\r\n
+ \ \"52.120.157.0/24\",\r\n \"52.120.158.0/23\",\r\n \"52.120.160.0/19\",\r\n
+ \ \"52.120.192.0/20\",\r\n \"52.120.208.0/20\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.120.240.0/20\",\r\n \"52.121.0.0/21\",\r\n \"52.121.16.0/21\",\r\n
+ \ \"52.121.24.0/21\",\r\n \"52.121.32.0/22\",\r\n \"52.121.36.0/22\",\r\n
+ \ \"52.121.40.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.121.64.0/20\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.121.100.0/22\",\r\n
+ \ \"52.121.104.0/23\",\r\n \"52.121.106.0/23\",\r\n \"52.121.108.0/22\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.121.116.0/22\",\r\n \"52.121.120.0/23\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.121.128.0/20\",\r\n
+ \ \"52.121.144.0/21\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.123.0.0/24\",\r\n
+ \ \"52.123.1.0/24\",\r\n \"52.123.2.0/24\",\r\n \"52.123.3.0/24\",\r\n
+ \ \"52.123.4.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.125.128.0/22\",\r\n
+ \ \"52.125.132.0/22\",\r\n \"52.125.136.0/24\",\r\n \"52.125.137.0/24\",\r\n
+ \ \"52.125.138.0/23\",\r\n \"52.125.140.0/23\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.16.0/24\",\r\n
+ \ \"52.136.17.0/24\",\r\n \"52.136.18.0/24\",\r\n \"52.136.19.0/24\",\r\n
+ \ \"52.136.20.0/24\",\r\n \"52.136.21.0/24\",\r\n \"52.136.22.0/24\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.24.0/24\",\r\n \"52.136.25.0/24\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.29.0/24\",\r\n \"52.136.30.0/24\",\r\n \"52.136.31.0/24\",\r\n
+ \ \"52.136.32.0/19\",\r\n \"52.136.64.0/18\",\r\n \"52.136.128.0/18\",\r\n
+ \ \"52.136.192.0/18\",\r\n \"52.137.0.0/18\",\r\n \"52.137.64.0/18\",\r\n
+ \ \"52.137.128.0/17\",\r\n \"52.138.0.0/18\",\r\n \"52.138.64.0/20\",\r\n
+ \ \"52.138.80.0/21\",\r\n \"52.138.88.0/21\",\r\n \"52.138.96.0/19\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.139.0.0/18\",\r\n \"52.139.64.0/18\",\r\n
+ \ \"52.139.128.0/18\",\r\n \"52.139.192.0/18\",\r\n \"52.140.0.0/18\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.140.128.0/18\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.141.0.0/18\",\r\n \"52.141.64.0/18\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.141.192.0/19\",\r\n \"52.141.224.0/20\",\r\n \"52.141.240.0/20\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.142.64.0/18\",\r\n \"52.142.128.0/18\",\r\n
+ \ \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n \"52.143.64.0/18\",\r\n
+ \ \"52.143.128.0/18\",\r\n \"52.143.192.0/24\",\r\n \"52.143.193.0/24\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.195.0/24\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.197.0/24\",\r\n \"52.143.198.0/24\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.143.202.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.143.207.0/24\",\r\n
+ \ \"52.143.208.0/24\",\r\n \"52.143.209.0/24\",\r\n \"52.143.210.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.143.212.0/23\",\r\n \"52.143.214.0/24\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.143.218.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.143.221.0/24\",\r\n \"52.143.222.0/23\",\r\n
+ \ \"52.143.224.0/19\",\r\n \"52.146.0.0/17\",\r\n \"52.146.128.0/17\",\r\n
+ \ \"52.147.0.0/19\",\r\n \"52.147.32.0/19\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.147.96.0/19\",\r\n \"52.147.128.0/19\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.148.0.0/18\",\r\n \"52.148.64.0/18\",\r\n
+ \ \"52.148.128.0/18\",\r\n \"52.148.192.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.151.0.0/18\",\r\n \"52.151.64.0/18\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.0.0/17\",\r\n \"52.152.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.153.64.0/18\",\r\n \"52.153.128.0/18\",\r\n
+ \ \"52.153.192.0/18\",\r\n \"52.154.0.0/18\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.154.128.0/17\",\r\n \"52.155.0.0/19\",\r\n \"52.155.32.0/19\",\r\n
+ \ \"52.155.64.0/19\",\r\n \"52.155.96.0/19\",\r\n \"52.155.128.0/17\",\r\n
+ \ \"52.156.0.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.156.64.0/18\",\r\n
+ \ \"52.156.128.0/19\",\r\n \"52.156.160.0/19\",\r\n \"52.156.192.0/18\",\r\n
+ \ \"52.157.0.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.158.0.0/17\",\r\n \"52.158.128.0/19\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.176.0/20\",\r\n \"52.158.192.0/19\",\r\n \"52.158.224.0/19\",\r\n
+ \ \"52.159.0.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.159.128.0/17\",\r\n
+ \ \"52.160.0.0/16\",\r\n \"52.161.0.0/16\",\r\n \"52.162.0.0/16\",\r\n
+ \ \"52.163.0.0/16\",\r\n \"52.164.0.0/16\",\r\n \"52.165.0.0/19\",\r\n
+ \ \"52.165.32.0/20\",\r\n \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n
+ \ \"52.165.56.0/21\",\r\n \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n
+ \ \"52.165.104.0/25\",\r\n \"52.165.104.128/26\",\r\n \"52.165.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.167.0.0/16\",\r\n \"52.168.0.0/16\",\r\n
+ \ \"52.169.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.171.0.0/16\",\r\n
+ \ \"52.172.0.0/17\",\r\n \"52.172.128.0/17\",\r\n \"52.173.0.0/16\",\r\n
+ \ \"52.174.0.0/16\",\r\n \"52.175.0.0/17\",\r\n \"52.175.128.0/18\",\r\n
+ \ \"52.175.192.0/18\",\r\n \"52.176.0.0/17\",\r\n \"52.176.128.0/19\",\r\n
+ \ \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n \"52.176.192.0/19\",\r\n
+ \ \"52.176.224.0/24\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.177.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.178.128.0/17\",\r\n \"52.179.0.0/17\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.180.0.0/17\",\r\n \"52.180.128.0/19\",\r\n \"52.180.160.0/20\",\r\n
+ \ \"52.180.176.0/21\",\r\n \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n
+ \ \"52.180.185.0/24\",\r\n \"52.182.128.0/17\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.183.192.0/18\",\r\n \"52.184.0.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n \"52.184.168.80/28\",\r\n
+ \ \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n \"52.184.169.0/24\",\r\n
+ \ \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n \"52.184.192.0/18\",\r\n
+ \ \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n \"52.185.48.0/21\",\r\n
+ \ \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n \"52.185.56.96/28\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.64/27\",\r\n \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n
+ \ \"52.185.128.0/18\",\r\n \"52.185.192.0/18\",\r\n \"52.186.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.187.192.0/18\",\r\n
+ \ \"52.188.0.0/16\",\r\n \"52.189.0.0/17\",\r\n \"52.189.128.0/18\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.190.0.0/17\",\r\n \"52.190.128.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.128.0/18\",\r\n \"52.191.192.0/18\",\r\n
+ \ \"52.224.0.0/16\",\r\n \"52.225.0.0/17\",\r\n \"52.225.128.0/21\",\r\n
+ \ \"52.225.136.0/27\",\r\n \"52.225.136.32/28\",\r\n \"52.225.136.48/28\",\r\n
+ \ \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n \"52.225.144.0/20\",\r\n
+ \ \"52.225.160.0/19\",\r\n \"52.225.192.0/18\",\r\n \"52.226.0.0/16\",\r\n
+ \ \"52.228.0.0/17\",\r\n \"52.228.128.0/17\",\r\n \"52.229.0.0/18\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.229.128.0/17\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.230.128.0/17\",\r\n \"52.231.0.0/17\",\r\n \"52.231.128.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.128.0/21\",\r\n \"52.232.136.0/21\",\r\n
+ \ \"52.232.144.0/24\",\r\n \"52.232.145.0/24\",\r\n \"52.232.146.0/24\",\r\n
+ \ \"52.232.147.0/24\",\r\n \"52.232.148.0/24\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.232.151.0/24\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.232.153.0/24\",\r\n \"52.232.154.0/24\",\r\n \"52.232.155.0/24\",\r\n
+ \ \"52.232.156.0/24\",\r\n \"52.232.157.0/24\",\r\n \"52.232.158.0/24\",\r\n
+ \ \"52.232.159.0/24\",\r\n \"52.232.160.0/19\",\r\n \"52.232.192.0/18\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.233.64.0/18\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.234.128.0/17\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.235.64.0/18\",\r\n \"52.236.0.0/17\",\r\n \"52.236.128.0/17\",\r\n
+ \ \"52.237.0.0/18\",\r\n \"52.237.64.0/18\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.238.0.0/18\",\r\n \"52.238.192.0/18\",\r\n
+ \ \"52.239.0.0/17\",\r\n \"52.239.128.0/24\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.132.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.135.0/26\",\r\n \"52.239.135.64/26\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.136.0/22\",\r\n \"52.239.140.0/22\",\r\n
+ \ \"52.239.144.0/23\",\r\n \"52.239.146.0/23\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.148.64/26\",\r\n \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n
+ \ \"52.239.150.0/23\",\r\n \"52.239.152.0/22\",\r\n \"52.239.156.0/24\",\r\n
+ \ \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n
+ \ \"52.239.157.224/27\",\r\n \"52.239.158.0/23\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.164.0/25\",\r\n \"52.239.164.128/26\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/22\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.177.0/27\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.184.224/27\",\r\n
+ \ \"52.239.185.0/28\",\r\n \"52.239.185.32/27\",\r\n \"52.239.186.0/24\",\r\n
+ \ \"52.239.187.0/25\",\r\n \"52.239.187.128/25\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.239.190.0/25\",\r\n \"52.239.190.128/26\",\r\n
+ \ \"52.239.190.192/26\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.128/27\",\r\n \"52.239.192.160/27\",\r\n
+ \ \"52.239.192.192/26\",\r\n \"52.239.193.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.196.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.128/27\",\r\n \"52.239.198.192/26\",\r\n
+ \ \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n \"52.239.202.0/24\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.205.0/24\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.207.192/26\",\r\n \"52.239.208.0/23\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.212.0/23\",\r\n \"52.239.214.0/23\",\r\n \"52.239.216.0/23\",\r\n
+ \ \"52.239.218.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"52.239.225.0/24\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.228.0/23\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.239.232.0/25\",\r\n \"52.239.232.128/25\",\r\n
+ \ \"52.239.233.0/25\",\r\n \"52.239.233.128/25\",\r\n \"52.239.234.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.239.238.0/24\",\r\n \"52.239.239.0/24\",\r\n
+ \ \"52.239.240.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.248.0/24\",\r\n
+ \ \"52.239.249.0/24\",\r\n \"52.239.250.0/24\",\r\n \"52.239.251.0/24\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.239.253.0/24\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.240.0.0/17\",\r\n \"52.240.128.0/17\",\r\n \"52.241.0.0/16\",\r\n
+ \ \"52.242.0.0/18\",\r\n \"52.242.64.0/18\",\r\n \"52.242.128.0/17\",\r\n
+ \ \"52.243.32.0/19\",\r\n \"52.243.64.0/18\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.12.0/22\",\r\n \"52.245.16.0/22\",\r\n \"52.245.20.0/22\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.245.28.0/22\",\r\n \"52.245.32.0/22\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.245.40.0/22\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.144/28\",\r\n
+ \ \"52.245.45.160/27\",\r\n \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n
+ \ \"52.245.46.32/28\",\r\n \"52.245.46.48/28\",\r\n \"52.245.46.64/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.245.46.112/28\",\r\n
+ \ \"52.245.46.128/28\",\r\n \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n
+ \ \"52.245.48.0/22\",\r\n \"52.245.52.0/22\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.245.60.0/22\",\r\n \"52.245.64.0/22\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.0/27\",\r\n \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n
+ \ \"52.245.69.96/28\",\r\n \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n
+ \ \"52.245.69.192/26\",\r\n \"52.245.70.0/23\",\r\n \"52.245.72.0/22\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.245.80.0/22\",\r\n \"52.245.84.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"52.245.92.0/22\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.245.100.0/22\",\r\n \"52.245.104.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.245.112.0/22\",\r\n \"52.245.116.0/22\",\r\n \"52.245.120.0/22\",\r\n
+ \ \"52.245.124.0/22\",\r\n \"52.246.0.0/17\",\r\n \"52.246.128.0/20\",\r\n
+ \ \"52.246.152.0/21\",\r\n \"52.246.160.0/19\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.0.0/17\",\r\n \"52.247.192.0/18\",\r\n \"52.248.0.0/17\",\r\n
+ \ \"52.248.128.0/17\",\r\n \"52.249.0.0/18\",\r\n \"52.249.64.0/19\",\r\n
+ \ \"52.249.128.0/17\",\r\n \"52.250.0.0/17\",\r\n \"52.250.128.0/18\",\r\n
+ \ \"52.250.192.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.252.128.0/17\",\r\n \"52.253.0.0/18\",\r\n \"52.253.64.0/20\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"52.253.96.0/19\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"52.253.148.0/23\",\r\n \"52.253.150.0/23\",\r\n \"52.253.152.0/23\",\r\n
+ \ \"52.253.154.0/23\",\r\n \"52.253.156.0/22\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"52.253.162.0/23\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.166.0/24\",\r\n \"52.253.167.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.169.0/24\",\r\n \"52.253.170.0/23\",\r\n \"52.253.172.0/24\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"52.253.175.0/24\",\r\n
+ \ \"52.253.176.0/24\",\r\n \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n
+ \ \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n \"52.253.181.0/24\",\r\n
+ \ \"52.253.185.0/24\",\r\n \"52.253.186.0/24\",\r\n \"52.253.191.0/24\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"52.253.197.0/24\",\r\n \"52.253.224.0/21\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n
+ \ \"52.254.96.0/20\",\r\n \"52.254.112.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"52.255.0.0/19\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"52.255.128.0/17\",\r\n \"64.4.8.0/24\",\r\n
+ \ \"64.4.54.0/24\",\r\n \"65.52.0.0/19\",\r\n \"65.52.32.0/21\",\r\n
+ \ \"65.52.48.0/20\",\r\n \"65.52.64.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.52.111.0/24\",\r\n \"65.52.112.0/20\",\r\n \"65.52.128.0/19\",\r\n
+ \ \"65.52.160.0/19\",\r\n \"65.52.192.0/19\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"65.52.232.0/21\",\r\n \"65.52.240.0/21\",\r\n \"65.52.248.0/21\",\r\n
+ \ \"65.54.19.128/27\",\r\n \"65.54.55.160/27\",\r\n \"65.54.55.224/27\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n
+ \ \"65.55.44.64/27\",\r\n \"65.55.44.96/28\",\r\n \"65.55.44.112/28\",\r\n
+ \ \"65.55.44.128/27\",\r\n \"65.55.51.0/24\",\r\n \"65.55.60.176/29\",\r\n
+ \ \"65.55.60.188/30\",\r\n \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.105.192/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.106.192/28\",\r\n \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n
+ \ \"65.55.106.240/28\",\r\n \"65.55.107.0/28\",\r\n \"65.55.107.48/28\",\r\n
+ \ \"65.55.107.64/27\",\r\n \"65.55.107.96/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.109.0/24\",\r\n \"65.55.110.0/24\",\r\n \"65.55.120.0/24\",\r\n
+ \ \"65.55.144.0/23\",\r\n \"65.55.146.0/24\",\r\n \"65.55.207.0/24\",\r\n
+ \ \"65.55.209.0/25\",\r\n \"65.55.209.128/26\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.211.0/27\",\r\n \"65.55.211.32/27\",\r\n
+ \ \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n \"65.55.213.0/27\",\r\n
+ \ \"65.55.213.64/26\",\r\n \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n
+ \ \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.64/26\",\r\n \"65.55.219.128/25\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.12.0/32\",\r\n \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n
+ \ \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n \"70.37.160.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"102.37.0.0/20\",\r\n
+ \ \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n \"102.37.26.0/27\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.72.0/21\",\r\n \"102.37.80.0/21\",\r\n \"102.37.96.0/19\",\r\n
+ \ \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n \"102.37.192.0/18\",\r\n
+ \ \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n \"102.133.96.0/20\",\r\n
+ \ \"102.133.112.0/28\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.40.128.0/17\",\r\n \"104.41.0.0/18\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.128.0/19\",\r\n \"104.41.160.0/19\",\r\n \"104.41.192.0/18\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.43.0.0/17\",\r\n \"104.43.128.0/17\",\r\n
+ \ \"104.44.88.0/27\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.64/27\",\r\n
+ \ \"104.44.88.96/27\",\r\n \"104.44.88.128/27\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.88.192/27\",\r\n \"104.44.88.224/27\",\r\n \"104.44.89.0/27\",\r\n
+ \ \"104.44.89.32/27\",\r\n \"104.44.89.64/27\",\r\n \"104.44.89.96/27\",\r\n
+ \ \"104.44.89.128/27\",\r\n \"104.44.89.160/27\",\r\n \"104.44.89.192/27\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"104.44.90.0/27\",\r\n \"104.44.90.32/27\",\r\n
+ \ \"104.44.90.64/26\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.90.224/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.91.64/27\",\r\n \"104.44.91.96/27\",\r\n
+ \ \"104.44.91.128/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.91.192/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.92.0/27\",\r\n \"104.44.92.32/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.92.96/27\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.92.160/27\",\r\n \"104.44.92.192/27\",\r\n \"104.44.92.224/27\",\r\n
+ \ \"104.44.93.0/27\",\r\n \"104.44.93.32/27\",\r\n \"104.44.93.64/27\",\r\n
+ \ \"104.44.93.96/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.93.160/27\",\r\n
+ \ \"104.44.93.192/27\",\r\n \"104.44.93.224/27\",\r\n \"104.44.94.0/28\",\r\n
+ \ \"104.44.94.16/28\",\r\n \"104.44.94.32/28\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.44.94.64/28\",\r\n \"104.44.94.80/28\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.44.94.112/28\",\r\n \"104.44.94.128/28\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.94.160/27\",\r\n \"104.44.94.192/28\",\r\n \"104.44.94.208/28\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"104.44.95.0/28\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"104.44.95.32/28\",\r\n \"104.44.95.48/28\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.44.95.112/28\",\r\n
+ \ \"104.44.95.128/27\",\r\n \"104.44.95.160/27\",\r\n \"104.44.95.192/28\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"104.44.95.224/28\",\r\n \"104.44.95.240/28\",\r\n
+ \ \"104.44.128.0/18\",\r\n \"104.45.0.0/18\",\r\n \"104.45.64.0/20\",\r\n
+ \ \"104.45.80.0/20\",\r\n \"104.45.96.0/19\",\r\n \"104.45.128.0/18\",\r\n
+ \ \"104.45.192.0/20\",\r\n \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.8.0/21\",\r\n \"104.46.24.0/22\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.46.32.0/19\",\r\n \"104.46.64.0/19\",\r\n \"104.46.96.0/19\",\r\n
+ \ \"104.46.160.0/19\",\r\n \"104.46.192.0/20\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.47.128.0/18\",\r\n \"104.47.200.0/21\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.47.210.0/23\",\r\n \"104.47.212.0/23\",\r\n
+ \ \"104.47.214.0/23\",\r\n \"104.47.216.64/26\",\r\n \"104.47.218.0/23\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"104.47.224.0/20\",\r\n \"104.208.0.0/19\",\r\n
+ \ \"104.208.32.0/20\",\r\n \"104.208.48.0/20\",\r\n \"104.208.64.0/18\",\r\n
+ \ \"104.208.128.0/17\",\r\n \"104.209.0.0/18\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.209.128.0/17\",\r\n \"104.210.0.0/20\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"104.210.64.0/18\",\r\n \"104.210.128.0/19\",\r\n
+ \ \"104.210.176.0/20\",\r\n \"104.210.192.0/19\",\r\n \"104.211.0.0/18\",\r\n
+ \ \"104.211.64.0/18\",\r\n \"104.211.128.0/18\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"104.214.0.0/17\",\r\n \"104.214.128.0/19\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"104.214.192.0/18\",\r\n \"104.215.0.0/18\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"104.215.128.0/17\",\r\n \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n
+ \ \"111.221.78.0/23\",\r\n \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n
+ \ \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n \"131.253.12.48/29\",\r\n
+ \ \"131.253.12.160/28\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.192/28\",\r\n
+ \ \"131.253.12.208/28\",\r\n \"131.253.12.224/30\",\r\n \"131.253.12.228/30\",\r\n
+ \ \"131.253.12.248/29\",\r\n \"131.253.13.0/28\",\r\n \"131.253.13.16/29\",\r\n
+ \ \"131.253.13.24/29\",\r\n \"131.253.13.32/28\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.96/30\",\r\n \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.32/27\",\r\n \"131.253.14.64/29\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.160/27\",\r\n
+ \ \"131.253.14.192/29\",\r\n \"131.253.14.208/28\",\r\n \"131.253.14.224/28\",\r\n
+ \ \"131.253.14.248/29\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.15.32/27\",\r\n \"131.253.15.192/28\",\r\n \"131.253.15.208/28\",\r\n
+ \ \"131.253.15.224/27\",\r\n \"131.253.24.0/28\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.24.192/26\",\r\n \"131.253.25.0/24\",\r\n \"131.253.27.0/24\",\r\n
+ \ \"131.253.34.224/27\",\r\n \"131.253.35.128/26\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"131.253.36.128/26\",\r\n \"131.253.36.224/27\",\r\n \"131.253.38.0/27\",\r\n
+ \ \"131.253.38.32/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.38.224/27\",\r\n
+ \ \"131.253.40.0/28\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.48/29\",\r\n \"131.253.40.64/28\",\r\n \"131.253.40.80/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.128/27\",\r\n \"131.253.40.160/28\",\r\n
+ \ \"131.253.40.192/26\",\r\n \"131.253.41.0/24\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"134.170.220.0/23\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n \"137.116.96.0/22\",\r\n
+ \ \"137.116.112.0/20\",\r\n \"137.116.128.0/19\",\r\n \"137.116.160.0/20\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"137.116.184.0/21\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.117.0.0/19\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.117.128.0/17\",\r\n \"137.135.0.0/18\",\r\n
+ \ \"137.135.64.0/18\",\r\n \"137.135.128.0/17\",\r\n \"138.91.0.0/20\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"138.91.32.0/20\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"138.91.64.0/19\",\r\n \"138.91.96.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.55.2.128/26\",\r\n \"157.55.3.0/24\",\r\n \"157.55.7.128/26\",\r\n
+ \ \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n \"157.55.10.160/29\",\r\n
+ \ \"157.55.10.176/28\",\r\n \"157.55.10.192/26\",\r\n \"157.55.11.128/25\",\r\n
+ \ \"157.55.12.64/26\",\r\n \"157.55.12.128/26\",\r\n \"157.55.13.64/26\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.24.0/21\",\r\n \"157.55.37.0/24\",\r\n
+ \ \"157.55.38.0/24\",\r\n \"157.55.39.0/24\",\r\n \"157.55.48.0/24\",\r\n
+ \ \"157.55.50.0/25\",\r\n \"157.55.51.224/28\",\r\n \"157.55.55.0/27\",\r\n
+ \ \"157.55.55.32/28\",\r\n \"157.55.55.100/30\",\r\n \"157.55.55.104/29\",\r\n
+ \ \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n
+ \ \"157.55.55.216/29\",\r\n \"157.55.55.228/30\",\r\n \"157.55.55.232/29\",\r\n
+ \ \"157.55.55.240/28\",\r\n \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n
+ \ \"157.55.80.0/21\",\r\n \"157.55.103.32/27\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"157.55.106.0/26\",\r\n \"157.55.106.128/25\",\r\n \"157.55.107.0/24\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n
+ \ \"157.55.136.0/21\",\r\n \"157.55.151.0/28\",\r\n \"157.55.153.224/28\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.55.160.0/20\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"157.55.204.128/25\",\r\n \"157.55.208.0/21\",\r\n \"157.55.248.0/21\",\r\n
+ \ \"157.56.2.0/25\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"157.56.3.128/25\",\r\n \"157.56.8.0/21\",\r\n \"157.56.19.224/27\",\r\n
+ \ \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.80.0/25\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"157.56.160.0/21\",\r\n \"157.56.176.0/21\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.0.0/19\",\r\n \"168.61.32.0/20\",\r\n
+ \ \"168.61.48.0/21\",\r\n \"168.61.56.0/21\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.61.128.0/25\",\r\n
+ \ \"168.61.128.128/28\",\r\n \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n
+ \ \"168.61.129.224/27\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.61.136.0/21\",\r\n \"168.61.144.0/20\",\r\n \"168.61.160.0/19\",\r\n
+ \ \"168.61.208.0/20\",\r\n \"168.62.0.0/19\",\r\n \"168.62.32.0/19\",\r\n
+ \ \"168.62.64.0/19\",\r\n \"168.62.96.0/19\",\r\n \"168.62.128.0/19\",\r\n
+ \ \"168.62.160.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.62.224.0/19\",\r\n
+ \ \"168.63.0.0/19\",\r\n \"168.63.32.0/19\",\r\n \"168.63.64.0/20\",\r\n
+ \ \"168.63.80.0/21\",\r\n \"168.63.88.0/23\",\r\n \"168.63.90.0/24\",\r\n
+ \ \"168.63.91.0/26\",\r\n \"168.63.92.0/22\",\r\n \"168.63.96.0/19\",\r\n
+ \ \"168.63.128.0/24\",\r\n \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n
+ \ \"168.63.129.64/26\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n
+ \ \"168.63.132.0/22\",\r\n \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n
+ \ \"168.63.152.0/22\",\r\n \"168.63.156.0/24\",\r\n \"168.63.160.0/19\",\r\n
+ \ \"168.63.192.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.232.16.0/21\",\r\n
+ \ \"191.232.32.0/19\",\r\n \"191.232.138.0/23\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.8.0/21\",\r\n \"191.233.16.0/20\",\r\n \"191.233.32.0/20\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.64.0/18\",\r\n \"191.233.128.0/20\",\r\n
+ \ \"191.233.144.0/20\",\r\n \"191.233.160.0/19\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.235.32.0/19\",\r\n \"191.235.64.0/18\",\r\n \"191.235.128.0/18\",\r\n
+ \ \"191.235.192.0/22\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.0/24\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.236.64.0/18\",\r\n \"191.236.128.0/18\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.237.128.0/18\",\r\n
+ \ \"191.237.192.0/23\",\r\n \"191.237.194.0/24\",\r\n \"191.237.195.0/24\",\r\n
+ \ \"191.237.196.0/24\",\r\n \"191.237.200.0/21\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"191.237.232.0/22\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.237.238.0/24\",\r\n \"191.237.240.0/23\",\r\n \"191.237.248.0/21\",\r\n
+ \ \"191.238.0.0/18\",\r\n \"191.238.64.0/23\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.70.0/23\",\r\n \"191.238.72.0/21\",\r\n
+ \ \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n \"191.238.92.0/23\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.238.128.0/21\",\r\n \"191.238.144.0/20\",\r\n
+ \ \"191.238.160.0/19\",\r\n \"191.238.192.0/19\",\r\n \"191.238.224.0/19\",\r\n
+ \ \"191.239.0.0/18\",\r\n \"191.239.64.0/19\",\r\n \"191.239.96.0/20\",\r\n
+ \ \"191.239.112.0/20\",\r\n \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"191.239.204.0/22\",\r\n \"191.239.208.0/20\",\r\n
+ \ \"191.239.224.0/20\",\r\n \"191.239.240.0/20\",\r\n \"193.149.64.0/21\",\r\n
+ \ \"193.149.72.0/21\",\r\n \"193.149.80.0/21\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"198.180.96.0/25\",\r\n \"198.180.97.0/24\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.24.0/23\",\r\n \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n
+ \ \"199.30.27.160/27\",\r\n \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n
+ \ \"199.30.29.0/24\",\r\n \"199.30.31.0/25\",\r\n \"199.30.31.192/26\",\r\n
+ \ \"204.79.180.0/24\",\r\n \"204.231.197.0/24\",\r\n \"207.46.13.0/24\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n
+ \ \"207.46.198.128/25\",\r\n \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n
+ \ \"207.46.202.128/28\",\r\n \"207.46.205.0/24\",\r\n \"207.46.224.0/20\",\r\n
+ \ \"207.68.174.40/29\",\r\n \"207.68.174.48/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"207.68.174.192/28\",\r\n \"207.68.174.208/28\",\r\n \"209.240.212.0/23\",\r\n
+ \ \"213.199.128.0/20\",\r\n \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n
+ \ \"213.199.180.192/27\",\r\n \"213.199.183.0/24\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200::/59\",\r\n \"2603:1007:200:20::/59\",\r\n
+ \ \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n \"2603:1010:6::/48\",\r\n
+ \ \"2603:1010:100::/40\",\r\n \"2603:1010:200::/47\",\r\n
+ \ \"2603:1010:202::/48\",\r\n \"2603:1010:204::/48\",\r\n
+ \ \"2603:1010:205::/48\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1010:400::/47\",\r\n \"2603:1010:403::/48\",\r\n
+ \ \"2603:1010:404::/48\",\r\n \"2603:1016:1400::/59\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:1400:40::/59\",\r\n
+ \ \"2603:1016:1400:60::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2401::/48\",\r\n \"2603:1016:2402::/48\",\r\n
+ \ \"2603:1016:2403::/48\",\r\n \"2603:1016:2500::/64\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1016:2500:8::/64\",\r\n
+ \ \"2603:1016:2500:c::/64\",\r\n \"2603:1017::/59\",\r\n
+ \ \"2603:1017:0:20::/59\",\r\n \"2603:1017:0:40::/59\",\r\n
+ \ \"2603:1017:0:60::/59\",\r\n \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n
+ \ \"2603:1020:4::/48\",\r\n \"2603:1020:5::/48\",\r\n \"2603:1020:200::/46\",\r\n
+ \ \"2603:1020:205::/48\",\r\n \"2603:1020:206::/48\",\r\n
+ \ \"2603:1020:300::/47\",\r\n \"2603:1020:302::/48\",\r\n
+ \ \"2603:1020:304::/48\",\r\n \"2603:1020:305::/48\",\r\n
+ \ \"2603:1020:400::/47\",\r\n \"2603:1020:402::/48\",\r\n
+ \ \"2603:1020:404::/48\",\r\n \"2603:1020:405::/48\",\r\n
+ \ \"2603:1020:500::/47\",\r\n \"2603:1020:503::/48\",\r\n
+ \ \"2603:1020:504::/48\",\r\n \"2603:1020:600::/47\",\r\n
+ \ \"2603:1020:602::/48\",\r\n \"2603:1020:604::/48\",\r\n
+ \ \"2603:1020:605::/48\",\r\n \"2603:1020:700::/47\",\r\n
+ \ \"2603:1020:702::/48\",\r\n \"2603:1020:704::/48\",\r\n
+ \ \"2603:1020:705::/48\",\r\n \"2603:1020:800::/47\",\r\n
+ \ \"2603:1020:802::/48\",\r\n \"2603:1020:804::/48\",\r\n
+ \ \"2603:1020:805::/48\",\r\n \"2603:1020:900::/47\",\r\n
+ \ \"2603:1020:902::/48\",\r\n \"2603:1020:904::/48\",\r\n
+ \ \"2603:1020:905::/48\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1020:b00::/47\",\r\n \"2603:1020:b03::/48\",\r\n
+ \ \"2603:1020:b04::/48\",\r\n \"2603:1020:c00::/47\",\r\n
+ \ \"2603:1020:c03::/48\",\r\n \"2603:1020:c04::/48\",\r\n
+ \ \"2603:1020:d00::/47\",\r\n \"2603:1020:d03::/48\",\r\n
+ \ \"2603:1020:d04::/48\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1020:f00::/47\",\r\n \"2603:1020:f03::/48\",\r\n
+ \ \"2603:1020:f04::/48\",\r\n \"2603:1026:2400::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2404::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2407::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:240c::/48\",\r\n
+ \ \"2603:1026:240d::/48\",\r\n \"2603:1026:240e::/48\",\r\n
+ \ \"2603:1026:240f::/48\",\r\n \"2603:1026:2411::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:2500:10::/64\",\r\n \"2603:1026:2500:14::/64\",\r\n
+ \ \"2603:1026:2500:18::/64\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:2500:20::/64\",\r\n \"2603:1026:2500:24::/64\",\r\n
+ \ \"2603:1026:2500:28::/64\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:40::/59\",\r\n \"2603:1026:3000:60::/59\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1026:3000:e0::/59\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1026:3000:120::/59\",\r\n
+ \ \"2603:1026:3000:140::/59\",\r\n \"2603:1026:3000:160::/59\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1026:3000:1a0::/59\",\r\n
+ \ \"2603:1026:3000:1c0::/59\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:40::/59\",\r\n
+ \ \"2603:1027:1:60::/59\",\r\n \"2603:1027:1:80::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2603:1027:1:e0::/59\",\r\n \"2603:1027:1:100::/59\",\r\n
+ \ \"2603:1027:1:120::/59\",\r\n \"2603:1027:1:140::/59\",\r\n
+ \ \"2603:1027:1:160::/59\",\r\n \"2603:1027:1:180::/59\",\r\n
+ \ \"2603:1027:1:1a0::/59\",\r\n \"2603:1027:1:1c0::/59\",\r\n
+ \ \"2603:1027:1:200::/59\",\r\n \"2603:1027:1:220::/59\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n
+ \ \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:17::/64\",\r\n \"2603:1030:9:18::/61\",\r\n
+ \ \"2603:1030:9:20::/59\",\r\n \"2603:1030:9:40::/58\",\r\n
+ \ \"2603:1030:9:80::/59\",\r\n \"2603:1030:9:a0::/60\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b3::/64\",\r\n \"2603:1030:9:b4::/63\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:10d::/64\",\r\n \"2603:1030:9:10e::/63\",\r\n
+ \ \"2603:1030:9:110::/64\",\r\n \"2603:1030:9:111::/64\",\r\n
+ \ \"2603:1030:9:112::/63\",\r\n \"2603:1030:9:114::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:118::/62\",\r\n \"2603:1030:9:11c::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12c::/63\",\r\n \"2603:1030:9:12e::/64\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1030:10::/48\",\r\n \"2603:1030:208::/47\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:20c::/47\",\r\n
+ \ \"2603:1030:20e::/48\",\r\n \"2603:1030:210::/47\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:2::/63\",\r\n \"2603:1030:401:4::/62\",\r\n
+ \ \"2603:1030:401:8::/61\",\r\n \"2603:1030:401:10::/62\",\r\n
+ \ \"2603:1030:401:14::/63\",\r\n \"2603:1030:401:16::/64\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:59::/64\",\r\n \"2603:1030:401:5a::/63\",\r\n
+ \ \"2603:1030:401:5c::/62\",\r\n \"2603:1030:401:60::/59\",\r\n
+ \ \"2603:1030:401:80::/62\",\r\n \"2603:1030:401:84::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:87::/64\",\r\n \"2603:1030:401:88::/62\",\r\n
+ \ \"2603:1030:401:8c::/63\",\r\n \"2603:1030:401:8e::/64\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:92::/63\",\r\n \"2603:1030:401:94::/62\",\r\n
+ \ \"2603:1030:401:98::/61\",\r\n \"2603:1030:401:a0::/62\",\r\n
+ \ \"2603:1030:401:a4::/63\",\r\n \"2603:1030:401:a6::/64\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:121::/64\",\r\n \"2603:1030:401:122::/63\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:136::/63\",\r\n \"2603:1030:401:138::/64\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:13c::/62\",\r\n \"2603:1030:401:140::/63\",\r\n
+ \ \"2603:1030:401:142::/64\",\r\n \"2603:1030:401:143::/64\",\r\n
+ \ \"2603:1030:401:144::/63\",\r\n \"2603:1030:401:146::/63\",\r\n
+ \ \"2603:1030:401:148::/63\",\r\n \"2603:1030:401:14a::/63\",\r\n
+ \ \"2603:1030:401:14c::/62\",\r\n \"2603:1030:401:150::/62\",\r\n
+ \ \"2603:1030:401:154::/63\",\r\n \"2603:1030:401:156::/63\",\r\n
+ \ \"2603:1030:401:158::/64\",\r\n \"2603:1030:401:159::/64\",\r\n
+ \ \"2603:1030:401:15a::/63\",\r\n \"2603:1030:401:15c::/62\",\r\n
+ \ \"2603:1030:401:160::/61\",\r\n \"2603:1030:401:168::/63\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:16d::/64\",\r\n \"2603:1030:401:16e::/63\",\r\n
+ \ \"2603:1030:401:170::/61\",\r\n \"2603:1030:401:178::/62\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:406::/47\",\r\n \"2603:1030:408::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:1::/64\",\r\n \"2603:1030:40a:2::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40c::/48\",\r\n \"2603:1030:40d::/60\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1030:600::/46\",\r\n
+ \ \"2603:1030:604::/47\",\r\n \"2603:1030:607::/48\",\r\n
+ \ \"2603:1030:608::/48\",\r\n \"2603:1030:800::/48\",\r\n
+ \ \"2603:1030:802::/47\",\r\n \"2603:1030:804::/58\",\r\n
+ \ \"2603:1030:804:40::/60\",\r\n \"2603:1030:804:53::/64\",\r\n
+ \ \"2603:1030:804:54::/64\",\r\n \"2603:1030:804:5b::/64\",\r\n
+ \ \"2603:1030:804:5c::/62\",\r\n \"2603:1030:804:60::/62\",\r\n
+ \ \"2603:1030:804:67::/64\",\r\n \"2603:1030:804:68::/61\",\r\n
+ \ \"2603:1030:804:70::/60\",\r\n \"2603:1030:804:80::/59\",\r\n
+ \ \"2603:1030:804:a0::/62\",\r\n \"2603:1030:804:a4::/64\",\r\n
+ \ \"2603:1030:804:a6::/63\",\r\n \"2603:1030:804:a8::/61\",\r\n
+ \ \"2603:1030:804:b0::/62\",\r\n \"2603:1030:804:b4::/64\",\r\n
+ \ \"2603:1030:804:b6::/63\",\r\n \"2603:1030:804:b8::/61\",\r\n
+ \ \"2603:1030:804:c0::/61\",\r\n \"2603:1030:804:c8::/62\",\r\n
+ \ \"2603:1030:804:cc::/63\",\r\n \"2603:1030:804:d2::/63\",\r\n
+ \ \"2603:1030:804:d4::/62\",\r\n \"2603:1030:804:d8::/61\",\r\n
+ \ \"2603:1030:804:e0::/59\",\r\n \"2603:1030:804:100::/61\",\r\n
+ \ \"2603:1030:804:108::/62\",\r\n \"2603:1030:805::/48\",\r\n
+ \ \"2603:1030:806::/48\",\r\n \"2603:1030:807::/48\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1030:b00::/47\",\r\n
+ \ \"2603:1030:b03::/48\",\r\n \"2603:1030:b04::/48\",\r\n
+ \ \"2603:1030:b05::/48\",\r\n \"2603:1030:c00::/48\",\r\n
+ \ \"2603:1030:c02::/47\",\r\n \"2603:1030:c04::/48\",\r\n
+ \ \"2603:1030:c05::/48\",\r\n \"2603:1030:c06::/48\",\r\n
+ \ \"2603:1030:c07::/48\",\r\n \"2603:1030:d00::/48\",\r\n
+ \ \"2603:1030:e01:2::/64\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:903::/64\",\r\n
+ \ \"2603:1036:903:1::/64\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:9ff:ffff::/64\",\r\n
+ \ \"2603:1036:d20::/64\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2400::/48\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2402::/48\",\r\n \"2603:1036:2403::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2408::/48\",\r\n \"2603:1036:2409::/48\",\r\n
+ \ \"2603:1036:240a::/48\",\r\n \"2603:1036:240d::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:2500:4::/64\",\r\n
+ \ \"2603:1036:2500:8::/64\",\r\n \"2603:1036:2500:10::/64\",\r\n
+ \ \"2603:1036:2500:14::/64\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:2500:24::/64\",\r\n
+ \ \"2603:1036:2500:2c::/64\",\r\n \"2603:1036:2500:30::/64\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1036:3000:20::/59\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1036:3000:100::/59\",\r\n
+ \ \"2603:1036:3000:120::/59\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1036:3000:1c0::/59\",\r\n \"2603:1037:1::/59\",\r\n
+ \ \"2603:1037:1:20::/59\",\r\n \"2603:1037:1:40::/59\",\r\n
+ \ \"2603:1037:1:60::/59\",\r\n \"2603:1037:1:80::/59\",\r\n
+ \ \"2603:1037:1:c0::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2603:1037:1:140::/59\",\r\n
+ \ \"2603:1037:1:160::/59\",\r\n \"2603:1037:1:180::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2603:1039:205::/48\",\r\n
+ \ \"2603:1040::/47\",\r\n \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n
+ \ \"2603:1040:5::/48\",\r\n \"2603:1040:200::/46\",\r\n \"2603:1040:204::/48\",\r\n
+ \ \"2603:1040:206::/48\",\r\n \"2603:1040:207::/48\",\r\n
+ \ \"2603:1040:400::/46\",\r\n \"2603:1040:404::/48\",\r\n
+ \ \"2603:1040:406::/48\",\r\n \"2603:1040:407::/48\",\r\n
+ \ \"2603:1040:600::/46\",\r\n \"2603:1040:605::/48\",\r\n
+ \ \"2603:1040:606::/48\",\r\n \"2603:1040:800::/46\",\r\n
+ \ \"2603:1040:805::/48\",\r\n \"2603:1040:806::/48\",\r\n
+ \ \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1040:a00::/46\",\r\n
+ \ \"2603:1040:a05::/48\",\r\n \"2603:1040:a06::/48\",\r\n
+ \ \"2603:1040:b00::/47\",\r\n \"2603:1040:b03::/48\",\r\n
+ \ \"2603:1040:b04::/48\",\r\n \"2603:1040:c00::/46\",\r\n
+ \ \"2603:1040:c05::/48\",\r\n \"2603:1040:c06::/48\",\r\n
+ \ \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1400::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1402::/48\",\r\n \"2603:1046:1403::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1405::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1408::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500::/64\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:1500:8::/64\",\r\n
+ \ \"2603:1046:1500:14::/64\",\r\n \"2603:1046:1500:18::/64\",\r\n
+ \ \"2603:1046:1500:1c::/64\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:20::/59\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1046:2000:60::/59\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1046:2000:c0::/59\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1046:2000:180::/59\",\r\n
+ \ \"2603:1047:1:20::/59\",\r\n \"2603:1047:1:40::/59\",\r\n
+ \ \"2603:1047:1:60::/59\",\r\n \"2603:1047:1:80::/59\",\r\n
+ \ \"2603:1047:1:a0::/59\",\r\n \"2603:1047:1:c0::/59\",\r\n
+ \ \"2603:1047:1:e0::/59\",\r\n \"2603:1047:1:100::/59\",\r\n
+ \ \"2603:1047:1:120::/59\",\r\n \"2603:1047:1:140::/59\",\r\n
+ \ \"2603:1047:1:160::/59\",\r\n \"2603:1047:1:180::/59\",\r\n
+ \ \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n \"2603:1050:5::/48\",\r\n
+ \ \"2603:1050:6::/48\",\r\n \"2603:1050:100::/40\",\r\n \"2603:1050:211::/48\",\r\n
+ \ \"2603:1050:300::/40\",\r\n \"2603:1050:400::/48\",\r\n
+ \ \"2603:1050:402::/48\",\r\n \"2603:1050:403::/48\",\r\n
+ \ \"2603:1056:1400::/48\",\r\n \"2603:1056:1401::/48\",\r\n
+ \ \"2603:1056:1402::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:1500:4::/64\",\r\n
+ \ \"2603:1056:2000:20::/59\",\r\n \"2603:1056:2000:40::/59\",\r\n
+ \ \"2603:1056:2000:60::/59\",\r\n \"2603:1057:2:20::/59\",\r\n
+ \ \"2603:1057:2:40::/59\",\r\n \"2603:1057:2:60::/59\",\r\n
+ \ \"2603:1061:1002::/48\",\r\n \"2a01:111:f100:1000::/62\",\r\n
+ \ \"2a01:111:f100:1004::/63\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f100:3000::/52\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f100:6000::/64\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\",\r\n \"2a01:111:f403:c000::/64\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c100::/64\",\r\n
+ \ \"2a01:111:f403:c10c::/62\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:c804::/62\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d004::/62\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:d804::/62\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f000::/64\",\r\n
+ \ \"2a01:111:f403:f800::/62\",\r\n \"2a01:111:f403:f804::/62\",\r\n
+ \ \"2a01:111:f403:f900::/62\",\r\n \"2a01:111:f403:f904::/62\",\r\n
+ \ \"2a01:111:f403:f908::/62\",\r\n \"2a01:111:f403:f90c::/62\",\r\n
+ \ \"2a01:111:f403:f910::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.australiacentral\",\r\n \"id\":
+ \"AzureCloud.australiacentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.155.128/26\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"20.36.32.0/19\",\r\n \"20.36.104.0/21\",\r\n \"20.37.0.0/18\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.184.0/22\",\r\n \"20.39.64.0/21\",\r\n
+ \ \"20.47.35.0/24\",\r\n \"20.53.0.0/19\",\r\n \"20.53.48.0/21\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.135.52.0/23\",\r\n \"20.150.124.0/24\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.190.189.64/26\",\r\n \"40.82.8.0/22\",\r\n
+ \ \"40.82.240.0/22\",\r\n \"40.90.130.48/28\",\r\n \"40.90.142.96/27\",\r\n
+ \ \"40.90.149.64/27\",\r\n \"40.126.61.64/26\",\r\n \"52.108.74.0/24\",\r\n
+ \ \"52.108.95.0/24\",\r\n \"52.109.128.0/22\",\r\n \"52.111.248.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.239.216.0/23\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1017:0:20::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiacentral2\",\r\n
+ \ \"id\": \"AzureCloud.australiacentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.224/27\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.112.0/20\",\r\n \"20.39.72.0/21\",\r\n \"20.39.96.0/19\",\r\n
+ \ \"20.47.36.0/24\",\r\n \"20.53.56.0/21\",\r\n \"20.135.54.0/23\",\r\n
+ \ \"20.150.103.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.193.96.0/19\",\r\n \"40.82.244.0/22\",\r\n \"40.90.31.96/27\",\r\n
+ \ \"40.90.130.32/28\",\r\n \"40.90.142.64/27\",\r\n \"40.90.149.32/27\",\r\n
+ \ \"40.126.61.128/26\",\r\n \"40.126.128.0/18\",\r\n \"52.108.180.0/24\",\r\n
+ \ \"52.108.201.0/24\",\r\n \"52.109.100.0/23\",\r\n \"52.111.249.0/24\",\r\n
+ \ \"52.143.218.0/24\",\r\n \"52.239.218.0/23\",\r\n \"2603:1010:400::/47\",\r\n
+ \ \"2603:1010:403::/48\",\r\n \"2603:1010:404::/48\",\r\n
+ \ \"2603:1016:1400:40::/59\",\r\n \"2603:1016:2401::/48\",\r\n
+ \ \"2603:1016:2500:8::/64\",\r\n \"2603:1017:0:40::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiaeast\",\r\n
+ \ \"id\": \"AzureCloud.australiaeast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.64.0/18\",\r\n \"13.72.224.0/19\",\r\n \"13.73.192.0/20\",\r\n
+ \ \"13.75.128.0/17\",\r\n \"13.104.211.128/26\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.20.128/26\",\r\n \"13.105.52.192/26\",\r\n \"13.105.53.128/26\",\r\n
+ \ \"20.37.192.0/19\",\r\n \"20.38.112.0/23\",\r\n \"20.40.64.0/20\",\r\n
+ \ \"20.40.80.0/21\",\r\n \"20.40.120.0/21\",\r\n \"20.40.176.0/20\",\r\n
+ \ \"20.42.192.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.64.0/18\",\r\n \"20.53.128.0/17\",\r\n \"20.58.128.0/18\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.150.66.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.188.128.0/17\",\r\n
+ \ \"20.190.142.0/25\",\r\n \"20.190.167.0/24\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.211.0/24\",\r\n \"40.82.32.0/22\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.87.208.0/22\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.30.0/25\",\r\n \"40.90.130.80/28\",\r\n \"40.90.130.208/28\",\r\n
+ \ \"40.90.140.32/27\",\r\n \"40.90.142.160/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.150.0/27\",\r\n \"40.112.37.128/26\",\r\n \"40.126.14.0/25\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.224.0/19\",\r\n \"52.108.40.0/23\",\r\n
+ \ \"52.108.83.0/24\",\r\n \"52.109.112.0/22\",\r\n \"52.111.224.0/24\",\r\n
+ \ \"52.113.88.0/22\",\r\n \"52.113.103.0/24\",\r\n \"52.114.16.0/22\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.192.0/23\",\r\n \"52.115.98.0/24\",\r\n
+ \ \"52.120.158.0/23\",\r\n \"52.121.108.0/22\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.147.0.0/19\",\r\n \"52.156.160.0/19\",\r\n
+ \ \"52.187.192.0/18\",\r\n \"52.232.136.0/21\",\r\n \"52.232.154.0/24\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.245.16.0/22\",\r\n \"104.44.90.64/26\",\r\n \"104.44.93.96/27\",\r\n
+ \ \"104.44.95.48/28\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.210.64.0/18\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.239.64.0/19\",\r\n \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n
+ \ \"2603:1010:6::/48\",\r\n \"2603:1016:1400:60::/59\",\r\n
+ \ \"2603:1016:2402::/48\",\r\n \"2603:1016:2500:c::/64\",\r\n
+ \ \"2603:1017:0:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.australiasoutheast\",\r\n \"id\": \"AzureCloud.australiasoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.73.96.0/19\",\r\n \"13.77.0.0/18\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.45.144.0/20\",\r\n \"20.46.96.0/20\",\r\n
+ \ \"20.47.38.0/24\",\r\n \"20.47.74.0/23\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.60.32.0/23\",\r\n \"20.70.64.0/18\",\r\n \"20.92.0.0/18\",\r\n
+ \ \"20.135.50.0/23\",\r\n \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.157.45.0/24\",\r\n \"20.190.96.0/19\",\r\n \"20.190.142.128/25\",\r\n
+ \ \"20.190.168.0/24\",\r\n \"23.101.224.0/19\",\r\n \"40.79.212.0/24\",\r\n
+ \ \"40.81.48.0/20\",\r\n \"40.87.212.0/22\",\r\n \"40.90.24.0/25\",\r\n
+ \ \"40.90.27.0/26\",\r\n \"40.90.138.128/27\",\r\n \"40.90.155.64/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.115.64.0/19\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.40.0/24\",\r\n \"40.127.64.0/19\",\r\n \"52.108.194.0/24\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.109.116.0/22\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.76.0/23\",\r\n \"52.114.20.0/22\",\r\n
+ \ \"52.114.60.0/23\",\r\n \"52.115.99.0/24\",\r\n \"52.121.106.0/23\",\r\n
+ \ \"52.136.25.0/24\",\r\n \"52.147.32.0/19\",\r\n \"52.158.128.0/19\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n
+ \ \"52.243.64.0/18\",\r\n \"52.245.20.0/22\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"104.44.90.32/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.160.0/19\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n \"2603:1010:100::/40\",\r\n
+ \ \"2603:1010:200::/47\",\r\n \"2603:1010:202::/48\",\r\n
+ \ \"2603:1010:204::/48\",\r\n \"2603:1010:205::/48\",\r\n
+ \ \"2603:1016:1400::/59\",\r\n \"2603:1016:2403::/48\",\r\n
+ \ \"2603:1016:2500::/64\",\r\n \"2603:1017::/59\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilse\",\r\n
+ \ \"id\": \"AzureCloud.brazilse\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"brazilse\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.27.128/27\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.96/27\",\r\n \"13.105.52.0/27\",\r\n \"20.40.32.0/21\",\r\n
+ \ \"20.135.76.0/23\",\r\n \"20.150.73.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.123.0/24\",\r\n \"20.157.42.0/24\",\r\n \"20.195.128.0/22\",\r\n
+ \ \"20.195.144.0/21\",\r\n \"23.97.112.192/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"40.79.204.192/26\",\r\n \"40.123.128.0/22\",\r\n
+ \ \"40.126.207.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.109.164.0/24\",\r\n \"52.111.207.0/24\",\r\n \"52.112.206.0/24\",\r\n
+ \ \"52.253.197.0/24\",\r\n \"191.232.16.0/21\",\r\n \"191.233.8.0/21\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.160.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"2603:1050:400::/48\",\r\n \"2603:1050:402::/48\",\r\n
+ \ \"2603:1050:403::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500:4::/64\",\r\n \"2603:1056:2000:60::/59\",\r\n
+ \ \"2603:1057:2:60::/59\",\r\n \"2603:1061:1002::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilsouth\",\r\n
+ \ \"id\": \"AzureCloud.brazilsouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.52.80/28\",\r\n \"13.105.52.128/26\",\r\n
+ \ \"20.40.16.0/21\",\r\n \"20.40.112.0/21\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.60.36.0/23\",\r\n \"20.135.128.0/22\",\r\n
+ \ \"20.135.132.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"20.190.145.0/25\",\r\n \"20.190.173.0/24\",\r\n \"20.195.136.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.197.128.0/17\",\r\n \"20.201.0.0/18\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.144/28\",\r\n \"40.90.141.64/27\",\r\n \"40.90.144.224/27\",\r\n
+ \ \"40.90.145.96/27\",\r\n \"40.90.145.128/27\",\r\n \"40.90.157.0/27\",\r\n
+ \ \"40.126.17.0/25\",\r\n \"40.126.45.0/24\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n
+ \ \"52.109.108.0/22\",\r\n \"52.111.225.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.113.132.0/24\",\r\n \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n
+ \ \"52.114.200.0/22\",\r\n \"52.121.40.0/21\",\r\n \"52.253.185.0/24\",\r\n
+ \ \"52.253.186.0/24\",\r\n \"104.41.0.0/18\",\r\n \"191.232.32.0/19\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.16.0/20\",\r\n \"191.233.128.0/20\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.235.32.0/19\",\r\n
+ \ \"191.235.64.0/18\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\",\r\n \"191.237.195.0/24\",\r\n \"191.237.200.0/21\",\r\n
+ \ \"191.237.248.0/21\",\r\n \"191.238.72.0/21\",\r\n \"191.238.128.0/21\",\r\n
+ \ \"191.238.192.0/19\",\r\n \"191.239.112.0/20\",\r\n \"191.239.204.0/22\",\r\n
+ \ \"191.239.240.0/20\",\r\n \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n
+ \ \"2603:1050:5::/48\",\r\n \"2603:1050:6::/48\",\r\n \"2603:1056:1400::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:2000:20::/59\",\r\n
+ \ \"2603:1057:2:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadacentral\",\r\n \"id\": \"AzureCloud.canadacentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.160.0/19\",\r\n
+ \ \"13.88.224.0/19\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.212.192/26\",\r\n \"13.104.223.192/26\",\r\n
+ \ \"20.38.114.0/25\",\r\n \"20.38.144.0/21\",\r\n \"20.39.128.0/20\",\r\n
+ \ \"20.43.0.0/19\",\r\n \"20.47.40.0/24\",\r\n \"20.47.87.0/24\",\r\n
+ \ \"20.48.128.0/18\",\r\n \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.63.0.0/17\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n
+ \ \"20.150.71.0/24\",\r\n \"20.150.100.0/24\",\r\n \"20.151.0.0/17\",\r\n
+ \ \"20.151.128.0/18\",\r\n \"20.157.52.0/24\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.161.0/24\",\r\n \"20.200.64.0/18\",\r\n \"40.79.216.0/24\",\r\n
+ \ \"40.80.44.0/22\",\r\n \"40.82.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.90.17.144/28\",\r\n \"40.90.128.0/28\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.151.96/27\",\r\n \"40.126.11.0/25\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"52.108.42.0/23\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.109.92.0/22\",\r\n \"52.111.251.0/24\",\r\n \"52.114.160.0/22\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.138.0.0/18\",\r\n
+ \ \"52.139.0.0/18\",\r\n \"52.156.0.0/19\",\r\n \"52.228.0.0/17\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.237.0.0/18\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.245.28.0/22\",\r\n \"52.246.152.0/21\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"104.44.93.32/27\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"2603:1030:208::/47\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2500:30::/64\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1037:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadaeast\",\r\n \"id\": \"AzureCloud.canadaeast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.154.128/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.135.66.0/23\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n \"20.190.139.128/25\",\r\n
+ \ \"20.190.162.0/24\",\r\n \"20.200.0.0/18\",\r\n \"40.69.96.0/19\",\r\n
+ \ \"40.79.217.0/24\",\r\n \"40.80.40.0/22\",\r\n \"40.80.240.0/20\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.89.0.0/19\",\r\n \"40.90.17.128/28\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.156.96/27\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.34.0/24\",\r\n \"52.108.193.0/24\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.111.226.0/24\",\r\n \"52.114.164.0/22\",\r\n
+ \ \"52.136.22.0/24\",\r\n \"52.139.64.0/18\",\r\n \"52.155.0.0/19\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.232.128.0/21\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\",\r\n \"52.242.0.0/18\",\r\n
+ \ \"52.245.32.0/22\",\r\n \"104.44.93.64/27\",\r\n \"104.44.95.32/28\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:2402::/48\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1037:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralfrance\",\r\n \"id\": \"AzureCloud.centralfrance\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.156.0/24\",\r\n
+ \ \"20.38.196.0/22\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.128.0/19\",\r\n \"20.43.32.0/19\",\r\n \"20.47.44.0/24\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.188.32.0/19\",\r\n \"20.190.147.0/25\",\r\n
+ \ \"20.190.177.0/24\",\r\n \"20.199.0.0/17\",\r\n \"40.66.32.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.222.0/24\",\r\n \"40.80.24.0/22\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.90.130.240/28\",\r\n \"40.90.132.0/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.126.19.0/25\",\r\n \"40.126.49.0/24\",\r\n \"51.11.192.0/18\",\r\n
+ \ \"51.103.0.0/17\",\r\n \"51.138.192.0/19\",\r\n \"52.108.52.0/23\",\r\n
+ \ \"52.108.89.0/24\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.111.231.0/24\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.190.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.114.104.0/22\",\r\n \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.143.128.0/18\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.194.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.245.116.0/22\",\r\n
+ \ \"2603:1020:800::/47\",\r\n \"2603:1020:802::/48\",\r\n
+ \ \"2603:1020:804::/48\",\r\n \"2603:1020:805::/48\",\r\n
+ \ \"2603:1026:2400::/48\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1027:1:100::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.centralindia\",\r\n
+ \ \"id\": \"AzureCloud.centralindia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.0.0/18\",\r\n \"13.104.148.128/25\",\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.47.89.0/24\",\r\n \"20.135.90.0/23\",\r\n
+ \ \"20.135.92.0/22\",\r\n \"20.150.114.0/24\",\r\n \"20.190.146.0/25\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.198.0.0/17\",\r\n \"40.79.207.32/27\",\r\n
+ \ \"40.79.207.64/28\",\r\n \"40.79.207.96/27\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.64.0/19\",\r\n \"40.81.224.0/19\",\r\n
+ \ \"40.87.224.0/22\",\r\n \"40.90.137.128/27\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.126.18.0/25\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"52.108.44.0/23\",\r\n \"52.108.85.0/24\",\r\n \"52.109.56.0/22\",\r\n
+ \ \"52.111.252.0/24\",\r\n \"52.113.10.0/23\",\r\n \"52.113.70.0/23\",\r\n
+ \ \"52.113.92.0/22\",\r\n \"52.113.193.0/24\",\r\n \"52.114.40.0/22\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.136.24.0/24\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.172.128.0/17\",\r\n
+ \ \"52.239.135.64/26\",\r\n \"52.239.202.0/24\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.253.181.0/24\",\r\n \"52.253.191.0/24\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.94.192/28\",\r\n \"104.47.210.0/23\",\r\n \"104.211.64.0/18\",\r\n
+ \ \"2603:1040:a00::/46\",\r\n \"2603:1040:a05::/48\",\r\n
+ \ \"2603:1040:a06::/48\",\r\n \"2603:1046:1400::/48\",\r\n
+ \ \"2603:1046:1500:8::/64\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1047:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralus\",\r\n \"id\": \"AzureCloud.centralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.128.0/20\",\r\n
+ \ \"13.67.144.0/21\",\r\n \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n \"13.67.160.0/19\",\r\n
+ \ \"13.67.192.0/18\",\r\n \"13.86.0.0/17\",\r\n \"13.89.0.0/16\",\r\n
+ \ \"13.104.147.128/25\",\r\n \"13.104.219.128/25\",\r\n \"13.105.17.192/26\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.37.0/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"20.37.128.0/18\",\r\n \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n
+ \ \"20.40.192.0/18\",\r\n \"20.44.8.0/21\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.78.0/23\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n \"20.60.194.0/23\",\r\n
+ \ \"20.80.64.0/18\",\r\n \"20.83.0.0/18\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.184.64.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.190.134.0/24\",\r\n \"20.190.155.0/24\",\r\n \"23.99.128.0/17\",\r\n
+ \ \"23.100.80.0/21\",\r\n \"23.100.240.0/20\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.102.202.0/24\",\r\n \"40.67.160.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.130.128/26\",\r\n \"40.77.137.0/25\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.161.64/26\",\r\n \"40.77.166.192/26\",\r\n
+ \ \"40.77.171.0/24\",\r\n \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n
+ \ \"40.77.182.16/28\",\r\n \"40.77.182.192/26\",\r\n \"40.77.184.128/25\",\r\n
+ \ \"40.77.197.0/24\",\r\n \"40.77.255.128/26\",\r\n \"40.78.128.0/18\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.82.16.0/22\",\r\n \"40.82.96.0/22\",\r\n
+ \ \"40.83.0.0/20\",\r\n \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n
+ \ \"40.83.24.64/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.28/30\",\r\n \"40.87.180.32/29\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.74/31\",\r\n \"40.87.180.76/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.24/29\",\r\n \"40.87.182.32/28\",\r\n
+ \ \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n \"40.87.182.62/31\",\r\n
+ \ \"40.87.182.64/26\",\r\n \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n
+ \ \"40.87.183.16/29\",\r\n \"40.87.183.24/30\",\r\n \"40.87.183.34/31\",\r\n
+ \ \"40.87.183.36/30\",\r\n \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n
+ \ \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n \"40.87.183.64/26\",\r\n
+ \ \"40.87.183.144/28\",\r\n \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n
+ \ \"40.87.183.224/29\",\r\n \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n
+ \ \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n \"40.89.224.0/19\",\r\n
+ \ \"40.90.16.0/27\",\r\n \"40.90.21.128/25\",\r\n \"40.90.22.0/25\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.129.224/27\",\r\n \"40.90.130.64/28\",\r\n
+ \ \"40.90.130.192/28\",\r\n \"40.90.132.192/26\",\r\n \"40.90.137.224/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.142.128/27\",\r\n \"40.90.142.240/28\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.128/26\",\r\n \"40.90.148.176/28\",\r\n \"40.90.149.96/27\",\r\n
+ \ \"40.90.151.144/28\",\r\n \"40.90.154.64/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.158.64/26\",\r\n \"40.93.8.0/24\",\r\n \"40.113.192.0/18\",\r\n
+ \ \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n \"40.122.64.0/18\",\r\n
+ \ \"40.122.128.0/17\",\r\n \"40.126.6.0/24\",\r\n \"40.126.27.0/24\",\r\n
+ \ \"52.101.8.0/24\",\r\n \"52.101.32.0/22\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.103.4.0/24\",\r\n \"52.103.130.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.185.0/24\",\r\n \"52.108.208.0/21\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.111.227.0/24\",\r\n \"52.112.113.0/24\",\r\n
+ \ \"52.113.129.0/24\",\r\n \"52.114.128.0/22\",\r\n \"52.115.76.0/22\",\r\n
+ \ \"52.115.80.0/22\",\r\n \"52.115.88.0/22\",\r\n \"52.123.2.0/24\",\r\n
+ \ \"52.125.128.0/22\",\r\n \"52.136.30.0/24\",\r\n \"52.141.192.0/19\",\r\n
+ \ \"52.141.240.0/20\",\r\n \"52.143.193.0/24\",\r\n \"52.143.224.0/19\",\r\n
+ \ \"52.154.0.0/18\",\r\n \"52.154.128.0/17\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.192.0/19\",\r\n \"52.165.0.0/19\",\r\n \"52.165.32.0/20\",\r\n
+ \ \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n \"52.165.56.0/21\",\r\n
+ \ \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n \"52.165.104.0/25\",\r\n
+ \ \"52.165.128.0/17\",\r\n \"52.173.0.0/16\",\r\n \"52.176.0.0/17\",\r\n
+ \ \"52.176.128.0/19\",\r\n \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n
+ \ \"52.176.192.0/19\",\r\n \"52.176.224.0/24\",\r\n \"52.180.128.0/19\",\r\n
+ \ \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n \"52.180.185.0/24\",\r\n
+ \ \"52.182.128.0/17\",\r\n \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n
+ \ \"52.185.48.0/21\",\r\n \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n \"52.189.0.0/17\",\r\n
+ \ \"52.228.128.0/17\",\r\n \"52.230.128.0/17\",\r\n \"52.232.157.0/24\",\r\n
+ \ \"52.238.192.0/18\",\r\n \"52.239.150.0/23\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.195.0/24\",\r\n
+ \ \"52.239.234.0/23\",\r\n \"52.242.128.0/17\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n \"52.245.69.96/28\",\r\n
+ \ \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n \"52.245.69.192/26\",\r\n
+ \ \"52.245.70.0/23\",\r\n \"52.255.0.0/19\",\r\n \"65.55.144.0/23\",\r\n
+ \ \"65.55.146.0/24\",\r\n \"104.43.128.0/17\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.91.160/27\",\r\n \"104.44.92.224/27\",\r\n \"104.44.94.80/28\",\r\n
+ \ \"104.208.0.0/19\",\r\n \"104.208.32.0/20\",\r\n \"131.253.36.224/27\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"168.61.128.0/25\",\r\n \"168.61.128.128/28\",\r\n
+ \ \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n \"168.61.129.224/27\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n \"168.61.144.0/20\",\r\n
+ \ \"168.61.160.0/19\",\r\n \"168.61.208.0/20\",\r\n \"193.149.72.0/21\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:17::/64\",\r\n
+ \ \"2603:1030:9:18::/61\",\r\n \"2603:1030:9:20::/59\",\r\n
+ \ \"2603:1030:9:40::/58\",\r\n \"2603:1030:9:80::/59\",\r\n
+ \ \"2603:1030:9:a0::/60\",\r\n \"2603:1030:9:b3::/64\",\r\n
+ \ \"2603:1030:9:b4::/63\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:111::/64\",\r\n \"2603:1030:9:112::/63\",\r\n
+ \ \"2603:1030:9:114::/64\",\r\n \"2603:1030:9:118::/62\",\r\n
+ \ \"2603:1030:9:11c::/63\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:10::/48\",\r\n
+ \ \"2603:1036:2403::/48\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:3000:100::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:f904::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.centraluseuap\",\r\n \"id\": \"AzureCloud.centraluseuap\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.104.129.0/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.208.0/26\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.47.5.0/24\",\r\n \"20.47.105.0/24\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.150.23.0/24\",\r\n
+ \ \"20.150.47.0/25\",\r\n \"20.157.96.0/24\",\r\n \"20.190.138.128/25\",\r\n
+ \ \"20.190.150.0/24\",\r\n \"40.66.120.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.16/28\",\r\n \"40.79.232.0/21\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n
+ \ \"40.87.180.12/31\",\r\n \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n
+ \ \"40.87.180.40/31\",\r\n \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n
+ \ \"40.87.182.0/30\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.60/31\",\r\n
+ \ \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.48/30\",\r\n \"40.87.183.52/31\",\r\n \"40.87.183.128/28\",\r\n
+ \ \"40.87.183.238/31\",\r\n \"40.87.183.240/30\",\r\n \"40.89.32.0/19\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.142.32/27\",\r\n \"40.90.149.0/27\",\r\n
+ \ \"40.96.52.0/24\",\r\n \"40.122.0.0/20\",\r\n \"40.126.10.128/25\",\r\n
+ \ \"40.126.22.0/24\",\r\n \"52.108.113.0/24\",\r\n \"52.109.140.0/22\",\r\n
+ \ \"52.141.224.0/20\",\r\n \"52.143.198.0/24\",\r\n \"52.158.176.0/20\",\r\n
+ \ \"52.165.104.128/26\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.180.160.0/20\",\r\n \"52.180.176.0/21\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.112.64/27\",\r\n \"52.239.177.0/27\",\r\n
+ \ \"52.239.238.0/24\",\r\n \"52.245.69.0/27\",\r\n \"52.253.156.0/22\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"104.208.48.0/20\",\r\n \"168.61.136.0/21\",\r\n
+ \ \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:10d::/64\",\r\n
+ \ \"2603:1030:9:10e::/63\",\r\n \"2603:1030:9:110::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:12c::/63\",\r\n
+ \ \"2603:1030:9:12e::/64\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:240d::/48\",\r\n \"2603:1036:2500:2c::/64\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1037:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastasia\",\r\n
+ \ \"id\": \"AzureCloud.eastasia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.0.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.75.0.0/17\",\r\n
+ \ \"13.88.208.0/20\",\r\n \"13.94.0.0/18\",\r\n \"13.104.155.64/26\",\r\n
+ \ \"13.104.155.192/26\",\r\n \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.126.0/23\",\r\n \"20.60.131.0/24\",\r\n
+ \ \"20.135.40.0/23\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"20.187.64.0/18\",\r\n
+ \ \"20.187.128.0/18\",\r\n \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n
+ \ \"20.189.64.0/18\",\r\n \"20.190.140.128/25\",\r\n \"20.190.164.0/24\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"23.97.64.0/19\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.99.96.0/19\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.101.0.0/20\",\r\n \"23.102.200.0/23\",\r\n
+ \ \"23.102.224.0/19\",\r\n \"40.77.134.0/24\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.160.32/27\",\r\n \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n
+ \ \"40.77.161.0/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.175.128/27\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.201.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.234.128/27\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.128/25\",\r\n
+ \ \"40.77.252.0/23\",\r\n \"40.79.210.0/24\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.82.116.0/22\",\r\n \"40.83.64.0/18\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.90.154.192/26\",\r\n \"40.126.12.128/25\",\r\n \"40.126.36.0/24\",\r\n
+ \ \"52.108.32.0/22\",\r\n \"52.108.81.0/24\",\r\n \"52.109.120.0/22\",\r\n
+ \ \"52.111.228.0/24\",\r\n \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n
+ \ \"52.113.104.0/24\",\r\n \"52.113.108.0/24\",\r\n \"52.114.0.0/21\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.96.0/24\",\r\n \"52.120.157.0/24\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.139.128.0/18\",\r\n \"52.175.0.0/17\",\r\n
+ \ \"52.184.0.0/17\",\r\n \"52.229.128.0/17\",\r\n \"52.232.153.0/24\",\r\n
+ \ \"52.239.128.0/24\",\r\n \"52.239.224.0/24\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.246.128.0/20\",\r\n \"65.52.160.0/19\",\r\n \"104.44.88.192/27\",\r\n
+ \ \"104.44.90.224/27\",\r\n \"104.44.91.192/27\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.46.24.0/22\",\r\n \"104.208.64.0/18\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n \"111.221.78.0/23\",\r\n
+ \ \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"137.116.160.0/20\",\r\n \"168.63.128.0/24\",\r\n
+ \ \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n \"168.63.129.64/26\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n \"168.63.132.0/22\",\r\n
+ \ \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n \"168.63.152.0/22\",\r\n
+ \ \"168.63.156.0/24\",\r\n \"168.63.192.0/19\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.237.238.0/24\",\r\n
+ \ \"204.231.197.0/24\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.68.174.208/28\",\r\n \"2603:1040:200::/46\",\r\n
+ \ \"2603:1040:204::/48\",\r\n \"2603:1040:206::/48\",\r\n
+ \ \"2603:1040:207::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1047:1:40::/59\",\r\n \"2a01:111:f100:6000::/64\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus\",\r\n
+ \ \"id\": \"AzureCloud.eastus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.128.0/17\",\r\n \"13.72.64.0/18\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.90.0.0/16\",\r\n \"13.92.0.0/16\",\r\n \"13.104.144.128/27\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.192.0/21\",\r\n \"13.104.211.0/25\",\r\n
+ \ \"13.104.214.128/25\",\r\n \"13.104.215.0/25\",\r\n \"13.105.17.0/26\",\r\n
+ \ \"13.105.19.0/25\",\r\n \"13.105.20.192/26\",\r\n \"13.105.27.0/25\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.36.192/26\",\r\n \"13.105.74.48/28\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.39.32.0/19\",\r\n \"20.42.0.0/17\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.113.0/24\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.51.128.0/17\",\r\n \"20.55.0.0/17\",\r\n \"20.60.0.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n \"20.60.60.0/22\",\r\n
+ \ \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.62.128.0/17\",\r\n \"20.72.128.0/18\",\r\n \"20.75.128.0/17\",\r\n
+ \ \"20.81.0.0/17\",\r\n \"20.83.128.0/18\",\r\n \"20.84.0.0/17\",\r\n
+ \ \"20.85.128.0/17\",\r\n \"20.88.128.0/18\",\r\n \"20.135.4.0/22\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.157.39.0/24\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.190.130.0/24\",\r\n \"20.190.151.0/24\",\r\n \"23.96.0.0/17\",\r\n
+ \ \"23.98.45.0/24\",\r\n \"23.100.16.0/20\",\r\n \"23.101.128.0/20\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.76.0.0/16\",\r\n \"40.78.219.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.79.152.0/21\",\r\n \"40.80.144.0/21\",\r\n
+ \ \"40.82.24.0/22\",\r\n \"40.82.60.0/22\",\r\n \"40.85.160.0/19\",\r\n
+ \ \"40.87.0.0/17\",\r\n \"40.87.164.0/22\",\r\n \"40.88.0.0/16\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.128/25\",\r\n \"40.90.25.0/26\",\r\n
+ \ \"40.90.30.192/26\",\r\n \"40.90.129.128/26\",\r\n \"40.90.130.96/28\",\r\n
+ \ \"40.90.131.224/27\",\r\n \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n
+ \ \"40.90.137.96/27\",\r\n \"40.90.139.224/27\",\r\n \"40.90.143.0/27\",\r\n
+ \ \"40.90.146.64/26\",\r\n \"40.90.147.0/27\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.224.0/19\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.4.0/24\",\r\n \"40.112.48.0/20\",\r\n
+ \ \"40.114.0.0/17\",\r\n \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n
+ \ \"40.117.128.0/17\",\r\n \"40.121.0.0/16\",\r\n \"40.123.132.0/22\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.23.0/24\",\r\n \"52.101.4.0/22\",\r\n
+ \ \"52.101.9.0/24\",\r\n \"52.101.20.0/22\",\r\n \"52.102.129.0/24\",\r\n
+ \ \"52.102.159.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.3.0/24\",\r\n
+ \ \"52.103.129.0/24\",\r\n \"52.108.16.0/21\",\r\n \"52.108.79.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.109.12.0/22\",\r\n
+ \ \"52.111.229.0/24\",\r\n \"52.112.112.0/24\",\r\n \"52.113.16.0/20\",\r\n
+ \ \"52.114.132.0/22\",\r\n \"52.115.54.0/24\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.192.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.123.0.0/24\",\r\n \"52.125.132.0/22\",\r\n \"52.136.64.0/18\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.143.207.0/24\",\r\n \"52.146.0.0/17\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.128.0/17\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.168.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.179.0.0/17\",\r\n
+ \ \"52.186.0.0/16\",\r\n \"52.188.0.0/16\",\r\n \"52.190.0.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.192.0/18\",\r\n \"52.224.0.0/16\",\r\n
+ \ \"52.226.0.0/16\",\r\n \"52.232.146.0/24\",\r\n \"52.234.128.0/17\",\r\n
+ \ \"52.239.152.0/22\",\r\n \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n
+ \ \"52.239.214.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.240.0.0/17\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.104.0/22\",\r\n \"52.249.128.0/17\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.255.128.0/17\",\r\n \"65.54.19.128/27\",\r\n \"104.41.128.0/19\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.94.16/28\",\r\n \"104.44.95.160/27\",\r\n
+ \ \"104.44.95.240/28\",\r\n \"104.45.128.0/18\",\r\n \"104.45.192.0/20\",\r\n
+ \ \"104.211.0.0/18\",\r\n \"137.116.112.0/20\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.135.64.0/18\",\r\n \"138.91.96.0/19\",\r\n
+ \ \"157.56.176.0/21\",\r\n \"168.61.32.0/20\",\r\n \"168.61.48.0/21\",\r\n
+ \ \"168.62.32.0/19\",\r\n \"168.62.160.0/19\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.238.0.0/18\",\r\n
+ \ \"2603:1030:20c::/47\",\r\n \"2603:1030:20e::/48\",\r\n
+ \ \"2603:1030:210::/47\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:3000:120::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f403:c100::/64\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:f000::/64\",\r\n \"2a01:111:f403:f900::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2\",\r\n
+ \ \"id\": \"AzureCloud.eastus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.0.0/17\",\r\n \"13.77.64.0/18\",\r\n \"13.104.147.0/25\",\r\n
+ \ \"13.104.208.64/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.23.64/26\",\r\n
+ \ \"13.105.28.0/28\",\r\n \"13.105.28.128/25\",\r\n \"13.105.67.128/25\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.75.0/27\",\r\n \"13.105.75.32/28\",\r\n
+ \ \"13.105.75.64/27\",\r\n \"20.36.128.0/17\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.41.0.0/18\",\r\n \"20.44.16.0/21\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.47.60.0/23\",\r\n \"20.47.76.0/23\",\r\n
+ \ \"20.49.0.0/18\",\r\n \"20.49.96.0/21\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.57.0.0/17\",\r\n \"20.60.56.0/22\",\r\n \"20.60.132.0/23\",\r\n
+ \ \"20.60.180.0/23\",\r\n \"20.62.0.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.69.192.0/18\",\r\n \"20.72.64.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.80.192.0/18\",\r\n \"20.81.128.0/17\",\r\n \"20.85.0.0/17\",\r\n
+ \ \"20.88.96.0/19\",\r\n \"20.135.16.0/23\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.150.29.0/24\",\r\n \"20.150.36.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n \"20.150.82.0/24\",\r\n
+ \ \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.152.0/24\",\r\n \"20.190.192.0/18\",\r\n \"23.100.64.0/21\",\r\n
+ \ \"23.101.32.0/21\",\r\n \"23.101.80.0/21\",\r\n \"23.101.144.0/20\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n
+ \ \"40.65.192.0/18\",\r\n \"40.67.128.0/19\",\r\n \"40.70.0.0/18\",\r\n
+ \ \"40.70.64.0/20\",\r\n \"40.70.80.0/21\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.75.0.0/19\",\r\n \"40.75.64.0/18\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.132.0/24\",\r\n
+ \ \"40.77.136.48/28\",\r\n \"40.77.137.128/26\",\r\n \"40.77.138.128/25\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.166.160/27\",\r\n \"40.77.167.0/24\",\r\n
+ \ \"40.77.168.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.175.96/27\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.182.0/28\",\r\n
+ \ \"40.77.182.32/27\",\r\n \"40.77.184.0/25\",\r\n \"40.77.198.0/26\",\r\n
+ \ \"40.77.199.192/26\",\r\n \"40.77.224.128/25\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.233.0/24\",\r\n \"40.77.234.192/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.240.0/25\",\r\n \"40.77.245.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.251.0/24\",\r\n \"40.78.208.48/28\",\r\n
+ \ \"40.78.220.0/24\",\r\n \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n
+ \ \"40.79.8.32/28\",\r\n \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n
+ \ \"40.79.9.0/24\",\r\n \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n
+ \ \"40.79.48.0/27\",\r\n \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n
+ \ \"40.79.56.0/21\",\r\n \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n
+ \ \"40.79.90.0/24\",\r\n \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n
+ \ \"40.79.93.0/28\",\r\n \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n
+ \ \"40.79.206.64/27\",\r\n \"40.79.240.0/20\",\r\n \"40.82.4.0/22\",\r\n
+ \ \"40.82.44.0/22\",\r\n \"40.84.0.0/17\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n \"40.87.168.32/29\",\r\n
+ \ \"40.87.168.48/28\",\r\n \"40.87.168.64/30\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.210/31\",\r\n
+ \ \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n \"40.87.168.224/27\",\r\n
+ \ \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n \"40.87.169.44/30\",\r\n
+ \ \"40.87.169.48/29\",\r\n \"40.87.169.56/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.102/31\",\r\n
+ \ \"40.87.169.104/29\",\r\n \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n
+ \ \"40.87.169.136/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.160/27\",\r\n
+ \ \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n \"40.87.170.128/28\",\r\n
+ \ \"40.87.170.144/31\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.194/31\",\r\n
+ \ \"40.87.170.196/30\",\r\n \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n
+ \ \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n \"40.87.170.240/29\",\r\n
+ \ \"40.87.170.248/30\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.36/30\",\r\n
+ \ \"40.87.171.40/31\",\r\n \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n
+ \ \"40.87.171.96/27\",\r\n \"40.87.171.128/28\",\r\n \"40.90.19.128/25\",\r\n
+ \ \"40.90.20.0/25\",\r\n \"40.90.130.160/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.133.112/28\",\r\n \"40.90.134.192/26\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.140.160/27\",\r\n \"40.90.140.192/27\",\r\n
+ \ \"40.90.143.192/26\",\r\n \"40.90.144.64/26\",\r\n \"40.90.145.32/27\",\r\n
+ \ \"40.90.145.64/27\",\r\n \"40.90.148.96/27\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.158.128/25\",\r\n \"40.91.12.16/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n \"40.91.13.128/27\",\r\n
+ \ \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n \"40.93.3.0/24\",\r\n
+ \ \"40.123.0.0/17\",\r\n \"40.126.3.0/24\",\r\n \"40.126.24.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.36.0/22\",\r\n \"52.102.131.0/24\",\r\n
+ \ \"52.103.5.0/24\",\r\n \"52.103.131.0/24\",\r\n \"52.108.186.0/24\",\r\n
+ \ \"52.108.216.0/22\",\r\n \"52.109.4.0/22\",\r\n \"52.111.230.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.95.0/24\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.108.0/24\",\r\n \"52.112.116.0/24\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.180.0/22\",\r\n \"52.114.186.0/23\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.64.0/22\",\r\n \"52.115.160.0/19\",\r\n
+ \ \"52.120.64.0/19\",\r\n \"52.121.32.0/22\",\r\n \"52.123.4.0/24\",\r\n
+ \ \"52.125.136.0/24\",\r\n \"52.136.29.0/24\",\r\n \"52.138.80.0/21\",\r\n
+ \ \"52.138.96.0/19\",\r\n \"52.143.192.0/24\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.167.0.0/16\",\r\n \"52.177.0.0/16\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.80/28\",\r\n \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n
+ \ \"52.184.169.0/24\",\r\n \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n
+ \ \"52.184.192.0/18\",\r\n \"52.225.128.0/21\",\r\n \"52.225.136.0/27\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n
+ \ \"52.225.192.0/18\",\r\n \"52.232.151.0/24\",\r\n \"52.232.160.0/19\",\r\n
+ \ \"52.232.192.0/18\",\r\n \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n
+ \ \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n
+ \ \"52.239.185.32/27\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.222.0/23\",\r\n \"52.242.64.0/18\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.160/27\",\r\n
+ \ \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n \"52.245.46.48/28\",\r\n
+ \ \"52.245.46.64/28\",\r\n \"52.245.46.112/28\",\r\n \"52.245.46.128/28\",\r\n
+ \ \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n \"52.247.0.0/17\",\r\n
+ \ \"52.250.128.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.253.64.0/20\",\r\n \"52.253.148.0/23\",\r\n \"52.253.154.0/23\",\r\n
+ \ \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n \"52.254.96.0/20\",\r\n
+ \ \"52.254.112.0/21\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n \"65.55.44.64/27\",\r\n
+ \ \"65.55.44.96/28\",\r\n \"65.55.44.128/27\",\r\n \"65.55.60.188/30\",\r\n
+ \ \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.107.48/28\",\r\n \"65.55.107.64/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.209.128/26\",\r\n \"65.55.211.32/27\",\r\n \"65.55.213.64/26\",\r\n
+ \ \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.128/25\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.96/27\",\r\n
+ \ \"104.44.91.96/27\",\r\n \"104.44.93.160/27\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.96.0/19\",\r\n \"104.46.192.0/20\",\r\n
+ \ \"104.47.200.0/21\",\r\n \"104.208.128.0/17\",\r\n \"104.209.128.0/17\",\r\n
+ \ \"104.210.0.0/20\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.208/28\",\r\n
+ \ \"131.253.12.224/30\",\r\n \"131.253.13.16/29\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.96/30\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.64/29\",\r\n \"131.253.14.208/28\",\r\n
+ \ \"131.253.14.224/28\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.24.0/28\",\r\n \"131.253.24.192/26\",\r\n \"131.253.34.224/27\",\r\n
+ \ \"131.253.38.0/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.40.0/28\",\r\n
+ \ \"134.170.220.0/23\",\r\n \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n
+ \ \"137.116.96.0/22\",\r\n \"157.55.7.128/26\",\r\n \"157.55.10.192/26\",\r\n
+ \ \"157.55.11.128/25\",\r\n \"157.55.37.0/24\",\r\n \"157.55.38.0/24\",\r\n
+ \ \"157.55.48.0/24\",\r\n \"157.55.50.0/25\",\r\n \"157.55.55.100/30\",\r\n
+ \ \"157.55.55.104/29\",\r\n \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.128.0/18\",\r\n \"191.239.224.0/20\",\r\n
+ \ \"193.149.64.0/21\",\r\n \"198.180.96.0/25\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n \"199.30.29.0/24\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401:2::/63\",\r\n
+ \ \"2603:1030:401:4::/62\",\r\n \"2603:1030:401:8::/61\",\r\n
+ \ \"2603:1030:401:10::/62\",\r\n \"2603:1030:401:14::/63\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:5a::/63\",\r\n \"2603:1030:401:5c::/62\",\r\n
+ \ \"2603:1030:401:60::/59\",\r\n \"2603:1030:401:80::/62\",\r\n
+ \ \"2603:1030:401:84::/64\",\r\n \"2603:1030:401:87::/64\",\r\n
+ \ \"2603:1030:401:88::/62\",\r\n \"2603:1030:401:8c::/63\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:94::/62\",\r\n \"2603:1030:401:98::/61\",\r\n
+ \ \"2603:1030:401:a0::/62\",\r\n \"2603:1030:401:a4::/63\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:143::/64\",\r\n \"2603:1030:401:144::/63\",\r\n
+ \ \"2603:1030:401:14a::/63\",\r\n \"2603:1030:401:14c::/62\",\r\n
+ \ \"2603:1030:401:150::/62\",\r\n \"2603:1030:401:154::/63\",\r\n
+ \ \"2603:1030:401:159::/64\",\r\n \"2603:1030:401:15a::/63\",\r\n
+ \ \"2603:1030:401:15c::/62\",\r\n \"2603:1030:401:160::/61\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:406::/47\",\r\n
+ \ \"2603:1030:408::/48\",\r\n \"2603:1030:40a:1::/64\",\r\n
+ \ \"2603:1030:40a:2::/64\",\r\n \"2603:1030:40c::/48\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1037:1::/59\",\r\n \"2603:1039:205::/48\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:f908::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2euap\",\r\n
+ \ \"id\": \"AzureCloud.eastus2euap\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.216.0/24\",\r\n \"13.105.52.32/27\",\r\n
+ \ \"13.105.52.64/28\",\r\n \"13.105.52.96/27\",\r\n \"13.105.60.160/27\",\r\n
+ \ \"13.105.61.0/28\",\r\n \"13.105.61.32/27\",\r\n \"20.39.0.0/19\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.128.0/17\",\r\n
+ \ \"20.51.16.0/21\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n \"20.150.108.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.149.0/24\",\r\n \"40.70.88.0/28\",\r\n
+ \ \"40.74.144.0/20\",\r\n \"40.75.32.0/21\",\r\n \"40.78.208.0/28\",\r\n
+ \ \"40.79.88.0/27\",\r\n \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n
+ \ \"40.79.96.0/19\",\r\n \"40.87.168.4/30\",\r\n \"40.87.168.40/29\",\r\n
+ \ \"40.87.168.68/31\",\r\n \"40.87.168.208/31\",\r\n \"40.87.169.40/30\",\r\n
+ \ \"40.87.169.58/31\",\r\n \"40.87.169.98/31\",\r\n \"40.87.169.100/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.144/28\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.188/30\",\r\n \"40.87.170.192/31\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.220/30\",\r\n \"40.87.170.224/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.32/30\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.89.64.0/18\",\r\n \"40.90.129.96/27\",\r\n \"40.90.137.32/27\",\r\n
+ \ \"40.90.146.192/27\",\r\n \"40.91.12.0/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.96.46.0/24\",\r\n \"40.96.55.0/24\",\r\n
+ \ \"40.126.10.0/25\",\r\n \"40.126.21.0/24\",\r\n \"52.108.116.0/24\",\r\n
+ \ \"52.138.64.0/20\",\r\n \"52.138.88.0/21\",\r\n \"52.143.212.0/23\",\r\n
+ \ \"52.147.128.0/19\",\r\n \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n
+ \ \"52.225.136.48/28\",\r\n \"52.225.144.0/20\",\r\n \"52.225.160.0/19\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\",\r\n \"52.245.45.144/28\",\r\n \"52.245.46.32/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.253.150.0/23\",\r\n
+ \ \"52.253.152.0/23\",\r\n \"52.253.224.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"198.180.97.0/24\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:16::/64\",\r\n \"2603:1030:401:59::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:8e::/64\",\r\n \"2603:1030:401:92::/63\",\r\n
+ \ \"2603:1030:401:a6::/64\",\r\n \"2603:1030:401:121::/64\",\r\n
+ \ \"2603:1030:401:122::/63\",\r\n \"2603:1030:401:136::/63\",\r\n
+ \ \"2603:1030:401:138::/64\",\r\n \"2603:1030:401:13c::/62\",\r\n
+ \ \"2603:1030:401:140::/63\",\r\n \"2603:1030:401:142::/64\",\r\n
+ \ \"2603:1030:401:146::/63\",\r\n \"2603:1030:401:148::/63\",\r\n
+ \ \"2603:1030:401:156::/63\",\r\n \"2603:1030:401:158::/64\",\r\n
+ \ \"2603:1030:401:168::/63\",\r\n \"2603:1030:401:16d::/64\",\r\n
+ \ \"2603:1030:401:16e::/63\",\r\n \"2603:1030:401:170::/61\",\r\n
+ \ \"2603:1030:401:178::/62\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40d::/60\",\r\n \"2603:1036:903:1::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:240a::/48\",\r\n
+ \ \"2603:1036:2500:4::/64\",\r\n \"2603:1036:3000:20::/59\",\r\n
+ \ \"2603:1037:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.germanyn\",\r\n \"id\": \"AzureCloud.germanyn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.212.64/26\",\r\n \"20.38.115.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.84.0/23\",\r\n \"20.52.72.0/21\",\r\n \"20.52.80.32/27\",\r\n
+ \ \"20.135.56.0/23\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"40.82.72.0/22\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.128.240/28\",\r\n \"40.119.96.0/22\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.198.0/24\",\r\n \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n
+ \ \"51.116.200.0/21\",\r\n \"51.116.208.0/20\",\r\n \"52.108.76.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.109.102.0/23\",\r\n \"52.111.254.0/24\",\r\n
+ \ \"52.114.240.0/24\",\r\n \"52.253.172.0/24\",\r\n \"2603:1020:d00::/47\",\r\n
+ \ \"2603:1020:d03::/48\",\r\n \"2603:1020:d04::/48\",\r\n
+ \ \"2603:1026:2411::/48\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:220::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.germanywc\",\r\n
+ \ \"id\": \"AzureCloud.germanywc\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.224/27\",\r\n \"13.104.145.128/27\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n
+ \ \"13.105.74.96/27\",\r\n \"13.105.74.192/26\",\r\n \"20.38.118.0/24\",\r\n
+ \ \"20.47.27.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.112.0/24\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.80.0/27\",\r\n
+ \ \"20.52.80.64/27\",\r\n \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n
+ \ \"20.52.128.0/17\",\r\n \"20.60.22.0/23\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"40.82.68.0/22\",\r\n \"40.90.129.48/28\",\r\n \"40.90.140.0/27\",\r\n
+ \ \"40.90.147.32/27\",\r\n \"40.90.151.160/27\",\r\n \"40.119.92.0/22\",\r\n
+ \ \"40.126.62.64/26\",\r\n \"40.126.197.0/24\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.224.0/19\",\r\n
+ \ \"52.108.178.0/24\",\r\n \"52.108.199.0/24\",\r\n \"52.109.104.0/23\",\r\n
+ \ \"52.111.255.0/24\",\r\n \"52.114.244.0/24\",\r\n \"52.253.169.0/24\",\r\n
+ \ \"52.253.170.0/23\",\r\n \"2603:1020:c00::/47\",\r\n \"2603:1020:c03::/48\",\r\n
+ \ \"2603:1020:c04::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:2500:14::/64\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japaneast\",\r\n \"id\": \"AzureCloud.japaneast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.128.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.150.128/26\",\r\n \"13.104.221.0/24\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.38.116.0/23\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.43.64.0/19\",\r\n \"20.44.128.0/18\",\r\n
+ \ \"20.46.112.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.47.101.0/24\",\r\n \"20.48.0.0/17\",\r\n \"20.60.172.0/23\",\r\n
+ \ \"20.63.128.0/18\",\r\n \"20.78.0.0/17\",\r\n \"20.78.192.0/18\",\r\n
+ \ \"20.89.0.0/17\",\r\n \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n
+ \ \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.188.0.0/19\",\r\n \"20.190.141.128/25\",\r\n \"20.190.166.0/24\",\r\n
+ \ \"20.191.160.0/19\",\r\n \"20.194.128.0/17\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.100.96.0/21\",\r\n \"23.102.64.0/19\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.206.96/27\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.82.48.0/22\",\r\n \"40.87.200.0/22\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.128.80/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.192/28\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.152.192/27\",\r\n \"40.90.158.0/26\",\r\n \"40.115.128.0/17\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.38.0/24\",\r\n \"52.108.191.0/24\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.109.52.0/22\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.113.78.0/23\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.107.0/24\",\r\n \"52.113.133.0/24\",\r\n
+ \ \"52.114.32.0/22\",\r\n \"52.115.38.0/24\",\r\n \"52.115.47.0/24\",\r\n
+ \ \"52.121.120.0/23\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.136.31.0/24\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.155.96.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.185.128.0/18\",\r\n
+ \ \"52.232.155.0/24\",\r\n \"52.239.144.0/23\",\r\n \"52.243.32.0/19\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.246.160.0/19\",\r\n \"52.253.96.0/19\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"104.41.160.0/19\",\r\n \"104.44.88.224/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.94.112/28\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"138.91.0.0/20\",\r\n \"191.237.240.0/23\",\r\n \"2603:1040:400::/46\",\r\n
+ \ \"2603:1040:404::/48\",\r\n \"2603:1040:406::/48\",\r\n
+ \ \"2603:1040:407::/48\",\r\n \"2603:1046:1402::/48\",\r\n
+ \ \"2603:1046:1500:18::/64\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1047:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japanwest\",\r\n \"id\": \"AzureCloud.japanwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.73.232.0/21\",\r\n
+ \ \"20.39.176.0/21\",\r\n \"20.47.10.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n
+ \ \"20.63.192.0/18\",\r\n \"20.78.128.0/18\",\r\n \"20.135.48.0/23\",\r\n
+ \ \"20.150.10.0/23\",\r\n \"20.157.56.0/24\",\r\n \"20.189.192.0/18\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.165.0/24\",\r\n \"23.98.56.0/24\",\r\n
+ \ \"23.100.104.0/21\",\r\n \"40.74.64.0/18\",\r\n \"40.74.128.0/20\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.80.56.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.81.176.0/20\",\r\n \"40.82.100.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.137.0/27\",\r\n \"40.90.142.208/28\",\r\n \"40.90.156.0/26\",\r\n
+ \ \"40.126.13.0/25\",\r\n \"40.126.37.0/24\",\r\n \"52.108.46.0/23\",\r\n
+ \ \"52.108.86.0/24\",\r\n \"52.109.132.0/22\",\r\n \"52.111.233.0/24\",\r\n
+ \ \"52.112.88.0/22\",\r\n \"52.113.14.0/24\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.100.0/22\",\r\n \"52.115.104.0/23\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.116.0/22\",\r\n
+ \ \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.175.128.0/18\",\r\n \"52.232.158.0/24\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"52.245.92.0/22\",\r\n \"104.44.92.0/27\",\r\n \"104.44.94.128/28\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.214.128.0/19\",\r\n \"104.215.0.0/18\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"191.233.32.0/20\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n
+ \ \"191.238.92.0/23\",\r\n \"191.239.96.0/20\",\r\n \"2603:1040:600::/46\",\r\n
+ \ \"2603:1040:605::/48\",\r\n \"2603:1040:606::/48\",\r\n
+ \ \"2603:1046:1403::/48\",\r\n \"2603:1046:1500:14::/64\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1047:1:a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreacentral\",\r\n
+ \ \"id\": \"AzureCloud.koreacentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.129.192/26\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.105.20.0/25\",\r\n \"13.105.96.112/28\",\r\n \"13.105.97.32/27\",\r\n
+ \ \"13.105.97.64/27\",\r\n \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.44.24.0/21\",\r\n \"20.47.46.0/24\",\r\n
+ \ \"20.47.90.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.150.4.0/23\",\r\n \"20.190.144.128/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.180.0/24\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.80.36.0/22\",\r\n \"40.82.128.0/19\",\r\n
+ \ \"40.90.17.224/27\",\r\n \"40.90.128.176/28\",\r\n \"40.90.131.128/27\",\r\n
+ \ \"40.90.139.128/27\",\r\n \"40.90.156.64/27\",\r\n \"40.126.16.128/25\",\r\n
+ \ \"40.126.20.128/25\",\r\n \"40.126.52.0/24\",\r\n \"52.108.48.0/23\",\r\n
+ \ \"52.108.87.0/24\",\r\n \"52.109.44.0/22\",\r\n \"52.111.194.0/24\",\r\n
+ \ \"52.114.44.0/22\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.141.0.0/18\",\r\n
+ \ \"52.231.0.0/17\",\r\n \"52.232.145.0/24\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.164.192/26\",\r\n \"52.239.190.128/26\",\r\n \"52.245.112.0/22\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1047:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreasouth\",\r\n
+ \ \"id\": \"AzureCloud.koreasouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.157.0/25\",\r\n \"20.39.168.0/21\",\r\n \"20.47.47.0/24\",\r\n
+ \ \"20.47.91.0/24\",\r\n \"20.135.26.0/23\",\r\n \"20.135.30.0/23\",\r\n
+ \ \"20.150.14.0/23\",\r\n \"20.190.148.0/25\",\r\n \"20.190.179.0/24\",\r\n
+ \ \"20.200.128.0/18\",\r\n \"40.79.220.0/24\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.168.0/21\",\r\n \"40.80.224.0/20\",\r\n \"40.89.192.0/19\",\r\n
+ \ \"40.90.131.160/27\",\r\n \"40.90.139.160/27\",\r\n \"40.90.157.32/27\",\r\n
+ \ \"40.126.20.0/25\",\r\n \"40.126.51.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.226.0/23\",\r\n \"52.109.48.0/22\",\r\n \"52.111.234.0/24\",\r\n
+ \ \"52.113.110.0/23\",\r\n \"52.114.48.0/22\",\r\n \"52.147.96.0/19\",\r\n
+ \ \"52.231.128.0/17\",\r\n \"52.232.144.0/24\",\r\n \"52.239.165.0/26\",\r\n
+ \ \"52.239.165.160/27\",\r\n \"52.239.190.192/26\",\r\n \"52.245.100.0/22\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1046:1405::/48\",\r\n \"2603:1046:1500:1c::/64\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1047:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northcentralus\",\r\n
+ \ \"id\": \"AzureCloud.northcentralus\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.26.0/24\",\r\n \"13.105.28.16/28\",\r\n \"13.105.29.0/25\",\r\n
+ \ \"13.105.37.64/26\",\r\n \"13.105.37.128/26\",\r\n \"20.36.96.0/21\",\r\n
+ \ \"20.41.128.0/18\",\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n
+ \ \"20.47.107.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.49.112.0/21\",\r\n
+ \ \"20.51.0.0/21\",\r\n \"20.59.192.0/18\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.66.128.0/17\",\r\n \"20.72.32.0/19\",\r\n
+ \ \"20.80.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.135.12.0/22\",\r\n
+ \ \"20.135.70.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"20.190.135.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"23.96.128.0/17\",\r\n \"23.98.48.0/21\",\r\n \"23.100.72.0/21\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.101.160.0/20\",\r\n \"40.77.131.224/28\",\r\n
+ \ \"40.77.136.96/28\",\r\n \"40.77.137.192/27\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.176.0/24\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.183.0/24\",\r\n \"40.77.188.0/22\",\r\n \"40.77.196.0/24\",\r\n
+ \ \"40.77.198.64/26\",\r\n \"40.77.200.128/25\",\r\n \"40.77.224.0/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.231.0/24\",\r\n \"40.77.234.0/25\",\r\n
+ \ \"40.77.236.32/27\",\r\n \"40.77.236.160/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.248.128/25\",\r\n \"40.77.254.0/26\",\r\n \"40.77.255.192/26\",\r\n
+ \ \"40.78.208.64/28\",\r\n \"40.78.222.0/24\",\r\n \"40.80.184.0/21\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.87.172.0/22\",\r\n \"40.90.19.64/26\",\r\n
+ \ \"40.90.132.96/27\",\r\n \"40.90.133.128/28\",\r\n \"40.90.135.64/26\",\r\n
+ \ \"40.90.140.128/27\",\r\n \"40.90.144.32/27\",\r\n \"40.90.155.192/26\",\r\n
+ \ \"40.91.24.0/22\",\r\n \"40.116.0.0/16\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.28.0/24\",\r\n \"52.108.182.0/24\",\r\n \"52.108.203.0/24\",\r\n
+ \ \"52.109.16.0/22\",\r\n \"52.111.235.0/24\",\r\n \"52.112.94.0/24\",\r\n
+ \ \"52.113.198.0/24\",\r\n \"52.114.168.0/22\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.162.0.0/16\",\r\n \"52.232.156.0/24\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"52.240.128.0/17\",\r\n \"52.245.72.0/22\",\r\n \"52.252.128.0/17\",\r\n
+ \ \"65.52.0.0/19\",\r\n \"65.52.48.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.192.0/19\",\r\n \"65.52.232.0/21\",\r\n
+ \ \"65.52.240.0/21\",\r\n \"65.55.60.176/29\",\r\n \"65.55.105.192/27\",\r\n
+ \ \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n \"65.55.109.0/24\",\r\n
+ \ \"65.55.211.0/27\",\r\n \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n
+ \ \"65.55.213.0/27\",\r\n \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n
+ \ \"104.44.88.128/27\",\r\n \"104.44.91.128/27\",\r\n \"104.44.94.64/28\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n
+ \ \"131.253.12.48/29\",\r\n \"131.253.12.192/28\",\r\n \"131.253.12.248/29\",\r\n
+ \ \"131.253.13.0/28\",\r\n \"131.253.13.32/28\",\r\n \"131.253.14.32/27\",\r\n
+ \ \"131.253.14.160/27\",\r\n \"131.253.14.248/29\",\r\n \"131.253.15.32/27\",\r\n
+ \ \"131.253.15.208/28\",\r\n \"131.253.15.224/27\",\r\n \"131.253.25.0/24\",\r\n
+ \ \"131.253.27.0/24\",\r\n \"131.253.36.128/26\",\r\n \"131.253.38.32/27\",\r\n
+ \ \"131.253.38.224/27\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.192/26\",\r\n \"157.55.24.0/21\",\r\n
+ \ \"157.55.55.0/27\",\r\n \"157.55.55.32/28\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n \"157.55.55.216/29\",\r\n
+ \ \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n \"157.55.106.128/25\",\r\n
+ \ \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n \"157.55.136.0/21\",\r\n
+ \ \"157.55.151.0/28\",\r\n \"157.55.160.0/20\",\r\n \"157.55.208.0/21\",\r\n
+ \ \"157.55.248.0/21\",\r\n \"157.56.8.0/21\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.216.0/26\",\r\n
+ \ \"168.62.96.0/19\",\r\n \"168.62.224.0/19\",\r\n \"191.233.144.0/20\",\r\n
+ \ \"191.236.128.0/18\",\r\n \"199.30.31.0/25\",\r\n \"204.79.180.0/24\",\r\n
+ \ \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n \"207.46.198.128/25\",\r\n
+ \ \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n \"207.46.202.128/28\",\r\n
+ \ \"207.46.205.0/24\",\r\n \"207.68.174.40/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"2603:1030:600::/46\",\r\n \"2603:1030:604::/47\",\r\n
+ \ \"2603:1030:607::/48\",\r\n \"2603:1030:608::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2500:8::/64\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1037:1:60::/59\",\r\n
+ \ \"2a01:111:f100:1000::/62\",\r\n \"2a01:111:f100:1004::/63\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northeurope\",\r\n
+ \ \"id\": \"AzureCloud.northeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.128.0/17\",\r\n \"13.70.192.0/18\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.94.64.0/18\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.105.18.0/26\",\r\n \"13.105.21.0/24\",\r\n
+ \ \"13.105.28.48/28\",\r\n \"13.105.37.192/26\",\r\n \"13.105.60.192/26\",\r\n
+ \ \"13.105.67.0/25\",\r\n \"13.105.96.128/25\",\r\n \"20.38.64.0/19\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.47.111.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n \"20.54.0.0/17\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n \"20.60.144.0/23\",\r\n
+ \ \"20.67.128.0/17\",\r\n \"20.82.128.0/17\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n \"20.150.104.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.159.0/24\",\r\n \"20.191.0.0/18\",\r\n
+ \ \"23.100.48.0/20\",\r\n \"23.100.128.0/18\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.102.0.0/18\",\r\n \"40.67.224.0/19\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.192.0/19\",\r\n \"40.77.133.0/24\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.80/28\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.174.0/24\",\r\n \"40.77.175.160/27\",\r\n \"40.77.182.96/27\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.229.0/24\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.176/28\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.78.211.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.87.128.0/19\",\r\n \"40.87.188.0/22\",\r\n \"40.90.17.192/27\",\r\n
+ \ \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n \"40.90.31.128/25\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.129.192/27\",\r\n \"40.90.130.224/28\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.136.176/28\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.140.64/27\",\r\n \"40.90.141.96/27\",\r\n \"40.90.141.128/27\",\r\n
+ \ \"40.90.145.0/27\",\r\n \"40.90.145.224/27\",\r\n \"40.90.147.96/27\",\r\n
+ \ \"40.90.148.160/28\",\r\n \"40.90.149.128/25\",\r\n \"40.90.153.128/25\",\r\n
+ \ \"40.91.20.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.112.36.0/25\",\r\n
+ \ \"40.112.37.64/26\",\r\n \"40.112.64.0/19\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.115.96.0/19\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.31.0/24\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.104.64.0/18\",\r\n \"51.104.128.0/18\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.196.0/24\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.109.76.0/22\",\r\n \"52.111.236.0/24\",\r\n \"52.112.191.0/24\",\r\n
+ \ \"52.112.229.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.236.0/24\",\r\n
+ \ \"52.113.40.0/21\",\r\n \"52.113.48.0/20\",\r\n \"52.113.112.0/20\",\r\n
+ \ \"52.113.136.0/21\",\r\n \"52.113.205.0/24\",\r\n \"52.114.76.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.120.0/22\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.233.0/24\",\r\n \"52.114.248.0/22\",\r\n \"52.115.16.0/21\",\r\n
+ \ \"52.115.24.0/22\",\r\n \"52.120.136.0/21\",\r\n \"52.120.192.0/20\",\r\n
+ \ \"52.121.16.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.125.138.0/23\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.142.64.0/18\",\r\n \"52.143.195.0/24\",\r\n
+ \ \"52.143.209.0/24\",\r\n \"52.146.128.0/17\",\r\n \"52.155.64.0/19\",\r\n
+ \ \"52.155.128.0/17\",\r\n \"52.156.192.0/18\",\r\n \"52.158.0.0/17\",\r\n
+ \ \"52.164.0.0/16\",\r\n \"52.169.0.0/16\",\r\n \"52.178.128.0/17\",\r\n
+ \ \"52.232.148.0/24\",\r\n \"52.236.0.0/17\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"65.52.64.0/20\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.192.0/18\",\r\n \"104.44.88.64/27\",\r\n \"104.44.91.64/27\",\r\n
+ \ \"104.44.92.192/27\",\r\n \"104.44.94.32/28\",\r\n \"104.45.80.0/20\",\r\n
+ \ \"104.45.96.0/19\",\r\n \"104.46.8.0/21\",\r\n \"104.46.64.0/19\",\r\n
+ \ \"104.47.218.0/23\",\r\n \"131.253.40.80/28\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.135.128.0/17\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"157.55.3.0/24\",\r\n \"157.55.10.160/29\",\r\n \"157.55.10.176/28\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.107.0/24\",\r\n \"157.55.204.128/25\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.63.32.0/19\",\r\n
+ \ \"168.63.64.0/20\",\r\n \"168.63.80.0/21\",\r\n \"168.63.92.0/22\",\r\n
+ \ \"191.232.138.0/23\",\r\n \"191.235.128.0/18\",\r\n \"191.235.192.0/22\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.255.0/24\",\r\n \"191.237.192.0/23\",\r\n
+ \ \"191.237.194.0/24\",\r\n \"191.237.196.0/24\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.239.208.0/20\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n \"2603:1020:4::/48\",\r\n
+ \ \"2603:1020:5::/48\",\r\n \"2603:1026:2404::/48\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.norwaye\",\r\n \"id\": \"AzureCloud.norwaye\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.32/27\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.38.120.0/24\",\r\n \"20.47.48.0/24\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\",\r\n
+ \ \"20.157.2.0/24\",\r\n \"20.190.185.0/24\",\r\n \"40.82.84.0/22\",\r\n
+ \ \"40.119.104.0/22\",\r\n \"40.126.57.0/24\",\r\n \"40.126.200.0/24\",\r\n
+ \ \"51.13.0.0/17\",\r\n \"51.107.208.0/20\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.208.0/21\",\r\n \"51.120.232.0/21\",\r\n \"51.120.240.0/20\",\r\n
+ \ \"52.108.77.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.109.86.0/23\",\r\n
+ \ \"52.111.197.0/24\",\r\n \"52.114.234.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1026:240e::/48\",\r\n \"2603:1026:2500:28::/64\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1027:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.norwayw\",\r\n
+ \ \"id\": \"AzureCloud.norwayw\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.153.48/28\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.155.0/27\",\r\n \"13.104.217.128/25\",\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.135.58.0/23\",\r\n \"20.150.0.0/24\",\r\n
+ \ \"20.150.56.0/24\",\r\n \"20.157.3.0/24\",\r\n \"20.190.186.0/24\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.126.58.0/24\",\r\n \"40.126.201.0/24\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"52.108.177.0/24\",\r\n
+ \ \"52.108.198.0/24\",\r\n \"52.109.144.0/23\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.114.238.0/24\",\r\n \"52.253.167.0/24\",\r\n \"2603:1020:f00::/47\",\r\n
+ \ \"2603:1020:f03::/48\",\r\n \"2603:1020:f04::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:2500:10::/64\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1027:1:80::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricanorth\",\r\n
+ \ \"id\": \"AzureCloud.southafricanorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.192/27\",\r\n \"13.105.27.224/27\",\r\n \"20.38.114.128/25\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.47.50.0/24\",\r\n \"20.47.92.0/24\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.87.0.0/18\",\r\n \"20.135.78.0/23\",\r\n
+ \ \"20.135.80.0/22\",\r\n \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.190.190.0/26\",\r\n \"40.79.203.0/24\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.120.0/22\",\r\n \"40.90.19.0/27\",\r\n
+ \ \"40.90.128.144/28\",\r\n \"40.90.130.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.143.128/27\",\r\n \"40.90.151.64/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.120.16.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.127.0.0/19\",\r\n \"52.108.54.0/23\",\r\n
+ \ \"52.108.90.0/24\",\r\n \"52.109.150.0/23\",\r\n \"52.111.237.0/24\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.224.0/24\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.239.232.0/25\",\r\n
+ \ \"102.37.0.0/20\",\r\n \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.72.0/21\",\r\n
+ \ \"102.37.96.0/19\",\r\n \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n
+ \ \"102.37.192.0/18\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1007:200::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricawest\",\r\n
+ \ \"id\": \"AzureCloud.southafricawest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.160/27\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.45.136.0/21\",\r\n \"20.47.51.0/24\",\r\n \"20.47.93.0/24\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.135.32.0/23\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"40.78.209.0/24\",\r\n \"40.82.64.0/22\",\r\n
+ \ \"40.90.17.0/27\",\r\n \"40.90.128.96/28\",\r\n \"40.90.152.224/27\",\r\n
+ \ \"40.117.0.0/19\",\r\n \"40.119.68.0/22\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"52.108.187.0/24\",\r\n \"52.108.220.0/23\",\r\n \"52.109.152.0/23\",\r\n
+ \ \"52.111.238.0/24\",\r\n \"52.114.228.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.239.232.128/25\",\r\n \"102.37.26.0/27\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.80.0/21\",\r\n \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n
+ \ \"102.133.96.0/20\",\r\n \"102.133.112.0/28\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200:20::/59\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southcentralus\",\r\n \"id\": \"AzureCloud.southcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.65.0.0/16\",\r\n
+ \ \"13.66.0.0/17\",\r\n \"13.73.240.0/20\",\r\n \"13.84.0.0/15\",\r\n
+ \ \"13.104.144.64/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.217.0/25\",\r\n
+ \ \"13.104.220.128/25\",\r\n \"13.105.23.0/26\",\r\n \"13.105.25.0/24\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.66.192/26\",\r\n \"20.38.104.0/23\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.120.0/21\",\r\n \"20.47.0.0/24\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.29.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.100.0/24\",\r\n \"20.49.88.0/21\",\r\n \"20.60.48.0/22\",\r\n
+ \ \"20.60.64.0/22\",\r\n \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n
+ \ \"20.60.160.0/23\",\r\n \"20.64.0.0/17\",\r\n \"20.65.128.0/17\",\r\n
+ \ \"20.88.192.0/18\",\r\n \"20.135.8.0/22\",\r\n \"20.135.216.0/22\",\r\n
+ \ \"20.135.220.0/23\",\r\n \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n
+ \ \"20.150.70.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n
+ \ \"20.150.94.0/24\",\r\n \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n
+ \ \"20.188.64.0/19\",\r\n \"20.189.0.0/18\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"23.98.128.0/17\",\r\n \"23.100.120.0/21\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.102.128.0/18\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n
+ \ \"40.77.131.128/26\",\r\n \"40.77.172.0/24\",\r\n \"40.77.199.0/25\",\r\n
+ \ \"40.77.225.0/24\",\r\n \"40.78.214.0/24\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.207.80/28\",\r\n \"40.79.207.128/25\",\r\n
+ \ \"40.80.192.0/19\",\r\n \"40.84.128.0/17\",\r\n \"40.86.128.0/19\",\r\n
+ \ \"40.87.176.0/25\",\r\n \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n
+ \ \"40.87.176.174/31\",\r\n \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n
+ \ \"40.87.176.216/29\",\r\n \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n
+ \ \"40.87.176.240/28\",\r\n \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n
+ \ \"40.87.177.64/27\",\r\n \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n
+ \ \"40.87.177.120/31\",\r\n \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n
+ \ \"40.87.177.144/29\",\r\n \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n
+ \ \"40.87.177.160/27\",\r\n \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n
+ \ \"40.87.177.212/30\",\r\n \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n
+ \ \"40.87.178.0/26\",\r\n \"40.87.178.64/29\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.18.64/26\",\r\n \"40.90.27.64/26\",\r\n \"40.90.27.128/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.30.160/27\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.133.96/28\",\r\n \"40.90.135.128/25\",\r\n
+ \ \"40.90.136.160/28\",\r\n \"40.90.145.160/27\",\r\n \"40.90.148.0/26\",\r\n
+ \ \"40.90.152.160/27\",\r\n \"40.90.155.0/26\",\r\n \"40.91.16.0/22\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.119.0.0/18\",\r\n \"40.124.0.0/16\",\r\n
+ \ \"40.126.0.0/24\",\r\n \"40.126.29.0/24\",\r\n \"52.101.11.0/24\",\r\n
+ \ \"52.101.12.0/22\",\r\n \"52.102.132.0/24\",\r\n \"52.103.6.0/24\",\r\n
+ \ \"52.103.132.0/24\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.248.0/21\",\r\n \"52.109.20.0/22\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.112.24.0/21\",\r\n \"52.112.117.0/24\",\r\n
+ \ \"52.113.160.0/19\",\r\n \"52.113.206.0/24\",\r\n \"52.114.144.0/22\",\r\n
+ \ \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.152.0/22\",\r\n \"52.121.0.0/21\",\r\n
+ \ \"52.123.3.0/24\",\r\n \"52.125.137.0/24\",\r\n \"52.141.64.0/18\",\r\n
+ \ \"52.152.0.0/17\",\r\n \"52.153.64.0/18\",\r\n \"52.153.192.0/18\",\r\n
+ \ \"52.171.0.0/16\",\r\n \"52.183.192.0/18\",\r\n \"52.185.192.0/18\",\r\n
+ \ \"52.189.128.0/18\",\r\n \"52.232.159.0/24\",\r\n \"52.239.158.0/23\",\r\n
+ \ \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n
+ \ \"52.239.200.0/23\",\r\n \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.248.0.0/17\",\r\n \"52.249.0.0/18\",\r\n
+ \ \"52.253.0.0/18\",\r\n \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"65.52.32.0/21\",\r\n \"65.54.55.160/27\",\r\n
+ \ \"65.54.55.224/27\",\r\n \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n
+ \ \"70.37.160.0/21\",\r\n \"104.44.89.0/27\",\r\n \"104.44.89.64/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.94.160/27\",\r\n \"104.44.128.0/18\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.210.128.0/19\",\r\n \"104.210.176.0/20\",\r\n
+ \ \"104.210.192.0/19\",\r\n \"104.214.0.0/17\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"131.253.40.64/28\",\r\n \"157.55.51.224/28\",\r\n \"157.55.80.0/21\",\r\n
+ \ \"157.55.103.32/27\",\r\n \"157.55.153.224/28\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"168.62.128.0/19\",\r\n \"191.238.144.0/20\",\r\n \"191.238.160.0/19\",\r\n
+ \ \"191.238.224.0/19\",\r\n \"2603:1030:800::/48\",\r\n \"2603:1030:802::/47\",\r\n
+ \ \"2603:1030:804::/58\",\r\n \"2603:1030:804:40::/60\",\r\n
+ \ \"2603:1030:804:53::/64\",\r\n \"2603:1030:804:54::/64\",\r\n
+ \ \"2603:1030:804:5b::/64\",\r\n \"2603:1030:804:5c::/62\",\r\n
+ \ \"2603:1030:804:60::/62\",\r\n \"2603:1030:804:67::/64\",\r\n
+ \ \"2603:1030:804:68::/61\",\r\n \"2603:1030:804:70::/60\",\r\n
+ \ \"2603:1030:804:80::/59\",\r\n \"2603:1030:804:a0::/62\",\r\n
+ \ \"2603:1030:804:a4::/64\",\r\n \"2603:1030:804:a6::/63\",\r\n
+ \ \"2603:1030:804:a8::/61\",\r\n \"2603:1030:804:b0::/62\",\r\n
+ \ \"2603:1030:804:b4::/64\",\r\n \"2603:1030:804:b6::/63\",\r\n
+ \ \"2603:1030:804:b8::/61\",\r\n \"2603:1030:804:c0::/61\",\r\n
+ \ \"2603:1030:804:c8::/62\",\r\n \"2603:1030:804:cc::/63\",\r\n
+ \ \"2603:1030:804:d2::/63\",\r\n \"2603:1030:804:d4::/62\",\r\n
+ \ \"2603:1030:804:d8::/61\",\r\n \"2603:1030:804:e0::/59\",\r\n
+ \ \"2603:1030:804:100::/61\",\r\n \"2603:1030:804:108::/62\",\r\n
+ \ \"2603:1030:805::/48\",\r\n \"2603:1030:806::/48\",\r\n
+ \ \"2603:1030:807::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2500:24::/64\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1037:1:140::/59\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f403:c10c::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:f90c::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southeastasia\",\r\n \"id\": \"AzureCloud.southeastasia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.0.0/17\",\r\n
+ \ \"13.76.0.0/16\",\r\n \"13.104.149.0/26\",\r\n \"13.104.153.0/27\",\r\n
+ \ \"13.104.153.32/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.192/26\",\r\n
+ \ \"13.104.154.0/25\",\r\n \"13.104.213.128/25\",\r\n \"20.43.128.0/18\",\r\n
+ \ \"20.44.192.0/18\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.98.0/24\",\r\n \"20.60.136.0/24\",\r\n
+ \ \"20.60.138.0/23\",\r\n \"20.135.84.0/22\",\r\n \"20.135.88.0/23\",\r\n
+ \ \"20.150.17.128/25\",\r\n \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.184.0.0/18\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.140.0/25\",\r\n \"20.190.163.0/24\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n \"20.197.64.0/18\",\r\n
+ \ \"20.198.128.0/17\",\r\n \"23.97.48.0/20\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.101.16.0/20\",\r\n \"40.65.128.0/18\",\r\n
+ \ \"40.78.223.0/24\",\r\n \"40.78.232.0/21\",\r\n \"40.79.206.32/27\",\r\n
+ \ \"40.82.28.0/22\",\r\n \"40.87.196.0/22\",\r\n \"40.90.133.192/26\",\r\n
+ \ \"40.90.134.0/26\",\r\n \"40.90.137.64/27\",\r\n \"40.90.138.96/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.224/27\",\r\n \"40.90.154.128/26\",\r\n
+ \ \"40.90.160.0/19\",\r\n \"40.119.192.0/18\",\r\n \"40.126.12.0/25\",\r\n
+ \ \"40.126.35.0/24\",\r\n \"52.108.68.0/23\",\r\n \"52.108.91.0/24\",\r\n
+ \ \"52.108.184.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.236.0/22\",\r\n \"52.109.124.0/22\",\r\n \"52.111.240.0/24\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.131.0/24\",\r\n
+ \ \"52.114.8.0/21\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.80.0/22\",\r\n \"52.114.216.0/22\",\r\n \"52.115.32.0/22\",\r\n
+ \ \"52.115.36.0/23\",\r\n \"52.115.97.0/24\",\r\n \"52.120.144.0/21\",\r\n
+ \ \"52.120.156.0/24\",\r\n \"52.121.128.0/20\",\r\n \"52.121.144.0/21\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.139.192.0/18\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.210.0/24\",\r\n \"52.148.64.0/18\",\r\n \"52.163.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.237.64.0/18\",\r\n \"52.239.129.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n \"52.245.80.0/22\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"104.43.0.0/17\",\r\n \"104.44.89.32/27\",\r\n
+ \ \"104.44.90.128/27\",\r\n \"104.44.92.32/27\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.95.192/28\",\r\n \"104.44.95.224/28\",\r\n \"104.215.128.0/17\",\r\n
+ \ \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n \"137.116.128.0/19\",\r\n
+ \ \"138.91.32.0/20\",\r\n \"168.63.90.0/24\",\r\n \"168.63.91.0/26\",\r\n
+ \ \"168.63.160.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.238.64.0/23\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.224.0/20\",\r\n \"2603:1040::/47\",\r\n
+ \ \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n \"2603:1040:5::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:2000:180::/59\",\r\n \"2603:1047:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southfrance\",\r\n
+ \ \"id\": \"AzureCloud.southfrance\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.39.80.0/20\",\r\n \"20.47.28.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.150.19.0/24\",\r\n \"20.190.147.128/25\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"40.79.176.0/21\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.96.0/20\",\r\n \"40.82.224.0/20\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.136.192/27\",\r\n \"40.90.147.224/27\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.50.0/24\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.138.128.0/19\",\r\n \"51.138.160.0/21\",\r\n \"52.108.188.0/24\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.109.72.0/22\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.114.108.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.128.0/18\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\",\r\n
+ \ \"52.245.120.0/22\",\r\n \"2603:1020:900::/47\",\r\n \"2603:1020:902::/48\",\r\n
+ \ \"2603:1020:904::/48\",\r\n \"2603:1020:905::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:3000:1a0::/59\",\r\n \"2603:1027:1:1a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southindia\",\r\n
+ \ \"id\": \"AzureCloud.southindia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.64.0/18\",\r\n \"13.104.153.128/26\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.41.192.0/18\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.72.0/23\",\r\n \"20.60.10.0/24\",\r\n
+ \ \"20.135.42.0/23\",\r\n \"20.150.24.0/24\",\r\n \"20.190.145.128/25\",\r\n
+ \ \"20.190.174.0/24\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"40.78.192.0/21\",\r\n \"40.79.213.0/24\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.87.216.0/22\",\r\n \"40.90.26.64/26\",\r\n \"40.90.137.160/27\",\r\n
+ \ \"40.126.17.128/25\",\r\n \"40.126.46.0/24\",\r\n \"52.108.192.0/24\",\r\n
+ \ \"52.108.230.0/23\",\r\n \"52.109.60.0/22\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.113.15.0/24\",\r\n \"52.114.24.0/22\",\r\n \"52.136.17.0/24\",\r\n
+ \ \"52.140.0.0/18\",\r\n \"52.172.0.0/17\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.188.0/24\",\r\n \"52.245.84.0/22\",\r\n \"104.44.92.160/27\",\r\n
+ \ \"104.44.94.208/28\",\r\n \"104.47.214.0/23\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"2603:1040:c00::/46\",\r\n \"2603:1040:c05::/48\",\r\n
+ \ \"2603:1040:c06::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:2000:60::/59\",\r\n
+ \ \"2603:1047:1:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.switzerlandn\",\r\n \"id\": \"AzureCloud.switzerlandn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.32/27\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"20.47.53.0/24\",\r\n \"20.47.71.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.190.183.0/24\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"40.90.30.128/27\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.119.80.0/22\",\r\n \"40.126.55.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"51.103.128.0/18\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.107.0.0/18\",\r\n \"51.107.64.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.200.0/21\",\r\n \"51.107.240.0/21\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.96.0/24\",\r\n \"52.109.156.0/23\",\r\n \"52.111.202.0/24\",\r\n
+ \ \"52.114.226.0/24\",\r\n \"52.239.251.0/24\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.175.0/24\",\r\n \"52.253.176.0/24\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:3000:60::/59\",\r\n \"2603:1027:1:60::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.switzerlandw\",\r\n
+ \ \"id\": \"AzureCloud.switzerlandw\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.0/27\",\r\n \"13.104.212.0/26\",\r\n
+ \ \"20.47.26.0/24\",\r\n \"20.47.67.0/24\",\r\n \"20.47.103.0/24\",\r\n
+ \ \"20.60.176.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.199.192.0/18\",\r\n
+ \ \"40.90.19.32/27\",\r\n \"40.90.128.192/28\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.195.0/24\",\r\n \"51.103.192.0/27\",\r\n
+ \ \"51.107.96.0/19\",\r\n \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n
+ \ \"51.107.160.0/20\",\r\n \"51.107.192.0/21\",\r\n \"51.107.224.0/20\",\r\n
+ \ \"51.107.248.0/21\",\r\n \"52.108.179.0/24\",\r\n \"52.108.200.0/24\",\r\n
+ \ \"52.109.158.0/23\",\r\n \"52.111.203.0/24\",\r\n \"52.114.230.0/24\",\r\n
+ \ \"52.239.250.0/24\",\r\n \"52.253.166.0/24\",\r\n \"2603:1020:b00::/47\",\r\n
+ \ \"2603:1020:b03::/48\",\r\n \"2603:1020:b04::/48\",\r\n
+ \ \"2603:1026:240c::/48\",\r\n \"2603:1026:2500:20::/64\",\r\n
+ \ \"2603:1026:3000:120::/59\",\r\n \"2603:1027:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaecentral\",\r\n
+ \ \"id\": \"AzureCloud.uaecentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.159.128/26\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.45.64.0/19\",\r\n \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n
+ \ \"20.47.54.0/24\",\r\n \"20.47.94.0/24\",\r\n \"20.135.36.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"40.82.52.0/22\",\r\n \"40.90.16.64/27\",\r\n \"40.90.128.48/28\",\r\n
+ \ \"40.90.151.224/27\",\r\n \"40.119.76.0/22\",\r\n \"40.120.0.0/20\",\r\n
+ \ \"40.125.0.0/19\",\r\n \"40.126.60.0/24\",\r\n \"40.126.193.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"52.108.183.0/24\",\r\n \"52.108.204.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.111.247.0/24\",\r\n \"52.114.232.0/24\",\r\n
+ \ \"52.143.221.0/24\",\r\n \"52.239.233.0/25\",\r\n \"2603:1040:b00::/47\",\r\n
+ \ \"2603:1040:b03::/48\",\r\n \"2603:1040:b04::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1047:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaenorth\",\r\n
+ \ \"id\": \"AzureCloud.uaenorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.151.64/26\",\r\n \"13.104.151.128/26\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.64/26\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.136.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.46.32.0/19\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.192.0/21\",\r\n \"20.47.55.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.60.21.0/24\",\r\n \"20.74.128.0/18\",\r\n
+ \ \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n \"20.190.187.0/24\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"40.90.16.96/27\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.119.72.0/22\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.120.64.0/18\",\r\n \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.192.0/24\",\r\n \"52.108.70.0/23\",\r\n
+ \ \"52.108.92.0/24\",\r\n \"52.109.162.0/23\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.112.200.0/22\",\r\n \"52.112.204.0/23\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.121.100.0/22\",\r\n \"52.121.104.0/23\",\r\n
+ \ \"52.143.202.0/24\",\r\n \"52.143.222.0/23\",\r\n \"52.239.233.128/25\",\r\n
+ \ \"65.52.248.0/21\",\r\n \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1047:1:100::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uknorth\",\r\n \"id\": \"AzureCloud.uknorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.87.64.0/18\",\r\n
+ \ \"20.39.144.0/20\",\r\n \"20.45.160.0/19\",\r\n \"20.150.46.0/24\",\r\n
+ \ \"20.190.143.128/25\",\r\n \"20.190.170.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.80.16.0/22\",\r\n \"40.81.96.0/20\",\r\n \"40.90.130.112/28\",\r\n
+ \ \"40.90.143.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.126.15.128/25\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"51.11.64.0/19\",\r\n \"51.105.80.0/21\",\r\n
+ \ \"51.141.129.32/27\",\r\n \"51.142.128.0/17\",\r\n \"52.108.137.0/24\",\r\n
+ \ \"52.109.36.0/22\",\r\n \"52.136.19.0/24\",\r\n \"2603:1020:300::/47\",\r\n
+ \ \"2603:1020:302::/48\",\r\n \"2603:1020:304::/48\",\r\n
+ \ \"2603:1020:305::/48\",\r\n \"2603:1026:240f::/48\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:3000:1c0::/59\",\r\n
+ \ \"2603:1027:1:1c0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uksouth\",\r\n \"id\": \"AzureCloud.uksouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.129.128/26\",\r\n
+ \ \"13.104.145.160/27\",\r\n \"13.104.146.64/26\",\r\n \"13.104.159.0/25\",\r\n
+ \ \"20.38.106.0/23\",\r\n \"20.39.208.0/20\",\r\n \"20.39.224.0/21\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.47.68.0/24\",\r\n
+ \ \"20.47.114.0/24\",\r\n \"20.49.128.0/17\",\r\n \"20.50.96.0/19\",\r\n
+ \ \"20.58.0.0/18\",\r\n \"20.60.17.0/24\",\r\n \"20.60.166.0/23\",\r\n
+ \ \"20.68.0.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n
+ \ \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n \"20.150.41.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.190.143.0/25\",\r\n \"20.190.169.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.80.0.0/22\",\r\n \"40.81.128.0/19\",\r\n
+ \ \"40.82.88.0/22\",\r\n \"40.90.17.32/27\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.128.112/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.131.64/27\",\r\n \"40.90.139.64/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.153.64/27\",\r\n \"40.90.154.0/26\",\r\n \"40.120.32.0/19\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.41.0/24\",\r\n \"51.11.0.0/18\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.104.0.0/19\",\r\n \"51.104.192.0/18\",\r\n
+ \ \"51.105.0.0/18\",\r\n \"51.105.64.0/20\",\r\n \"51.132.0.0/18\",\r\n
+ \ \"51.132.128.0/17\",\r\n \"51.140.0.0/17\",\r\n \"51.140.128.0/18\",\r\n
+ \ \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n \"51.141.130.0/25\",\r\n
+ \ \"51.141.135.0/24\",\r\n \"51.141.192.0/18\",\r\n \"51.143.128.0/18\",\r\n
+ \ \"51.143.208.0/20\",\r\n \"51.143.224.0/19\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"52.108.50.0/23\",\r\n \"52.108.88.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.109.28.0/22\",\r\n \"52.111.242.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.240.0/20\",\r\n \"52.113.128.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.224.0/19\",\r\n
+ \ \"52.114.88.0/22\",\r\n \"52.120.160.0/19\",\r\n \"52.120.240.0/20\",\r\n
+ \ \"52.136.21.0/24\",\r\n \"52.151.64.0/18\",\r\n \"52.239.187.0/25\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.245.64.0/22\",\r\n \"52.253.162.0/23\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"2603:1020:700::/47\",\r\n \"2603:1020:702::/48\",\r\n
+ \ \"2603:1020:704::/48\",\r\n \"2603:1020:705::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2500:18::/64\",\r\n
+ \ \"2603:1026:3000:e0::/59\",\r\n \"2603:1027:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uksouth2\",\r\n
+ \ \"id\": \"AzureCloud.uksouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.0.0/18\",\r\n \"20.150.27.0/24\",\r\n \"20.190.172.0/24\",\r\n
+ \ \"40.79.201.0/24\",\r\n \"40.80.12.0/22\",\r\n \"40.81.160.0/20\",\r\n
+ \ \"40.90.130.128/28\",\r\n \"40.90.143.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.126.44.0/24\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.156.0/22\",\r\n \"51.142.0.0/17\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"52.108.138.0/24\",\r\n
+ \ \"52.109.40.0/22\",\r\n \"52.136.18.0/24\",\r\n \"2603:1020:400::/47\",\r\n
+ \ \"2603:1020:402::/48\",\r\n \"2603:1020:404::/48\",\r\n
+ \ \"2603:1020:405::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:3000:40::/59\",\r\n
+ \ \"2603:1027:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.ukwest\",\r\n \"id\": \"AzureCloud.ukwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"20.39.160.0/21\",\r\n
+ \ \"20.40.104.0/21\",\r\n \"20.47.56.0/24\",\r\n \"20.47.82.0/23\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.60.164.0/23\",\r\n \"20.68.64.0/18\",\r\n
+ \ \"20.77.192.0/18\",\r\n \"20.90.0.0/18\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.190.144.0/25\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.81.112.0/20\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.90.28.192/26\",\r\n \"40.90.29.0/26\",\r\n \"40.90.131.96/27\",\r\n
+ \ \"40.90.139.96/27\",\r\n \"40.90.157.192/27\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.43.0/24\",\r\n \"51.11.96.0/19\",\r\n \"51.104.32.0/19\",\r\n
+ \ \"51.132.64.0/18\",\r\n \"51.137.128.0/18\",\r\n \"51.140.192.0/18\",\r\n
+ \ \"51.141.0.0/17\",\r\n \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.128/26\",\r\n \"51.141.134.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"52.108.189.0/24\",\r\n \"52.108.224.0/23\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.111.205.0/24\",\r\n \"52.112.168.0/22\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.230.0/24\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.92.0/22\",\r\n \"52.136.20.0/24\",\r\n
+ \ \"52.142.128.0/18\",\r\n \"52.239.240.0/24\",\r\n \"104.44.90.0/27\",\r\n
+ \ \"2603:1020:600::/47\",\r\n \"2603:1020:602::/48\",\r\n
+ \ \"2603:1020:604::/48\",\r\n \"2603:1020:605::/48\",\r\n
+ \ \"2603:1026:2407::/48\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1027:1:200::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westcentralus\",\r\n \"id\": \"AzureCloud.westcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.128.0/17\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.215.128/25\",\r\n \"13.104.219.0/25\",\r\n \"20.47.4.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.104.0/24\",\r\n \"20.51.32.0/19\",\r\n
+ \ \"20.55.128.0/18\",\r\n \"20.57.224.0/19\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.60.4.0/24\",\r\n \"20.69.0.0/18\",\r\n \"20.135.72.0/23\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"20.190.136.0/24\",\r\n \"20.190.158.0/24\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.77.128.0/25\",\r\n \"40.77.131.192/27\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.128/25\",\r\n \"40.77.166.0/25\",\r\n
+ \ \"40.77.166.128/28\",\r\n \"40.77.173.0/24\",\r\n \"40.77.175.32/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.185.0/25\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.64/27\",\r\n \"40.77.227.0/24\",\r\n \"40.77.232.0/25\",\r\n
+ \ \"40.77.235.0/24\",\r\n \"40.77.236.96/27\",\r\n \"40.77.246.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.79.205.240/28\",\r\n \"40.79.206.224/27\",\r\n
+ \ \"40.79.207.0/27\",\r\n \"40.90.131.0/27\",\r\n \"40.90.138.192/28\",\r\n
+ \ \"40.90.139.0/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.151.0/26\",\r\n
+ \ \"40.90.151.128/28\",\r\n \"40.90.152.0/25\",\r\n \"40.93.6.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.123.136.0/24\",\r\n \"40.126.8.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"52.101.24.0/22\",\r\n \"52.101.40.0/24\",\r\n
+ \ \"52.102.133.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.108.181.0/24\",\r\n \"52.108.202.0/24\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.111.206.0/24\",\r\n \"52.112.93.0/24\",\r\n \"52.113.207.0/24\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.143.214.0/24\",\r\n \"52.148.0.0/18\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.153.128.0/18\",\r\n \"52.159.0.0/18\",\r\n
+ \ \"52.161.0.0/16\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.245.60.0/22\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"64.4.8.0/24\",\r\n \"64.4.54.0/24\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"104.44.89.96/27\",\r\n \"104.47.224.0/20\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.40.160/28\",\r\n \"157.55.12.128/26\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"207.68.174.48/29\",\r\n \"2603:1030:b00::/47\",\r\n \"2603:1030:b03::/48\",\r\n
+ \ \"2603:1030:b04::/48\",\r\n \"2603:1030:b05::/48\",\r\n
+ \ \"2603:1036:9ff:ffff::/64\",\r\n \"2603:1036:2408::/48\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1037:1:180::/59\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f910::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westeurope\",\r\n
+ \ \"id\": \"AzureCloud.westeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.0.0/17\",\r\n \"13.73.128.0/18\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.80.0.0/15\",\r\n \"13.88.200.0/21\",\r\n \"13.93.0.0/17\",\r\n
+ \ \"13.94.128.0/17\",\r\n \"13.95.0.0/16\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.128/25\",\r\n \"13.104.158.176/28\",\r\n
+ \ \"13.104.209.0/24\",\r\n \"13.104.214.0/25\",\r\n \"13.104.218.128/25\",\r\n
+ \ \"13.105.22.0/24\",\r\n \"13.105.23.128/25\",\r\n \"13.105.28.32/28\",\r\n
+ \ \"13.105.29.128/25\",\r\n \"13.105.60.48/28\",\r\n \"13.105.60.96/27\",\r\n
+ \ \"13.105.60.128/27\",\r\n \"13.105.66.144/28\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.38.200.0/22\",\r\n \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n
+ \ \"20.47.30.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.115.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.50.0.0/18\",\r\n \"20.50.128.0/17\",\r\n
+ \ \"20.54.128.0/17\",\r\n \"20.56.0.0/16\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.67.0.0/17\",\r\n \"20.71.0.0/16\",\r\n
+ \ \"20.73.0.0/16\",\r\n \"20.76.0.0/16\",\r\n \"20.82.0.0/17\",\r\n
+ \ \"20.86.0.0/17\",\r\n \"20.135.24.0/23\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.190.137.0/24\",\r\n \"20.190.160.0/24\",\r\n \"23.97.128.0/17\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.100.0.0/20\",\r\n \"23.101.64.0/20\",\r\n
+ \ \"40.67.192.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.74.0.0/18\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.82.92.0/22\",\r\n \"40.87.184.0/22\",\r\n
+ \ \"40.90.17.64/27\",\r\n \"40.90.18.192/26\",\r\n \"40.90.20.128/25\",\r\n
+ \ \"40.90.21.0/25\",\r\n \"40.90.130.0/27\",\r\n \"40.90.133.0/27\",\r\n
+ \ \"40.90.134.64/26\",\r\n \"40.90.134.128/26\",\r\n \"40.90.138.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.145.192/27\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.128/27\",\r\n \"40.90.150.128/25\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.91.28.0/22\",\r\n \"40.91.192.0/18\",\r\n
+ \ \"40.112.36.128/25\",\r\n \"40.112.37.0/26\",\r\n \"40.112.38.192/26\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.114.128.0/17\",\r\n \"40.115.0.0/18\",\r\n \"40.118.0.0/17\",\r\n
+ \ \"40.119.128.0/19\",\r\n \"40.126.9.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.124.0.0/17\",\r\n
+ \ \"51.124.128.0/18\",\r\n \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.144.0.0/16\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.108.24.0/21\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.80.0/24\",\r\n \"52.108.108.0/23\",\r\n \"52.108.110.0/24\",\r\n
+ \ \"52.109.88.0/22\",\r\n \"52.111.243.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.83.0/24\",\r\n \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n
+ \ \"52.112.110.0/23\",\r\n \"52.112.144.0/20\",\r\n \"52.112.197.0/24\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.233.0/24\",\r\n \"52.112.237.0/24\",\r\n
+ \ \"52.112.238.0/24\",\r\n \"52.113.9.0/24\",\r\n \"52.113.37.0/24\",\r\n
+ \ \"52.113.83.0/24\",\r\n \"52.113.130.0/24\",\r\n \"52.113.144.0/21\",\r\n
+ \ \"52.113.199.0/24\",\r\n \"52.114.64.0/21\",\r\n \"52.114.72.0/22\",\r\n
+ \ \"52.114.116.0/22\",\r\n \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n
+ \ \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n \"52.115.8.0/22\",\r\n
+ \ \"52.120.128.0/21\",\r\n \"52.120.208.0/20\",\r\n \"52.121.24.0/21\",\r\n
+ \ \"52.121.64.0/20\",\r\n \"52.125.140.0/23\",\r\n \"52.136.192.0/18\",\r\n
+ \ \"52.137.0.0/18\",\r\n \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.208.0/24\",\r\n \"52.148.192.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.174.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.147.0/24\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.236.128.0/17\",\r\n \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n
+ \ \"52.239.242.0/23\",\r\n \"52.245.48.0/22\",\r\n \"52.245.124.0/22\",\r\n
+ \ \"65.52.128.0/19\",\r\n \"104.40.128.0/17\",\r\n \"104.44.89.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.93.0/27\",\r\n \"104.44.93.192/27\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.45.0.0/18\",\r\n
+ \ \"104.45.64.0/20\",\r\n \"104.46.32.0/19\",\r\n \"104.47.128.0/18\",\r\n
+ \ \"104.47.216.64/26\",\r\n \"104.214.192.0/18\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.117.128.0/17\",\r\n \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"168.61.56.0/21\",\r\n \"168.63.0.0/19\",\r\n
+ \ \"168.63.96.0/19\",\r\n \"191.233.64.0/18\",\r\n \"191.237.232.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"193.149.80.0/21\",\r\n \"213.199.128.0/20\",\r\n
+ \ \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n \"213.199.180.192/27\",\r\n
+ \ \"213.199.183.0/24\",\r\n \"2603:1020:200::/46\",\r\n \"2603:1020:205::/48\",\r\n
+ \ \"2603:1020:206::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2500:24::/64\",\r\n \"2603:1026:3000:140::/59\",\r\n
+ \ \"2603:1027:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westindia\",\r\n \"id\": \"AzureCloud.westindia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.157.128/25\",\r\n
+ \ \"20.38.128.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.124.0/23\",\r\n \"20.135.44.0/23\",\r\n \"20.150.18.128/25\",\r\n
+ \ \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.176.0/24\",\r\n \"20.192.64.0/19\",\r\n \"40.79.219.0/24\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.87.220.0/22\",\r\n \"40.90.26.0/26\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.126.18.128/25\",\r\n \"40.126.48.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.94.0/24\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.111.244.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.114.28.0/22\",\r\n
+ \ \"52.136.16.0/24\",\r\n \"52.136.32.0/19\",\r\n \"52.140.128.0/18\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.249.64.0/19\",\r\n \"104.44.93.224/27\",\r\n
+ \ \"104.44.95.112/28\",\r\n \"104.47.212.0/23\",\r\n \"104.211.128.0/18\",\r\n
+ \ \"2603:1040:800::/46\",\r\n \"2603:1040:805::/48\",\r\n
+ \ \"2603:1040:806::/48\",\r\n \"2603:1046:1408::/48\",\r\n
+ \ \"2603:1046:1500::/64\",\r\n \"2603:1046:2000:20::/59\",\r\n
+ \ \"2603:1047:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westus\",\r\n \"id\": \"AzureCloud.westus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.73.32.0/19\",\r\n \"13.83.0.0/16\",\r\n \"13.86.128.0/17\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.91.0.0/16\",\r\n \"13.93.128.0/17\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.158.16/28\",\r\n \"13.104.158.64/26\",\r\n \"13.104.208.96/27\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.105.17.64/26\",\r\n
+ \ \"13.105.17.128/26\",\r\n \"13.105.19.128/25\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.97.0/27\",\r\n \"20.43.192.0/18\",\r\n
+ \ \"20.47.2.0/24\",\r\n \"20.47.22.0/23\",\r\n \"20.47.110.0/24\",\r\n
+ \ \"20.47.116.0/24\",\r\n \"20.49.120.0/21\",\r\n \"20.57.192.0/19\",\r\n
+ \ \"20.59.64.0/18\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.66.0.0/17\",\r\n \"20.135.74.0/23\",\r\n \"20.150.34.0/23\",\r\n
+ \ \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.157.32.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.184.128.0/17\",\r\n \"20.189.128.0/18\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.153.0/24\",\r\n \"23.99.0.0/18\",\r\n
+ \ \"23.99.64.0/19\",\r\n \"23.100.32.0/20\",\r\n \"23.101.192.0/20\",\r\n
+ \ \"40.65.0.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.216.0/24\",\r\n \"40.80.152.0/21\",\r\n \"40.81.0.0/20\",\r\n
+ \ \"40.82.248.0/21\",\r\n \"40.83.128.0/17\",\r\n \"40.85.144.0/20\",\r\n
+ \ \"40.86.160.0/19\",\r\n \"40.87.160.0/22\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.18.128/26\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.128.128/28\",\r\n \"40.90.131.192/27\",\r\n
+ \ \"40.90.135.0/26\",\r\n \"40.90.139.192/27\",\r\n \"40.90.146.0/28\",\r\n
+ \ \"40.90.148.128/27\",\r\n \"40.90.153.96/27\",\r\n \"40.90.156.128/26\",\r\n
+ \ \"40.93.0.0/23\",\r\n \"40.112.128.0/17\",\r\n \"40.118.128.0/17\",\r\n
+ \ \"40.125.32.0/19\",\r\n \"40.126.4.0/24\",\r\n \"40.126.25.0/24\",\r\n
+ \ \"52.101.0.0/22\",\r\n \"52.101.16.0/22\",\r\n \"52.101.41.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.103.0.0/24\",\r\n
+ \ \"52.103.2.0/24\",\r\n \"52.103.128.0/24\",\r\n \"52.108.0.0/21\",\r\n
+ \ \"52.108.78.0/24\",\r\n \"52.109.0.0/22\",\r\n \"52.111.245.0/24\",\r\n
+ \ \"52.112.106.0/23\",\r\n \"52.112.114.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.114.152.0/21\",\r\n \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n
+ \ \"52.115.140.0/22\",\r\n \"52.115.144.0/20\",\r\n \"52.120.96.0/19\",\r\n
+ \ \"52.121.36.0/22\",\r\n \"52.123.1.0/24\",\r\n \"52.137.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.155.32.0/19\",\r\n \"52.157.0.0/18\",\r\n
+ \ \"52.159.128.0/17\",\r\n \"52.160.0.0/16\",\r\n \"52.180.0.0/17\",\r\n
+ \ \"52.190.128.0/17\",\r\n \"52.225.0.0/17\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.238.0.0/18\",\r\n \"52.239.0.0/17\",\r\n
+ \ \"52.239.160.0/22\",\r\n \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.241.0.0/16\",\r\n \"52.245.12.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.246.0.0/17\",\r\n \"52.248.128.0/17\",\r\n \"52.250.192.0/18\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"65.52.112.0/20\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.44.88.0/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.92.96/27\",\r\n \"104.44.94.0/28\",\r\n \"104.44.95.128/27\",\r\n
+ \ \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n \"104.209.0.0/18\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"137.116.184.0/21\",\r\n \"137.117.0.0/19\",\r\n
+ \ \"137.135.0.0/18\",\r\n \"138.91.64.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.56.160.0/21\",\r\n \"168.61.0.0/19\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.62.0.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.63.88.0/23\",\r\n
+ \ \"191.236.64.0/18\",\r\n \"191.238.70.0/23\",\r\n \"191.239.0.0/18\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1036:2400::/48\",\r\n
+ \ \"2603:1036:2500:10::/64\",\r\n \"2603:1036:3000:1c0::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2a01:111:f100:3000::/52\",\r\n
+ \ \"2a01:111:f403:c000::/64\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:f800::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westus2\",\r\n
+ \ \"id\": \"AzureCloud.westus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.128.0/17\",\r\n \"13.77.128.0/18\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.145.0/26\",\r\n \"13.104.208.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.128/26\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.38.99.0/24\",\r\n \"20.42.128.0/18\",\r\n
+ \ \"20.47.62.0/23\",\r\n \"20.47.120.0/23\",\r\n \"20.51.8.0/21\",\r\n
+ \ \"20.51.64.0/18\",\r\n \"20.57.128.0/18\",\r\n \"20.59.0.0/18\",\r\n
+ \ \"20.60.20.0/24\",\r\n \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.64.128.0/17\",\r\n \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n
+ \ \"20.72.192.0/18\",\r\n \"20.80.128.0/18\",\r\n \"20.83.64.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.135.18.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.68.0/24\",\r\n \"20.150.78.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n \"20.157.50.0/23\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.190.0.0/18\",\r\n \"20.190.133.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.191.64.0/18\",\r\n \"23.98.47.0/24\",\r\n
+ \ \"23.102.192.0/21\",\r\n \"23.102.203.0/24\",\r\n \"23.103.64.32/27\",\r\n
+ \ \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n \"40.64.64.0/18\",\r\n
+ \ \"40.64.128.0/21\",\r\n \"40.65.64.0/18\",\r\n \"40.77.136.0/28\",\r\n
+ \ \"40.77.136.64/28\",\r\n \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n
+ \ \"40.77.162.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.169.0/24\",\r\n
+ \ \"40.77.175.64/27\",\r\n \"40.77.180.0/23\",\r\n \"40.77.182.64/27\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.128/26\",\r\n \"40.77.200.0/25\",\r\n \"40.77.202.0/24\",\r\n
+ \ \"40.77.224.96/27\",\r\n \"40.77.230.0/24\",\r\n \"40.77.232.128/25\",\r\n
+ \ \"40.77.234.224/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.240.128/25\",\r\n
+ \ \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.249.0/24\",\r\n \"40.77.250.0/24\",\r\n \"40.77.254.128/25\",\r\n
+ \ \"40.78.208.32/30\",\r\n \"40.78.217.0/24\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.206.128/27\",\r\n \"40.80.160.0/24\",\r\n \"40.82.36.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.90.16.192/26\",\r\n \"40.90.131.32/27\",\r\n
+ \ \"40.90.132.48/28\",\r\n \"40.90.136.224/27\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.139.32/27\",\r\n \"40.90.146.32/27\",\r\n \"40.90.148.192/27\",\r\n
+ \ \"40.90.153.0/26\",\r\n \"40.90.192.0/19\",\r\n \"40.91.0.0/22\",\r\n
+ \ \"40.91.64.0/18\",\r\n \"40.91.160.0/19\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n \"40.125.64.0/18\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.26.0/24\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.28.0/22\",\r\n
+ \ \"52.101.42.0/24\",\r\n \"52.102.134.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.72.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.109.24.0/22\",\r\n \"52.111.246.0/24\",\r\n \"52.112.105.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.115.0/24\",\r\n \"52.114.148.0/22\",\r\n
+ \ \"52.115.55.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.137.64.0/18\",\r\n \"52.143.64.0/18\",\r\n \"52.143.197.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.148.128.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.151.0.0/18\",\r\n \"52.156.64.0/18\",\r\n \"52.156.128.0/19\",\r\n
+ \ \"52.158.224.0/19\",\r\n \"52.175.192.0/18\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.191.128.0/18\",\r\n \"52.229.0.0/18\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.233.64.0/18\",\r\n \"52.235.64.0/18\",\r\n \"52.239.148.128/25\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.245.52.0/22\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.192.0/18\",\r\n \"52.250.0.0/17\",\r\n \"65.52.111.0/24\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.112/28\",\r\n \"65.55.51.0/24\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.106.192/28\",\r\n \"65.55.106.240/28\",\r\n
+ \ \"65.55.107.0/28\",\r\n \"65.55.107.96/27\",\r\n \"65.55.110.0/24\",\r\n
+ \ \"65.55.120.0/24\",\r\n \"65.55.207.0/24\",\r\n \"65.55.209.0/25\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.219.64/26\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n \"104.44.89.128/27\",\r\n
+ \ \"104.44.89.192/27\",\r\n \"104.44.95.0/28\",\r\n \"131.253.12.160/28\",\r\n
+ \ \"131.253.12.228/30\",\r\n \"131.253.13.24/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.192/29\",\r\n
+ \ \"131.253.15.192/28\",\r\n \"131.253.35.128/26\",\r\n \"131.253.40.48/29\",\r\n
+ \ \"131.253.40.128/27\",\r\n \"131.253.41.0/24\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"157.55.2.128/26\",\r\n \"157.55.12.64/26\",\r\n
+ \ \"157.55.13.64/26\",\r\n \"157.55.39.0/24\",\r\n \"157.55.55.228/30\",\r\n
+ \ \"157.55.55.232/29\",\r\n \"157.55.55.240/28\",\r\n \"157.55.106.0/26\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.56.2.0/25\",\r\n \"157.56.3.128/25\",\r\n
+ \ \"157.56.19.224/27\",\r\n \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n
+ \ \"157.56.80.0/25\",\r\n \"168.62.64.0/19\",\r\n \"199.30.24.0/23\",\r\n
+ \ \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n \"199.30.27.160/27\",\r\n
+ \ \"199.30.31.192/26\",\r\n \"207.46.13.0/24\",\r\n \"207.68.174.192/28\",\r\n
+ \ \"209.240.212.0/23\",\r\n \"2603:1030:c00::/48\",\r\n \"2603:1030:c02::/47\",\r\n
+ \ \"2603:1030:c04::/48\",\r\n \"2603:1030:c05::/48\",\r\n
+ \ \"2603:1030:c06::/48\",\r\n \"2603:1030:c07::/48\",\r\n
+ \ \"2603:1030:d00::/48\",\r\n \"2603:1030:e01:2::/64\",\r\n
+ \ \"2603:1036:903::/64\",\r\n \"2603:1036:d20::/64\",\r\n
+ \ \"2603:1036:2409::/48\",\r\n \"2603:1036:2500:14::/64\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1037:1:c0::/59\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c804::/62\",\r\n
+ \ \"2a01:111:f403:d004::/62\",\r\n \"2a01:111:f403:d804::/62\",\r\n
+ \ \"2a01:111:f403:f804::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch\",\r\n \"id\": \"AzureCognitiveSearch\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.32.141/32\",\r\n \"13.83.22.45/32\",\r\n \"13.83.22.74/32\",\r\n
+ \ \"13.83.22.119/32\",\r\n \"13.86.5.51/32\",\r\n \"20.36.120.128/26\",\r\n
+ \ \"20.37.64.128/26\",\r\n \"20.37.156.128/26\",\r\n \"20.37.193.192/26\",\r\n
+ \ \"20.37.224.128/26\",\r\n \"20.38.84.0/26\",\r\n \"20.38.136.128/26\",\r\n
+ \ \"20.39.8.192/26\",\r\n \"20.40.123.36/32\",\r\n \"20.40.123.39/32\",\r\n
+ \ \"20.40.123.46/32\",\r\n \"20.40.123.72/32\",\r\n \"20.41.4.128/26\",\r\n
+ \ \"20.41.65.64/26\",\r\n \"20.41.193.64/26\",\r\n \"20.42.4.128/26\",\r\n
+ \ \"20.42.24.90/32\",\r\n \"20.42.29.212/32\",\r\n \"20.42.30.105/32\",\r\n
+ \ \"20.42.34.190/32\",\r\n \"20.42.35.204/32\",\r\n \"20.42.129.192/26\",\r\n
+ \ \"20.42.225.192/26\",\r\n \"20.43.41.64/26\",\r\n \"20.43.65.64/26\",\r\n
+ \ \"20.43.130.128/26\",\r\n \"20.44.74.182/32\",\r\n \"20.44.76.53/32\",\r\n
+ \ \"20.44.76.61/32\",\r\n \"20.44.76.86/32\",\r\n \"20.45.0.49/32\",\r\n
+ \ \"20.45.2.122/32\",\r\n \"20.45.112.128/26\",\r\n \"20.45.192.128/26\",\r\n
+ \ \"20.72.17.0/26\",\r\n \"20.150.160.128/26\",\r\n \"20.185.110.199/32\",\r\n
+ \ \"20.189.106.128/26\",\r\n \"20.189.129.94/32\",\r\n \"20.192.161.0/26\",\r\n
+ \ \"20.192.225.64/26\",\r\n \"23.100.238.27/32\",\r\n \"23.100.238.34/31\",\r\n
+ \ \"23.100.238.37/32\",\r\n \"40.65.173.157/32\",\r\n \"40.65.175.212/32\",\r\n
+ \ \"40.65.175.228/32\",\r\n \"40.66.56.233/32\",\r\n \"40.67.48.128/26\",\r\n
+ \ \"40.74.18.154/32\",\r\n \"40.74.30.0/26\",\r\n \"40.80.57.64/26\",\r\n
+ \ \"40.80.169.64/26\",\r\n \"40.80.186.192/26\",\r\n \"40.80.216.231/32\",\r\n
+ \ \"40.80.217.38/32\",\r\n \"40.80.219.46/32\",\r\n \"40.81.9.100/32\",\r\n
+ \ \"40.81.9.131/32\",\r\n \"40.81.9.203/32\",\r\n \"40.81.9.209/32\",\r\n
+ \ \"40.81.9.213/32\",\r\n \"40.81.9.221/32\",\r\n \"40.81.10.36/32\",\r\n
+ \ \"40.81.12.133/32\",\r\n \"40.81.15.8/32\",\r\n \"40.81.15.39/32\",\r\n
+ \ \"40.81.29.152/32\",\r\n \"40.81.188.130/32\",\r\n \"40.81.191.58/32\",\r\n
+ \ \"40.81.253.154/32\",\r\n \"40.82.155.65/32\",\r\n \"40.82.253.0/26\",\r\n
+ \ \"40.89.17.64/26\",\r\n \"40.90.190.180/32\",\r\n \"40.90.240.17/32\",\r\n
+ \ \"40.91.93.84/32\",\r\n \"40.91.127.116/32\",\r\n \"40.91.127.241/32\",\r\n
+ \ \"40.119.11.0/26\",\r\n \"51.12.41.64/26\",\r\n \"51.12.193.64/26\",\r\n
+ \ \"51.104.25.64/26\",\r\n \"51.105.80.128/26\",\r\n \"51.105.88.128/26\",\r\n
+ \ \"51.107.48.128/26\",\r\n \"51.107.144.128/26\",\r\n \"51.116.48.96/28\",\r\n
+ \ \"51.116.144.96/28\",\r\n \"51.120.40.128/26\",\r\n \"51.120.224.128/26\",\r\n
+ \ \"51.132.43.66/32\",\r\n \"51.137.161.64/26\",\r\n \"51.143.104.54/32\",\r\n
+ \ \"51.143.104.90/32\",\r\n \"51.143.192.128/26\",\r\n \"51.145.124.157/32\",\r\n
+ \ \"51.145.124.158/32\",\r\n \"51.145.176.249/32\",\r\n \"51.145.177.212/32\",\r\n
+ \ \"51.145.178.138/32\",\r\n \"51.145.178.140/32\",\r\n \"52.136.48.128/26\",\r\n
+ \ \"52.137.24.236/32\",\r\n \"52.137.26.114/32\",\r\n \"52.137.26.155/32\",\r\n
+ \ \"52.137.26.198/32\",\r\n \"52.137.27.49/32\",\r\n \"52.137.56.115/32\",\r\n
+ \ \"52.137.60.208/32\",\r\n \"52.139.0.47/32\",\r\n \"52.139.0.49/32\",\r\n
+ \ \"52.140.105.64/26\",\r\n \"52.140.233.105/32\",\r\n \"52.150.139.0/26\",\r\n
+ \ \"52.151.235.150/32\",\r\n \"52.151.235.242/32\",\r\n \"52.151.235.244/32\",\r\n
+ \ \"52.155.216.245/32\",\r\n \"52.155.217.84/32\",\r\n \"52.155.221.242/32\",\r\n
+ \ \"52.155.221.250/32\",\r\n \"52.155.222.35/32\",\r\n \"52.155.222.56/32\",\r\n
+ \ \"52.157.22.233/32\",\r\n \"52.157.231.64/32\",\r\n \"52.158.28.181/32\",\r\n
+ \ \"52.158.30.241/32\",\r\n \"52.158.208.11/32\",\r\n \"52.184.80.221/32\",\r\n
+ \ \"52.185.224.13/32\",\r\n \"52.185.224.38/32\",\r\n \"52.188.217.235/32\",\r\n
+ \ \"52.188.218.228/32\",\r\n \"52.188.218.239/32\",\r\n \"52.228.81.64/26\",\r\n
+ \ \"52.242.214.45/32\",\r\n \"52.253.133.74/32\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"102.133.128.33/32\",\r\n \"102.133.217.128/26\",\r\n
+ \ \"104.45.64.0/32\",\r\n \"104.45.64.147/32\",\r\n \"104.45.64.224/32\",\r\n
+ \ \"104.45.65.30/32\",\r\n \"104.45.65.89/32\",\r\n \"191.233.9.0/26\",\r\n
+ \ \"191.233.26.156/32\",\r\n \"191.235.225.64/26\",\r\n \"2603:1000:4::180/121\",\r\n
+ \ \"2603:1000:104:1::180/121\",\r\n \"2603:1010:6:1::180/121\",\r\n
+ \ \"2603:1010:101::180/121\",\r\n \"2603:1010:304::180/121\",\r\n
+ \ \"2603:1010:404::180/121\",\r\n \"2603:1020:5:1::180/121\",\r\n
+ \ \"2603:1020:206:1::180/121\",\r\n \"2603:1020:305::180/121\",\r\n
+ \ \"2603:1020:405::180/121\",\r\n \"2603:1020:605::180/121\",\r\n
+ \ \"2603:1020:705:1::180/121\",\r\n \"2603:1020:805:1::180/121\",\r\n
+ \ \"2603:1020:905::180/121\",\r\n \"2603:1020:a04:1::180/121\",\r\n
+ \ \"2603:1020:b04::180/121\",\r\n \"2603:1020:c04:1::180/121\",\r\n
+ \ \"2603:1020:d04::180/121\",\r\n \"2603:1020:e04:1::180/121\",\r\n
+ \ \"2603:1020:f04::180/121\",\r\n \"2603:1020:1004::180/121\",\r\n
+ \ \"2603:1020:1104::180/121\",\r\n \"2603:1030:f:1::180/121\",\r\n
+ \ \"2603:1030:10:1::180/121\",\r\n \"2603:1030:104:1::180/121\",\r\n
+ \ \"2603:1030:107::180/121\",\r\n \"2603:1030:210:1::180/121\",\r\n
+ \ \"2603:1030:40b:1::180/121\",\r\n \"2603:1030:40c:1::180/121\",\r\n
+ \ \"2603:1030:504:1::180/121\",\r\n \"2603:1030:608::180/121\",\r\n
+ \ \"2603:1030:807:1::180/121\",\r\n \"2603:1030:a07::180/121\",\r\n
+ \ \"2603:1030:b04::180/121\",\r\n \"2603:1030:c06:1::180/121\",\r\n
+ \ \"2603:1030:f05:1::180/121\",\r\n \"2603:1030:1005::180/121\",\r\n
+ \ \"2603:1040:5:1::180/121\",\r\n \"2603:1040:207::180/121\",\r\n
+ \ \"2603:1040:407:1::180/121\",\r\n \"2603:1040:606::180/121\",\r\n
+ \ \"2603:1040:806::180/121\",\r\n \"2603:1040:904:1::180/121\",\r\n
+ \ \"2603:1040:a06:1::180/121\",\r\n \"2603:1040:b04::180/121\",\r\n
+ \ \"2603:1040:c06::180/121\",\r\n \"2603:1040:d04::180/121\",\r\n
+ \ \"2603:1040:f05:1::180/121\",\r\n \"2603:1040:1104::180/121\",\r\n
+ \ \"2603:1050:6:1::180/121\",\r\n \"2603:1050:403::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.128/26\",\r\n \"2603:1010:304::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.128/26\",\r\n \"2603:1010:404::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.CentralIndia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.81.253.154/32\",\r\n \"52.140.105.64/26\",\r\n
+ \ \"2603:1040:a06:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"id\":
+ \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.128/26\",\r\n \"2603:1030:f:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastAsia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.189.106.128/26\",\r\n \"40.81.29.152/32\",\r\n
+ \ \"52.184.80.221/32\",\r\n \"2603:1040:207::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.8.192/26\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"2603:1030:40b:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.KoreaCentral\",\r\n \"id\":
+ \"AzureCognitiveSearch.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.65.64/26\",\r\n \"40.82.155.65/32\",\r\n \"2603:1040:f05:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.128/26\",\r\n \"2603:1020:b04::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.UKNorth\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.80.128/26\",\r\n \"2603:1020:305::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors\",\r\n
+ \ \"id\": \"AzureConnectors\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.86.57/32\",\r\n \"13.66.140.128/28\",\r\n
+ \ \"13.66.145.96/27\",\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n
+ \ \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n \"13.69.227.208/28\",\r\n
+ \ \"13.69.231.192/27\",\r\n \"13.70.72.192/28\",\r\n \"13.70.78.224/27\",\r\n
+ \ \"13.70.136.174/32\",\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"13.71.153.19/32\",\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"13.71.195.32/28\",\r\n \"13.71.199.192/27\",\r\n \"13.72.243.10/32\",\r\n
+ \ \"13.73.21.230/32\",\r\n \"13.73.244.224/27\",\r\n \"13.75.36.64/28\",\r\n
+ \ \"13.75.110.131/32\",\r\n \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"13.78.132.82/32\",\r\n \"13.86.223.32/27\",\r\n
+ \ \"13.87.56.224/28\",\r\n \"13.87.122.224/28\",\r\n \"13.89.171.80/28\",\r\n
+ \ \"13.89.178.64/27\",\r\n \"13.93.148.62/32\",\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n \"20.37.74.192/28\",\r\n
+ \ \"20.38.128.224/27\",\r\n \"20.43.123.0/27\",\r\n \"20.44.3.0/28\",\r\n
+ \ \"20.44.29.64/27\",\r\n \"20.53.0.0/27\",\r\n \"20.72.27.0/26\",\r\n
+ \ \"20.150.170.240/28\",\r\n \"20.150.173.64/26\",\r\n \"20.192.32.64/26\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"20.193.206.192/26\",\r\n \"23.100.208.0/27\",\r\n
+ \ \"40.67.58.240/28\",\r\n \"40.67.60.224/27\",\r\n \"40.69.106.240/28\",\r\n
+ \ \"40.69.111.0/27\",\r\n \"40.70.146.208/28\",\r\n \"40.70.151.96/27\",\r\n
+ \ \"40.71.11.80/28\",\r\n \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n
+ \ \"40.71.249.205/32\",\r\n \"40.74.100.224/28\",\r\n \"40.74.146.64/28\",\r\n
+ \ \"40.78.194.240/28\",\r\n \"40.78.202.96/28\",\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.79.178.240/28\",\r\n \"40.79.180.224/27\",\r\n
+ \ \"40.79.189.64/27\",\r\n \"40.80.180.64/27\",\r\n \"40.89.135.2/32\",\r\n
+ \ \"40.89.186.239/32\",\r\n \"40.91.208.65/32\",\r\n \"40.112.195.87/32\",\r\n
+ \ \"40.112.243.160/28\",\r\n \"40.114.40.132/32\",\r\n \"40.120.8.0/27\",\r\n
+ \ \"40.120.64.64/27\",\r\n \"51.12.98.240/28\",\r\n \"51.12.102.0/26\",\r\n
+ \ \"51.12.202.240/28\",\r\n \"51.12.205.192/26\",\r\n \"51.103.142.22/32\",\r\n
+ \ \"51.105.77.96/27\",\r\n \"51.107.59.16/28\",\r\n \"51.107.60.224/27\",\r\n
+ \ \"51.107.86.217/32\",\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"51.116.59.16/28\",\r\n \"51.116.60.192/27\",\r\n \"51.116.155.80/28\",\r\n
+ \ \"51.116.158.96/27\",\r\n \"51.116.211.212/32\",\r\n \"51.116.236.78/32\",\r\n
+ \ \"51.120.98.224/28\",\r\n \"51.120.100.192/27\",\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"51.140.61.124/32\",\r\n \"51.140.74.150/32\",\r\n
+ \ \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n \"51.140.211.0/28\",\r\n
+ \ \"51.140.212.224/27\",\r\n \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n
+ \ \"51.141.124.13/32\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"52.138.92.192/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.161.101.204/32\",\r\n \"52.161.102.22/32\",\r\n \"52.162.107.160/28\",\r\n
+ \ \"52.162.111.192/27\",\r\n \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n
+ \ \"52.166.78.89/32\",\r\n \"52.169.28.181/32\",\r\n \"52.171.130.92/32\",\r\n
+ \ \"52.172.211.12/32\",\r\n \"52.172.212.129/32\",\r\n \"52.173.241.27/32\",\r\n
+ \ \"52.173.245.164/32\",\r\n \"52.174.88.118/32\",\r\n \"52.175.23.169/32\",\r\n
+ \ \"52.178.150.68/32\",\r\n \"52.183.78.157/32\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"52.191.164.250/32\",\r\n \"52.225.129.144/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"65.52.250.208/28\",\r\n \"94.245.91.93/32\",\r\n \"102.37.64.0/27\",\r\n
+ \ \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n \"102.133.155.0/28\",\r\n
+ \ \"102.133.168.167/32\",\r\n \"102.133.253.0/27\",\r\n \"104.41.59.51/32\",\r\n
+ \ \"104.42.122.49/32\",\r\n \"104.209.247.23/32\",\r\n \"104.211.81.192/28\",\r\n
+ \ \"104.211.146.224/28\",\r\n \"104.211.189.124/32\",\r\n
+ \ \"104.211.189.218/32\",\r\n \"104.214.19.48/28\",\r\n \"104.214.70.191/32\",\r\n
+ \ \"104.214.164.0/27\",\r\n \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n
+ \ \"168.61.140.0/27\",\r\n \"168.61.143.64/26\",\r\n \"191.232.191.157/32\",\r\n
+ \ \"191.233.51.0/26\",\r\n \"191.233.203.192/28\",\r\n \"191.233.207.160/27\",\r\n
+ \ \"2603:1000:4:402::180/122\",\r\n \"2603:1000:104:402::180/122\",\r\n
+ \ \"2603:1010:6:402::180/122\",\r\n \"2603:1010:101:402::180/122\",\r\n
+ \ \"2603:1010:304:402::180/122\",\r\n \"2603:1010:404:402::180/122\",\r\n
+ \ \"2603:1020:5:402::180/122\",\r\n \"2603:1020:206:402::180/122\",\r\n
+ \ \"2603:1020:305:402::180/122\",\r\n \"2603:1020:405:402::180/122\",\r\n
+ \ \"2603:1020:605:402::180/122\",\r\n \"2603:1020:705:402::180/122\",\r\n
+ \ \"2603:1020:805:402::180/122\",\r\n \"2603:1020:905:402::180/122\",\r\n
+ \ \"2603:1020:a04:402::180/122\",\r\n \"2603:1020:b04:402::180/122\",\r\n
+ \ \"2603:1020:c04:402::180/122\",\r\n \"2603:1020:d04:402::180/122\",\r\n
+ \ \"2603:1020:e04:402::180/122\",\r\n \"2603:1020:f04:402::180/122\",\r\n
+ \ \"2603:1020:1004:c02::80/122\",\r\n \"2603:1020:1104:400::180/122\",\r\n
+ \ \"2603:1030:f:400::980/122\",\r\n \"2603:1030:10:402::180/122\",\r\n
+ \ \"2603:1030:104:402::180/122\",\r\n \"2603:1030:107:400::100/122\",\r\n
+ \ \"2603:1030:210:402::180/122\",\r\n \"2603:1030:40b:400::980/122\",\r\n
+ \ \"2603:1030:40c:402::180/122\",\r\n \"2603:1030:504:c02::80/122\",\r\n
+ \ \"2603:1030:608:402::180/122\",\r\n \"2603:1030:807:402::180/122\",\r\n
+ \ \"2603:1030:a07:402::100/122\",\r\n \"2603:1030:b04:402::180/122\",\r\n
+ \ \"2603:1030:c06:400::980/122\",\r\n \"2603:1030:f05:402::180/122\",\r\n
+ \ \"2603:1030:1005:402::180/122\",\r\n \"2603:1040:5:402::180/122\",\r\n
+ \ \"2603:1040:207:402::180/122\",\r\n \"2603:1040:407:402::180/122\",\r\n
+ \ \"2603:1040:606:402::180/122\",\r\n \"2603:1040:806:402::180/122\",\r\n
+ \ \"2603:1040:904:402::180/122\",\r\n \"2603:1040:a06:402::180/122\",\r\n
+ \ \"2603:1040:b04:402::180/122\",\r\n \"2603:1040:c06:402::180/122\",\r\n
+ \ \"2603:1040:d04:c02::80/122\",\r\n \"2603:1040:f05:402::180/122\",\r\n
+ \ \"2603:1040:1104:400::180/122\",\r\n \"2603:1050:6:402::180/122\",\r\n
+ \ \"2603:1050:403:400::2c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaCentral\",\r\n \"id\":
+ \"AzureConnectors.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.53.0.0/27\",\r\n \"2603:1010:304:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureConnectors.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n
+ \ \"2603:1010:404:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaEast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.192/28\",\r\n
+ \ \"13.70.78.224/27\",\r\n \"13.72.243.10/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"2603:1010:6:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.136.174/32\",\r\n
+ \ \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"2603:1010:101:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.BrazilSouth\",\r\n \"id\":
+ \"AzureConnectors.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"104.41.59.51/32\",\r\n
+ \ \"191.232.191.157/32\",\r\n \"191.233.203.192/28\",\r\n
+ \ \"191.233.207.160/27\",\r\n \"2603:1050:6:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"2603:1030:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaEast\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.240/28\",\r\n \"40.69.111.0/27\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"2603:1030:1005:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralIndia\",\r\n
+ \ \"id\": \"AzureConnectors.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.123.0/27\",\r\n \"52.172.211.12/32\",\r\n
+ \ \"52.172.212.129/32\",\r\n \"104.211.81.192/28\",\r\n \"2603:1040:a06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.80/28\",\r\n \"13.89.178.64/27\",\r\n
+ \ \"52.173.241.27/32\",\r\n \"52.173.245.164/32\",\r\n \"2603:1030:10:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureConnectors\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.202.96/28\",\r\n \"168.61.140.0/27\",\r\n
+ \ \"168.61.143.64/26\",\r\n \"2603:1030:f:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.64/28\",\r\n \"13.75.110.131/32\",\r\n
+ \ \"52.175.23.169/32\",\r\n \"104.214.164.0/27\",\r\n \"2603:1040:207:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.80/28\",\r\n
+ \ \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n \"40.71.249.205/32\",\r\n
+ \ \"40.114.40.132/32\",\r\n \"2603:1030:210:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.208/28\",\r\n
+ \ \"40.70.151.96/27\",\r\n \"52.225.129.144/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"104.209.247.23/32\",\r\n \"2603:1030:40c:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.64/28\",\r\n \"52.138.92.192/27\",\r\n
+ \ \"2603:1030:40b:400::980/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceCentral\",\r\n \"id\":
+ \"AzureConnectors.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.89.135.2/32\",\r\n \"40.89.186.239/32\",\r\n
+ \ \"2603:1020:805:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceSouth\",\r\n \"id\":
+ \"AzureConnectors.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.240/28\",\r\n
+ \ \"40.79.180.224/27\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"2603:1020:905:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.GermanyNorth\",\r\n \"id\":
+ \"AzureConnectors.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.116.59.16/28\",\r\n
+ \ \"51.116.60.192/27\",\r\n \"51.116.211.212/32\",\r\n \"2603:1020:d04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureConnectors.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.80/28\",\r\n \"51.116.158.96/27\",\r\n
+ \ \"51.116.236.78/32\",\r\n \"2603:1020:c04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanEast\",\r\n
+ \ \"id\": \"AzureConnectors.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.153.19/32\",\r\n \"13.73.21.230/32\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"40.79.189.64/27\",\r\n \"2603:1040:407:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanWest\",\r\n
+ \ \"id\": \"AzureConnectors.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.224/28\",\r\n \"40.80.180.64/27\",\r\n
+ \ \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n \"2603:1040:606:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.29.64/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"2603:1040:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaSouth\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.107.160/28\",\r\n \"52.162.111.192/27\",\r\n
+ \ \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n \"2603:1030:608:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthEurope\",\r\n
+ \ \"id\": \"AzureConnectors.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.208/28\",\r\n \"13.69.231.192/27\",\r\n
+ \ \"52.169.28.181/32\",\r\n \"52.178.150.68/32\",\r\n \"94.245.91.93/32\",\r\n
+ \ \"2603:1020:5:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.NorwayEast\",\r\n \"id\":
+ \"AzureConnectors.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.224/28\",\r\n
+ \ \"51.120.100.192/27\",\r\n \"2603:1020:e04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorwayWest\",\r\n
+ \ \"id\": \"AzureConnectors.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"2603:1020:f04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.0/28\",\r\n \"102.133.168.167/32\",\r\n
+ \ \"102.133.253.0/27\",\r\n \"2603:1000:104:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.0/27\",\r\n \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n
+ \ \"2603:1000:4:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.SouthCentralUS\",\r\n \"id\":
+ \"AzureConnectors.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.65.86.57/32\",\r\n
+ \ \"13.73.244.224/27\",\r\n \"52.171.130.92/32\",\r\n \"104.214.19.48/28\",\r\n
+ \ \"104.214.70.191/32\",\r\n \"2603:1030:807:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"2603:1040:5:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthIndia\",\r\n
+ \ \"id\": \"AzureConnectors.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"40.78.194.240/28\",\r\n \"2603:1040:c06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.103.142.22/32\",\r\n \"51.107.59.16/28\",\r\n
+ \ \"51.107.60.224/27\",\r\n \"51.107.86.217/32\",\r\n \"2603:1020:a04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"2603:1020:b04:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UAECentral\",\r\n \"id\":
+ \"AzureConnectors.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.37.74.192/28\",\r\n
+ \ \"40.120.8.0/27\",\r\n \"2603:1040:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.UAENorth\",\r\n
+ \ \"id\": \"AzureConnectors.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.64/27\",\r\n \"65.52.250.208/28\",\r\n
+ \ \"2603:1040:904:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKSouth\",\r\n \"id\": \"AzureConnectors.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.77.96/27\",\r\n \"51.140.61.124/32\",\r\n
+ \ \"51.140.74.150/32\",\r\n \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n
+ \ \"2603:1020:705:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKWest\",\r\n \"id\": \"AzureConnectors.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.211.0/28\",\r\n \"51.140.212.224/27\",\r\n
+ \ \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n \"51.141.124.13/32\",\r\n
+ \ \"2603:1020:605:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestCentralUS\",\r\n \"id\":
+ \"AzureConnectors.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.32/28\",\r\n
+ \ \"13.71.199.192/27\",\r\n \"13.78.132.82/32\",\r\n \"52.161.101.204/32\",\r\n
+ \ \"52.161.102.22/32\",\r\n \"2603:1030:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.WestEurope\",\r\n
+ \ \"id\": \"AzureConnectors.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n
+ \ \"40.91.208.65/32\",\r\n \"52.166.78.89/32\",\r\n \"52.174.88.118/32\",\r\n
+ \ \"2603:1020:206:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestIndia\",\r\n \"id\": \"AzureConnectors.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.224/27\",\r\n \"104.211.146.224/28\",\r\n
+ \ \"104.211.189.124/32\",\r\n \"104.211.189.218/32\",\r\n
+ \ \"2603:1040:806:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS\",\r\n \"id\": \"AzureConnectors.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.223.32/27\",\r\n \"13.93.148.62/32\",\r\n
+ \ \"40.112.195.87/32\",\r\n \"40.112.243.160/28\",\r\n \"104.42.122.49/32\",\r\n
+ \ \"2603:1030:a07:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS2\",\r\n \"id\": \"AzureConnectors.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.128/28\",\r\n \"13.66.145.96/27\",\r\n
+ \ \"52.183.78.157/32\",\r\n \"52.191.164.250/32\",\r\n \"2603:1030:c06:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry\",\r\n
+ \ \"id\": \"AzureContainerRegistry\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n
+ \ \"13.66.147.0/25\",\r\n \"13.66.148.0/24\",\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/24\",\r\n \"13.69.64.88/29\",\r\n \"13.69.106.80/29\",\r\n
+ \ \"13.69.110.0/24\",\r\n \"13.69.227.88/29\",\r\n \"13.69.236.0/23\",\r\n
+ \ \"13.69.238.0/24\",\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n
+ \ \"13.71.170.56/29\",\r\n \"13.71.176.0/24\",\r\n \"13.71.194.224/29\",\r\n
+ \ \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n \"13.73.255.64/26\",\r\n
+ \ \"13.74.107.80/29\",\r\n \"13.74.110.0/24\",\r\n \"13.75.36.0/29\",\r\n
+ \ \"13.77.50.80/29\",\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"13.87.56.96/29\",\r\n \"13.87.122.96/29\",\r\n \"13.89.170.216/29\",\r\n
+ \ \"13.89.175.0/25\",\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"20.38.132.192/26\",\r\n \"20.38.140.192/26\",\r\n \"20.38.146.144/29\",\r\n
+ \ \"20.38.149.0/25\",\r\n \"20.39.15.128/25\",\r\n \"20.40.224.64/26\",\r\n
+ \ \"20.41.69.128/26\",\r\n \"20.41.199.192/26\",\r\n \"20.41.208.64/26\",\r\n
+ \ \"20.42.66.0/23\",\r\n \"20.43.46.64/26\",\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.44.2.24/29\",\r\n \"20.44.11.0/25\",\r\n
+ \ \"20.44.11.128/26\",\r\n \"20.44.12.0/25\",\r\n \"20.44.19.64/26\",\r\n
+ \ \"20.44.22.0/23\",\r\n \"20.44.26.144/29\",\r\n \"20.44.29.128/25\",\r\n
+ \ \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n \"20.45.199.128/25\",\r\n
+ \ \"20.48.192.128/26\",\r\n \"20.49.82.16/29\",\r\n \"20.49.90.16/29\",\r\n
+ \ \"20.49.92.0/24\",\r\n \"20.49.93.0/26\",\r\n \"20.49.102.128/26\",\r\n
+ \ \"20.49.115.0/26\",\r\n \"20.49.127.0/26\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.52.72.128/26\",\r\n \"20.52.88.64/26\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"20.62.128.0/26\",\r\n \"20.65.0.0/24\",\r\n
+ \ \"20.72.18.128/26\",\r\n \"20.72.26.128/26\",\r\n \"20.72.30.0/25\",\r\n
+ \ \"20.135.26.64/26\",\r\n \"20.150.170.24/29\",\r\n \"20.150.173.128/26\",\r\n
+ \ \"20.150.174.0/25\",\r\n \"20.150.178.144/29\",\r\n \"20.150.181.192/26\",\r\n
+ \ \"20.150.182.128/25\",\r\n \"20.150.186.144/29\",\r\n \"20.150.189.192/26\",\r\n
+ \ \"20.150.190.128/25\",\r\n \"20.150.225.64/26\",\r\n \"20.150.241.0/26\",\r\n
+ \ \"20.187.196.64/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"20.189.224.0/26\",\r\n \"20.191.160.128/26\",\r\n \"20.192.32.0/26\",\r\n
+ \ \"20.192.33.0/26\",\r\n \"20.192.33.128/25\",\r\n \"20.192.50.0/26\",\r\n
+ \ \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n \"20.192.101.128/26\",\r\n
+ \ \"20.192.234.24/29\",\r\n \"20.193.192.128/26\",\r\n \"20.193.202.16/29\",\r\n
+ \ \"20.193.204.128/26\",\r\n \"20.193.205.0/25\",\r\n \"20.193.206.64/26\",\r\n
+ \ \"20.194.66.16/29\",\r\n \"20.194.68.0/25\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"20.194.128.0/25\",\r\n \"20.195.64.128/26\",\r\n \"20.195.136.0/24\",\r\n
+ \ \"20.195.137.0/25\",\r\n \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n
+ \ \"23.98.87.0/25\",\r\n \"23.98.112.0/25\",\r\n \"40.64.112.0/24\",\r\n
+ \ \"40.64.135.128/25\",\r\n \"40.67.58.24/29\",\r\n \"40.67.121.0/25\",\r\n
+ \ \"40.67.122.128/26\",\r\n \"40.69.106.80/29\",\r\n \"40.69.110.0/25\",\r\n
+ \ \"40.69.116.0/26\",\r\n \"40.70.146.88/29\",\r\n \"40.70.150.0/24\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.74.100.160/29\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.78.194.80/29\",\r\n
+ \ \"40.78.196.192/26\",\r\n \"40.78.202.72/29\",\r\n \"40.78.226.208/29\",\r\n
+ \ \"40.78.231.0/24\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n \"40.79.138.32/29\",\r\n
+ \ \"40.79.141.0/25\",\r\n \"40.79.146.32/29\",\r\n \"40.79.148.128/25\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n
+ \ \"40.79.166.0/25\",\r\n \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n
+ \ \"40.79.174.0/25\",\r\n \"40.79.178.80/29\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"40.89.120.0/24\",\r\n \"40.89.121.0/25\",\r\n \"40.112.242.160/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/25\",\r\n \"40.124.64.0/25\",\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.12.25.64/26\",\r\n \"51.12.32.0/25\",\r\n \"51.12.98.24/29\",\r\n
+ \ \"51.12.100.192/26\",\r\n \"51.12.101.0/26\",\r\n \"51.12.199.192/26\",\r\n
+ \ \"51.12.202.24/29\",\r\n \"51.12.205.128/26\",\r\n \"51.12.206.128/25\",\r\n
+ \ \"51.12.226.144/29\",\r\n \"51.12.234.144/29\",\r\n \"51.13.0.0/25\",\r\n
+ \ \"51.13.1.64/26\",\r\n \"51.13.128.128/25\",\r\n \"51.13.129.0/26\",\r\n
+ \ \"51.104.9.128/25\",\r\n \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n
+ \ \"51.105.70.0/25\",\r\n \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n
+ \ \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n \"51.107.58.24/29\",\r\n
+ \ \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n \"51.107.154.24/29\",\r\n
+ \ \"51.107.192.0/26\",\r\n \"51.116.58.24/29\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/25\",\r\n \"51.116.242.144/29\",\r\n \"51.116.250.144/29\",\r\n
+ \ \"51.120.98.160/29\",\r\n \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n
+ \ \"51.120.110.0/25\",\r\n \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n
+ \ \"51.120.218.24/29\",\r\n \"51.120.234.0/26\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.138.160.128/26\",\r\n \"51.140.146.200/29\",\r\n
+ \ \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n \"51.143.208.0/26\",\r\n
+ \ \"52.138.90.32/29\",\r\n \"52.138.93.0/24\",\r\n \"52.138.226.80/29\",\r\n
+ \ \"52.138.230.0/23\",\r\n \"52.140.110.192/26\",\r\n \"52.146.131.128/26\",\r\n
+ \ \"52.150.156.64/26\",\r\n \"52.162.104.192/26\",\r\n \"52.162.106.160/29\",\r\n
+ \ \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n \"52.168.112.192/26\",\r\n
+ \ \"52.168.114.0/23\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.182.138.208/29\",\r\n \"52.182.142.0/24\",\r\n \"52.231.18.56/29\",\r\n
+ \ \"52.231.20.128/26\",\r\n \"52.231.146.192/29\",\r\n \"52.236.186.80/29\",\r\n
+ \ \"52.236.191.0/24\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"65.52.248.192/26\",\r\n \"65.52.250.16/29\",\r\n \"102.37.65.64/26\",\r\n
+ \ \"102.37.72.128/26\",\r\n \"102.133.26.24/29\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"104.208.16.80/29\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"104.211.81.136/29\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"104.214.18.184/29\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"168.61.140.128/25\",\r\n \"168.61.141.0/24\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"191.233.50.16/29\",\r\n \"191.233.54.64/26\",\r\n
+ \ \"191.233.54.128/26\",\r\n \"191.233.203.136/29\",\r\n
+ \ \"191.233.205.192/26\",\r\n \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n
+ \ \"191.234.149.64/26\",\r\n \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n
+ \ \"191.234.157.192/26\",\r\n \"2603:1000:4:402::90/125\",\r\n
+ \ \"2603:1000:4:402::340/122\",\r\n \"2603:1000:4:402::580/122\",\r\n
+ \ \"2603:1000:104:402::90/125\",\r\n \"2603:1000:104:402::340/122\",\r\n
+ \ \"2603:1000:104:802::90/125\",\r\n \"2603:1000:104:802::2c0/122\",\r\n
+ \ \"2603:1000:104:c02::90/125\",\r\n \"2603:1010:6:402::90/125\",\r\n
+ \ \"2603:1010:6:402::340/122\",\r\n \"2603:1010:6:802::90/125\",\r\n
+ \ \"2603:1010:6:802::2c0/122\",\r\n \"2603:1010:6:c02::90/125\",\r\n
+ \ \"2603:1010:101:402::90/125\",\r\n \"2603:1010:101:402::340/122\",\r\n
+ \ \"2603:1010:101:402::580/122\",\r\n \"2603:1010:304:402::90/125\",\r\n
+ \ \"2603:1010:304:402::340/122\",\r\n \"2603:1010:304:402::580/122\",\r\n
+ \ \"2603:1010:404:402::90/125\",\r\n \"2603:1010:404:402::340/122\",\r\n
+ \ \"2603:1010:404:402::580/122\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\",\r\n
+ \ \"2603:1020:206:402::90/125\",\r\n \"2603:1020:206:402::340/122\",\r\n
+ \ \"2603:1020:206:802::90/125\",\r\n \"2603:1020:206:802::2c0/122\",\r\n
+ \ \"2603:1020:206:c02::90/125\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\",\r\n \"2603:1020:605:402::90/125\",\r\n
+ \ \"2603:1020:605:402::340/122\",\r\n \"2603:1020:605:402::580/122\",\r\n
+ \ \"2603:1020:705:402::90/125\",\r\n \"2603:1020:705:402::340/122\",\r\n
+ \ \"2603:1020:705:802::90/125\",\r\n \"2603:1020:705:802::2c0/122\",\r\n
+ \ \"2603:1020:705:c02::90/125\",\r\n \"2603:1020:805:402::90/125\",\r\n
+ \ \"2603:1020:805:402::340/122\",\r\n \"2603:1020:805:802::90/125\",\r\n
+ \ \"2603:1020:805:802::2c0/122\",\r\n \"2603:1020:805:c02::90/125\",\r\n
+ \ \"2603:1020:905:402::90/125\",\r\n \"2603:1020:905:402::340/122\",\r\n
+ \ \"2603:1020:905:402::580/122\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\",\r\n
+ \ \"2603:1020:b04:402::90/125\",\r\n \"2603:1020:b04:402::340/122\",\r\n
+ \ \"2603:1020:b04:402::580/122\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\",\r\n \"2603:1020:e04::348/125\",\r\n
+ \ \"2603:1020:e04:402::90/125\",\r\n \"2603:1020:e04:402::340/122\",\r\n
+ \ \"2603:1020:e04:402::580/121\",\r\n \"2603:1020:e04:802::90/125\",\r\n
+ \ \"2603:1020:e04:802::2c0/122\",\r\n \"2603:1020:e04:c02::90/125\",\r\n
+ \ \"2603:1020:f04:402::90/125\",\r\n \"2603:1020:f04:402::340/122\",\r\n
+ \ \"2603:1020:f04:402::580/122\",\r\n \"2603:1020:1004:1::1a0/125\",\r\n
+ \ \"2603:1020:1004:400::90/125\",\r\n \"2603:1020:1004:400::3b8/125\",\r\n
+ \ \"2603:1020:1004:400::4c0/122\",\r\n \"2603:1020:1004:400::500/121\",\r\n
+ \ \"2603:1020:1004:800::150/125\",\r\n \"2603:1020:1004:800::180/121\",\r\n
+ \ \"2603:1020:1004:800::280/121\",\r\n \"2603:1020:1004:c02::300/121\",\r\n
+ \ \"2603:1020:1104::5a0/125\",\r\n \"2603:1020:1104:400::90/125\",\r\n
+ \ \"2603:1020:1104:400::380/121\",\r\n \"2603:1020:1104:400::540/122\",\r\n
+ \ \"2603:1030:f:1::2a8/125\",\r\n \"2603:1030:f:400::890/125\",\r\n
+ \ \"2603:1030:f:400::b40/122\",\r\n \"2603:1030:f:400::d80/122\",\r\n
+ \ \"2603:1030:f:400::e00/121\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\",\r\n
+ \ \"2603:1030:104:402::90/125\",\r\n \"2603:1030:104:402::340/122\",\r\n
+ \ \"2603:1030:104:402::580/122\",\r\n \"2603:1030:107::580/125\",\r\n
+ \ \"2603:1030:107:400::18/125\",\r\n \"2603:1030:107:400::300/121\",\r\n
+ \ \"2603:1030:107:400::500/122\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\",\r\n
+ \ \"2603:1030:302:402::c0/122\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\",\r\n
+ \ \"2603:1030:40c:402::90/125\",\r\n \"2603:1030:40c:402::340/122\",\r\n
+ \ \"2603:1030:40c:802::90/125\",\r\n \"2603:1030:40c:802::2c0/122\",\r\n
+ \ \"2603:1030:40c:c02::90/125\",\r\n \"2603:1030:504::1a0/125\",\r\n
+ \ \"2603:1030:504:402::90/125\",\r\n \"2603:1030:504:402::3b8/125\",\r\n
+ \ \"2603:1030:504:802::c0/125\",\r\n \"2603:1030:504:802::150/125\",\r\n
+ \ \"2603:1030:504:802::180/121\",\r\n \"2603:1030:504:c02::140/122\",\r\n
+ \ \"2603:1030:504:c02::300/121\",\r\n \"2603:1030:608:402::90/125\",\r\n
+ \ \"2603:1030:608:402::340/122\",\r\n \"2603:1030:608:402::580/122\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\",\r\n \"2603:1030:c06:400::890/125\",\r\n
+ \ \"2603:1030:c06:400::b40/122\",\r\n \"2603:1030:c06:802::90/125\",\r\n
+ \ \"2603:1030:c06:802::2c0/122\",\r\n \"2603:1030:c06:c02::90/125\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\",\r\n \"2603:1030:1005:402::90/125\",\r\n
+ \ \"2603:1030:1005:402::340/122\",\r\n \"2603:1030:1005:402::580/122\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\",\r\n
+ \ \"2603:1040:407:402::90/125\",\r\n \"2603:1040:407:402::340/122\",\r\n
+ \ \"2603:1040:407:802::90/125\",\r\n \"2603:1040:407:802::2c0/122\",\r\n
+ \ \"2603:1040:407:c02::90/125\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\",\r\n
+ \ \"2603:1040:a06:402::90/125\",\r\n \"2603:1040:a06:402::340/122\",\r\n
+ \ \"2603:1040:a06:802::90/125\",\r\n \"2603:1040:a06:802::2c0/122\",\r\n
+ \ \"2603:1040:a06:c02::90/125\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\",\r\n \"2603:1040:d04:1::1a0/125\",\r\n
+ \ \"2603:1040:d04:400::90/125\",\r\n \"2603:1040:d04:400::3b8/125\",\r\n
+ \ \"2603:1040:d04:400::4c0/122\",\r\n \"2603:1040:d04:400::500/121\",\r\n
+ \ \"2603:1040:d04:800::150/125\",\r\n \"2603:1040:d04:800::180/121\",\r\n
+ \ \"2603:1040:d04:800::280/121\",\r\n \"2603:1040:d04:c02::300/121\",\r\n
+ \ \"2603:1040:e05:402::100/122\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\",\r\n
+ \ \"2603:1040:1104::5a0/125\",\r\n \"2603:1040:1104:400::90/125\",\r\n
+ \ \"2603:1040:1104:400::380/121\",\r\n \"2603:1040:1104:400::480/122\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\",\r\n
+ \ \"2603:1050:403:400::98/125\",\r\n \"2603:1050:403:400::480/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n \"40.79.166.0/25\",\r\n
+ \ \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n \"40.79.174.0/25\",\r\n
+ \ \"2603:1010:6:402::90/125\",\r\n \"2603:1010:6:402::340/122\",\r\n
+ \ \"2603:1010:6:802::90/125\",\r\n \"2603:1010:6:802::2c0/122\",\r\n
+ \ \"2603:1010:6:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.80/29\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"2603:1010:101:402::90/125\",\r\n
+ \ \"2603:1010:101:402::340/122\",\r\n \"2603:1010:101:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.136.0/24\",\r\n \"20.195.137.0/25\",\r\n
+ \ \"191.233.203.136/29\",\r\n \"191.233.205.192/26\",\r\n
+ \ \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n \"191.234.149.64/26\",\r\n
+ \ \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n \"191.234.157.192/26\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.56/29\",\r\n \"13.71.176.0/25\",\r\n \"13.71.176.128/25\",\r\n
+ \ \"20.38.146.144/29\",\r\n \"20.38.149.0/25\",\r\n \"20.48.192.128/26\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CanadaEast\",\r\n \"id\":
+ \"AzureContainerRegistry.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.80/29\",\r\n
+ \ \"40.69.110.0/25\",\r\n \"40.69.116.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"2603:1030:1005:402::90/125\",\r\n \"2603:1030:1005:402::340/122\",\r\n
+ \ \"2603:1030:1005:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CentralIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n
+ \ \"20.192.101.128/26\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"52.140.110.192/26\",\r\n \"104.211.81.136/29\",\r\n \"2603:1040:a06:402::90/125\",\r\n
+ \ \"2603:1040:a06:402::340/122\",\r\n \"2603:1040:a06:802::90/125\",\r\n
+ \ \"2603:1040:a06:802::2c0/122\",\r\n \"2603:1040:a06:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.216/29\",\r\n \"13.89.175.0/25\",\r\n
+ \ \"20.40.224.64/26\",\r\n \"20.44.11.0/25\",\r\n \"20.44.11.128/26\",\r\n
+ \ \"20.44.12.0/25\",\r\n \"52.182.138.208/29\",\r\n \"52.182.142.0/25\",\r\n
+ \ \"52.182.142.128/25\",\r\n \"104.208.16.80/29\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.199.128/25\",\r\n \"40.78.202.72/29\",\r\n
+ \ \"168.61.140.128/25\",\r\n \"168.61.141.0/25\",\r\n \"168.61.141.128/25\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"2603:1030:f:1::2a8/125\",\r\n
+ \ \"2603:1030:f:400::890/125\",\r\n \"2603:1030:f:400::b40/122\",\r\n
+ \ \"2603:1030:f:400::d80/122\",\r\n \"2603:1030:f:400::e00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.0/29\",\r\n \"20.187.196.64/26\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.66.0/24\",\r\n \"20.42.67.0/24\",\r\n \"20.62.128.0/26\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.78.226.208/29\",\r\n \"40.78.231.0/24\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"52.168.112.192/26\",\r\n \"52.168.114.0/24\",\r\n
+ \ \"52.168.115.0/24\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.19.64/26\",\r\n \"20.44.22.0/24\",\r\n \"20.44.23.0/24\",\r\n
+ \ \"20.49.102.128/26\",\r\n \"20.65.0.0/24\",\r\n \"40.70.146.88/29\",\r\n
+ \ \"40.70.150.0/24\",\r\n \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"2603:1030:40c:402::90/125\",\r\n
+ \ \"2603:1030:40c:402::340/122\",\r\n \"2603:1030:40c:802::90/125\",\r\n
+ \ \"2603:1030:40c:802::2c0/122\",\r\n \"2603:1030:40c:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.128/25\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.89.120.0/24\",\r\n
+ \ \"40.89.121.0/25\",\r\n \"52.138.90.32/29\",\r\n \"52.138.93.0/25\",\r\n
+ \ \"52.138.93.128/25\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.46.64/26\",\r\n \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n
+ \ \"40.79.138.32/29\",\r\n \"40.79.141.0/26\",\r\n \"40.79.141.64/26\",\r\n
+ \ \"40.79.146.32/29\",\r\n \"40.79.148.128/26\",\r\n \"40.79.148.192/26\",\r\n
+ \ \"2603:1020:805:402::90/125\",\r\n \"2603:1020:805:402::340/122\",\r\n
+ \ \"2603:1020:805:802::90/125\",\r\n \"2603:1020:805:802::2c0/122\",\r\n
+ \ \"2603:1020:805:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.FranceSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.80/29\",\r\n
+ \ \"51.138.160.128/26\",\r\n \"2603:1020:905:402::90/125\",\r\n
+ \ \"2603:1020:905:402::340/122\",\r\n \"2603:1020:905:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.128/26\",\r\n \"51.116.58.24/29\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.88.64/26\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/26\",\r\n \"51.116.158.192/26\",\r\n \"51.116.242.144/29\",\r\n
+ \ \"51.116.250.144/29\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"20.191.160.128/26\",\r\n \"20.194.128.0/25\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"2603:1040:407:402::90/125\",\r\n
+ \ \"2603:1040:407:402::340/122\",\r\n \"2603:1040:407:802::90/125\",\r\n
+ \ \"2603:1040:407:802::2c0/122\",\r\n \"2603:1040:407:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.224.0/26\",\r\n \"40.74.100.160/29\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.128/26\",\r\n \"20.44.26.144/29\",\r\n
+ \ \"20.44.29.128/26\",\r\n \"20.44.29.192/26\",\r\n \"20.194.66.16/29\",\r\n
+ \ \"20.194.68.0/26\",\r\n \"20.194.68.64/26\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"52.231.18.56/29\",\r\n \"52.231.20.128/26\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.135.26.64/26\",\r\n \"52.231.146.192/29\",\r\n
+ \ \"2603:1040:e05:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.115.0/26\",\r\n \"52.162.104.192/26\",\r\n
+ \ \"52.162.106.160/29\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"2603:1030:608:402::90/125\",\r\n \"2603:1030:608:402::340/122\",\r\n
+ \ \"2603:1030:608:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.88/29\",\r\n
+ \ \"13.69.236.0/23\",\r\n \"13.69.238.0/24\",\r\n \"13.74.107.80/29\",\r\n
+ \ \"13.74.110.0/24\",\r\n \"52.138.226.80/29\",\r\n \"52.138.230.0/24\",\r\n
+ \ \"52.138.231.0/24\",\r\n \"52.146.131.128/26\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"5\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.0/25\",\r\n \"51.13.1.64/26\",\r\n \"51.120.98.160/29\",\r\n
+ \ \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n \"51.120.110.0/25\",\r\n
+ \ \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n \"51.120.234.0/26\",\r\n
+ \ \"2603:1020:e04::348/125\",\r\n \"2603:1020:e04:402::90/125\",\r\n
+ \ \"2603:1020:e04:402::340/122\",\r\n \"2603:1020:e04:402::580/121\",\r\n
+ \ \"2603:1020:e04:802::90/125\",\r\n \"2603:1020:e04:802::2c0/122\",\r\n
+ \ \"2603:1020:e04:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorwayWest\",\r\n \"id\":
+ \"AzureContainerRegistry.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.13.128.128/25\",\r\n
+ \ \"51.13.129.0/26\",\r\n \"51.120.218.24/29\",\r\n \"2603:1020:f04:402::90/125\",\r\n
+ \ \"2603:1020:f04:402::340/122\",\r\n \"2603:1020:f04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.128/26\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"2603:1000:104:402::90/125\",\r\n
+ \ \"2603:1000:104:402::340/122\",\r\n \"2603:1000:104:802::90/125\",\r\n
+ \ \"2603:1000:104:802::2c0/122\",\r\n \"2603:1000:104:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.64/26\",\r\n \"102.133.26.24/29\",\r\n
+ \ \"2603:1000:4:402::90/125\",\r\n \"2603:1000:4:402::340/122\",\r\n
+ \ \"2603:1000:4:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n
+ \ \"13.73.255.64/26\",\r\n \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n
+ \ \"20.49.90.16/29\",\r\n \"20.49.92.0/25\",\r\n \"20.49.92.128/25\",\r\n
+ \ \"20.49.93.0/26\",\r\n \"40.124.64.0/25\",\r\n \"104.214.18.184/29\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SoutheastAsia\",\r\n \"id\":
+ \"AzureContainerRegistry.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/25\",\r\n \"13.67.14.128/25\",\r\n \"20.195.64.128/26\",\r\n
+ \ \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n \"23.98.87.0/25\",\r\n
+ \ \"23.98.112.0/25\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.41.199.192/26\",\r\n
+ \ \"20.41.208.64/26\",\r\n \"40.78.194.80/29\",\r\n \"40.78.196.192/26\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n
+ \ \"51.107.58.24/29\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n
+ \ \"51.107.154.24/29\",\r\n \"51.107.192.0/26\",\r\n \"2603:1020:b04:402::90/125\",\r\n
+ \ \"2603:1020:b04:402::340/122\",\r\n \"2603:1020:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.192/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/26\",\r\n \"40.120.77.64/26\",\r\n \"65.52.248.192/26\",\r\n
+ \ \"65.52.250.16/29\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.96/29\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.128/25\",\r\n
+ \ \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n \"51.105.70.0/25\",\r\n
+ \ \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.140.146.200/29\",\r\n \"51.143.208.0/26\",\r\n \"2603:1020:705:402::90/125\",\r\n
+ \ \"2603:1020:705:402::340/122\",\r\n \"2603:1020:705:802::90/125\",\r\n
+ \ \"2603:1020:705:802::2c0/122\",\r\n \"2603:1020:705:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.56.96/29\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKWest\",\r\n \"id\":
+ \"AzureContainerRegistry.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n
+ \ \"2603:1020:605:402::90/125\",\r\n \"2603:1020:605:402::340/122\",\r\n
+ \ \"2603:1020:605:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.224/29\",\r\n
+ \ \"40.67.121.0/25\",\r\n \"40.67.122.128/26\",\r\n \"52.150.156.64/26\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.88/29\",\r\n
+ \ \"13.69.106.80/29\",\r\n \"13.69.110.0/24\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.236.186.80/29\",\r\n \"52.236.191.0/24\",\r\n \"2603:1020:206:402::90/125\",\r\n
+ \ \"2603:1020:206:402::340/122\",\r\n \"2603:1020:206:802::90/125\",\r\n
+ \ \"2603:1020:206:802::2c0/122\",\r\n \"2603:1020:206:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestIndia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.132.192/26\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.127.0/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"40.112.242.160/29\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n \"13.66.147.0/25\",\r\n
+ \ \"13.66.148.0/24\",\r\n \"40.64.112.0/24\",\r\n \"40.64.135.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"2603:1030:c06:400::890/125\",\r\n \"2603:1030:c06:400::b40/122\",\r\n
+ \ \"2603:1030:c06:802::90/125\",\r\n \"2603:1030:c06:802::2c0/122\",\r\n
+ \ \"2603:1030:c06:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB\",\r\n \"id\": \"AzureCosmosDB\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n \"13.64.113.68/32\",\r\n
+ \ \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.66.138.0/26\",\r\n
+ \ \"13.67.8.0/26\",\r\n \"13.68.28.135/32\",\r\n \"13.69.66.0/25\",\r\n
+ \ \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n \"13.69.226.0/25\",\r\n
+ \ \"13.70.74.136/29\",\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"13.71.170.0/28\",\r\n \"13.71.194.0/26\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.73.100.183/32\",\r\n \"13.73.254.224/27\",\r\n \"13.74.106.0/25\",\r\n
+ \ \"13.75.34.0/26\",\r\n \"13.75.134.84/32\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"13.77.50.0/28\",\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n
+ \ \"13.78.188.25/32\",\r\n \"13.79.34.236/32\",\r\n \"13.81.51.99/32\",\r\n
+ \ \"13.82.53.191/32\",\r\n \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n
+ \ \"13.85.16.188/32\",\r\n \"13.87.56.0/27\",\r\n \"13.87.122.0/27\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.88.253.180/32\",\r\n \"13.89.41.245/32\",\r\n
+ \ \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n \"13.89.224.229/32\",\r\n
+ \ \"13.90.199.155/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"13.94.201.5/32\",\r\n
+ \ \"13.95.234.68/32\",\r\n \"20.36.26.132/32\",\r\n \"20.36.42.8/32\",\r\n
+ \ \"20.36.75.163/32\",\r\n \"20.36.106.0/26\",\r\n \"20.36.114.0/28\",\r\n
+ \ \"20.36.123.96/27\",\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"20.37.228.32/27\",\r\n \"20.38.140.128/27\",\r\n \"20.38.146.0/26\",\r\n
+ \ \"20.39.15.64/27\",\r\n \"20.40.207.160/27\",\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"20.43.46.0/27\",\r\n \"20.44.2.64/26\",\r\n
+ \ \"20.44.10.0/26\",\r\n \"20.44.26.0/26\",\r\n \"20.45.115.160/27\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.45.198.96/27\",\r\n \"20.48.192.32/27\",\r\n
+ \ \"20.49.82.64/26\",\r\n \"20.49.90.64/26\",\r\n \"20.49.102.64/27\",\r\n
+ \ \"20.49.114.128/27\",\r\n \"20.49.126.160/27\",\r\n \"20.53.41.0/27\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"20.72.18.64/27\",\r\n \"20.72.26.64/26\",\r\n
+ \ \"20.150.166.192/27\",\r\n \"20.150.170.64/26\",\r\n \"20.150.178.0/26\",\r\n
+ \ \"20.150.186.0/26\",\r\n \"20.187.196.0/27\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"20.192.98.0/26\",\r\n \"20.192.166.192/27\",\r\n \"20.192.231.0/27\",\r\n
+ \ \"20.192.234.64/26\",\r\n \"20.193.202.64/26\",\r\n \"20.194.66.64/26\",\r\n
+ \ \"23.96.180.213/32\",\r\n \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"23.102.239.134/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.67.51.160/27\",\r\n \"40.67.58.64/26\",\r\n
+ \ \"40.68.44.85/32\",\r\n \"40.69.106.0/28\",\r\n \"40.70.0.140/32\",\r\n
+ \ \"40.70.220.202/32\",\r\n \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n
+ \ \"40.71.203.37/32\",\r\n \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n
+ \ \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.77.63.179/32\",\r\n
+ \ \"40.78.194.0/28\",\r\n \"40.78.203.32/27\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.78.236.192/26\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.79.163.72/29\",\r\n \"40.79.163.192/26\",\r\n
+ \ \"40.79.170.48/28\",\r\n \"40.79.178.0/28\",\r\n \"40.79.186.16/28\",\r\n
+ \ \"40.79.194.128/26\",\r\n \"40.80.50.0/26\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"40.80.173.0/27\",\r\n \"40.83.137.191/32\",\r\n \"40.85.178.211/32\",\r\n
+ \ \"40.86.229.245/32\",\r\n \"40.89.22.224/27\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.113.90.91/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"40.115.241.37/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"40.120.74.64/26\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"40.126.244.209/32\",\r\n \"51.12.43.0/27\",\r\n \"51.12.98.64/26\",\r\n
+ \ \"51.12.195.0/27\",\r\n \"51.12.202.64/26\",\r\n \"51.12.226.0/26\",\r\n
+ \ \"51.12.234.0/26\",\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.105.92.192/27\",\r\n \"51.107.52.224/27\",\r\n
+ \ \"51.107.58.64/26\",\r\n \"51.107.148.32/27\",\r\n \"51.107.154.64/26\",\r\n
+ \ \"51.116.50.224/27\",\r\n \"51.116.58.64/26\",\r\n \"51.116.146.224/27\",\r\n
+ \ \"51.116.154.128/26\",\r\n \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n
+ \ \"51.120.44.128/27\",\r\n \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n
+ \ \"51.120.210.0/26\",\r\n \"51.120.218.64/26\",\r\n \"51.120.228.160/27\",\r\n
+ \ \"51.137.166.128/27\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n
+ \ \"51.141.25.77/32\",\r\n \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n
+ \ \"51.143.189.37/32\",\r\n \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n
+ \ \"52.136.52.64/27\",\r\n \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n
+ \ \"52.136.136.70/32\",\r\n \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n
+ \ \"52.138.92.0/26\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.140.110.64/27\",\r\n \"52.143.136.41/32\",\r\n
+ \ \"52.146.79.160/27\",\r\n \"52.146.131.0/27\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.156.170.104/32\",\r\n \"52.158.234.203/32\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"52.162.106.0/26\",\r\n \"52.162.252.26/32\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.167.107.128/26\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n
+ \ \"52.170.204.83/32\",\r\n \"52.172.55.127/32\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"52.173.148.217/32\",\r\n \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n
+ \ \"52.174.253.239/32\",\r\n \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n
+ \ \"52.176.0.136/32\",\r\n \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n
+ \ \"52.176.155.127/32\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n
+ \ \"52.179.200.0/25\",\r\n \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n
+ \ \"52.180.177.137/32\",\r\n \"52.182.138.0/25\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"52.186.69.224/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n
+ \ \"52.226.21.178/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n \"52.231.207.31/32\",\r\n
+ \ \"52.232.59.220/32\",\r\n \"52.233.41.60/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n \"52.236.189.0/26\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"65.52.210.9/32\",\r\n \"65.52.251.128/26\",\r\n
+ \ \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n \"102.133.122.0/26\",\r\n
+ \ \"102.133.154.64/26\",\r\n \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n
+ \ \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n \"104.41.177.93/32\",\r\n
+ \ \"104.45.16.183/32\",\r\n \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n
+ \ \"104.46.177.64/27\",\r\n \"104.208.231.0/25\",\r\n \"104.210.89.99/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n
+ \ \"104.211.146.0/28\",\r\n \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"104.211.227.84/32\",\r\n
+ \ \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n \"104.214.26.177/32\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"157.55.170.133/32\",\r\n \"168.61.142.128/26\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.11.192/27\",\r\n
+ \ \"191.233.50.64/26\",\r\n \"191.233.204.128/27\",\r\n \"191.234.138.160/27\",\r\n
+ \ \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n \"191.234.179.157/32\",\r\n
+ \ \"191.239.179.124/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1000:4:402::c0/122\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\",\r\n
+ \ \"2603:1010:6:402::c0/122\",\r\n \"2603:1010:6:802::c0/122\",\r\n
+ \ \"2603:1010:6:c02::c0/122\",\r\n \"2603:1010:101:402::c0/122\",\r\n
+ \ \"2603:1010:304:402::c0/122\",\r\n \"2603:1010:404:402::c0/122\",\r\n
+ \ \"2603:1020:5:402::c0/122\",\r\n \"2603:1020:5:802::c0/122\",\r\n
+ \ \"2603:1020:5:c02::c0/122\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\",\r\n
+ \ \"2603:1020:305:402::c0/122\",\r\n \"2603:1020:405:402::c0/122\",\r\n
+ \ \"2603:1020:605:402::c0/122\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\",\r\n
+ \ \"2603:1020:805:402::c0/122\",\r\n \"2603:1020:805:802::c0/122\",\r\n
+ \ \"2603:1020:805:c02::c0/122\",\r\n \"2603:1020:905:402::c0/122\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\",\r\n \"2603:1020:b04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:402::c0/122\",\r\n \"2603:1020:c04:802::c0/122\",\r\n
+ \ \"2603:1020:c04:c02::c0/122\",\r\n \"2603:1020:d04:402::c0/122\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\",\r\n
+ \ \"2603:1020:f04:402::c0/122\",\r\n \"2603:1020:1004:1::60/123\",\r\n
+ \ \"2603:1020:1004:400::c0/122\",\r\n \"2603:1020:1004:400::280/122\",\r\n
+ \ \"2603:1020:1004:400::3c0/122\",\r\n \"2603:1020:1104::520/123\",\r\n
+ \ \"2603:1020:1104:400::c0/122\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\",\r\n
+ \ \"2603:1030:104:402::c0/122\",\r\n \"2603:1030:107::540/123\",\r\n
+ \ \"2603:1030:107:400::40/122\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\",\r\n
+ \ \"2603:1030:504::60/123\",\r\n \"2603:1030:504:402::c0/122\",\r\n
+ \ \"2603:1030:504:402::280/122\",\r\n \"2603:1030:504:402::3c0/122\",\r\n
+ \ \"2603:1030:504:802::200/122\",\r\n \"2603:1030:504:c02::3c0/122\",\r\n
+ \ \"2603:1030:608:402::c0/122\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\",\r\n
+ \ \"2603:1030:a07:402::c0/122\",\r\n \"2603:1030:b04:402::c0/122\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\",\r\n
+ \ \"2603:1030:1005:402::c0/122\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\",\r\n
+ \ \"2603:1040:207:402::c0/122\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\",\r\n
+ \ \"2603:1040:606:402::c0/122\",\r\n \"2603:1040:806:402::c0/122\",\r\n
+ \ \"2603:1040:904:402::c0/122\",\r\n \"2603:1040:904:802::c0/122\",\r\n
+ \ \"2603:1040:904:c02::c0/122\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\",\r\n
+ \ \"2603:1040:b04:402::c0/122\",\r\n \"2603:1040:c06:402::c0/122\",\r\n
+ \ \"2603:1040:d04:1::60/123\",\r\n \"2603:1040:d04:400::c0/122\",\r\n
+ \ \"2603:1040:d04:400::280/122\",\r\n \"2603:1040:d04:400::3c0/122\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\",\r\n
+ \ \"2603:1040:1104::520/123\",\r\n \"2603:1040:1104:400::c0/122\",\r\n
+ \ \"2603:1050:6:402::c0/122\",\r\n \"2603:1050:6:802::c0/122\",\r\n
+ \ \"2603:1050:6:c02::c0/122\",\r\n \"2603:1050:403:400::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.8/32\",\r\n \"20.36.106.0/26\",\r\n \"20.37.228.32/27\",\r\n
+ \ \"2603:1010:304:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral2\",\r\n \"id\":
+ \"AzureCosmosDB.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.36.75.163/32\",\r\n
+ \ \"20.36.114.0/28\",\r\n \"20.36.123.96/27\",\r\n \"2603:1010:404:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.136/29\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.75.134.84/32\",\r\n \"20.53.41.0/27\",\r\n \"40.79.163.72/29\",\r\n
+ \ \"40.79.163.192/26\",\r\n \"40.79.170.48/28\",\r\n \"40.126.244.209/32\",\r\n
+ \ \"52.156.170.104/32\",\r\n \"104.210.89.99/32\",\r\n \"2603:1010:6:402::c0/122\",\r\n
+ \ \"2603:1010:6:802::c0/122\",\r\n \"2603:1010:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.100.183/32\",\r\n \"13.77.50.0/28\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"104.46.177.64/27\",\r\n \"191.239.179.124/32\",\r\n
+ \ \"2603:1010:101:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.BrazilSouth\",\r\n \"id\": \"AzureCosmosDB.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.204.128/27\",\r\n
+ \ \"191.234.138.160/27\",\r\n \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n
+ \ \"191.234.179.157/32\",\r\n \"2603:1050:6:402::c0/122\",\r\n
+ \ \"2603:1050:6:802::c0/122\",\r\n \"2603:1050:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.0/28\",\r\n \"13.88.253.180/32\",\r\n
+ \ \"20.38.146.0/26\",\r\n \"20.48.192.32/27\",\r\n \"52.233.41.60/32\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.0/28\",\r\n \"40.86.229.245/32\",\r\n
+ \ \"40.89.22.224/27\",\r\n \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n
+ \ \"2603:1030:1005:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.CentralIndia\",\r\n \"id\":
+ \"AzureCosmosDB.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.192.98.0/26\",\r\n
+ \ \"40.80.50.0/26\",\r\n \"52.140.110.64/27\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.41.245/32\",\r\n \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n
+ \ \"13.89.224.229/32\",\r\n \"20.40.207.160/27\",\r\n \"20.44.10.0/26\",\r\n
+ \ \"40.77.63.179/32\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.173.148.217/32\",\r\n
+ \ \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n \"52.176.0.136/32\",\r\n
+ \ \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n \"52.176.155.127/32\",\r\n
+ \ \"52.182.138.0/25\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.96/27\",\r\n \"40.78.203.32/27\",\r\n
+ \ \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n \"52.180.177.137/32\",\r\n
+ \ \"168.61.142.128/26\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastAsia\",\r\n \"id\": \"AzureCosmosDB.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.0/26\",\r\n \"20.187.196.0/27\",\r\n \"23.102.239.134/32\",\r\n
+ \ \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1040:207:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastUS\",\r\n \"id\": \"AzureCosmosDB.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.53.191/32\",\r\n \"13.90.199.155/32\",\r\n
+ \ \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n \"40.71.203.37/32\",\r\n
+ \ \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.85.178.211/32\",\r\n \"52.146.79.160/27\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.170.204.83/32\",\r\n \"52.186.69.224/32\",\r\n
+ \ \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n \"52.226.21.178/32\",\r\n
+ \ \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.68.28.135/32\",\r\n
+ \ \"20.49.102.64/27\",\r\n \"40.70.0.140/32\",\r\n \"40.70.220.202/32\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"52.167.107.128/26\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n \"52.179.200.0/25\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"104.208.231.0/25\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.64/27\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n \"52.138.92.0/26\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.FranceCentral\",\r\n \"id\":
+ \"AzureCosmosDB.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.43.46.0/27\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"52.143.136.41/32\",\r\n \"2603:1020:805:402::c0/122\",\r\n
+ \ \"2603:1020:805:802::c0/122\",\r\n \"2603:1020:805:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.FranceSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.0/28\",\r\n \"51.105.92.192/27\",\r\n
+ \ \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n \"52.136.136.70/32\",\r\n
+ \ \"2603:1020:905:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.GermanyNorth\",\r\n \"id\":
+ \"AzureCosmosDB.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.116.50.224/27\",\r\n
+ \ \"51.116.58.64/26\",\r\n \"2603:1020:d04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.146.224/27\",\r\n \"51.116.154.128/26\",\r\n
+ \ \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n \"2603:1020:c04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:802::c0/122\",\r\n \"2603:1020:c04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"40.79.186.16/28\",\r\n \"40.79.194.128/26\",\r\n \"40.115.241.37/32\",\r\n
+ \ \"104.41.177.93/32\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"2603:1040:606:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.KoreaCentral\",\r\n \"id\":
+ \"AzureCosmosDB.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.44.26.0/26\",\r\n \"20.194.66.64/26\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.KoreaSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.173.0/27\",\r\n \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n
+ \ \"52.231.207.31/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCosmosDB.NorthCentralUS\",\r\n \"id\": \"AzureCosmosDB.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.128/27\",\r\n \"23.96.180.213/32\",\r\n
+ \ \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n \"52.162.106.0/26\",\r\n
+ \ \"52.162.252.26/32\",\r\n \"65.52.210.9/32\",\r\n \"157.55.170.133/32\",\r\n
+ \ \"2603:1030:608:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.NorthEurope\",\r\n \"id\": \"AzureCosmosDB.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.0/25\",\r\n \"13.74.106.0/25\",\r\n \"13.79.34.236/32\",\r\n
+ \ \"40.113.90.91/32\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.146.131.0/27\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n \"2603:1020:5:402::c0/122\",\r\n
+ \ \"2603:1020:5:802::c0/122\",\r\n \"2603:1020:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.128/27\",\r\n
+ \ \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n \"51.120.210.0/26\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.64/26\",\r\n
+ \ \"51.120.228.160/27\",\r\n \"2603:1020:f04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.0/26\",\r\n \"102.133.154.64/26\",\r\n
+ \ \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n
+ \ \"2603:1000:4:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SouthCentralUS\",\r\n \"id\":
+ \"AzureCosmosDB.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.73.254.224/27\",\r\n
+ \ \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n \"13.85.16.188/32\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.49.90.64/26\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n
+ \ \"104.214.26.177/32\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.8.0/26\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"40.78.236.192/26\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"40.78.194.0/28\",\r\n \"52.172.55.127/32\",\r\n
+ \ \"104.211.227.84/32\",\r\n \"2603:1040:c06:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.52.224/27\",\r\n \"51.107.58.64/26\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SwitzerlandWest\",\r\n \"id\":
+ \"AzureCosmosDB.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.107.148.32/27\",\r\n
+ \ \"51.107.154.64/26\",\r\n \"2603:1020:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UAECentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"2603:1040:b04:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.UAENorth\",\r\n \"id\": \"AzureCosmosDB.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.128/27\",\r\n \"40.120.74.64/26\",\r\n
+ \ \"65.52.251.128/26\",\r\n \"2603:1040:904:402::c0/122\",\r\n
+ \ \"2603:1040:904:802::c0/122\",\r\n \"2603:1040:904:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.143.189.37/32\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.137.166.128/27\",\r\n
+ \ \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n \"51.141.25.77/32\",\r\n
+ \ \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n \"2603:1020:605:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestCentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.0/26\",\r\n \"13.78.188.25/32\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"2603:1030:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestEurope\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.66.0/25\",\r\n \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n
+ \ \"13.81.51.99/32\",\r\n \"13.94.201.5/32\",\r\n \"13.95.234.68/32\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"40.68.44.85/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n \"52.174.253.239/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.232.59.220/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.236.189.0/26\",\r\n \"104.45.16.183/32\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.136.52.64/27\",\r\n \"104.211.146.0/28\",\r\n
+ \ \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"2603:1040:806:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n
+ \ \"13.64.113.68/32\",\r\n \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"20.49.126.160/27\",\r\n
+ \ \"40.83.137.191/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"2603:1030:a07:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.0/26\",\r\n
+ \ \"20.36.26.132/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.158.234.203/32\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"AzureDatabricks\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDatabricks\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.105.50/32\",\r\n \"13.70.107.141/32\",\r\n
+ \ \"13.71.184.74/32\",\r\n \"13.71.187.166/32\",\r\n \"13.75.164.249/32\",\r\n
+ \ \"13.75.218.172/32\",\r\n \"13.78.18.152/32\",\r\n \"13.78.19.235/32\",\r\n
+ \ \"13.86.58.215/32\",\r\n \"13.88.249.244/32\",\r\n \"20.36.120.68/30\",\r\n
+ \ \"20.37.64.68/30\",\r\n \"20.37.156.208/28\",\r\n \"20.37.195.16/29\",\r\n
+ \ \"20.37.224.68/30\",\r\n \"20.38.84.80/28\",\r\n \"20.38.136.120/29\",\r\n
+ \ \"20.39.8.68/30\",\r\n \"20.41.4.112/28\",\r\n \"20.41.65.136/29\",\r\n
+ \ \"20.41.192.68/30\",\r\n \"20.42.4.208/28\",\r\n \"20.42.129.160/28\",\r\n
+ \ \"20.42.224.68/30\",\r\n \"20.43.41.152/29\",\r\n \"20.43.65.144/29\",\r\n
+ \ \"20.43.130.96/28\",\r\n \"20.45.112.68/30\",\r\n \"20.45.192.68/30\",\r\n
+ \ \"20.46.12.200/29\",\r\n \"20.46.121.76/32\",\r\n \"20.72.16.32/29\",\r\n
+ \ \"20.150.160.104/30\",\r\n \"20.150.160.208/29\",\r\n \"20.186.83.56/32\",\r\n
+ \ \"20.189.106.192/28\",\r\n \"20.192.160.32/29\",\r\n \"20.192.225.24/29\",\r\n
+ \ \"20.194.4.102/32\",\r\n \"23.97.106.142/32\",\r\n \"23.97.201.41/32\",\r\n
+ \ \"23.100.0.135/32\",\r\n \"23.100.226.13/32\",\r\n \"23.101.147.147/32\",\r\n
+ \ \"23.101.152.95/32\",\r\n \"40.67.48.68/30\",\r\n \"40.70.58.221/32\",\r\n
+ \ \"40.74.30.80/28\",\r\n \"40.80.56.68/30\",\r\n \"40.80.168.68/30\",\r\n
+ \ \"40.80.188.0/28\",\r\n \"40.82.248.112/28\",\r\n \"40.83.176.199/32\",\r\n
+ \ \"40.83.178.242/32\",\r\n \"40.85.223.25/32\",\r\n \"40.86.167.110/32\",\r\n
+ \ \"40.89.16.68/30\",\r\n \"40.89.168.225/32\",\r\n \"40.89.170.184/32\",\r\n
+ \ \"40.89.171.101/32\",\r\n \"40.118.174.12/32\",\r\n \"40.119.9.208/28\",\r\n
+ \ \"40.123.212.253/32\",\r\n \"40.123.218.63/32\",\r\n \"40.123.219.125/32\",\r\n
+ \ \"40.123.225.135/32\",\r\n \"40.127.5.82/32\",\r\n \"40.127.5.124/32\",\r\n
+ \ \"40.127.147.196/32\",\r\n \"51.12.41.16/30\",\r\n \"51.12.47.16/29\",\r\n
+ \ \"51.12.193.16/30\",\r\n \"51.12.198.200/29\",\r\n \"51.103.18.111/32\",\r\n
+ \ \"51.104.25.136/30\",\r\n \"51.105.80.68/30\",\r\n \"51.105.88.68/30\",\r\n
+ \ \"51.107.48.120/30\",\r\n \"51.107.144.68/30\",\r\n \"51.120.40.120/30\",\r\n
+ \ \"51.120.224.68/30\",\r\n \"51.120.234.176/29\",\r\n \"51.137.160.120/29\",\r\n
+ \ \"51.138.96.158/32\",\r\n \"51.140.200.46/32\",\r\n \"51.140.203.27/32\",\r\n
+ \ \"51.140.204.4/32\",\r\n \"51.141.103.193/32\",\r\n \"51.143.192.68/30\",\r\n
+ \ \"52.136.48.68/30\",\r\n \"52.140.104.120/29\",\r\n \"52.141.6.71/32\",\r\n
+ \ \"52.141.6.181/32\",\r\n \"52.141.22.164/32\",\r\n \"52.146.50.16/32\",\r\n
+ \ \"52.150.136.68/30\",\r\n \"52.172.133.58/32\",\r\n \"52.187.0.85/32\",\r\n
+ \ \"52.187.3.203/32\",\r\n \"52.187.145.107/32\",\r\n \"52.228.81.136/29\",\r\n
+ \ \"52.230.27.216/32\",\r\n \"52.232.19.246/32\",\r\n \"52.246.160.72/32\",\r\n
+ \ \"52.247.0.200/32\",\r\n \"102.37.41.3/32\",\r\n \"102.133.56.68/30\",\r\n
+ \ \"102.133.216.96/29\",\r\n \"102.133.224.24/32\",\r\n \"104.41.54.118/32\",\r\n
+ \ \"104.45.7.191/32\",\r\n \"104.211.89.81/32\",\r\n \"104.211.101.14/32\",\r\n
+ \ \"104.211.103.82/32\",\r\n \"191.232.53.223/32\",\r\n \"191.233.8.32/29\",\r\n
+ \ \"191.234.160.82/32\",\r\n \"191.235.225.144/29\",\r\n
+ \ \"2603:1000:4::160/123\",\r\n \"2603:1000:104:1::160/123\",\r\n
+ \ \"2603:1010:6:1::160/123\",\r\n \"2603:1010:101::160/123\",\r\n
+ \ \"2603:1010:304::160/123\",\r\n \"2603:1010:404::160/123\",\r\n
+ \ \"2603:1020:5:1::160/123\",\r\n \"2603:1020:206:1::160/123\",\r\n
+ \ \"2603:1020:305::160/123\",\r\n \"2603:1020:405::160/123\",\r\n
+ \ \"2603:1020:605::160/123\",\r\n \"2603:1020:705:1::160/123\",\r\n
+ \ \"2603:1020:805:1::160/123\",\r\n \"2603:1020:905::160/123\",\r\n
+ \ \"2603:1020:a04:1::160/123\",\r\n \"2603:1020:b04::160/123\",\r\n
+ \ \"2603:1020:c04:1::160/123\",\r\n \"2603:1020:d04::160/123\",\r\n
+ \ \"2603:1020:e04:1::160/123\",\r\n \"2603:1020:f04::160/123\",\r\n
+ \ \"2603:1020:1004::160/123\",\r\n \"2603:1020:1104::160/123\",\r\n
+ \ \"2603:1030:f:1::160/123\",\r\n \"2603:1030:10:1::160/123\",\r\n
+ \ \"2603:1030:104:1::160/123\",\r\n \"2603:1030:107::160/123\",\r\n
+ \ \"2603:1030:210:1::160/123\",\r\n \"2603:1030:40b:1::160/123\",\r\n
+ \ \"2603:1030:40c:1::160/123\",\r\n \"2603:1030:504:1::160/123\",\r\n
+ \ \"2603:1030:608::160/123\",\r\n \"2603:1030:807:1::160/123\",\r\n
+ \ \"2603:1030:a07::160/123\",\r\n \"2603:1030:b04::160/123\",\r\n
+ \ \"2603:1030:c06:1::160/123\",\r\n \"2603:1030:f05:1::160/123\",\r\n
+ \ \"2603:1030:1005::160/123\",\r\n \"2603:1040:5:1::160/123\",\r\n
+ \ \"2603:1040:207::160/123\",\r\n \"2603:1040:407:1::160/123\",\r\n
+ \ \"2603:1040:606::160/123\",\r\n \"2603:1040:806::160/123\",\r\n
+ \ \"2603:1040:904:1::160/123\",\r\n \"2603:1040:a06:1::160/123\",\r\n
+ \ \"2603:1040:b04::160/123\",\r\n \"2603:1040:c06::160/123\",\r\n
+ \ \"2603:1040:d04::160/123\",\r\n \"2603:1040:f05:1::160/123\",\r\n
+ \ \"2603:1040:1104::160/123\",\r\n \"2603:1050:6:1::160/123\",\r\n
+ \ \"2603:1050:403::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement\",\r\n \"id\":
+ \"AzureDataExplorerManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.66.141.160/28\",\r\n
+ \ \"13.69.106.240/28\",\r\n \"13.69.229.176/28\",\r\n \"13.70.73.112/28\",\r\n
+ \ \"13.71.173.64/28\",\r\n \"13.71.196.64/28\",\r\n \"13.73.240.96/28\",\r\n
+ \ \"13.75.39.0/28\",\r\n \"13.77.52.240/28\",\r\n \"13.86.36.42/32\",\r\n
+ \ \"13.86.219.64/28\",\r\n \"13.87.57.224/28\",\r\n \"13.87.123.224/28\",\r\n
+ \ \"13.89.174.80/28\",\r\n \"20.36.242.104/32\",\r\n \"20.37.24.1/32\",\r\n
+ \ \"20.39.97.38/32\",\r\n \"20.39.99.177/32\",\r\n \"20.40.114.21/32\",\r\n
+ \ \"20.40.161.39/32\",\r\n \"20.43.89.90/32\",\r\n \"20.43.120.96/28\",\r\n
+ \ \"20.44.16.96/28\",\r\n \"20.44.27.96/28\",\r\n \"20.45.3.60/32\",\r\n
+ \ \"20.46.13.240/28\",\r\n \"20.46.146.7/32\",\r\n \"20.72.27.128/28\",\r\n
+ \ \"20.150.171.192/28\",\r\n \"20.150.245.112/28\",\r\n \"20.185.100.27/32\",\r\n
+ \ \"20.189.74.103/32\",\r\n \"20.192.235.128/28\",\r\n \"20.193.203.96/28\",\r\n
+ \ \"20.194.75.224/28\",\r\n \"23.98.82.240/28\",\r\n \"40.66.57.57/32\",\r\n
+ \ \"40.66.57.91/32\",\r\n \"40.67.188.68/32\",\r\n \"40.69.107.240/28\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"40.74.101.208/28\",\r\n \"40.74.147.80/28\",\r\n
+ \ \"40.78.195.240/28\",\r\n \"40.78.203.176/28\",\r\n \"40.79.131.224/28\",\r\n
+ \ \"40.79.179.208/28\",\r\n \"40.79.187.16/28\",\r\n \"40.80.234.9/32\",\r\n
+ \ \"40.80.250.168/32\",\r\n \"40.80.255.12/32\",\r\n \"40.81.28.50/32\",\r\n
+ \ \"40.81.43.47/32\",\r\n \"40.81.56.122/32\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"40.81.88.112/32\",\r\n \"40.81.89.242/32\",\r\n \"40.81.122.39/32\",\r\n
+ \ \"40.81.154.254/32\",\r\n \"40.81.184.86/32\",\r\n \"40.81.220.38/32\",\r\n
+ \ \"40.81.248.53/32\",\r\n \"40.81.249.251/32\",\r\n \"40.82.154.174/32\",\r\n
+ \ \"40.82.156.149/32\",\r\n \"40.82.188.208/32\",\r\n \"40.82.217.84/32\",\r\n
+ \ \"40.82.236.24/32\",\r\n \"40.89.56.69/32\",\r\n \"40.90.219.23/32\",\r\n
+ \ \"40.91.74.95/32\",\r\n \"40.119.3.195/32\",\r\n \"40.119.203.252/32\",\r\n
+ \ \"51.12.20.48/28\",\r\n \"51.12.28.48/28\",\r\n \"51.12.99.192/28\",\r\n
+ \ \"51.12.203.192/28\",\r\n \"51.104.8.112/28\",\r\n \"51.107.59.160/28\",\r\n
+ \ \"51.107.98.201/32\",\r\n \"51.107.155.160/28\",\r\n \"51.116.59.160/28\",\r\n
+ \ \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n \"51.120.99.80/28\",\r\n
+ \ \"51.120.219.192/28\",\r\n \"51.120.235.224/28\",\r\n \"51.140.212.0/28\",\r\n
+ \ \"51.145.176.215/32\",\r\n \"52.142.91.221/32\",\r\n \"52.159.55.120/32\",\r\n
+ \ \"52.162.110.176/28\",\r\n \"52.224.146.56/32\",\r\n \"52.231.148.16/28\",\r\n
+ \ \"52.232.230.201/32\",\r\n \"52.253.159.186/32\",\r\n \"52.253.225.186/32\",\r\n
+ \ \"52.253.226.110/32\",\r\n \"102.133.0.192/32\",\r\n \"102.133.28.112/28\",\r\n
+ \ \"102.133.130.206/32\",\r\n \"102.133.156.16/28\",\r\n
+ \ \"104.211.147.224/28\",\r\n \"191.233.25.183/32\",\r\n
+ \ \"191.233.50.208/28\",\r\n \"191.233.205.0/28\",\r\n \"2603:1000:4:1::380/121\",\r\n
+ \ \"2603:1000:4:402::150/124\",\r\n \"2603:1000:104:2::100/121\",\r\n
+ \ \"2603:1000:104:402::150/124\",\r\n \"2603:1010:6::600/121\",\r\n
+ \ \"2603:1010:6:402::150/124\",\r\n \"2603:1010:101:1::380/121\",\r\n
+ \ \"2603:1010:101:402::150/124\",\r\n \"2603:1010:304:1::380/121\",\r\n
+ \ \"2603:1010:304:402::150/124\",\r\n \"2603:1010:404:1::380/121\",\r\n
+ \ \"2603:1010:404:402::150/124\",\r\n \"2603:1020:5::600/121\",\r\n
+ \ \"2603:1020:5:402::150/124\",\r\n \"2603:1020:206::600/121\",\r\n
+ \ \"2603:1020:206:402::150/124\",\r\n \"2603:1020:305:402::150/124\",\r\n
+ \ \"2603:1020:405:402::150/124\",\r\n \"2603:1020:605:1::380/121\",\r\n
+ \ \"2603:1020:605:402::150/124\",\r\n \"2603:1020:705::600/121\",\r\n
+ \ \"2603:1020:705:402::150/124\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\",\r\n \"2603:1020:905:1::380/121\",\r\n
+ \ \"2603:1020:905:402::150/124\",\r\n \"2603:1020:a04::600/121\",\r\n
+ \ \"2603:1020:a04:402::150/124\",\r\n \"2603:1020:b04:1::380/121\",\r\n
+ \ \"2603:1020:b04:402::150/124\",\r\n \"2603:1020:c04::600/121\",\r\n
+ \ \"2603:1020:c04:402::150/124\",\r\n \"2603:1020:d04:1::380/121\",\r\n
+ \ \"2603:1020:d04:402::150/124\",\r\n \"2603:1020:e04::600/121\",\r\n
+ \ \"2603:1020:e04:402::150/124\",\r\n \"2603:1020:f04:1::380/121\",\r\n
+ \ \"2603:1020:f04:402::150/124\",\r\n \"2603:1020:1004:2::100/121\",\r\n
+ \ \"2603:1020:1004:800::d0/124\",\r\n \"2603:1020:1104:1::600/121\",\r\n
+ \ \"2603:1020:1104:400::150/124\",\r\n \"2603:1030:f:2::380/121\",\r\n
+ \ \"2603:1030:f:400::950/124\",\r\n \"2603:1030:10::600/121\",\r\n
+ \ \"2603:1030:10:402::150/124\",\r\n \"2603:1030:104::600/121\",\r\n
+ \ \"2603:1030:104:402::150/124\",\r\n \"2603:1030:107:1::300/121\",\r\n
+ \ \"2603:1030:107:400::e0/124\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\",\r\n \"2603:1030:40b:2::400/121\",\r\n
+ \ \"2603:1030:40b:400::950/124\",\r\n \"2603:1030:40c::600/121\",\r\n
+ \ \"2603:1030:40c:402::150/124\",\r\n \"2603:1030:504:2::180/121\",\r\n
+ \ \"2603:1030:504:802::d0/124\",\r\n \"2603:1030:608:1::380/121\",\r\n
+ \ \"2603:1030:608:402::150/124\",\r\n \"2603:1030:807::600/121\",\r\n
+ \ \"2603:1030:807:402::150/124\",\r\n \"2603:1030:a07:1::380/121\",\r\n
+ \ \"2603:1030:a07:402::8d0/124\",\r\n \"2603:1030:b04:1::380/121\",\r\n
+ \ \"2603:1030:b04:402::150/124\",\r\n \"2603:1030:c06:2::400/121\",\r\n
+ \ \"2603:1030:c06:400::950/124\",\r\n \"2603:1030:f05::600/121\",\r\n
+ \ \"2603:1030:f05:402::150/124\",\r\n \"2603:1030:1005:1::380/121\",\r\n
+ \ \"2603:1030:1005:402::150/124\",\r\n \"2603:1040:5::700/121\",\r\n
+ \ \"2603:1040:5:402::150/124\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\",\r\n \"2603:1040:407::600/121\",\r\n
+ \ \"2603:1040:407:402::150/124\",\r\n \"2603:1040:606:1::380/121\",\r\n
+ \ \"2603:1040:606:402::150/124\",\r\n \"2603:1040:806:1::380/121\",\r\n
+ \ \"2603:1040:806:402::150/124\",\r\n \"2603:1040:904::600/121\",\r\n
+ \ \"2603:1040:904:402::150/124\",\r\n \"2603:1040:a06::700/121\",\r\n
+ \ \"2603:1040:a06:402::150/124\",\r\n \"2603:1040:b04:1::380/121\",\r\n
+ \ \"2603:1040:b04:402::150/124\",\r\n \"2603:1040:c06:1::380/121\",\r\n
+ \ \"2603:1040:c06:402::150/124\",\r\n \"2603:1040:d04:2::280/121\",\r\n
+ \ \"2603:1040:d04:800::d0/124\",\r\n \"2603:1040:e05::180/121\",\r\n
+ \ \"2603:1040:f05::600/121\",\r\n \"2603:1040:f05:402::150/124\",\r\n
+ \ \"2603:1040:1104:1::680/121\",\r\n \"2603:1040:1104:400::150/124\",\r\n
+ \ \"2603:1050:6::600/121\",\r\n \"2603:1050:6:402::150/124\",\r\n
+ \ \"2603:1050:403:1::400/121\",\r\n \"2603:1050:403:400::2b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.EastAsia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.0/28\",\r\n \"20.189.74.103/32\",\r\n
+ \ \"40.81.28.50/32\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.EastUS\",\r\n \"id\":
+ \"AzureDataExplorerManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureDataExplorerManagement\",\r\n \"addressPrefixes\": [\r\n \"20.185.100.27/32\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"52.224.146.56/32\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.FranceCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.66.57.57/32\",\r\n \"40.66.57.91/32\",\r\n
+ \ \"40.79.131.224/28\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n
+ \ \"2603:1020:c04::600/121\",\r\n \"2603:1020:c04:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.SouthIndia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.195.240/28\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"2603:1040:c06:1::380/121\",\r\n \"2603:1040:c06:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.WestUS\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.WestUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.86.219.64/28\",\r\n
+ \ \"2603:1030:a07:1::380/121\",\r\n \"2603:1030:a07:402::8d0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake\",\r\n
+ \ \"id\": \"AzureDataLake\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\",\r\n
+ \ \"40.90.141.128/29\",\r\n \"40.90.141.167/32\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.145.192/26\",\r\n \"65.52.108.31/32\",\r\n \"65.52.108.38/32\",\r\n
+ \ \"104.44.88.66/31\",\r\n \"104.44.88.106/31\",\r\n \"104.44.88.112/31\",\r\n
+ \ \"104.44.88.176/31\",\r\n \"104.44.88.184/29\",\r\n \"104.44.89.39/32\",\r\n
+ \ \"104.44.89.42/32\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.194/31\",\r\n
+ \ \"104.44.91.64/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.93.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureDataLake.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.WestEurope\",\r\n
+ \ \"id\": \"AzureDataLake.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.141.167/32\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"104.44.90.194/31\",\r\n \"104.44.93.192/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces\",\r\n \"id\":
+ \"AzureDevSpaces\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.71.144/28\",\r\n \"13.70.78.176/28\",\r\n
+ \ \"13.71.175.112/28\",\r\n \"13.71.199.96/28\",\r\n \"13.73.244.128/28\",\r\n
+ \ \"13.74.111.128/28\",\r\n \"13.78.111.144/28\",\r\n \"13.86.221.224/28\",\r\n
+ \ \"20.37.157.64/28\",\r\n \"20.37.195.80/28\",\r\n \"20.38.85.128/28\",\r\n
+ \ \"20.39.11.64/28\",\r\n \"20.41.5.128/28\",\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\",\r\n \"20.42.131.192/27\",\r\n
+ \ \"20.42.230.64/28\",\r\n \"20.43.65.208/28\",\r\n \"20.43.130.240/28\",\r\n
+ \ \"20.189.108.32/28\",\r\n \"40.69.110.176/28\",\r\n \"40.70.151.80/28\",\r\n
+ \ \"40.74.30.144/28\",\r\n \"40.75.35.224/28\",\r\n \"40.78.239.0/28\",\r\n
+ \ \"40.78.251.224/27\",\r\n \"40.82.253.112/28\",\r\n \"40.89.17.192/28\",\r\n
+ \ \"40.119.9.240/28\",\r\n \"51.104.25.208/28\",\r\n \"51.105.77.64/28\",\r\n
+ \ \"52.150.139.144/28\",\r\n \"52.182.141.128/28\",\r\n \"52.228.81.224/28\",\r\n
+ \ \"104.214.161.48/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureDevSpaces.EastUS\",\r\n \"id\": \"AzureDevSpaces.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureDevSpaces\",\r\n \"addressPrefixes\": [\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.128/28\",\r\n \"40.70.151.80/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.11.64/28\",\r\n \"40.75.35.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.JapanEast\",\r\n
+ \ \"id\": \"AzureDevSpaces.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.78.111.144/28\",\r\n \"20.43.65.208/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.NorthEurope\",\r\n
+ \ \"id\": \"AzureDevSpaces.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.74.111.128/28\",\r\n \"20.38.85.128/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureDevSpaces.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.130.240/28\",\r\n \"40.78.239.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.224/28\",\r\n \"40.82.253.112/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.131.192/27\",\r\n \"40.78.251.224/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDigitalTwins\",\r\n
+ \ \"id\": \"AzureDigitalTwins\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDigitalTwins\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.125.120/29\",\r\n \"20.36.125.192/27\",\r\n
+ \ \"20.37.70.112/29\",\r\n \"20.37.70.192/27\",\r\n \"20.38.142.112/29\",\r\n
+ \ \"20.38.142.192/27\",\r\n \"20.39.2.134/32\",\r\n \"20.39.2.208/32\",\r\n
+ \ \"20.39.2.237/32\",\r\n \"20.39.3.11/32\",\r\n \"20.39.3.14/32\",\r\n
+ \ \"20.39.3.17/32\",\r\n \"20.39.3.38/32\",\r\n \"20.39.18.169/32\",\r\n
+ \ \"20.40.225.48/29\",\r\n \"20.40.225.128/27\",\r\n \"20.43.47.72/29\",\r\n
+ \ \"20.43.47.96/27\",\r\n \"20.45.116.80/29\",\r\n \"20.45.116.96/27\",\r\n
+ \ \"20.46.10.56/29\",\r\n \"20.46.10.96/27\",\r\n \"20.48.193.128/27\",\r\n
+ \ \"20.48.193.160/29\",\r\n \"20.49.103.112/29\",\r\n \"20.49.103.192/27\",\r\n
+ \ \"20.49.118.8/29\",\r\n \"20.49.118.32/27\",\r\n \"20.49.248.209/32\",\r\n
+ \ \"20.49.249.56/32\",\r\n \"20.49.249.78/32\",\r\n \"20.49.249.101/32\",\r\n
+ \ \"20.49.249.106/32\",\r\n \"20.49.249.156/32\",\r\n \"20.49.249.189/32\",\r\n
+ \ \"20.49.249.208/32\",\r\n \"20.49.249.236/32\",\r\n \"20.49.250.2/32\",\r\n
+ \ \"20.50.211.192/32\",\r\n \"20.50.212.99/32\",\r\n \"20.50.212.103/32\",\r\n
+ \ \"20.50.212.140/32\",\r\n \"20.50.213.6/32\",\r\n \"20.50.213.76/32\",\r\n
+ \ \"20.50.213.88/32\",\r\n \"20.50.213.93/32\",\r\n \"20.50.213.94/32\",\r\n
+ \ \"20.50.213.120/32\",\r\n \"20.51.8.96/27\",\r\n \"20.51.8.192/29\",\r\n
+ \ \"20.51.16.176/29\",\r\n \"20.51.17.0/27\",\r\n \"20.51.73.8/32\",\r\n
+ \ \"20.51.73.11/32\",\r\n \"20.51.73.22/31\",\r\n \"20.51.73.25/32\",\r\n
+ \ \"20.51.73.26/31\",\r\n \"20.51.73.36/32\",\r\n \"20.51.73.39/32\",\r\n
+ \ \"20.51.73.44/32\",\r\n \"20.53.44.88/29\",\r\n \"20.53.44.96/27\",\r\n
+ \ \"20.53.48.0/27\",\r\n \"20.53.48.32/29\",\r\n \"20.53.114.26/32\",\r\n
+ \ \"20.53.114.71/32\",\r\n \"20.53.114.84/32\",\r\n \"20.53.114.118/32\",\r\n
+ \ \"20.58.66.0/27\",\r\n \"20.58.66.32/29\",\r\n \"20.61.98.144/29\",\r\n
+ \ \"20.61.99.0/27\",\r\n \"20.62.129.32/27\",\r\n \"20.62.129.128/29\",\r\n
+ \ \"20.65.130.72/29\",\r\n \"20.65.130.96/27\",\r\n \"20.66.2.16/29\",\r\n
+ \ \"20.66.2.128/27\",\r\n \"20.72.20.0/27\",\r\n \"20.150.166.176/29\",\r\n
+ \ \"20.150.167.128/27\",\r\n \"20.185.75.6/32\",\r\n \"20.185.75.209/32\",\r\n
+ \ \"20.187.197.16/29\",\r\n \"20.187.197.128/27\",\r\n \"20.189.224.224/27\",\r\n
+ \ \"20.189.225.64/29\",\r\n \"20.191.161.96/27\",\r\n \"20.191.161.192/29\",\r\n
+ \ \"20.192.166.176/29\",\r\n \"20.192.167.128/27\",\r\n \"20.192.231.192/27\",\r\n
+ \ \"20.192.231.224/29\",\r\n \"20.193.3.89/32\",\r\n \"20.193.3.243/32\",\r\n
+ \ \"20.193.7.70/32\",\r\n \"20.193.7.132/32\",\r\n \"20.193.59.172/32\",\r\n
+ \ \"20.193.59.253/32\",\r\n \"20.194.72.136/29\",\r\n \"20.194.72.160/27\",\r\n
+ \ \"23.98.108.184/29\",\r\n \"23.98.109.0/27\",\r\n \"40.67.52.104/29\",\r\n
+ \ \"40.67.52.192/27\",\r\n \"40.80.173.208/29\",\r\n \"40.80.173.224/27\",\r\n
+ \ \"40.119.241.130/32\",\r\n \"40.119.241.148/32\",\r\n \"40.119.241.154/32\",\r\n
+ \ \"40.119.242.73/32\",\r\n \"40.119.242.79/32\",\r\n \"40.119.242.168/32\",\r\n
+ \ \"40.119.242.232/32\",\r\n \"40.119.243.20/32\",\r\n \"40.119.243.119/32\",\r\n
+ \ \"40.119.243.178/32\",\r\n \"40.124.97.243/32\",\r\n \"40.124.98.14/31\",\r\n
+ \ \"40.124.98.23/32\",\r\n \"40.124.98.34/31\",\r\n \"40.124.98.48/32\",\r\n
+ \ \"40.124.98.52/32\",\r\n \"40.124.98.70/32\",\r\n \"40.124.99.100/32\",\r\n
+ \ \"51.12.43.144/29\",\r\n \"51.12.43.160/27\",\r\n \"51.12.194.120/29\",\r\n
+ \ \"51.12.195.192/27\",\r\n \"51.13.136.128/27\",\r\n \"51.13.136.160/29\",\r\n
+ \ \"51.104.141.227/32\",\r\n \"51.107.241.64/27\",\r\n \"51.107.241.96/29\",\r\n
+ \ \"51.107.249.80/29\",\r\n \"51.107.249.96/27\",\r\n \"51.116.51.176/29\",\r\n
+ \ \"51.116.54.0/27\",\r\n \"51.116.148.120/29\",\r\n \"51.116.148.192/27\",\r\n
+ \ \"51.120.232.40/29\",\r\n \"51.120.232.128/27\",\r\n \"51.143.208.208/29\",\r\n
+ \ \"51.143.208.224/27\",\r\n \"52.136.52.248/29\",\r\n \"52.136.53.64/27\",\r\n
+ \ \"52.136.184.80/29\",\r\n \"52.136.184.96/27\",\r\n \"52.139.106.96/27\",\r\n
+ \ \"52.140.111.112/29\",\r\n \"52.140.111.192/27\",\r\n \"52.142.120.18/32\",\r\n
+ \ \"52.142.120.22/32\",\r\n \"52.142.120.57/32\",\r\n \"52.142.120.74/32\",\r\n
+ \ \"52.142.120.90/32\",\r\n \"52.142.120.104/32\",\r\n \"52.142.120.156/32\",\r\n
+ \ \"52.146.132.192/27\",\r\n \"52.146.132.224/29\",\r\n \"52.148.29.27/32\",\r\n
+ \ \"52.149.20.142/32\",\r\n \"52.149.234.152/32\",\r\n \"52.149.238.190/32\",\r\n
+ \ \"52.149.239.34/32\",\r\n \"52.150.156.248/29\",\r\n \"52.150.157.32/27\",\r\n
+ \ \"52.153.153.146/32\",\r\n \"52.153.153.246/32\",\r\n \"52.153.153.255/32\",\r\n
+ \ \"52.153.154.13/32\",\r\n \"52.153.154.40/32\",\r\n \"52.153.154.123/32\",\r\n
+ \ \"52.153.154.158/32\",\r\n \"52.153.154.161/32\",\r\n \"52.156.207.58/32\",\r\n
+ \ \"52.156.207.195/32\",\r\n \"52.161.185.49/32\",\r\n \"52.170.161.49/32\",\r\n
+ \ \"52.170.162.28/32\",\r\n \"52.172.112.168/29\",\r\n \"52.172.113.0/27\",\r\n
+ \ \"52.186.106.218/32\",\r\n \"52.191.16.191/32\",\r\n \"52.191.18.106/32\",\r\n
+ \ \"52.247.76.74/32\",\r\n \"52.247.76.167/32\",\r\n \"52.247.76.187/32\",\r\n
+ \ \"52.247.76.199/32\",\r\n \"52.247.76.216/32\",\r\n \"52.247.76.246/32\",\r\n
+ \ \"52.247.76.252/32\",\r\n \"52.247.77.7/32\",\r\n \"52.247.77.22/32\",\r\n
+ \ \"52.247.77.26/32\",\r\n \"52.250.39.158/32\",\r\n \"52.250.39.236/32\",\r\n
+ \ \"52.250.39.246/32\",\r\n \"52.250.39.250/32\",\r\n \"52.250.72.145/32\",\r\n
+ \ \"52.250.73.36/32\",\r\n \"52.250.73.178/32\",\r\n \"52.250.73.204/32\",\r\n
+ \ \"52.250.74.3/32\",\r\n \"52.253.224.146/32\",\r\n \"52.253.224.154/32\",\r\n
+ \ \"102.37.80.0/27\",\r\n \"102.37.80.32/29\",\r\n \"102.133.221.16/29\",\r\n
+ \ \"102.133.221.32/27\",\r\n \"104.46.178.120/29\",\r\n \"104.46.178.160/27\",\r\n
+ \ \"191.233.15.16/29\",\r\n \"191.233.15.32/27\",\r\n \"191.234.139.168/29\",\r\n
+ \ \"191.234.142.0/27\",\r\n \"2603:1020:e04::700/121\",\r\n
+ \ \"2603:1020:1004:1::540/122\",\r\n \"2603:1020:1004:2::/121\",\r\n
+ \ \"2603:1020:1104:1::380/122\",\r\n \"2603:1020:1104:1::680/121\",\r\n
+ \ \"2603:1030:f:2::500/121\",\r\n \"2603:1030:107::5c0/122\",\r\n
+ \ \"2603:1030:504::560/123\",\r\n \"2603:1030:504:2::/121\",\r\n
+ \ \"2603:1040:d04:1::540/122\",\r\n \"2603:1040:d04:2::80/121\",\r\n
+ \ \"2603:1040:f05::700/121\",\r\n \"2603:1040:1104:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid\",\r\n
+ \ \"id\": \"AzureEventGrid\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.56.240/28\",\r\n \"13.71.57.0/28\",\r\n \"13.73.248.128/25\",\r\n
+ \ \"13.86.56.32/27\",\r\n \"13.86.56.160/27\",\r\n \"13.88.73.16/28\",\r\n
+ \ \"13.88.73.32/27\",\r\n \"13.88.135.208/28\",\r\n \"13.91.193.0/28\",\r\n
+ \ \"20.36.121.0/25\",\r\n \"20.37.55.32/27\",\r\n \"20.37.65.0/25\",\r\n
+ \ \"20.37.82.224/27\",\r\n \"20.37.157.128/25\",\r\n \"20.37.196.0/25\",\r\n
+ \ \"20.37.225.0/25\",\r\n \"20.38.87.0/25\",\r\n \"20.38.137.0/25\",\r\n
+ \ \"20.39.11.128/25\",\r\n \"20.39.20.16/28\",\r\n \"20.39.80.112/28\",\r\n
+ \ \"20.39.80.128/28\",\r\n \"20.39.99.64/28\",\r\n \"20.39.99.240/28\",\r\n
+ \ \"20.40.152.128/27\",\r\n \"20.40.175.48/28\",\r\n \"20.40.175.64/28\",\r\n
+ \ \"20.41.66.0/25\",\r\n \"20.41.136.240/28\",\r\n \"20.41.195.0/25\",\r\n
+ \ \"20.42.7.0/25\",\r\n \"20.42.228.0/25\",\r\n \"20.43.42.128/25\",\r\n
+ \ \"20.43.66.128/25\",\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.39.176/28\",\r\n \"20.44.39.192/28\",\r\n
+ \ \"20.44.168.64/28\",\r\n \"20.44.205.112/28\",\r\n \"20.45.113.0/25\",\r\n
+ \ \"20.45.195.0/25\",\r\n \"20.46.152.112/28\",\r\n \"20.46.152.128/28\",\r\n
+ \ \"20.49.96.0/25\",\r\n \"20.52.90.128/25\",\r\n \"20.72.17.128/25\",\r\n
+ \ \"20.150.164.0/25\",\r\n \"20.189.108.128/25\",\r\n \"20.189.115.80/28\",\r\n
+ \ \"20.189.123.80/28\",\r\n \"20.189.125.32/27\",\r\n \"20.191.59.128/28\",\r\n
+ \ \"20.191.59.176/28\",\r\n \"20.192.164.0/25\",\r\n \"20.192.228.0/25\",\r\n
+ \ \"20.193.34.0/28\",\r\n \"20.193.34.32/28\",\r\n \"40.64.128.0/25\",\r\n
+ \ \"40.67.49.0/25\",\r\n \"40.74.31.128/25\",\r\n \"40.74.106.96/27\",\r\n
+ \ \"40.80.58.0/25\",\r\n \"40.80.170.0/25\",\r\n \"40.80.190.0/25\",\r\n
+ \ \"40.80.236.192/27\",\r\n \"40.81.93.240/28\",\r\n \"40.81.95.128/28\",\r\n
+ \ \"40.82.254.128/25\",\r\n \"40.89.18.0/25\",\r\n \"40.89.240.144/28\",\r\n
+ \ \"40.114.160.176/28\",\r\n \"40.114.160.192/28\",\r\n \"40.114.169.0/28\",\r\n
+ \ \"40.127.155.192/28\",\r\n \"40.127.251.144/28\",\r\n \"51.12.47.128/25\",\r\n
+ \ \"51.12.199.0/25\",\r\n \"51.104.27.128/25\",\r\n \"51.105.81.0/25\",\r\n
+ \ \"51.105.89.0/25\",\r\n \"51.107.4.128/27\",\r\n \"51.107.49.0/25\",\r\n
+ \ \"51.107.99.32/27\",\r\n \"51.107.145.0/25\",\r\n \"51.116.3.32/27\",\r\n
+ \ \"51.116.72.0/25\",\r\n \"51.116.100.208/28\",\r\n \"51.116.100.224/28\",\r\n
+ \ \"51.120.4.0/27\",\r\n \"51.120.41.0/25\",\r\n \"51.120.131.64/27\",\r\n
+ \ \"51.120.225.0/25\",\r\n \"51.132.161.160/28\",\r\n \"51.132.170.64/28\",\r\n
+ \ \"51.137.16.224/28\",\r\n \"51.137.142.32/28\",\r\n \"51.137.162.0/25\",\r\n
+ \ \"51.143.193.0/25\",\r\n \"52.136.49.0/25\",\r\n \"52.139.9.80/28\",\r\n
+ \ \"52.139.11.16/28\",\r\n \"52.139.85.16/28\",\r\n \"52.139.85.32/28\",\r\n
+ \ \"52.140.106.0/25\",\r\n \"52.142.152.144/28\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.149.248.0/28\",\r\n
+ \ \"52.149.248.64/27\",\r\n \"52.149.248.96/28\",\r\n \"52.150.140.0/25\",\r\n
+ \ \"52.154.57.48/28\",\r\n \"52.154.57.80/28\",\r\n \"52.154.68.16/28\",\r\n
+ \ \"52.154.68.32/28\",\r\n \"52.156.103.192/28\",\r\n \"52.159.49.144/28\",\r\n
+ \ \"52.159.51.160/28\",\r\n \"52.159.53.64/28\",\r\n \"52.159.53.112/28\",\r\n
+ \ \"52.160.136.16/28\",\r\n \"52.160.136.32/28\",\r\n \"52.161.186.128/28\",\r\n
+ \ \"52.161.186.208/28\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.170.171.192/28\",\r\n \"52.170.171.240/28\",\r\n
+ \ \"52.177.38.160/27\",\r\n \"52.185.176.112/28\",\r\n \"52.185.212.176/28\",\r\n
+ \ \"52.185.212.192/28\",\r\n \"52.186.36.16/28\",\r\n \"52.228.83.0/25\",\r\n
+ \ \"52.231.112.192/28\",\r\n \"52.231.112.224/28\",\r\n \"52.250.28.176/28\",\r\n
+ \ \"52.250.32.160/28\",\r\n \"52.252.213.192/28\",\r\n \"52.255.80.16/28\",\r\n
+ \ \"52.255.82.160/28\",\r\n \"102.37.162.0/25\",\r\n \"102.133.0.240/28\",\r\n
+ \ \"102.133.1.0/28\",\r\n \"102.133.57.0/25\",\r\n \"102.133.135.16/28\",\r\n
+ \ \"102.133.135.32/28\",\r\n \"191.233.9.128/25\",\r\n \"191.235.126.0/28\",\r\n
+ \ \"191.235.126.144/28\",\r\n \"191.235.227.0/25\",\r\n \"2603:1000:4::380/121\",\r\n
+ \ \"2603:1000:104:1::380/121\",\r\n \"2603:1010:6:1::380/121\",\r\n
+ \ \"2603:1010:101::380/121\",\r\n \"2603:1010:304::380/121\",\r\n
+ \ \"2603:1010:404::380/121\",\r\n \"2603:1020:5:1::380/121\",\r\n
+ \ \"2603:1020:206:1::380/121\",\r\n \"2603:1020:305::380/121\",\r\n
+ \ \"2603:1020:405::380/121\",\r\n \"2603:1020:605::380/121\",\r\n
+ \ \"2603:1020:705:1::380/121\",\r\n \"2603:1020:805:1::380/121\",\r\n
+ \ \"2603:1020:905::380/121\",\r\n \"2603:1020:a04:1::380/121\",\r\n
+ \ \"2603:1020:b04::380/121\",\r\n \"2603:1020:c04:1::380/121\",\r\n
+ \ \"2603:1020:d04::380/121\",\r\n \"2603:1020:e04:1::380/121\",\r\n
+ \ \"2603:1020:f04::380/121\",\r\n \"2603:1020:1004::380/121\",\r\n
+ \ \"2603:1020:1104::280/121\",\r\n \"2603:1030:f:1::380/121\",\r\n
+ \ \"2603:1030:10:1::380/121\",\r\n \"2603:1030:104:1::380/121\",\r\n
+ \ \"2603:1030:107::280/121\",\r\n \"2603:1030:210:1::380/121\",\r\n
+ \ \"2603:1030:40b:1::380/121\",\r\n \"2603:1030:40c:1::380/121\",\r\n
+ \ \"2603:1030:504:1::380/121\",\r\n \"2603:1030:608::380/121\",\r\n
+ \ \"2603:1030:807:1::380/121\",\r\n \"2603:1030:a07::380/121\",\r\n
+ \ \"2603:1030:b04::380/121\",\r\n \"2603:1030:c06:1::380/121\",\r\n
+ \ \"2603:1030:f05:1::380/121\",\r\n \"2603:1030:1005::380/121\",\r\n
+ \ \"2603:1040:5:1::380/121\",\r\n \"2603:1040:207::380/121\",\r\n
+ \ \"2603:1040:407:1::380/121\",\r\n \"2603:1040:606::380/121\",\r\n
+ \ \"2603:1040:806::380/121\",\r\n \"2603:1040:904:1::380/121\",\r\n
+ \ \"2603:1040:a06:1::380/121\",\r\n \"2603:1040:b04::380/121\",\r\n
+ \ \"2603:1040:c06::380/121\",\r\n \"2603:1040:d04::380/121\",\r\n
+ \ \"2603:1040:f05:1::380/121\",\r\n \"2603:1040:1104::280/121\",\r\n
+ \ \"2603:1050:6:1::380/121\",\r\n \"2603:1050:403::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.CanadaCentral\",\r\n
+ \ \"id\": \"AzureEventGrid.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.139.9.80/28\",\r\n \"52.139.11.16/28\",\r\n
+ \ \"52.228.83.0/25\",\r\n \"2603:1030:f05:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.EastUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.96.0/25\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.177.38.160/27\",\r\n \"2603:1030:40c:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureEventGrid.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.205.112/28\",\r\n \"2603:1040:5:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SouthIndia\",\r\n
+ \ \"id\": \"AzureEventGrid.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.195.0/25\",\r\n \"20.44.39.176/28\",\r\n
+ \ \"20.44.39.192/28\",\r\n \"2603:1040:c06::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UAENorth\",\r\n
+ \ \"id\": \"AzureEventGrid.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.137.0/25\",\r\n \"20.46.152.112/28\",\r\n
+ \ \"20.46.152.128/28\",\r\n \"2603:1040:904:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.27.128/25\",\r\n \"51.132.161.160/28\",\r\n
+ \ \"51.132.170.64/28\",\r\n \"2603:1020:705:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth2\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.193.0/25\",\r\n \"2603:1020:405::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.WestUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"40.64.128.0/25\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.156.103.192/28\",\r\n
+ \ \"52.250.28.176/28\",\r\n \"52.250.32.160/28\",\r\n \"2603:1030:c06:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFrontDoor.Backend\",\r\n
+ \ \"id\": \"AzureFrontDoor.Backend\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.16/29\",\r\n \"20.36.120.104/29\",\r\n
+ \ \"20.37.64.104/29\",\r\n \"20.37.156.120/29\",\r\n \"20.37.195.0/29\",\r\n
+ \ \"20.37.224.104/29\",\r\n \"20.38.84.72/29\",\r\n \"20.38.136.104/29\",\r\n
+ \ \"20.39.11.8/29\",\r\n \"20.41.4.88/29\",\r\n \"20.41.64.120/29\",\r\n
+ \ \"20.41.192.104/29\",\r\n \"20.42.4.120/29\",\r\n \"20.42.129.152/29\",\r\n
+ \ \"20.42.224.104/29\",\r\n \"20.43.41.136/29\",\r\n \"20.43.65.128/29\",\r\n
+ \ \"20.43.130.80/29\",\r\n \"20.45.112.104/29\",\r\n \"20.45.192.104/29\",\r\n
+ \ \"20.72.18.248/29\",\r\n \"20.150.160.96/29\",\r\n \"20.189.106.112/29\",\r\n
+ \ \"20.192.161.104/29\",\r\n \"20.192.225.48/29\",\r\n \"40.67.48.104/29\",\r\n
+ \ \"40.74.30.72/29\",\r\n \"40.80.56.104/29\",\r\n \"40.80.168.104/29\",\r\n
+ \ \"40.80.184.120/29\",\r\n \"40.82.248.248/29\",\r\n \"40.89.16.104/29\",\r\n
+ \ \"51.12.41.8/29\",\r\n \"51.12.193.8/29\",\r\n \"51.104.25.128/29\",\r\n
+ \ \"51.105.80.104/29\",\r\n \"51.105.88.104/29\",\r\n \"51.107.48.104/29\",\r\n
+ \ \"51.107.144.104/29\",\r\n \"51.120.40.104/29\",\r\n \"51.120.224.104/29\",\r\n
+ \ \"51.137.160.112/29\",\r\n \"51.143.192.104/29\",\r\n \"52.136.48.104/29\",\r\n
+ \ \"52.140.104.104/29\",\r\n \"52.150.136.120/29\",\r\n \"52.228.80.120/29\",\r\n
+ \ \"102.133.56.88/29\",\r\n \"102.133.216.88/29\",\r\n \"147.243.0.0/16\",\r\n
+ \ \"191.233.9.120/29\",\r\n \"191.235.225.128/29\",\r\n \"2603:1000:4::600/123\",\r\n
+ \ \"2603:1000:104::e0/123\",\r\n \"2603:1000:104::300/123\",\r\n
+ \ \"2603:1000:104:1::5c0/123\",\r\n \"2603:1000:104:1::7e0/123\",\r\n
+ \ \"2603:1010:6:1::5c0/123\",\r\n \"2603:1010:6:1::7e0/123\",\r\n
+ \ \"2603:1010:101::600/123\",\r\n \"2603:1010:304::600/123\",\r\n
+ \ \"2603:1010:404::600/123\",\r\n \"2603:1020:5:1::5c0/123\",\r\n
+ \ \"2603:1020:5:1::7e0/123\",\r\n \"2603:1020:206:1::5c0/123\",\r\n
+ \ \"2603:1020:206:1::7e0/123\",\r\n \"2603:1020:305::600/123\",\r\n
+ \ \"2603:1020:405::600/123\",\r\n \"2603:1020:605::600/123\",\r\n
+ \ \"2603:1020:705:1::5c0/123\",\r\n \"2603:1020:705:1::7e0/123\",\r\n
+ \ \"2603:1020:805:1::5c0/123\",\r\n \"2603:1020:805:1::7e0/123\",\r\n
+ \ \"2603:1020:905::600/123\",\r\n \"2603:1020:a04:1::5c0/123\",\r\n
+ \ \"2603:1020:a04:1::7e0/123\",\r\n \"2603:1020:b04::600/123\",\r\n
+ \ \"2603:1020:c04:1::5c0/123\",\r\n \"2603:1020:c04:1::7e0/123\",\r\n
+ \ \"2603:1020:d04::600/123\",\r\n \"2603:1020:e04:1::5c0/123\",\r\n
+ \ \"2603:1020:e04:1::7e0/123\",\r\n \"2603:1020:f04::600/123\",\r\n
+ \ \"2603:1020:1004::5c0/123\",\r\n \"2603:1020:1004::7e0/123\",\r\n
+ \ \"2603:1020:1104::680/123\",\r\n \"2603:1030:f:1::600/123\",\r\n
+ \ \"2603:1030:10:1::5c0/123\",\r\n \"2603:1030:10:1::7e0/123\",\r\n
+ \ \"2603:1030:104:1::5c0/123\",\r\n \"2603:1030:104:1::7e0/123\",\r\n
+ \ \"2603:1030:107::6a0/123\",\r\n \"2603:1030:210:1::5c0/123\",\r\n
+ \ \"2603:1030:210:1::7e0/123\",\r\n \"2603:1030:40b:1::5c0/123\",\r\n
+ \ \"2603:1030:40c:1::5c0/123\",\r\n \"2603:1030:40c:1::7e0/123\",\r\n
+ \ \"2603:1030:504:1::5c0/123\",\r\n \"2603:1030:504:1::7e0/123\",\r\n
+ \ \"2603:1030:608::600/123\",\r\n \"2603:1030:807:1::5c0/123\",\r\n
+ \ \"2603:1030:807:1::7e0/123\",\r\n \"2603:1030:a07::600/123\",\r\n
+ \ \"2603:1030:b04::600/123\",\r\n \"2603:1030:c06:1::5c0/123\",\r\n
+ \ \"2603:1030:f05:1::5c0/123\",\r\n \"2603:1030:f05:1::7e0/123\",\r\n
+ \ \"2603:1030:1005::600/123\",\r\n \"2603:1040:5::e0/123\",\r\n
+ \ \"2603:1040:5:1::5c0/123\",\r\n \"2603:1040:5:1::7e0/123\",\r\n
+ \ \"2603:1040:207::600/123\",\r\n \"2603:1040:407:1::5c0/123\",\r\n
+ \ \"2603:1040:407:1::7e0/123\",\r\n \"2603:1040:606::600/123\",\r\n
+ \ \"2603:1040:806::600/123\",\r\n \"2603:1040:904:1::5c0/123\",\r\n
+ \ \"2603:1040:904:1::7e0/123\",\r\n \"2603:1040:a06::e0/123\",\r\n
+ \ \"2603:1040:a06:1::5c0/123\",\r\n \"2603:1040:a06:1::7e0/123\",\r\n
+ \ \"2603:1040:b04::600/123\",\r\n \"2603:1040:c06::600/123\",\r\n
+ \ \"2603:1040:d04::5c0/123\",\r\n \"2603:1040:d04::7e0/123\",\r\n
+ \ \"2603:1040:f05:1::5c0/123\",\r\n \"2603:1040:f05:1::7e0/123\",\r\n
+ \ \"2603:1040:1104::680/123\",\r\n \"2603:1050:6:1::5c0/123\",\r\n
+ \ \"2603:1050:6:1::7e0/123\",\r\n \"2603:1050:403::5c0/123\",\r\n
+ \ \"2a01:111:2050::/44\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.FirstParty\",\r\n \"id\": \"AzureFrontDoor.FirstParty\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureFrontDoor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.107.3.0/24\",\r\n \"13.107.4.0/22\",\r\n \"13.107.9.0/24\",\r\n
+ \ \"13.107.12.0/23\",\r\n \"13.107.15.0/24\",\r\n \"13.107.16.0/24\",\r\n
+ \ \"13.107.18.0/23\",\r\n \"13.107.21.0/24\",\r\n \"13.107.22.0/24\",\r\n
+ \ \"13.107.37.0/24\",\r\n \"13.107.38.0/23\",\r\n \"13.107.40.0/24\",\r\n
+ \ \"13.107.42.0/23\",\r\n \"13.107.48.0/24\",\r\n \"13.107.50.0/24\",\r\n
+ \ \"13.107.52.0/24\",\r\n \"13.107.54.0/24\",\r\n \"13.107.56.0/24\",\r\n
+ \ \"13.107.64.0/18\",\r\n \"13.107.128.0/19\",\r\n \"13.107.245.0/24\",\r\n
+ \ \"13.107.254.0/23\",\r\n \"131.253.3.0/24\",\r\n \"131.253.21.0/24\",\r\n
+ \ \"131.253.33.0/24\",\r\n \"150.171.32.0/19\",\r\n \"202.89.233.96/28\",\r\n
+ \ \"204.79.197.0/24\",\r\n \"2620:1ec:4::/46\",\r\n \"2620:1ec:a::/47\",\r\n
+ \ \"2620:1ec:c::/47\",\r\n \"2620:1ec:12::/47\",\r\n \"2620:1ec:21::/48\",\r\n
+ \ \"2620:1ec:22::/48\",\r\n \"2620:1ec:26::/63\",\r\n \"2620:1ec:26:2::/64\",\r\n
+ \ \"2620:1ec:28::/48\",\r\n \"2620:1ec:34::/48\",\r\n \"2620:1ec:39::/48\",\r\n
+ \ \"2620:1ec:3e::/47\",\r\n \"2620:1ec:42::/47\",\r\n \"2620:1ec:44::/47\",\r\n
+ \ \"2620:1ec:8f0::/44\",\r\n \"2620:1ec:900::/44\",\r\n \"2620:1ec:a92::/48\",\r\n
+ \ \"2620:1ec:c11::/48\",\r\n \"2a01:111:2003::/48\",\r\n
+ \ \"2a01:111:202c::/46\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.Frontend\",\r\n \"id\": \"AzureFrontDoor.Frontend\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.8/29\",\r\n \"13.107.208.0/24\",\r\n \"13.107.213.0/24\",\r\n
+ \ \"13.107.219.0/24\",\r\n \"13.107.224.0/24\",\r\n \"13.107.246.0/24\",\r\n
+ \ \"13.107.253.0/24\",\r\n \"20.36.120.96/29\",\r\n \"20.37.64.96/29\",\r\n
+ \ \"20.37.156.112/29\",\r\n \"20.37.192.88/29\",\r\n \"20.37.224.96/29\",\r\n
+ \ \"20.38.84.64/29\",\r\n \"20.38.136.96/29\",\r\n \"20.39.11.0/29\",\r\n
+ \ \"20.41.4.80/29\",\r\n \"20.41.64.112/29\",\r\n \"20.41.192.96/29\",\r\n
+ \ \"20.42.4.112/29\",\r\n \"20.42.129.144/29\",\r\n \"20.42.224.96/29\",\r\n
+ \ \"20.43.41.128/29\",\r\n \"20.43.64.88/29\",\r\n \"20.43.128.104/29\",\r\n
+ \ \"20.45.112.96/29\",\r\n \"20.45.192.96/29\",\r\n \"20.72.18.240/29\",\r\n
+ \ \"20.150.160.72/29\",\r\n \"20.189.106.72/29\",\r\n \"20.192.161.96/29\",\r\n
+ \ \"20.192.225.40/29\",\r\n \"40.67.48.96/29\",\r\n \"40.74.30.64/29\",\r\n
+ \ \"40.80.56.96/29\",\r\n \"40.80.168.96/29\",\r\n \"40.80.184.112/29\",\r\n
+ \ \"40.82.248.72/29\",\r\n \"40.89.16.96/29\",\r\n \"51.12.41.0/29\",\r\n
+ \ \"51.12.193.0/29\",\r\n \"51.104.24.88/29\",\r\n \"51.105.80.96/29\",\r\n
+ \ \"51.105.88.96/29\",\r\n \"51.107.48.96/29\",\r\n \"51.107.144.96/29\",\r\n
+ \ \"51.120.40.96/29\",\r\n \"51.120.224.96/29\",\r\n \"51.137.160.88/29\",\r\n
+ \ \"51.143.192.96/29\",\r\n \"52.136.48.96/29\",\r\n \"52.140.104.96/29\",\r\n
+ \ \"52.150.136.112/29\",\r\n \"52.228.80.112/29\",\r\n \"102.133.56.80/29\",\r\n
+ \ \"102.133.216.80/29\",\r\n \"191.233.9.112/29\",\r\n \"191.235.224.88/29\",\r\n
+ \ \"2603:1000:4::5e0/123\",\r\n \"2603:1000:104::c0/123\",\r\n
+ \ \"2603:1000:104::160/123\",\r\n \"2603:1000:104:1::5a0/123\",\r\n
+ \ \"2603:1000:104:1::7c0/123\",\r\n \"2603:1010:6:1::5a0/123\",\r\n
+ \ \"2603:1010:6:1::7c0/123\",\r\n \"2603:1010:101::5e0/123\",\r\n
+ \ \"2603:1010:304::5e0/123\",\r\n \"2603:1010:404::5e0/123\",\r\n
+ \ \"2603:1020:5:1::5a0/123\",\r\n \"2603:1020:5:1::7c0/123\",\r\n
+ \ \"2603:1020:206:1::5a0/123\",\r\n \"2603:1020:206:1::7c0/123\",\r\n
+ \ \"2603:1020:305::5e0/123\",\r\n \"2603:1020:405::5e0/123\",\r\n
+ \ \"2603:1020:605::5e0/123\",\r\n \"2603:1020:705:1::5a0/123\",\r\n
+ \ \"2603:1020:705:1::7c0/123\",\r\n \"2603:1020:805:1::5a0/123\",\r\n
+ \ \"2603:1020:805:1::7c0/123\",\r\n \"2603:1020:905::5e0/123\",\r\n
+ \ \"2603:1020:a04:1::5a0/123\",\r\n \"2603:1020:a04:1::7c0/123\",\r\n
+ \ \"2603:1020:b04::5e0/123\",\r\n \"2603:1020:c04:1::5a0/123\",\r\n
+ \ \"2603:1020:c04:1::7c0/123\",\r\n \"2603:1020:d04::5e0/123\",\r\n
+ \ \"2603:1020:e04:1::5a0/123\",\r\n \"2603:1020:e04:1::7c0/123\",\r\n
+ \ \"2603:1020:f04::5e0/123\",\r\n \"2603:1020:1004::5a0/123\",\r\n
+ \ \"2603:1020:1004::7c0/123\",\r\n \"2603:1020:1104::5e0/123\",\r\n
+ \ \"2603:1030:f:1::5e0/123\",\r\n \"2603:1030:10:1::5a0/123\",\r\n
+ \ \"2603:1030:10:1::7c0/123\",\r\n \"2603:1030:104:1::5a0/123\",\r\n
+ \ \"2603:1030:104:1::7c0/123\",\r\n \"2603:1030:107::680/123\",\r\n
+ \ \"2603:1030:210:1::5a0/123\",\r\n \"2603:1030:210:1::7c0/123\",\r\n
+ \ \"2603:1030:40b:1::5a0/123\",\r\n \"2603:1030:40c:1::5a0/123\",\r\n
+ \ \"2603:1030:40c:1::7c0/123\",\r\n \"2603:1030:504:1::5a0/123\",\r\n
+ \ \"2603:1030:504:1::7c0/123\",\r\n \"2603:1030:608::5e0/123\",\r\n
+ \ \"2603:1030:807:1::5a0/123\",\r\n \"2603:1030:807:1::7c0/123\",\r\n
+ \ \"2603:1030:a07::5e0/123\",\r\n \"2603:1030:b04::5e0/123\",\r\n
+ \ \"2603:1030:c06:1::5a0/123\",\r\n \"2603:1030:f05:1::5a0/123\",\r\n
+ \ \"2603:1030:f05:1::7c0/123\",\r\n \"2603:1030:1005::5e0/123\",\r\n
+ \ \"2603:1040:5::c0/123\",\r\n \"2603:1040:5:1::5a0/123\",\r\n
+ \ \"2603:1040:5:1::7c0/123\",\r\n \"2603:1040:207::5e0/123\",\r\n
+ \ \"2603:1040:407:1::5a0/123\",\r\n \"2603:1040:407:1::7c0/123\",\r\n
+ \ \"2603:1040:606::5e0/123\",\r\n \"2603:1040:806::5e0/123\",\r\n
+ \ \"2603:1040:904:1::5a0/123\",\r\n \"2603:1040:904:1::7c0/123\",\r\n
+ \ \"2603:1040:a06::c0/123\",\r\n \"2603:1040:a06:1::5a0/123\",\r\n
+ \ \"2603:1040:a06:1::7c0/123\",\r\n \"2603:1040:b04::5e0/123\",\r\n
+ \ \"2603:1040:c06::5e0/123\",\r\n \"2603:1040:d04::5a0/123\",\r\n
+ \ \"2603:1040:d04::7c0/123\",\r\n \"2603:1040:f05:1::5a0/123\",\r\n
+ \ \"2603:1040:f05:1::7c0/123\",\r\n \"2603:1040:1104::5e0/123\",\r\n
+ \ \"2603:1050:6:1::5a0/123\",\r\n \"2603:1050:6:1::7c0/123\",\r\n
+ \ \"2603:1050:403::5a0/123\",\r\n \"2620:1ec:29::/48\",\r\n
+ \ \"2620:1ec:40::/47\",\r\n \"2620:1ec:46::/47\",\r\n \"2620:1ec:bdf::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureInformationProtection\",\r\n
+ \ \"id\": \"AzureInformationProtection\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureInformationProtection\",\r\n \"addressPrefixes\": [\r\n \"13.66.153.57/32\",\r\n
+ \ \"13.66.245.220/32\",\r\n \"13.66.251.171/32\",\r\n \"13.67.114.221/32\",\r\n
+ \ \"13.68.179.152/32\",\r\n \"13.76.139.8/32\",\r\n \"13.76.244.119/32\",\r\n
+ \ \"13.77.166.40/32\",\r\n \"13.77.203.47/32\",\r\n \"13.78.130.67/32\",\r\n
+ \ \"13.78.130.185/32\",\r\n \"13.78.178.191/32\",\r\n \"13.79.189.239/32\",\r\n
+ \ \"13.79.189.241/32\",\r\n \"13.82.198.231/32\",\r\n \"13.83.91.144/32\",\r\n
+ \ \"13.92.58.123/32\",\r\n \"13.92.61.93/32\",\r\n \"13.93.72.133/32\",\r\n
+ \ \"13.93.75.214/32\",\r\n \"13.94.98.184/32\",\r\n \"13.94.116.226/32\",\r\n
+ \ \"23.97.70.206/32\",\r\n \"23.99.106.184/32\",\r\n \"23.99.114.156/32\",\r\n
+ \ \"23.99.251.107/32\",\r\n \"23.101.112.34/32\",\r\n \"23.101.147.227/32\",\r\n
+ \ \"23.101.163.169/32\",\r\n \"40.69.191.65/32\",\r\n \"40.70.16.196/32\",\r\n
+ \ \"40.76.94.49/32\",\r\n \"40.83.177.47/32\",\r\n \"40.83.223.214/32\",\r\n
+ \ \"40.87.2.166/32\",\r\n \"40.87.67.213/32\",\r\n \"40.87.94.91/32\",\r\n
+ \ \"40.114.2.72/32\",\r\n \"40.117.180.9/32\",\r\n \"40.121.48.207/32\",\r\n
+ \ \"40.121.49.153/32\",\r\n \"40.121.90.82/32\",\r\n \"40.127.160.102/32\",\r\n
+ \ \"40.127.175.173/32\",\r\n \"51.136.18.12/32\",\r\n \"51.141.184.35/32\",\r\n
+ \ \"51.143.32.47/32\",\r\n \"51.143.88.135/32\",\r\n \"51.144.167.90/32\",\r\n
+ \ \"51.145.146.97/32\",\r\n \"52.162.33.18/32\",\r\n \"52.162.37.146/32\",\r\n
+ \ \"52.162.88.200/32\",\r\n \"52.162.95.132/32\",\r\n \"52.162.208.48/32\",\r\n
+ \ \"52.163.61.51/32\",\r\n \"52.163.85.21/32\",\r\n \"52.163.85.129/32\",\r\n
+ \ \"52.163.87.92/32\",\r\n \"52.163.89.155/32\",\r\n \"52.163.89.160/32\",\r\n
+ \ \"52.165.189.139/32\",\r\n \"52.167.1.118/32\",\r\n \"52.167.225.247/32\",\r\n
+ \ \"52.167.226.2/32\",\r\n \"52.167.227.104/32\",\r\n \"52.167.227.154/32\",\r\n
+ \ \"52.173.21.111/32\",\r\n \"52.173.89.54/32\",\r\n \"52.173.89.66/32\",\r\n
+ \ \"52.173.93.137/32\",\r\n \"52.176.44.178/32\",\r\n \"52.178.145.186/32\",\r\n
+ \ \"52.178.147.96/32\",\r\n \"52.179.136.129/32\",\r\n \"52.184.34.233/32\",\r\n
+ \ \"52.184.35.49/32\",\r\n \"52.232.110.114/32\",\r\n \"52.232.113.160/32\",\r\n
+ \ \"52.232.118.97/32\",\r\n \"52.232.119.81/32\",\r\n \"52.237.141.83/32\",\r\n
+ \ \"52.237.141.229/32\",\r\n \"52.250.56.125/32\",\r\n \"65.52.36.85/32\",\r\n
+ \ \"65.52.55.108/32\",\r\n \"65.52.176.250/32\",\r\n \"65.52.177.192/32\",\r\n
+ \ \"65.52.184.44/32\",\r\n \"65.52.184.218/32\",\r\n \"65.52.236.123/32\",\r\n
+ \ \"70.37.163.131/32\",\r\n \"94.245.88.160/32\",\r\n \"104.40.16.135/32\",\r\n
+ \ \"104.40.30.29/32\",\r\n \"104.41.143.145/32\",\r\n \"137.116.91.123/32\",\r\n
+ \ \"137.117.47.75/32\",\r\n \"138.91.121.248/32\",\r\n \"138.91.122.178/32\",\r\n
+ \ \"157.55.177.248/32\",\r\n \"157.55.185.205/32\",\r\n \"157.56.8.93/32\",\r\n
+ \ \"157.56.8.135/32\",\r\n \"157.56.9.127/32\",\r\n \"168.61.46.212/32\",\r\n
+ \ \"168.62.5.167/32\",\r\n \"168.62.8.139/32\",\r\n \"168.62.25.173/32\",\r\n
+ \ \"168.62.25.179/32\",\r\n \"168.62.48.148/32\",\r\n \"168.62.49.18/32\",\r\n
+ \ \"168.62.52.244/32\",\r\n \"168.62.53.73/32\",\r\n \"168.62.53.132/32\",\r\n
+ \ \"168.62.54.75/32\",\r\n \"168.62.54.211/32\",\r\n \"168.62.54.212/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub\",\r\n
+ \ \"id\": \"AzureIoTHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.96/27\",\r\n \"13.67.10.224/27\",\r\n
+ \ \"13.67.234.22/32\",\r\n \"13.69.71.0/25\",\r\n \"13.69.109.0/25\",\r\n
+ \ \"13.69.192.43/32\",\r\n \"13.69.230.64/27\",\r\n \"13.70.74.192/27\",\r\n
+ \ \"13.70.182.204/32\",\r\n \"13.70.182.210/32\",\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"13.71.150.19/32\",\r\n \"13.71.175.32/27\",\r\n
+ \ \"13.71.196.224/27\",\r\n \"13.73.115.51/32\",\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.74.108.192/27\",\r\n \"13.75.39.160/27\",\r\n
+ \ \"13.76.83.155/32\",\r\n \"13.76.217.46/32\",\r\n \"13.77.53.128/27\",\r\n
+ \ \"13.78.109.160/27\",\r\n \"13.78.129.154/32\",\r\n \"13.78.130.69/32\",\r\n
+ \ \"13.79.172.43/32\",\r\n \"13.82.93.138/32\",\r\n \"13.84.189.6/32\",\r\n
+ \ \"13.85.68.113/32\",\r\n \"13.86.221.0/25\",\r\n \"13.87.58.96/27\",\r\n
+ \ \"13.87.124.96/27\",\r\n \"13.89.174.160/27\",\r\n \"13.89.231.149/32\",\r\n
+ \ \"13.94.40.72/32\",\r\n \"13.95.15.251/32\",\r\n \"20.36.108.160/27\",\r\n
+ \ \"20.36.117.64/27\",\r\n \"20.36.123.32/27\",\r\n \"20.36.123.128/25\",\r\n
+ \ \"20.37.67.128/25\",\r\n \"20.37.68.0/27\",\r\n \"20.37.76.160/27\",\r\n
+ \ \"20.37.198.160/27\",\r\n \"20.37.199.0/25\",\r\n \"20.37.227.64/27\",\r\n
+ \ \"20.37.227.128/25\",\r\n \"20.38.128.128/27\",\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"20.38.147.192/27\",\r\n \"20.39.14.32/27\",\r\n
+ \ \"20.39.14.128/25\",\r\n \"20.40.206.192/27\",\r\n \"20.40.207.0/25\",\r\n
+ \ \"20.41.68.96/27\",\r\n \"20.41.68.128/25\",\r\n \"20.41.197.64/27\",\r\n
+ \ \"20.41.197.128/25\",\r\n \"20.42.230.160/27\",\r\n \"20.42.231.0/25\",\r\n
+ \ \"20.43.44.160/27\",\r\n \"20.43.45.0/25\",\r\n \"20.43.70.160/27\",\r\n
+ \ \"20.43.71.0/25\",\r\n \"20.43.121.64/27\",\r\n \"20.44.4.128/27\",\r\n
+ \ \"20.44.8.224/27\",\r\n \"20.44.17.96/27\",\r\n \"20.44.29.0/27\",\r\n
+ \ \"20.45.114.224/27\",\r\n \"20.45.115.0/25\",\r\n \"20.45.123.128/27\",\r\n
+ \ \"20.45.198.32/27\",\r\n \"20.45.198.128/25\",\r\n \"20.49.83.128/27\",\r\n
+ \ \"20.49.91.128/27\",\r\n \"20.49.99.96/27\",\r\n \"20.49.99.128/25\",\r\n
+ \ \"20.49.109.128/25\",\r\n \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n
+ \ \"20.49.113.32/27\",\r\n \"20.49.113.128/25\",\r\n \"20.49.120.96/27\",\r\n
+ \ \"20.49.120.128/25\",\r\n \"20.49.121.0/25\",\r\n \"20.50.65.128/25\",\r\n
+ \ \"20.50.68.0/27\",\r\n \"20.72.28.160/27\",\r\n \"20.150.165.192/27\",\r\n
+ \ \"20.150.166.0/25\",\r\n \"20.150.172.192/27\",\r\n \"20.150.179.224/27\",\r\n
+ \ \"20.150.187.224/27\",\r\n \"20.187.195.0/25\",\r\n \"20.188.0.51/32\",\r\n
+ \ \"20.188.3.145/32\",\r\n \"20.188.39.126/32\",\r\n \"20.189.109.192/27\",\r\n
+ \ \"20.192.99.224/27\",\r\n \"20.192.165.224/27\",\r\n \"20.192.166.0/25\",\r\n
+ \ \"20.192.230.32/27\",\r\n \"20.192.230.128/25\",\r\n \"20.192.238.0/27\",\r\n
+ \ \"20.193.206.0/27\",\r\n \"20.194.67.96/27\",\r\n \"23.96.222.45/32\",\r\n
+ \ \"23.96.223.89/32\",\r\n \"23.98.86.0/27\",\r\n \"23.98.104.192/27\",\r\n
+ \ \"23.98.106.0/25\",\r\n \"23.99.109.81/32\",\r\n \"23.100.4.253/32\",\r\n
+ \ \"23.100.8.130/32\",\r\n \"23.100.105.192/32\",\r\n \"23.101.29.228/32\",\r\n
+ \ \"23.102.235.31/32\",\r\n \"40.64.132.160/27\",\r\n \"40.64.134.0/25\",\r\n
+ \ \"40.67.51.0/25\",\r\n \"40.67.51.128/27\",\r\n \"40.67.60.128/27\",\r\n
+ \ \"40.69.108.128/27\",\r\n \"40.70.148.128/27\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.74.66.139/32\",\r\n \"40.74.125.44/32\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.76.71.185/32\",\r\n \"40.77.23.107/32\",\r\n
+ \ \"40.78.22.17/32\",\r\n \"40.78.196.96/27\",\r\n \"40.78.204.64/27\",\r\n
+ \ \"40.78.229.128/25\",\r\n \"40.78.238.0/27\",\r\n \"40.78.245.32/27\",\r\n
+ \ \"40.78.251.160/27\",\r\n \"40.79.114.144/32\",\r\n \"40.79.132.128/27\",\r\n
+ \ \"40.79.139.32/27\",\r\n \"40.79.148.0/27\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.79.163.32/27\",\r\n \"40.79.171.128/27\",\r\n \"40.79.180.96/27\",\r\n
+ \ \"40.79.187.224/27\",\r\n \"40.79.195.192/27\",\r\n \"40.80.51.128/27\",\r\n
+ \ \"40.80.62.64/27\",\r\n \"40.80.62.128/25\",\r\n \"40.80.172.64/27\",\r\n
+ \ \"40.80.172.128/25\",\r\n \"40.80.176.64/27\",\r\n \"40.83.177.42/32\",\r\n
+ \ \"40.84.53.157/32\",\r\n \"40.87.138.172/32\",\r\n \"40.87.143.97/32\",\r\n
+ \ \"40.89.20.192/27\",\r\n \"40.89.21.0/25\",\r\n \"40.112.221.188/32\",\r\n
+ \ \"40.112.223.235/32\",\r\n \"40.113.153.50/32\",\r\n \"40.113.176.160/27\",\r\n
+ \ \"40.113.176.192/27\",\r\n \"40.113.177.0/24\",\r\n \"40.114.53.146/32\",\r\n
+ \ \"40.118.27.192/32\",\r\n \"40.119.11.224/27\",\r\n \"40.120.75.160/27\",\r\n
+ \ \"40.127.132.17/32\",\r\n \"51.12.42.32/27\",\r\n \"51.12.42.128/25\",\r\n
+ \ \"51.12.100.64/27\",\r\n \"51.12.194.32/27\",\r\n \"51.12.194.128/25\",\r\n
+ \ \"51.12.204.64/27\",\r\n \"51.12.227.224/27\",\r\n \"51.12.235.224/27\",\r\n
+ \ \"51.104.30.0/25\",\r\n \"51.104.30.128/27\",\r\n \"51.105.69.0/27\",\r\n
+ \ \"51.105.75.192/27\",\r\n \"51.105.91.128/25\",\r\n \"51.105.92.0/27\",\r\n
+ \ \"51.107.51.64/27\",\r\n \"51.107.51.128/25\",\r\n \"51.107.60.96/27\",\r\n
+ \ \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n \"51.107.156.96/27\",\r\n
+ \ \"51.116.49.224/27\",\r\n \"51.116.50.0/25\",\r\n \"51.116.60.96/27\",\r\n
+ \ \"51.116.145.192/27\",\r\n \"51.116.146.0/25\",\r\n \"51.116.158.0/27\",\r\n
+ \ \"51.116.243.160/27\",\r\n \"51.116.251.128/27\",\r\n \"51.120.43.128/25\",\r\n
+ \ \"51.120.44.0/27\",\r\n \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n
+ \ \"51.120.211.224/27\",\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"51.137.164.160/27\",\r\n \"51.137.165.0/25\",\r\n \"51.140.84.251/32\",\r\n
+ \ \"51.140.126.10/32\",\r\n \"51.140.149.32/27\",\r\n \"51.140.212.160/27\",\r\n
+ \ \"51.140.226.207/32\",\r\n \"51.140.240.234/32\",\r\n \"51.141.49.253/32\",\r\n
+ \ \"51.144.118.31/32\",\r\n \"52.136.51.128/25\",\r\n \"52.136.52.0/27\",\r\n
+ \ \"52.136.132.236/32\",\r\n \"52.138.92.96/27\",\r\n \"52.138.229.0/27\",\r\n
+ \ \"52.140.108.160/27\",\r\n \"52.140.109.0/25\",\r\n \"52.147.10.141/32\",\r\n
+ \ \"52.147.10.149/32\",\r\n \"52.150.152.96/27\",\r\n \"52.150.153.128/25\",\r\n
+ \ \"52.151.6.77/32\",\r\n \"52.151.78.51/32\",\r\n \"52.158.236.252/32\",\r\n
+ \ \"52.161.15.247/32\",\r\n \"52.162.111.64/27\",\r\n \"52.163.212.39/32\",\r\n
+ \ \"52.163.215.122/32\",\r\n \"52.167.107.192/27\",\r\n \"52.167.155.89/32\",\r\n
+ \ \"52.168.180.95/32\",\r\n \"52.169.138.222/32\",\r\n \"52.172.203.144/32\",\r\n
+ \ \"52.175.221.106/32\",\r\n \"52.176.4.4/32\",\r\n \"52.176.92.27/32\",\r\n
+ \ \"52.177.196.50/32\",\r\n \"52.178.147.144/32\",\r\n \"52.179.159.231/32\",\r\n
+ \ \"52.180.165.88/32\",\r\n \"52.180.165.248/32\",\r\n \"52.180.177.125/32\",\r\n
+ \ \"52.182.139.224/27\",\r\n \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n
+ \ \"52.225.179.220/32\",\r\n \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n
+ \ \"52.225.187.149/32\",\r\n \"52.228.85.224/27\",\r\n \"52.228.86.0/25\",\r\n
+ \ \"52.231.20.32/27\",\r\n \"52.231.32.236/32\",\r\n \"52.231.148.128/27\",\r\n
+ \ \"52.231.205.15/32\",\r\n \"52.236.189.128/25\",\r\n \"52.237.27.123/32\",\r\n
+ \ \"52.242.31.77/32\",\r\n \"52.246.155.192/27\",\r\n \"52.250.225.32/27\",\r\n
+ \ \"65.52.252.160/27\",\r\n \"102.133.28.160/27\",\r\n \"102.133.59.0/25\",\r\n
+ \ \"102.133.59.128/27\",\r\n \"102.133.124.32/27\",\r\n \"102.133.156.64/27\",\r\n
+ \ \"102.133.218.192/27\",\r\n \"102.133.219.0/25\",\r\n \"102.133.251.128/27\",\r\n
+ \ \"104.40.49.44/32\",\r\n \"104.41.34.180/32\",\r\n \"104.43.252.98/32\",\r\n
+ \ \"104.46.115.237/32\",\r\n \"104.210.105.7/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"104.211.210.195/32\",\r\n \"104.214.34.123/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"157.55.253.43/32\",\r\n \"168.61.54.255/32\",\r\n
+ \ \"168.61.208.218/32\",\r\n \"191.233.11.160/27\",\r\n \"191.233.14.0/25\",\r\n
+ \ \"191.233.54.0/27\",\r\n \"191.233.205.128/27\",\r\n \"191.234.136.128/25\",\r\n
+ \ \"191.234.137.0/27\",\r\n \"191.234.147.224/27\",\r\n \"191.234.155.224/27\",\r\n
+ \ \"207.46.138.102/32\",\r\n \"2603:1000:4:402::300/123\",\r\n
+ \ \"2603:1000:104:402::300/123\",\r\n \"2603:1000:104:802::240/123\",\r\n
+ \ \"2603:1000:104:c02::240/123\",\r\n \"2603:1010:6:402::300/123\",\r\n
+ \ \"2603:1010:6:802::240/123\",\r\n \"2603:1010:6:c02::240/123\",\r\n
+ \ \"2603:1010:101:402::300/123\",\r\n \"2603:1010:304:402::300/123\",\r\n
+ \ \"2603:1010:404:402::300/123\",\r\n \"2603:1020:5:402::300/123\",\r\n
+ \ \"2603:1020:5:802::240/123\",\r\n \"2603:1020:5:c02::240/123\",\r\n
+ \ \"2603:1020:206:402::300/123\",\r\n \"2603:1020:206:802::240/123\",\r\n
+ \ \"2603:1020:206:c02::240/123\",\r\n \"2603:1020:305:402::300/123\",\r\n
+ \ \"2603:1020:405:402::300/123\",\r\n \"2603:1020:605:402::300/123\",\r\n
+ \ \"2603:1020:705:402::300/123\",\r\n \"2603:1020:705:802::240/123\",\r\n
+ \ \"2603:1020:705:c02::240/123\",\r\n \"2603:1020:805:402::300/123\",\r\n
+ \ \"2603:1020:805:802::240/123\",\r\n \"2603:1020:805:c02::240/123\",\r\n
+ \ \"2603:1020:905:402::300/123\",\r\n \"2603:1020:a04:402::300/123\",\r\n
+ \ \"2603:1020:a04:802::240/123\",\r\n \"2603:1020:a04:c02::240/123\",\r\n
+ \ \"2603:1020:b04:402::300/123\",\r\n \"2603:1020:c04:402::300/123\",\r\n
+ \ \"2603:1020:c04:802::240/123\",\r\n \"2603:1020:c04:c02::240/123\",\r\n
+ \ \"2603:1020:d04:402::300/123\",\r\n \"2603:1020:e04:402::300/123\",\r\n
+ \ \"2603:1020:e04:802::240/123\",\r\n \"2603:1020:e04:c02::240/123\",\r\n
+ \ \"2603:1020:f04:402::300/123\",\r\n \"2603:1020:1004:400::480/123\",\r\n
+ \ \"2603:1020:1004:800::100/123\",\r\n \"2603:1020:1004:800::240/123\",\r\n
+ \ \"2603:1020:1004:c02::2a0/123\",\r\n \"2603:1020:1104:400::300/123\",\r\n
+ \ \"2603:1030:f:400::b00/123\",\r\n \"2603:1030:10:402::300/123\",\r\n
+ \ \"2603:1030:10:802::240/123\",\r\n \"2603:1030:10:c02::240/123\",\r\n
+ \ \"2603:1030:104:402::300/123\",\r\n \"2603:1030:107:400::280/123\",\r\n
+ \ \"2603:1030:210:402::300/123\",\r\n \"2603:1030:210:802::240/123\",\r\n
+ \ \"2603:1030:210:c02::240/123\",\r\n \"2603:1030:40b:400::b00/123\",\r\n
+ \ \"2603:1030:40b:800::240/123\",\r\n \"2603:1030:40b:c00::240/123\",\r\n
+ \ \"2603:1030:40c:402::300/123\",\r\n \"2603:1030:40c:802::240/123\",\r\n
+ \ \"2603:1030:40c:c02::240/123\",\r\n \"2603:1030:504:802::100/123\",\r\n
+ \ \"2603:1030:504:c02::2a0/123\",\r\n \"2603:1030:608:402::300/123\",\r\n
+ \ \"2603:1030:807:402::300/123\",\r\n \"2603:1030:807:802::240/123\",\r\n
+ \ \"2603:1030:807:c02::240/123\",\r\n \"2603:1030:a07:402::980/123\",\r\n
+ \ \"2603:1030:b04:402::300/123\",\r\n \"2603:1030:c06:400::b00/123\",\r\n
+ \ \"2603:1030:c06:802::240/123\",\r\n \"2603:1030:c06:c02::240/123\",\r\n
+ \ \"2603:1030:f05:402::300/123\",\r\n \"2603:1030:f05:802::240/123\",\r\n
+ \ \"2603:1030:f05:c02::240/123\",\r\n \"2603:1030:1005:402::300/123\",\r\n
+ \ \"2603:1040:5:402::300/123\",\r\n \"2603:1040:5:802::240/123\",\r\n
+ \ \"2603:1040:5:c02::240/123\",\r\n \"2603:1040:207:402::300/123\",\r\n
+ \ \"2603:1040:407:402::300/123\",\r\n \"2603:1040:407:802::240/123\",\r\n
+ \ \"2603:1040:407:c02::240/123\",\r\n \"2603:1040:606:402::300/123\",\r\n
+ \ \"2603:1040:806:402::300/123\",\r\n \"2603:1040:904:402::300/123\",\r\n
+ \ \"2603:1040:904:802::240/123\",\r\n \"2603:1040:904:c02::240/123\",\r\n
+ \ \"2603:1040:a06:402::300/123\",\r\n \"2603:1040:a06:802::240/123\",\r\n
+ \ \"2603:1040:a06:c02::240/123\",\r\n \"2603:1040:b04:402::300/123\",\r\n
+ \ \"2603:1040:c06:402::300/123\",\r\n \"2603:1040:d04:400::480/123\",\r\n
+ \ \"2603:1040:d04:800::100/123\",\r\n \"2603:1040:d04:800::240/123\",\r\n
+ \ \"2603:1040:d04:c02::2a0/123\",\r\n \"2603:1040:f05:402::300/123\",\r\n
+ \ \"2603:1040:f05:802::240/123\",\r\n \"2603:1040:f05:c02::240/123\",\r\n
+ \ \"2603:1040:1104:400::300/123\",\r\n \"2603:1050:6:402::300/123\",\r\n
+ \ \"2603:1050:6:802::240/123\",\r\n \"2603:1050:6:c02::240/123\",\r\n
+ \ \"2603:1050:403:400::220/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.EastUS\",\r\n \"id\": \"AzureIoTHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.82.93.138/32\",\r\n \"20.49.109.128/25\",\r\n
+ \ \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.76.71.185/32\",\r\n \"40.78.229.128/25\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.114.53.146/32\",\r\n \"52.168.180.95/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"168.61.54.255/32\",\r\n \"2603:1030:210:402::300/123\",\r\n
+ \ \"2603:1030:210:802::240/123\",\r\n \"2603:1030:210:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureIoTHub.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.32/27\",\r\n \"20.39.14.128/25\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.79.114.144/32\",\r\n \"52.138.92.96/27\",\r\n
+ \ \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n \"52.225.179.220/32\",\r\n
+ \ \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n \"52.225.187.149/32\",\r\n
+ \ \"2603:1030:40b:400::b00/123\",\r\n \"2603:1030:40b:800::240/123\",\r\n
+ \ \"2603:1030:40b:c00::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayEast\",\r\n \"id\": \"AzureIoTHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.43.128/25\",\r\n \"51.120.44.0/27\",\r\n
+ \ \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n \"51.120.211.224/27\",\r\n
+ \ \"2603:1020:e04:402::300/123\",\r\n \"2603:1020:e04:802::240/123\",\r\n
+ \ \"2603:1020:e04:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayWest\",\r\n \"id\": \"AzureIoTHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"2603:1020:f04:402::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.SouthCentralUS\",\r\n \"id\":
+ \"AzureIoTHub.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.84.189.6/32\",\r\n \"13.85.68.113/32\",\r\n
+ \ \"20.45.123.128/27\",\r\n \"20.49.91.128/27\",\r\n \"40.119.11.224/27\",\r\n
+ \ \"104.214.34.123/32\",\r\n \"2603:1030:807:402::300/123\",\r\n
+ \ \"2603:1030:807:802::240/123\",\r\n \"2603:1030:807:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SouthIndia\",\r\n
+ \ \"id\": \"AzureIoTHub.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"20.41.197.64/27\",\r\n \"20.41.197.128/25\",\r\n
+ \ \"40.78.196.96/27\",\r\n \"104.211.210.195/32\",\r\n \"2603:1040:c06:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureIoTHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n
+ \ \"51.107.156.96/27\",\r\n \"2603:1020:b04:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.UAENorth\",\r\n
+ \ \"id\": \"AzureIoTHub.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"40.120.75.160/27\",\r\n \"65.52.252.160/27\",\r\n
+ \ \"2603:1040:904:402::300/123\",\r\n \"2603:1040:904:802::240/123\",\r\n
+ \ \"2603:1040:904:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.WestIndia\",\r\n \"id\": \"AzureIoTHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.128.128/27\",\r\n \"52.136.51.128/25\",\r\n
+ \ \"52.136.52.0/27\",\r\n \"2603:1040:806:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault\",\r\n
+ \ \"id\": \"AzureKeyVault\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"13.67.8.104/30\",\r\n \"13.68.24.216/32\",\r\n
+ \ \"13.68.29.203/32\",\r\n \"13.68.104.240/32\",\r\n \"13.69.64.72/30\",\r\n
+ \ \"13.69.227.72/30\",\r\n \"13.70.72.24/30\",\r\n \"13.70.138.129/32\",\r\n
+ \ \"13.71.170.40/30\",\r\n \"13.71.194.112/30\",\r\n \"13.72.250.239/32\",\r\n
+ \ \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n \"13.75.34.144/30\",\r\n
+ \ \"13.77.50.64/30\",\r\n \"13.78.106.88/30\",\r\n \"13.80.247.19/32\",\r\n
+ \ \"13.80.247.42/32\",\r\n \"13.84.174.143/32\",\r\n \"13.87.34.51/32\",\r\n
+ \ \"13.87.39.0/32\",\r\n \"13.87.56.80/30\",\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"13.89.61.248/32\",\r\n
+ \ \"13.89.170.200/30\",\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n
+ \ \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.36.114.16/30\",\r\n \"20.37.74.228/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.44.2.0/30\",\r\n \"20.45.90.72/29\",\r\n
+ \ \"20.45.90.80/30\",\r\n \"20.45.117.32/29\",\r\n \"20.45.117.40/30\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"20.48.197.104/29\",\r\n
+ \ \"20.48.197.112/30\",\r\n \"20.49.82.0/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.49.119.232/29\",\r\n \"20.49.119.240/28\",\r\n
+ \ \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n \"20.51.20.84/30\",\r\n
+ \ \"20.51.21.64/29\",\r\n \"20.52.88.144/29\",\r\n \"20.52.88.152/30\",\r\n
+ \ \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n \"20.53.48.40/29\",\r\n
+ \ \"20.53.49.96/30\",\r\n \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n
+ \ \"20.58.67.48/29\",\r\n \"20.58.67.56/30\",\r\n \"20.61.103.224/29\",\r\n
+ \ \"20.61.103.232/30\",\r\n \"20.62.60.128/27\",\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"20.66.2.28/30\",\r\n \"20.66.5.128/29\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"20.72.21.148/30\",\r\n \"20.72.21.192/29\",\r\n
+ \ \"20.72.26.0/30\",\r\n \"20.150.170.0/30\",\r\n \"20.150.181.28/30\",\r\n
+ \ \"20.150.181.164/30\",\r\n \"20.150.189.32/30\",\r\n \"20.150.244.36/30\",\r\n
+ \ \"20.150.245.56/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"20.186.41.83/32\",\r\n \"20.186.47.182/32\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n \"20.191.166.120/29\",\r\n
+ \ \"20.191.167.128/30\",\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"20.192.50.216/29\",\r\n \"20.192.50.224/30\",\r\n \"20.192.80.48/29\",\r\n
+ \ \"20.192.80.56/30\",\r\n \"20.192.234.0/30\",\r\n \"20.193.194.44/30\",\r\n
+ \ \"20.193.194.80/29\",\r\n \"20.193.202.0/30\",\r\n \"20.194.66.0/30\",\r\n
+ \ \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"20.195.74.168/29\",\r\n \"20.195.74.176/30\",\r\n
+ \ \"20.195.146.68/30\",\r\n \"20.195.146.192/29\",\r\n \"23.96.210.207/32\",\r\n
+ \ \"23.96.250.48/32\",\r\n \"23.97.50.43/32\",\r\n \"23.97.120.25/32\",\r\n
+ \ \"23.97.120.29/32\",\r\n \"23.97.120.39/32\",\r\n \"23.97.120.57/32\",\r\n
+ \ \"23.97.178.0/32\",\r\n \"23.99.132.207/32\",\r\n \"23.100.57.24/32\",\r\n
+ \ \"23.100.58.149/32\",\r\n \"23.101.21.103/32\",\r\n \"23.101.21.193/32\",\r\n
+ \ \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n \"23.101.159.107/32\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"40.65.188.244/32\",\r\n
+ \ \"40.65.189.219/32\",\r\n \"40.67.53.184/29\",\r\n \"40.67.53.224/30\",\r\n
+ \ \"40.67.58.0/30\",\r\n \"40.69.106.64/30\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.74.100.48/30\",\r\n \"40.76.196.75/32\",\r\n
+ \ \"40.76.212.37/32\",\r\n \"40.78.194.64/30\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"40.79.130.40/30\",\r\n \"40.79.163.156/30\",\r\n
+ \ \"40.79.173.4/30\",\r\n \"40.79.178.64/30\",\r\n \"40.84.47.24/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.85.229.9/32\",\r\n \"40.85.231.231/32\",\r\n
+ \ \"40.86.224.94/32\",\r\n \"40.86.231.180/32\",\r\n \"40.87.69.184/32\",\r\n
+ \ \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n \"40.89.180.10/32\",\r\n
+ \ \"40.89.180.25/32\",\r\n \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n
+ \ \"40.112.242.144/30\",\r\n \"40.117.157.122/32\",\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"40.124.64.128/30\",\r\n
+ \ \"51.12.17.232/29\",\r\n \"51.12.17.240/30\",\r\n \"51.12.25.204/30\",\r\n
+ \ \"51.12.28.32/29\",\r\n \"51.12.98.0/30\",\r\n \"51.12.202.0/30\",\r\n
+ \ \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.107.58.0/30\",\r\n \"51.107.154.0/30\",\r\n \"51.107.241.116/30\",\r\n
+ \ \"51.107.242.248/29\",\r\n \"51.107.250.44/30\",\r\n \"51.107.251.104/29\",\r\n
+ \ \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n \"51.116.58.0/30\",\r\n
+ \ \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n \"51.116.251.188/30\",\r\n
+ \ \"51.120.98.8/30\",\r\n \"51.120.218.0/30\",\r\n \"51.120.233.132/30\",\r\n
+ \ \"51.120.234.128/29\",\r\n \"51.138.210.132/30\",\r\n \"51.138.211.8/29\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n \"51.143.6.21/32\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n \"52.147.113.72/29\",\r\n
+ \ \"52.147.113.80/30\",\r\n \"52.148.84.142/32\",\r\n \"52.148.84.145/32\",\r\n
+ \ \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n
+ \ \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n \"52.161.31.139/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.169.232.147/32\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.175.236.86/32\",\r\n \"52.176.48.58/32\",\r\n
+ \ \"52.176.254.165/32\",\r\n \"52.177.71.51/32\",\r\n \"52.180.176.121/32\",\r\n
+ \ \"52.180.176.122/32\",\r\n \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n
+ \ \"52.183.93.92/32\",\r\n \"52.183.94.166/32\",\r\n \"52.184.155.181/32\",\r\n
+ \ \"52.184.158.37/32\",\r\n \"52.184.164.12/32\",\r\n \"52.187.161.13/32\",\r\n
+ \ \"52.187.163.139/32\",\r\n \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n
+ \ \"52.225.188.225/32\",\r\n \"52.225.191.36/32\",\r\n \"52.225.218.218/32\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"52.237.253.194/32\",\r\n \"52.246.157.4/30\",\r\n \"52.247.193.69/32\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"65.52.250.0/30\",\r\n \"102.37.81.88/29\",\r\n \"102.37.81.128/30\",\r\n
+ \ \"102.37.160.176/29\",\r\n \"102.37.160.184/30\",\r\n \"102.133.26.0/30\",\r\n
+ \ \"102.133.124.140/30\",\r\n \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n
+ \ \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.42.6.91/32\",\r\n \"104.42.136.180/32\",\r\n
+ \ \"104.43.161.34/32\",\r\n \"104.43.192.26/32\",\r\n \"104.44.136.42/32\",\r\n
+ \ \"104.46.40.31/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n \"104.208.26.47/32\",\r\n
+ \ \"104.210.195.61/32\",\r\n \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n
+ \ \"104.211.99.174/32\",\r\n \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n
+ \ \"104.211.167.57/32\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"104.214.18.168/30\",\r\n
+ \ \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n \"104.215.94.76/32\",\r\n
+ \ \"104.215.99.117/32\",\r\n \"104.215.139.166/32\",\r\n
+ \ \"104.215.140.132/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"168.62.108.27/32\",\r\n \"168.62.237.29/32\",\r\n \"168.63.167.27/32\",\r\n
+ \ \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n \"191.233.50.0/30\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1000:4::2a0/125\",\r\n \"2603:1000:4:402::80/125\",\r\n
+ \ \"2603:1000:104::660/125\",\r\n \"2603:1000:104:402::80/125\",\r\n
+ \ \"2603:1000:104:802::80/125\",\r\n \"2603:1000:104:c02::80/125\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\",\r\n
+ \ \"2603:1010:304::2a0/125\",\r\n \"2603:1010:304:402::80/125\",\r\n
+ \ \"2603:1010:404::2a0/125\",\r\n \"2603:1010:404:402::80/125\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\",\r\n
+ \ \"2603:1020:206::340/125\",\r\n \"2603:1020:206:402::80/125\",\r\n
+ \ \"2603:1020:206:802::80/125\",\r\n \"2603:1020:206:c02::80/125\",\r\n
+ \ \"2603:1020:305:402::80/125\",\r\n \"2603:1020:405:402::80/125\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\",\r\n
+ \ \"2603:1020:805::340/125\",\r\n \"2603:1020:805:402::80/125\",\r\n
+ \ \"2603:1020:805:802::80/125\",\r\n \"2603:1020:805:c02::80/125\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\",\r\n
+ \ \"2603:1020:a04::340/125\",\r\n \"2603:1020:a04:402::80/125\",\r\n
+ \ \"2603:1020:a04:802::80/125\",\r\n \"2603:1020:a04:c02::80/125\",\r\n
+ \ \"2603:1020:b04::2a0/125\",\r\n \"2603:1020:b04:402::80/125\",\r\n
+ \ \"2603:1020:c04::340/125\",\r\n \"2603:1020:c04:402::80/125\",\r\n
+ \ \"2603:1020:c04:802::80/125\",\r\n \"2603:1020:c04:c02::80/125\",\r\n
+ \ \"2603:1020:d04::2a0/125\",\r\n \"2603:1020:d04:402::80/125\",\r\n
+ \ \"2603:1020:e04::340/125\",\r\n \"2603:1020:e04:402::80/125\",\r\n
+ \ \"2603:1020:e04:802::80/125\",\r\n \"2603:1020:e04:c02::80/125\",\r\n
+ \ \"2603:1020:f04::2a0/125\",\r\n \"2603:1020:f04:402::80/125\",\r\n
+ \ \"2603:1020:1004:1::1f8/125\",\r\n \"2603:1020:1004:400::80/125\",\r\n
+ \ \"2603:1020:1004:400::2f8/125\",\r\n \"2603:1020:1004:800::140/125\",\r\n
+ \ \"2603:1020:1104:1::158/125\",\r\n \"2603:1020:1104:400::80/125\",\r\n
+ \ \"2603:1030:f:1::2a0/125\",\r\n \"2603:1030:f:400::880/125\",\r\n
+ \ \"2603:1030:10::340/125\",\r\n \"2603:1030:10:402::80/125\",\r\n
+ \ \"2603:1030:10:802::80/125\",\r\n \"2603:1030:10:c02::80/125\",\r\n
+ \ \"2603:1030:104::340/125\",\r\n \"2603:1030:104:402::80/125\",\r\n
+ \ \"2603:1030:107::738/125\",\r\n \"2603:1030:107:400::/125\",\r\n
+ \ \"2603:1030:107:400::10/125\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\",\r\n \"2603:1030:40c::340/125\",\r\n
+ \ \"2603:1030:40c:402::80/125\",\r\n \"2603:1030:40c:802::80/125\",\r\n
+ \ \"2603:1030:40c:c02::80/125\",\r\n \"2603:1030:504::1f8/125\",\r\n
+ \ \"2603:1030:504:402::80/125\",\r\n \"2603:1030:504:402::2f8/125\",\r\n
+ \ \"2603:1030:504:802::140/125\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\",\r\n \"2603:1030:807::340/125\",\r\n
+ \ \"2603:1030:807:402::80/125\",\r\n \"2603:1030:807:802::80/125\",\r\n
+ \ \"2603:1030:807:c02::80/125\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\",\r\n \"2603:1030:1005::2a0/125\",\r\n
+ \ \"2603:1030:1005:402::80/125\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\",\r\n \"2603:1040:207::2a0/125\",\r\n
+ \ \"2603:1040:207:402::80/125\",\r\n \"2603:1040:407::340/125\",\r\n
+ \ \"2603:1040:407:402::80/125\",\r\n \"2603:1040:407:802::80/125\",\r\n
+ \ \"2603:1040:407:c02::80/125\",\r\n \"2603:1040:606::2a0/125\",\r\n
+ \ \"2603:1040:606:402::80/125\",\r\n \"2603:1040:806::2a0/125\",\r\n
+ \ \"2603:1040:806:402::80/125\",\r\n \"2603:1040:904::340/125\",\r\n
+ \ \"2603:1040:904:402::80/125\",\r\n \"2603:1040:904:802::80/125\",\r\n
+ \ \"2603:1040:904:c02::80/125\",\r\n \"2603:1040:a06::440/125\",\r\n
+ \ \"2603:1040:a06:402::80/125\",\r\n \"2603:1040:a06:802::80/125\",\r\n
+ \ \"2603:1040:a06:c02::80/125\",\r\n \"2603:1040:b04::2a0/125\",\r\n
+ \ \"2603:1040:b04:402::80/125\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\",\r\n \"2603:1040:d04:1::1f8/125\",\r\n
+ \ \"2603:1040:d04:400::80/125\",\r\n \"2603:1040:d04:400::2f8/125\",\r\n
+ \ \"2603:1040:d04:800::140/125\",\r\n \"2603:1040:e05::20/125\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\",\r\n
+ \ \"2603:1040:1104:1::158/125\",\r\n \"2603:1040:1104:400::80/125\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\",\r\n
+ \ \"2603:1050:403:1::220/125\",\r\n \"2603:1050:403:400::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.53.48.40/29\",\r\n \"20.53.49.96/30\",\r\n \"2603:1010:304::2a0/125\",\r\n
+ \ \"2603:1010:304:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaCentral2\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.114.16/30\",\r\n
+ \ \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n \"2603:1010:404::2a0/125\",\r\n
+ \ \"2603:1010:404:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaEast\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.24/30\",\r\n
+ \ \"13.72.250.239/32\",\r\n \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n
+ \ \"40.79.163.156/30\",\r\n \"40.79.173.4/30\",\r\n \"52.237.253.194/32\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.138.129/32\",\r\n \"13.77.50.64/30\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.BrazilSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CanadaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.40/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.48.197.104/29\",\r\n \"20.48.197.112/30\",\r\n \"40.85.229.9/32\",\r\n
+ \ \"40.85.231.231/32\",\r\n \"52.246.157.4/30\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CanadaEast\",\r\n \"id\": \"AzureKeyVault.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.69.106.64/30\",\r\n \"40.86.224.94/32\",\r\n
+ \ \"40.86.231.180/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"2603:1030:1005::2a0/125\",\r\n \"2603:1030:1005:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralIndia\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n \"104.211.99.174/32\",\r\n
+ \ \"2603:1040:a06::440/125\",\r\n \"2603:1040:a06:402::80/125\",\r\n
+ \ \"2603:1040:a06:802::80/125\",\r\n \"2603:1040:a06:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.61.248/32\",\r\n \"13.89.170.200/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"23.99.132.207/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.176.48.58/32\",\r\n \"104.43.161.34/32\",\r\n
+ \ \"104.43.192.26/32\",\r\n \"104.208.26.47/32\",\r\n \"2603:1030:10::340/125\",\r\n
+ \ \"2603:1030:10:402::80/125\",\r\n \"2603:1030:10:802::80/125\",\r\n
+ \ \"2603:1030:10:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CentralUSEUAP\",\r\n \"id\":
+ \"AzureKeyVault.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"52.176.254.165/32\",\r\n
+ \ \"52.180.176.121/32\",\r\n \"52.180.176.122/32\",\r\n \"2603:1030:f:1::2a0/125\",\r\n
+ \ \"2603:1030:f:400::880/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastAsia\",\r\n \"id\": \"AzureKeyVault.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.144/30\",\r\n \"20.195.74.168/29\",\r\n
+ \ \"20.195.74.176/30\",\r\n \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n
+ \ \"2603:1040:207::2a0/125\",\r\n \"2603:1040:207:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.76.196.75/32\",\r\n \"40.76.212.37/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.87.69.184/32\",\r\n \"40.117.157.122/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastUS2\",\r\n \"id\": \"AzureKeyVault.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.24.216/32\",\r\n \"13.68.29.203/32\",\r\n
+ \ \"13.68.104.240/32\",\r\n \"20.62.60.128/27\",\r\n \"20.186.41.83/32\",\r\n
+ \ \"20.186.47.182/32\",\r\n \"23.101.159.107/32\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.84.47.24/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.177.71.51/32\",\r\n \"52.184.155.181/32\",\r\n \"52.184.158.37/32\",\r\n
+ \ \"52.184.164.12/32\",\r\n \"52.225.218.218/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"2603:1030:40c::340/125\",\r\n \"2603:1030:40c:402::80/125\",\r\n
+ \ \"2603:1030:40c:802::80/125\",\r\n \"2603:1030:40c:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.20.84/30\",\r\n \"20.51.21.64/29\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n
+ \ \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n \"52.225.188.225/32\",\r\n
+ \ \"52.225.191.36/32\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceCentral\",\r\n \"id\":
+ \"AzureKeyVault.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"40.79.130.40/30\",\r\n \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n
+ \ \"40.89.180.10/32\",\r\n \"40.89.180.25/32\",\r\n \"51.138.210.132/30\",\r\n
+ \ \"51.138.211.8/29\",\r\n \"2603:1020:805::340/125\",\r\n
+ \ \"2603:1020:805:402::80/125\",\r\n \"2603:1020:805:802::80/125\",\r\n
+ \ \"2603:1020:805:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceSouth\",\r\n \"id\": \"AzureKeyVault.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.64/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.GermanyNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n
+ \ \"51.116.58.0/30\",\r\n \"2603:1020:d04::2a0/125\",\r\n
+ \ \"2603:1020:d04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.GermanyWestCentral\",\r\n \"id\":
+ \"AzureKeyVault.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.52.88.144/29\",\r\n
+ \ \"20.52.88.152/30\",\r\n \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n
+ \ \"51.116.251.188/30\",\r\n \"2603:1020:c04::340/125\",\r\n
+ \ \"2603:1020:c04:402::80/125\",\r\n \"2603:1020:c04:802::80/125\",\r\n
+ \ \"2603:1020:c04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.JapanEast\",\r\n \"id\": \"AzureKeyVault.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.88/30\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.191.166.120/29\",\r\n \"20.191.167.128/30\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n
+ \ \"2603:1040:407::340/125\",\r\n \"2603:1040:407:402::80/125\",\r\n
+ \ \"2603:1040:407:802::80/125\",\r\n \"2603:1040:407:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.JapanWest\",\r\n
+ \ \"id\": \"AzureKeyVault.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n
+ \ \"40.74.100.48/30\",\r\n \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n
+ \ \"2603:1040:606::2a0/125\",\r\n \"2603:1040:606:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.66.0/30\",\r\n \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.113.72/29\",\r\n \"52.147.113.80/30\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"2603:1040:e05::20/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.232/29\",\r\n
+ \ \"20.49.119.240/28\",\r\n \"23.96.210.207/32\",\r\n \"23.96.250.48/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"168.62.108.27/32\",\r\n
+ \ \"168.62.237.29/32\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthEurope\",\r\n \"id\": \"AzureKeyVault.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.72/30\",\r\n \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n
+ \ \"23.100.57.24/32\",\r\n \"23.100.58.149/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n
+ \ \"52.169.232.147/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.NorwayEast\",\r\n
+ \ \"id\": \"AzureKeyVault.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.8/30\",\r\n
+ \ \"51.120.233.132/30\",\r\n \"51.120.234.128/29\",\r\n \"2603:1020:e04::340/125\",\r\n
+ \ \"2603:1020:e04:402::80/125\",\r\n \"2603:1020:e04:802::80/125\",\r\n
+ \ \"2603:1020:e04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorwayWest\",\r\n \"id\": \"AzureKeyVault.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n
+ \ \"51.120.218.0/30\",\r\n \"2603:1020:f04::2a0/125\",\r\n
+ \ \"2603:1020:f04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.176/29\",\r\n
+ \ \"102.37.160.184/30\",\r\n \"102.133.124.140/30\",\r\n
+ \ \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n \"2603:1000:104::660/125\",\r\n
+ \ \"2603:1000:104:402::80/125\",\r\n \"2603:1000:104:802::80/125\",\r\n
+ \ \"2603:1000:104:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaWest\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.81.88/29\",\r\n
+ \ \"102.37.81.128/30\",\r\n \"102.133.26.0/30\",\r\n \"2603:1000:4::2a0/125\",\r\n
+ \ \"2603:1000:4:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.84.174.143/32\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"40.124.64.128/30\",\r\n \"104.44.136.42/32\",\r\n \"104.210.195.61/32\",\r\n
+ \ \"104.214.18.168/30\",\r\n \"104.215.94.76/32\",\r\n \"104.215.99.117/32\",\r\n
+ \ \"2603:1030:807::340/125\",\r\n \"2603:1030:807:402::80/125\",\r\n
+ \ \"2603:1030:807:802::80/125\",\r\n \"2603:1030:807:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureKeyVault.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.104/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"23.97.50.43/32\",\r\n \"23.101.21.103/32\",\r\n
+ \ \"23.101.21.193/32\",\r\n \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n
+ \ \"40.65.188.244/32\",\r\n \"40.65.189.219/32\",\r\n \"52.148.84.142/32\",\r\n
+ \ \"52.148.84.145/32\",\r\n \"52.187.161.13/32\",\r\n \"52.187.163.139/32\",\r\n
+ \ \"104.215.139.166/32\",\r\n \"104.215.140.132/32\",\r\n
+ \ \"168.63.167.27/32\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthIndia\",\r\n \"id\": \"AzureKeyVault.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.64/30\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.107.58.0/30\",\r\n
+ \ \"51.107.241.116/30\",\r\n \"51.107.242.248/29\",\r\n \"2603:1020:a04::340/125\",\r\n
+ \ \"2603:1020:a04:402::80/125\",\r\n \"2603:1020:a04:802::80/125\",\r\n
+ \ \"2603:1020:a04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandWest\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.0/30\",\r\n \"51.107.250.44/30\",\r\n
+ \ \"51.107.251.104/29\",\r\n \"2603:1020:b04::2a0/125\",\r\n
+ \ \"2603:1020:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.UAECentral\",\r\n \"id\": \"AzureKeyVault.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.228/30\",\r\n \"20.45.90.72/29\",\r\n \"20.45.90.80/30\",\r\n
+ \ \"2603:1040:b04::2a0/125\",\r\n \"2603:1040:b04:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UAENorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"65.52.250.0/30\",\r\n
+ \ \"2603:1040:904::340/125\",\r\n \"2603:1040:904:402::80/125\",\r\n
+ \ \"2603:1040:904:802::80/125\",\r\n \"2603:1040:904:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"2603:1020:305:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKWest\",\r\n
+ \ \"id\": \"AzureKeyVault.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.58.67.48/29\",\r\n
+ \ \"20.58.67.56/30\",\r\n \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestCentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.112/30\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n
+ \ \"52.161.31.139/32\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestEurope\",\r\n \"id\": \"AzureKeyVault.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.72/30\",\r\n \"13.80.247.19/32\",\r\n \"13.80.247.42/32\",\r\n
+ \ \"20.61.103.224/29\",\r\n \"20.61.103.232/30\",\r\n \"23.97.178.0/32\",\r\n
+ \ \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"104.46.40.31/32\",\r\n \"2603:1020:206::340/125\",\r\n
+ \ \"2603:1020:206:402::80/125\",\r\n \"2603:1020:206:802::80/125\",\r\n
+ \ \"2603:1020:206:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestIndia\",\r\n \"id\": \"AzureKeyVault.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.80.48/29\",\r\n \"20.192.80.56/30\",\r\n
+ \ \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n \"104.211.167.57/32\",\r\n
+ \ \"2603:1040:806::2a0/125\",\r\n \"2603:1040:806:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.66.2.28/30\",\r\n
+ \ \"20.66.5.128/29\",\r\n \"40.112.242.144/30\",\r\n \"104.42.6.91/32\",\r\n
+ \ \"104.42.136.180/32\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestUS2\",\r\n \"id\": \"AzureKeyVault.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n
+ \ \"51.143.6.21/32\",\r\n \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n
+ \ \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n \"52.175.236.86/32\",\r\n
+ \ \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n \"52.183.93.92/32\",\r\n
+ \ \"52.183.94.166/32\",\r\n \"52.247.193.69/32\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning\",\r\n \"id\": \"AzureMachineLearning\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.87.135/32\",\r\n \"13.66.140.80/28\",\r\n
+ \ \"13.67.8.224/28\",\r\n \"13.69.64.192/28\",\r\n \"13.69.106.192/28\",\r\n
+ \ \"13.69.227.192/28\",\r\n \"13.70.72.144/28\",\r\n \"13.71.170.192/28\",\r\n
+ \ \"13.71.173.80/28\",\r\n \"13.71.194.240/28\",\r\n \"13.73.240.16/28\",\r\n
+ \ \"13.73.240.112/28\",\r\n \"13.73.240.240/28\",\r\n \"13.73.248.96/28\",\r\n
+ \ \"13.74.107.160/28\",\r\n \"13.75.36.16/28\",\r\n \"13.77.50.224/28\",\r\n
+ \ \"13.78.106.208/28\",\r\n \"13.86.195.35/32\",\r\n \"13.87.56.112/28\",\r\n
+ \ \"13.87.122.112/28\",\r\n \"13.87.160.129/32\",\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.36.106.80/28\",\r\n \"20.36.114.160/28\",\r\n \"20.37.67.80/28\",\r\n
+ \ \"20.37.74.208/28\",\r\n \"20.37.152.240/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.38.80.96/28\",\r\n \"20.38.128.48/28\",\r\n \"20.38.147.128/28\",\r\n
+ \ \"20.39.1.205/32\",\r\n \"20.39.11.80/28\",\r\n \"20.40.141.171/32\",\r\n
+ \ \"20.41.0.240/28\",\r\n \"20.41.64.80/28\",\r\n \"20.41.197.0/28\",\r\n
+ \ \"20.42.0.240/28\",\r\n \"20.42.129.16/28\",\r\n \"20.42.227.48/28\",\r\n
+ \ \"20.43.40.96/28\",\r\n \"20.43.64.96/28\",\r\n \"20.43.120.112/28\",\r\n
+ \ \"20.43.128.112/28\",\r\n \"20.44.3.32/28\",\r\n \"20.44.26.224/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"20.46.13.192/28\",\r\n \"20.72.16.48/28\",\r\n
+ \ \"20.150.161.128/28\",\r\n \"20.150.171.80/28\",\r\n \"20.150.179.64/28\",\r\n
+ \ \"20.150.187.64/28\",\r\n \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n
+ \ \"20.189.106.80/28\",\r\n \"20.192.99.64/28\",\r\n \"20.192.160.48/28\",\r\n
+ \ \"20.192.225.144/28\",\r\n \"20.192.235.16/28\",\r\n \"23.98.82.192/28\",\r\n
+ \ \"23.100.232.216/32\",\r\n \"40.66.61.146/32\",\r\n \"40.67.59.80/28\",\r\n
+ \ \"40.69.106.224/28\",\r\n \"40.70.146.192/28\",\r\n \"40.70.154.161/32\",\r\n
+ \ \"40.71.11.64/28\",\r\n \"40.74.24.96/28\",\r\n \"40.74.100.176/28\",\r\n
+ \ \"40.74.147.48/28\",\r\n \"40.75.35.48/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"40.78.202.80/28\",\r\n \"40.78.227.32/28\",\r\n \"40.78.234.128/28\",\r\n
+ \ \"40.78.242.176/28\",\r\n \"40.78.250.112/28\",\r\n \"40.79.130.192/28\",\r\n
+ \ \"40.79.138.128/28\",\r\n \"40.79.146.128/28\",\r\n \"40.79.154.64/28\",\r\n
+ \ \"40.79.162.48/28\",\r\n \"40.79.170.224/28\",\r\n \"40.79.178.224/28\",\r\n
+ \ \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n \"40.80.51.64/28\",\r\n
+ \ \"40.80.57.176/28\",\r\n \"40.80.169.160/28\",\r\n \"40.80.184.80/28\",\r\n
+ \ \"40.80.188.96/28\",\r\n \"40.81.27.228/32\",\r\n \"40.82.187.230/32\",\r\n
+ \ \"40.82.248.80/28\",\r\n \"40.89.17.208/28\",\r\n \"40.90.184.249/32\",\r\n
+ \ \"40.91.77.76/32\",\r\n \"40.112.242.176/28\",\r\n \"40.119.8.80/28\",\r\n
+ \ \"51.11.24.49/32\",\r\n \"51.12.47.32/28\",\r\n \"51.12.99.80/28\",\r\n
+ \ \"51.12.198.224/28\",\r\n \"51.12.203.80/28\",\r\n \"51.12.227.64/28\",\r\n
+ \ \"51.12.235.64/28\",\r\n \"51.104.8.64/27\",\r\n \"51.104.24.96/28\",\r\n
+ \ \"51.105.67.16/28\",\r\n \"51.105.75.128/28\",\r\n \"51.105.88.224/28\",\r\n
+ \ \"51.105.129.135/32\",\r\n \"51.107.59.48/28\",\r\n \"51.107.147.32/28\",\r\n
+ \ \"51.107.155.48/28\",\r\n \"51.116.49.176/28\",\r\n \"51.116.59.48/28\",\r\n
+ \ \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n \"51.116.250.224/28\",\r\n
+ \ \"51.120.99.64/28\",\r\n \"51.120.107.64/28\",\r\n \"51.120.211.64/28\",\r\n
+ \ \"51.120.219.80/28\",\r\n \"51.120.227.80/28\",\r\n \"51.120.234.224/28\",\r\n
+ \ \"51.137.161.224/28\",\r\n \"51.140.146.208/28\",\r\n \"51.140.210.208/28\",\r\n
+ \ \"51.144.184.47/32\",\r\n \"52.138.90.144/28\",\r\n \"52.138.226.160/28\",\r\n
+ \ \"52.139.3.33/32\",\r\n \"52.140.107.96/28\",\r\n \"52.141.25.58/32\",\r\n
+ \ \"52.141.26.97/32\",\r\n \"52.148.163.43/32\",\r\n \"52.150.136.80/28\",\r\n
+ \ \"52.151.111.249/32\",\r\n \"52.155.90.254/32\",\r\n \"52.155.115.7/32\",\r\n
+ \ \"52.156.193.50/32\",\r\n \"52.162.106.176/28\",\r\n \"52.167.106.160/28\",\r\n
+ \ \"52.177.164.219/32\",\r\n \"52.182.139.32/28\",\r\n \"52.184.87.76/32\",\r\n
+ \ \"52.185.70.56/32\",\r\n \"52.228.80.80/28\",\r\n \"52.230.56.136/32\",\r\n
+ \ \"52.231.18.192/28\",\r\n \"52.231.146.208/28\",\r\n \"52.236.186.192/28\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"52.246.155.128/28\",\r\n \"52.249.59.91/32\",\r\n
+ \ \"52.252.160.26/32\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"52.253.227.208/32\",\r\n \"52.255.214.109/32\",\r\n \"52.255.217.127/32\",\r\n
+ \ \"65.52.250.192/28\",\r\n \"102.133.27.32/28\",\r\n \"102.133.58.224/28\",\r\n
+ \ \"102.133.122.224/27\",\r\n \"102.133.155.32/28\",\r\n
+ \ \"102.133.251.64/28\",\r\n \"104.208.16.160/28\",\r\n \"104.208.144.160/28\",\r\n
+ \ \"104.211.81.144/28\",\r\n \"104.214.19.32/28\",\r\n \"191.233.8.48/28\",\r\n
+ \ \"191.233.203.144/28\",\r\n \"191.233.240.165/32\",\r\n
+ \ \"191.233.242.167/32\",\r\n \"191.234.147.64/28\",\r\n
+ \ \"191.234.155.64/28\",\r\n \"191.235.224.96/28\",\r\n \"2603:1000:4::300/122\",\r\n
+ \ \"2603:1000:104:1::2c0/122\",\r\n \"2603:1010:6:1::2c0/122\",\r\n
+ \ \"2603:1010:101::300/122\",\r\n \"2603:1010:304::300/122\",\r\n
+ \ \"2603:1010:404::300/122\",\r\n \"2603:1020:5:1::2c0/122\",\r\n
+ \ \"2603:1020:206:1::2c0/122\",\r\n \"2603:1020:305::300/122\",\r\n
+ \ \"2603:1020:405::300/122\",\r\n \"2603:1020:605::300/122\",\r\n
+ \ \"2603:1020:705:1::2c0/122\",\r\n \"2603:1020:805:1::2c0/122\",\r\n
+ \ \"2603:1020:905::300/122\",\r\n \"2603:1020:a04:1::2c0/122\",\r\n
+ \ \"2603:1020:b04::300/122\",\r\n \"2603:1020:c04:1::2c0/122\",\r\n
+ \ \"2603:1020:d04::300/122\",\r\n \"2603:1020:e04:1::2c0/122\",\r\n
+ \ \"2603:1020:f04::300/122\",\r\n \"2603:1020:1004::2c0/122\",\r\n
+ \ \"2603:1020:1104::240/122\",\r\n \"2603:1030:f:1::300/122\",\r\n
+ \ \"2603:1030:10:1::2c0/122\",\r\n \"2603:1030:104:1::2c0/122\",\r\n
+ \ \"2603:1030:107::240/122\",\r\n \"2603:1030:210:1::2c0/122\",\r\n
+ \ \"2603:1030:40b:1::2c0/122\",\r\n \"2603:1030:40c:1::2c0/122\",\r\n
+ \ \"2603:1030:504:1::2c0/122\",\r\n \"2603:1030:608::300/122\",\r\n
+ \ \"2603:1030:807:1::2c0/122\",\r\n \"2603:1030:a07::300/122\",\r\n
+ \ \"2603:1030:b04::300/122\",\r\n \"2603:1030:c06:1::2c0/122\",\r\n
+ \ \"2603:1030:f05:1::2c0/122\",\r\n \"2603:1030:1005::300/122\",\r\n
+ \ \"2603:1040:5:1::2c0/122\",\r\n \"2603:1040:207::300/122\",\r\n
+ \ \"2603:1040:407:1::2c0/122\",\r\n \"2603:1040:606::300/122\",\r\n
+ \ \"2603:1040:806::300/122\",\r\n \"2603:1040:904:1::2c0/122\",\r\n
+ \ \"2603:1040:a06:1::2c0/122\",\r\n \"2603:1040:b04::300/122\",\r\n
+ \ \"2603:1040:c06::300/122\",\r\n \"2603:1040:d04::2c0/122\",\r\n
+ \ \"2603:1040:f05:1::2c0/122\",\r\n \"2603:1040:1104::240/122\",\r\n
+ \ \"2603:1050:6:1::2c0/122\",\r\n \"2603:1050:403::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.AustraliaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.144/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n \"40.79.162.48/28\",\r\n
+ \ \"40.79.170.224/28\",\r\n \"2603:1010:6:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CanadaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.224/28\",\r\n \"40.89.17.208/28\",\r\n
+ \ \"2603:1030:1005::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.CentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.37.152.240/28\",\r\n \"52.182.139.32/28\",\r\n \"52.185.70.56/32\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"104.208.16.160/28\",\r\n \"2603:1030:10:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureMachineLearning.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.192/28\",\r\n \"40.78.202.80/28\",\r\n
+ \ \"2603:1030:f:1::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureMachineLearning.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n
+ \ \"51.116.250.224/28\",\r\n \"2603:1020:c04:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.JapanEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.208/28\",\r\n \"20.43.64.96/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n
+ \ \"52.155.115.7/32\",\r\n \"2603:1040:407:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.SouthIndia\",\r\n
+ \ \"id\": \"AzureMachineLearning.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.197.0/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"2603:1040:c06::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.WestCentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.240/28\",\r\n
+ \ \"52.150.136.80/28\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"2603:1030:b04::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor\",\r\n \"id\": \"AzureMonitor\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"5\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.96.175/32\",\r\n \"13.65.206.67/32\",\r\n
+ \ \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n \"13.66.37.172/32\",\r\n
+ \ \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.67.9.192/28\",\r\n \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n
+ \ \"13.67.15.0/32\",\r\n \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n
+ \ \"13.68.31.237/32\",\r\n \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n
+ \ \"13.68.109.212/32\",\r\n \"13.68.111.247/32\",\r\n \"13.69.51.175/32\",\r\n
+ \ \"13.69.51.218/32\",\r\n \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n
+ \ \"13.69.67.60/30\",\r\n \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n
+ \ \"13.69.106.208/28\",\r\n \"13.69.109.224/27\",\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.72.232/29\",\r\n \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n
+ \ \"13.70.124.27/32\",\r\n \"13.70.127.61/32\",\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.73.26.213/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n
+ \ \"13.75.38.0/28\",\r\n \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n
+ \ \"13.75.117.221/32\",\r\n \"13.75.119.169/32\",\r\n \"13.75.195.15/32\",\r\n
+ \ \"13.76.85.243/32\",\r\n \"13.76.87.86/32\",\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"13.77.150.166/32\",\r\n
+ \ \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n \"13.78.10.58/32\",\r\n
+ \ \"13.78.13.189/32\",\r\n \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n
+ \ \"13.78.109.112/29\",\r\n \"13.78.111.192/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"13.80.134.255/32\",\r\n \"13.82.100.176/32\",\r\n \"13.82.184.151/32\",\r\n
+ \ \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n \"13.84.149.186/32\",\r\n
+ \ \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n \"13.84.225.10/32\",\r\n
+ \ \"13.85.70.142/32\",\r\n \"13.86.218.224/28\",\r\n \"13.86.218.248/29\",\r\n
+ \ \"13.86.223.128/26\",\r\n \"13.87.56.248/29\",\r\n \"13.87.57.128/28\",\r\n
+ \ \"13.87.122.248/29\",\r\n \"13.87.123.128/28\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.88.230.43/32\",\r\n \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n
+ \ \"13.89.42.127/32\",\r\n \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n
+ \ \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n \"13.90.249.229/32\",\r\n
+ \ \"13.90.251.123/32\",\r\n \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n
+ \ \"13.92.40.198/32\",\r\n \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n
+ \ \"13.92.179.52/32\",\r\n \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n
+ \ \"13.92.254.218/32\",\r\n \"13.92.255.146/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"13.94.39.13/32\",\r\n
+ \ \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n \"20.36.114.200/29\",\r\n
+ \ \"20.36.114.208/28\",\r\n \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n
+ \ \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.37.192.68/31\",\r\n \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n
+ \ \"20.37.198.140/32\",\r\n \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.38.80.68/31\",\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"20.38.143.0/27\",\r\n \"20.38.143.44/30\",\r\n
+ \ \"20.38.146.152/29\",\r\n \"20.38.147.144/29\",\r\n \"20.38.152.32/27\",\r\n
+ \ \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.40.124.0/32\",\r\n \"20.40.137.91/32\",\r\n \"20.40.140.212/32\",\r\n
+ \ \"20.40.160.120/32\",\r\n \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n
+ \ \"20.40.206.128/28\",\r\n \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n
+ \ \"20.40.228.0/26\",\r\n \"20.41.49.208/32\",\r\n \"20.41.64.68/31\",\r\n
+ \ \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n \"20.41.69.16/28\",\r\n
+ \ \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n \"20.41.208.32/27\",\r\n
+ \ \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n \"20.42.73.128/25\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n
+ \ \"20.42.230.224/29\",\r\n \"20.42.230.232/31\",\r\n \"20.43.40.68/31\",\r\n
+ \ \"20.43.41.178/31\",\r\n \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n
+ \ \"20.43.44.224/28\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.43.98.234/32\",\r\n
+ \ \"20.43.99.158/32\",\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n \"20.44.3.48/28\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"20.44.16.0/29\",\r\n \"20.44.17.0/29\",\r\n \"20.44.26.152/29\",\r\n
+ \ \"20.44.26.248/29\",\r\n \"20.44.73.196/32\",\r\n \"20.44.192.217/32\",\r\n
+ \ \"20.45.122.152/29\",\r\n \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n
+ \ \"20.45.125.224/28\",\r\n \"20.46.10.224/27\",\r\n \"20.46.12.196/30\",\r\n
+ \ \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n \"20.48.193.224/27\",\r\n
+ \ \"20.49.83.32/28\",\r\n \"20.49.84.32/27\",\r\n \"20.49.91.32/28\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.49.99.44/31\",\r\n \"20.49.99.64/28\",\r\n
+ \ \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n \"20.49.109.46/31\",\r\n
+ \ \"20.49.109.80/28\",\r\n \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n
+ \ \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n \"20.49.114.48/31\",\r\n
+ \ \"20.49.120.64/28\",\r\n \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n
+ \ \"20.50.68.120/30\",\r\n \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n
+ \ \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n \"20.52.64.32/27\",\r\n
+ \ \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n \"20.66.2.192/26\",\r\n
+ \ \"20.72.20.48/28\",\r\n \"20.72.21.0/30\",\r\n \"20.72.21.32/27\",\r\n
+ \ \"20.72.28.192/27\",\r\n \"20.135.13.192/26\",\r\n \"20.150.167.184/29\",\r\n
+ \ \"20.150.171.208/29\",\r\n \"20.150.173.0/28\",\r\n \"20.150.178.152/29\",\r\n
+ \ \"20.150.181.96/28\",\r\n \"20.150.182.32/27\",\r\n \"20.150.186.152/29\",\r\n
+ \ \"20.150.241.64/29\",\r\n \"20.150.241.72/30\",\r\n \"20.150.241.96/27\",\r\n
+ \ \"20.187.197.192/27\",\r\n \"20.188.36.28/32\",\r\n \"20.189.109.144/28\",\r\n
+ \ \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n \"20.189.111.24/31\",\r\n
+ \ \"20.189.172.0/25\",\r\n \"20.189.225.128/27\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.50.192/28\",\r\n
+ \ \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n \"20.192.167.160/27\",\r\n
+ \ \"20.192.231.244/30\",\r\n \"20.192.235.144/28\",\r\n \"20.193.96.32/27\",\r\n
+ \ \"20.193.194.24/29\",\r\n \"20.193.194.32/29\",\r\n \"20.193.194.40/30\",\r\n
+ \ \"20.193.203.112/28\",\r\n \"20.193.204.64/27\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"23.96.28.38/32\",\r\n
+ \ \"23.96.245.125/32\",\r\n \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n
+ \ \"23.97.65.103/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"23.100.90.7/32\",\r\n \"23.100.94.221/32\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.100.228.32/32\",\r\n \"23.101.0.142/32\",\r\n
+ \ \"23.101.9.4/32\",\r\n \"23.101.13.65/32\",\r\n \"23.101.69.223/32\",\r\n
+ \ \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n \"23.101.239.238/32\",\r\n
+ \ \"23.102.44.211/32\",\r\n \"23.102.45.216/32\",\r\n \"23.102.66.132/32\",\r\n
+ \ \"23.102.77.48/32\",\r\n \"23.102.181.197/32\",\r\n \"40.64.132.128/28\",\r\n
+ \ \"40.64.132.240/28\",\r\n \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n
+ \ \"40.64.134.138/32\",\r\n \"40.67.52.224/27\",\r\n \"40.67.59.192/28\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.69.81.159/32\",\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.69.194.158/32\",\r\n \"40.70.23.205/32\",\r\n
+ \ \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n \"40.71.12.224/28\",\r\n
+ \ \"40.71.12.240/30\",\r\n \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n
+ \ \"40.71.14.112/30\",\r\n \"40.71.183.225/32\",\r\n \"40.74.24.68/31\",\r\n
+ \ \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n \"40.74.101.32/28\",\r\n
+ \ \"40.74.101.200/29\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.74.249.98/32\",\r\n \"40.75.34.40/29\",\r\n
+ \ \"40.75.35.64/29\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n \"40.77.24.27/32\",\r\n
+ \ \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.78.195.16/28\",\r\n
+ \ \"40.78.196.48/29\",\r\n \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.78.234.56/29\",\r\n
+ \ \"40.78.234.144/28\",\r\n \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n
+ \ \"40.78.247.64/26\",\r\n \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n
+ \ \"40.78.253.192/26\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.79.154.80/29\",\r\n \"40.79.156.32/29\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.79.179.8/29\",\r\n
+ \ \"40.79.179.16/28\",\r\n \"40.79.187.8/29\",\r\n \"40.79.190.160/27\",\r\n
+ \ \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n \"40.80.50.152/29\",\r\n
+ \ \"40.80.51.80/29\",\r\n \"40.80.180.160/27\",\r\n \"40.80.191.224/28\",\r\n
+ \ \"40.81.58.225/32\",\r\n \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n
+ \ \"40.84.189.107/32\",\r\n \"40.84.192.116/32\",\r\n \"40.85.180.90/32\",\r\n
+ \ \"40.85.201.168/32\",\r\n \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"40.86.201.128/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.89.153.171/32\",\r\n
+ \ \"40.89.189.61/32\",\r\n \"40.112.49.101/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.117.80.207/32\",\r\n
+ \ \"40.117.95.162/32\",\r\n \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n
+ \ \"40.117.197.224/32\",\r\n \"40.118.129.58/32\",\r\n \"40.119.4.128/32\",\r\n
+ \ \"40.119.8.72/31\",\r\n \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"40.120.75.32/28\",\r\n \"40.121.57.2/32\",\r\n
+ \ \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n \"40.121.163.228/32\",\r\n
+ \ \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"40.126.246.183/32\",\r\n \"40.127.75.125/32\",\r\n \"40.127.84.197/32\",\r\n
+ \ \"40.127.144.141/32\",\r\n \"51.11.97.96/27\",\r\n \"51.12.17.20/30\",\r\n
+ \ \"51.12.17.56/29\",\r\n \"51.12.17.128/29\",\r\n \"51.12.25.56/29\",\r\n
+ \ \"51.12.25.192/29\",\r\n \"51.12.25.200/30\",\r\n \"51.12.46.0/27\",\r\n
+ \ \"51.12.99.72/29\",\r\n \"51.12.102.192/27\",\r\n \"51.12.195.224/27\",\r\n
+ \ \"51.12.203.208/28\",\r\n \"51.12.205.96/27\",\r\n \"51.12.226.152/29\",\r\n
+ \ \"51.12.234.152/29\",\r\n \"51.12.237.32/27\",\r\n \"51.13.128.32/27\",\r\n
+ \ \"51.13.136.192/27\",\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.105.248.23/32\",\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n \"51.107.148.0/28\",\r\n
+ \ \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n \"51.107.156.48/29\",\r\n
+ \ \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n \"51.116.245.96/28\",\r\n
+ \ \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.219.208/28\",\r\n
+ \ \"51.120.232.34/31\",\r\n \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n
+ \ \"51.120.235.240/28\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.6.23/32\",\r\n
+ \ \"51.140.54.208/32\",\r\n \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n
+ \ \"51.140.148.48/28\",\r\n \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n
+ \ \"51.140.163.207/32\",\r\n \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n
+ \ \"51.140.211.160/28\",\r\n \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"51.143.165.22/32\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n \"51.145.44.242/32\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.138.31.112/32\",\r\n \"52.138.31.127/32\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"52.138.222.110/32\",\r\n
+ \ \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n \"52.139.8.32/32\",\r\n
+ \ \"52.139.106.160/27\",\r\n \"52.140.104.68/31\",\r\n \"52.140.108.96/28\",\r\n
+ \ \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n \"52.140.108.240/31\",\r\n
+ \ \"52.141.22.149/32\",\r\n \"52.141.22.239/32\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.150.36.187/32\",\r\n
+ \ \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n \"52.150.154.24/29\",\r\n
+ \ \"52.150.154.32/28\",\r\n \"52.151.11.176/32\",\r\n \"52.155.118.97/32\",\r\n
+ \ \"52.155.162.238/32\",\r\n \"52.156.40.142/32\",\r\n \"52.156.168.82/32\",\r\n
+ \ \"52.161.8.76/32\",\r\n \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n
+ \ \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n \"52.162.110.168/29\",\r\n
+ \ \"52.162.214.75/32\",\r\n \"52.163.94.131/32\",\r\n \"52.163.122.20/32\",\r\n
+ \ \"52.164.120.183/32\",\r\n \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n
+ \ \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n \"52.165.38.20/32\",\r\n
+ \ \"52.165.150.242/32\",\r\n \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n
+ \ \"52.167.221.184/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.169.4.236/32\",\r\n \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n
+ \ \"52.169.64.244/32\",\r\n \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n
+ \ \"52.172.113.64/27\",\r\n \"52.172.209.125/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.175.198.74/32\",\r\n \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.177.223.60/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.179.192.178/32\",\r\n
+ \ \"52.180.160.132/32\",\r\n \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n
+ \ \"52.180.182.209/32\",\r\n \"52.182.138.216/29\",\r\n \"52.182.139.48/29\",\r\n
+ \ \"52.183.41.109/32\",\r\n \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n
+ \ \"52.183.95.86/32\",\r\n \"52.183.127.155/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"52.185.132.101/32\",\r\n \"52.185.132.170/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.170.253/32\",\r\n \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n
+ \ \"52.224.162.220/32\",\r\n \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n
+ \ \"52.228.80.68/31\",\r\n \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n
+ \ \"52.228.86.152/29\",\r\n \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n
+ \ \"52.229.25.130/32\",\r\n \"52.229.37.75/32\",\r\n \"52.229.218.221/32\",\r\n
+ \ \"52.229.225.6/32\",\r\n \"52.230.224.237/32\",\r\n \"52.231.18.240/28\",\r\n
+ \ \"52.231.28.204/32\",\r\n \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n
+ \ \"52.231.67.208/32\",\r\n \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n
+ \ \"52.231.111.52/32\",\r\n \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n
+ \ \"52.232.35.33/32\",\r\n \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n
+ \ \"52.236.186.88/29\",\r\n \"52.236.186.208/28\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.237.157.70/32\",\r\n \"52.242.230.209/32\",\r\n \"52.246.154.152/29\",\r\n
+ \ \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n \"52.247.202.90/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"65.52.122.208/32\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"102.37.64.128/27\",\r\n
+ \ \"102.37.80.64/27\",\r\n \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n
+ \ \"102.133.122.152/29\",\r\n \"102.133.123.240/29\",\r\n
+ \ \"102.133.126.64/27\",\r\n \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n
+ \ \"102.133.162.233/32\",\r\n \"102.133.216.68/31\",\r\n
+ \ \"102.133.216.106/31\",\r\n \"102.133.218.144/28\",\r\n
+ \ \"102.133.218.244/30\",\r\n \"102.133.219.128/28\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"102.133.250.152/29\",\r\n
+ \ \"102.133.251.80/29\",\r\n \"104.40.222.36/32\",\r\n \"104.41.61.169/32\",\r\n
+ \ \"104.41.152.101/32\",\r\n \"104.41.157.59/32\",\r\n \"104.41.224.134/32\",\r\n
+ \ \"104.42.40.28/32\",\r\n \"104.44.140.84/32\",\r\n \"104.45.136.42/32\",\r\n
+ \ \"104.45.230.69/32\",\r\n \"104.45.232.72/32\",\r\n \"104.46.123.164/32\",\r\n
+ \ \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n \"104.208.33.155/32\",\r\n
+ \ \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"104.214.70.219/32\",\r\n
+ \ \"104.214.104.109/32\",\r\n \"104.214.164.128/27\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"111.221.88.173/32\",\r\n \"137.116.82.175/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"137.116.226.81/32\",\r\n
+ \ \"137.117.144.33/32\",\r\n \"138.91.9.98/32\",\r\n \"138.91.32.98/32\",\r\n
+ \ \"138.91.37.93/32\",\r\n \"157.55.177.6/32\",\r\n \"168.61.142.0/27\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"168.62.169.17/32\",\r\n \"168.63.174.169/32\",\r\n
+ \ \"168.63.242.221/32\",\r\n \"191.232.33.83/32\",\r\n \"191.232.161.75/32\",\r\n
+ \ \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.233.51.128/28\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.237.224.192/27\",\r\n
+ \ \"191.239.251.90/32\",\r\n \"207.46.224.101/32\",\r\n \"207.46.236.191/32\",\r\n
+ \ \"2603:1000:4::780/121\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\",\r\n
+ \ \"2603:1010:6::60/123\",\r\n \"2603:1010:6::1c0/122\",\r\n
+ \ \"2603:1010:6::300/123\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:1::280/122\",\r\n \"2603:1010:6:402::500/121\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\",\r\n
+ \ \"2603:1010:404::780/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::60/123\",\r\n \"2603:1020:5::1c0/122\",\r\n
+ \ \"2603:1020:5::300/123\",\r\n \"2603:1020:5::360/123\",\r\n
+ \ \"2603:1020:5::500/121\",\r\n \"2603:1020:5:1::280/122\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::60/123\",\r\n
+ \ \"2603:1020:206::1c0/122\",\r\n \"2603:1020:206::300/123\",\r\n
+ \ \"2603:1020:206::360/123\",\r\n \"2603:1020:206::500/121\",\r\n
+ \ \"2603:1020:206:1::280/122\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:305::780/121\",\r\n \"2603:1020:405::780/121\",\r\n
+ \ \"2603:1020:605::780/121\",\r\n \"2603:1020:605:1::280/123\",\r\n
+ \ \"2603:1020:605:1::300/121\",\r\n \"2603:1020:605:402::500/121\",\r\n
+ \ \"2603:1020:705::60/123\",\r\n \"2603:1020:705::1c0/122\",\r\n
+ \ \"2603:1020:705::300/123\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:1::280/122\",\r\n
+ \ \"2603:1020:705:402::500/121\",\r\n \"2603:1020:805::60/123\",\r\n
+ \ \"2603:1020:805::1c0/122\",\r\n \"2603:1020:805::300/123\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:1::280/122\",\r\n \"2603:1020:805:402::500/121\",\r\n
+ \ \"2603:1020:905::780/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::60/123\",\r\n \"2603:1020:a04::1c0/122\",\r\n
+ \ \"2603:1020:a04::300/123\",\r\n \"2603:1020:a04::360/123\",\r\n
+ \ \"2603:1020:a04::500/121\",\r\n \"2603:1020:a04:1::280/122\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04::780/121\",\r\n
+ \ \"2603:1020:b04:1::280/123\",\r\n \"2603:1020:b04:1::300/121\",\r\n
+ \ \"2603:1020:b04:402::500/121\",\r\n \"2603:1020:c01:2::b/128\",\r\n
+ \ \"2603:1020:c01:2::e/128\",\r\n \"2603:1020:c04::60/123\",\r\n
+ \ \"2603:1020:c04::1c0/122\",\r\n \"2603:1020:c04::300/123\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:1::280/122\",\r\n \"2603:1020:c04:402::500/121\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\",\r\n \"2603:1020:e04::60/123\",\r\n
+ \ \"2603:1020:e04::1c0/122\",\r\n \"2603:1020:e04::300/123\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:1::280/122\",\r\n \"2603:1020:e04:402::500/121\",\r\n
+ \ \"2603:1020:f04::780/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004::280/122\",\r\n \"2603:1020:1004:1::380/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::160/123\",\r\n
+ \ \"2603:1020:1104:1::180/122\",\r\n \"2603:1020:1104:1::1c0/123\",\r\n
+ \ \"2603:1020:1104:1::4c0/123\",\r\n \"2603:1020:1104:1::500/121\",\r\n
+ \ \"2603:1020:1104:400::440/123\",\r\n \"2603:1020:1104:400::480/121\",\r\n
+ \ \"2603:1030:7:5::e/128\",\r\n \"2603:1030:7:5::17/128\",\r\n
+ \ \"2603:1030:7:5::29/128\",\r\n \"2603:1030:7:5::32/128\",\r\n
+ \ \"2603:1030:7:6::10/128\",\r\n \"2603:1030:7:6::14/128\",\r\n
+ \ \"2603:1030:7:6::1b/128\",\r\n \"2603:1030:7:6::37/128\",\r\n
+ \ \"2603:1030:7:6::3f/128\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::60/123\",\r\n
+ \ \"2603:1030:104::1c0/122\",\r\n \"2603:1030:104::300/123\",\r\n
+ \ \"2603:1030:104::360/123\",\r\n \"2603:1030:104::500/121\",\r\n
+ \ \"2603:1030:104:1::280/122\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::80/121\",\r\n \"2603:1030:107:1::200/123\",\r\n
+ \ \"2603:1030:107:1::280/121\",\r\n \"2603:1030:107:400::3c0/123\",\r\n
+ \ \"2603:1030:107:400::480/121\",\r\n \"2603:1030:210::60/123\",\r\n
+ \ \"2603:1030:210::1c0/122\",\r\n \"2603:1030:210::300/123\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:1::280/122\",\r\n \"2603:1030:210:402::500/121\",\r\n
+ \ \"2603:1030:302:402::80/123\",\r\n \"2603:1030:302:402::100/121\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\",\r\n
+ \ \"2603:1030:504::380/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:1::280/122\",\r\n
+ \ \"2603:1030:504:c02::100/123\",\r\n \"2603:1030:504:c02::180/121\",\r\n
+ \ \"2603:1030:608::780/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:800:5::bfee:a418/128\",\r\n \"2603:1030:800:5::bfee:a429/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a42a/128\",\r\n \"2603:1030:800:5::bfee:a435/128\",\r\n
+ \ \"2603:1030:807::60/123\",\r\n \"2603:1030:807::1c0/122\",\r\n
+ \ \"2603:1030:807::300/123\",\r\n \"2603:1030:807::360/123\",\r\n
+ \ \"2603:1030:807::500/121\",\r\n \"2603:1030:807:1::280/122\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\",\r\n
+ \ \"2603:1030:c02:2::4e1/128\",\r\n \"2603:1030:c06:1::280/122\",\r\n
+ \ \"2603:1030:c06:2::80/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:d00::1d/128\",\r\n \"2603:1030:d00::48/128\",\r\n
+ \ \"2603:1030:d00::5a/128\",\r\n \"2603:1030:d00::82/128\",\r\n
+ \ \"2603:1030:d00::84/128\",\r\n \"2603:1030:d00::9a/128\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005::780/121\",\r\n
+ \ \"2603:1030:1005:1::280/123\",\r\n \"2603:1030:1005:1::300/121\",\r\n
+ \ \"2603:1030:1005:402::500/121\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2603:1040:207::780/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::60/123\",\r\n \"2603:1040:407::1c0/122\",\r\n
+ \ \"2603:1040:407::300/123\",\r\n \"2603:1040:407::360/123\",\r\n
+ \ \"2603:1040:407::500/121\",\r\n \"2603:1040:407:1::280/122\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606::780/121\",\r\n
+ \ \"2603:1040:606:1::280/123\",\r\n \"2603:1040:606:1::300/121\",\r\n
+ \ \"2603:1040:606:402::500/121\",\r\n \"2603:1040:806::780/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\",\r\n
+ \ \"2603:1040:b00:2::b/128\",\r\n \"2603:1040:b04::780/121\",\r\n
+ \ \"2603:1040:b04:1::280/123\",\r\n \"2603:1040:b04:1::300/121\",\r\n
+ \ \"2603:1040:b04:402::500/121\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04::280/122\",\r\n
+ \ \"2603:1040:d04:1::380/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::160/123\",\r\n
+ \ \"2603:1040:1104:1::180/122\",\r\n \"2603:1040:1104:1::1c0/123\",\r\n
+ \ \"2603:1040:1104:1::580/121\",\r\n \"2603:1040:1104:400::460/123\",\r\n
+ \ \"2603:1050:6::60/123\",\r\n \"2603:1050:6::1c0/122\",\r\n
+ \ \"2603:1050:6::300/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:1::280/122\",\r\n
+ \ \"2603:1050:6:402::580/121\",\r\n \"2603:1050:6:c02::2a0/123\",\r\n
+ \ \"2603:1050:403::280/122\",\r\n \"2603:1050:403:1::80/121\",\r\n
+ \ \"2603:1050:403:1::240/123\",\r\n \"2603:1050:403:1::300/121\",\r\n
+ \ \"2603:1050:403:400::580/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\",\r\n \"2a01:111:f100:4002::9d37:c0bd/128\",\r\n
+ \ \"2a01:111:f100:6000::4134:a6cf/128\",\r\n \"2a01:111:f100:7000::6fdd:5343/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:91e4/128\",\r\n \"2a01:111:f100:9001::1761:958a/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:9696/128\",\r\n \"2a01:111:f100:a001::4134:e463/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureMonitor\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.53.0.128/27\",\r\n \"20.53.48.64/27\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.200/29\",\r\n \"20.36.114.208/28\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.193.96.32/27\",\r\n \"2603:1010:404::780/121\",\r\n
+ \ \"2603:1010:404:1::280/123\",\r\n \"2603:1010:404:1::300/121\",\r\n
+ \ \"2603:1010:404:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaEast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.232/29\",\r\n
+ \ \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n \"13.70.124.27/32\",\r\n
+ \ \"13.70.127.61/32\",\r\n \"13.75.195.15/32\",\r\n \"20.37.192.68/31\",\r\n
+ \ \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n \"20.37.198.140/32\",\r\n
+ \ \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n \"20.40.124.0/32\",\r\n
+ \ \"20.43.98.234/32\",\r\n \"20.43.99.158/32\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.126.246.183/32\",\r\n
+ \ \"52.156.168.82/32\",\r\n \"2603:1010:6::60/123\",\r\n
+ \ \"2603:1010:6::1c0/122\",\r\n \"2603:1010:6::300/123\",\r\n
+ \ \"2603:1010:6::500/121\",\r\n \"2603:1010:6:1::280/122\",\r\n
+ \ \"2603:1010:6:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"20.40.160.120/32\",\r\n
+ \ \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n \"20.42.230.224/29\",\r\n
+ \ \"20.42.230.232/31\",\r\n \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n
+ \ \"23.101.239.238/32\",\r\n \"40.81.58.225/32\",\r\n \"40.127.75.125/32\",\r\n
+ \ \"40.127.84.197/32\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.BrazilSouth\",\r\n
+ \ \"id\": \"AzureMonitor.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.61.169/32\",\r\n \"191.232.33.83/32\",\r\n
+ \ \"191.232.161.75/32\",\r\n \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.239.251.90/32\",\r\n \"2603:1050:6::60/123\",\r\n
+ \ \"2603:1050:6::1c0/122\",\r\n \"2603:1050:6::300/123\",\r\n
+ \ \"2603:1050:6::360/123\",\r\n \"2603:1050:6::500/121\",\r\n
+ \ \"2603:1050:6:1::280/122\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaCentral\",\r\n \"id\":
+ \"AzureMonitor.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.88.230.43/32\",\r\n
+ \ \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n \"20.38.146.152/29\",\r\n
+ \ \"20.38.147.144/29\",\r\n \"20.48.193.224/27\",\r\n \"40.85.201.168/32\",\r\n
+ \ \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n \"52.138.31.112/32\",\r\n
+ \ \"52.138.31.127/32\",\r\n \"52.139.8.32/32\",\r\n \"52.228.80.68/31\",\r\n
+ \ \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n \"52.228.86.152/29\",\r\n
+ \ \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.246.154.152/29\",\r\n \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaEast\",\r\n \"id\": \"AzureMonitor.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.86.201.128/32\",\r\n \"52.139.106.160/27\",\r\n
+ \ \"2603:1030:1005::780/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralIndia\",\r\n
+ \ \"id\": \"AzureMonitor.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"40.80.50.152/29\",\r\n \"40.80.51.80/29\",\r\n \"52.140.104.68/31\",\r\n
+ \ \"52.140.108.96/28\",\r\n \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n
+ \ \"52.140.108.240/31\",\r\n \"52.172.209.125/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.89.42.127/32\",\r\n
+ \ \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n \"20.40.206.128/28\",\r\n
+ \ \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n
+ \ \"40.77.24.27/32\",\r\n \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n
+ \ \"52.165.38.20/32\",\r\n \"52.165.150.242/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.182.138.216/29\",\r\n
+ \ \"52.182.139.48/29\",\r\n \"52.230.224.237/32\",\r\n \"52.242.230.209/32\",\r\n
+ \ \"104.208.33.155/32\",\r\n \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"2603:1030:7:5::e/128\",\r\n
+ \ \"2603:1030:7:5::17/128\",\r\n \"2603:1030:7:5::29/128\",\r\n
+ \ \"2603:1030:7:5::32/128\",\r\n \"2603:1030:7:6::10/128\",\r\n
+ \ \"2603:1030:7:6::14/128\",\r\n \"2603:1030:7:6::1b/128\",\r\n
+ \ \"2603:1030:7:6::37/128\",\r\n \"2603:1030:7:6::3f/128\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CentralUSEUAP\",\r\n \"id\":
+ \"AzureMonitor.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.46.10.224/27\",\r\n
+ \ \"20.46.12.196/30\",\r\n \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n
+ \ \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n \"52.180.160.132/32\",\r\n
+ \ \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n \"52.180.182.209/32\",\r\n
+ \ \"168.61.142.0/27\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.Core\",\r\n
+ \ \"id\": \"AzureMonitor.Core\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.109.224/27\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.79.96/27\",\r\n \"13.71.177.32/27\",\r\n \"13.86.223.128/26\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n \"20.38.132.64/27\",\r\n
+ \ \"20.38.143.0/27\",\r\n \"20.38.152.32/27\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.41.208.32/27\",\r\n \"20.42.65.128/25\",\r\n \"20.44.11.192/26\",\r\n
+ \ \"20.46.10.224/27\",\r\n \"20.48.193.224/27\",\r\n \"20.49.84.32/27\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n
+ \ \"20.52.64.32/27\",\r\n \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n
+ \ \"20.53.46.64/27\",\r\n \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n
+ \ \"20.61.99.64/27\",\r\n \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.72.21.32/27\",\r\n \"20.72.28.192/27\",\r\n
+ \ \"20.150.182.32/27\",\r\n \"20.150.241.96/27\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.225.128/27\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"20.192.167.160/27\",\r\n \"20.193.96.32/27\",\r\n \"20.193.204.64/27\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"40.67.52.224/27\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.74.150.32/27\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.80.180.160/27\",\r\n \"40.120.8.192/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.12.46.0/27\",\r\n \"51.12.102.192/27\",\r\n
+ \ \"51.12.195.224/27\",\r\n \"51.12.205.96/27\",\r\n \"51.12.237.32/27\",\r\n
+ \ \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n \"51.105.70.128/27\",\r\n
+ \ \"51.107.128.96/27\",\r\n \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n
+ \ \"51.107.250.0/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.120.213.64/27\",\r\n \"51.120.232.160/27\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.139.106.160/27\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"168.61.142.0/27\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.237.224.192/27\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104:2::/123\",\r\n \"2603:1000:104:2::80/121\",\r\n
+ \ \"2603:1000:104:402::500/121\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:402::500/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304:1::280/123\",\r\n \"2603:1010:304:1::300/121\",\r\n
+ \ \"2603:1010:304:402::500/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:402::500/121\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:402::500/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:402::500/121\",\r\n \"2603:1020:d04:1::280/123\",\r\n
+ \ \"2603:1020:d04:1::300/121\",\r\n \"2603:1020:d04:402::500/121\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:402::500/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::4c0/123\",\r\n
+ \ \"2603:1020:1104:1::500/121\",\r\n \"2603:1020:1104:400::440/123\",\r\n
+ \ \"2603:1020:1104:400::480/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::360/123\",\r\n \"2603:1030:10::500/121\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::360/123\",\r\n
+ \ \"2603:1030:104::500/121\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::200/123\",\r\n \"2603:1030:107:1::280/121\",\r\n
+ \ \"2603:1030:107:400::3c0/123\",\r\n \"2603:1030:107:400::480/121\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2603:1030:302:402::80/123\",\r\n
+ \ \"2603:1030:302:402::100/121\",\r\n \"2603:1030:40b:2::240/123\",\r\n
+ \ \"2603:1030:40b:2::300/121\",\r\n \"2603:1030:40b:400::d00/121\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:402::500/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:c02::100/123\",\r\n
+ \ \"2603:1030:504:c02::180/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07:1::280/123\",\r\n
+ \ \"2603:1030:a07:1::300/121\",\r\n \"2603:1030:a07:402::380/121\",\r\n
+ \ \"2603:1030:b04:1::280/123\",\r\n \"2603:1030:b04:1::300/121\",\r\n
+ \ \"2603:1030:b04:402::500/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:f05::360/123\",\r\n \"2603:1030:f05::500/121\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:402::500/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:402::500/121\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:402::500/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::360/123\",\r\n \"2603:1040:f05::500/121\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::580/121\",\r\n
+ \ \"2603:1040:1104:400::460/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\",\r\n \"2603:1050:403:1::240/123\",\r\n
+ \ \"2603:1050:403:1::300/121\",\r\n \"2603:1050:403:400::580/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastAsia\",\r\n
+ \ \"id\": \"AzureMonitor.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.75.38.0/28\",\r\n
+ \ \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n \"13.75.117.221/32\",\r\n
+ \ \"13.75.119.169/32\",\r\n \"13.94.39.13/32\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.109.144/28\",\r\n \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n
+ \ \"20.189.111.24/31\",\r\n \"23.97.65.103/32\",\r\n \"23.100.90.7/32\",\r\n
+ \ \"23.100.94.221/32\",\r\n \"23.101.0.142/32\",\r\n \"23.101.9.4/32\",\r\n
+ \ \"23.101.13.65/32\",\r\n \"52.229.218.221/32\",\r\n \"52.229.225.6/32\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"2603:1040:207::780/121\",\r\n
+ \ \"2603:1040:207:1::280/123\",\r\n \"2603:1040:207:1::300/121\",\r\n
+ \ \"2603:1040:207:402::500/121\",\r\n \"2a01:111:f100:6000::4134:a6cf/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.82.100.176/32\",\r\n
+ \ \"13.82.184.151/32\",\r\n \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n
+ \ \"13.90.249.229/32\",\r\n \"13.90.251.123/32\",\r\n \"13.92.40.198/32\",\r\n
+ \ \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n \"13.92.179.52/32\",\r\n
+ \ \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n \"13.92.254.218/32\",\r\n
+ \ \"13.92.255.146/32\",\r\n \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n
+ \ \"20.42.73.128/25\",\r\n \"20.49.109.46/31\",\r\n \"20.49.109.80/28\",\r\n
+ \ \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n \"20.62.132.0/25\",\r\n
+ \ \"23.96.28.38/32\",\r\n \"40.71.12.224/28\",\r\n \"40.71.12.240/30\",\r\n
+ \ \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n \"40.71.14.112/30\",\r\n
+ \ \"40.71.183.225/32\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.79.154.80/29\",\r\n
+ \ \"40.79.156.32/29\",\r\n \"40.85.180.90/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.112.49.101/32\",\r\n \"40.117.80.207/32\",\r\n \"40.117.95.162/32\",\r\n
+ \ \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n \"40.117.197.224/32\",\r\n
+ \ \"40.121.57.2/32\",\r\n \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n
+ \ \"40.121.163.228/32\",\r\n \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n
+ \ \"52.150.36.187/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n \"52.224.162.220/32\",\r\n
+ \ \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n \"104.41.152.101/32\",\r\n
+ \ \"104.41.157.59/32\",\r\n \"104.45.136.42/32\",\r\n \"168.62.169.17/32\",\r\n
+ \ \"2603:1030:210::60/123\",\r\n \"2603:1030:210::1c0/122\",\r\n
+ \ \"2603:1030:210::300/123\",\r\n \"2603:1030:210::360/123\",\r\n
+ \ \"2603:1030:210::500/121\",\r\n \"2603:1030:210:1::280/122\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2\",\r\n \"id\":
+ \"AzureMonitor.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.68.31.237/32\",\r\n
+ \ \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n \"13.68.109.212/32\",\r\n
+ \ \"13.68.111.247/32\",\r\n \"20.41.49.208/32\",\r\n \"20.44.16.0/29\",\r\n
+ \ \"20.44.17.0/29\",\r\n \"20.44.73.196/32\",\r\n \"20.49.99.44/31\",\r\n
+ \ \"20.49.99.64/28\",\r\n \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n
+ \ \"40.70.23.205/32\",\r\n \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n
+ \ \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n \"52.167.221.184/32\",\r\n
+ \ \"52.177.223.60/32\",\r\n \"52.179.192.178/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"104.46.123.164/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"137.116.82.175/32\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.51.17.64/27\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.75.34.40/29\",\r\n \"40.75.35.64/29\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceCentral\",\r\n \"id\":
+ \"AzureMonitor.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.40.137.91/32\",\r\n
+ \ \"20.40.140.212/32\",\r\n \"20.43.40.68/31\",\r\n \"20.43.41.178/31\",\r\n
+ \ \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n \"20.43.44.224/28\",\r\n
+ \ \"20.188.36.28/32\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.89.153.171/32\",\r\n \"40.89.189.61/32\",\r\n
+ \ \"2603:1020:805::60/123\",\r\n \"2603:1020:805::1c0/122\",\r\n
+ \ \"2603:1020:805::300/123\",\r\n \"2603:1020:805::360/123\",\r\n
+ \ \"2603:1020:805::500/121\",\r\n \"2603:1020:805:1::280/122\",\r\n
+ \ \"2603:1020:805:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceSouth\",\r\n \"id\": \"AzureMonitor.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.8/29\",\r\n \"40.79.179.16/28\",\r\n \"2603:1020:905::780/121\",\r\n
+ \ \"2603:1020:905:1::280/123\",\r\n \"2603:1020:905:1::300/121\",\r\n
+ \ \"2603:1020:905:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyNorth\",\r\n \"id\": \"AzureMonitor.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.64/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyWestCentral\",\r\n \"id\":
+ \"AzureMonitor.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.32/27\",\r\n
+ \ \"51.116.149.0/27\",\r\n \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n
+ \ \"51.116.245.96/28\",\r\n \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n
+ \ \"2603:1020:c01:2::b/128\",\r\n \"2603:1020:c01:2::e/128\",\r\n
+ \ \"2603:1020:c04::60/123\",\r\n \"2603:1020:c04::1c0/122\",\r\n
+ \ \"2603:1020:c04::300/123\",\r\n \"2603:1020:c04::360/123\",\r\n
+ \ \"2603:1020:c04::500/121\",\r\n \"2603:1020:c04:1::280/122\",\r\n
+ \ \"2603:1020:c04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.JapanEast\",\r\n \"id\": \"AzureMonitor.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.26.213/32\",\r\n \"13.78.10.58/32\",\r\n \"13.78.13.189/32\",\r\n
+ \ \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n \"13.78.109.112/29\",\r\n
+ \ \"13.78.111.192/32\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.191.165.64/27\",\r\n
+ \ \"23.102.66.132/32\",\r\n \"23.102.77.48/32\",\r\n \"40.79.187.8/29\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n
+ \ \"52.155.118.97/32\",\r\n \"52.156.40.142/32\",\r\n \"52.185.132.101/32\",\r\n
+ \ \"52.185.132.170/32\",\r\n \"138.91.9.98/32\",\r\n \"2603:1040:407::60/123\",\r\n
+ \ \"2603:1040:407::1c0/122\",\r\n \"2603:1040:407::300/123\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:1::280/122\",\r\n \"2603:1040:407:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.JapanWest\",\r\n
+ \ \"id\": \"AzureMonitor.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.189.225.128/27\",\r\n
+ \ \"40.74.101.32/28\",\r\n \"40.74.101.200/29\",\r\n \"40.80.180.160/27\",\r\n
+ \ \"2603:1040:606::780/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.KoreaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.68/31\",\r\n \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n
+ \ \"20.41.69.16/28\",\r\n \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n
+ \ \"20.44.26.152/29\",\r\n \"20.44.26.248/29\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"52.141.22.149/32\",\r\n
+ \ \"52.141.22.239/32\",\r\n \"52.231.18.240/28\",\r\n \"52.231.28.204/32\",\r\n
+ \ \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n \"52.231.67.208/32\",\r\n
+ \ \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n \"52.231.111.52/32\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.KoreaSouth\",\r\n \"id\": \"AzureMonitor.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n
+ \ \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n
+ \ \"20.49.114.48/31\",\r\n \"20.135.13.192/26\",\r\n \"23.96.245.125/32\",\r\n
+ \ \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n \"23.100.228.32/32\",\r\n
+ \ \"40.80.191.224/28\",\r\n \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n
+ \ \"52.162.110.168/29\",\r\n \"52.162.214.75/32\",\r\n \"52.237.157.70/32\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"2603:1030:608::780/121\",\r\n
+ \ \"2603:1030:608:1::280/123\",\r\n \"2603:1030:608:1::300/121\",\r\n
+ \ \"2603:1030:608:402::500/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorthEurope\",\r\n \"id\":
+ \"AzureMonitor.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n \"20.38.80.68/31\",\r\n
+ \ \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n \"20.50.68.120/30\",\r\n
+ \ \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n \"23.102.44.211/32\",\r\n
+ \ \"23.102.45.216/32\",\r\n \"40.69.81.159/32\",\r\n \"40.69.194.158/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.127.144.141/32\",\r\n
+ \ \"52.138.222.110/32\",\r\n \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n
+ \ \"52.146.133.32/27\",\r\n \"52.155.162.238/32\",\r\n \"52.164.120.183/32\",\r\n
+ \ \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n \"52.169.4.236/32\",\r\n
+ \ \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n \"52.169.64.244/32\",\r\n
+ \ \"104.41.224.134/32\",\r\n \"137.116.226.81/32\",\r\n \"2603:1020:5::60/123\",\r\n
+ \ \"2603:1020:5::1c0/122\",\r\n \"2603:1020:5::300/123\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:1::280/122\",\r\n \"2603:1020:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:a001::4134:e463/128\",\r\n \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorwayEast\",\r\n \"id\":
+ \"AzureMonitor.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.232.34/31\",\r\n
+ \ \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n \"51.120.235.240/28\",\r\n
+ \ \"2603:1020:e04::60/123\",\r\n \"2603:1020:e04::1c0/122\",\r\n
+ \ \"2603:1020:e04::300/123\",\r\n \"2603:1020:e04::360/123\",\r\n
+ \ \"2603:1020:e04::500/121\",\r\n \"2603:1020:e04:1::280/122\",\r\n
+ \ \"2603:1020:e04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.NorwayWest\",\r\n \"id\": \"AzureMonitor.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n
+ \ \"51.120.219.208/28\",\r\n \"2603:1020:f04::780/121\",\r\n
+ \ \"2603:1020:f04:1::280/123\",\r\n \"2603:1020:f04:1::300/121\",\r\n
+ \ \"2603:1020:f04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureMonitor.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"102.133.122.152/29\",\r\n
+ \ \"102.133.123.240/29\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n \"102.133.162.233/32\",\r\n
+ \ \"102.133.216.68/31\",\r\n \"102.133.216.106/31\",\r\n
+ \ \"102.133.218.144/28\",\r\n \"102.133.218.244/30\",\r\n
+ \ \"102.133.219.128/28\",\r\n \"102.133.221.160/27\",\r\n
+ \ \"102.133.250.152/29\",\r\n \"102.133.251.80/29\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureMonitor.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n
+ \ \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n \"2603:1000:4::780/121\",\r\n
+ \ \"2603:1000:4:1::280/123\",\r\n \"2603:1000:4:1::300/121\",\r\n
+ \ \"2603:1000:4:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthCentralUS\",\r\n \"id\":
+ \"AzureMonitor.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.65.96.175/32\",\r\n
+ \ \"13.65.206.67/32\",\r\n \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n
+ \ \"13.66.37.172/32\",\r\n \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n
+ \ \"13.84.149.186/32\",\r\n \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n
+ \ \"13.84.225.10/32\",\r\n \"13.85.70.142/32\",\r\n \"20.45.122.152/29\",\r\n
+ \ \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n \"20.45.125.224/28\",\r\n
+ \ \"20.49.91.32/28\",\r\n \"20.49.93.192/26\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.102.181.197/32\",\r\n \"40.74.249.98/32\",\r\n
+ \ \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n \"40.84.189.107/32\",\r\n
+ \ \"40.84.192.116/32\",\r\n \"40.119.4.128/32\",\r\n \"40.119.8.72/31\",\r\n
+ \ \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"104.44.140.84/32\",\r\n \"104.214.70.219/32\",\r\n \"104.214.104.109/32\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"157.55.177.6/32\",\r\n \"2603:1030:800:5::bfee:a418/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a429/128\",\r\n \"2603:1030:800:5::bfee:a42a/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a435/128\",\r\n \"2603:1030:807::60/123\",\r\n
+ \ \"2603:1030:807::1c0/122\",\r\n \"2603:1030:807::300/123\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:1::280/122\",\r\n \"2603:1030:807:402::500/121\",\r\n
+ \ \"2a01:111:f100:4002::9d37:c0bd/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SoutheastAsia\",\r\n \"id\":
+ \"AzureMonitor.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.67.9.192/28\",\r\n
+ \ \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n \"13.67.15.0/32\",\r\n
+ \ \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n \"13.76.85.243/32\",\r\n
+ \ \"13.76.87.86/32\",\r\n \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n
+ \ \"20.44.192.217/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"40.78.234.56/29\",\r\n \"40.78.234.144/28\",\r\n \"52.163.94.131/32\",\r\n
+ \ \"52.163.122.20/32\",\r\n \"111.221.88.173/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"138.91.32.98/32\",\r\n \"138.91.37.93/32\",\r\n
+ \ \"168.63.174.169/32\",\r\n \"168.63.242.221/32\",\r\n \"207.46.224.101/32\",\r\n
+ \ \"207.46.236.191/32\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:7000::6fdd:5343/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SouthIndia\",\r\n \"id\":
+ \"AzureMonitor.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.41.208.32/27\",\r\n
+ \ \"40.78.195.16/28\",\r\n \"40.78.196.48/29\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureMonitor.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.242.0/27\",\r\n \"2603:1020:a04::60/123\",\r\n
+ \ \"2603:1020:a04::1c0/122\",\r\n \"2603:1020:a04::300/123\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:1::280/122\",\r\n \"2603:1020:a04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureMonitor.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n
+ \ \"51.107.148.0/28\",\r\n \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n
+ \ \"51.107.156.48/29\",\r\n \"51.107.192.160/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"2603:1020:b04::780/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAECentral\",\r\n
+ \ \"id\": \"AzureMonitor.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.71.0/27\",\r\n \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"2603:1040:b00:2::b/128\",\r\n
+ \ \"2603:1040:b04::780/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAENorth\",\r\n
+ \ \"id\": \"AzureMonitor.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.0/27\",\r\n
+ \ \"20.38.143.44/30\",\r\n \"20.38.152.32/27\",\r\n \"40.120.75.32/28\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.UKSouth\",\r\n \"id\": \"AzureMonitor.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.140.6.23/32\",\r\n \"51.140.54.208/32\",\r\n
+ \ \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n \"51.140.148.48/28\",\r\n
+ \ \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n \"51.140.163.207/32\",\r\n
+ \ \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n \"51.143.165.22/32\",\r\n
+ \ \"51.143.209.96/27\",\r\n \"51.145.44.242/32\",\r\n \"2603:1020:705::60/123\",\r\n
+ \ \"2603:1020:705::1c0/122\",\r\n \"2603:1020:705::300/123\",\r\n
+ \ \"2603:1020:705::360/123\",\r\n \"2603:1020:705::500/121\",\r\n
+ \ \"2603:1020:705:1::280/122\",\r\n \"2603:1020:705:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UKWest\",\r\n
+ \ \"id\": \"AzureMonitor.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.58.66.96/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.211.160/28\",\r\n
+ \ \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n \"2603:1020:605::780/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.WestCentralUS\",\r\n \"id\":
+ \"AzureMonitor.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n
+ \ \"52.150.154.24/29\",\r\n \"52.150.154.32/28\",\r\n \"52.161.8.76/32\",\r\n
+ \ \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestEurope\",\r\n
+ \ \"id\": \"AzureMonitor.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.51.175/32\",\r\n \"13.69.51.218/32\",\r\n
+ \ \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n \"13.69.67.60/30\",\r\n
+ \ \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n \"13.69.106.208/28\",\r\n
+ \ \"13.69.109.224/27\",\r\n \"13.80.134.255/32\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"23.101.69.223/32\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.74.24.68/31\",\r\n \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"51.105.248.23/32\",\r\n \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.232.35.33/32\",\r\n
+ \ \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n \"52.236.186.88/29\",\r\n
+ \ \"52.236.186.208/28\",\r\n \"104.40.222.36/32\",\r\n \"137.117.144.33/32\",\r\n
+ \ \"2603:1020:206::60/123\",\r\n \"2603:1020:206::1c0/122\",\r\n
+ \ \"2603:1020:206::300/123\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:1::280/122\",\r\n
+ \ \"2603:1020:206:402::500/121\",\r\n \"2a01:111:f100:9001::1761:91e4/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:958a/128\",\r\n \"2a01:111:f100:9001::1761:9696/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestIndia\",\r\n
+ \ \"id\": \"AzureMonitor.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"52.136.53.96/27\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"2603:1040:806::780/121\",\r\n \"2603:1040:806:1::280/123\",\r\n
+ \ \"2603:1040:806:1::300/121\",\r\n \"2603:1040:806:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestUS\",\r\n
+ \ \"id\": \"AzureMonitor.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.224/28\",\r\n
+ \ \"13.86.218.248/29\",\r\n \"13.86.223.128/26\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"20.49.120.64/28\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.189.172.0/25\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.118.129.58/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.122.208/32\",\r\n \"104.42.40.28/32\",\r\n \"104.45.230.69/32\",\r\n
+ \ \"104.45.232.72/32\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.WestUS2\",\r\n \"id\":
+ \"AzureMonitor.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.77.150.166/32\",\r\n \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.51.9.0/26\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"40.64.132.128/28\",\r\n \"40.64.132.240/28\",\r\n
+ \ \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n \"40.64.134.138/32\",\r\n
+ \ \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n \"40.78.253.192/26\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"52.151.11.176/32\",\r\n \"52.175.198.74/32\",\r\n
+ \ \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n \"52.183.41.109/32\",\r\n
+ \ \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n \"52.183.95.86/32\",\r\n
+ \ \"52.183.127.155/32\",\r\n \"52.191.170.253/32\",\r\n \"52.229.25.130/32\",\r\n
+ \ \"52.229.37.75/32\",\r\n \"52.247.202.90/32\",\r\n \"2603:1030:c02:2::4e1/128\",\r\n
+ \ \"2603:1030:c06:1::280/122\",\r\n \"2603:1030:c06:2::80/121\",\r\n
+ \ \"2603:1030:c06:2::240/123\",\r\n \"2603:1030:c06:2::300/121\",\r\n
+ \ \"2603:1030:c06:400::d00/121\",\r\n \"2603:1030:d00::1d/128\",\r\n
+ \ \"2603:1030:d00::48/128\",\r\n \"2603:1030:d00::5a/128\",\r\n
+ \ \"2603:1030:d00::82/128\",\r\n \"2603:1030:d00::84/128\",\r\n
+ \ \"2603:1030:d00::9a/128\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets\",\r\n \"id\": \"AzureOpenDatasets\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.32/28\",\r\n \"20.36.120.192/28\",\r\n
+ \ \"20.37.64.192/28\",\r\n \"20.37.156.224/28\",\r\n \"20.37.195.32/28\",\r\n
+ \ \"20.37.224.192/28\",\r\n \"20.38.84.112/28\",\r\n \"20.38.136.192/28\",\r\n
+ \ \"20.39.11.32/28\",\r\n \"20.41.4.192/28\",\r\n \"20.41.65.160/28\",\r\n
+ \ \"20.41.193.128/28\",\r\n \"20.42.4.224/28\",\r\n \"20.42.131.0/28\",\r\n
+ \ \"20.42.227.0/28\",\r\n \"20.43.41.160/28\",\r\n \"20.43.65.160/28\",\r\n
+ \ \"20.43.130.112/28\",\r\n \"20.45.112.192/28\",\r\n \"20.45.192.192/28\",\r\n
+ \ \"20.150.160.192/28\",\r\n \"20.189.106.208/28\",\r\n \"20.192.225.128/28\",\r\n
+ \ \"40.67.48.192/28\",\r\n \"40.74.30.112/28\",\r\n \"40.80.57.128/28\",\r\n
+ \ \"40.80.169.128/28\",\r\n \"40.80.188.32/28\",\r\n \"40.82.253.80/28\",\r\n
+ \ \"40.89.17.128/28\",\r\n \"51.12.41.32/28\",\r\n \"51.12.193.32/28\",\r\n
+ \ \"51.104.25.160/28\",\r\n \"51.105.80.192/28\",\r\n \"51.105.88.192/28\",\r\n
+ \ \"51.107.48.192/28\",\r\n \"51.107.144.192/28\",\r\n \"51.116.48.112/28\",\r\n
+ \ \"51.116.144.112/28\",\r\n \"51.120.40.192/28\",\r\n \"51.120.224.192/28\",\r\n
+ \ \"51.137.161.144/28\",\r\n \"51.143.192.192/28\",\r\n \"52.136.48.192/28\",\r\n
+ \ \"52.140.105.128/28\",\r\n \"52.150.139.80/28\",\r\n \"52.228.81.144/28\",\r\n
+ \ \"102.133.56.112/28\",\r\n \"102.133.216.112/28\",\r\n
+ \ \"191.235.225.160/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.AustraliaEast\",\r\n \"id\": \"AzureOpenDatasets.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.37.195.32/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.FranceSouth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.105.88.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.GermanyNorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.112/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAECentral\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.64.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAENorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.136.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UKWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.161.144/28\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets.WestEurope\",\r\n \"id\":
+ \"AzureOpenDatasets.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.30.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.WestUS2\",\r\n \"id\": \"AzureOpenDatasets.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.42.131.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal\",\r\n
+ \ \"id\": \"AzurePortal\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.35.35/32\",\r\n \"13.67.35.77/32\",\r\n \"13.68.130.251/32\",\r\n
+ \ \"13.68.235.98/32\",\r\n \"13.69.112.176/28\",\r\n \"13.69.126.92/32\",\r\n
+ \ \"13.71.190.228/32\",\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"13.77.1.236/32\",\r\n \"13.77.55.208/28\",\r\n
+ \ \"13.77.202.2/32\",\r\n \"13.78.49.187/32\",\r\n \"13.78.132.155/32\",\r\n
+ \ \"13.78.230.142/32\",\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"13.90.156.71/32\",\r\n \"13.92.138.76/32\",\r\n \"20.36.121.128/27\",\r\n
+ \ \"20.36.122.56/30\",\r\n \"20.36.125.104/29\",\r\n \"20.37.65.128/27\",\r\n
+ \ \"20.37.66.56/30\",\r\n \"20.37.70.96/29\",\r\n \"20.37.195.224/27\",\r\n
+ \ \"20.37.196.252/30\",\r\n \"20.37.198.64/27\",\r\n \"20.37.225.128/27\",\r\n
+ \ \"20.37.226.56/30\",\r\n \"20.37.229.152/29\",\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.38.137.160/27\",\r\n \"20.38.138.60/30\",\r\n
+ \ \"20.38.142.88/29\",\r\n \"20.38.149.208/28\",\r\n \"20.39.12.32/27\",\r\n
+ \ \"20.39.12.232/30\",\r\n \"20.40.200.0/27\",\r\n \"20.40.200.160/30\",\r\n
+ \ \"20.40.224.226/31\",\r\n \"20.40.225.32/29\",\r\n \"20.41.5.192/27\",\r\n
+ \ \"20.41.65.224/27\",\r\n \"20.41.67.88/30\",\r\n \"20.41.193.224/27\",\r\n
+ \ \"20.41.197.16/30\",\r\n \"20.42.6.192/27\",\r\n \"20.42.227.192/27\",\r\n
+ \ \"20.42.228.220/30\",\r\n \"20.42.228.224/27\",\r\n \"20.42.230.80/28\",\r\n
+ \ \"20.43.42.64/27\",\r\n \"20.43.43.164/30\",\r\n \"20.43.46.248/29\",\r\n
+ \ \"20.43.66.64/27\",\r\n \"20.43.67.92/30\",\r\n \"20.43.67.96/27\",\r\n
+ \ \"20.43.70.64/28\",\r\n \"20.43.123.160/28\",\r\n \"20.43.132.32/27\",\r\n
+ \ \"20.44.19.32/28\",\r\n \"20.45.112.124/30\",\r\n \"20.45.113.128/27\",\r\n
+ \ \"20.45.116.64/29\",\r\n \"20.45.125.240/28\",\r\n \"20.45.195.160/27\",\r\n
+ \ \"20.45.197.192/27\",\r\n \"20.45.197.228/30\",\r\n \"20.46.10.40/29\",\r\n
+ \ \"20.48.193.48/29\",\r\n \"20.49.99.16/28\",\r\n \"20.49.99.32/30\",\r\n
+ \ \"20.49.103.96/29\",\r\n \"20.49.109.36/30\",\r\n \"20.49.109.44/31\",\r\n
+ \ \"20.49.109.48/28\",\r\n \"20.49.115.184/29\",\r\n \"20.49.120.0/27\",\r\n
+ \ \"20.49.120.36/30\",\r\n \"20.49.126.156/30\",\r\n \"20.49.127.224/28\",\r\n
+ \ \"20.50.1.32/27\",\r\n \"20.50.1.160/27\",\r\n \"20.50.1.200/30\",\r\n
+ \ \"20.50.1.208/28\",\r\n \"20.50.65.72/30\",\r\n \"20.51.16.120/29\",\r\n
+ \ \"20.53.44.4/30\",\r\n \"20.53.44.64/29\",\r\n \"20.61.98.128/29\",\r\n
+ \ \"20.62.128.240/29\",\r\n \"20.72.20.96/27\",\r\n \"20.150.161.192/27\",\r\n
+ \ \"20.150.165.144/30\",\r\n \"20.150.166.160/29\",\r\n \"20.187.197.0/29\",\r\n
+ \ \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n \"20.189.109.160/27\",\r\n
+ \ \"20.189.224.208/29\",\r\n \"20.191.161.80/29\",\r\n \"20.192.161.192/27\",\r\n
+ \ \"20.192.164.180/30\",\r\n \"20.192.166.160/29\",\r\n \"20.192.228.128/27\",\r\n
+ \ \"20.192.230.0/30\",\r\n \"20.192.230.112/29\",\r\n \"20.194.72.56/29\",\r\n
+ \ \"23.98.104.80/28\",\r\n \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n
+ \ \"23.98.108.44/31\",\r\n \"23.98.108.168/29\",\r\n \"23.102.65.134/32\",\r\n
+ \ \"40.64.128.128/27\",\r\n \"40.64.132.88/30\",\r\n \"40.64.132.96/28\",\r\n
+ \ \"40.64.135.88/29\",\r\n \"40.65.114.234/32\",\r\n \"40.67.48.124/30\",\r\n
+ \ \"40.67.49.128/27\",\r\n \"40.67.50.192/27\",\r\n \"40.67.52.88/29\",\r\n
+ \ \"40.67.121.128/28\",\r\n \"40.71.15.144/28\",\r\n \"40.78.239.48/28\",\r\n
+ \ \"40.78.245.208/28\",\r\n \"40.79.189.96/28\",\r\n \"40.80.58.128/27\",\r\n
+ \ \"40.80.59.28/30\",\r\n \"40.80.59.32/27\",\r\n \"40.80.169.224/27\",\r\n
+ \ \"40.80.172.16/30\",\r\n \"40.80.173.192/29\",\r\n \"40.80.190.160/27\",\r\n
+ \ \"40.80.191.200/30\",\r\n \"40.82.253.224/27\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.89.18.160/27\",\r\n \"40.89.20.132/30\",\r\n
+ \ \"40.89.23.232/29\",\r\n \"40.113.117.57/32\",\r\n \"40.114.78.132/32\",\r\n
+ \ \"40.114.236.251/32\",\r\n \"40.117.86.243/32\",\r\n \"40.117.237.78/32\",\r\n
+ \ \"40.119.9.236/30\",\r\n \"51.12.41.20/30\",\r\n \"51.12.41.160/27\",\r\n
+ \ \"51.12.43.128/29\",\r\n \"51.12.193.20/30\",\r\n \"51.12.193.160/27\",\r\n
+ \ \"51.12.194.104/29\",\r\n \"51.13.136.8/29\",\r\n \"51.104.27.96/27\",\r\n
+ \ \"51.104.28.220/30\",\r\n \"51.104.28.224/28\",\r\n \"51.105.80.124/30\",\r\n
+ \ \"51.105.81.128/27\",\r\n \"51.105.89.160/27\",\r\n \"51.105.90.152/30\",\r\n
+ \ \"51.107.49.160/27\",\r\n \"51.107.50.60/30\",\r\n \"51.107.53.240/29\",\r\n
+ \ \"51.107.145.128/27\",\r\n \"51.107.146.56/30\",\r\n \"51.107.149.248/29\",\r\n
+ \ \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n \"51.116.51.160/29\",\r\n
+ \ \"51.116.144.192/27\",\r\n \"51.116.145.140/30\",\r\n \"51.116.148.104/29\",\r\n
+ \ \"51.120.41.160/27\",\r\n \"51.120.42.60/30\",\r\n \"51.120.225.128/27\",\r\n
+ \ \"51.120.226.56/30\",\r\n \"51.120.232.16/29\",\r\n \"51.137.162.160/27\",\r\n
+ \ \"51.137.164.80/30\",\r\n \"51.137.167.152/29\",\r\n \"51.140.69.25/32\",\r\n
+ \ \"51.140.138.84/32\",\r\n \"51.140.149.64/28\",\r\n \"51.143.192.124/30\",\r\n
+ \ \"51.143.193.128/27\",\r\n \"51.143.208.192/29\",\r\n \"51.145.3.27/32\",\r\n
+ \ \"51.145.21.195/32\",\r\n \"52.136.49.160/27\",\r\n \"52.136.51.72/30\",\r\n
+ \ \"52.136.52.232/29\",\r\n \"52.136.184.64/29\",\r\n \"52.140.105.224/27\",\r\n
+ \ \"52.140.107.112/28\",\r\n \"52.140.108.64/30\",\r\n \"52.140.111.96/29\",\r\n
+ \ \"52.146.132.80/29\",\r\n \"52.150.139.224/27\",\r\n \"52.150.140.216/30\",\r\n
+ \ \"52.150.152.16/28\",\r\n \"52.150.152.224/27\",\r\n \"52.150.156.232/29\",\r\n
+ \ \"52.161.101.86/32\",\r\n \"52.163.207.80/32\",\r\n \"52.172.112.152/29\",\r\n
+ \ \"52.172.181.227/32\",\r\n \"52.172.190.71/32\",\r\n \"52.172.191.4/32\",\r\n
+ \ \"52.172.215.87/32\",\r\n \"52.228.24.159/32\",\r\n \"52.228.83.160/27\",\r\n
+ \ \"52.228.84.84/30\",\r\n \"52.228.84.96/28\",\r\n \"52.233.66.46/32\",\r\n
+ \ \"52.243.76.246/32\",\r\n \"102.133.56.160/27\",\r\n \"102.133.58.192/30\",\r\n
+ \ \"102.133.61.176/29\",\r\n \"102.133.217.192/27\",\r\n
+ \ \"102.133.218.56/30\",\r\n \"102.133.221.0/29\",\r\n \"104.41.216.228/32\",\r\n
+ \ \"104.42.195.92/32\",\r\n \"104.46.178.96/29\",\r\n \"104.211.89.213/32\",\r\n
+ \ \"104.211.101.116/32\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"104.215.146.128/32\",\r\n
+ \ \"137.116.247.179/32\",\r\n \"191.233.10.96/27\",\r\n \"191.233.15.0/29\",\r\n
+ \ \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n \"191.234.139.144/29\",\r\n
+ \ \"191.235.227.160/27\",\r\n \"213.199.128.226/32\",\r\n
+ \ \"2603:1000:4::700/121\",\r\n \"2603:1000:104::200/121\",\r\n
+ \ \"2603:1000:104::400/121\",\r\n \"2603:1000:104:1::680/121\",\r\n
+ \ \"2603:1010:6::100/121\",\r\n \"2603:1010:6:1::680/121\",\r\n
+ \ \"2603:1010:101::700/121\",\r\n \"2603:1010:304::700/121\",\r\n
+ \ \"2603:1010:404::700/121\",\r\n \"2603:1020:5::100/121\",\r\n
+ \ \"2603:1020:5:1::680/121\",\r\n \"2603:1020:206::100/121\",\r\n
+ \ \"2603:1020:206:1::680/121\",\r\n \"2603:1020:305::700/121\",\r\n
+ \ \"2603:1020:405::700/121\",\r\n \"2603:1020:605::700/121\",\r\n
+ \ \"2603:1020:705::100/121\",\r\n \"2603:1020:705:1::680/121\",\r\n
+ \ \"2603:1020:805::100/121\",\r\n \"2603:1020:805:1::680/121\",\r\n
+ \ \"2603:1020:905::700/121\",\r\n \"2603:1020:a04::100/121\",\r\n
+ \ \"2603:1020:a04:1::680/121\",\r\n \"2603:1020:b04::700/121\",\r\n
+ \ \"2603:1020:c04::100/121\",\r\n \"2603:1020:c04:1::680/121\",\r\n
+ \ \"2603:1020:d04::700/121\",\r\n \"2603:1020:e04::100/121\",\r\n
+ \ \"2603:1020:e04:1::680/121\",\r\n \"2603:1020:f04::700/121\",\r\n
+ \ \"2603:1020:1004::680/121\",\r\n \"2603:1020:1004:1::100/121\",\r\n
+ \ \"2603:1020:1104::780/121\",\r\n \"2603:1030:f:1::700/121\",\r\n
+ \ \"2603:1030:10::100/121\",\r\n \"2603:1030:10:1::680/121\",\r\n
+ \ \"2603:1030:104::100/121\",\r\n \"2603:1030:104:1::680/121\",\r\n
+ \ \"2603:1030:107:1::/121\",\r\n \"2603:1030:210::100/121\",\r\n
+ \ \"2603:1030:210:1::680/121\",\r\n \"2603:1030:40b:1::680/121\",\r\n
+ \ \"2603:1030:40c::100/121\",\r\n \"2603:1030:40c:1::680/121\",\r\n
+ \ \"2603:1030:504::100/121\",\r\n \"2603:1030:504:1::680/121\",\r\n
+ \ \"2603:1030:608::700/121\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\",\r\n \"2603:1030:a07::700/121\",\r\n
+ \ \"2603:1030:b04::700/121\",\r\n \"2603:1030:c06:1::680/121\",\r\n
+ \ \"2603:1030:f05::100/121\",\r\n \"2603:1030:f05:1::680/121\",\r\n
+ \ \"2603:1030:1005::700/121\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\",\r\n \"2603:1040:207::700/121\",\r\n
+ \ \"2603:1040:407::100/121\",\r\n \"2603:1040:407:1::680/121\",\r\n
+ \ \"2603:1040:606::700/121\",\r\n \"2603:1040:806::700/121\",\r\n
+ \ \"2603:1040:904::100/121\",\r\n \"2603:1040:904:1::680/121\",\r\n
+ \ \"2603:1040:a06::200/121\",\r\n \"2603:1040:a06:1::680/121\",\r\n
+ \ \"2603:1040:b04::700/121\",\r\n \"2603:1040:c06::700/121\",\r\n
+ \ \"2603:1040:d04::680/121\",\r\n \"2603:1040:d04:1::100/121\",\r\n
+ \ \"2603:1040:f05::100/121\",\r\n \"2603:1040:f05:1::680/121\",\r\n
+ \ \"2603:1040:1104::780/121\",\r\n \"2603:1050:6::100/121\",\r\n
+ \ \"2603:1050:6:1::680/121\",\r\n \"2603:1050:403::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.AustraliaCentral\",\r\n
+ \ \"id\": \"AzurePortal.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.225.128/27\",\r\n \"20.37.226.56/30\",\r\n
+ \ \"20.37.229.152/29\",\r\n \"2603:1010:304::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.BrazilSouth\",\r\n
+ \ \"id\": \"AzurePortal.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n
+ \ \"191.234.139.144/29\",\r\n \"191.235.227.160/27\",\r\n
+ \ \"2603:1050:6::100/121\",\r\n \"2603:1050:6:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastAsia\",\r\n
+ \ \"id\": \"AzurePortal.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"20.187.197.0/29\",\r\n \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n
+ \ \"20.189.109.160/27\",\r\n \"2603:1040:207::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastUS2\",\r\n
+ \ \"id\": \"AzurePortal.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.192/27\",\r\n \"20.44.19.32/28\",\r\n \"20.49.99.16/28\",\r\n
+ \ \"20.49.99.32/30\",\r\n \"20.49.103.96/29\",\r\n \"2603:1030:40c::100/121\",\r\n
+ \ \"2603:1030:40c:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.FranceSouth\",\r\n \"id\": \"AzurePortal.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.160/27\",\r\n
+ \ \"51.105.90.152/30\",\r\n \"52.136.184.64/29\",\r\n \"2603:1020:905::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.GermanyNorth\",\r\n
+ \ \"id\": \"AzurePortal.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n
+ \ \"51.116.51.160/29\",\r\n \"2603:1020:d04::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.KoreaSouth\",\r\n
+ \ \"id\": \"AzurePortal.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.169.224/27\",\r\n \"40.80.172.16/30\",\r\n
+ \ \"40.80.173.192/29\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzurePortal.NorthEurope\",\r\n \"id\": \"AzurePortal.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.50.65.72/30\",\r\n \"52.146.132.80/29\",\r\n
+ \ \"104.41.216.228/32\",\r\n \"137.116.247.179/32\",\r\n
+ \ \"2603:1020:5::100/121\",\r\n \"2603:1020:5:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.SouthCentralUS\",\r\n
+ \ \"id\": \"AzurePortal.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"20.45.125.240/28\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.119.9.236/30\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.SoutheastAsia\",\r\n \"id\": \"AzurePortal.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"13.67.35.35/32\",\r\n
+ \ \"13.67.35.77/32\",\r\n \"20.43.132.32/27\",\r\n \"23.98.104.80/28\",\r\n
+ \ \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n \"23.98.108.44/31\",\r\n
+ \ \"23.98.108.168/29\",\r\n \"40.78.239.48/28\",\r\n \"52.163.207.80/32\",\r\n
+ \ \"104.215.146.128/32\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager\",\r\n \"id\": \"AzureResourceManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.176/28\",\r\n \"13.67.18.0/23\",\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"13.69.229.224/28\",\r\n \"13.69.234.0/23\",\r\n
+ \ \"13.70.74.64/28\",\r\n \"13.70.76.0/23\",\r\n \"13.71.173.192/28\",\r\n
+ \ \"13.71.196.80/28\",\r\n \"13.71.198.0/24\",\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"13.75.39.16/28\",\r\n \"13.77.53.32/28\",\r\n
+ \ \"13.77.55.0/25\",\r\n \"13.78.109.96/28\",\r\n \"13.86.219.80/28\",\r\n
+ \ \"13.86.222.0/24\",\r\n \"13.87.57.240/28\",\r\n \"13.87.60.0/23\",\r\n
+ \ \"13.87.123.240/28\",\r\n \"13.87.126.0/24\",\r\n \"13.89.180.0/23\",\r\n
+ \ \"20.36.108.48/28\",\r\n \"20.36.110.0/23\",\r\n \"20.36.115.144/28\",\r\n
+ \ \"20.36.118.0/23\",\r\n \"20.36.126.0/23\",\r\n \"20.37.76.48/28\",\r\n
+ \ \"20.37.78.0/23\",\r\n \"20.37.230.0/23\",\r\n \"20.38.128.32/28\",\r\n
+ \ \"20.38.130.0/23\",\r\n \"20.38.150.0/23\",\r\n \"20.40.206.240/28\",\r\n
+ \ \"20.40.226.0/23\",\r\n \"20.41.70.0/23\",\r\n \"20.43.120.224/28\",\r\n
+ \ \"20.43.124.0/23\",\r\n \"20.44.3.240/28\",\r\n \"20.44.6.0/23\",\r\n
+ \ \"20.44.8.16/28\",\r\n \"20.44.16.112/28\",\r\n \"20.44.20.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"20.45.88.0/23\",\r\n \"20.45.118.0/23\",\r\n
+ \ \"20.46.8.0/23\",\r\n \"20.48.194.0/23\",\r\n \"20.49.116.0/23\",\r\n
+ \ \"20.50.68.96/28\",\r\n \"20.51.10.0/23\",\r\n \"20.51.18.0/23\",\r\n
+ \ \"20.53.42.0/23\",\r\n \"20.58.64.0/23\",\r\n \"20.61.100.0/23\",\r\n
+ \ \"20.62.56.0/23\",\r\n \"20.62.130.0/23\",\r\n \"20.65.128.0/23\",\r\n
+ \ \"20.66.0.0/23\",\r\n \"20.72.28.64/26\",\r\n \"20.88.64.64/26\",\r\n
+ \ \"20.150.225.128/26\",\r\n \"20.150.242.0/23\",\r\n \"20.187.198.0/23\",\r\n
+ \ \"20.189.168.0/24\",\r\n \"20.189.226.0/23\",\r\n \"20.191.162.0/23\",\r\n
+ \ \"20.192.32.128/26\",\r\n \"20.192.40.0/23\",\r\n \"20.192.52.0/23\",\r\n
+ \ \"20.193.196.0/23\",\r\n \"20.193.204.0/26\",\r\n \"20.195.144.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.67.54.0/23\",\r\n \"40.67.59.208/28\",\r\n
+ \ \"40.67.62.0/23\",\r\n \"40.67.120.0/24\",\r\n \"40.69.108.32/28\",\r\n
+ \ \"40.69.112.0/22\",\r\n \"40.71.13.224/28\",\r\n \"40.74.102.0/28\",\r\n
+ \ \"40.75.35.32/28\",\r\n \"40.75.38.0/23\",\r\n \"40.78.196.32/28\",\r\n
+ \ \"40.78.198.0/23\",\r\n \"40.78.203.224/28\",\r\n \"40.78.206.0/23\",\r\n
+ \ \"40.78.234.176/28\",\r\n \"40.78.254.0/23\",\r\n \"40.79.131.240/28\",\r\n
+ \ \"40.79.134.0/23\",\r\n \"40.79.158.0/23\",\r\n \"40.79.180.0/28\",\r\n
+ \ \"40.79.182.0/23\",\r\n \"40.79.198.0/23\",\r\n \"40.80.174.0/23\",\r\n
+ \ \"40.80.178.0/23\",\r\n \"40.113.178.0/28\",\r\n \"40.120.80.0/23\",\r\n
+ \ \"51.11.64.0/24\",\r\n \"51.11.96.0/24\",\r\n \"51.12.44.0/23\",\r\n
+ \ \"51.12.101.64/26\",\r\n \"51.12.196.0/23\",\r\n \"51.12.205.0/26\",\r\n
+ \ \"51.104.8.224/28\",\r\n \"51.105.78.0/23\",\r\n \"51.105.94.0/23\",\r\n
+ \ \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n \"51.107.158.0/23\",\r\n
+ \ \"51.116.52.0/23\",\r\n \"51.116.60.32/28\",\r\n \"51.116.62.0/23\",\r\n
+ \ \"51.116.150.0/23\",\r\n \"51.116.156.32/28\",\r\n \"51.116.159.0/24\",\r\n
+ \ \"51.120.46.0/23\",\r\n \"51.120.100.32/28\",\r\n \"51.120.102.0/23\",\r\n
+ \ \"51.120.220.32/28\",\r\n \"51.120.222.0/23\",\r\n \"51.120.230.0/23\",\r\n
+ \ \"51.138.208.0/23\",\r\n \"51.140.212.16/28\",\r\n \"51.140.214.0/24\",\r\n
+ \ \"51.143.210.0/23\",\r\n \"52.136.54.0/23\",\r\n \"52.138.94.0/23\",\r\n
+ \ \"52.139.104.0/23\",\r\n \"52.146.134.0/23\",\r\n \"52.147.96.0/24\",\r\n
+ \ \"52.150.158.0/23\",\r\n \"52.162.110.224/28\",\r\n \"52.172.114.0/23\",\r\n
+ \ \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n \"52.231.148.64/28\",\r\n
+ \ \"52.231.150.0/24\",\r\n \"52.240.242.0/23\",\r\n \"65.52.252.48/28\",\r\n
+ \ \"65.52.254.0/23\",\r\n \"102.133.28.16/28\",\r\n \"102.133.30.0/23\",\r\n
+ \ \"102.133.62.0/23\",\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"104.46.160.0/24\",\r\n \"104.46.161.0/25\",\r\n
+ \ \"104.46.180.0/23\",\r\n \"104.214.162.0/23\",\r\n \"168.61.138.0/23\",\r\n
+ \ \"168.61.143.192/26\",\r\n \"191.233.52.0/23\",\r\n \"191.233.205.16/28\",\r\n
+ \ \"191.234.140.0/23\",\r\n \"191.234.158.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\",\r\n \"2603:1010:6::180/122\",\r\n
+ \ \"2603:1010:6:402::280/122\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\",\r\n \"2603:1010:304::6c0/122\",\r\n
+ \ \"2603:1010:304:402::280/122\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\",\r\n \"2603:1020:5::180/122\",\r\n
+ \ \"2603:1020:5:402::280/122\",\r\n \"2603:1020:206::180/122\",\r\n
+ \ \"2603:1020:206:402::280/122\",\r\n \"2603:1020:305::6c0/122\",\r\n
+ \ \"2603:1020:305:402::280/122\",\r\n \"2603:1020:405::6c0/122\",\r\n
+ \ \"2603:1020:405:402::280/122\",\r\n \"2603:1020:605::6c0/122\",\r\n
+ \ \"2603:1020:605:402::280/122\",\r\n \"2603:1020:705::180/122\",\r\n
+ \ \"2603:1020:705:402::280/122\",\r\n \"2603:1020:805::180/122\",\r\n
+ \ \"2603:1020:805:402::280/122\",\r\n \"2603:1020:905::6c0/122\",\r\n
+ \ \"2603:1020:905:402::280/122\",\r\n \"2603:1020:a04::180/122\",\r\n
+ \ \"2603:1020:a04:402::280/122\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\",\r\n \"2603:1020:c04::180/122\",\r\n
+ \ \"2603:1020:c04:402::280/122\",\r\n \"2603:1020:d04::6c0/122\",\r\n
+ \ \"2603:1020:d04:402::280/122\",\r\n \"2603:1020:e04::180/122\",\r\n
+ \ \"2603:1020:e04:3::300/120\",\r\n \"2603:1020:e04:402::280/122\",\r\n
+ \ \"2603:1020:f04::6c0/122\",\r\n \"2603:1020:f04:402::280/122\",\r\n
+ \ \"2603:1020:1004:1::400/120\",\r\n \"2603:1020:1004:400::180/122\",\r\n
+ \ \"2603:1020:1104:1::/120\",\r\n \"2603:1020:1104:400::280/122\",\r\n
+ \ \"2603:1030:f:1::6c0/122\",\r\n \"2603:1030:f:2::700/120\",\r\n
+ \ \"2603:1030:f:400::a80/122\",\r\n \"2603:1030:10::180/122\",\r\n
+ \ \"2603:1030:10:402::280/122\",\r\n \"2603:1030:104::180/122\",\r\n
+ \ \"2603:1030:104:402::280/122\",\r\n \"2603:1030:107:1::100/120\",\r\n
+ \ \"2603:1030:107:400::200/122\",\r\n \"2603:1030:210::180/122\",\r\n
+ \ \"2603:1030:210:402::280/122\",\r\n \"2603:1030:40b:2::40/122\",\r\n
+ \ \"2603:1030:40b:400::a80/122\",\r\n \"2603:1030:40c::180/122\",\r\n
+ \ \"2603:1030:40c:402::280/122\",\r\n \"2603:1030:504::400/120\",\r\n
+ \ \"2603:1030:504:402::180/122\",\r\n \"2603:1030:608::6c0/122\",\r\n
+ \ \"2603:1030:608:402::280/122\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\",\r\n \"2603:1030:a07::6c0/122\",\r\n
+ \ \"2603:1030:a07:402::900/122\",\r\n \"2603:1030:b04::6c0/122\",\r\n
+ \ \"2603:1030:b04:402::280/122\",\r\n \"2603:1030:c06:2::40/122\",\r\n
+ \ \"2603:1030:c06:400::a80/122\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\",\r\n \"2603:1030:1005::6c0/122\",\r\n
+ \ \"2603:1030:1005:402::280/122\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\",\r\n \"2603:1040:207::6c0/122\",\r\n
+ \ \"2603:1040:207:402::280/122\",\r\n \"2603:1040:407::180/122\",\r\n
+ \ \"2603:1040:407:402::280/122\",\r\n \"2603:1040:606::6c0/122\",\r\n
+ \ \"2603:1040:606:402::280/122\",\r\n \"2603:1040:806::6c0/122\",\r\n
+ \ \"2603:1040:806:402::280/122\",\r\n \"2603:1040:904::180/122\",\r\n
+ \ \"2603:1040:904:402::280/122\",\r\n \"2603:1040:a06::280/122\",\r\n
+ \ \"2603:1040:a06:402::280/122\",\r\n \"2603:1040:b04::6c0/122\",\r\n
+ \ \"2603:1040:b04:402::280/122\",\r\n \"2603:1040:c06::6c0/122\",\r\n
+ \ \"2603:1040:c06:402::280/122\",\r\n \"2603:1040:d04:1::400/120\",\r\n
+ \ \"2603:1040:d04:400::180/122\",\r\n \"2603:1040:f05::180/122\",\r\n
+ \ \"2603:1040:f05:2::100/120\",\r\n \"2603:1040:f05:402::280/122\",\r\n
+ \ \"2603:1040:1104:1::/120\",\r\n \"2603:1040:1104:400::280/122\",\r\n
+ \ \"2603:1050:6::180/122\",\r\n \"2603:1050:6:402::280/122\",\r\n
+ \ \"2603:1050:403:1::40/122\",\r\n \"2603:1050:403:400::440/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.115.144/28\",\r\n \"20.36.118.0/23\",\r\n
+ \ \"20.36.126.0/23\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.32/28\",\r\n \"13.77.55.0/25\",\r\n \"104.46.160.0/24\",\r\n
+ \ \"104.46.161.0/25\",\r\n \"104.46.180.0/23\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.CanadaCentral\",\r\n \"id\":
+ \"AzureResourceManager.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.71.173.192/28\",\r\n
+ \ \"20.38.150.0/23\",\r\n \"20.48.194.0/23\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.KoreaCentral\",\r\n \"id\":
+ \"AzureResourceManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.70.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n
+ \ \"2603:1040:f05::180/122\",\r\n \"2603:1040:f05:2::100/120\",\r\n
+ \ \"2603:1040:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaWest\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.28.16/28\",\r\n
+ \ \"102.133.30.0/23\",\r\n \"102.133.62.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthCentralUS\",\r\n \"id\":
+ \"AzureResourceManager.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"20.65.128.0/23\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SoutheastAsia\",\r\n \"id\":
+ \"AzureResourceManager.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.67.18.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.78.234.176/28\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureResourceManager.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"2603:1020:a04::180/122\",\r\n \"2603:1020:a04:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureResourceManager.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n
+ \ \"51.107.158.0/23\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.WestEurope\",\r\n \"id\":
+ \"AzureResourceManager.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"20.61.100.0/23\",\r\n \"40.113.178.0/28\",\r\n
+ \ \"2603:1020:206::180/122\",\r\n \"2603:1020:206:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR\",\r\n
+ \ \"id\": \"AzureSignalR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.145.0/26\",\r\n \"13.67.15.64/27\",\r\n \"13.69.113.0/24\",\r\n
+ \ \"13.69.232.128/25\",\r\n \"13.70.74.224/27\",\r\n \"13.71.199.32/27\",\r\n
+ \ \"13.73.244.64/27\",\r\n \"13.74.111.0/25\",\r\n \"13.78.109.224/27\",\r\n
+ \ \"13.89.175.128/26\",\r\n \"20.38.132.96/27\",\r\n \"20.38.143.192/27\",\r\n
+ \ \"20.38.149.224/27\",\r\n \"20.40.229.0/27\",\r\n \"20.42.64.128/25\",\r\n
+ \ \"20.42.72.0/25\",\r\n \"20.44.10.128/26\",\r\n \"20.44.17.128/26\",\r\n
+ \ \"20.45.123.192/27\",\r\n \"20.46.11.96/27\",\r\n \"20.48.196.192/27\",\r\n
+ \ \"20.49.91.192/27\",\r\n \"20.49.119.96/27\",\r\n \"20.51.12.32/27\",\r\n
+ \ \"20.51.17.224/27\",\r\n \"20.53.47.32/27\",\r\n \"20.61.102.64/27\",\r\n
+ \ \"20.62.59.32/27\",\r\n \"20.62.133.64/27\",\r\n \"20.65.132.224/27\",\r\n
+ \ \"20.66.3.224/27\",\r\n \"20.69.0.192/27\",\r\n \"20.135.13.160/27\",\r\n
+ \ \"20.150.174.160/27\",\r\n \"20.150.244.160/27\",\r\n \"20.189.170.0/24\",\r\n
+ \ \"20.191.166.64/27\",\r\n \"20.192.44.64/27\",\r\n \"20.194.73.192/27\",\r\n
+ \ \"20.195.65.192/27\",\r\n \"20.195.72.192/27\",\r\n \"23.98.86.64/27\",\r\n
+ \ \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n \"40.70.148.192/26\",\r\n
+ \ \"40.71.15.0/25\",\r\n \"40.78.204.96/27\",\r\n \"40.78.238.64/26\",\r\n
+ \ \"40.78.238.128/25\",\r\n \"40.78.245.64/26\",\r\n \"40.78.253.0/26\",\r\n
+ \ \"40.79.132.160/27\",\r\n \"40.79.139.96/27\",\r\n \"40.79.148.32/27\",\r\n
+ \ \"40.79.163.96/27\",\r\n \"40.79.171.192/27\",\r\n \"40.79.189.0/27\",\r\n
+ \ \"40.79.197.0/27\",\r\n \"40.80.53.32/27\",\r\n \"40.120.64.160/27\",\r\n
+ \ \"51.12.17.160/27\",\r\n \"51.12.46.192/27\",\r\n \"51.12.101.192/27\",\r\n
+ \ \"51.12.168.0/27\",\r\n \"51.104.9.64/27\",\r\n \"51.105.69.32/27\",\r\n
+ \ \"51.105.77.0/27\",\r\n \"51.107.128.128/27\",\r\n \"51.107.192.192/27\",\r\n
+ \ \"51.107.242.192/27\",\r\n \"51.107.250.192/27\",\r\n \"51.116.149.96/27\",\r\n
+ \ \"51.116.246.32/27\",\r\n \"51.120.213.96/27\",\r\n \"51.120.233.96/27\",\r\n
+ \ \"51.138.210.96/27\",\r\n \"51.143.212.128/27\",\r\n \"52.136.53.224/27\",\r\n
+ \ \"52.138.92.224/27\",\r\n \"52.138.229.128/25\",\r\n \"52.139.107.96/27\",\r\n
+ \ \"52.146.136.32/27\",\r\n \"52.167.109.0/26\",\r\n \"52.178.16.0/24\",\r\n
+ \ \"52.182.141.64/26\",\r\n \"52.231.20.96/27\",\r\n \"52.231.20.192/26\",\r\n
+ \ \"52.236.190.0/24\",\r\n \"102.37.160.32/27\",\r\n \"102.133.126.96/27\",\r\n
+ \ \"104.214.164.160/27\",\r\n \"191.233.207.128/27\",\r\n
+ \ \"191.238.72.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.AustraliaEast\",\r\n \"id\": \"AzureSignalR.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSignalR\",\r\n \"addressPrefixes\": [\r\n \"13.70.74.224/27\",\r\n
+ \ \"20.53.47.32/27\",\r\n \"40.79.163.96/27\",\r\n \"40.79.171.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.CanadaEast\",\r\n
+ \ \"id\": \"AzureSignalR.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n
+ \ \"52.139.107.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.EastUS\",\r\n \"id\": \"AzureSignalR.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSignalR\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.64.128/25\",\r\n \"20.42.72.0/25\",\r\n
+ \ \"20.62.133.64/27\",\r\n \"40.71.15.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.NorthEurope\",\r\n
+ \ \"id\": \"AzureSignalR.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.232.128/25\",\r\n \"13.74.111.0/25\",\r\n
+ \ \"52.138.229.128/25\",\r\n \"52.146.136.32/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSiteRecovery\",\r\n \"id\":
+ \"AzureSiteRecovery\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSiteRecovery\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.240/28\",\r\n \"13.67.10.96/28\",\r\n
+ \ \"13.69.67.80/28\",\r\n \"13.69.107.80/28\",\r\n \"13.69.230.16/28\",\r\n
+ \ \"13.70.74.96/28\",\r\n \"13.70.159.158/32\",\r\n \"13.71.173.224/28\",\r\n
+ \ \"13.71.196.144/28\",\r\n \"13.73.242.192/28\",\r\n \"13.74.108.144/28\",\r\n
+ \ \"13.75.39.80/28\",\r\n \"13.77.53.64/28\",\r\n \"13.78.109.128/28\",\r\n
+ \ \"13.82.88.226/32\",\r\n \"13.84.148.14/32\",\r\n \"13.86.219.176/28\",\r\n
+ \ \"13.87.37.4/32\",\r\n \"13.87.58.48/28\",\r\n \"13.87.124.48/28\",\r\n
+ \ \"13.89.174.144/28\",\r\n \"20.36.34.70/32\",\r\n \"20.36.69.62/32\",\r\n
+ \ \"20.36.108.96/28\",\r\n \"20.36.115.224/28\",\r\n \"20.36.120.80/28\",\r\n
+ \ \"20.37.64.80/28\",\r\n \"20.37.76.128/28\",\r\n \"20.37.156.96/28\",\r\n
+ \ \"20.37.192.112/28\",\r\n \"20.37.224.80/28\",\r\n \"20.38.80.112/28\",\r\n
+ \ \"20.38.128.80/28\",\r\n \"20.38.136.80/28\",\r\n \"20.38.147.160/28\",\r\n
+ \ \"20.39.8.80/28\",\r\n \"20.41.4.64/28\",\r\n \"20.41.64.96/28\",\r\n
+ \ \"20.41.192.80/28\",\r\n \"20.42.4.96/28\",\r\n \"20.42.129.128/28\",\r\n
+ \ \"20.42.224.80/28\",\r\n \"20.43.40.112/28\",\r\n \"20.43.64.112/28\",\r\n
+ \ \"20.43.121.16/28\",\r\n \"20.43.130.64/28\",\r\n \"20.44.4.80/28\",\r\n
+ \ \"20.44.8.176/28\",\r\n \"20.44.17.32/28\",\r\n \"20.44.27.192/28\",\r\n
+ \ \"20.45.75.232/32\",\r\n \"20.45.112.80/28\",\r\n \"20.45.123.96/28\",\r\n
+ \ \"20.45.192.80/28\",\r\n \"20.49.83.48/28\",\r\n \"20.49.91.48/28\",\r\n
+ \ \"20.72.16.0/28\",\r\n \"20.72.28.32/28\",\r\n \"20.150.160.80/28\",\r\n
+ \ \"20.150.172.48/28\",\r\n \"20.150.179.208/28\",\r\n \"20.150.187.208/28\",\r\n
+ \ \"20.189.106.96/28\",\r\n \"20.192.99.208/28\",\r\n \"20.192.160.0/28\",\r\n
+ \ \"20.192.225.0/28\",\r\n \"20.192.235.224/28\",\r\n \"20.193.203.208/28\",\r\n
+ \ \"20.194.67.48/28\",\r\n \"23.96.195.247/32\",\r\n \"23.98.83.80/28\",\r\n
+ \ \"40.67.48.80/28\",\r\n \"40.67.60.80/28\",\r\n \"40.69.108.64/28\",\r\n
+ \ \"40.69.144.231/32\",\r\n \"40.69.212.238/32\",\r\n \"40.70.148.96/28\",\r\n
+ \ \"40.71.14.0/28\",\r\n \"40.74.24.112/28\",\r\n \"40.74.147.176/28\",\r\n
+ \ \"40.75.35.80/28\",\r\n \"40.78.196.64/28\",\r\n \"40.78.204.16/28\",\r\n
+ \ \"40.78.229.48/28\",\r\n \"40.78.236.144/28\",\r\n \"40.78.243.160/28\",\r\n
+ \ \"40.78.251.96/28\",\r\n \"40.79.132.64/28\",\r\n \"40.79.139.0/28\",\r\n
+ \ \"40.79.146.192/28\",\r\n \"40.79.156.48/28\",\r\n \"40.79.163.16/28\",\r\n
+ \ \"40.79.171.96/28\",\r\n \"40.79.180.32/28\",\r\n \"40.79.187.176/28\",\r\n
+ \ \"40.79.195.160/28\",\r\n \"40.80.51.96/28\",\r\n \"40.80.56.80/28\",\r\n
+ \ \"40.80.168.80/28\",\r\n \"40.80.176.16/28\",\r\n \"40.80.184.96/28\",\r\n
+ \ \"40.82.248.96/28\",\r\n \"40.83.179.48/32\",\r\n \"40.89.16.80/28\",\r\n
+ \ \"40.119.9.192/28\",\r\n \"40.120.75.96/28\",\r\n \"40.123.219.238/32\",\r\n
+ \ \"51.12.47.0/28\",\r\n \"51.12.100.32/28\",\r\n \"51.12.198.112/28\",\r\n
+ \ \"51.12.204.32/28\",\r\n \"51.12.227.208/28\",\r\n \"51.12.235.208/28\",\r\n
+ \ \"51.104.9.0/28\",\r\n \"51.104.24.112/28\",\r\n \"51.105.67.192/28\",\r\n
+ \ \"51.105.75.160/28\",\r\n \"51.105.80.80/28\",\r\n \"51.105.88.80/28\",\r\n
+ \ \"51.107.48.80/28\",\r\n \"51.107.60.64/28\",\r\n \"51.107.68.31/32\",\r\n
+ \ \"51.107.144.80/28\",\r\n \"51.107.156.80/28\",\r\n \"51.107.231.223/32\",\r\n
+ \ \"51.116.48.80/28\",\r\n \"51.116.60.64/28\",\r\n \"51.116.144.80/28\",\r\n
+ \ \"51.116.156.176/28\",\r\n \"51.116.208.58/32\",\r\n \"51.116.243.128/28\",\r\n
+ \ \"51.116.251.48/28\",\r\n \"51.120.40.80/28\",\r\n \"51.120.100.64/28\",\r\n
+ \ \"51.120.107.208/28\",\r\n \"51.120.211.208/28\",\r\n \"51.120.220.64/28\",\r\n
+ \ \"51.120.224.80/28\",\r\n \"51.137.160.96/28\",\r\n \"51.140.43.158/32\",\r\n
+ \ \"51.140.212.80/28\",\r\n \"51.141.3.203/32\",\r\n \"51.142.209.167/32\",\r\n
+ \ \"51.143.192.80/28\",\r\n \"52.136.48.80/28\",\r\n \"52.136.139.227/32\",\r\n
+ \ \"52.138.92.64/28\",\r\n \"52.138.227.144/28\",\r\n \"52.140.104.80/28\",\r\n
+ \ \"52.143.138.106/32\",\r\n \"52.150.136.96/28\",\r\n \"52.161.20.168/32\",\r\n
+ \ \"52.162.111.0/28\",\r\n \"52.166.13.64/32\",\r\n \"52.167.107.80/28\",\r\n
+ \ \"52.172.46.220/32\",\r\n \"52.172.187.37/32\",\r\n \"52.175.17.132/32\",\r\n
+ \ \"52.175.146.69/32\",\r\n \"52.180.178.64/32\",\r\n \"52.182.139.192/28\",\r\n
+ \ \"52.183.45.166/32\",\r\n \"52.184.158.163/32\",\r\n \"52.185.150.140/32\",\r\n
+ \ \"52.187.58.193/32\",\r\n \"52.187.191.206/32\",\r\n \"52.225.188.170/32\",\r\n
+ \ \"52.228.36.192/32\",\r\n \"52.228.80.96/28\",\r\n \"52.229.125.98/32\",\r\n
+ \ \"52.231.20.16/28\",\r\n \"52.231.28.253/32\",\r\n \"52.231.148.96/28\",\r\n
+ \ \"52.231.198.185/32\",\r\n \"52.236.187.64/28\",\r\n \"52.246.155.160/28\",\r\n
+ \ \"65.52.252.192/28\",\r\n \"102.133.28.128/28\",\r\n \"102.133.59.160/28\",\r\n
+ \ \"102.133.72.51/32\",\r\n \"102.133.124.64/28\",\r\n \"102.133.156.96/28\",\r\n
+ \ \"102.133.160.44/32\",\r\n \"102.133.218.176/28\",\r\n
+ \ \"102.133.251.160/28\",\r\n \"104.210.113.114/32\",\r\n
+ \ \"104.211.177.6/32\",\r\n \"191.233.8.0/28\",\r\n \"191.233.51.192/28\",\r\n
+ \ \"191.233.205.80/28\",\r\n \"191.234.147.208/28\",\r\n
+ \ \"191.234.155.208/28\",\r\n \"191.234.185.172/32\",\r\n
+ \ \"191.235.224.112/28\",\r\n \"2603:1000:4::/123\",\r\n
+ \ \"2603:1000:4:402::2d0/125\",\r\n \"2603:1000:104:1::/123\",\r\n
+ \ \"2603:1000:104:402::2d0/125\",\r\n \"2603:1000:104:802::158/125\",\r\n
+ \ \"2603:1000:104:c02::158/125\",\r\n \"2603:1010:6:1::/123\",\r\n
+ \ \"2603:1010:6:402::2d0/125\",\r\n \"2603:1010:6:802::158/125\",\r\n
+ \ \"2603:1010:6:c02::158/125\",\r\n \"2603:1010:101::/123\",\r\n
+ \ \"2603:1010:101:402::2d0/125\",\r\n \"2603:1010:304::/123\",\r\n
+ \ \"2603:1010:304:402::2d0/125\",\r\n \"2603:1010:404::/123\",\r\n
+ \ \"2603:1010:404:402::2d0/125\",\r\n \"2603:1020:5:1::/123\",\r\n
+ \ \"2603:1020:5:402::2d0/125\",\r\n \"2603:1020:5:802::158/125\",\r\n
+ \ \"2603:1020:5:c02::158/125\",\r\n \"2603:1020:206:1::/123\",\r\n
+ \ \"2603:1020:206:402::2d0/125\",\r\n \"2603:1020:206:802::158/125\",\r\n
+ \ \"2603:1020:206:c02::158/125\",\r\n \"2603:1020:305::/123\",\r\n
+ \ \"2603:1020:305:402::2d0/125\",\r\n \"2603:1020:405::/123\",\r\n
+ \ \"2603:1020:405:402::2d0/125\",\r\n \"2603:1020:605::/123\",\r\n
+ \ \"2603:1020:605:402::2d0/125\",\r\n \"2603:1020:705:1::/123\",\r\n
+ \ \"2603:1020:705:402::2d0/125\",\r\n \"2603:1020:705:802::158/125\",\r\n
+ \ \"2603:1020:705:c02::158/125\",\r\n \"2603:1020:805:1::/123\",\r\n
+ \ \"2603:1020:805:402::2d0/125\",\r\n \"2603:1020:805:802::158/125\",\r\n
+ \ \"2603:1020:805:c02::158/125\",\r\n \"2603:1020:905::/123\",\r\n
+ \ \"2603:1020:905:402::2d0/125\",\r\n \"2603:1020:a04:1::/123\",\r\n
+ \ \"2603:1020:a04:402::2d0/125\",\r\n \"2603:1020:a04:802::158/125\",\r\n
+ \ \"2603:1020:a04:c02::158/125\",\r\n \"2603:1020:b04::/123\",\r\n
+ \ \"2603:1020:b04:402::2d0/125\",\r\n \"2603:1020:c04:1::/123\",\r\n
+ \ \"2603:1020:c04:402::2d0/125\",\r\n \"2603:1020:c04:802::158/125\",\r\n
+ \ \"2603:1020:c04:c02::158/125\",\r\n \"2603:1020:d04::/123\",\r\n
+ \ \"2603:1020:d04:402::2d0/125\",\r\n \"2603:1020:e04:1::/123\",\r\n
+ \ \"2603:1020:e04:402::2d0/125\",\r\n \"2603:1020:e04:802::158/125\",\r\n
+ \ \"2603:1020:e04:c02::158/125\",\r\n \"2603:1020:f04::/123\",\r\n
+ \ \"2603:1020:f04:402::2d0/125\",\r\n \"2603:1020:1004::/123\",\r\n
+ \ \"2603:1020:1004:400::1d0/125\",\r\n \"2603:1020:1004:400::2f0/125\",\r\n
+ \ \"2603:1020:1004:800::3e0/125\",\r\n \"2603:1020:1104::/123\",\r\n
+ \ \"2603:1020:1104:400::2d0/125\",\r\n \"2603:1030:f:1::/123\",\r\n
+ \ \"2603:1030:f:400::ad0/125\",\r\n \"2603:1030:10:1::/123\",\r\n
+ \ \"2603:1030:10:402::2d0/125\",\r\n \"2603:1030:10:802::158/125\",\r\n
+ \ \"2603:1030:10:c02::158/125\",\r\n \"2603:1030:104:1::/123\",\r\n
+ \ \"2603:1030:104:402::2d0/125\",\r\n \"2603:1030:107::/123\",\r\n
+ \ \"2603:1030:107:400::f8/125\",\r\n \"2603:1030:210:1::/123\",\r\n
+ \ \"2603:1030:210:402::2d0/125\",\r\n \"2603:1030:210:802::158/125\",\r\n
+ \ \"2603:1030:210:c02::158/125\",\r\n \"2603:1030:40b:1::/123\",\r\n
+ \ \"2603:1030:40b:400::ad0/125\",\r\n \"2603:1030:40b:800::158/125\",\r\n
+ \ \"2603:1030:40b:c00::158/125\",\r\n \"2603:1030:40c:1::/123\",\r\n
+ \ \"2603:1030:40c:402::2d0/125\",\r\n \"2603:1030:40c:802::158/125\",\r\n
+ \ \"2603:1030:40c:c02::158/125\",\r\n \"2603:1030:504:1::/123\",\r\n
+ \ \"2603:1030:504:402::1d0/125\",\r\n \"2603:1030:504:402::2f0/125\",\r\n
+ \ \"2603:1030:504:802::3e0/125\",\r\n \"2603:1030:504:c02::390/125\",\r\n
+ \ \"2603:1030:608::/123\",\r\n \"2603:1030:608:402::2d0/125\",\r\n
+ \ \"2603:1030:807:1::/123\",\r\n \"2603:1030:807:402::2d0/125\",\r\n
+ \ \"2603:1030:807:802::158/125\",\r\n \"2603:1030:807:c02::158/125\",\r\n
+ \ \"2603:1030:a07::/123\",\r\n \"2603:1030:a07:402::950/125\",\r\n
+ \ \"2603:1030:b04::/123\",\r\n \"2603:1030:b04:402::2d0/125\",\r\n
+ \ \"2603:1030:c06:1::/123\",\r\n \"2603:1030:c06:400::ad0/125\",\r\n
+ \ \"2603:1030:c06:802::158/125\",\r\n \"2603:1030:c06:c02::158/125\",\r\n
+ \ \"2603:1030:f05:1::/123\",\r\n \"2603:1030:f05:402::2d0/125\",\r\n
+ \ \"2603:1030:f05:802::158/125\",\r\n \"2603:1030:f05:c02::158/125\",\r\n
+ \ \"2603:1030:1005::/123\",\r\n \"2603:1030:1005:402::2d0/125\",\r\n
+ \ \"2603:1040:5:1::/123\",\r\n \"2603:1040:5:402::2d0/125\",\r\n
+ \ \"2603:1040:5:802::158/125\",\r\n \"2603:1040:5:c02::158/125\",\r\n
+ \ \"2603:1040:207::/123\",\r\n \"2603:1040:207:402::2d0/125\",\r\n
+ \ \"2603:1040:407:1::/123\",\r\n \"2603:1040:407:402::2d0/125\",\r\n
+ \ \"2603:1040:407:802::158/125\",\r\n \"2603:1040:407:c02::158/125\",\r\n
+ \ \"2603:1040:606::/123\",\r\n \"2603:1040:606:402::2d0/125\",\r\n
+ \ \"2603:1040:806::/123\",\r\n \"2603:1040:806:402::2d0/125\",\r\n
+ \ \"2603:1040:904:1::/123\",\r\n \"2603:1040:904:402::2d0/125\",\r\n
+ \ \"2603:1040:904:802::158/125\",\r\n \"2603:1040:904:c02::158/125\",\r\n
+ \ \"2603:1040:a06:1::/123\",\r\n \"2603:1040:a06:402::2d0/125\",\r\n
+ \ \"2603:1040:a06:802::158/125\",\r\n \"2603:1040:a06:c02::158/125\",\r\n
+ \ \"2603:1040:b04::/123\",\r\n \"2603:1040:b04:402::2d0/125\",\r\n
+ \ \"2603:1040:c06::/123\",\r\n \"2603:1040:c06:402::2d0/125\",\r\n
+ \ \"2603:1040:d04::/123\",\r\n \"2603:1040:d04:400::1d0/125\",\r\n
+ \ \"2603:1040:d04:400::2f0/125\",\r\n \"2603:1040:d04:800::3e0/125\",\r\n
+ \ \"2603:1040:f05:1::/123\",\r\n \"2603:1040:f05:402::2d0/125\",\r\n
+ \ \"2603:1040:f05:802::158/125\",\r\n \"2603:1040:f05:c02::158/125\",\r\n
+ \ \"2603:1040:1104::/123\",\r\n \"2603:1040:1104:400::2d0/125\",\r\n
+ \ \"2603:1050:6:1::/123\",\r\n \"2603:1050:6:402::2d0/125\",\r\n
+ \ \"2603:1050:6:802::158/125\",\r\n \"2603:1050:6:c02::158/125\",\r\n
+ \ \"2603:1050:403::/123\",\r\n \"2603:1050:403:400::1f0/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureTrafficManager\",\r\n
+ \ \"id\": \"AzureTrafficManager\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureTrafficManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.92.252/32\",\r\n \"13.65.95.152/32\",\r\n
+ \ \"13.75.124.254/32\",\r\n \"13.75.127.63/32\",\r\n \"13.75.152.253/32\",\r\n
+ \ \"13.75.153.124/32\",\r\n \"13.84.222.37/32\",\r\n \"23.96.236.252/32\",\r\n
+ \ \"23.101.191.199/32\",\r\n \"40.68.30.66/32\",\r\n \"40.68.31.178/32\",\r\n
+ \ \"40.78.67.110/32\",\r\n \"40.87.147.10/32\",\r\n \"40.87.151.34/32\",\r\n
+ \ \"40.114.5.197/32\",\r\n \"52.172.155.168/32\",\r\n \"52.172.158.37/32\",\r\n
+ \ \"52.173.90.107/32\",\r\n \"52.173.250.232/32\",\r\n \"52.240.144.45/32\",\r\n
+ \ \"52.240.151.125/32\",\r\n \"65.52.217.19/32\",\r\n \"104.41.187.209/32\",\r\n
+ \ \"104.41.190.203/32\",\r\n \"104.42.192.195/32\",\r\n \"104.45.149.110/32\",\r\n
+ \ \"104.215.91.84/32\",\r\n \"137.135.46.163/32\",\r\n \"137.135.47.215/32\",\r\n
+ \ \"137.135.80.149/32\",\r\n \"137.135.82.249/32\",\r\n \"191.232.208.52/32\",\r\n
+ \ \"191.232.214.62/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement\",\r\n \"id\": \"BatchNodeManagement\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.66.141.32/27\",\r\n \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n
+ \ \"13.66.227.193/32\",\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n
+ \ \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.70.73.0/27\",\r\n \"13.71.144.135/32\",\r\n \"13.71.172.96/27\",\r\n
+ \ \"13.71.195.160/27\",\r\n \"13.73.117.100/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.73.249.64/27\",\r\n \"13.74.107.128/27\",\r\n
+ \ \"13.75.36.96/27\",\r\n \"13.77.52.128/27\",\r\n \"13.77.80.138/32\",\r\n
+ \ \"13.78.108.128/27\",\r\n \"13.78.145.2/32\",\r\n \"13.78.145.73/32\",\r\n
+ \ \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n \"13.79.172.125/32\",\r\n
+ \ \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n \"13.81.59.254/32\",\r\n
+ \ \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.87.32.176/32\",\r\n \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n
+ \ \"13.87.57.96/27\",\r\n \"13.87.97.57/32\",\r\n \"13.87.97.82/32\",\r\n
+ \ \"13.87.100.219/32\",\r\n \"13.87.123.96/27\",\r\n \"13.89.55.147/32\",\r\n
+ \ \"13.89.171.224/27\",\r\n \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n
+ \ \"13.91.107.154/32\",\r\n \"13.92.114.103/32\",\r\n \"13.93.206.144/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.36.121.160/27\",\r\n
+ \ \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n \"20.37.196.128/27\",\r\n
+ \ \"20.37.225.160/27\",\r\n \"20.38.85.224/27\",\r\n \"20.38.137.192/27\",\r\n
+ \ \"20.38.146.224/27\",\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n
+ \ \"20.39.2.44/32\",\r\n \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n
+ \ \"20.39.3.186/32\",\r\n \"20.39.12.64/27\",\r\n \"20.40.137.186/32\",\r\n
+ \ \"20.40.149.165/32\",\r\n \"20.40.200.32/27\",\r\n \"20.41.5.224/27\",\r\n
+ \ \"20.41.66.128/27\",\r\n \"20.41.195.128/27\",\r\n \"20.42.6.224/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"20.43.42.96/27\",\r\n \"20.43.66.96/27\",\r\n
+ \ \"20.43.132.64/27\",\r\n \"20.44.4.112/29\",\r\n \"20.44.27.64/27\",\r\n
+ \ \"20.45.113.160/27\",\r\n \"20.45.122.224/27\",\r\n \"20.45.195.192/27\",\r\n
+ \ \"20.49.83.64/27\",\r\n \"20.49.91.64/27\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"20.72.17.64/27\",\r\n \"20.150.161.224/27\",\r\n \"20.150.172.0/27\",\r\n
+ \ \"20.150.179.96/27\",\r\n \"20.150.187.96/27\",\r\n \"20.189.109.0/27\",\r\n
+ \ \"20.192.99.96/27\",\r\n \"20.192.161.224/27\",\r\n \"20.192.228.160/27\",\r\n
+ \ \"20.192.235.192/27\",\r\n \"20.193.203.128/27\",\r\n \"23.96.12.112/32\",\r\n
+ \ \"23.96.101.73/32\",\r\n \"23.96.109.140/32\",\r\n \"23.96.232.67/32\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.97.97.29/32\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"23.98.82.160/27\",\r\n \"23.99.98.61/32\",\r\n
+ \ \"23.99.107.229/32\",\r\n \"23.99.195.236/32\",\r\n \"23.100.100.145/32\",\r\n
+ \ \"23.100.103.112/32\",\r\n \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n
+ \ \"23.102.185.64/32\",\r\n \"40.64.128.160/27\",\r\n \"40.67.49.160/27\",\r\n
+ \ \"40.67.60.0/27\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.69.107.128/27\",\r\n \"40.70.147.224/27\",\r\n
+ \ \"40.71.12.192/27\",\r\n \"40.74.101.0/27\",\r\n \"40.74.140.140/32\",\r\n
+ \ \"40.74.149.48/29\",\r\n \"40.74.177.177/32\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.77.18.99/32\",\r\n \"40.78.195.128/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"40.78.227.0/27\",\r\n \"40.78.234.96/27\",\r\n \"40.78.242.224/27\",\r\n
+ \ \"40.78.250.160/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"40.79.154.32/27\",\r\n \"40.79.162.96/27\",\r\n
+ \ \"40.79.170.192/27\",\r\n \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n
+ \ \"40.80.50.224/27\",\r\n \"40.80.58.160/27\",\r\n \"40.80.170.128/27\",\r\n
+ \ \"40.80.190.192/27\",\r\n \"40.82.255.64/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n
+ \ \"40.86.224.98/32\",\r\n \"40.86.224.104/32\",\r\n \"40.88.48.36/32\",\r\n
+ \ \"40.89.18.192/27\",\r\n \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n
+ \ \"40.89.67.77/32\",\r\n \"40.89.70.17/32\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.115.50.9/32\",\r\n \"40.118.208.127/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"51.12.41.192/27\",\r\n \"51.12.100.0/27\",\r\n \"51.12.193.192/27\",\r\n
+ \ \"51.12.204.0/27\",\r\n \"51.12.227.96/27\",\r\n \"51.12.235.96/27\",\r\n
+ \ \"51.104.28.0/27\",\r\n \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n
+ \ \"51.105.81.160/27\",\r\n \"51.105.89.192/27\",\r\n \"51.107.49.192/27\",\r\n
+ \ \"51.107.59.224/27\",\r\n \"51.107.145.160/27\",\r\n \"51.107.155.224/27\",\r\n
+ \ \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n \"51.116.144.224/27\",\r\n
+ \ \"51.116.154.32/27\",\r\n \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n
+ \ \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n \"51.120.107.96/27\",\r\n
+ \ \"51.120.211.96/27\",\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"51.137.162.192/27\",\r\n \"51.140.148.160/27\",\r\n \"51.140.184.59/32\",\r\n
+ \ \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n \"51.140.211.128/27\",\r\n
+ \ \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n \"51.141.8.64/32\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"52.136.49.192/27\",\r\n \"52.136.143.192/31\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.138.90.64/27\",\r\n \"52.138.226.128/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"52.148.148.46/32\",\r\n \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n
+ \ \"52.161.107.48/32\",\r\n \"52.162.110.32/27\",\r\n \"52.164.244.189/32\",\r\n
+ \ \"52.164.245.81/32\",\r\n \"52.165.44.224/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.167.106.128/27\",\r\n \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n
+ \ \"52.169.235.90/32\",\r\n \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n
+ \ \"52.174.35.218/32\",\r\n \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n
+ \ \"52.174.179.66/32\",\r\n \"52.174.180.164/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n
+ \ \"52.180.177.206/32\",\r\n \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n
+ \ \"52.180.181.239/32\",\r\n \"52.182.139.0/27\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"52.189.217.254/32\",\r\n \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n
+ \ \"52.225.185.38/32\",\r\n \"52.225.191.67/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.231.19.96/27\",\r\n \"52.231.32.70/31\",\r\n
+ \ \"52.231.32.82/32\",\r\n \"52.231.147.128/27\",\r\n \"52.231.200.112/31\",\r\n
+ \ \"52.231.200.126/32\",\r\n \"52.233.40.34/32\",\r\n \"52.233.157.9/32\",\r\n
+ \ \"52.233.157.78/32\",\r\n \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n
+ \ \"52.235.41.66/32\",\r\n \"52.236.186.128/26\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"52.246.154.224/27\",\r\n
+ \ \"52.249.60.22/32\",\r\n \"52.253.227.240/32\",\r\n \"65.52.199.156/32\",\r\n
+ \ \"65.52.199.188/32\",\r\n \"65.52.251.224/27\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"104.40.69.159/32\",\r\n \"104.40.183.25/32\",\r\n
+ \ \"104.41.2.182/32\",\r\n \"104.41.129.99/32\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.45.13.8/32\",\r\n
+ \ \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"104.47.149.96/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"104.208.144.128/27\",\r\n \"104.208.156.99/32\",\r\n
+ \ \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n \"104.210.115.52/32\",\r\n
+ \ \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n \"104.211.96.144/31\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"104.214.19.192/27\",\r\n
+ \ \"104.214.65.153/32\",\r\n \"111.221.104.48/32\",\r\n \"137.116.33.5/32\",\r\n
+ \ \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n \"137.116.37.146/32\",\r\n
+ \ \"137.116.46.180/32\",\r\n \"137.116.193.225/32\",\r\n
+ \ \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"138.91.1.114/32\",\r\n \"138.91.17.36/32\",\r\n \"157.55.167.71/32\",\r\n
+ \ \"157.55.210.88/32\",\r\n \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n
+ \ \"168.62.4.114/32\",\r\n \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n
+ \ \"168.63.5.53/32\",\r\n \"168.63.36.126/32\",\r\n \"168.63.133.23/32\",\r\n
+ \ \"168.63.208.148/32\",\r\n \"191.232.37.60/32\",\r\n \"191.233.10.0/27\",\r\n
+ \ \"191.233.76.85/32\",\r\n \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n
+ \ \"191.234.155.96/27\",\r\n \"191.235.227.192/27\",\r\n
+ \ \"191.236.37.239/32\",\r\n \"191.236.38.142/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"207.46.149.75/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1000:4::400/122\",\r\n \"2603:1000:104:1::340/122\",\r\n
+ \ \"2603:1010:6:1::340/122\",\r\n \"2603:1010:101::400/122\",\r\n
+ \ \"2603:1010:304::400/122\",\r\n \"2603:1010:404::400/122\",\r\n
+ \ \"2603:1020:5:1::340/122\",\r\n \"2603:1020:206:1::340/122\",\r\n
+ \ \"2603:1020:305::400/122\",\r\n \"2603:1020:405::400/122\",\r\n
+ \ \"2603:1020:605::400/122\",\r\n \"2603:1020:705:1::340/122\",\r\n
+ \ \"2603:1020:805:1::340/122\",\r\n \"2603:1020:905::400/122\",\r\n
+ \ \"2603:1020:a04:1::340/122\",\r\n \"2603:1020:b04::400/122\",\r\n
+ \ \"2603:1020:c04:1::340/122\",\r\n \"2603:1020:d04::400/122\",\r\n
+ \ \"2603:1020:e04:1::340/122\",\r\n \"2603:1020:f04::400/122\",\r\n
+ \ \"2603:1020:1004::340/122\",\r\n \"2603:1020:1104::300/122\",\r\n
+ \ \"2603:1030:f:1::400/122\",\r\n \"2603:1030:10:1::340/122\",\r\n
+ \ \"2603:1030:104:1::340/122\",\r\n \"2603:1030:107::300/122\",\r\n
+ \ \"2603:1030:210:1::340/122\",\r\n \"2603:1030:40b:1::340/122\",\r\n
+ \ \"2603:1030:40c:1::340/122\",\r\n \"2603:1030:504:1::340/122\",\r\n
+ \ \"2603:1030:608::400/122\",\r\n \"2603:1030:807:1::340/122\",\r\n
+ \ \"2603:1030:a07::400/122\",\r\n \"2603:1030:b04::400/122\",\r\n
+ \ \"2603:1030:c06:1::340/122\",\r\n \"2603:1030:f05:1::340/122\",\r\n
+ \ \"2603:1030:1005::400/122\",\r\n \"2603:1040:5:1::340/122\",\r\n
+ \ \"2603:1040:207::400/122\",\r\n \"2603:1040:407:1::340/122\",\r\n
+ \ \"2603:1040:606::400/122\",\r\n \"2603:1040:806::400/122\",\r\n
+ \ \"2603:1040:904:1::340/122\",\r\n \"2603:1040:a06:1::340/122\",\r\n
+ \ \"2603:1040:b04::400/122\",\r\n \"2603:1040:c06::400/122\",\r\n
+ \ \"2603:1040:d04::340/122\",\r\n \"2603:1040:f05:1::340/122\",\r\n
+ \ \"2603:1040:1104::300/122\",\r\n \"2603:1050:6:1::340/122\",\r\n
+ \ \"2603:1050:403::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaCentral\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.37.225.160/27\",\r\n
+ \ \"2603:1010:304::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaEast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.70.73.0/27\",\r\n
+ \ \"20.37.196.128/27\",\r\n \"40.79.162.96/27\",\r\n \"40.79.170.192/27\",\r\n
+ \ \"104.210.115.52/32\",\r\n \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n
+ \ \"2603:1010:6:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.117.100/32\",\r\n \"13.77.52.128/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"52.189.217.254/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"2603:1010:101::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.BrazilSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.97.29/32\",\r\n \"104.41.2.182/32\",\r\n \"191.232.37.60/32\",\r\n
+ \ \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n \"191.234.155.96/27\",\r\n
+ \ \"191.235.227.192/27\",\r\n \"2603:1050:6:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.96/27\",\r\n \"20.38.146.224/27\",\r\n
+ \ \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.233.40.34/32\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.246.154.224/27\",\r\n \"2603:1030:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.128/27\",\r\n \"40.86.224.98/32\",\r\n
+ \ \"40.86.224.104/32\",\r\n \"40.89.18.192/27\",\r\n \"52.235.41.66/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"2603:1030:1005::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralIndia\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.99.96/27\",\r\n \"40.80.50.224/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n
+ \ \"104.211.96.144/31\",\r\n \"2603:1040:a06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n
+ \ \"13.89.55.147/32\",\r\n \"13.89.171.224/27\",\r\n \"20.40.200.32/27\",\r\n
+ \ \"23.99.195.236/32\",\r\n \"40.77.18.99/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"52.165.44.224/32\",\r\n \"52.182.139.0/27\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n \"2603:1030:10:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.195.192/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n \"52.180.177.206/32\",\r\n
+ \ \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n \"52.180.181.239/32\",\r\n
+ \ \"2603:1030:f:1::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastAsia\",\r\n \"id\":
+ \"BatchNodeManagement.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.75.36.96/27\",\r\n
+ \ \"20.189.109.0/27\",\r\n \"23.99.98.61/32\",\r\n \"23.99.107.229/32\",\r\n
+ \ \"168.63.133.23/32\",\r\n \"168.63.208.148/32\",\r\n \"207.46.149.75/32\",\r\n
+ \ \"2603:1040:207::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastUS\",\r\n \"id\":
+ \"BatchNodeManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.92.114.103/32\",\r\n
+ \ \"20.42.6.224/27\",\r\n \"23.96.12.112/32\",\r\n \"23.96.101.73/32\",\r\n
+ \ \"23.96.109.140/32\",\r\n \"40.71.12.192/27\",\r\n \"40.78.227.0/27\",\r\n
+ \ \"40.79.154.32/27\",\r\n \"40.88.48.36/32\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"104.41.129.99/32\",\r\n \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n \"191.236.37.239/32\",\r\n
+ \ \"191.236.38.142/32\",\r\n \"2603:1030:210:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.77.80.138/32\",\r\n
+ \ \"20.41.5.224/27\",\r\n \"40.70.147.224/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"52.167.106.128/27\",\r\n \"104.208.144.128/27\",\r\n
+ \ \"104.208.156.99/32\",\r\n \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n
+ \ \"137.116.33.5/32\",\r\n \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n
+ \ \"137.116.37.146/32\",\r\n \"137.116.46.180/32\",\r\n \"2603:1030:40c:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n \"20.39.2.44/32\",\r\n
+ \ \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n \"20.39.3.186/32\",\r\n
+ \ \"20.39.12.64/27\",\r\n \"40.74.149.48/29\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n \"40.89.67.77/32\",\r\n
+ \ \"40.89.70.17/32\",\r\n \"52.138.90.64/27\",\r\n \"52.225.185.38/32\",\r\n
+ \ \"52.225.191.67/32\",\r\n \"52.253.227.240/32\",\r\n \"2603:1030:40b:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.FranceCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.40.137.186/32\",\r\n \"20.40.149.165/32\",\r\n
+ \ \"20.43.42.96/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"2603:1020:805:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.FranceSouth\",\r\n \"id\":
+ \"BatchNodeManagement.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.192/27\",\r\n
+ \ \"52.136.143.192/31\",\r\n \"2603:1020:905::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.GermanyNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n
+ \ \"2603:1020:d04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.GermanyWestCentral\",\r\n \"id\":
+ \"BatchNodeManagement.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.224/27\",\r\n \"51.116.154.32/27\",\r\n
+ \ \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n \"2603:1020:c04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.JapanEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.144.135/32\",\r\n \"13.78.108.128/27\",\r\n
+ \ \"20.43.66.96/27\",\r\n \"23.100.100.145/32\",\r\n \"23.100.103.112/32\",\r\n
+ \ \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n \"138.91.1.114/32\",\r\n
+ \ \"2603:1040:407:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.JapanWest\",\r\n \"id\":
+ \"BatchNodeManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.0/27\",\r\n
+ \ \"40.74.140.140/32\",\r\n \"40.80.58.160/27\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"138.91.17.36/32\",\r\n \"2603:1040:606::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.66.128/27\",\r\n \"20.44.27.64/27\",\r\n \"52.231.19.96/27\",\r\n
+ \ \"52.231.32.70/31\",\r\n \"52.231.32.82/32\",\r\n \"2603:1040:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.128/27\",\r\n \"52.231.147.128/27\",\r\n
+ \ \"52.231.200.112/31\",\r\n \"52.231.200.126/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorthCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.232.67/32\",\r\n \"40.80.190.192/27\",\r\n
+ \ \"52.162.110.32/27\",\r\n \"65.52.199.156/32\",\r\n \"65.52.199.188/32\",\r\n
+ \ \"157.55.167.71/32\",\r\n \"157.55.210.88/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"2603:1030:608::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.NorthEurope\",\r\n \"id\":
+ \"BatchNodeManagement.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.74.107.128/27\",\r\n \"13.79.172.125/32\",\r\n \"20.38.85.224/27\",\r\n
+ \ \"52.138.226.128/27\",\r\n \"52.164.244.189/32\",\r\n \"52.164.245.81/32\",\r\n
+ \ \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n \"52.169.235.90/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n
+ \ \"168.63.36.126/32\",\r\n \"2603:1020:5:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n
+ \ \"51.120.107.96/27\",\r\n \"51.120.211.96/27\",\r\n \"2603:1020:e04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"2603:1020:f04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"2603:1000:104:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n
+ \ \"2603:1000:4::400/122\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement.SouthCentralUS\",\r\n \"id\": \"BatchNodeManagement.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.73.249.64/27\",\r\n \"20.45.122.224/27\",\r\n \"20.49.91.64/27\",\r\n
+ \ \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n \"23.102.185.64/32\",\r\n
+ \ \"40.74.177.177/32\",\r\n \"52.249.60.22/32\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"104.214.19.192/27\",\r\n \"104.214.65.153/32\",\r\n \"2603:1030:807:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SoutheastAsia\",\r\n
+ \ \"id\": \"BatchNodeManagement.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n \"20.43.132.64/27\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.98.82.160/27\",\r\n
+ \ \"40.78.234.96/27\",\r\n \"111.221.104.48/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1040:5:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthIndia\",\r\n \"id\":
+ \"BatchNodeManagement.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.41.195.128/27\",\r\n
+ \ \"40.78.195.128/27\",\r\n \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"2603:1040:c06::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.49.192/27\",\r\n \"51.107.59.224/27\",\r\n
+ \ \"2603:1020:a04:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SwitzerlandWest\",\r\n \"id\":
+ \"BatchNodeManagement.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.107.145.160/27\",\r\n
+ \ \"51.107.155.224/27\",\r\n \"2603:1020:b04::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UAECentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n
+ \ \"2603:1040:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UAENorth\",\r\n \"id\":
+ \"BatchNodeManagement.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.38.137.192/27\",\r\n
+ \ \"65.52.251.224/27\",\r\n \"2603:1040:904:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.28.0/27\",\r\n
+ \ \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n \"51.140.148.160/27\",\r\n
+ \ \"51.140.184.59/32\",\r\n \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n
+ \ \"2603:1020:705:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UKSouth2\",\r\n \"id\":
+ \"BatchNodeManagement.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.32.176/32\",\r\n
+ \ \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n \"13.87.57.96/27\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"2603:1020:405::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.162.192/27\",\r\n
+ \ \"51.140.211.128/27\",\r\n \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n
+ \ \"51.141.8.64/32\",\r\n \"2603:1020:605::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.WestCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.160/27\",\r\n \"13.78.145.2/32\",\r\n
+ \ \"13.78.145.73/32\",\r\n \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n
+ \ \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n \"52.161.107.48/32\",\r\n
+ \ \"2603:1030:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestEurope\",\r\n \"id\":
+ \"BatchNodeManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n
+ \ \"13.81.59.254/32\",\r\n \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.115.50.9/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n \"52.174.35.218/32\",\r\n
+ \ \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n \"52.174.179.66/32\",\r\n
+ \ \"52.174.180.164/32\",\r\n \"52.233.157.9/32\",\r\n \"52.233.157.78/32\",\r\n
+ \ \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n \"52.236.186.128/26\",\r\n
+ \ \"104.40.183.25/32\",\r\n \"104.45.13.8/32\",\r\n \"104.47.149.96/32\",\r\n
+ \ \"137.116.193.225/32\",\r\n \"168.63.5.53/32\",\r\n \"191.233.76.85/32\",\r\n
+ \ \"2603:1020:206:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestIndia\",\r\n \"id\":
+ \"BatchNodeManagement.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"52.136.49.192/27\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"2603:1040:806::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n \"13.91.107.154/32\",\r\n
+ \ \"13.93.206.144/32\",\r\n \"40.82.255.64/27\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.118.208.127/32\",\r\n \"104.40.69.159/32\",\r\n \"168.62.4.114/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"2603:1030:a07::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS2\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.32/27\",\r\n
+ \ \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n \"13.66.227.193/32\",\r\n
+ \ \"40.64.128.160/27\",\r\n \"40.78.242.224/27\",\r\n \"40.78.250.160/27\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.148.148.46/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n \"2603:1030:c06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"CognitiveServicesManagement\",\r\n
+ \ \"id\": \"CognitiveServicesManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"5\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"CognitiveServicesManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.207/32\",\r\n \"13.65.241.39/32\",\r\n
+ \ \"13.66.56.76/32\",\r\n \"13.66.141.232/29\",\r\n \"13.66.142.0/26\",\r\n
+ \ \"13.67.10.80/29\",\r\n \"13.67.10.128/26\",\r\n \"13.68.82.4/32\",\r\n
+ \ \"13.68.211.223/32\",\r\n \"13.69.67.64/28\",\r\n \"13.69.67.128/26\",\r\n
+ \ \"13.69.230.0/29\",\r\n \"13.69.230.32/29\",\r\n \"13.70.74.88/29\",\r\n
+ \ \"13.70.74.120/29\",\r\n \"13.70.127.50/32\",\r\n \"13.70.149.125/32\",\r\n
+ \ \"13.71.173.216/29\",\r\n \"13.71.173.248/29\",\r\n \"13.71.196.136/29\",\r\n
+ \ \"13.71.196.168/29\",\r\n \"13.73.242.48/29\",\r\n \"13.73.242.128/26\",\r\n
+ \ \"13.73.249.0/27\",\r\n \"13.73.249.96/27\",\r\n \"13.73.249.128/28\",\r\n
+ \ \"13.73.253.122/31\",\r\n \"13.73.254.200/29\",\r\n \"13.73.254.208/29\",\r\n
+ \ \"13.73.254.216/30\",\r\n \"13.73.255.32/27\",\r\n \"13.74.139.192/32\",\r\n
+ \ \"13.75.39.64/29\",\r\n \"13.75.39.96/29\",\r\n \"13.75.92.220/32\",\r\n
+ \ \"13.75.137.81/32\",\r\n \"13.75.163.9/32\",\r\n \"13.75.168.111/32\",\r\n
+ \ \"13.77.55.152/29\",\r\n \"13.77.170.155/32\",\r\n \"13.78.17.188/32\",\r\n
+ \ \"13.78.70.7/32\",\r\n \"13.78.185.44/32\",\r\n \"13.78.187.168/32\",\r\n
+ \ \"13.83.68.180/32\",\r\n \"13.84.42.205/32\",\r\n \"13.86.178.10/32\",\r\n
+ \ \"13.86.184.142/32\",\r\n \"13.86.219.128/27\",\r\n \"13.86.219.160/29\",\r\n
+ \ \"13.87.216.38/32\",\r\n \"13.88.14.63/32\",\r\n \"13.88.26.200/32\",\r\n
+ \ \"13.91.58.176/32\",\r\n \"13.91.138.229/32\",\r\n \"13.92.179.108/32\",\r\n
+ \ \"13.93.122.1/32\",\r\n \"13.94.26.39/32\",\r\n \"20.36.120.224/27\",\r\n
+ \ \"20.36.121.192/27\",\r\n \"20.36.121.224/28\",\r\n \"20.36.125.128/26\",\r\n
+ \ \"20.37.64.224/27\",\r\n \"20.37.65.192/27\",\r\n \"20.37.65.224/28\",\r\n
+ \ \"20.37.68.36/30\",\r\n \"20.37.70.128/26\",\r\n \"20.37.70.224/27\",\r\n
+ \ \"20.37.71.208/28\",\r\n \"20.37.76.200/30\",\r\n \"20.37.156.204/30\",\r\n
+ \ \"20.37.157.96/27\",\r\n \"20.37.195.112/28\",\r\n \"20.37.195.192/27\",\r\n
+ \ \"20.37.196.160/27\",\r\n \"20.37.224.224/27\",\r\n \"20.37.225.192/27\",\r\n
+ \ \"20.37.225.224/28\",\r\n \"20.37.229.192/26\",\r\n \"20.38.84.108/30\",\r\n
+ \ \"20.38.85.160/27\",\r\n \"20.38.87.128/27\",\r\n \"20.38.87.160/28\",\r\n
+ \ \"20.38.136.240/28\",\r\n \"20.38.137.128/27\",\r\n \"20.38.137.224/27\",\r\n
+ \ \"20.38.141.12/30\",\r\n \"20.38.142.128/26\",\r\n \"20.38.142.224/27\",\r\n
+ \ \"20.38.143.240/28\",\r\n \"20.39.11.112/28\",\r\n \"20.39.12.0/27\",\r\n
+ \ \"20.39.12.96/27\",\r\n \"20.39.15.56/31\",\r\n \"20.39.15.60/30\",\r\n
+ \ \"20.40.125.208/32\",\r\n \"20.40.164.245/32\",\r\n \"20.40.170.73/32\",\r\n
+ \ \"20.40.187.210/32\",\r\n \"20.40.188.109/32\",\r\n \"20.40.190.135/32\",\r\n
+ \ \"20.40.190.225/32\",\r\n \"20.40.200.64/27\",\r\n \"20.40.200.96/28\",\r\n
+ \ \"20.40.207.152/29\",\r\n \"20.40.224.32/28\",\r\n \"20.40.224.48/30\",\r\n
+ \ \"20.40.224.56/29\",\r\n \"20.40.225.64/26\",\r\n \"20.40.225.192/26\",\r\n
+ \ \"20.40.229.64/28\",\r\n \"20.41.5.160/27\",\r\n \"20.41.65.192/27\",\r\n
+ \ \"20.41.66.160/27\",\r\n \"20.41.66.192/28\",\r\n \"20.41.69.40/29\",\r\n
+ \ \"20.41.69.56/30\",\r\n \"20.41.193.176/28\",\r\n \"20.41.193.192/27\",\r\n
+ \ \"20.41.195.160/27\",\r\n \"20.41.208.0/30\",\r\n \"20.42.4.204/30\",\r\n
+ \ \"20.42.6.144/28\",\r\n \"20.42.6.160/27\",\r\n \"20.42.7.128/27\",\r\n
+ \ \"20.42.131.240/28\",\r\n \"20.42.227.144/28\",\r\n \"20.42.227.160/27\",\r\n
+ \ \"20.42.228.128/27\",\r\n \"20.43.42.16/28\",\r\n \"20.43.42.32/27\",\r\n
+ \ \"20.43.43.0/27\",\r\n \"20.43.45.232/29\",\r\n \"20.43.45.244/30\",\r\n
+ \ \"20.43.47.0/26\",\r\n \"20.43.47.128/27\",\r\n \"20.43.66.16/28\",\r\n
+ \ \"20.43.66.32/27\",\r\n \"20.43.67.0/27\",\r\n \"20.43.88.240/32\",\r\n
+ \ \"20.43.121.0/29\",\r\n \"20.43.121.32/29\",\r\n \"20.43.131.48/28\",\r\n
+ \ \"20.43.132.0/27\",\r\n \"20.43.132.96/27\",\r\n \"20.44.8.160/29\",\r\n
+ \ \"20.44.8.192/29\",\r\n \"20.44.17.16/29\",\r\n \"20.44.17.48/29\",\r\n
+ \ \"20.44.27.120/29\",\r\n \"20.44.27.216/29\",\r\n \"20.45.67.213/32\",\r\n
+ \ \"20.45.112.224/27\",\r\n \"20.45.113.192/27\",\r\n \"20.45.113.224/28\",\r\n
+ \ \"20.45.116.128/26\",\r\n \"20.45.116.240/28\",\r\n \"20.45.192.126/31\",\r\n
+ \ \"20.45.195.128/27\",\r\n \"20.45.195.224/27\",\r\n \"20.45.196.0/28\",\r\n
+ \ \"20.45.198.88/29\",\r\n \"20.45.199.36/30\",\r\n \"20.46.10.128/26\",\r\n
+ \ \"20.46.10.192/27\",\r\n \"20.46.11.224/28\",\r\n \"20.48.192.64/29\",\r\n
+ \ \"20.48.192.80/30\",\r\n \"20.48.193.64/26\",\r\n \"20.48.193.192/27\",\r\n
+ \ \"20.48.196.240/28\",\r\n \"20.49.96.128/27\",\r\n \"20.49.96.160/28\",\r\n
+ \ \"20.49.102.56/29\",\r\n \"20.49.102.192/28\",\r\n \"20.49.102.208/30\",\r\n
+ \ \"20.49.102.216/29\",\r\n \"20.49.102.224/30\",\r\n \"20.49.103.128/26\",\r\n
+ \ \"20.49.114.160/29\",\r\n \"20.49.114.176/29\",\r\n \"20.49.114.184/30\",\r\n
+ \ \"20.49.114.224/27\",\r\n \"20.49.115.192/26\",\r\n \"20.49.118.64/27\",\r\n
+ \ \"20.49.119.208/28\",\r\n \"20.49.126.136/29\",\r\n \"20.49.126.144/29\",\r\n
+ \ \"20.49.126.152/30\",\r\n \"20.49.126.224/27\",\r\n \"20.50.1.16/28\",\r\n
+ \ \"20.50.68.126/31\",\r\n \"20.51.8.128/26\",\r\n \"20.51.8.224/27\",\r\n
+ \ \"20.51.12.192/27\",\r\n \"20.51.12.224/28\",\r\n \"20.51.16.192/26\",\r\n
+ \ \"20.51.17.32/27\",\r\n \"20.51.20.112/28\",\r\n \"20.52.64.16/29\",\r\n
+ \ \"20.52.72.48/29\",\r\n \"20.52.88.128/28\",\r\n \"20.53.41.32/29\",\r\n
+ \ \"20.53.41.40/30\",\r\n \"20.53.41.48/28\",\r\n \"20.53.44.0/30\",\r\n
+ \ \"20.53.44.128/26\",\r\n \"20.53.44.192/27\",\r\n \"20.53.47.80/28\",\r\n
+ \ \"20.53.48.176/28\",\r\n \"20.53.56.112/28\",\r\n \"20.58.66.64/27\",\r\n
+ \ \"20.58.67.32/28\",\r\n \"20.61.96.168/29\",\r\n \"20.61.96.176/29\",\r\n
+ \ \"20.61.96.188/30\",\r\n \"20.61.97.64/27\",\r\n \"20.61.98.64/31\",\r\n
+ \ \"20.61.98.192/26\",\r\n \"20.61.99.32/27\",\r\n \"20.61.103.80/28\",\r\n
+ \ \"20.62.58.0/26\",\r\n \"20.62.59.96/28\",\r\n \"20.62.128.144/30\",\r\n
+ \ \"20.62.129.64/26\",\r\n \"20.62.129.160/27\",\r\n \"20.62.134.80/28\",\r\n
+ \ \"20.65.130.0/26\",\r\n \"20.65.130.128/26\",\r\n \"20.65.133.96/28\",\r\n
+ \ \"20.66.2.64/26\",\r\n \"20.66.2.160/27\",\r\n \"20.66.4.240/28\",\r\n
+ \ \"20.69.0.240/28\",\r\n \"20.72.20.64/27\",\r\n \"20.72.20.128/26\",\r\n
+ \ \"20.72.21.8/29\",\r\n \"20.150.161.160/27\",\r\n \"20.150.164.128/27\",\r\n
+ \ \"20.150.164.160/28\",\r\n \"20.150.167.64/26\",\r\n \"20.150.174.136/29\",\r\n
+ \ \"20.150.241.80/29\",\r\n \"20.150.244.48/28\",\r\n \"20.150.244.128/27\",\r\n
+ \ \"20.184.58.62/32\",\r\n \"20.184.240.78/32\",\r\n \"20.184.241.66/32\",\r\n
+ \ \"20.184.241.238/32\",\r\n \"20.184.242.113/32\",\r\n \"20.184.242.115/32\",\r\n
+ \ \"20.184.242.189/32\",\r\n \"20.185.105.28/32\",\r\n \"20.187.195.152/29\",\r\n
+ \ \"20.187.196.192/30\",\r\n \"20.187.197.64/26\",\r\n \"20.187.197.160/27\",\r\n
+ \ \"20.189.108.64/27\",\r\n \"20.189.109.32/27\",\r\n \"20.189.109.64/28\",\r\n
+ \ \"20.189.111.200/30\",\r\n \"20.189.111.208/28\",\r\n \"20.189.225.0/26\",\r\n
+ \ \"20.189.225.96/27\",\r\n \"20.189.228.144/28\",\r\n \"20.191.160.8/29\",\r\n
+ \ \"20.191.160.20/30\",\r\n \"20.191.160.96/28\",\r\n \"20.191.160.112/30\",\r\n
+ \ \"20.191.161.128/26\",\r\n \"20.191.161.224/27\",\r\n \"20.191.166.96/28\",\r\n
+ \ \"20.192.44.96/28\",\r\n \"20.192.48.192/28\",\r\n \"20.192.50.80/28\",\r\n
+ \ \"20.192.50.208/29\",\r\n \"20.192.80.32/28\",\r\n \"20.192.161.144/28\",\r\n
+ \ \"20.192.161.160/27\",\r\n \"20.192.164.128/27\",\r\n \"20.192.167.64/26\",\r\n
+ \ \"20.192.184.84/30\",\r\n \"20.192.225.208/28\",\r\n \"20.192.225.224/27\",\r\n
+ \ \"20.192.228.192/27\",\r\n \"20.192.231.128/26\",\r\n \"20.193.194.0/28\",\r\n
+ \ \"20.193.194.48/29\",\r\n \"20.193.194.64/28\",\r\n \"20.194.72.64/26\",\r\n
+ \ \"20.194.72.192/27\",\r\n \"20.194.74.64/28\",\r\n \"20.195.65.240/29\",\r\n
+ \ \"20.195.72.240/28\",\r\n \"20.195.146.80/28\",\r\n \"23.96.13.121/32\",\r\n
+ \ \"23.96.229.148/32\",\r\n \"23.98.107.28/30\",\r\n \"23.98.107.200/29\",\r\n
+ \ \"23.98.107.208/28\",\r\n \"23.98.108.36/30\",\r\n \"23.98.108.40/31\",\r\n
+ \ \"23.98.108.192/26\",\r\n \"23.98.109.32/29\",\r\n \"23.100.0.32/32\",\r\n
+ \ \"23.100.57.171/32\",\r\n \"23.100.59.49/32\",\r\n \"40.64.128.192/27\",\r\n
+ \ \"40.64.134.140/30\",\r\n \"40.64.134.168/29\",\r\n \"40.64.134.176/28\",\r\n
+ \ \"40.64.135.80/29\",\r\n \"40.67.48.224/27\",\r\n \"40.67.49.192/27\",\r\n
+ \ \"40.67.49.224/28\",\r\n \"40.67.52.128/26\",\r\n \"40.67.53.160/28\",\r\n
+ \ \"40.69.73.194/32\",\r\n \"40.69.104.32/30\",\r\n \"40.69.111.36/30\",\r\n
+ \ \"40.70.47.165/32\",\r\n \"40.70.241.203/32\",\r\n \"40.74.30.108/30\",\r\n
+ \ \"40.74.31.64/26\",\r\n \"40.74.64.203/32\",\r\n \"40.78.20.224/32\",\r\n
+ \ \"40.78.204.0/29\",\r\n \"40.78.204.32/29\",\r\n \"40.79.132.48/29\",\r\n
+ \ \"40.79.132.80/29\",\r\n \"40.79.156.64/27\",\r\n \"40.79.176.32/30\",\r\n
+ \ \"40.79.187.168/29\",\r\n \"40.79.187.200/29\",\r\n \"40.80.57.208/28\",\r\n
+ \ \"40.80.57.224/27\",\r\n \"40.80.58.192/27\",\r\n \"40.80.63.152/30\",\r\n
+ \ \"40.80.63.224/28\",\r\n \"40.80.63.240/30\",\r\n \"40.80.169.192/27\",\r\n
+ \ \"40.80.170.160/27\",\r\n \"40.80.170.192/28\",\r\n \"40.80.172.28/30\",\r\n
+ \ \"40.80.176.0/28\",\r\n \"40.80.188.112/28\",\r\n \"40.80.190.128/27\",\r\n
+ \ \"40.80.190.224/27\",\r\n \"40.82.253.200/30\",\r\n \"40.82.253.208/28\",\r\n
+ \ \"40.82.255.0/26\",\r\n \"40.82.255.96/27\",\r\n \"40.85.230.100/32\",\r\n
+ \ \"40.86.227.247/32\",\r\n \"40.87.48.184/32\",\r\n \"40.88.22.25/32\",\r\n
+ \ \"40.89.17.240/28\",\r\n \"40.89.18.128/27\",\r\n \"40.89.18.224/27\",\r\n
+ \ \"40.89.23.36/30\",\r\n \"40.89.133.209/32\",\r\n \"40.89.134.214/32\",\r\n
+ \ \"40.90.138.4/32\",\r\n \"40.90.139.2/32\",\r\n \"40.90.139.36/32\",\r\n
+ \ \"40.90.139.163/32\",\r\n \"40.90.141.99/32\",\r\n \"40.112.254.71/32\",\r\n
+ \ \"40.113.124.208/32\",\r\n \"40.113.226.173/32\",\r\n \"40.115.248.103/32\",\r\n
+ \ \"40.117.154.42/32\",\r\n \"40.117.232.90/32\",\r\n \"40.119.2.134/32\",\r\n
+ \ \"40.119.11.216/29\",\r\n \"40.120.8.48/30\",\r\n \"40.121.217.232/32\",\r\n
+ \ \"40.122.42.111/32\",\r\n \"40.123.205.29/32\",\r\n \"40.123.210.248/32\",\r\n
+ \ \"40.123.214.182/32\",\r\n \"40.123.214.251/32\",\r\n \"40.123.218.49/32\",\r\n
+ \ \"40.127.76.4/32\",\r\n \"40.127.76.10/32\",\r\n \"40.127.165.113/32\",\r\n
+ \ \"51.11.97.80/29\",\r\n \"51.12.17.32/28\",\r\n \"51.12.17.136/29\",\r\n
+ \ \"51.12.17.144/28\",\r\n \"51.12.25.32/28\",\r\n \"51.12.25.208/29\",\r\n
+ \ \"51.12.41.48/28\",\r\n \"51.12.41.128/27\",\r\n \"51.12.41.224/27\",\r\n
+ \ \"51.12.43.192/26\",\r\n \"51.12.46.240/28\",\r\n \"51.12.193.48/28\",\r\n
+ \ \"51.12.193.128/27\",\r\n \"51.12.193.224/27\",\r\n \"51.12.195.128/26\",\r\n
+ \ \"51.13.1.0/29\",\r\n \"51.13.128.72/29\",\r\n \"51.13.136.64/26\",\r\n
+ \ \"51.13.137.192/28\",\r\n \"51.13.137.224/27\",\r\n \"51.104.25.240/28\",\r\n
+ \ \"51.104.27.64/27\",\r\n \"51.104.28.32/27\",\r\n \"51.104.31.160/29\",\r\n
+ \ \"51.104.31.168/30\",\r\n \"51.104.31.176/28\",\r\n \"51.105.67.176/29\",\r\n
+ \ \"51.105.67.208/29\",\r\n \"51.105.80.224/27\",\r\n \"51.105.81.192/27\",\r\n
+ \ \"51.105.81.224/28\",\r\n \"51.105.89.128/27\",\r\n \"51.105.89.224/27\",\r\n
+ \ \"51.105.90.0/28\",\r\n \"51.105.92.52/30\",\r\n \"51.105.170.64/32\",\r\n
+ \ \"51.107.48.240/28\",\r\n \"51.107.49.128/27\",\r\n \"51.107.49.224/27\",\r\n
+ \ \"51.107.52.216/29\",\r\n \"51.107.53.36/30\",\r\n \"51.107.53.40/29\",\r\n
+ \ \"51.107.84.104/32\",\r\n \"51.107.128.24/29\",\r\n \"51.107.144.224/27\",\r\n
+ \ \"51.107.145.192/27\",\r\n \"51.107.145.224/28\",\r\n \"51.107.148.20/30\",\r\n
+ \ \"51.107.148.64/28\",\r\n \"51.107.192.72/29\",\r\n \"51.107.241.0/26\",\r\n
+ \ \"51.107.241.128/27\",\r\n \"51.107.242.224/28\",\r\n \"51.107.249.0/26\",\r\n
+ \ \"51.107.249.128/27\",\r\n \"51.107.250.240/28\",\r\n \"51.116.48.144/28\",\r\n
+ \ \"51.116.48.160/27\",\r\n \"51.116.49.0/27\",\r\n \"51.116.51.192/26\",\r\n
+ \ \"51.116.54.176/28\",\r\n \"51.116.55.64/28\",\r\n \"51.116.144.144/28\",\r\n
+ \ \"51.116.144.160/27\",\r\n \"51.116.145.0/27\",\r\n \"51.116.148.128/26\",\r\n
+ \ \"51.116.149.208/28\",\r\n \"51.120.40.240/28\",\r\n \"51.120.41.128/27\",\r\n
+ \ \"51.120.41.224/27\",\r\n \"51.120.109.192/29\",\r\n \"51.120.224.224/27\",\r\n
+ \ \"51.120.225.192/27\",\r\n \"51.120.225.224/28\",\r\n \"51.120.232.64/26\",\r\n
+ \ \"51.120.233.144/28\",\r\n \"51.120.233.160/27\",\r\n \"51.120.237.0/29\",\r\n
+ \ \"51.124.95.46/32\",\r\n \"51.124.140.143/32\",\r\n \"51.137.162.128/27\",\r\n
+ \ \"51.137.162.224/27\",\r\n \"51.137.163.0/28\",\r\n \"51.137.166.28/30\",\r\n
+ \ \"51.137.166.44/30\",\r\n \"51.137.166.48/28\",\r\n \"51.137.167.192/26\",\r\n
+ \ \"51.138.40.194/32\",\r\n \"51.138.41.75/32\",\r\n \"51.138.160.4/30\",\r\n
+ \ \"51.138.210.144/28\",\r\n \"51.140.5.56/32\",\r\n \"51.140.105.165/32\",\r\n
+ \ \"51.140.202.0/32\",\r\n \"51.143.192.224/27\",\r\n \"51.143.193.192/27\",\r\n
+ \ \"51.143.193.224/28\",\r\n \"51.143.208.128/30\",\r\n \"51.143.209.0/26\",\r\n
+ \ \"51.143.209.64/27\",\r\n \"51.143.212.160/28\",\r\n \"51.144.83.210/32\",\r\n
+ \ \"52.136.48.240/28\",\r\n \"52.136.49.128/27\",\r\n \"52.136.49.224/27\",\r\n
+ \ \"52.136.53.0/26\",\r\n \"52.136.184.128/26\",\r\n \"52.136.184.192/27\",\r\n
+ \ \"52.136.185.160/28\",\r\n \"52.138.41.171/32\",\r\n \"52.138.92.172/30\",\r\n
+ \ \"52.139.106.0/26\",\r\n \"52.139.106.128/27\",\r\n \"52.139.107.192/28\",\r\n
+ \ \"52.140.105.192/27\",\r\n \"52.140.106.160/27\",\r\n \"52.140.106.192/28\",\r\n
+ \ \"52.140.110.96/29\",\r\n \"52.140.110.104/30\",\r\n \"52.140.110.112/28\",\r\n
+ \ \"52.140.110.160/30\",\r\n \"52.140.111.128/26\",\r\n \"52.140.111.224/27\",\r\n
+ \ \"52.142.81.236/32\",\r\n \"52.142.83.87/32\",\r\n \"52.142.84.66/32\",\r\n
+ \ \"52.142.85.51/32\",\r\n \"52.143.91.192/28\",\r\n \"52.146.79.144/28\",\r\n
+ \ \"52.146.79.224/27\",\r\n \"52.146.131.32/28\",\r\n \"52.146.131.48/30\",\r\n
+ \ \"52.146.131.96/27\",\r\n \"52.146.132.128/26\",\r\n \"52.146.133.0/27\",\r\n
+ \ \"52.146.137.16/28\",\r\n \"52.147.43.145/32\",\r\n \"52.147.44.12/32\",\r\n
+ \ \"52.147.97.4/30\",\r\n \"52.147.112.0/26\",\r\n \"52.147.112.64/27\",\r\n
+ \ \"52.147.112.208/28\",\r\n \"52.149.31.64/28\",\r\n \"52.150.139.192/27\",\r\n
+ \ \"52.150.140.160/27\",\r\n \"52.150.140.192/28\",\r\n \"52.150.154.200/29\",\r\n
+ \ \"52.150.154.208/28\",\r\n \"52.150.156.32/30\",\r\n \"52.150.156.40/30\",\r\n
+ \ \"52.150.157.64/26\",\r\n \"52.150.157.128/27\",\r\n \"52.152.207.160/28\",\r\n
+ \ \"52.152.207.192/28\",\r\n \"52.155.218.251/32\",\r\n \"52.156.93.240/28\",\r\n
+ \ \"52.156.103.64/27\",\r\n \"52.156.103.96/28\",\r\n \"52.161.16.73/32\",\r\n
+ \ \"52.162.110.248/29\",\r\n \"52.162.111.24/29\",\r\n \"52.163.56.146/32\",\r\n
+ \ \"52.168.112.0/26\",\r\n \"52.171.134.140/32\",\r\n \"52.172.112.0/28\",\r\n
+ \ \"52.172.112.16/29\",\r\n \"52.172.112.192/26\",\r\n \"52.172.113.32/27\",\r\n
+ \ \"52.172.116.16/28\",\r\n \"52.172.187.21/32\",\r\n \"52.173.240.242/32\",\r\n
+ \ \"52.174.60.141/32\",\r\n \"52.174.146.221/32\",\r\n \"52.175.18.186/32\",\r\n
+ \ \"52.175.35.166/32\",\r\n \"52.179.13.227/32\",\r\n \"52.179.14.109/32\",\r\n
+ \ \"52.179.113.96/27\",\r\n \"52.179.113.128/28\",\r\n \"52.180.162.194/32\",\r\n
+ \ \"52.180.166.172/32\",\r\n \"52.180.178.146/32\",\r\n \"52.180.179.119/32\",\r\n
+ \ \"52.183.33.203/32\",\r\n \"52.186.33.48/28\",\r\n \"52.186.91.216/32\",\r\n
+ \ \"52.187.20.181/32\",\r\n \"52.187.39.99/32\",\r\n \"52.190.33.56/32\",\r\n
+ \ \"52.190.33.61/32\",\r\n \"52.190.33.154/32\",\r\n \"52.191.160.229/32\",\r\n
+ \ \"52.191.173.81/32\",\r\n \"52.224.200.129/32\",\r\n \"52.225.176.80/32\",\r\n
+ \ \"52.228.83.128/27\",\r\n \"52.228.83.224/27\",\r\n \"52.228.84.0/28\",\r\n
+ \ \"52.229.16.14/32\",\r\n \"52.231.74.63/32\",\r\n \"52.231.79.142/32\",\r\n
+ \ \"52.231.148.200/30\",\r\n \"52.231.159.35/32\",\r\n \"52.233.163.218/32\",\r\n
+ \ \"52.237.137.4/32\",\r\n \"52.249.207.163/32\",\r\n \"52.255.83.208/28\",\r\n
+ \ \"52.255.84.176/28\",\r\n \"52.255.84.192/28\",\r\n \"52.255.124.16/28\",\r\n
+ \ \"52.255.124.80/28\",\r\n \"52.255.124.96/28\",\r\n \"65.52.205.19/32\",\r\n
+ \ \"65.52.252.208/28\",\r\n \"102.37.81.64/28\",\r\n \"102.37.160.144/28\",\r\n
+ \ \"102.133.28.72/29\",\r\n \"102.133.28.104/29\",\r\n \"102.133.56.144/28\",\r\n
+ \ \"102.133.56.224/27\",\r\n \"102.133.61.192/26\",\r\n \"102.133.75.174/32\",\r\n
+ \ \"102.133.123.248/29\",\r\n \"102.133.124.24/29\",\r\n
+ \ \"102.133.124.88/29\",\r\n \"102.133.124.96/29\",\r\n \"102.133.156.128/29\",\r\n
+ \ \"102.133.161.242/32\",\r\n \"102.133.162.109/32\",\r\n
+ \ \"102.133.162.196/32\",\r\n \"102.133.162.221/32\",\r\n
+ \ \"102.133.163.185/32\",\r\n \"102.133.217.80/28\",\r\n
+ \ \"102.133.217.96/27\",\r\n \"102.133.218.0/27\",\r\n \"102.133.220.192/30\",\r\n
+ \ \"102.133.221.64/26\",\r\n \"102.133.221.128/27\",\r\n
+ \ \"102.133.236.198/32\",\r\n \"104.42.100.80/32\",\r\n \"104.42.194.173/32\",\r\n
+ \ \"104.42.239.93/32\",\r\n \"104.44.89.44/32\",\r\n \"104.46.112.239/32\",\r\n
+ \ \"104.46.176.164/30\",\r\n \"104.46.176.176/28\",\r\n \"104.46.178.4/30\",\r\n
+ \ \"104.46.178.192/26\",\r\n \"104.46.179.0/27\",\r\n \"104.46.183.128/28\",\r\n
+ \ \"104.46.239.137/32\",\r\n \"104.211.88.173/32\",\r\n \"104.211.222.193/32\",\r\n
+ \ \"104.214.49.162/32\",\r\n \"104.214.233.86/32\",\r\n \"104.215.9.217/32\",\r\n
+ \ \"137.117.70.195/32\",\r\n \"137.135.45.32/32\",\r\n \"168.61.158.107/32\",\r\n
+ \ \"168.61.165.229/32\",\r\n \"168.63.20.177/32\",\r\n \"191.232.39.30/32\",\r\n
+ \ \"191.232.162.204/32\",\r\n \"191.233.10.48/28\",\r\n \"191.233.10.64/27\",\r\n
+ \ \"191.233.10.128/27\",\r\n \"191.233.15.64/26\",\r\n \"191.233.205.72/29\",\r\n
+ \ \"191.233.205.104/29\",\r\n \"191.234.138.136/29\",\r\n
+ \ \"191.234.138.148/30\",\r\n \"191.234.139.192/26\",\r\n
+ \ \"191.234.142.32/27\",\r\n \"191.235.227.128/27\",\r\n
+ \ \"191.235.227.224/27\",\r\n \"191.235.228.0/28\",\r\n \"191.238.72.80/28\",\r\n
+ \ \"2603:1000:4::680/122\",\r\n \"2603:1000:104::180/122\",\r\n
+ \ \"2603:1000:104::380/122\",\r\n \"2603:1000:104:1::640/122\",\r\n
+ \ \"2603:1010:6::80/122\",\r\n \"2603:1010:6:1::640/122\",\r\n
+ \ \"2603:1010:101::680/122\",\r\n \"2603:1010:304::680/122\",\r\n
+ \ \"2603:1010:404::680/122\",\r\n \"2603:1020:5::80/122\",\r\n
+ \ \"2603:1020:5:1::640/122\",\r\n \"2603:1020:206::80/122\",\r\n
+ \ \"2603:1020:206:1::640/122\",\r\n \"2603:1020:305::680/122\",\r\n
+ \ \"2603:1020:405::680/122\",\r\n \"2603:1020:605::680/122\",\r\n
+ \ \"2603:1020:705::80/122\",\r\n \"2603:1020:705:1::640/122\",\r\n
+ \ \"2603:1020:805::80/122\",\r\n \"2603:1020:805:1::640/122\",\r\n
+ \ \"2603:1020:905::680/122\",\r\n \"2603:1020:a04::80/122\",\r\n
+ \ \"2603:1020:a04:1::640/122\",\r\n \"2603:1020:b04::680/122\",\r\n
+ \ \"2603:1020:c04::80/122\",\r\n \"2603:1020:c04:1::640/122\",\r\n
+ \ \"2603:1020:d04::680/122\",\r\n \"2603:1020:e04::80/122\",\r\n
+ \ \"2603:1020:e04::358/125\",\r\n \"2603:1020:e04:1::640/122\",\r\n
+ \ \"2603:1020:e04:2::/122\",\r\n \"2603:1020:e04:3::280/122\",\r\n
+ \ \"2603:1020:f04::680/122\",\r\n \"2603:1020:f04:2::/122\",\r\n
+ \ \"2603:1020:1004::640/122\",\r\n \"2603:1020:1004:1::80/122\",\r\n
+ \ \"2603:1020:1004:1::1f0/125\",\r\n \"2603:1020:1004:1::300/122\",\r\n
+ \ \"2603:1020:1004:1::740/122\",\r\n \"2603:1020:1104::700/121\",\r\n
+ \ \"2603:1020:1104:1::150/125\",\r\n \"2603:1020:1104:1::480/122\",\r\n
+ \ \"2603:1030:f:1::2b8/125\",\r\n \"2603:1030:f:1::680/122\",\r\n
+ \ \"2603:1030:f:2::600/121\",\r\n \"2603:1030:10::80/122\",\r\n
+ \ \"2603:1030:10:1::640/122\",\r\n \"2603:1030:104::80/122\",\r\n
+ \ \"2603:1030:104:1::640/122\",\r\n \"2603:1030:107::730/125\",\r\n
+ \ \"2603:1030:107::740/122\",\r\n \"2603:1030:107::780/122\",\r\n
+ \ \"2603:1030:210::80/122\",\r\n \"2603:1030:210:1::640/122\",\r\n
+ \ \"2603:1030:40b:1::640/122\",\r\n \"2603:1030:40c::80/122\",\r\n
+ \ \"2603:1030:40c:1::640/122\",\r\n \"2603:1030:504::80/122\",\r\n
+ \ \"2603:1030:504::1f0/125\",\r\n \"2603:1030:504::300/122\",\r\n
+ \ \"2603:1030:504:1::640/122\",\r\n \"2603:1030:504:2::200/122\",\r\n
+ \ \"2603:1030:608::680/122\",\r\n \"2603:1030:807::80/122\",\r\n
+ \ \"2603:1030:807:1::640/122\",\r\n \"2603:1030:a07::680/122\",\r\n
+ \ \"2603:1030:b04::680/122\",\r\n \"2603:1030:c06:1::640/122\",\r\n
+ \ \"2603:1030:f05::80/122\",\r\n \"2603:1030:f05:1::640/122\",\r\n
+ \ \"2603:1030:1005::680/122\",\r\n \"2603:1040:5::180/122\",\r\n
+ \ \"2603:1040:5:1::640/122\",\r\n \"2603:1040:207::680/122\",\r\n
+ \ \"2603:1040:407::80/122\",\r\n \"2603:1040:407:1::640/122\",\r\n
+ \ \"2603:1040:606::680/122\",\r\n \"2603:1040:806::680/122\",\r\n
+ \ \"2603:1040:904::80/122\",\r\n \"2603:1040:904:1::640/122\",\r\n
+ \ \"2603:1040:a06::180/122\",\r\n \"2603:1040:a06:1::640/122\",\r\n
+ \ \"2603:1040:b04::680/122\",\r\n \"2603:1040:c06::680/122\",\r\n
+ \ \"2603:1040:d04::640/122\",\r\n \"2603:1040:d04:1::80/122\",\r\n
+ \ \"2603:1040:d04:1::1f0/125\",\r\n \"2603:1040:d04:1::300/122\",\r\n
+ \ \"2603:1040:d04:1::740/122\",\r\n \"2603:1040:f05::80/122\",\r\n
+ \ \"2603:1040:f05::358/125\",\r\n \"2603:1040:f05:1::640/122\",\r\n
+ \ \"2603:1040:f05:2::80/121\",\r\n \"2603:1040:1104::700/121\",\r\n
+ \ \"2603:1040:1104:1::150/125\",\r\n \"2603:1040:1104:1::500/122\",\r\n
+ \ \"2603:1050:6::80/122\",\r\n \"2603:1050:6:1::640/122\",\r\n
+ \ \"2603:1050:403::640/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory\",\r\n \"id\": \"DataFactory\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"13.67.10.208/28\",\r\n
+ \ \"13.69.67.192/28\",\r\n \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n
+ \ \"13.69.230.96/28\",\r\n \"13.70.74.144/28\",\r\n \"13.71.175.80/28\",\r\n
+ \ \"13.71.199.0/28\",\r\n \"13.73.244.32/28\",\r\n \"13.73.253.96/29\",\r\n
+ \ \"13.74.108.224/28\",\r\n \"13.75.39.112/28\",\r\n \"13.77.53.160/28\",\r\n
+ \ \"13.78.109.192/28\",\r\n \"13.86.219.208/28\",\r\n \"13.89.174.192/28\",\r\n
+ \ \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n \"13.104.252.224/28\",\r\n
+ \ \"13.104.253.48/28\",\r\n \"13.104.254.128/28\",\r\n \"20.36.117.208/28\",\r\n
+ \ \"20.36.124.32/28\",\r\n \"20.36.124.128/25\",\r\n \"20.36.125.0/26\",\r\n
+ \ \"20.37.68.144/28\",\r\n \"20.37.69.128/25\",\r\n \"20.37.70.0/26\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.37.193.0/25\",\r\n
+ \ \"20.37.193.128/26\",\r\n \"20.37.198.224/29\",\r\n \"20.37.228.16/28\",\r\n
+ \ \"20.37.228.192/26\",\r\n \"20.37.229.0/25\",\r\n \"20.38.80.192/26\",\r\n
+ \ \"20.38.82.0/23\",\r\n \"20.38.141.16/28\",\r\n \"20.38.141.128/25\",\r\n
+ \ \"20.38.142.0/26\",\r\n \"20.38.147.224/28\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"20.40.206.224/29\",\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n
+ \ \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n \"20.41.197.112/29\",\r\n
+ \ \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n \"20.42.2.0/23\",\r\n
+ \ \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n
+ \ \"20.43.44.208/29\",\r\n \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n
+ \ \"20.43.70.120/29\",\r\n \"20.43.121.48/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.44.10.64/28\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.45.123.160/28\",\r\n \"20.49.83.224/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"20.49.111.0/29\",\r\n \"20.49.114.24/29\",\r\n
+ \ \"20.49.118.128/25\",\r\n \"20.50.68.56/29\",\r\n \"20.52.64.0/28\",\r\n
+ \ \"20.53.0.48/28\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n \"20.72.22.0/23\",\r\n
+ \ \"20.72.28.48/28\",\r\n \"20.150.162.0/23\",\r\n \"20.150.173.16/28\",\r\n
+ \ \"20.150.181.112/28\",\r\n \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n
+ \ \"20.189.109.232/29\",\r\n \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n
+ \ \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n \"20.192.162.0/23\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"20.192.226.0/23\",\r\n \"20.192.238.96/28\",\r\n
+ \ \"20.193.205.144/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n \"23.98.106.128/29\",\r\n
+ \ \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n \"40.64.132.232/29\",\r\n
+ \ \"40.69.108.160/28\",\r\n \"40.69.111.48/28\",\r\n \"40.70.148.160/28\",\r\n
+ \ \"40.71.14.32/28\",\r\n \"40.74.24.192/26\",\r\n \"40.74.26.0/23\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"40.78.196.128/28\",\r\n
+ \ \"40.78.229.96/28\",\r\n \"40.78.236.176/28\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n
+ \ \"40.79.146.240/28\",\r\n \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n
+ \ \"40.79.187.208/28\",\r\n \"40.79.195.224/28\",\r\n \"40.80.51.160/28\",\r\n
+ \ \"40.80.56.128/25\",\r\n \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n
+ \ \"40.80.168.128/25\",\r\n \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n
+ \ \"40.80.176.96/28\",\r\n \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n
+ \ \"40.82.249.64/26\",\r\n \"40.82.250.0/23\",\r\n \"40.89.16.128/25\",\r\n
+ \ \"40.89.17.0/26\",\r\n \"40.89.20.224/29\",\r\n \"40.113.176.232/29\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"40.120.8.56/29\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"40.122.0.16/28\",\r\n
+ \ \"51.12.18.0/23\",\r\n \"51.12.26.0/23\",\r\n \"51.12.101.176/28\",\r\n
+ \ \"51.12.206.16/28\",\r\n \"51.12.229.64/28\",\r\n \"51.12.237.64/28\",\r\n
+ \ \"51.13.128.0/28\",\r\n \"51.104.9.32/28\",\r\n \"51.104.24.128/25\",\r\n
+ \ \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n \"51.105.67.240/28\",\r\n
+ \ \"51.105.75.240/28\",\r\n \"51.105.92.176/28\",\r\n \"51.105.93.64/26\",\r\n
+ \ \"51.105.93.128/25\",\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n
+ \ \"51.107.52.128/26\",\r\n \"51.107.128.0/28\",\r\n \"51.107.148.80/28\",\r\n
+ \ \"51.107.149.0/25\",\r\n \"51.107.149.128/26\",\r\n \"51.107.192.80/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"51.120.44.208/28\",\r\n \"51.120.45.64/26\",\r\n
+ \ \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n \"51.120.109.96/28\",\r\n
+ \ \"51.120.213.32/28\",\r\n \"51.120.228.224/27\",\r\n \"51.120.229.64/26\",\r\n
+ \ \"51.120.229.128/25\",\r\n \"51.120.238.0/23\",\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.138.160.16/28\",\r\n
+ \ \"51.140.212.112/28\",\r\n \"52.138.92.128/28\",\r\n \"52.138.229.32/28\",\r\n
+ \ \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n \"52.140.108.208/29\",\r\n
+ \ \"52.150.136.192/26\",\r\n \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n
+ \ \"52.150.155.0/24\",\r\n \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n
+ \ \"52.162.111.48/28\",\r\n \"52.167.107.224/28\",\r\n \"52.176.232.16/28\",\r\n
+ \ \"52.182.141.16/28\",\r\n \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n
+ \ \"52.228.86.144/29\",\r\n \"52.231.20.64/28\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\",\r\n \"52.236.187.112/28\",\r\n \"52.246.155.224/28\",\r\n
+ \ \"52.250.228.0/29\",\r\n \"102.37.64.96/28\",\r\n \"102.133.60.48/28\",\r\n
+ \ \"102.133.60.192/26\",\r\n \"102.133.61.0/25\",\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n \"191.233.12.0/23\",\r\n
+ \ \"191.233.54.224/28\",\r\n \"191.233.205.160/28\",\r\n
+ \ \"191.234.137.32/29\",\r\n \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n
+ \ \"191.234.149.0/28\",\r\n \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n
+ \ \"191.235.225.0/26\",\r\n \"2603:1000:4::440/122\",\r\n
+ \ \"2603:1000:4::500/121\",\r\n \"2603:1000:4:402::330/124\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\",\r\n \"2603:1010:304::440/122\",\r\n
+ \ \"2603:1010:304::500/121\",\r\n \"2603:1010:304:402::330/124\",\r\n
+ \ \"2603:1010:404::440/122\",\r\n \"2603:1010:404::500/121\",\r\n
+ \ \"2603:1010:404:402::330/124\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\",\r\n \"2603:1020:305::440/122\",\r\n
+ \ \"2603:1020:305::500/121\",\r\n \"2603:1020:305:402::330/124\",\r\n
+ \ \"2603:1020:405::440/122\",\r\n \"2603:1020:405::500/121\",\r\n
+ \ \"2603:1020:405:402::330/124\",\r\n \"2603:1020:605::440/122\",\r\n
+ \ \"2603:1020:605::500/121\",\r\n \"2603:1020:605:402::330/124\",\r\n
+ \ \"2603:1020:705:1::480/121\",\r\n \"2603:1020:705:1::500/122\",\r\n
+ \ \"2603:1020:705:1::700/121\",\r\n \"2603:1020:705:1::780/122\",\r\n
+ \ \"2603:1020:705:402::330/124\",\r\n \"2603:1020:705:802::210/124\",\r\n
+ \ \"2603:1020:705:c02::210/124\",\r\n \"2603:1020:805:1::480/121\",\r\n
+ \ \"2603:1020:805:1::500/122\",\r\n \"2603:1020:805:1::700/121\",\r\n
+ \ \"2603:1020:805:1::780/122\",\r\n \"2603:1020:805:402::330/124\",\r\n
+ \ \"2603:1020:805:802::210/124\",\r\n \"2603:1020:805:c02::210/124\",\r\n
+ \ \"2603:1020:905::440/122\",\r\n \"2603:1020:905::500/121\",\r\n
+ \ \"2603:1020:905:402::330/124\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\",\r\n
+ \ \"2603:1020:b04::440/122\",\r\n \"2603:1020:b04::500/121\",\r\n
+ \ \"2603:1020:b04:402::330/124\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\",\r\n
+ \ \"2603:1020:d04::440/122\",\r\n \"2603:1020:d04::500/121\",\r\n
+ \ \"2603:1020:d04:402::330/124\",\r\n \"2603:1020:e04:1::480/121\",\r\n
+ \ \"2603:1020:e04:1::500/122\",\r\n \"2603:1020:e04:1::700/121\",\r\n
+ \ \"2603:1020:e04:1::780/122\",\r\n \"2603:1020:e04:402::330/124\",\r\n
+ \ \"2603:1020:e04:802::210/124\",\r\n \"2603:1020:e04:c02::210/124\",\r\n
+ \ \"2603:1020:f04::440/122\",\r\n \"2603:1020:f04::500/121\",\r\n
+ \ \"2603:1020:f04:402::330/124\",\r\n \"2603:1020:1004::480/121\",\r\n
+ \ \"2603:1020:1004::500/122\",\r\n \"2603:1020:1004::700/121\",\r\n
+ \ \"2603:1020:1004::780/122\",\r\n \"2603:1020:1004:400::240/124\",\r\n
+ \ \"2603:1020:1004:800::340/124\",\r\n \"2603:1020:1004:c02::380/124\",\r\n
+ \ \"2603:1020:1104::600/121\",\r\n \"2603:1020:1104:400::500/124\",\r\n
+ \ \"2603:1030:f:1::440/122\",\r\n \"2603:1030:f:1::500/121\",\r\n
+ \ \"2603:1030:f:400::b30/124\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\",\r\n
+ \ \"2603:1030:104:1::480/121\",\r\n \"2603:1030:104:1::500/122\",\r\n
+ \ \"2603:1030:104:1::700/121\",\r\n \"2603:1030:104:1::780/122\",\r\n
+ \ \"2603:1030:104:402::330/124\",\r\n \"2603:1030:107::600/121\",\r\n
+ \ \"2603:1030:107:400::380/124\",\r\n \"2603:1030:210:1::480/121\",\r\n
+ \ \"2603:1030:210:1::500/122\",\r\n \"2603:1030:210:1::700/121\",\r\n
+ \ \"2603:1030:210:1::780/122\",\r\n \"2603:1030:210:402::330/124\",\r\n
+ \ \"2603:1030:210:802::210/124\",\r\n \"2603:1030:210:c02::210/124\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\",\r\n \"2603:1030:40c:1::480/121\",\r\n
+ \ \"2603:1030:40c:1::500/122\",\r\n \"2603:1030:40c:1::700/121\",\r\n
+ \ \"2603:1030:40c:1::780/122\",\r\n \"2603:1030:40c:402::330/124\",\r\n
+ \ \"2603:1030:40c:802::210/124\",\r\n \"2603:1030:40c:c02::210/124\",\r\n
+ \ \"2603:1030:504:1::480/121\",\r\n \"2603:1030:504:1::500/122\",\r\n
+ \ \"2603:1030:504:1::700/121\",\r\n \"2603:1030:504:1::780/122\",\r\n
+ \ \"2603:1030:504:402::240/124\",\r\n \"2603:1030:504:802::340/124\",\r\n
+ \ \"2603:1030:504:c02::380/124\",\r\n \"2603:1030:608::440/122\",\r\n
+ \ \"2603:1030:608::500/121\",\r\n \"2603:1030:608:402::330/124\",\r\n
+ \ \"2603:1030:807:1::480/121\",\r\n \"2603:1030:807:1::500/122\",\r\n
+ \ \"2603:1030:807:1::700/121\",\r\n \"2603:1030:807:1::780/122\",\r\n
+ \ \"2603:1030:807:402::330/124\",\r\n \"2603:1030:807:802::210/124\",\r\n
+ \ \"2603:1030:807:c02::210/124\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\",\r\n
+ \ \"2603:1030:b04::440/122\",\r\n \"2603:1030:b04::500/121\",\r\n
+ \ \"2603:1030:b04:402::330/124\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\",\r\n
+ \ \"2603:1030:f05:1::480/121\",\r\n \"2603:1030:f05:1::500/122\",\r\n
+ \ \"2603:1030:f05:1::700/121\",\r\n \"2603:1030:f05:1::780/122\",\r\n
+ \ \"2603:1030:f05:402::330/124\",\r\n \"2603:1030:f05:802::210/124\",\r\n
+ \ \"2603:1030:f05:c02::210/124\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\",\r\n
+ \ \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\",\r\n \"2603:1040:207::440/122\",\r\n
+ \ \"2603:1040:207::500/121\",\r\n \"2603:1040:207:402::330/124\",\r\n
+ \ \"2603:1040:407:1::480/121\",\r\n \"2603:1040:407:1::500/122\",\r\n
+ \ \"2603:1040:407:1::700/121\",\r\n \"2603:1040:407:1::780/122\",\r\n
+ \ \"2603:1040:407:402::330/124\",\r\n \"2603:1040:407:802::210/124\",\r\n
+ \ \"2603:1040:407:c02::210/124\",\r\n \"2603:1040:606::440/122\",\r\n
+ \ \"2603:1040:606::500/121\",\r\n \"2603:1040:606:402::330/124\",\r\n
+ \ \"2603:1040:806::440/122\",\r\n \"2603:1040:806::500/121\",\r\n
+ \ \"2603:1040:806:402::330/124\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\",\r\n
+ \ \"2603:1040:a06::/121\",\r\n \"2603:1040:a06::80/122\",\r\n
+ \ \"2603:1040:a06:1::480/121\",\r\n \"2603:1040:a06:1::500/122\",\r\n
+ \ \"2603:1040:a06:1::700/121\",\r\n \"2603:1040:a06:1::780/122\",\r\n
+ \ \"2603:1040:a06:402::330/124\",\r\n \"2603:1040:a06:802::210/124\",\r\n
+ \ \"2603:1040:a06:c02::210/124\",\r\n \"2603:1040:b04::440/122\",\r\n
+ \ \"2603:1040:b04::500/121\",\r\n \"2603:1040:b04:402::330/124\",\r\n
+ \ \"2603:1040:c06::440/122\",\r\n \"2603:1040:c06::500/121\",\r\n
+ \ \"2603:1040:c06:402::330/124\",\r\n \"2603:1040:d04::480/121\",\r\n
+ \ \"2603:1040:d04::500/122\",\r\n \"2603:1040:d04::700/121\",\r\n
+ \ \"2603:1040:d04::780/122\",\r\n \"2603:1040:d04:400::240/124\",\r\n
+ \ \"2603:1040:d04:800::340/124\",\r\n \"2603:1040:d04:c02::380/124\",\r\n
+ \ \"2603:1040:f05:1::480/121\",\r\n \"2603:1040:f05:1::500/122\",\r\n
+ \ \"2603:1040:f05:1::700/121\",\r\n \"2603:1040:f05:1::780/122\",\r\n
+ \ \"2603:1040:f05:402::330/124\",\r\n \"2603:1040:f05:802::210/124\",\r\n
+ \ \"2603:1040:f05:c02::210/124\",\r\n \"2603:1040:1104::600/121\",\r\n
+ \ \"2603:1040:1104:400::500/124\",\r\n \"2603:1050:6:1::480/121\",\r\n
+ \ \"2603:1050:6:1::500/122\",\r\n \"2603:1050:6:1::700/121\",\r\n
+ \ \"2603:1050:6:1::780/122\",\r\n \"2603:1050:6:402::330/124\",\r\n
+ \ \"2603:1050:6:802::210/124\",\r\n \"2603:1050:6:c02::210/124\",\r\n
+ \ \"2603:1050:403::480/121\",\r\n \"2603:1050:403::500/122\",\r\n
+ \ \"2603:1050:403:400::240/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.AustraliaEast\",\r\n \"id\": \"DataFactory.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.144/28\",\r\n \"20.37.193.0/25\",\r\n \"20.37.193.128/26\",\r\n
+ \ \"20.37.198.224/29\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.AustraliaSoutheast\",\r\n
+ \ \"id\": \"DataFactory.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.160/28\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.BrazilSouth\",\r\n \"id\": \"DataFactory.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.205.160/28\",\r\n \"191.234.137.32/29\",\r\n
+ \ \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n \"191.234.149.0/28\",\r\n
+ \ \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n \"191.235.225.0/26\",\r\n
+ \ \"2603:1050:6:1::480/121\",\r\n \"2603:1050:6:1::500/122\",\r\n
+ \ \"2603:1050:6:1::700/121\",\r\n \"2603:1050:6:1::780/122\",\r\n
+ \ \"2603:1050:6:402::330/124\",\r\n \"2603:1050:6:802::210/124\",\r\n
+ \ \"2603:1050:6:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.CanadaCentral\",\r\n \"id\": \"DataFactory.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.175.80/28\",\r\n \"20.38.147.224/28\",\r\n
+ \ \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n \"52.228.86.144/29\",\r\n
+ \ \"52.246.155.224/28\",\r\n \"2603:1030:f05:1::480/121\",\r\n
+ \ \"2603:1030:f05:1::500/122\",\r\n \"2603:1030:f05:1::700/121\",\r\n
+ \ \"2603:1030:f05:1::780/122\",\r\n \"2603:1030:f05:402::330/124\",\r\n
+ \ \"2603:1030:f05:802::210/124\",\r\n \"2603:1030:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CanadaEast\",\r\n
+ \ \"id\": \"DataFactory.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.160/28\",\r\n
+ \ \"40.69.111.48/28\",\r\n \"40.89.16.128/25\",\r\n \"40.89.17.0/26\",\r\n
+ \ \"40.89.20.224/29\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralIndia\",\r\n
+ \ \"id\": \"DataFactory.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.121.48/28\",\r\n \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n
+ \ \"40.80.51.160/28\",\r\n \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n
+ \ \"52.140.108.208/29\",\r\n \"2603:1040:a06::/121\",\r\n
+ \ \"2603:1040:a06::80/122\",\r\n \"2603:1040:a06:1::480/121\",\r\n
+ \ \"2603:1040:a06:1::500/122\",\r\n \"2603:1040:a06:1::700/121\",\r\n
+ \ \"2603:1040:a06:1::780/122\",\r\n \"2603:1040:a06:402::330/124\",\r\n
+ \ \"2603:1040:a06:802::210/124\",\r\n \"2603:1040:a06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralUS\",\r\n
+ \ \"id\": \"DataFactory.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.89.174.192/28\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.40.206.224/29\",\r\n
+ \ \"20.44.10.64/28\",\r\n \"52.182.141.16/28\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.EastAsia\",\r\n
+ \ \"id\": \"DataFactory.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.75.39.112/28\",\r\n
+ \ \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n \"20.189.109.232/29\",\r\n
+ \ \"2603:1040:207::440/122\",\r\n \"2603:1040:207::500/121\",\r\n
+ \ \"2603:1040:207:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS\",\r\n \"id\": \"DataFactory.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.2.0/23\",\r\n \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n
+ \ \"20.49.111.0/29\",\r\n \"40.71.14.32/28\",\r\n \"40.78.229.96/28\",\r\n
+ \ \"2603:1030:210:1::480/121\",\r\n \"2603:1030:210:1::500/122\",\r\n
+ \ \"2603:1030:210:1::700/121\",\r\n \"2603:1030:210:1::780/122\",\r\n
+ \ \"2603:1030:210:402::330/124\",\r\n \"2603:1030:210:802::210/124\",\r\n
+ \ \"2603:1030:210:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2\",\r\n \"id\": \"DataFactory.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"40.70.148.160/28\",\r\n \"52.167.107.224/28\",\r\n
+ \ \"2603:1030:40c:1::480/121\",\r\n \"2603:1030:40c:1::500/122\",\r\n
+ \ \"2603:1030:40c:1::700/121\",\r\n \"2603:1030:40c:1::780/122\",\r\n
+ \ \"2603:1030:40c:402::330/124\",\r\n \"2603:1030:40c:802::210/124\",\r\n
+ \ \"2603:1030:40c:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2EUAP\",\r\n \"id\": \"DataFactory.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"52.138.92.128/28\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.FranceCentral\",\r\n \"id\": \"DataFactory.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n \"20.43.44.208/29\",\r\n
+ \ \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n \"40.79.146.240/28\",\r\n
+ \ \"2603:1020:805:1::480/121\",\r\n \"2603:1020:805:1::500/122\",\r\n
+ \ \"2603:1020:805:1::700/121\",\r\n \"2603:1020:805:1::780/122\",\r\n
+ \ \"2603:1020:805:402::330/124\",\r\n \"2603:1020:805:802::210/124\",\r\n
+ \ \"2603:1020:805:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.GermanyWestCentral\",\r\n \"id\":
+ \"DataFactory.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.0/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanEast\",\r\n
+ \ \"id\": \"DataFactory.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.78.109.192/28\",\r\n
+ \ \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n \"20.43.70.120/29\",\r\n
+ \ \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n \"40.79.187.208/28\",\r\n
+ \ \"40.79.195.224/28\",\r\n \"2603:1040:407:1::480/121\",\r\n
+ \ \"2603:1040:407:1::500/122\",\r\n \"2603:1040:407:1::700/121\",\r\n
+ \ \"2603:1040:407:1::780/122\",\r\n \"2603:1040:407:402::330/124\",\r\n
+ \ \"2603:1040:407:802::210/124\",\r\n \"2603:1040:407:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanWest\",\r\n
+ \ \"id\": \"DataFactory.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.56.128/25\",\r\n
+ \ \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n \"40.80.176.96/28\",\r\n
+ \ \"2603:1040:606::440/122\",\r\n \"2603:1040:606::500/121\",\r\n
+ \ \"2603:1040:606:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.KoreaCentral\",\r\n \"id\": \"DataFactory.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"52.231.20.64/28\",\r\n \"2603:1040:f05:1::480/121\",\r\n
+ \ \"2603:1040:f05:1::500/122\",\r\n \"2603:1040:f05:1::700/121\",\r\n
+ \ \"2603:1040:f05:1::780/122\",\r\n \"2603:1040:f05:402::330/124\",\r\n
+ \ \"2603:1040:f05:802::210/124\",\r\n \"2603:1040:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.KoreaSouth\",\r\n
+ \ \"id\": \"DataFactory.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.168.128/25\",\r\n
+ \ \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"DataFactory.NorthCentralUS\",\r\n \"id\": \"DataFactory.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.24/29\",\r\n \"20.49.118.128/25\",\r\n
+ \ \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n \"52.162.111.48/28\",\r\n
+ \ \"2603:1030:608::440/122\",\r\n \"2603:1030:608::500/121\",\r\n
+ \ \"2603:1030:608:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.NorthEurope\",\r\n \"id\": \"DataFactory.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.230.96/28\",\r\n \"13.74.108.224/28\",\r\n
+ \ \"20.38.80.192/26\",\r\n \"20.38.82.0/23\",\r\n \"20.50.68.56/29\",\r\n
+ \ \"52.138.229.32/28\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.NorwayEast\",\r\n
+ \ \"id\": \"DataFactory.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.208/28\",\r\n
+ \ \"51.120.45.64/26\",\r\n \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n
+ \ \"51.120.109.96/28\",\r\n \"51.120.213.32/28\",\r\n \"51.120.238.0/23\",\r\n
+ \ \"2603:1020:e04:1::480/121\",\r\n \"2603:1020:e04:1::500/122\",\r\n
+ \ \"2603:1020:e04:1::700/121\",\r\n \"2603:1020:e04:1::780/122\",\r\n
+ \ \"2603:1020:e04:402::330/124\",\r\n \"2603:1020:e04:802::210/124\",\r\n
+ \ \"2603:1020:e04:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthAfricaNorth\",\r\n \"id\":
+ \"DataFactory.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthCentralUS\",\r\n \"id\":
+ \"DataFactory.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.32/28\",\r\n
+ \ \"13.73.253.96/29\",\r\n \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n
+ \ \"20.45.123.160/28\",\r\n \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"2603:1030:807:1::480/121\",\r\n
+ \ \"2603:1030:807:1::500/122\",\r\n \"2603:1030:807:1::700/121\",\r\n
+ \ \"2603:1030:807:1::780/122\",\r\n \"2603:1030:807:402::330/124\",\r\n
+ \ \"2603:1030:807:802::210/124\",\r\n \"2603:1030:807:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SoutheastAsia\",\r\n
+ \ \"id\": \"DataFactory.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.10.208/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n
+ \ \"23.98.106.128/29\",\r\n \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n
+ \ \"40.78.236.176/28\",\r\n \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthIndia\",\r\n \"id\": \"DataFactory.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n
+ \ \"20.41.197.112/29\",\r\n \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"40.78.196.128/28\",\r\n \"2603:1040:c06::440/122\",\r\n
+ \ \"2603:1040:c06::500/121\",\r\n \"2603:1040:c06:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SwitzerlandNorth\",\r\n
+ \ \"id\": \"DataFactory.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n \"51.107.52.128/26\",\r\n
+ \ \"51.107.128.0/28\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UAENorth\",\r\n
+ \ \"id\": \"DataFactory.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.38.141.16/28\",\r\n
+ \ \"20.38.141.128/25\",\r\n \"20.38.142.0/26\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKSouth\",\r\n
+ \ \"id\": \"DataFactory.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.32/28\",\r\n
+ \ \"51.104.24.128/25\",\r\n \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n
+ \ \"51.105.67.240/28\",\r\n \"51.105.75.240/28\",\r\n \"2603:1020:705:1::480/121\",\r\n
+ \ \"2603:1020:705:1::500/122\",\r\n \"2603:1020:705:1::700/121\",\r\n
+ \ \"2603:1020:705:1::780/122\",\r\n \"2603:1020:705:402::330/124\",\r\n
+ \ \"2603:1020:705:802::210/124\",\r\n \"2603:1020:705:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKWest\",\r\n
+ \ \"id\": \"DataFactory.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.140.212.112/28\",\r\n
+ \ \"2603:1020:605::440/122\",\r\n \"2603:1020:605::500/121\",\r\n
+ \ \"2603:1020:605:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestCentralUS\",\r\n \"id\": \"DataFactory.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.199.0/28\",\r\n \"52.150.136.192/26\",\r\n
+ \ \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n \"52.150.155.0/24\",\r\n
+ \ \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n \"2603:1030:b04::440/122\",\r\n
+ \ \"2603:1030:b04::500/121\",\r\n \"2603:1030:b04:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestEurope\",\r\n
+ \ \"id\": \"DataFactory.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.192/28\",\r\n
+ \ \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n \"40.74.24.192/26\",\r\n
+ \ \"40.74.26.0/23\",\r\n \"40.113.176.232/29\",\r\n \"52.236.187.112/28\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestUS\",\r\n \"id\": \"DataFactory.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.219.208/28\",\r\n \"40.82.249.64/26\",\r\n
+ \ \"40.82.250.0/23\",\r\n \"52.250.228.0/29\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestUS2\",\r\n
+ \ \"id\": \"DataFactory.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"40.64.132.232/29\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n
+ \ \"13.69.226.128/25\",\r\n \"13.71.171.0/24\",\r\n \"13.74.106.128/25\",\r\n
+ \ \"13.75.35.0/24\",\r\n \"13.77.51.0/24\",\r\n \"13.78.107.0/24\",\r\n
+ \ \"40.78.242.0/25\",\r\n \"40.79.138.192/26\",\r\n \"40.120.64.224/27\",\r\n
+ \ \"51.107.129.64/27\",\r\n \"51.140.147.0/24\",\r\n \"65.52.252.128/27\",\r\n
+ \ \"102.133.251.96/27\",\r\n \"104.211.80.0/24\",\r\n \"191.233.202.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.51.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.202.0/24\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.171.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.80.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.35.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.138.192/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.107.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.128/25\",\r\n \"13.74.106.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.251.96/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.224/27\",\r\n \"65.52.252.128/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.147.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n \"40.78.242.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub\",\r\n
+ \ \"id\": \"EventHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureEventHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.195.117/32\",\r\n \"13.65.209.24/32\",\r\n
+ \ \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n \"13.66.149.0/26\",\r\n
+ \ \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n
+ \ \"13.69.111.128/26\",\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n
+ \ \"13.69.253.135/32\",\r\n \"13.69.255.140/32\",\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.71.30.214/32\",\r\n
+ \ \"13.71.123.78/32\",\r\n \"13.71.154.11/32\",\r\n \"13.71.170.16/28\",\r\n
+ \ \"13.71.177.128/26\",\r\n \"13.71.194.64/27\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"13.74.107.0/26\",\r\n \"13.75.34.64/26\",\r\n \"13.76.179.223/32\",\r\n
+ \ \"13.76.216.217/32\",\r\n \"13.77.50.32/27\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"13.78.149.209/32\",\r\n \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n
+ \ \"13.84.145.196/32\",\r\n \"13.87.34.139/32\",\r\n \"13.87.34.243/32\",\r\n
+ \ \"13.87.56.32/27\",\r\n \"13.87.102.63/32\",\r\n \"13.87.102.68/32\",\r\n
+ \ \"13.87.122.32/27\",\r\n \"13.88.20.117/32\",\r\n \"13.88.26.28/32\",\r\n
+ \ \"13.89.58.37/32\",\r\n \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n
+ \ \"13.89.178.112/28\",\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n
+ \ \"13.91.61.11/32\",\r\n \"13.92.124.151/32\",\r\n \"13.92.180.208/32\",\r\n
+ \ \"13.92.190.184/32\",\r\n \"13.93.226.138/32\",\r\n \"13.94.47.61/32\",\r\n
+ \ \"20.36.46.142/32\",\r\n \"20.36.74.130/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"20.36.114.32/27\",\r\n \"20.36.144.64/26\",\r\n \"20.37.74.0/27\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.42.68.64/26\",\r\n \"20.42.74.0/26\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.43.126.64/26\",\r\n
+ \ \"20.44.2.128/26\",\r\n \"20.44.13.64/26\",\r\n \"20.44.26.64/26\",\r\n
+ \ \"20.44.31.128/26\",\r\n \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n
+ \ \"20.47.216.64/26\",\r\n \"20.49.93.64/27\",\r\n \"20.49.93.128/27\",\r\n
+ \ \"20.49.95.128/26\",\r\n \"20.50.72.64/26\",\r\n \"20.50.80.64/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"20.52.64.128/26\",\r\n \"20.72.27.192/26\",\r\n
+ \ \"20.83.192.0/26\",\r\n \"20.89.0.64/26\",\r\n \"20.150.160.224/27\",\r\n
+ \ \"20.150.170.160/27\",\r\n \"20.150.175.64/26\",\r\n \"20.150.178.64/26\",\r\n
+ \ \"20.150.182.0/27\",\r\n \"20.150.186.64/26\",\r\n \"20.150.189.128/26\",\r\n
+ \ \"20.151.32.64/26\",\r\n \"20.192.33.64/26\",\r\n \"20.192.98.64/26\",\r\n
+ \ \"20.192.102.0/26\",\r\n \"20.192.161.64/27\",\r\n \"20.192.225.160/27\",\r\n
+ \ \"20.192.234.32/27\",\r\n \"20.193.202.32/27\",\r\n \"20.193.204.192/26\",\r\n
+ \ \"20.194.68.192/26\",\r\n \"20.194.80.0/26\",\r\n \"20.194.128.192/26\",\r\n
+ \ \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n \"23.96.214.181/32\",\r\n
+ \ \"23.96.253.236/32\",\r\n \"23.97.67.90/32\",\r\n \"23.97.97.36/32\",\r\n
+ \ \"23.97.103.3/32\",\r\n \"23.97.120.51/32\",\r\n \"23.97.226.21/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"23.99.7.105/32\",\r\n
+ \ \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n \"23.99.80.186/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"23.100.14.185/32\",\r\n \"23.100.100.84/32\",\r\n \"23.101.3.68/32\",\r\n
+ \ \"23.101.8.229/32\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"23.102.128.15/32\",\r\n \"23.102.160.39/32\",\r\n
+ \ \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n \"23.102.165.127/32\",\r\n
+ \ \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n \"23.102.234.49/32\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.67.58.128/26\",\r\n \"40.67.72.64/26\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"40.69.29.216/32\",\r\n
+ \ \"40.69.106.32/27\",\r\n \"40.69.217.246/32\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n \"40.74.146.16/28\",\r\n
+ \ \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n \"40.76.29.197/32\",\r\n
+ \ \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n \"40.78.110.196/32\",\r\n
+ \ \"40.78.194.32/27\",\r\n \"40.78.202.32/27\",\r\n \"40.78.226.128/26\",\r\n
+ \ \"40.78.234.0/27\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"40.79.44.59/32\",\r\n
+ \ \"40.79.74.86/32\",\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n
+ \ \"40.79.142.0/26\",\r\n \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n
+ \ \"40.79.155.0/26\",\r\n \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n
+ \ \"40.79.170.32/28\",\r\n \"40.79.174.128/26\",\r\n \"40.79.178.32/27\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"40.80.50.64/26\",\r\n
+ \ \"40.83.191.202/32\",\r\n \"40.83.222.100/32\",\r\n \"40.84.150.241/32\",\r\n
+ \ \"40.84.185.67/32\",\r\n \"40.85.226.62/32\",\r\n \"40.85.229.32/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.86.176.23/32\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"40.89.122.0/26\",\r\n
+ \ \"40.112.185.115/32\",\r\n \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.117.88.66/32\",\r\n \"40.120.75.64/27\",\r\n
+ \ \"40.120.78.0/26\",\r\n \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n
+ \ \"40.121.148.193/32\",\r\n \"40.122.173.108/32\",\r\n \"40.122.213.155/32\",\r\n
+ \ \"40.124.65.64/26\",\r\n \"40.127.83.123/32\",\r\n \"40.127.132.254/32\",\r\n
+ \ \"51.11.192.128/26\",\r\n \"51.12.98.160/27\",\r\n \"51.12.102.64/26\",\r\n
+ \ \"51.12.202.160/27\",\r\n \"51.12.206.64/26\",\r\n \"51.12.226.64/26\",\r\n
+ \ \"51.12.234.64/26\",\r\n \"51.13.0.192/26\",\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.107.58.128/27\",\r\n
+ \ \"51.107.129.0/26\",\r\n \"51.107.154.128/27\",\r\n \"51.116.58.128/27\",\r\n
+ \ \"51.116.154.192/27\",\r\n \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n
+ \ \"51.116.246.192/26\",\r\n \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n
+ \ \"51.120.98.128/27\",\r\n \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n
+ \ \"51.120.218.160/27\",\r\n \"51.132.192.192/26\",\r\n \"51.140.80.99/32\",\r\n
+ \ \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n \"51.140.146.32/28\",\r\n
+ \ \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n \"51.140.189.108/32\",\r\n
+ \ \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n \"51.141.14.168/32\",\r\n
+ \ \"51.141.50.179/32\",\r\n \"51.144.238.23/32\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"52.138.90.0/28\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"52.151.58.121/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"52.162.106.64/26\",\r\n \"52.165.34.144/32\",\r\n
+ \ \"52.165.179.109/32\",\r\n \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.169.18.8/32\",\r\n
+ \ \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.175.35.235/32\",\r\n \"52.176.47.198/32\",\r\n
+ \ \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n \"52.178.211.227/32\",\r\n
+ \ \"52.179.6.240/32\",\r\n \"52.179.8.35/32\",\r\n \"52.179.157.59/32\",\r\n
+ \ \"52.180.180.228/32\",\r\n \"52.180.182.75/32\",\r\n \"52.182.138.128/26\",\r\n
+ \ \"52.182.143.64/26\",\r\n \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"52.191.213.188/32\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"52.226.36.235/32\",\r\n \"52.231.18.16/28\",\r\n
+ \ \"52.231.29.105/32\",\r\n \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n
+ \ \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n \"52.231.200.153/32\",\r\n
+ \ \"52.231.207.155/32\",\r\n \"52.232.27.189/32\",\r\n \"52.233.30.41/32\",\r\n
+ \ \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n \"52.236.186.0/26\",\r\n
+ \ \"52.237.33.36/32\",\r\n \"52.237.33.104/32\",\r\n \"52.237.143.176/32\",\r\n
+ \ \"52.242.20.204/32\",\r\n \"52.243.36.161/32\",\r\n \"52.246.154.64/26\",\r\n
+ \ \"52.246.159.0/26\",\r\n \"65.52.129.16/32\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"102.37.65.0/26\",\r\n \"102.37.72.64/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"102.133.122.64/26\",\r\n \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n
+ \ \"102.133.250.64/26\",\r\n \"102.133.254.0/26\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.40.150.139/32\",\r\n \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n
+ \ \"104.41.63.213/32\",\r\n \"104.41.201.10/32\",\r\n \"104.42.97.95/32\",\r\n
+ \ \"104.43.18.219/32\",\r\n \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n
+ \ \"104.43.192.222/32\",\r\n \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.16.0/26\",\r\n \"104.208.144.0/26\",\r\n
+ \ \"104.208.237.147/32\",\r\n \"104.209.186.70/32\",\r\n
+ \ \"104.210.14.49/32\",\r\n \"104.210.106.31/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"104.211.224.190/32\",\r\n
+ \ \"104.211.224.238/32\",\r\n \"104.214.18.128/27\",\r\n
+ \ \"104.214.70.229/32\",\r\n \"137.116.48.46/32\",\r\n \"137.116.77.157/32\",\r\n
+ \ \"137.116.91.178/32\",\r\n \"137.116.157.26/32\",\r\n \"137.116.158.30/32\",\r\n
+ \ \"137.117.85.236/32\",\r\n \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n
+ \ \"137.135.102.226/32\",\r\n \"138.91.1.105/32\",\r\n \"138.91.17.38/32\",\r\n
+ \ \"138.91.17.85/32\",\r\n \"138.91.193.184/32\",\r\n \"168.61.92.197/32\",\r\n
+ \ \"168.61.143.128/26\",\r\n \"168.61.148.205/32\",\r\n \"168.62.52.235/32\",\r\n
+ \ \"168.62.234.250/32\",\r\n \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n
+ \ \"168.63.141.27/32\",\r\n \"191.233.9.64/27\",\r\n \"191.233.73.228/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"191.237.47.93/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"191.237.224.0/26\",\r\n \"191.238.99.131/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"191.239.64.142/32\",\r\n \"191.239.64.144/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"207.46.153.127/32\",\r\n
+ \ \"207.46.154.16/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1000:4::240/122\",\r\n
+ \ \"2603:1000:4:402::1c0/123\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\",\r\n \"2603:1010:304::240/122\",\r\n
+ \ \"2603:1010:304:402::1c0/123\",\r\n \"2603:1010:404::240/122\",\r\n
+ \ \"2603:1010:404:402::1c0/123\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\",\r\n \"2603:1020:305::240/122\",\r\n
+ \ \"2603:1020:305:402::1c0/123\",\r\n \"2603:1020:405::240/122\",\r\n
+ \ \"2603:1020:405:402::1c0/123\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\",\r\n \"2603:1020:905::240/122\",\r\n
+ \ \"2603:1020:905:402::1c0/123\",\r\n \"2603:1020:a04:1::240/122\",\r\n
+ \ \"2603:1020:a04:402::1c0/123\",\r\n \"2603:1020:a04:802::160/123\",\r\n
+ \ \"2603:1020:a04:c02::160/123\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\",\r\n \"2603:1020:d04::240/122\",\r\n
+ \ \"2603:1020:d04:402::1c0/123\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\",\r\n \"2603:1020:1004::240/122\",\r\n
+ \ \"2603:1020:1004:400::2c0/123\",\r\n \"2603:1020:1004:c02::c0/123\",\r\n
+ \ \"2603:1020:1104:400::1c0/123\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\",\r\n \"2603:1030:104:1::240/122\",\r\n
+ \ \"2603:1030:104:402::1c0/123\",\r\n \"2603:1030:107:400::140/123\",\r\n
+ \ \"2603:1030:210:1::240/122\",\r\n \"2603:1030:210:402::1c0/123\",\r\n
+ \ \"2603:1030:210:802::160/123\",\r\n \"2603:1030:210:c02::160/123\",\r\n
+ \ \"2603:1030:40b:1::240/122\",\r\n \"2603:1030:40b:400::9c0/123\",\r\n
+ \ \"2603:1030:40b:800::160/123\",\r\n \"2603:1030:40b:c00::160/123\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\",\r\n
+ \ \"2603:1030:504:1::240/122\",\r\n \"2603:1030:504:402::2c0/123\",\r\n
+ \ \"2603:1030:504:802::240/123\",\r\n \"2603:1030:504:c02::c0/123\",\r\n
+ \ \"2603:1030:608::240/122\",\r\n \"2603:1030:608:402::1c0/123\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\",\r\n
+ \ \"2603:1030:a07::240/122\",\r\n \"2603:1030:a07:402::140/123\",\r\n
+ \ \"2603:1030:b04::240/122\",\r\n \"2603:1030:b04:402::1c0/123\",\r\n
+ \ \"2603:1030:c06:1::240/122\",\r\n \"2603:1030:c06:400::9c0/123\",\r\n
+ \ \"2603:1030:c06:802::160/123\",\r\n \"2603:1030:c06:c02::160/123\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\",\r\n
+ \ \"2603:1040:5:1::240/122\",\r\n \"2603:1040:5:402::1c0/123\",\r\n
+ \ \"2603:1040:5:802::160/123\",\r\n \"2603:1040:5:c02::160/123\",\r\n
+ \ \"2603:1040:207::240/122\",\r\n \"2603:1040:207:402::1c0/123\",\r\n
+ \ \"2603:1040:407:1::240/122\",\r\n \"2603:1040:407:402::1c0/123\",\r\n
+ \ \"2603:1040:407:802::160/123\",\r\n \"2603:1040:407:c02::160/123\",\r\n
+ \ \"2603:1040:606::240/122\",\r\n \"2603:1040:606:402::1c0/123\",\r\n
+ \ \"2603:1040:806::240/122\",\r\n \"2603:1040:806:402::1c0/123\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\",\r\n
+ \ \"2603:1040:b04::240/122\",\r\n \"2603:1040:b04:402::1c0/123\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\",\r\n
+ \ \"2603:1040:d04::240/122\",\r\n \"2603:1040:d04:400::2c0/123\",\r\n
+ \ \"2603:1040:d04:c02::c0/123\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\",\r\n \"2603:1040:1104:400::1c0/123\",\r\n
+ \ \"2603:1050:6:1::240/122\",\r\n \"2603:1050:6:402::1c0/123\",\r\n
+ \ \"2603:1050:6:802::160/123\",\r\n \"2603:1050:6:c02::160/123\",\r\n
+ \ \"2603:1050:403::240/122\",\r\n \"2603:1050:403:400::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.46.142/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"2603:1010:304::240/122\",\r\n \"2603:1010:304:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral2\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.130/32\",\r\n \"20.36.114.32/27\",\r\n
+ \ \"2603:1010:404::240/122\",\r\n \"2603:1010:404:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaEast\",\r\n
+ \ \"id\": \"EventHub.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n \"40.79.170.32/28\",\r\n
+ \ \"40.79.174.128/26\",\r\n \"104.210.106.31/32\",\r\n \"191.239.64.142/32\",\r\n
+ \ \"191.239.64.144/32\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.AustraliaSoutheast\",\r\n \"id\":
+ \"EventHub.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.77.50.32/27\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.127.83.123/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.BrazilSouth\",\r\n \"id\": \"EventHub.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n
+ \ \"23.97.97.36/32\",\r\n \"23.97.103.3/32\",\r\n \"104.41.63.213/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"2603:1050:6:1::240/122\",\r\n
+ \ \"2603:1050:6:402::1c0/123\",\r\n \"2603:1050:6:802::160/123\",\r\n
+ \ \"2603:1050:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CanadaCentral\",\r\n \"id\": \"EventHub.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.16/28\",\r\n \"13.71.177.128/26\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.151.32.64/26\",\r\n \"40.85.226.62/32\",\r\n
+ \ \"40.85.229.32/32\",\r\n \"52.233.30.41/32\",\r\n \"52.237.33.36/32\",\r\n
+ \ \"52.237.33.104/32\",\r\n \"52.246.154.64/26\",\r\n \"52.246.159.0/26\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CanadaEast\",\r\n
+ \ \"id\": \"EventHub.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.32/27\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"52.242.20.204/32\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralIndia\",\r\n
+ \ \"id\": \"EventHub.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.30.214/32\",\r\n
+ \ \"20.43.126.64/26\",\r\n \"20.192.98.64/26\",\r\n \"20.192.102.0/26\",\r\n
+ \ \"40.80.50.64/26\",\r\n \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralUS\",\r\n
+ \ \"id\": \"EventHub.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.89.58.37/32\",\r\n
+ \ \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n \"13.89.178.112/28\",\r\n
+ \ \"20.44.13.64/26\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.122.173.108/32\",\r\n
+ \ \"40.122.213.155/32\",\r\n \"52.165.34.144/32\",\r\n \"52.165.179.109/32\",\r\n
+ \ \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.176.47.198/32\",\r\n \"52.182.138.128/26\",\r\n \"52.182.143.64/26\",\r\n
+ \ \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n \"104.43.192.222/32\",\r\n
+ \ \"104.208.16.0/26\",\r\n \"168.61.148.205/32\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CentralUSEUAP\",\r\n \"id\": \"EventHub.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.32/27\",\r\n \"52.180.180.228/32\",\r\n
+ \ \"52.180.182.75/32\",\r\n \"168.61.143.128/26\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastAsia\",\r\n \"id\": \"EventHub.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.64/26\",\r\n \"13.94.47.61/32\",\r\n \"23.97.67.90/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.101.3.68/32\",\r\n \"23.101.8.229/32\",\r\n
+ \ \"23.102.234.49/32\",\r\n \"52.175.35.235/32\",\r\n \"168.63.141.27/32\",\r\n
+ \ \"207.46.153.127/32\",\r\n \"207.46.154.16/32\",\r\n \"2603:1040:207::240/122\",\r\n
+ \ \"2603:1040:207:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS\",\r\n \"id\": \"EventHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n \"13.92.124.151/32\",\r\n
+ \ \"13.92.180.208/32\",\r\n \"13.92.190.184/32\",\r\n \"20.42.68.64/26\",\r\n
+ \ \"20.42.74.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.76.29.197/32\",\r\n \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n
+ \ \"40.78.226.128/26\",\r\n \"40.79.155.0/26\",\r\n \"40.117.88.66/32\",\r\n
+ \ \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n \"40.121.148.193/32\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.179.6.240/32\",\r\n
+ \ \"52.179.8.35/32\",\r\n \"52.191.213.188/32\",\r\n \"52.226.36.235/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"137.117.85.236/32\",\r\n
+ \ \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n \"137.135.102.226/32\",\r\n
+ \ \"168.62.52.235/32\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.237.47.93/32\",\r\n \"2603:1030:210:1::240/122\",\r\n
+ \ \"2603:1030:210:402::1c0/123\",\r\n \"2603:1030:210:802::160/123\",\r\n
+ \ \"2603:1030:210:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS2\",\r\n \"id\": \"EventHub.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"20.36.144.64/26\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.79.44.59/32\",\r\n \"40.79.74.86/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.179.157.59/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.144.0/26\",\r\n \"104.208.237.147/32\",\r\n
+ \ \"104.209.186.70/32\",\r\n \"104.210.14.49/32\",\r\n \"137.116.48.46/32\",\r\n
+ \ \"137.116.77.157/32\",\r\n \"137.116.91.178/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"EventHub.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"20.47.216.64/26\",\r\n
+ \ \"40.74.146.16/28\",\r\n \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n
+ \ \"40.89.122.0/26\",\r\n \"52.138.90.0/28\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"2603:1030:40b:1::240/122\",\r\n
+ \ \"2603:1030:40b:400::9c0/123\",\r\n \"2603:1030:40b:800::160/123\",\r\n
+ \ \"2603:1030:40b:c00::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceCentral\",\r\n \"id\": \"EventHub.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n \"40.79.142.0/26\",\r\n
+ \ \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n \"51.11.192.128/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceSouth\",\r\n \"id\": \"EventHub.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.32/27\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"2603:1020:905::240/122\",\r\n \"2603:1020:905:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyNorth\",\r\n
+ \ \"id\": \"EventHub.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.116.58.128/27\",\r\n
+ \ \"2603:1020:d04::240/122\",\r\n \"2603:1020:d04:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyWestCentral\",\r\n
+ \ \"id\": \"EventHub.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.64.128/26\",\r\n \"51.116.154.192/27\",\r\n
+ \ \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n \"51.116.246.192/26\",\r\n
+ \ \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanEast\",\r\n \"id\": \"EventHub.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.154.11/32\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"20.89.0.64/26\",\r\n \"20.194.128.192/26\",\r\n \"23.100.100.84/32\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"52.243.36.161/32\",\r\n
+ \ \"138.91.1.105/32\",\r\n \"2603:1040:407:1::240/122\",\r\n
+ \ \"2603:1040:407:402::1c0/123\",\r\n \"2603:1040:407:802::160/123\",\r\n
+ \ \"2603:1040:407:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanWest\",\r\n \"id\": \"EventHub.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n
+ \ \"138.91.17.38/32\",\r\n \"138.91.17.85/32\",\r\n \"2603:1040:606::240/122\",\r\n
+ \ \"2603:1040:606:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaCentral\",\r\n \"id\": \"EventHub.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.64/26\",\r\n \"20.44.31.128/26\",\r\n \"20.194.68.192/26\",\r\n
+ \ \"20.194.80.0/26\",\r\n \"52.231.18.16/28\",\r\n \"52.231.29.105/32\",\r\n
+ \ \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaSouth\",\r\n \"id\": \"EventHub.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n
+ \ \"52.231.200.153/32\",\r\n \"52.231.207.155/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"EventHub.NorthCentralUS\",\r\n
+ \ \"id\": \"EventHub.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.214.181/32\",\r\n \"23.96.253.236/32\",\r\n
+ \ \"52.162.106.64/26\",\r\n \"52.237.143.176/32\",\r\n \"168.62.234.250/32\",\r\n
+ \ \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"2603:1030:608::240/122\",\r\n
+ \ \"2603:1030:608:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorthEurope\",\r\n \"id\": \"EventHub.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n \"13.69.253.135/32\",\r\n
+ \ \"13.69.255.140/32\",\r\n \"13.74.107.0/26\",\r\n \"20.50.72.64/26\",\r\n
+ \ \"20.50.80.64/26\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"40.69.29.216/32\",\r\n \"40.69.217.246/32\",\r\n
+ \ \"40.127.132.254/32\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.169.18.8/32\",\r\n \"52.178.211.227/32\",\r\n \"104.41.201.10/32\",\r\n
+ \ \"168.61.92.197/32\",\r\n \"191.238.99.131/32\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayEast\",\r\n \"id\": \"EventHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.192/26\",\r\n \"51.120.98.128/27\",\r\n
+ \ \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayWest\",\r\n \"id\": \"EventHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.160/27\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaNorth\",\r\n \"id\": \"EventHub.SouthAfricaNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricanorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.64/26\",\r\n \"102.133.122.64/26\",\r\n
+ \ \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n \"102.133.250.64/26\",\r\n
+ \ \"102.133.254.0/26\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaWest\",\r\n \"id\": \"EventHub.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.0/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"2603:1000:4::240/122\",\r\n \"2603:1000:4:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SouthCentralUS\",\r\n
+ \ \"id\": \"EventHub.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.209.24/32\",\r\n \"13.84.145.196/32\",\r\n
+ \ \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n \"20.49.93.64/27\",\r\n
+ \ \"20.49.93.128/27\",\r\n \"20.49.95.128/26\",\r\n \"23.102.128.15/32\",\r\n
+ \ \"23.102.160.39/32\",\r\n \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n
+ \ \"23.102.165.127/32\",\r\n \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n
+ \ \"40.84.150.241/32\",\r\n \"40.84.185.67/32\",\r\n \"40.124.65.64/26\",\r\n
+ \ \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.214.18.128/27\",\r\n \"104.214.70.229/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SoutheastAsia\",\r\n
+ \ \"id\": \"EventHub.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.76.179.223/32\",\r\n \"13.76.216.217/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"40.78.234.0/27\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"104.43.18.219/32\",\r\n \"137.116.157.26/32\",\r\n
+ \ \"137.116.158.30/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1040:5:1::240/122\",\r\n
+ \ \"2603:1040:5:402::1c0/123\",\r\n \"2603:1040:5:802::160/123\",\r\n
+ \ \"2603:1040:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthIndia\",\r\n \"id\": \"EventHub.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.123.78/32\",\r\n \"40.78.194.32/27\",\r\n
+ \ \"104.211.224.190/32\",\r\n \"104.211.224.238/32\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandNorth\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.128/27\",\r\n \"51.107.129.0/26\",\r\n
+ \ \"2603:1020:a04:1::240/122\",\r\n \"2603:1020:a04:402::1c0/123\",\r\n
+ \ \"2603:1020:a04:802::160/123\",\r\n \"2603:1020:a04:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.128/27\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAECentral\",\r\n \"id\": \"EventHub.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.0/27\",\r\n \"2603:1040:b04::240/122\",\r\n
+ \ \"2603:1040:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAENorth\",\r\n \"id\": \"EventHub.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.75.64/27\",\r\n \"40.120.78.0/26\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.UKSouth\",\r\n
+ \ \"id\": \"EventHub.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.132.192.192/26\",\r\n
+ \ \"51.140.80.99/32\",\r\n \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n
+ \ \"51.140.146.32/28\",\r\n \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n
+ \ \"51.140.189.108/32\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UKWest\",\r\n \"id\": \"EventHub.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n
+ \ \"51.141.14.168/32\",\r\n \"51.141.50.179/32\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestCentralUS\",\r\n \"id\": \"EventHub.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.64/27\",\r\n \"13.78.149.209/32\",\r\n
+ \ \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"2603:1030:b04::240/122\",\r\n
+ \ \"2603:1030:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestEurope\",\r\n \"id\": \"EventHub.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n \"13.69.111.128/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"23.97.226.21/32\",\r\n \"23.100.14.185/32\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"51.144.238.23/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n
+ \ \"52.232.27.189/32\",\r\n \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n
+ \ \"52.236.186.0/26\",\r\n \"65.52.129.16/32\",\r\n \"104.40.150.139/32\",\r\n
+ \ \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"191.233.73.228/32\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestIndia\",\r\n \"id\": \"EventHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"2603:1040:806::240/122\",\r\n
+ \ \"2603:1040:806:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS\",\r\n \"id\": \"EventHub.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.195.117/32\",\r\n \"13.88.20.117/32\",\r\n
+ \ \"13.88.26.28/32\",\r\n \"13.91.61.11/32\",\r\n \"13.93.226.138/32\",\r\n
+ \ \"23.99.7.105/32\",\r\n \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n
+ \ \"23.99.80.186/32\",\r\n \"40.78.110.196/32\",\r\n \"40.83.191.202/32\",\r\n
+ \ \"40.83.222.100/32\",\r\n \"40.86.176.23/32\",\r\n \"40.112.185.115/32\",\r\n
+ \ \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.42.97.95/32\",\r\n \"138.91.193.184/32\",\r\n \"2603:1030:a07::240/122\",\r\n
+ \ \"2603:1030:a07:402::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS2\",\r\n \"id\": \"EventHub.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n
+ \ \"13.66.149.0/26\",\r\n \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.83.192.0/26\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"52.151.58.121/32\",\r\n
+ \ \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n \"2603:1030:c06:1::240/122\",\r\n
+ \ \"2603:1030:c06:400::9c0/123\",\r\n \"2603:1030:c06:802::160/123\",\r\n
+ \ \"2603:1030:c06:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager\",\r\n \"id\": \"GatewayManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.66.140.144/29\",\r\n
+ \ \"13.67.9.128/29\",\r\n \"13.69.64.224/29\",\r\n \"13.69.227.224/29\",\r\n
+ \ \"13.70.72.208/29\",\r\n \"13.70.185.130/32\",\r\n \"13.71.170.240/29\",\r\n
+ \ \"13.71.194.232/29\",\r\n \"13.75.36.8/29\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"13.78.108.16/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"13.85.74.21/32\",\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"13.87.122.104/29\",\r\n \"13.89.171.96/29\",\r\n
+ \ \"13.91.249.235/32\",\r\n \"13.91.254.232/32\",\r\n \"13.92.84.128/32\",\r\n
+ \ \"13.93.112.146/32\",\r\n \"13.93.117.26/32\",\r\n \"20.36.42.151/32\",\r\n
+ \ \"20.36.42.152/32\",\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.36.114.24/29\",\r\n \"20.36.120.72/29\",\r\n
+ \ \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n \"20.37.64.72/29\",\r\n
+ \ \"20.37.74.88/29\",\r\n \"20.37.152.72/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"20.38.80.72/29\",\r\n \"20.38.136.72/29\",\r\n
+ \ \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"20.40.173.147/32\",\r\n
+ \ \"20.41.0.72/29\",\r\n \"20.41.64.72/29\",\r\n \"20.41.192.72/29\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"20.42.128.72/29\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"20.43.40.72/29\",\r\n \"20.43.64.72/29\",\r\n \"20.43.128.72/29\",\r\n
+ \ \"20.44.3.16/29\",\r\n \"20.45.112.72/29\",\r\n \"20.45.192.72/29\",\r\n
+ \ \"20.46.13.128/26\",\r\n \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n
+ \ \"20.72.16.64/26\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"20.150.160.64/29\",\r\n \"20.150.161.0/26\",\r\n \"20.150.171.64/29\",\r\n
+ \ \"20.189.104.72/29\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"20.192.160.64/26\",\r\n \"20.192.224.192/26\",\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"20.194.75.128/26\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.67.48.72/29\",\r\n \"40.67.59.64/29\",\r\n
+ \ \"40.69.106.88/29\",\r\n \"40.70.146.224/29\",\r\n \"40.71.11.96/29\",\r\n
+ \ \"40.74.24.72/29\",\r\n \"40.74.100.168/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"40.79.130.224/29\",\r\n \"40.79.178.88/29\",\r\n
+ \ \"40.80.56.72/29\",\r\n \"40.80.168.72/29\",\r\n \"40.80.184.72/29\",\r\n
+ \ \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n \"40.81.180.83/32\",\r\n
+ \ \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n \"40.81.189.42/32\",\r\n
+ \ \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n \"40.82.248.240/29\",\r\n
+ \ \"40.88.222.179/32\",\r\n \"40.88.223.53/32\",\r\n \"40.89.16.72/29\",\r\n
+ \ \"40.89.217.100/32\",\r\n \"40.89.217.109/32\",\r\n \"40.90.186.21/32\",\r\n
+ \ \"40.90.186.91/32\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"40.112.242.168/29\",\r\n \"40.115.248.200/32\",\r\n \"40.115.254.17/32\",\r\n
+ \ \"40.119.8.64/29\",\r\n \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n
+ \ \"51.12.40.192/26\",\r\n \"51.12.192.192/26\",\r\n \"51.104.24.72/29\",\r\n
+ \ \"51.105.80.72/29\",\r\n \"51.105.88.72/29\",\r\n \"51.107.48.72/29\",\r\n
+ \ \"51.107.59.32/29\",\r\n \"51.107.144.72/29\",\r\n \"51.107.155.32/29\",\r\n
+ \ \"51.116.48.72/29\",\r\n \"51.116.59.32/29\",\r\n \"51.116.144.72/29\",\r\n
+ \ \"51.116.155.96/29\",\r\n \"51.120.40.72/29\",\r\n \"51.120.98.168/29\",\r\n
+ \ \"51.120.219.64/29\",\r\n \"51.120.224.72/29\",\r\n \"51.120.235.128/26\",\r\n
+ \ \"51.137.160.72/29\",\r\n \"51.140.63.41/32\",\r\n \"51.140.114.209/32\",\r\n
+ \ \"51.140.148.16/29\",\r\n \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n
+ \ \"51.141.29.178/32\",\r\n \"51.142.209.124/32\",\r\n \"51.142.210.184/32\",\r\n
+ \ \"51.143.192.72/29\",\r\n \"52.136.48.72/29\",\r\n \"52.136.137.15/32\",\r\n
+ \ \"52.136.137.16/32\",\r\n \"52.138.70.115/32\",\r\n \"52.138.71.153/32\",\r\n
+ \ \"52.138.90.40/29\",\r\n \"52.139.87.129/32\",\r\n \"52.139.87.150/32\",\r\n
+ \ \"52.140.104.72/29\",\r\n \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n
+ \ \"52.143.136.58/31\",\r\n \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"52.148.30.6/32\",\r\n \"52.149.24.100/32\",\r\n
+ \ \"52.149.26.14/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"52.162.106.168/29\",\r\n \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n
+ \ \"52.165.221.72/32\",\r\n \"52.169.225.171/32\",\r\n \"52.169.231.163/32\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"52.173.250.124/32\",\r\n \"52.177.204.204/32\",\r\n
+ \ \"52.177.207.219/32\",\r\n \"52.179.10.142/32\",\r\n \"52.180.178.35/32\",\r\n
+ \ \"52.180.178.191/32\",\r\n \"52.180.182.210/32\",\r\n \"52.184.255.23/32\",\r\n
+ \ \"52.191.140.123/32\",\r\n \"52.191.170.38/32\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.229.161.220/32\",\r\n \"52.229.166.101/32\",\r\n \"52.231.18.224/29\",\r\n
+ \ \"52.231.24.186/32\",\r\n \"52.231.35.84/32\",\r\n \"52.231.146.200/29\",\r\n
+ \ \"52.231.203.87/32\",\r\n \"52.231.204.175/32\",\r\n \"52.237.24.145/32\",\r\n
+ \ \"52.237.30.255/32\",\r\n \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n
+ \ \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n \"52.251.12.161/32\",\r\n
+ \ \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n \"52.253.232.235/32\",\r\n
+ \ \"52.253.239.162/32\",\r\n \"65.52.250.24/29\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"102.133.27.16/29\",\r\n \"102.133.56.72/29\",\r\n
+ \ \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n \"104.211.81.208/29\",\r\n
+ \ \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n \"104.211.191.94/32\",\r\n
+ \ \"104.214.19.64/29\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"168.62.208.162/32\",\r\n \"168.62.209.95/32\",\r\n
+ \ \"191.233.8.64/26\",\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1000:4::40/122\",\r\n
+ \ \"2603:1000:104:1::40/122\",\r\n \"2603:1010:6:1::40/122\",\r\n
+ \ \"2603:1010:101::40/122\",\r\n \"2603:1010:304::40/122\",\r\n
+ \ \"2603:1010:404::40/122\",\r\n \"2603:1020:5:1::40/122\",\r\n
+ \ \"2603:1020:206:1::40/122\",\r\n \"2603:1020:305::40/122\",\r\n
+ \ \"2603:1020:405::40/122\",\r\n \"2603:1020:605::40/122\",\r\n
+ \ \"2603:1020:705:1::40/122\",\r\n \"2603:1020:805:1::40/122\",\r\n
+ \ \"2603:1020:905::40/122\",\r\n \"2603:1020:a04:1::40/122\",\r\n
+ \ \"2603:1020:b04::40/122\",\r\n \"2603:1020:c04:1::40/122\",\r\n
+ \ \"2603:1020:d04::40/122\",\r\n \"2603:1020:e04:1::40/122\",\r\n
+ \ \"2603:1020:f04::40/122\",\r\n \"2603:1020:1004::40/122\",\r\n
+ \ \"2603:1020:1104::40/122\",\r\n \"2603:1030:f:1::40/122\",\r\n
+ \ \"2603:1030:10:1::40/122\",\r\n \"2603:1030:104:1::40/122\",\r\n
+ \ \"2603:1030:107::40/122\",\r\n \"2603:1030:210:1::40/122\",\r\n
+ \ \"2603:1030:40b:1::40/122\",\r\n \"2603:1030:40c:1::40/122\",\r\n
+ \ \"2603:1030:504:1::40/122\",\r\n \"2603:1030:608::40/122\",\r\n
+ \ \"2603:1030:807:1::40/122\",\r\n \"2603:1030:a07::40/122\",\r\n
+ \ \"2603:1030:b04::40/122\",\r\n \"2603:1030:c06:1::40/122\",\r\n
+ \ \"2603:1030:f05:1::40/122\",\r\n \"2603:1030:1005::40/122\",\r\n
+ \ \"2603:1040:5:1::40/122\",\r\n \"2603:1040:207::40/122\",\r\n
+ \ \"2603:1040:407:1::40/122\",\r\n \"2603:1040:606::40/122\",\r\n
+ \ \"2603:1040:806::40/122\",\r\n \"2603:1040:904:1::40/122\",\r\n
+ \ \"2603:1040:a06:1::40/122\",\r\n \"2603:1040:b04::40/122\",\r\n
+ \ \"2603:1040:c06::40/122\",\r\n \"2603:1040:d04::40/122\",\r\n
+ \ \"2603:1040:f05:1::40/122\",\r\n \"2603:1040:1104::40/122\",\r\n
+ \ \"2603:1050:6:1::40/122\",\r\n \"2603:1050:403::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.151/32\",\r\n \"20.36.42.152/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"2603:1010:304::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n \"20.36.114.24/29\",\r\n
+ \ \"20.36.120.72/29\",\r\n \"2603:1010:404::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaEast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.208/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n \"2603:1010:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.185.130/32\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"20.40.173.147/32\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"2603:1010:101::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.BrazilSouth\",\r\n
+ \ \"id\": \"GatewayManager.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1050:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaCentral\",\r\n
+ \ \"id\": \"GatewayManager.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.240/29\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.237.24.145/32\",\r\n \"52.237.30.255/32\",\r\n \"2603:1030:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaEast\",\r\n
+ \ \"id\": \"GatewayManager.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.88/29\",\r\n \"40.89.16.72/29\",\r\n \"52.139.87.129/32\",\r\n
+ \ \"52.139.87.150/32\",\r\n \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n
+ \ \"2603:1030:1005::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.CentralIndia\",\r\n \"id\":
+ \"GatewayManager.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"52.140.104.72/29\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"104.211.81.208/29\",\r\n \"2603:1040:a06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUS\",\r\n
+ \ \"id\": \"GatewayManager.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.96/29\",\r\n \"20.37.152.72/29\",\r\n
+ \ \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n \"52.165.221.72/32\",\r\n
+ \ \"52.173.250.124/32\",\r\n \"2603:1030:10:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUSEUAP\",\r\n
+ \ \"id\": \"GatewayManager.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.72/29\",\r\n \"20.46.13.128/26\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"52.180.178.35/32\",\r\n \"52.180.178.191/32\",\r\n
+ \ \"52.180.182.210/32\",\r\n \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n
+ \ \"52.253.232.235/32\",\r\n \"52.253.239.162/32\",\r\n \"2603:1030:f:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastAsia\",\r\n
+ \ \"id\": \"GatewayManager.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.8/29\",\r\n \"20.189.104.72/29\",\r\n \"52.229.161.220/32\",\r\n
+ \ \"52.229.166.101/32\",\r\n \"2603:1040:207::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS\",\r\n
+ \ \"id\": \"GatewayManager.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.92.84.128/32\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"40.71.11.96/29\",\r\n \"40.88.222.179/32\",\r\n
+ \ \"40.88.223.53/32\",\r\n \"52.179.10.142/32\",\r\n \"2603:1030:210:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.0.72/29\",\r\n
+ \ \"40.70.146.224/29\",\r\n \"52.177.204.204/32\",\r\n \"52.177.207.219/32\",\r\n
+ \ \"52.184.255.23/32\",\r\n \"52.251.12.161/32\",\r\n \"2603:1030:40c:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2EUAP\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"52.138.70.115/32\",\r\n
+ \ \"52.138.71.153/32\",\r\n \"52.138.90.40/29\",\r\n \"2603:1030:40b:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceCentral\",\r\n
+ \ \"id\": \"GatewayManager.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.72/29\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"40.79.130.224/29\",\r\n \"52.143.136.58/31\",\r\n \"2603:1020:805:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceSouth\",\r\n
+ \ \"id\": \"GatewayManager.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.88/29\",\r\n \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n
+ \ \"51.105.88.72/29\",\r\n \"52.136.137.15/32\",\r\n \"52.136.137.16/32\",\r\n
+ \ \"2603:1020:905::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.GermanyNorth\",\r\n \"id\":
+ \"GatewayManager.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.116.48.72/29\",\r\n
+ \ \"51.116.59.32/29\",\r\n \"2603:1020:d04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.GermanyWestCentral\",\r\n
+ \ \"id\": \"GatewayManager.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.72/29\",\r\n \"51.116.155.96/29\",\r\n
+ \ \"2603:1020:c04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.JapanEast\",\r\n \"id\": \"GatewayManager.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.108.16/29\",\r\n \"20.43.64.72/29\",\r\n \"40.115.248.200/32\",\r\n
+ \ \"40.115.254.17/32\",\r\n \"2603:1040:407:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.JapanWest\",\r\n
+ \ \"id\": \"GatewayManager.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.168/29\",\r\n \"40.80.56.72/29\",\r\n
+ \ \"40.81.180.83/32\",\r\n \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n
+ \ \"40.81.189.42/32\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"2603:1040:606::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.KoreaCentral\",\r\n \"id\":
+ \"GatewayManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.64.72/29\",\r\n
+ \ \"20.194.75.128/26\",\r\n \"52.231.18.224/29\",\r\n \"52.231.24.186/32\",\r\n
+ \ \"52.231.35.84/32\",\r\n \"2603:1040:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.KoreaSouth\",\r\n
+ \ \"id\": \"GatewayManager.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.168.72/29\",\r\n \"40.89.217.100/32\",\r\n
+ \ \"40.89.217.109/32\",\r\n \"52.231.146.200/29\",\r\n \"52.231.203.87/32\",\r\n
+ \ \"52.231.204.175/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"GatewayManager.NorthCentralUS\",\r\n \"id\": \"GatewayManager.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.80.184.72/29\",\r\n \"52.162.106.168/29\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"2603:1030:608::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorthEurope\",\r\n
+ \ \"id\": \"GatewayManager.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.224/29\",\r\n \"20.38.80.72/29\",\r\n
+ \ \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n \"52.169.225.171/32\",\r\n
+ \ \"52.169.231.163/32\",\r\n \"2603:1020:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayEast\",\r\n
+ \ \"id\": \"GatewayManager.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.72/29\",\r\n
+ \ \"51.120.98.168/29\",\r\n \"51.120.235.128/26\",\r\n \"2603:1020:e04:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayWest\",\r\n
+ \ \"id\": \"GatewayManager.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.219.64/29\",\r\n
+ \ \"51.120.224.72/29\",\r\n \"2603:1020:f04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthAfricaNorth\",\r\n
+ \ \"id\": \"GatewayManager.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n
+ \ \"2603:1000:104:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SouthAfricaWest\",\r\n \"id\":
+ \"GatewayManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.27.16/29\",\r\n
+ \ \"102.133.56.72/29\",\r\n \"2603:1000:4::40/122\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.85.74.21/32\",\r\n \"40.119.8.64/29\",\r\n
+ \ \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"104.214.19.64/29\",\r\n \"2603:1030:807:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SoutheastAsia\",\r\n
+ \ \"id\": \"GatewayManager.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.128/29\",\r\n \"20.43.128.72/29\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"40.90.186.21/32\",\r\n \"40.90.186.91/32\",\r\n
+ \ \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n \"2603:1040:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthIndia\",\r\n
+ \ \"id\": \"GatewayManager.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.72/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"2603:1040:c06::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SwitzerlandNorth\",\r\n
+ \ \"id\": \"GatewayManager.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.48.72/29\",\r\n \"51.107.59.32/29\",\r\n
+ \ \"2603:1020:a04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SwitzerlandWest\",\r\n \"id\":
+ \"GatewayManager.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.107.144.72/29\",\r\n
+ \ \"51.107.155.32/29\",\r\n \"2603:1020:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAECentral\",\r\n
+ \ \"id\": \"GatewayManager.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.64.72/29\",\r\n \"20.37.74.88/29\",\r\n \"2603:1040:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAENorth\",\r\n
+ \ \"id\": \"GatewayManager.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.136.72/29\",\r\n \"65.52.250.24/29\",\r\n
+ \ \"2603:1040:904:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.UKSouth\",\r\n \"id\": \"GatewayManager.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.24.72/29\",\r\n \"51.140.63.41/32\",\r\n
+ \ \"51.140.114.209/32\",\r\n \"51.140.148.16/29\",\r\n \"2603:1020:705:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKSouth2\",\r\n
+ \ \"id\": \"GatewayManager.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"51.143.192.72/29\",\r\n \"2603:1020:405::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKWest\",\r\n
+ \ \"id\": \"GatewayManager.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.72/29\",\r\n
+ \ \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n \"51.141.29.178/32\",\r\n
+ \ \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n \"2603:1020:605::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.232/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"52.148.30.6/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"2603:1030:b04::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.WestEurope\",\r\n \"id\": \"GatewayManager.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.224/29\",\r\n \"13.93.112.146/32\",\r\n
+ \ \"13.93.117.26/32\",\r\n \"40.74.24.72/29\",\r\n \"2603:1020:206:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestIndia\",\r\n
+ \ \"id\": \"GatewayManager.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n
+ \ \"52.136.48.72/29\",\r\n \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n
+ \ \"104.211.191.94/32\",\r\n \"2603:1040:806::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS\",\r\n
+ \ \"id\": \"GatewayManager.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.91.249.235/32\",\r\n
+ \ \"13.91.254.232/32\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"40.82.248.240/29\",\r\n \"40.112.242.168/29\",\r\n \"168.62.208.162/32\",\r\n
+ \ \"168.62.209.95/32\",\r\n \"2603:1030:a07::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS2\",\r\n
+ \ \"id\": \"GatewayManager.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.144/29\",\r\n
+ \ \"20.42.128.72/29\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"52.149.24.100/32\",\r\n \"52.149.26.14/32\",\r\n \"52.191.140.123/32\",\r\n
+ \ \"52.191.170.38/32\",\r\n \"2603:1030:c06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement\",\r\n
+ \ \"id\": \"GuestAndHybridManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAutomation\",\r\n \"addressPrefixes\": [\r\n \"13.65.24.129/32\",\r\n
+ \ \"13.66.138.94/31\",\r\n \"13.66.141.224/29\",\r\n \"13.66.145.80/28\",\r\n
+ \ \"13.67.8.110/31\",\r\n \"13.67.10.72/29\",\r\n \"13.69.64.78/31\",\r\n
+ \ \"13.69.67.48/29\",\r\n \"13.69.107.64/29\",\r\n \"13.69.109.128/31\",\r\n
+ \ \"13.69.109.176/28\",\r\n \"13.69.227.78/31\",\r\n \"13.69.229.248/29\",\r\n
+ \ \"13.70.72.30/31\",\r\n \"13.70.74.80/29\",\r\n \"13.70.123.166/32\",\r\n
+ \ \"13.71.170.46/31\",\r\n \"13.71.173.208/29\",\r\n \"13.71.175.144/28\",\r\n
+ \ \"13.71.194.118/31\",\r\n \"13.71.196.128/29\",\r\n \"13.71.199.176/28\",\r\n
+ \ \"13.73.242.40/29\",\r\n \"13.73.242.210/31\",\r\n \"13.73.244.208/28\",\r\n
+ \ \"13.74.107.92/31\",\r\n \"13.74.108.136/29\",\r\n \"13.75.34.150/31\",\r\n
+ \ \"13.75.39.104/29\",\r\n \"13.77.1.26/32\",\r\n \"13.77.1.212/32\",\r\n
+ \ \"13.77.50.70/31\",\r\n \"13.77.53.56/29\",\r\n \"13.77.55.192/28\",\r\n
+ \ \"13.78.59.184/32\",\r\n \"13.78.106.94/31\",\r\n \"13.78.109.120/29\",\r\n
+ \ \"13.78.111.208/28\",\r\n \"13.86.219.200/29\",\r\n \"13.86.221.216/31\",\r\n
+ \ \"13.86.223.64/28\",\r\n \"13.87.56.86/31\",\r\n \"13.87.58.72/29\",\r\n
+ \ \"13.87.122.86/31\",\r\n \"13.87.124.72/29\",\r\n \"13.88.240.74/32\",\r\n
+ \ \"13.88.244.195/32\",\r\n \"13.89.170.206/31\",\r\n \"13.89.174.136/29\",\r\n
+ \ \"13.89.178.96/28\",\r\n \"13.94.240.75/32\",\r\n \"20.36.39.150/32\",\r\n
+ \ \"20.36.106.70/31\",\r\n \"20.36.108.128/29\",\r\n \"20.36.108.240/28\",\r\n
+ \ \"20.36.114.22/31\",\r\n \"20.36.117.32/29\",\r\n \"20.36.117.144/28\",\r\n
+ \ \"20.37.74.226/31\",\r\n \"20.37.76.120/29\",\r\n \"20.38.128.104/29\",\r\n
+ \ \"20.38.128.168/31\",\r\n \"20.38.132.0/28\",\r\n \"20.38.147.152/29\",\r\n
+ \ \"20.38.149.128/31\",\r\n \"20.42.64.32/31\",\r\n \"20.42.72.128/31\",\r\n
+ \ \"20.42.72.144/28\",\r\n \"20.43.120.248/29\",\r\n \"20.43.121.120/31\",\r\n
+ \ \"20.43.123.48/28\",\r\n \"20.44.2.6/31\",\r\n \"20.44.4.104/29\",\r\n
+ \ \"20.44.8.200/29\",\r\n \"20.44.10.120/31\",\r\n \"20.44.17.8/29\",\r\n
+ \ \"20.44.17.216/31\",\r\n \"20.44.19.16/28\",\r\n \"20.44.27.112/29\",\r\n
+ \ \"20.44.29.48/31\",\r\n \"20.44.29.96/28\",\r\n \"20.45.123.88/29\",\r\n
+ \ \"20.45.123.232/31\",\r\n \"20.49.82.24/29\",\r\n \"20.49.90.24/29\",\r\n
+ \ \"20.72.27.176/29\",\r\n \"20.150.171.216/29\",\r\n \"20.150.172.224/31\",\r\n
+ \ \"20.150.179.192/29\",\r\n \"20.150.181.24/31\",\r\n \"20.150.181.176/28\",\r\n
+ \ \"20.150.187.192/29\",\r\n \"20.150.189.24/31\",\r\n \"20.192.99.192/29\",\r\n
+ \ \"20.192.101.24/31\",\r\n \"20.192.184.64/28\",\r\n \"20.192.234.176/28\",\r\n
+ \ \"20.192.235.8/29\",\r\n \"20.192.238.120/31\",\r\n \"20.193.202.176/28\",\r\n
+ \ \"20.193.203.192/29\",\r\n \"20.194.66.24/29\",\r\n \"23.96.225.107/32\",\r\n
+ \ \"23.96.225.182/32\",\r\n \"23.98.83.64/29\",\r\n \"23.98.86.56/31\",\r\n
+ \ \"40.67.60.96/29\",\r\n \"40.67.60.108/31\",\r\n \"40.69.106.70/31\",\r\n
+ \ \"40.69.108.88/29\",\r\n \"40.69.110.240/28\",\r\n \"40.70.146.78/31\",\r\n
+ \ \"40.70.148.48/29\",\r\n \"40.71.10.206/31\",\r\n \"40.71.13.240/29\",\r\n
+ \ \"40.71.30.252/32\",\r\n \"40.74.146.82/31\",\r\n \"40.74.149.32/29\",\r\n
+ \ \"40.74.150.16/28\",\r\n \"40.75.35.128/29\",\r\n \"40.75.35.216/31\",\r\n
+ \ \"40.78.194.70/31\",\r\n \"40.78.196.88/29\",\r\n \"40.78.202.130/31\",\r\n
+ \ \"40.78.203.248/29\",\r\n \"40.78.229.40/29\",\r\n \"40.78.236.128/29\",\r\n
+ \ \"40.78.238.56/31\",\r\n \"40.78.239.32/28\",\r\n \"40.78.242.172/31\",\r\n
+ \ \"40.78.243.24/29\",\r\n \"40.78.250.108/31\",\r\n \"40.78.250.216/29\",\r\n
+ \ \"40.79.130.46/31\",\r\n \"40.79.132.40/29\",\r\n \"40.79.138.44/31\",\r\n
+ \ \"40.79.138.152/29\",\r\n \"40.79.139.208/28\",\r\n \"40.79.146.44/31\",\r\n
+ \ \"40.79.146.152/29\",\r\n \"40.79.156.40/29\",\r\n \"40.79.163.8/29\",\r\n
+ \ \"40.79.163.152/31\",\r\n \"40.79.170.248/29\",\r\n \"40.79.171.224/31\",\r\n
+ \ \"40.79.173.16/28\",\r\n \"40.79.178.70/31\",\r\n \"40.79.180.56/29\",\r\n
+ \ \"40.79.180.208/28\",\r\n \"40.79.187.160/29\",\r\n \"40.79.189.56/31\",\r\n
+ \ \"40.79.194.120/29\",\r\n \"40.79.197.32/31\",\r\n \"40.80.51.88/29\",\r\n
+ \ \"40.80.53.0/31\",\r\n \"40.80.176.48/29\",\r\n \"40.80.180.0/31\",\r\n
+ \ \"40.80.180.96/28\",\r\n \"40.85.168.201/32\",\r\n \"40.89.129.151/32\",\r\n
+ \ \"40.89.132.62/32\",\r\n \"40.89.137.16/32\",\r\n \"40.89.157.7/32\",\r\n
+ \ \"40.114.77.89/32\",\r\n \"40.114.85.4/32\",\r\n \"40.118.103.191/32\",\r\n
+ \ \"40.120.8.32/28\",\r\n \"40.120.64.48/28\",\r\n \"40.120.75.48/29\",\r\n
+ \ \"51.11.97.0/31\",\r\n \"51.11.97.64/28\",\r\n \"51.12.99.208/29\",\r\n
+ \ \"51.12.203.72/29\",\r\n \"51.12.227.192/29\",\r\n \"51.12.235.192/29\",\r\n
+ \ \"51.104.8.240/29\",\r\n \"51.104.9.96/31\",\r\n \"51.105.67.168/29\",\r\n
+ \ \"51.105.69.80/31\",\r\n \"51.105.75.152/29\",\r\n \"51.105.77.48/31\",\r\n
+ \ \"51.105.77.80/28\",\r\n \"51.107.60.80/29\",\r\n \"51.107.60.92/31\",\r\n
+ \ \"51.107.60.208/28\",\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"51.116.60.80/29\",\r\n \"51.116.60.224/28\",\r\n
+ \ \"51.116.156.160/29\",\r\n \"51.116.158.56/31\",\r\n \"51.116.158.80/28\",\r\n
+ \ \"51.116.243.144/29\",\r\n \"51.116.243.216/31\",\r\n \"51.116.251.32/29\",\r\n
+ \ \"51.116.251.184/31\",\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"51.120.220.80/29\",\r\n
+ \ \"51.120.220.92/31\",\r\n \"51.120.220.176/28\",\r\n \"51.140.6.15/32\",\r\n
+ \ \"51.140.51.174/32\",\r\n \"51.140.212.104/29\",\r\n \"52.138.90.52/31\",\r\n
+ \ \"52.138.92.80/29\",\r\n \"52.138.227.136/29\",\r\n \"52.138.229.64/31\",\r\n
+ \ \"52.138.229.80/28\",\r\n \"52.147.97.0/31\",\r\n \"52.151.62.99/32\",\r\n
+ \ \"52.161.14.192/32\",\r\n \"52.161.28.108/32\",\r\n \"52.162.110.240/29\",\r\n
+ \ \"52.162.111.128/31\",\r\n \"52.163.228.23/32\",\r\n \"52.167.107.72/29\",\r\n
+ \ \"52.167.109.64/31\",\r\n \"52.169.105.82/32\",\r\n \"52.172.153.216/32\",\r\n
+ \ \"52.172.155.142/32\",\r\n \"52.178.223.62/32\",\r\n \"52.180.166.238/32\",\r\n
+ \ \"52.180.179.25/32\",\r\n \"52.182.139.56/29\",\r\n \"52.182.141.12/31\",\r\n
+ \ \"52.182.141.144/28\",\r\n \"52.183.5.195/32\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"52.231.148.120/29\",\r\n \"52.231.148.208/28\",\r\n \"52.236.186.240/29\",\r\n
+ \ \"52.236.189.72/31\",\r\n \"52.240.241.64/28\",\r\n \"52.246.155.152/29\",\r\n
+ \ \"52.246.157.0/31\",\r\n \"65.52.250.6/31\",\r\n \"65.52.252.120/29\",\r\n
+ \ \"102.37.64.32/28\",\r\n \"102.133.26.6/31\",\r\n \"102.133.28.144/29\",\r\n
+ \ \"102.133.124.16/29\",\r\n \"102.133.156.112/29\",\r\n
+ \ \"102.133.251.176/29\",\r\n \"102.133.253.32/28\",\r\n
+ \ \"104.41.9.106/32\",\r\n \"104.41.178.182/32\",\r\n \"104.208.163.218/32\",\r\n
+ \ \"104.209.137.89/32\",\r\n \"104.210.80.208/32\",\r\n \"104.210.158.71/32\",\r\n
+ \ \"104.214.164.32/28\",\r\n \"104.215.254.56/32\",\r\n \"168.61.140.48/28\",\r\n
+ \ \"191.232.170.251/32\",\r\n \"191.233.51.144/29\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1000:4:402::2c0/124\",\r\n \"2603:1000:104:402::2c0/124\",\r\n
+ \ \"2603:1000:104:802::200/124\",\r\n \"2603:1000:104:c02::200/124\",\r\n
+ \ \"2603:1010:6:402::2c0/124\",\r\n \"2603:1010:6:802::200/124\",\r\n
+ \ \"2603:1010:6:c02::200/124\",\r\n \"2603:1010:101:402::2c0/124\",\r\n
+ \ \"2603:1010:304:402::2c0/124\",\r\n \"2603:1010:404:402::2c0/124\",\r\n
+ \ \"2603:1020:5:402::2c0/124\",\r\n \"2603:1020:5:802::200/124\",\r\n
+ \ \"2603:1020:5:c02::200/124\",\r\n \"2603:1020:206:402::2c0/124\",\r\n
+ \ \"2603:1020:206:802::200/124\",\r\n \"2603:1020:206:c02::200/124\",\r\n
+ \ \"2603:1020:305:402::2c0/124\",\r\n \"2603:1020:405:402::2c0/124\",\r\n
+ \ \"2603:1020:605:402::2c0/124\",\r\n \"2603:1020:705:402::2c0/124\",\r\n
+ \ \"2603:1020:705:802::200/124\",\r\n \"2603:1020:705:c02::200/124\",\r\n
+ \ \"2603:1020:805:402::2c0/124\",\r\n \"2603:1020:805:802::200/124\",\r\n
+ \ \"2603:1020:805:c02::200/124\",\r\n \"2603:1020:905:402::2c0/124\",\r\n
+ \ \"2603:1020:a04:402::2c0/124\",\r\n \"2603:1020:a04:802::200/124\",\r\n
+ \ \"2603:1020:a04:c02::200/124\",\r\n \"2603:1020:b04:402::2c0/124\",\r\n
+ \ \"2603:1020:c04:402::2c0/124\",\r\n \"2603:1020:c04:802::200/124\",\r\n
+ \ \"2603:1020:c04:c02::200/124\",\r\n \"2603:1020:d04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:402::2c0/124\",\r\n \"2603:1020:e04:802::200/124\",\r\n
+ \ \"2603:1020:e04:c02::200/124\",\r\n \"2603:1020:f04:402::2c0/124\",\r\n
+ \ \"2603:1020:1004:400::1c0/124\",\r\n \"2603:1020:1004:400::2e0/124\",\r\n
+ \ \"2603:1020:1004:400::3a0/124\",\r\n \"2603:1020:1004:800::3d0/124\",\r\n
+ \ \"2603:1020:1004:800::3f0/124\",\r\n \"2603:1020:1104:400::2c0/124\",\r\n
+ \ \"2603:1030:f:400::ac0/124\",\r\n \"2603:1030:10:402::2c0/124\",\r\n
+ \ \"2603:1030:10:802::200/124\",\r\n \"2603:1030:10:c02::200/124\",\r\n
+ \ \"2603:1030:104:402::2c0/124\",\r\n \"2603:1030:107:400::240/124\",\r\n
+ \ \"2603:1030:210:402::2c0/124\",\r\n \"2603:1030:210:802::200/124\",\r\n
+ \ \"2603:1030:210:c02::200/124\",\r\n \"2603:1030:40b:400::ac0/124\",\r\n
+ \ \"2603:1030:40b:800::200/124\",\r\n \"2603:1030:40b:c00::200/124\",\r\n
+ \ \"2603:1030:40c:402::2c0/124\",\r\n \"2603:1030:40c:802::200/124\",\r\n
+ \ \"2603:1030:40c:c02::200/124\",\r\n \"2603:1030:504:402::1c0/124\",\r\n
+ \ \"2603:1030:504:402::2e0/124\",\r\n \"2603:1030:504:402::3a0/124\",\r\n
+ \ \"2603:1030:504:402::440/124\",\r\n \"2603:1030:504:802::3c0/123\",\r\n
+ \ \"2603:1030:504:802::3f0/124\",\r\n \"2603:1030:608:402::2c0/124\",\r\n
+ \ \"2603:1030:807:402::2c0/124\",\r\n \"2603:1030:807:802::200/124\",\r\n
+ \ \"2603:1030:807:c02::200/124\",\r\n \"2603:1030:a07:402::940/124\",\r\n
+ \ \"2603:1030:b04:402::2c0/124\",\r\n \"2603:1030:c06:400::ac0/124\",\r\n
+ \ \"2603:1030:c06:802::200/124\",\r\n \"2603:1030:c06:c02::200/124\",\r\n
+ \ \"2603:1030:f05:402::2c0/124\",\r\n \"2603:1030:f05:802::200/124\",\r\n
+ \ \"2603:1030:f05:c02::200/124\",\r\n \"2603:1030:1005:402::2c0/124\",\r\n
+ \ \"2603:1040:5:402::2c0/124\",\r\n \"2603:1040:5:802::200/124\",\r\n
+ \ \"2603:1040:5:c02::200/124\",\r\n \"2603:1040:207:402::2c0/124\",\r\n
+ \ \"2603:1040:407:402::2c0/124\",\r\n \"2603:1040:407:802::200/124\",\r\n
+ \ \"2603:1040:407:c02::200/124\",\r\n \"2603:1040:606:402::2c0/124\",\r\n
+ \ \"2603:1040:806:402::2c0/124\",\r\n \"2603:1040:904:402::2c0/124\",\r\n
+ \ \"2603:1040:904:802::200/124\",\r\n \"2603:1040:904:c02::200/124\",\r\n
+ \ \"2603:1040:a06:402::2c0/124\",\r\n \"2603:1040:a06:802::200/124\",\r\n
+ \ \"2603:1040:a06:c02::200/124\",\r\n \"2603:1040:b04:402::2c0/124\",\r\n
+ \ \"2603:1040:c06:402::2c0/124\",\r\n \"2603:1040:d04:400::1c0/124\",\r\n
+ \ \"2603:1040:d04:400::2e0/124\",\r\n \"2603:1040:d04:400::3a0/124\",\r\n
+ \ \"2603:1040:d04:800::3d0/124\",\r\n \"2603:1040:d04:800::3f0/124\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\",\r\n \"2603:1040:1104:400::2c0/124\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\",\r\n \"2603:1050:403:400::1e0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.BrazilSouth\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"104.41.9.106/32\",\r\n \"191.232.170.251/32\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.KoreaCentral\",\r\n \"id\":
+ \"GuestAndHybridManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.27.112/29\",\r\n \"20.44.29.48/31\",\r\n
+ \ \"20.44.29.96/28\",\r\n \"20.194.66.24/29\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.NorwayEast\",\r\n \"id\":
+ \"GuestAndHybridManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAutomation\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"2603:1020:e04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:802::200/124\",\r\n \"2603:1020:e04:c02::200/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.NorwayWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.220.80/29\",\r\n \"51.120.220.92/31\",\r\n
+ \ \"51.120.220.176/28\",\r\n \"2603:1020:f04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"2603:1020:b04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n
+ \ \"id\": \"HDInsight\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.66.141.144/29\",\r\n
+ \ \"13.67.9.152/29\",\r\n \"13.69.65.8/29\",\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.70.73.96/29\",\r\n \"13.71.172.240/29\",\r\n \"13.71.196.48/29\",\r\n
+ \ \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n \"13.74.153.132/32\",\r\n
+ \ \"13.75.38.112/29\",\r\n \"13.75.152.195/32\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n
+ \ \"13.77.52.8/29\",\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n
+ \ \"13.82.225.233/32\",\r\n \"13.86.218.240/29\",\r\n \"13.87.58.32/29\",\r\n
+ \ \"13.87.124.32/29\",\r\n \"13.89.171.120/29\",\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.36.123.88/29\",\r\n \"20.37.68.40/29\",\r\n
+ \ \"20.37.76.96/29\",\r\n \"20.37.228.0/29\",\r\n \"20.38.139.88/29\",\r\n
+ \ \"20.39.15.48/29\",\r\n \"20.40.207.144/29\",\r\n \"20.41.69.32/29\",\r\n
+ \ \"20.41.197.120/29\",\r\n \"20.43.45.224/29\",\r\n \"20.43.120.8/29\",\r\n
+ \ \"20.44.4.64/29\",\r\n \"20.44.16.8/29\",\r\n \"20.44.26.240/29\",\r\n
+ \ \"20.45.115.128/29\",\r\n \"20.45.198.80/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"20.49.114.56/29\",\r\n \"20.49.126.128/29\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"20.61.96.160/29\",\r\n \"20.72.20.40/29\",\r\n
+ \ \"20.150.167.176/29\",\r\n \"20.150.172.232/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"20.189.111.192/29\",\r\n \"20.191.160.0/29\",\r\n \"20.192.48.216/29\",\r\n
+ \ \"20.192.235.248/29\",\r\n \"20.193.194.16/29\",\r\n \"20.193.203.200/29\",\r\n
+ \ \"23.98.107.192/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"40.64.134.160/29\",\r\n \"40.67.50.248/29\",\r\n
+ \ \"40.67.60.64/29\",\r\n \"40.69.107.8/29\",\r\n \"40.71.13.160/29\",\r\n
+ \ \"40.71.175.99/32\",\r\n \"40.74.101.192/29\",\r\n \"40.74.125.69/32\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.78.195.8/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.79.180.16/29\",\r\n \"40.79.187.0/29\",\r\n
+ \ \"40.80.63.144/29\",\r\n \"40.80.172.120/29\",\r\n \"40.89.22.88/29\",\r\n
+ \ \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n \"40.89.157.135/32\",\r\n
+ \ \"51.12.17.48/29\",\r\n \"51.12.25.48/29\",\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.105.92.56/29\",\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"51.116.49.168/29\",\r\n \"51.116.60.48/29\",\r\n \"51.116.145.168/29\",\r\n
+ \ \"51.116.156.48/29\",\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"51.120.220.48/29\",\r\n \"51.120.228.40/29\",\r\n \"51.137.166.32/29\",\r\n
+ \ \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"52.136.52.40/29\",\r\n
+ \ \"52.140.108.248/29\",\r\n \"52.146.79.136/29\",\r\n \"52.146.130.184/29\",\r\n
+ \ \"52.150.154.192/29\",\r\n \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n
+ \ \"52.162.110.160/29\",\r\n \"52.164.210.96/32\",\r\n \"52.166.243.90/32\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"52.175.38.134/32\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"52.228.37.66/32\",\r\n
+ \ \"52.228.45.222/32\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"52.231.36.209/32\",\r\n \"52.231.39.142/32\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\",\r\n \"65.52.252.96/29\",\r\n
+ \ \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n \"102.133.124.0/29\",\r\n
+ \ \"102.133.219.176/29\",\r\n \"104.46.176.168/29\",\r\n
+ \ \"104.210.84.115/32\",\r\n \"104.211.216.210/32\",\r\n
+ \ \"104.211.223.67/32\",\r\n \"138.91.29.150/32\",\r\n \"138.91.141.162/32\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"168.61.48.131/32\",\r\n
+ \ \"168.61.49.99/32\",\r\n \"191.233.10.184/29\",\r\n \"191.233.51.152/29\",\r\n
+ \ \"191.233.204.240/29\",\r\n \"191.234.138.128/29\",\r\n
+ \ \"191.235.84.104/32\",\r\n \"191.235.87.113/32\",\r\n \"2603:1000:4:402::320/124\",\r\n
+ \ \"2603:1000:104:402::320/124\",\r\n \"2603:1010:6:402::320/124\",\r\n
+ \ \"2603:1010:101:402::320/124\",\r\n \"2603:1010:304:402::320/124\",\r\n
+ \ \"2603:1010:404:402::320/124\",\r\n \"2603:1020:5:402::320/124\",\r\n
+ \ \"2603:1020:206:402::320/124\",\r\n \"2603:1020:305:402::320/124\",\r\n
+ \ \"2603:1020:405:402::320/124\",\r\n \"2603:1020:605:402::320/124\",\r\n
+ \ \"2603:1020:705:402::320/124\",\r\n \"2603:1020:805:402::320/124\",\r\n
+ \ \"2603:1020:905:402::320/124\",\r\n \"2603:1020:a04:402::320/124\",\r\n
+ \ \"2603:1020:b04:402::320/124\",\r\n \"2603:1020:c04:402::320/124\",\r\n
+ \ \"2603:1020:d04:402::320/124\",\r\n \"2603:1020:e04::790/124\",\r\n
+ \ \"2603:1020:e04:402::320/124\",\r\n \"2603:1020:f04:402::320/124\",\r\n
+ \ \"2603:1020:1004:1::1e0/124\",\r\n \"2603:1020:1104:1::140/124\",\r\n
+ \ \"2603:1030:f:2::4b0/124\",\r\n \"2603:1030:f:400::b20/124\",\r\n
+ \ \"2603:1030:10:402::320/124\",\r\n \"2603:1030:104:402::320/124\",\r\n
+ \ \"2603:1030:107::720/124\",\r\n \"2603:1030:210:402::320/124\",\r\n
+ \ \"2603:1030:40b:400::b20/124\",\r\n \"2603:1030:40c:402::320/124\",\r\n
+ \ \"2603:1030:504::1e0/124\",\r\n \"2603:1030:608:402::320/124\",\r\n
+ \ \"2603:1030:807:402::320/124\",\r\n \"2603:1030:a07:402::9a0/124\",\r\n
+ \ \"2603:1030:b04:402::320/124\",\r\n \"2603:1030:c06:400::b20/124\",\r\n
+ \ \"2603:1030:f05:402::320/124\",\r\n \"2603:1030:1005:402::320/124\",\r\n
+ \ \"2603:1040:5:402::320/124\",\r\n \"2603:1040:207:402::320/124\",\r\n
+ \ \"2603:1040:407:402::320/124\",\r\n \"2603:1040:606:402::320/124\",\r\n
+ \ \"2603:1040:806:402::320/124\",\r\n \"2603:1040:904:402::320/124\",\r\n
+ \ \"2603:1040:a06:402::320/124\",\r\n \"2603:1040:b04:402::320/124\",\r\n
+ \ \"2603:1040:c06:402::320/124\",\r\n \"2603:1040:d04:1::1e0/124\",\r\n
+ \ \"2603:1040:f05::790/124\",\r\n \"2603:1040:f05:402::320/124\",\r\n
+ \ \"2603:1040:1104:1::140/124\",\r\n \"2603:1050:6:402::320/124\",\r\n
+ \ \"2603:1050:403:400::420/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.AustraliaCentral\",\r\n \"id\":
+ \"HDInsight.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.37.228.0/29\",\r\n \"2603:1010:304:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaEast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.73.96/29\",\r\n \"13.75.152.195/32\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"104.210.84.115/32\",\r\n \"2603:1010:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaSoutheast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n \"13.77.52.8/29\",\r\n
+ \ \"104.46.176.168/29\",\r\n \"2603:1010:101:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.BrazilSouth\",\r\n
+ \ \"id\": \"HDInsight.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"191.233.204.240/29\",\r\n
+ \ \"191.234.138.128/29\",\r\n \"191.235.84.104/32\",\r\n
+ \ \"191.235.87.113/32\",\r\n \"2603:1050:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaCentral\",\r\n
+ \ \"id\": \"HDInsight.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.240/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"52.228.37.66/32\",\r\n \"52.228.45.222/32\",\r\n \"2603:1030:f05:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaEast\",\r\n
+ \ \"id\": \"HDInsight.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.69.107.8/29\",\r\n
+ \ \"40.89.22.88/29\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"2603:1030:1005:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.CentralIndia\",\r\n \"id\": \"HDInsight.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.8/29\",\r\n \"52.140.108.248/29\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"2603:1040:a06:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUS\",\r\n
+ \ \"id\": \"HDInsight.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.120/29\",\r\n
+ \ \"20.40.207.144/29\",\r\n \"2603:1030:10:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUSEUAP\",\r\n
+ \ \"id\": \"HDInsight.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.80/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"2603:1030:f:2::4b0/124\",\r\n
+ \ \"2603:1030:f:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.EastAsia\",\r\n \"id\": \"HDInsight.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.38.112/29\",\r\n \"20.189.111.192/29\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"52.175.38.134/32\",\r\n \"2603:1040:207:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS\",\r\n
+ \ \"id\": \"HDInsight.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.82.225.233/32\",\r\n
+ \ \"40.71.13.160/29\",\r\n \"40.71.175.99/32\",\r\n \"52.146.79.136/29\",\r\n
+ \ \"168.61.48.131/32\",\r\n \"168.61.49.99/32\",\r\n \"2603:1030:210:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2\",\r\n
+ \ \"id\": \"HDInsight.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.44.16.8/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"2603:1030:40c:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2EUAP\",\r\n
+ \ \"id\": \"HDInsight.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.39.15.48/29\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n
+ \ \"2603:1030:40b:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.FranceCentral\",\r\n \"id\": \"HDInsight.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.45.224/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.89.157.135/32\",\r\n \"2603:1020:805:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.FranceSouth\",\r\n
+ \ \"id\": \"HDInsight.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.79.180.16/29\",\r\n
+ \ \"51.105.92.56/29\",\r\n \"2603:1020:905:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyNorth\",\r\n
+ \ \"id\": \"HDInsight.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.116.49.168/29\",\r\n
+ \ \"51.116.60.48/29\",\r\n \"2603:1020:d04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyWestCentral\",\r\n
+ \ \"id\": \"HDInsight.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.168/29\",\r\n \"51.116.156.48/29\",\r\n
+ \ \"2603:1020:c04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.JapanEast\",\r\n \"id\": \"HDInsight.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n \"20.191.160.0/29\",\r\n
+ \ \"40.79.187.0/29\",\r\n \"2603:1040:407:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.JapanWest\",\r\n
+ \ \"id\": \"HDInsight.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.192/29\",\r\n
+ \ \"40.74.125.69/32\",\r\n \"40.80.63.144/29\",\r\n \"138.91.29.150/32\",\r\n
+ \ \"2603:1040:606:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaCentral\",\r\n \"id\": \"HDInsight.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.32/29\",\r\n \"20.44.26.240/29\",\r\n \"52.231.36.209/32\",\r\n
+ \ \"52.231.39.142/32\",\r\n \"2603:1040:f05::790/124\",\r\n
+ \ \"2603:1040:f05:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaSouth\",\r\n \"id\": \"HDInsight.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.172.120/29\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthCentralUS\",\r\n
+ \ \"id\": \"HDInsight.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.56/29\",\r\n \"52.162.110.160/29\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"2603:1030:608:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthEurope\",\r\n
+ \ \"id\": \"HDInsight.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.74.153.132/32\",\r\n \"52.146.130.184/29\",\r\n \"52.164.210.96/32\",\r\n
+ \ \"2603:1020:5:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.NorwayEast\",\r\n \"id\": \"HDInsight.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"2603:1020:e04::790/124\",\r\n \"2603:1020:e04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorwayWest\",\r\n
+ \ \"id\": \"HDInsight.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.120.220.48/29\",\r\n
+ \ \"51.120.228.40/29\",\r\n \"2603:1020:f04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthAfricaNorth\",\r\n
+ \ \"id\": \"HDInsight.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.124.0/29\",\r\n \"102.133.219.176/29\",\r\n
+ \ \"2603:1000:104:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthAfricaWest\",\r\n \"id\": \"HDInsight.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n
+ \ \"2603:1000:4:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthCentralUS\",\r\n \"id\": \"HDInsight.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n
+ \ \"2603:1030:807:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SoutheastAsia\",\r\n \"id\": \"HDInsight.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.152/29\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"23.98.107.192/29\",\r\n \"2603:1040:5:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthIndia\",\r\n
+ \ \"id\": \"HDInsight.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.41.197.120/29\",\r\n
+ \ \"40.78.195.8/29\",\r\n \"104.211.216.210/32\",\r\n \"104.211.223.67/32\",\r\n
+ \ \"2603:1040:c06:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SwitzerlandNorth\",\r\n \"id\":
+ \"HDInsight.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"2603:1020:a04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SwitzerlandWest\",\r\n
+ \ \"id\": \"HDInsight.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"2603:1020:b04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UAECentral\",\r\n \"id\": \"HDInsight.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.40/29\",\r\n \"20.37.76.96/29\",\r\n \"2603:1040:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UAENorth\",\r\n
+ \ \"id\": \"HDInsight.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.88/29\",\r\n
+ \ \"65.52.252.96/29\",\r\n \"2603:1040:904:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UKNorth\",\r\n
+ \ \"id\": \"HDInsight.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.87.124.32/29\",\r\n
+ \ \"2603:1020:305:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKSouth\",\r\n \"id\": \"HDInsight.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n
+ \ \"2603:1020:705:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKWest\",\r\n \"id\": \"HDInsight.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.166.32/29\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"2603:1020:605:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestCentralUS\",\r\n
+ \ \"id\": \"HDInsight.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.48/29\",\r\n \"52.150.154.192/29\",\r\n
+ \ \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n \"2603:1030:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestEurope\",\r\n
+ \ \"id\": \"HDInsight.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.8/29\",\r\n
+ \ \"20.61.96.160/29\",\r\n \"52.166.243.90/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"2603:1020:206:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.WestUS\",\r\n \"id\": \"HDInsight.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.86.218.240/29\",\r\n
+ \ \"20.49.126.128/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"138.91.141.162/32\",\r\n \"2603:1030:a07:402::9a0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestUS2\",\r\n
+ \ \"id\": \"HDInsight.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.144/29\",\r\n
+ \ \"40.64.134.160/29\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"2603:1030:c06:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps\",\r\n \"id\": \"LogicApps\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.82.17/32\",\r\n \"13.65.82.190/32\",\r\n
+ \ \"13.65.86.56/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.52.232/32\",\r\n
+ \ \"13.66.128.68/32\",\r\n \"13.66.201.169/32\",\r\n \"13.66.210.167/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.66.246.219/32\",\r\n \"13.67.13.224/27\",\r\n
+ \ \"13.67.91.135/32\",\r\n \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n
+ \ \"13.67.236.76/32\",\r\n \"13.67.236.125/32\",\r\n \"13.69.71.160/27\",\r\n
+ \ \"13.69.109.144/28\",\r\n \"13.69.231.160/27\",\r\n \"13.69.233.16/28\",\r\n
+ \ \"13.70.78.192/27\",\r\n \"13.70.159.205/32\",\r\n \"13.71.146.140/32\",\r\n
+ \ \"13.71.158.3/32\",\r\n \"13.71.158.120/32\",\r\n \"13.71.184.150/32\",\r\n
+ \ \"13.71.186.1/32\",\r\n \"13.71.199.128/27\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.4.207/32\",\r\n \"13.73.114.207/32\",\r\n \"13.73.115.153/32\",\r\n
+ \ \"13.73.244.144/28\",\r\n \"13.73.244.160/27\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.94.173/32\",\r\n \"13.75.149.4/32\",\r\n \"13.75.153.66/32\",\r\n
+ \ \"13.76.4.194/32\",\r\n \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n
+ \ \"13.77.3.139/32\",\r\n \"13.77.53.224/27\",\r\n \"13.77.55.128/28\",\r\n
+ \ \"13.77.56.167/32\",\r\n \"13.77.58.136/32\",\r\n \"13.77.149.159/32\",\r\n
+ \ \"13.77.152.21/32\",\r\n \"13.78.18.168/32\",\r\n \"13.78.20.232/32\",\r\n
+ \ \"13.78.21.155/32\",\r\n \"13.78.35.229/32\",\r\n \"13.78.42.223/32\",\r\n
+ \ \"13.78.43.164/32\",\r\n \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n
+ \ \"13.78.111.160/27\",\r\n \"13.78.129.20/32\",\r\n \"13.78.137.179/32\",\r\n
+ \ \"13.78.137.247/32\",\r\n \"13.78.141.75/32\",\r\n \"13.78.148.140/32\",\r\n
+ \ \"13.78.151.161/32\",\r\n \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n
+ \ \"13.84.43.45/32\",\r\n \"13.84.159.168/32\",\r\n \"13.85.79.155/32\",\r\n
+ \ \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.58.160/27\",\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n \"13.91.252.184/32\",\r\n
+ \ \"13.92.98.111/32\",\r\n \"13.95.147.65/32\",\r\n \"13.95.155.53/32\",\r\n
+ \ \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n \"20.36.117.96/27\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.37.76.224/27\",\r\n
+ \ \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n \"20.38.149.144/28\",\r\n
+ \ \"20.38.149.160/27\",\r\n \"20.42.64.48/28\",\r\n \"20.42.72.160/27\",\r\n
+ \ \"20.43.121.192/27\",\r\n \"20.43.121.224/28\",\r\n \"20.44.4.176/28\",\r\n
+ \ \"20.44.4.192/27\",\r\n \"20.44.17.224/27\",\r\n \"20.45.64.29/32\",\r\n
+ \ \"20.45.64.87/32\",\r\n \"20.45.67.134/31\",\r\n \"20.45.67.170/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.72.54/32\",\r\n \"20.45.72.72/32\",\r\n
+ \ \"20.45.75.193/32\",\r\n \"20.45.75.200/32\",\r\n \"20.45.75.236/32\",\r\n
+ \ \"20.45.79.239/32\",\r\n \"20.72.30.160/28\",\r\n \"20.72.30.192/27\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.150.173.192/27\",\r\n \"20.150.181.32/27\",\r\n
+ \ \"20.188.33.169/32\",\r\n \"20.188.39.105/32\",\r\n \"20.192.184.0/27\",\r\n
+ \ \"20.192.238.128/27\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"20.193.206.128/27\",\r\n \"23.96.200.77/32\",\r\n \"23.96.200.227/32\",\r\n
+ \ \"23.96.203.46/32\",\r\n \"23.96.210.49/32\",\r\n \"23.96.212.28/32\",\r\n
+ \ \"23.96.253.219/32\",\r\n \"23.97.68.172/32\",\r\n \"23.97.210.126/32\",\r\n
+ \ \"23.97.211.179/32\",\r\n \"23.97.218.130/32\",\r\n \"23.99.125.99/32\",\r\n
+ \ \"23.100.29.190/32\",\r\n \"23.100.82.16/32\",\r\n \"23.100.86.139/32\",\r\n
+ \ \"23.100.87.24/32\",\r\n \"23.100.87.56/32\",\r\n \"23.100.124.84/32\",\r\n
+ \ \"23.100.127.172/32\",\r\n \"23.101.132.208/32\",\r\n \"23.101.136.201/32\",\r\n
+ \ \"23.101.139.153/32\",\r\n \"23.101.183.225/32\",\r\n \"23.101.191.106/32\",\r\n
+ \ \"23.102.70.174/32\",\r\n \"40.67.60.176/28\",\r\n \"40.67.60.192/27\",\r\n
+ \ \"40.68.209.23/32\",\r\n \"40.68.222.65/32\",\r\n \"40.69.110.192/27\",\r\n
+ \ \"40.69.110.224/28\",\r\n \"40.70.26.154/32\",\r\n \"40.70.27.236/32\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.70.29.214/32\",\r\n \"40.70.131.151/32\",\r\n
+ \ \"40.74.64.207/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.68.85/32\",\r\n
+ \ \"40.74.74.21/32\",\r\n \"40.74.76.213/32\",\r\n \"40.74.77.205/32\",\r\n
+ \ \"40.74.81.13/32\",\r\n \"40.74.85.215/32\",\r\n \"40.74.131.151/32\",\r\n
+ \ \"40.74.132.29/32\",\r\n \"40.74.136.23/32\",\r\n \"40.74.140.4/32\",\r\n
+ \ \"40.74.140.162/32\",\r\n \"40.74.140.173/32\",\r\n \"40.74.142.133/32\",\r\n
+ \ \"40.74.143.215/32\",\r\n \"40.74.149.96/27\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.204.224/27\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"40.78.245.144/28\",\r\n \"40.78.245.160/27\",\r\n \"40.79.44.7/32\",\r\n
+ \ \"40.79.139.144/28\",\r\n \"40.79.139.160/27\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.160/27\",\r\n \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n
+ \ \"40.80.180.16/28\",\r\n \"40.80.180.32/27\",\r\n \"40.83.73.39/32\",\r\n
+ \ \"40.83.75.165/32\",\r\n \"40.83.77.208/32\",\r\n \"40.83.98.194/32\",\r\n
+ \ \"40.83.100.69/32\",\r\n \"40.83.127.19/32\",\r\n \"40.83.164.80/32\",\r\n
+ \ \"40.84.25.234/32\",\r\n \"40.84.30.147/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n
+ \ \"40.85.250.212/32\",\r\n \"40.85.252.47/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.86.203.228/32\",\r\n \"40.86.216.241/32\",\r\n \"40.86.217.241/32\",\r\n
+ \ \"40.86.226.149/32\",\r\n \"40.86.228.93/32\",\r\n \"40.89.186.28/32\",\r\n
+ \ \"40.89.186.30/32\",\r\n \"40.89.188.169/32\",\r\n \"40.89.190.104/32\",\r\n
+ \ \"40.89.191.161/32\",\r\n \"40.112.90.39/32\",\r\n \"40.112.92.104/32\",\r\n
+ \ \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n \"40.113.3.202/32\",\r\n
+ \ \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n \"40.113.11.17/32\",\r\n
+ \ \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n \"40.113.20.202/32\",\r\n
+ \ \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n \"40.113.218.230/32\",\r\n
+ \ \"40.114.8.21/32\",\r\n \"40.114.12.31/32\",\r\n \"40.114.13.216/32\",\r\n
+ \ \"40.114.14.143/32\",\r\n \"40.114.40.186/32\",\r\n \"40.114.51.5/32\",\r\n
+ \ \"40.114.82.191/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"40.120.64.0/27\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"40.121.91.41/32\",\r\n \"40.122.41.236/32\",\r\n \"40.122.46.197/32\",\r\n
+ \ \"40.122.170.198/32\",\r\n \"40.126.227.199/32\",\r\n \"40.126.240.14/32\",\r\n
+ \ \"40.126.249.73/32\",\r\n \"40.126.252.33/32\",\r\n \"40.126.252.85/32\",\r\n
+ \ \"40.126.252.107/32\",\r\n \"40.127.80.231/32\",\r\n \"40.127.83.170/32\",\r\n
+ \ \"40.127.84.38/32\",\r\n \"40.127.86.12/32\",\r\n \"40.127.91.18/32\",\r\n
+ \ \"40.127.93.92/32\",\r\n \"51.11.97.16/28\",\r\n \"51.11.97.32/27\",\r\n
+ \ \"51.12.100.112/28\",\r\n \"51.12.102.160/27\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.12.204.192/27\",\r\n \"51.12.229.32/27\",\r\n \"51.104.9.112/28\",\r\n
+ \ \"51.105.69.96/27\",\r\n \"51.107.60.160/27\",\r\n \"51.107.60.192/28\",\r\n
+ \ \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.104/32\",\r\n
+ \ \"51.116.168.222/32\",\r\n \"51.116.171.49/32\",\r\n \"51.116.171.209/32\",\r\n
+ \ \"51.116.175.0/32\",\r\n \"51.116.175.17/32\",\r\n \"51.116.175.51/32\",\r\n
+ \ \"51.116.233.22/32\",\r\n \"51.116.233.33/32\",\r\n \"51.116.233.35/32\",\r\n
+ \ \"51.116.233.40/32\",\r\n \"51.116.233.87/32\",\r\n \"51.116.243.224/27\",\r\n
+ \ \"51.120.100.160/27\",\r\n \"51.120.109.32/28\",\r\n \"51.120.220.128/27\",\r\n
+ \ \"51.120.220.160/28\",\r\n \"51.140.28.225/32\",\r\n \"51.140.73.85/32\",\r\n
+ \ \"51.140.74.14/32\",\r\n \"51.140.78.44/32\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.137.190/32\",\r\n
+ \ \"51.140.142.28/32\",\r\n \"51.140.153.135/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.140.158.24/32\",\r\n \"51.141.45.238/32\",\r\n \"51.141.47.136/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.54.185/32\",\r\n \"51.141.112.112/32\",\r\n \"51.141.113.36/32\",\r\n
+ \ \"51.141.114.77/32\",\r\n \"51.141.118.119/32\",\r\n \"51.141.119.63/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"51.144.182.201/32\",\r\n
+ \ \"52.143.156.55/32\",\r\n \"52.143.158.203/32\",\r\n \"52.143.162.83/32\",\r\n
+ \ \"52.143.164.15/32\",\r\n \"52.143.164.80/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.147.97.32/27\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"52.161.8.128/32\",\r\n \"52.161.9.108/32\",\r\n \"52.161.18.218/32\",\r\n
+ \ \"52.161.19.82/32\",\r\n \"52.161.26.172/32\",\r\n \"52.161.27.190/32\",\r\n
+ \ \"52.162.111.144/28\",\r\n \"52.162.111.160/27\",\r\n \"52.162.208.216/32\",\r\n
+ \ \"52.162.213.231/32\",\r\n \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n
+ \ \"52.163.230.166/32\",\r\n \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n
+ \ \"52.169.220.174/32\",\r\n \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n
+ \ \"52.172.50.24/32\",\r\n \"52.172.51.140/32\",\r\n \"52.172.52.0/32\",\r\n
+ \ \"52.172.55.231/32\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n
+ \ \"52.175.33.254/32\",\r\n \"52.175.198.132/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"52.182.141.160/27\",\r\n \"52.183.29.132/32\",\r\n
+ \ \"52.183.30.10/32\",\r\n \"52.183.30.169/32\",\r\n \"52.183.39.67/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"52.187.226.96/32\",\r\n
+ \ \"52.187.226.139/32\",\r\n \"52.187.227.245/32\",\r\n \"52.187.229.130/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.187.231.184/32\",\r\n \"52.189.214.42/32\",\r\n
+ \ \"52.189.216.28/32\",\r\n \"52.189.220.75/32\",\r\n \"52.189.222.77/32\",\r\n
+ \ \"52.228.39.244/32\",\r\n \"52.229.120.45/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.229.126.25/32\",\r\n \"52.231.23.16/28\",\r\n \"52.231.23.32/27\",\r\n
+ \ \"52.232.128.155/32\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n
+ \ \"65.52.8.225/32\",\r\n \"65.52.9.64/32\",\r\n \"65.52.9.96/32\",\r\n
+ \ \"65.52.10.183/32\",\r\n \"65.52.60.5/32\",\r\n \"65.52.175.34/32\",\r\n
+ \ \"65.52.185.96/32\",\r\n \"65.52.185.218/32\",\r\n \"65.52.186.153/32\",\r\n
+ \ \"65.52.186.190/32\",\r\n \"65.52.186.225/32\",\r\n \"65.52.211.164/32\",\r\n
+ \ \"70.37.50.6/32\",\r\n \"70.37.54.122/32\",\r\n \"102.133.28.208/28\",\r\n
+ \ \"102.133.28.224/27\",\r\n \"102.133.72.37/32\",\r\n \"102.133.72.98/32\",\r\n
+ \ \"102.133.72.113/32\",\r\n \"102.133.72.132/32\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.179/32\",\r\n \"102.133.72.183/32\",\r\n
+ \ \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n \"102.133.75.169/32\",\r\n
+ \ \"102.133.75.191/32\",\r\n \"102.133.156.176/28\",\r\n
+ \ \"102.133.224.125/32\",\r\n \"102.133.226.199/32\",\r\n
+ \ \"102.133.227.103/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.6/32\",\r\n
+ \ \"102.133.228.9/32\",\r\n \"102.133.230.4/32\",\r\n \"102.133.230.82/32\",\r\n
+ \ \"102.133.231.9/32\",\r\n \"102.133.231.51/32\",\r\n \"102.133.231.117/32\",\r\n
+ \ \"102.133.231.188/32\",\r\n \"102.133.251.224/27\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.40.218.37/32\",\r\n
+ \ \"104.41.0.115/32\",\r\n \"104.41.33.103/32\",\r\n \"104.41.162.245/32\",\r\n
+ \ \"104.41.163.102/32\",\r\n \"104.41.168.76/32\",\r\n \"104.41.173.132/32\",\r\n
+ \ \"104.41.179.165/32\",\r\n \"104.41.181.59/32\",\r\n \"104.41.182.232/32\",\r\n
+ \ \"104.42.38.32/32\",\r\n \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n
+ \ \"104.42.236.93/32\",\r\n \"104.43.166.135/32\",\r\n \"104.43.243.39/32\",\r\n
+ \ \"104.45.9.52/32\",\r\n \"104.45.153.81/32\",\r\n \"104.46.32.99/32\",\r\n
+ \ \"104.46.34.93/32\",\r\n \"104.46.34.208/32\",\r\n \"104.46.39.63/32\",\r\n
+ \ \"104.46.42.167/32\",\r\n \"104.46.98.208/32\",\r\n \"104.46.106.158/32\",\r\n
+ \ \"104.47.138.214/32\",\r\n \"104.208.25.27/32\",\r\n \"104.208.140.40/32\",\r\n
+ \ \"104.208.155.200/32\",\r\n \"104.208.158.174/32\",\r\n
+ \ \"104.209.131.77/32\",\r\n \"104.209.133.254/32\",\r\n
+ \ \"104.209.134.133/32\",\r\n \"104.210.89.222/32\",\r\n
+ \ \"104.210.89.244/32\",\r\n \"104.210.90.241/32\",\r\n \"104.210.91.55/32\",\r\n
+ \ \"104.210.144.48/32\",\r\n \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n
+ \ \"104.211.74.145/32\",\r\n \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n
+ \ \"104.211.101.108/32\",\r\n \"104.211.102.62/32\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"104.211.225.152/32\",\r\n \"104.211.227.229/32\",\r\n
+ \ \"104.211.229.115/32\",\r\n \"104.211.230.126/32\",\r\n
+ \ \"104.211.230.129/32\",\r\n \"104.211.231.39/32\",\r\n
+ \ \"104.214.137.243/32\",\r\n \"104.214.161.64/27\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.88.156/32\",\r\n \"104.215.89.144/32\",\r\n
+ \ \"104.215.90.86/32\",\r\n \"104.215.90.189/32\",\r\n \"104.215.90.203/32\",\r\n
+ \ \"104.215.93.125/32\",\r\n \"104.215.176.31/32\",\r\n \"104.215.176.81/32\",\r\n
+ \ \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n \"104.215.179.133/32\",\r\n
+ \ \"104.215.180.203/32\",\r\n \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n
+ \ \"111.221.85.74/32\",\r\n \"137.116.44.82/32\",\r\n \"137.116.80.70/32\",\r\n
+ \ \"137.116.85.245/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.117.72.32/32\",\r\n \"137.135.106.54/32\",\r\n \"138.91.17.47/32\",\r\n
+ \ \"138.91.25.99/32\",\r\n \"138.91.26.45/32\",\r\n \"138.91.188.137/32\",\r\n
+ \ \"157.55.210.61/32\",\r\n \"157.55.212.238/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n \"157.56.167.147/32\",\r\n
+ \ \"168.61.86.120/32\",\r\n \"168.61.152.201/32\",\r\n \"168.61.172.83/32\",\r\n
+ \ \"168.61.172.225/32\",\r\n \"168.61.173.172/32\",\r\n \"168.61.217.177/32\",\r\n
+ \ \"168.62.109.110/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"168.62.248.37/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.136.37/32\",\r\n
+ \ \"168.63.200.173/32\",\r\n \"191.232.32.19/32\",\r\n \"191.232.32.100/32\",\r\n
+ \ \"191.232.34.78/32\",\r\n \"191.232.34.249/32\",\r\n \"191.232.35.177/32\",\r\n
+ \ \"191.232.36.213/32\",\r\n \"191.233.54.240/28\",\r\n \"191.233.68.51/32\",\r\n
+ \ \"191.233.207.0/28\",\r\n \"191.233.207.32/27\",\r\n \"191.234.161.28/32\",\r\n
+ \ \"191.234.161.168/32\",\r\n \"191.234.162.131/32\",\r\n
+ \ \"191.234.162.178/32\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.234.182.26/32\",\r\n \"191.235.82.221/32\",\r\n \"191.235.86.199/32\",\r\n
+ \ \"191.235.91.7/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"191.235.180.188/32\",\r\n \"191.237.255.116/32\",\r\n
+ \ \"191.238.41.107/32\",\r\n \"191.238.161.62/32\",\r\n \"191.238.163.65/32\",\r\n
+ \ \"191.239.67.132/32\",\r\n \"191.239.82.62/32\",\r\n \"191.239.161.74/32\",\r\n
+ \ \"191.239.177.86/32\",\r\n \"207.46.148.176/32\",\r\n \"2603:1000:4:402::3c0/124\",\r\n
+ \ \"2603:1000:4:402::3e0/123\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1000:104:402::3e0/123\",\r\n \"2603:1010:6:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3e0/123\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:101:402::3e0/123\",\r\n \"2603:1010:304:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3e0/123\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1010:404:402::3e0/123\",\r\n \"2603:1020:5:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3e0/123\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:206:402::3e0/123\",\r\n \"2603:1020:305:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3e0/123\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:405:402::3e0/123\",\r\n \"2603:1020:605:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3e0/123\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:705:402::3e0/123\",\r\n \"2603:1020:805:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3e0/123\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:905:402::3e0/123\",\r\n \"2603:1020:a04:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3e0/123\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:b04:402::3e0/123\",\r\n \"2603:1020:c04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3e0/123\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\",\r\n \"2603:1020:e04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3e0/123\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:f04:402::3e0/123\",\r\n \"2603:1020:1004:400::250/124\",\r\n
+ \ \"2603:1020:1004:400::260/123\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1020:1104:400::520/123\",\r\n \"2603:1030:f:400::bc0/124\",\r\n
+ \ \"2603:1030:f:400::be0/123\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:10:402::3e0/123\",\r\n \"2603:1030:104:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3e0/123\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:107:400::3a0/123\",\r\n \"2603:1030:210:402::3c0/124\",\r\n
+ \ \"2603:1030:210:402::3e0/123\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40b:400::be0/123\",\r\n \"2603:1030:40c:402::3c0/124\",\r\n
+ \ \"2603:1030:40c:402::3e0/123\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:504:402::260/123\",\r\n \"2603:1030:608:402::3c0/124\",\r\n
+ \ \"2603:1030:608:402::3e0/123\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:807:402::3e0/123\",\r\n \"2603:1030:a07:402::340/124\",\r\n
+ \ \"2603:1030:a07:402::360/123\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:b04:402::3e0/123\",\r\n \"2603:1030:c06:400::bc0/124\",\r\n
+ \ \"2603:1030:c06:400::be0/123\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\",\r\n \"2603:1030:1005:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3e0/123\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:5:402::3e0/123\",\r\n \"2603:1040:207:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3e0/123\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:407:402::3e0/123\",\r\n \"2603:1040:606:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3e0/123\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:806:402::3e0/123\",\r\n \"2603:1040:904:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3e0/123\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\",\r\n \"2603:1040:b04:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3e0/123\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:c06:402::3e0/123\",\r\n \"2603:1040:d04:400::250/124\",\r\n
+ \ \"2603:1040:d04:400::260/123\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:f05:402::3e0/123\",\r\n \"2603:1040:1104:400::510/124\",\r\n
+ \ \"2603:1040:1104:400::520/123\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:6:402::3e0/123\",\r\n \"2603:1050:403:400::180/123\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.AustraliaCentral\",\r\n \"id\":
+ \"LogicApps.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:304:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.CanadaCentral\",\r\n
+ \ \"id\": \"LogicApps.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.184.150/32\",\r\n \"13.71.186.1/32\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"20.38.149.144/28\",\r\n \"20.38.149.160/27\",\r\n
+ \ \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n \"40.85.250.212/32\",\r\n
+ \ \"40.85.252.47/32\",\r\n \"52.228.39.244/32\",\r\n \"52.233.29.79/32\",\r\n
+ \ \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.CentralIndia\",\r\n \"id\": \"LogicApps.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.192/27\",\r\n
+ \ \"20.43.121.224/28\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.74.145/32\",\r\n
+ \ \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n \"104.211.101.108/32\",\r\n
+ \ \"104.211.102.62/32\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.GermanyNorth\",\r\n \"id\": \"LogicApps.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.NorthEurope\",\r\n \"id\": \"LogicApps.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"13.69.231.160/27\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.79.173.49/32\",\r\n \"40.112.90.39/32\",\r\n
+ \ \"40.112.92.104/32\",\r\n \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n
+ \ \"40.113.3.202/32\",\r\n \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n
+ \ \"40.113.11.17/32\",\r\n \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n
+ \ \"40.113.20.202/32\",\r\n \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n
+ \ \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"168.61.86.120/32\",\r\n \"191.235.180.188/32\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SoutheastAsia\",\r\n
+ \ \"id\": \"LogicApps.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.13.224/27\",\r\n \"13.67.91.135/32\",\r\n
+ \ \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n \"13.76.4.194/32\",\r\n
+ \ \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n \"52.163.230.166/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"104.215.176.31/32\",\r\n
+ \ \"104.215.176.81/32\",\r\n \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n
+ \ \"104.215.179.133/32\",\r\n \"104.215.180.203/32\",\r\n
+ \ \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n \"111.221.85.74/32\",\r\n
+ \ \"2603:1040:5:402::3c0/124\",\r\n \"2603:1040:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SwitzerlandWest\",\r\n
+ \ \"id\": \"LogicApps.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"2603:1020:b04:402::3c0/124\",\r\n \"2603:1020:b04:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKNorth\",\r\n
+ \ \"id\": \"LogicApps.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:305:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKSouth2\",\r\n
+ \ \"id\": \"LogicApps.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.58.144/28\",\r\n \"13.87.58.160/27\",\r\n
+ \ \"2603:1020:405:402::3c0/124\",\r\n \"2603:1020:405:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestIndia\",\r\n
+ \ \"id\": \"LogicApps.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"2603:1040:806:402::3c0/124\",\r\n \"2603:1040:806:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestUS\",\r\n
+ \ \"id\": \"LogicApps.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"40.83.164.80/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.42.38.32/32\",\r\n
+ \ \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n \"104.42.236.93/32\",\r\n
+ \ \"138.91.188.137/32\",\r\n \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n
+ \ \"157.56.167.147/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:a07:402::360/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicAppsManagement\",\r\n
+ \ \"id\": \"LogicAppsManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.128.68/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.67.236.76/32\",\r\n \"13.69.109.144/28\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.71.146.140/32\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.115.153/32\",\r\n \"13.73.244.144/28\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.153.66/32\",\r\n \"13.77.55.128/28\",\r\n \"13.78.43.164/32\",\r\n
+ \ \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n \"13.78.137.247/32\",\r\n
+ \ \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n \"13.84.43.45/32\",\r\n
+ \ \"13.85.79.155/32\",\r\n \"13.86.221.240/28\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.124.144/28\",\r\n \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"13.95.155.53/32\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.38.128.176/28\",\r\n
+ \ \"20.38.149.144/28\",\r\n \"20.42.64.48/28\",\r\n \"20.43.121.224/28\",\r\n
+ \ \"20.44.4.176/28\",\r\n \"20.45.64.29/32\",\r\n \"20.45.64.87/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.75.193/32\",\r\n \"20.72.30.160/28\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"23.97.68.172/32\",\r\n \"40.67.60.176/28\",\r\n \"40.69.110.224/28\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.81.13/32\",\r\n
+ \ \"40.74.85.215/32\",\r\n \"40.74.140.173/32\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.239.16/28\",\r\n \"40.78.245.144/28\",\r\n
+ \ \"40.79.44.7/32\",\r\n \"40.79.139.144/28\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n \"40.80.180.16/28\",\r\n
+ \ \"40.83.98.194/32\",\r\n \"40.84.25.234/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.112.90.39/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"51.11.97.16/28\",\r\n \"51.12.100.112/28\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.104.9.112/28\",\r\n \"51.107.60.192/28\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"51.116.60.144/28\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.222/32\",\r\n
+ \ \"51.116.171.209/32\",\r\n \"51.116.175.0/32\",\r\n \"51.116.233.40/32\",\r\n
+ \ \"51.120.109.32/28\",\r\n \"51.120.220.160/28\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.160.90.237/32\",\r\n \"52.161.8.128/32\",\r\n \"52.161.19.82/32\",\r\n
+ \ \"52.161.26.172/32\",\r\n \"52.162.111.144/28\",\r\n \"52.163.93.214/32\",\r\n
+ \ \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n
+ \ \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n \"52.172.51.140/32\",\r\n
+ \ \"52.172.157.194/32\",\r\n \"52.172.184.192/32\",\r\n \"52.172.191.194/32\",\r\n
+ \ \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n \"52.183.30.10/32\",\r\n
+ \ \"52.183.39.67/32\",\r\n \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.189.216.28/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.231.23.16/28\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.30.218/32\",\r\n \"65.52.9.64/32\",\r\n
+ \ \"65.52.211.164/32\",\r\n \"102.133.28.208/28\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n
+ \ \"102.133.156.176/28\",\r\n \"102.133.224.125/32\",\r\n
+ \ \"102.133.226.199/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.9/32\",\r\n
+ \ \"104.43.243.39/32\",\r\n \"104.210.89.222/32\",\r\n \"104.210.89.244/32\",\r\n
+ \ \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.157.237/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.165.81/32\",\r\n \"104.211.225.152/32\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.181.6/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.135.106.54/32\",\r\n \"138.91.188.137/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.200.173/32\",\r\n
+ \ \"191.233.54.240/28\",\r\n \"191.233.207.0/28\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.235.86.199/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"2603:1000:4:402::3c0/124\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3c0/124\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3c0/124\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3c0/124\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3c0/124\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3c0/124\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3c0/124\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:1004:400::250/124\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1030:f:400::bc0/124\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3c0/124\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:210:402::3c0/124\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40c:402::3c0/124\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:608:402::3c0/124\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:c06:400::bc0/124\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3c0/124\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3c0/124\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3c0/124\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3c0/124\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3c0/124\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:d04:400::250/124\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:1104:400::510/124\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftCloudAppSecurity\",\r\n \"id\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.26.88/32\",\r\n \"13.64.28.87/32\",\r\n
+ \ \"13.64.29.32/32\",\r\n \"13.64.29.161/32\",\r\n \"13.64.30.76/32\",\r\n
+ \ \"13.64.30.117/32\",\r\n \"13.64.30.118/32\",\r\n \"13.64.31.116/32\",\r\n
+ \ \"13.64.196.27/32\",\r\n \"13.64.198.19/32\",\r\n \"13.64.198.97/32\",\r\n
+ \ \"13.64.199.41/32\",\r\n \"13.64.252.115/32\",\r\n \"13.66.134.18/32\",\r\n
+ \ \"13.66.142.80/28\",\r\n \"13.66.158.8/32\",\r\n \"13.66.168.209/32\",\r\n
+ \ \"13.66.173.192/32\",\r\n \"13.66.210.205/32\",\r\n \"13.67.10.192/28\",\r\n
+ \ \"13.67.48.221/32\",\r\n \"13.69.67.96/28\",\r\n \"13.69.107.96/28\",\r\n
+ \ \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n \"13.70.74.160/27\",\r\n
+ \ \"13.71.175.0/27\",\r\n \"13.71.196.192/27\",\r\n \"13.73.242.224/27\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"13.75.39.128/27\",\r\n
+ \ \"13.76.43.73/32\",\r\n \"13.76.129.255/32\",\r\n \"13.77.53.96/27\",\r\n
+ \ \"13.77.80.28/32\",\r\n \"13.77.136.80/32\",\r\n \"13.77.148.229/32\",\r\n
+ \ \"13.77.160.162/32\",\r\n \"13.77.163.148/32\",\r\n \"13.77.165.61/32\",\r\n
+ \ \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n \"13.80.125.22/32\",\r\n
+ \ \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n \"13.81.212.71/32\",\r\n
+ \ \"13.86.176.189/32\",\r\n \"13.86.176.211/32\",\r\n \"13.86.219.224/27\",\r\n
+ \ \"13.86.235.202/32\",\r\n \"13.86.239.236/32\",\r\n \"13.88.224.38/32\",\r\n
+ \ \"13.88.224.211/32\",\r\n \"13.88.224.222/32\",\r\n \"13.88.226.74/32\",\r\n
+ \ \"13.88.227.7/32\",\r\n \"13.89.178.0/28\",\r\n \"13.91.61.249/32\",\r\n
+ \ \"13.91.91.243/32\",\r\n \"13.91.98.185/32\",\r\n \"13.93.32.114/32\",\r\n
+ \ \"13.93.113.192/32\",\r\n \"13.93.196.52/32\",\r\n \"13.93.216.68/32\",\r\n
+ \ \"13.93.233.42/32\",\r\n \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n
+ \ \"13.95.30.46/32\",\r\n \"20.36.220.93/32\",\r\n \"20.36.222.59/32\",\r\n
+ \ \"20.36.222.60/32\",\r\n \"20.36.240.76/32\",\r\n \"20.36.244.208/32\",\r\n
+ \ \"20.36.245.0/32\",\r\n \"20.36.245.182/32\",\r\n \"20.36.245.235/32\",\r\n
+ \ \"20.36.246.188/32\",\r\n \"20.36.248.40/32\",\r\n \"20.40.106.50/31\",\r\n
+ \ \"20.40.107.84/32\",\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"20.40.160.184/32\",\r\n \"20.40.161.119/32\",\r\n
+ \ \"20.40.161.131/32\",\r\n \"20.40.161.132/32\",\r\n \"20.40.161.135/32\",\r\n
+ \ \"20.40.161.140/30\",\r\n \"20.40.161.160/31\",\r\n \"20.40.162.86/32\",\r\n
+ \ \"20.40.162.200/32\",\r\n \"20.40.163.88/32\",\r\n \"20.40.163.96/31\",\r\n
+ \ \"20.40.163.130/32\",\r\n \"20.40.163.133/32\",\r\n \"20.40.163.178/31\",\r\n
+ \ \"20.42.29.162/32\",\r\n \"20.42.31.48/32\",\r\n \"20.42.31.251/32\",\r\n
+ \ \"20.44.8.208/28\",\r\n \"20.44.17.64/28\",\r\n \"20.44.72.173/32\",\r\n
+ \ \"20.44.72.217/32\",\r\n \"20.44.73.253/32\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.184.57.4/32\",\r\n \"20.184.57.218/32\",\r\n \"20.184.58.46/32\",\r\n
+ \ \"20.184.58.110/32\",\r\n \"20.184.60.77/32\",\r\n \"20.184.61.67/32\",\r\n
+ \ \"20.184.61.253/32\",\r\n \"20.184.63.158/32\",\r\n \"20.184.63.216/32\",\r\n
+ \ \"20.184.63.232/32\",\r\n \"20.188.72.248/32\",\r\n \"23.97.54.160/32\",\r\n
+ \ \"23.97.55.165/32\",\r\n \"23.98.83.96/28\",\r\n \"23.100.67.153/32\",\r\n
+ \ \"40.65.169.46/32\",\r\n \"40.65.169.97/32\",\r\n \"40.65.169.196/32\",\r\n
+ \ \"40.65.169.236/32\",\r\n \"40.65.170.17/32\",\r\n \"40.65.170.26/32\",\r\n
+ \ \"40.65.170.80/30\",\r\n \"40.65.170.112/31\",\r\n \"40.65.170.123/32\",\r\n
+ \ \"40.65.170.125/32\",\r\n \"40.65.170.128/32\",\r\n \"40.65.170.133/32\",\r\n
+ \ \"40.65.170.137/32\",\r\n \"40.65.233.253/32\",\r\n \"40.65.235.54/32\",\r\n
+ \ \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n \"40.66.57.203/32\",\r\n
+ \ \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n \"40.66.59.195/32\",\r\n
+ \ \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n \"40.66.60.101/32\",\r\n
+ \ \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n \"40.66.60.185/32\",\r\n
+ \ \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n \"40.66.60.208/31\",\r\n
+ \ \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n \"40.66.60.216/31\",\r\n
+ \ \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n \"40.66.60.222/32\",\r\n
+ \ \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n \"40.66.60.232/32\",\r\n
+ \ \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n \"40.66.61.193/32\",\r\n
+ \ \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n \"40.66.62.9/32\",\r\n
+ \ \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n \"40.66.62.154/32\",\r\n
+ \ \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n \"40.66.63.255/32\",\r\n
+ \ \"40.67.152.91/32\",\r\n \"40.67.152.227/32\",\r\n \"40.67.154.160/32\",\r\n
+ \ \"40.67.155.146/32\",\r\n \"40.67.159.55/32\",\r\n \"40.67.216.253/32\",\r\n
+ \ \"40.67.219.133/32\",\r\n \"40.67.251.0/32\",\r\n \"40.67.254.233/32\",\r\n
+ \ \"40.68.245.184/32\",\r\n \"40.69.108.96/27\",\r\n \"40.70.0.255/32\",\r\n
+ \ \"40.70.29.49/32\",\r\n \"40.70.29.200/32\",\r\n \"40.70.148.112/28\",\r\n
+ \ \"40.70.184.90/32\",\r\n \"40.71.14.16/28\",\r\n \"40.74.1.235/32\",\r\n
+ \ \"40.74.6.204/32\",\r\n \"40.76.78.217/32\",\r\n \"40.78.23.204/32\",\r\n
+ \ \"40.78.56.129/32\",\r\n \"40.78.229.64/28\",\r\n \"40.78.236.160/28\",\r\n
+ \ \"40.78.245.0/28\",\r\n \"40.78.251.128/28\",\r\n \"40.79.132.96/28\",\r\n
+ \ \"40.79.139.16/28\",\r\n \"40.79.146.224/28\",\r\n \"40.79.156.112/28\",\r\n
+ \ \"40.79.180.64/27\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.81.56.80/32\",\r\n \"40.81.57.138/32\",\r\n
+ \ \"40.81.57.141/32\",\r\n \"40.81.57.144/32\",\r\n \"40.81.57.157/32\",\r\n
+ \ \"40.81.57.164/32\",\r\n \"40.81.57.169/32\",\r\n \"40.81.58.180/32\",\r\n
+ \ \"40.81.58.184/32\",\r\n \"40.81.58.193/32\",\r\n \"40.81.59.4/32\",\r\n
+ \ \"40.81.59.90/32\",\r\n \"40.81.59.93/32\",\r\n \"40.81.62.162/32\",\r\n
+ \ \"40.81.62.179/32\",\r\n \"40.81.62.193/32\",\r\n \"40.81.62.199/32\",\r\n
+ \ \"40.81.62.206/32\",\r\n \"40.81.62.209/32\",\r\n \"40.81.62.212/32\",\r\n
+ \ \"40.81.62.220/30\",\r\n \"40.81.62.224/32\",\r\n \"40.81.62.255/32\",\r\n
+ \ \"40.81.63.1/32\",\r\n \"40.81.63.2/32\",\r\n \"40.81.63.4/31\",\r\n
+ \ \"40.81.63.7/32\",\r\n \"40.81.63.8/32\",\r\n \"40.81.63.235/32\",\r\n
+ \ \"40.81.63.245/32\",\r\n \"40.81.63.248/32\",\r\n \"40.81.120.13/32\",\r\n
+ \ \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n \"40.81.120.187/32\",\r\n
+ \ \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n \"40.81.121.66/32\",\r\n
+ \ \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n \"40.81.121.107/32\",\r\n
+ \ \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n \"40.81.121.127/32\",\r\n
+ \ \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n \"40.81.121.175/32\",\r\n
+ \ \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n \"40.81.122.76/32\",\r\n
+ \ \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n \"40.81.123.157/32\",\r\n
+ \ \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n \"40.81.127.25/32\",\r\n
+ \ \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n \"40.81.127.229/32\",\r\n
+ \ \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n \"40.81.152.126/32\",\r\n
+ \ \"40.81.152.171/32\",\r\n \"40.81.152.172/32\",\r\n \"40.81.156.153/32\",\r\n
+ \ \"40.81.156.154/31\",\r\n \"40.81.156.156/32\",\r\n \"40.81.159.35/32\",\r\n
+ \ \"40.81.159.77/32\",\r\n \"40.82.184.80/32\",\r\n \"40.82.185.36/32\",\r\n
+ \ \"40.82.185.117/32\",\r\n \"40.82.185.229/32\",\r\n \"40.82.186.166/32\",\r\n
+ \ \"40.82.186.168/31\",\r\n \"40.82.186.176/31\",\r\n \"40.82.186.180/32\",\r\n
+ \ \"40.82.186.182/32\",\r\n \"40.82.186.185/32\",\r\n \"40.82.186.214/32\",\r\n
+ \ \"40.82.186.231/32\",\r\n \"40.82.187.161/32\",\r\n \"40.82.187.162/31\",\r\n
+ \ \"40.82.187.164/32\",\r\n \"40.82.187.177/32\",\r\n \"40.82.187.178/31\",\r\n
+ \ \"40.82.187.199/32\",\r\n \"40.82.187.200/32\",\r\n \"40.82.187.202/32\",\r\n
+ \ \"40.82.187.204/30\",\r\n \"40.82.187.208/30\",\r\n \"40.82.187.212/31\",\r\n
+ \ \"40.82.187.218/32\",\r\n \"40.82.187.223/32\",\r\n \"40.82.190.163/32\",\r\n
+ \ \"40.82.191.58/32\",\r\n \"40.84.2.83/32\",\r\n \"40.84.4.93/32\",\r\n
+ \ \"40.84.4.119/32\",\r\n \"40.84.5.28/32\",\r\n \"40.84.49.16/32\",\r\n
+ \ \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n \"40.89.142.184/32\",\r\n
+ \ \"40.89.143.43/32\",\r\n \"40.90.184.197/32\",\r\n \"40.90.185.64/32\",\r\n
+ \ \"40.90.191.153/32\",\r\n \"40.90.218.196/31\",\r\n \"40.90.218.198/32\",\r\n
+ \ \"40.90.218.203/32\",\r\n \"40.90.219.121/32\",\r\n \"40.90.219.184/32\",\r\n
+ \ \"40.90.220.37/32\",\r\n \"40.90.220.190/32\",\r\n \"40.90.220.196/32\",\r\n
+ \ \"40.90.222.64/32\",\r\n \"40.91.74.37/32\",\r\n \"40.91.78.105/32\",\r\n
+ \ \"40.91.114.40/29\",\r\n \"40.91.114.48/31\",\r\n \"40.91.122.25/32\",\r\n
+ \ \"40.91.122.38/32\",\r\n \"40.91.126.157/32\",\r\n \"40.91.127.44/32\",\r\n
+ \ \"40.91.198.19/32\",\r\n \"40.113.121.176/32\",\r\n \"40.114.112.147/32\",\r\n
+ \ \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n \"40.115.25.50/32\",\r\n
+ \ \"40.115.71.111/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.118.211.172/32\",\r\n \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n
+ \ \"40.119.154.72/32\",\r\n \"40.119.203.98/31\",\r\n \"40.119.203.158/31\",\r\n
+ \ \"40.119.203.208/31\",\r\n \"40.119.207.131/32\",\r\n \"40.119.207.144/32\",\r\n
+ \ \"40.119.207.164/32\",\r\n \"40.119.207.166/32\",\r\n \"40.119.207.174/32\",\r\n
+ \ \"40.119.207.182/32\",\r\n \"40.119.207.193/32\",\r\n \"40.119.207.200/32\",\r\n
+ \ \"40.119.215.167/32\",\r\n \"40.121.134.1/32\",\r\n \"40.124.53.69/32\",\r\n
+ \ \"51.11.26.92/32\",\r\n \"51.11.26.95/32\",\r\n \"51.104.9.16/28\",\r\n
+ \ \"51.105.37.244/32\",\r\n \"51.105.67.224/28\",\r\n \"51.105.75.176/28\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.1.10/32\",\r\n
+ \ \"51.140.8.108/32\",\r\n \"51.140.8.180/32\",\r\n \"51.140.35.95/32\",\r\n
+ \ \"51.140.52.106/32\",\r\n \"51.140.78.213/32\",\r\n \"51.140.105.124/32\",\r\n
+ \ \"51.140.125.227/32\",\r\n \"51.140.164.179/32\",\r\n \"51.140.191.146/32\",\r\n
+ \ \"51.140.212.128/27\",\r\n \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n
+ \ \"51.141.2.189/32\",\r\n \"51.141.7.11/32\",\r\n \"51.143.58.207/32\",\r\n
+ \ \"51.143.111.58/32\",\r\n \"51.143.120.236/32\",\r\n \"51.143.120.242/32\",\r\n
+ \ \"51.143.122.59/32\",\r\n \"51.143.122.60/32\",\r\n \"51.144.56.60/32\",\r\n
+ \ \"51.145.108.227/32\",\r\n \"51.145.108.250/32\",\r\n \"51.145.181.195/32\",\r\n
+ \ \"51.145.181.214/32\",\r\n \"52.137.56.200/32\",\r\n \"52.137.89.147/32\",\r\n
+ \ \"52.138.227.160/28\",\r\n \"52.139.1.70/32\",\r\n \"52.139.1.156/32\",\r\n
+ \ \"52.139.1.158/31\",\r\n \"52.139.1.200/32\",\r\n \"52.139.1.218/32\",\r\n
+ \ \"52.139.2.0/32\",\r\n \"52.139.16.105/32\",\r\n \"52.139.18.234/32\",\r\n
+ \ \"52.139.18.236/32\",\r\n \"52.139.19.71/32\",\r\n \"52.139.19.187/32\",\r\n
+ \ \"52.139.19.215/32\",\r\n \"52.139.19.247/32\",\r\n \"52.139.20.31/32\",\r\n
+ \ \"52.139.20.118/32\",\r\n \"52.139.21.70/32\",\r\n \"52.139.245.1/32\",\r\n
+ \ \"52.139.245.21/32\",\r\n \"52.139.245.40/32\",\r\n \"52.139.245.48/32\",\r\n
+ \ \"52.139.251.219/32\",\r\n \"52.139.252.105/32\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.143.73.88/32\",\r\n \"52.143.74.31/32\",\r\n \"52.148.115.188/32\",\r\n
+ \ \"52.148.115.194/32\",\r\n \"52.148.115.238/32\",\r\n \"52.148.116.37/32\",\r\n
+ \ \"52.148.161.45/32\",\r\n \"52.148.161.53/32\",\r\n \"52.151.237.243/32\",\r\n
+ \ \"52.151.238.5/32\",\r\n \"52.151.244.65/32\",\r\n \"52.151.247.27/32\",\r\n
+ \ \"52.153.240.107/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.157.19.228/32\",\r\n \"52.157.20.142/32\",\r\n \"52.157.218.219/32\",\r\n
+ \ \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n \"52.157.232.147/32\",\r\n
+ \ \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n \"52.157.233.133/32\",\r\n
+ \ \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n \"52.157.234.222/32\",\r\n
+ \ \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n \"52.157.236.195/32\",\r\n
+ \ \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n \"52.157.237.255/32\",\r\n
+ \ \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n \"52.157.239.132/32\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.167.107.96/28\",\r\n \"52.169.192.237/32\",\r\n
+ \ \"52.174.56.180/32\",\r\n \"52.177.85.43/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.179.155.177/32\",\r\n \"52.179.194.73/32\",\r\n
+ \ \"52.179.198.41/32\",\r\n \"52.182.139.208/28\",\r\n \"52.183.24.254/32\",\r\n
+ \ \"52.183.30.204/32\",\r\n \"52.183.75.62/32\",\r\n \"52.184.165.82/32\",\r\n
+ \ \"52.188.217.236/32\",\r\n \"52.189.208.36/32\",\r\n \"52.189.213.36/32\",\r\n
+ \ \"52.189.213.124/32\",\r\n \"52.189.218.253/32\",\r\n \"52.190.26.220/32\",\r\n
+ \ \"52.190.31.62/32\",\r\n \"52.191.129.65/32\",\r\n \"52.191.237.188/32\",\r\n
+ \ \"52.191.238.65/32\",\r\n \"52.224.188.157/32\",\r\n \"52.224.188.168/32\",\r\n
+ \ \"52.224.190.225/32\",\r\n \"52.224.191.62/32\",\r\n \"52.224.201.216/32\",\r\n
+ \ \"52.224.201.223/32\",\r\n \"52.224.202.86/32\",\r\n \"52.224.202.91/32\",\r\n
+ \ \"52.225.225.218/32\",\r\n \"52.225.231.232/32\",\r\n \"52.232.224.227/32\",\r\n
+ \ \"52.232.225.84/32\",\r\n \"52.232.228.217/32\",\r\n \"52.232.245.96/32\",\r\n
+ \ \"52.236.187.80/28\",\r\n \"52.249.25.160/32\",\r\n \"52.249.25.165/32\",\r\n
+ \ \"65.52.138.123/32\",\r\n \"65.52.229.200/32\",\r\n \"104.40.28.202/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.42.15.41/32\",\r\n \"104.42.34.58/32\",\r\n
+ \ \"104.42.38.254/32\",\r\n \"104.42.54.24/32\",\r\n \"104.42.75.120/32\",\r\n
+ \ \"104.42.211.215/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.45.168.103/32\",\r\n \"104.45.168.104/32\",\r\n \"104.45.168.106/32\",\r\n
+ \ \"104.45.168.108/32\",\r\n \"104.45.168.111/32\",\r\n \"104.45.168.114/32\",\r\n
+ \ \"104.45.170.70/32\",\r\n \"104.45.170.127/32\",\r\n \"104.45.170.161/32\",\r\n
+ \ \"104.45.170.173/32\",\r\n \"104.45.170.174/31\",\r\n \"104.45.170.176/32\",\r\n
+ \ \"104.45.170.178/32\",\r\n \"104.45.170.180/32\",\r\n \"104.45.170.182/31\",\r\n
+ \ \"104.45.170.184/31\",\r\n \"104.45.170.186/32\",\r\n \"104.45.170.188/32\",\r\n
+ \ \"104.45.170.191/32\",\r\n \"104.45.170.194/32\",\r\n \"104.45.170.196/32\",\r\n
+ \ \"104.46.116.211/32\",\r\n \"104.46.121.72/32\",\r\n \"104.46.122.189/32\",\r\n
+ \ \"104.208.216.221/32\",\r\n \"104.209.35.177/32\",\r\n
+ \ \"104.209.168.251/32\",\r\n \"104.210.0.32/32\",\r\n \"104.211.9.226/32\",\r\n
+ \ \"104.214.225.33/32\",\r\n \"137.116.52.31/32\",\r\n \"138.91.147.71/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.96/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.128/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n
+ \ \"40.66.57.203/32\",\r\n \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n
+ \ \"40.66.59.195/32\",\r\n \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n
+ \ \"40.66.60.101/32\",\r\n \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n
+ \ \"40.66.60.185/32\",\r\n \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n
+ \ \"40.66.60.208/31\",\r\n \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n
+ \ \"40.66.60.216/31\",\r\n \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n
+ \ \"40.66.60.222/32\",\r\n \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n
+ \ \"40.66.60.232/32\",\r\n \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n
+ \ \"40.66.61.193/32\",\r\n \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n
+ \ \"40.66.62.9/32\",\r\n \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n
+ \ \"40.66.62.154/32\",\r\n \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n
+ \ \"40.66.63.255/32\",\r\n \"40.79.132.96/28\",\r\n \"40.79.139.16/28\",\r\n
+ \ \"40.79.146.224/28\",\r\n \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n
+ \ \"40.89.142.184/32\",\r\n \"40.89.143.43/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"40.67.251.0/32\",\r\n
+ \ \"40.67.254.233/32\",\r\n \"52.138.227.160/28\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.169.192.237/32\",\r\n \"65.52.229.200/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.242.224/27\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.188.72.248/32\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.124.53.69/32\",\r\n \"52.153.240.107/32\",\r\n
+ \ \"52.249.25.160/32\",\r\n \"52.249.25.165/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.106.50/31\",\r\n \"20.40.107.84/32\",\r\n
+ \ \"40.81.120.13/32\",\r\n \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n
+ \ \"40.81.120.187/32\",\r\n \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n
+ \ \"40.81.121.66/32\",\r\n \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n
+ \ \"40.81.121.107/32\",\r\n \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n
+ \ \"40.81.121.127/32\",\r\n \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n
+ \ \"40.81.121.175/32\",\r\n \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n
+ \ \"40.81.122.76/32\",\r\n \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n
+ \ \"40.81.123.157/32\",\r\n \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n
+ \ \"40.81.127.25/32\",\r\n \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n
+ \ \"40.81.127.229/32\",\r\n \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.212.128/27\",\r\n
+ \ \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n \"51.141.2.189/32\",\r\n
+ \ \"51.141.7.11/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.96/28\",\r\n
+ \ \"13.69.107.96/28\",\r\n \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n
+ \ \"13.80.125.22/32\",\r\n \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n
+ \ \"13.81.212.71/32\",\r\n \"13.93.32.114/32\",\r\n \"13.93.113.192/32\",\r\n
+ \ \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n \"13.95.30.46/32\",\r\n
+ \ \"40.67.216.253/32\",\r\n \"40.67.219.133/32\",\r\n \"40.68.245.184/32\",\r\n
+ \ \"40.74.1.235/32\",\r\n \"40.74.6.204/32\",\r\n \"40.91.198.19/32\",\r\n
+ \ \"40.113.121.176/32\",\r\n \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n
+ \ \"40.115.25.50/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n \"40.119.154.72/32\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.144.56.60/32\",\r\n \"51.145.181.195/32\",\r\n \"51.145.181.214/32\",\r\n
+ \ \"52.137.56.200/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.157.218.219/32\",\r\n \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n
+ \ \"52.157.232.147/32\",\r\n \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n
+ \ \"52.157.233.133/32\",\r\n \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n
+ \ \"52.157.234.222/32\",\r\n \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n
+ \ \"52.157.236.195/32\",\r\n \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n
+ \ \"52.157.237.255/32\",\r\n \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n
+ \ \"52.157.239.132/32\",\r\n \"52.174.56.180/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.236.187.80/28\",\r\n \"65.52.138.123/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.214.225.33/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftContainerRegistry\",\r\n \"id\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n \"13.67.8.112/29\",\r\n
+ \ \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"13.69.227.80/29\",\r\n
+ \ \"13.70.72.128/29\",\r\n \"13.71.170.48/29\",\r\n \"13.71.194.120/29\",\r\n
+ \ \"13.74.107.72/29\",\r\n \"13.75.34.152/29\",\r\n \"13.77.50.72/29\",\r\n
+ \ \"13.78.106.192/29\",\r\n \"13.87.56.88/29\",\r\n \"13.87.122.88/29\",\r\n
+ \ \"13.89.170.208/29\",\r\n \"20.37.74.64/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"20.44.2.16/29\",\r\n \"20.44.26.136/29\",\r\n \"20.45.122.136/29\",\r\n
+ \ \"20.49.82.8/29\",\r\n \"20.49.90.8/29\",\r\n \"20.72.26.8/29\",\r\n
+ \ \"20.150.170.16/29\",\r\n \"20.150.178.136/29\",\r\n \"20.150.186.136/29\",\r\n
+ \ \"20.192.98.136/29\",\r\n \"20.192.234.16/29\",\r\n \"20.193.202.8/29\",\r\n
+ \ \"20.194.66.8/29\",\r\n \"23.98.82.104/29\",\r\n \"40.67.58.16/29\",\r\n
+ \ \"40.69.106.72/29\",\r\n \"40.70.146.80/29\",\r\n \"40.71.10.208/29\",\r\n
+ \ \"40.74.100.56/29\",\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n
+ \ \"40.78.194.72/29\",\r\n \"40.78.202.64/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.78.234.40/29\",\r\n \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n
+ \ \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n \"40.79.146.24/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"40.79.162.24/29\",\r\n \"40.79.170.8/29\",\r\n
+ \ \"40.79.178.72/29\",\r\n \"40.79.186.0/29\",\r\n \"40.79.194.88/29\",\r\n
+ \ \"40.80.50.136/29\",\r\n \"40.112.242.152/29\",\r\n \"40.120.74.8/29\",\r\n
+ \ \"51.12.98.16/29\",\r\n \"51.12.202.16/29\",\r\n \"51.12.226.136/29\",\r\n
+ \ \"51.12.234.136/29\",\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.107.58.16/29\",\r\n \"51.107.154.16/29\",\r\n \"51.116.58.16/29\",\r\n
+ \ \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n \"51.116.250.136/29\",\r\n
+ \ \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n \"51.120.210.136/29\",\r\n
+ \ \"51.120.218.16/29\",\r\n \"51.140.146.192/29\",\r\n \"51.140.210.88/29\",\r\n
+ \ \"52.138.90.24/29\",\r\n \"52.138.226.72/29\",\r\n \"52.162.106.152/29\",\r\n
+ \ \"52.167.106.72/29\",\r\n \"52.182.138.200/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"52.231.146.88/29\",\r\n \"52.236.186.72/29\",\r\n \"52.246.154.136/29\",\r\n
+ \ \"65.52.250.8/29\",\r\n \"102.133.26.16/29\",\r\n \"102.133.122.136/29\",\r\n
+ \ \"102.133.154.16/29\",\r\n \"102.133.250.136/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"104.208.144.72/29\",\r\n \"104.211.81.128/29\",\r\n
+ \ \"104.211.146.72/29\",\r\n \"104.214.18.176/29\",\r\n \"191.233.50.8/29\",\r\n
+ \ \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1000:4:402::88/125\",\r\n
+ \ \"2603:1000:104:402::88/125\",\r\n \"2603:1000:104:802::88/125\",\r\n
+ \ \"2603:1000:104:c02::88/125\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\",\r\n
+ \ \"2603:1010:101:402::88/125\",\r\n \"2603:1010:304:402::88/125\",\r\n
+ \ \"2603:1010:404:402::88/125\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\",\r\n \"2603:1020:305:402::88/125\",\r\n
+ \ \"2603:1020:405:402::88/125\",\r\n \"2603:1020:605:402::88/125\",\r\n
+ \ \"2603:1020:705:402::88/125\",\r\n \"2603:1020:705:802::88/125\",\r\n
+ \ \"2603:1020:705:c02::88/125\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\",\r\n
+ \ \"2603:1020:905:402::88/125\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\",\r\n
+ \ \"2603:1020:b04:402::88/125\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\",\r\n
+ \ \"2603:1020:d04:402::88/125\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\",\r\n
+ \ \"2603:1020:f04:402::88/125\",\r\n \"2603:1020:1004:400::88/125\",\r\n
+ \ \"2603:1020:1004:400::3b0/125\",\r\n \"2603:1020:1004:800::148/125\",\r\n
+ \ \"2603:1020:1104:400::88/125\",\r\n \"2603:1030:f:400::888/125\",\r\n
+ \ \"2603:1030:10:402::88/125\",\r\n \"2603:1030:10:802::88/125\",\r\n
+ \ \"2603:1030:10:c02::88/125\",\r\n \"2603:1030:104:402::88/125\",\r\n
+ \ \"2603:1030:107:400::8/125\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\",\r\n
+ \ \"2603:1030:504:402::88/125\",\r\n \"2603:1030:504:402::3b0/125\",\r\n
+ \ \"2603:1030:504:802::148/125\",\r\n \"2603:1030:504:802::3e8/125\",\r\n
+ \ \"2603:1030:608:402::88/125\",\r\n \"2603:1030:807:402::88/125\",\r\n
+ \ \"2603:1030:807:802::88/125\",\r\n \"2603:1030:807:c02::88/125\",\r\n
+ \ \"2603:1030:a07:402::88/125\",\r\n \"2603:1030:b04:402::88/125\",\r\n
+ \ \"2603:1030:c06:400::888/125\",\r\n \"2603:1030:c06:802::88/125\",\r\n
+ \ \"2603:1030:c06:c02::88/125\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\",\r\n
+ \ \"2603:1030:1005:402::88/125\",\r\n \"2603:1040:5:402::88/125\",\r\n
+ \ \"2603:1040:5:802::88/125\",\r\n \"2603:1040:5:c02::88/125\",\r\n
+ \ \"2603:1040:207:402::88/125\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\",\r\n
+ \ \"2603:1040:606:402::88/125\",\r\n \"2603:1040:806:402::88/125\",\r\n
+ \ \"2603:1040:904:402::88/125\",\r\n \"2603:1040:904:802::88/125\",\r\n
+ \ \"2603:1040:904:c02::88/125\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\",\r\n
+ \ \"2603:1040:b04:402::88/125\",\r\n \"2603:1040:c06:402::88/125\",\r\n
+ \ \"2603:1040:d04:400::88/125\",\r\n \"2603:1040:d04:400::3b0/125\",\r\n
+ \ \"2603:1040:d04:800::148/125\",\r\n \"2603:1040:f05:402::88/125\",\r\n
+ \ \"2603:1040:f05:802::88/125\",\r\n \"2603:1040:f05:c02::88/125\",\r\n
+ \ \"2603:1040:1104:400::88/125\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\",\r\n
+ \ \"2603:1050:403:400::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.128/29\",\r\n \"40.79.162.24/29\",\r\n
+ \ \"40.79.170.8/29\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.72/29\",\r\n \"2603:1010:101:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.48/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"52.246.154.136/29\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.72/29\",\r\n \"2603:1030:1005:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.192.98.136/29\",\r\n \"40.80.50.136/29\",\r\n
+ \ \"104.211.81.128/29\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.208/29\",\r\n \"52.182.138.200/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"2603:1030:10:402::88/125\",\r\n
+ \ \"2603:1030:10:802::88/125\",\r\n \"2603:1030:10:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.64/29\",\r\n \"2603:1030:f:400::888/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.152/29\",\r\n \"2603:1040:207:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.71.10.208/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.70.146.80/29\",\r\n \"52.167.106.72/29\",\r\n
+ \ \"104.208.144.72/29\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n \"52.138.90.24/29\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n
+ \ \"40.79.146.24/29\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.72/29\",\r\n \"2603:1020:905:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.16/29\",\r\n \"2603:1020:d04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n
+ \ \"51.116.250.136/29\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.192/29\",\r\n \"40.79.186.0/29\",\r\n
+ \ \"40.79.194.88/29\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.56/29\",\r\n \"2603:1040:606:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.136/29\",\r\n \"20.194.66.8/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"2603:1040:f05:402::88/125\",\r\n \"2603:1040:f05:802::88/125\",\r\n
+ \ \"2603:1040:f05:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.88/29\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.152/29\",\r\n \"2603:1030:608:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.80/29\",\r\n \"13.74.107.72/29\",\r\n
+ \ \"52.138.226.72/29\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n
+ \ \"51.120.210.136/29\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.16/29\",\r\n \"2603:1020:f04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.136/29\",\r\n \"102.133.154.16/29\",\r\n
+ \ \"102.133.250.136/29\",\r\n \"2603:1000:104:402::88/125\",\r\n
+ \ \"2603:1000:104:802::88/125\",\r\n \"2603:1000:104:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.16/29\",\r\n \"2603:1000:4:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.122.136/29\",\r\n \"20.49.90.8/29\",\r\n \"104.214.18.176/29\",\r\n
+ \ \"2603:1030:807:402::88/125\",\r\n \"2603:1030:807:802::88/125\",\r\n
+ \ \"2603:1030:807:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.112/29\",\r\n \"23.98.82.104/29\",\r\n \"40.78.234.40/29\",\r\n
+ \ \"2603:1040:5:402::88/125\",\r\n \"2603:1040:5:802::88/125\",\r\n
+ \ \"2603:1040:5:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.72/29\",\r\n \"2603:1040:c06:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.16/29\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.16/29\",\r\n \"2603:1020:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.64/29\",\r\n \"2603:1040:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.8/29\",\r\n \"65.52.250.8/29\",\r\n \"2603:1040:904:402::88/125\",\r\n
+ \ \"2603:1040:904:802::88/125\",\r\n \"2603:1040:904:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.140.146.192/29\",\r\n \"2603:1020:705:402::88/125\",\r\n
+ \ \"2603:1020:705:802::88/125\",\r\n \"2603:1020:705:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.56.88/29\",\r\n \"2603:1020:405:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.88/29\",\r\n \"2603:1020:605:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.194.120/29\",\r\n \"2603:1030:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"52.236.186.72/29\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"104.211.146.72/29\",\r\n
+ \ \"2603:1040:806:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.112.242.152/29\",\r\n
+ \ \"2603:1030:a07:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS2\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n
+ \ \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n \"2603:1030:c06:400::888/125\",\r\n
+ \ \"2603:1030:c06:802::88/125\",\r\n \"2603:1030:c06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerBI\",\r\n
+ \ \"id\": \"PowerBI\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerBI\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.4/31\",\r\n \"13.73.248.48/28\",\r\n \"13.73.248.64/27\",\r\n
+ \ \"20.36.120.122/31\",\r\n \"20.36.120.124/30\",\r\n \"20.36.120.208/29\",\r\n
+ \ \"20.37.64.122/31\",\r\n \"20.37.64.124/30\",\r\n \"20.37.64.208/29\",\r\n
+ \ \"20.37.156.200/30\",\r\n \"20.37.156.240/28\",\r\n \"20.37.157.0/29\",\r\n
+ \ \"20.37.157.16/28\",\r\n \"20.37.157.32/27\",\r\n \"20.37.195.24/31\",\r\n
+ \ \"20.37.195.48/29\",\r\n \"20.37.195.64/28\",\r\n \"20.37.195.128/26\",\r\n
+ \ \"20.37.224.122/31\",\r\n \"20.37.224.124/30\",\r\n \"20.37.224.208/29\",\r\n
+ \ \"20.38.84.104/31\",\r\n \"20.38.84.128/25\",\r\n \"20.38.85.0/25\",\r\n
+ \ \"20.38.86.0/24\",\r\n \"20.38.136.70/31\",\r\n \"20.38.136.208/30\",\r\n
+ \ \"20.38.136.216/29\",\r\n \"20.39.11.26/31\",\r\n \"20.39.11.28/30\",\r\n
+ \ \"20.39.11.48/28\",\r\n \"20.41.4.104/31\",\r\n \"20.41.4.108/30\",\r\n
+ \ \"20.41.4.208/28\",\r\n \"20.41.4.224/27\",\r\n \"20.41.5.0/25\",\r\n
+ \ \"20.41.65.146/31\",\r\n \"20.41.65.148/30\",\r\n \"20.41.65.152/29\",\r\n
+ \ \"20.41.192.122/31\",\r\n \"20.41.192.124/30\",\r\n \"20.41.193.144/29\",\r\n
+ \ \"20.42.0.70/31\",\r\n \"20.42.4.240/29\",\r\n \"20.42.6.0/27\",\r\n
+ \ \"20.42.6.64/26\",\r\n \"20.42.131.32/31\",\r\n \"20.42.131.40/29\",\r\n
+ \ \"20.42.131.48/29\",\r\n \"20.42.131.128/26\",\r\n \"20.42.224.122/31\",\r\n
+ \ \"20.42.227.16/28\",\r\n \"20.42.227.32/29\",\r\n \"20.42.227.64/26\",\r\n
+ \ \"20.43.41.176/31\",\r\n \"20.43.41.184/29\",\r\n \"20.43.41.192/26\",\r\n
+ \ \"20.43.65.152/31\",\r\n \"20.43.65.176/29\",\r\n \"20.43.65.192/28\",\r\n
+ \ \"20.43.65.224/27\",\r\n \"20.43.130.192/31\",\r\n \"20.43.130.196/30\",\r\n
+ \ \"20.43.130.200/29\",\r\n \"20.43.130.208/28\",\r\n \"20.43.130.224/28\",\r\n
+ \ \"20.43.131.0/27\",\r\n \"20.43.131.64/26\",\r\n \"20.45.192.122/31\",\r\n
+ \ \"20.45.192.124/31\",\r\n \"20.45.192.208/30\",\r\n \"20.45.192.216/29\",\r\n
+ \ \"20.45.192.224/28\",\r\n \"20.48.196.232/29\",\r\n \"20.50.0.0/24\",\r\n
+ \ \"20.51.21.160/30\",\r\n \"20.65.133.80/29\",\r\n \"20.72.16.22/31\",\r\n
+ \ \"20.72.16.44/30\",\r\n \"20.72.20.32/29\",\r\n \"20.150.160.110/31\",\r\n
+ \ \"20.150.160.124/30\",\r\n \"20.150.161.144/29\",\r\n \"20.189.104.70/31\",\r\n
+ \ \"20.189.106.224/27\",\r\n \"20.189.108.0/27\",\r\n \"20.192.160.22/31\",\r\n
+ \ \"20.192.161.112/30\",\r\n \"20.192.161.120/29\",\r\n \"20.192.225.34/31\",\r\n
+ \ \"20.192.225.36/30\",\r\n \"20.192.225.192/29\",\r\n \"40.74.24.70/31\",\r\n
+ \ \"40.74.30.128/29\",\r\n \"40.74.30.160/27\",\r\n \"40.74.30.192/26\",\r\n
+ \ \"40.74.31.0/26\",\r\n \"40.80.56.122/31\",\r\n \"40.80.57.144/29\",\r\n
+ \ \"40.80.57.160/28\",\r\n \"40.80.168.122/31\",\r\n \"40.80.168.124/30\",\r\n
+ \ \"40.80.169.144/29\",\r\n \"40.80.184.70/31\",\r\n \"40.80.188.48/28\",\r\n
+ \ \"40.80.188.64/27\",\r\n \"40.80.188.128/25\",\r\n \"40.80.189.0/24\",\r\n
+ \ \"40.82.248.68/31\",\r\n \"40.82.253.96/28\",\r\n \"40.82.253.128/26\",\r\n
+ \ \"40.82.254.0/25\",\r\n \"40.89.16.122/31\",\r\n \"40.89.17.144/28\",\r\n
+ \ \"40.89.17.160/27\",\r\n \"40.119.8.76/30\",\r\n \"40.119.11.64/26\",\r\n
+ \ \"51.12.17.16/30\",\r\n \"51.12.17.24/29\",\r\n \"51.12.25.8/29\",\r\n
+ \ \"51.12.46.230/31\",\r\n \"51.12.47.28/30\",\r\n \"51.12.198.210/31\",\r\n
+ \ \"51.104.25.140/31\",\r\n \"51.104.25.152/30\",\r\n \"51.104.25.176/28\",\r\n
+ \ \"51.104.25.192/29\",\r\n \"51.104.27.0/26\",\r\n \"51.105.88.122/31\",\r\n
+ \ \"51.105.88.124/30\",\r\n \"51.105.88.208/28\",\r\n \"51.107.48.124/31\",\r\n
+ \ \"51.107.48.208/30\",\r\n \"51.107.48.216/29\",\r\n \"51.107.144.122/31\",\r\n
+ \ \"51.107.144.124/30\",\r\n \"51.107.144.208/29\",\r\n \"51.116.48.68/31\",\r\n
+ \ \"51.116.48.128/30\",\r\n \"51.116.48.136/29\",\r\n \"51.116.144.68/31\",\r\n
+ \ \"51.116.144.128/30\",\r\n \"51.116.144.136/29\",\r\n \"51.116.149.232/29\",\r\n
+ \ \"51.120.40.124/31\",\r\n \"51.120.40.208/30\",\r\n \"51.120.40.216/29\",\r\n
+ \ \"51.120.224.122/31\",\r\n \"51.120.224.124/30\",\r\n \"51.120.224.208/29\",\r\n
+ \ \"51.137.160.70/31\",\r\n \"51.137.161.160/27\",\r\n \"51.137.161.192/27\",\r\n
+ \ \"52.136.48.120/31\",\r\n \"52.136.48.124/30\",\r\n \"52.136.48.208/29\",\r\n
+ \ \"52.136.48.224/28\",\r\n \"52.140.105.144/28\",\r\n \"52.140.105.160/28\",\r\n
+ \ \"52.150.139.76/31\",\r\n \"52.150.139.96/30\",\r\n \"52.150.139.112/28\",\r\n
+ \ \"52.150.139.128/28\",\r\n \"52.150.139.160/27\",\r\n \"52.228.81.160/31\",\r\n
+ \ \"52.228.81.168/29\",\r\n \"52.228.81.176/28\",\r\n \"52.228.81.192/27\",\r\n
+ \ \"102.37.160.160/29\",\r\n \"102.133.56.98/31\",\r\n \"102.133.56.100/30\",\r\n
+ \ \"102.133.56.104/29\",\r\n \"102.133.216.104/31\",\r\n
+ \ \"102.133.216.108/30\",\r\n \"102.133.217.64/29\",\r\n
+ \ \"191.233.8.22/31\",\r\n \"191.233.10.32/30\",\r\n \"191.233.10.40/29\",\r\n
+ \ \"191.235.225.152/31\",\r\n \"191.235.225.156/30\",\r\n
+ \ \"191.235.225.176/28\",\r\n \"191.235.225.192/28\",\r\n
+ \ \"191.235.225.224/27\",\r\n \"191.238.72.128/28\",\r\n
+ \ \"2603:1000:4::620/123\",\r\n \"2603:1000:4::640/122\",\r\n
+ \ \"2603:1000:104::100/122\",\r\n \"2603:1000:104::140/123\",\r\n
+ \ \"2603:1000:104::320/123\",\r\n \"2603:1000:104::340/122\",\r\n
+ \ \"2603:1000:104:1::5e0/123\",\r\n \"2603:1000:104:1::600/122\",\r\n
+ \ \"2603:1010:6::/122\",\r\n \"2603:1010:6::40/123\",\r\n
+ \ \"2603:1010:6:1::5e0/123\",\r\n \"2603:1010:6:1::600/122\",\r\n
+ \ \"2603:1010:101::620/123\",\r\n \"2603:1010:101::640/122\",\r\n
+ \ \"2603:1010:304::620/123\",\r\n \"2603:1010:304::640/122\",\r\n
+ \ \"2603:1010:404::620/123\",\r\n \"2603:1010:404::640/122\",\r\n
+ \ \"2603:1020:5::/122\",\r\n \"2603:1020:5::40/123\",\r\n
+ \ \"2603:1020:5:1::5e0/123\",\r\n \"2603:1020:5:1::600/122\",\r\n
+ \ \"2603:1020:206::/122\",\r\n \"2603:1020:206::40/123\",\r\n
+ \ \"2603:1020:206:1::5e0/123\",\r\n \"2603:1020:206:1::600/122\",\r\n
+ \ \"2603:1020:305::620/123\",\r\n \"2603:1020:305::640/122\",\r\n
+ \ \"2603:1020:405::620/123\",\r\n \"2603:1020:405::640/122\",\r\n
+ \ \"2603:1020:605::620/123\",\r\n \"2603:1020:605::640/122\",\r\n
+ \ \"2603:1020:705::/122\",\r\n \"2603:1020:705::40/123\",\r\n
+ \ \"2603:1020:705:1::5e0/123\",\r\n \"2603:1020:705:1::600/122\",\r\n
+ \ \"2603:1020:805::/122\",\r\n \"2603:1020:805::40/123\",\r\n
+ \ \"2603:1020:805:1::5e0/123\",\r\n \"2603:1020:805:1::600/122\",\r\n
+ \ \"2603:1020:905::620/123\",\r\n \"2603:1020:905::640/122\",\r\n
+ \ \"2603:1020:a04::/122\",\r\n \"2603:1020:a04::40/123\",\r\n
+ \ \"2603:1020:a04:1::5e0/123\",\r\n \"2603:1020:a04:1::600/122\",\r\n
+ \ \"2603:1020:b04::620/123\",\r\n \"2603:1020:b04::640/122\",\r\n
+ \ \"2603:1020:c04::/122\",\r\n \"2603:1020:c04::40/123\",\r\n
+ \ \"2603:1020:c04:1::5e0/123\",\r\n \"2603:1020:c04:1::600/122\",\r\n
+ \ \"2603:1020:d04::620/123\",\r\n \"2603:1020:d04::640/122\",\r\n
+ \ \"2603:1020:e04::/122\",\r\n \"2603:1020:e04::40/123\",\r\n
+ \ \"2603:1020:e04:1::5e0/123\",\r\n \"2603:1020:e04:1::600/122\",\r\n
+ \ \"2603:1020:f04::620/123\",\r\n \"2603:1020:f04::640/122\",\r\n
+ \ \"2603:1020:1004::5e0/123\",\r\n \"2603:1020:1004::600/122\",\r\n
+ \ \"2603:1020:1004:1::/122\",\r\n \"2603:1020:1004:1::40/123\",\r\n
+ \ \"2603:1020:1104::6a0/123\",\r\n \"2603:1020:1104::6c0/122\",\r\n
+ \ \"2603:1030:f:1::620/123\",\r\n \"2603:1030:f:1::640/122\",\r\n
+ \ \"2603:1030:10::/122\",\r\n \"2603:1030:10::40/123\",\r\n
+ \ \"2603:1030:10:1::5e0/123\",\r\n \"2603:1030:10:1::600/122\",\r\n
+ \ \"2603:1030:104::/122\",\r\n \"2603:1030:104::40/123\",\r\n
+ \ \"2603:1030:104:1::5e0/123\",\r\n \"2603:1030:104:1::600/122\",\r\n
+ \ \"2603:1030:107::6c0/122\",\r\n \"2603:1030:107::700/123\",\r\n
+ \ \"2603:1030:210::/122\",\r\n \"2603:1030:210::40/123\",\r\n
+ \ \"2603:1030:210:1::5e0/123\",\r\n \"2603:1030:210:1::600/122\",\r\n
+ \ \"2603:1030:40b:1::5e0/123\",\r\n \"2603:1030:40b:1::600/122\",\r\n
+ \ \"2603:1030:40c::/122\",\r\n \"2603:1030:40c::40/123\",\r\n
+ \ \"2603:1030:40c:1::5e0/123\",\r\n \"2603:1030:40c:1::600/122\",\r\n
+ \ \"2603:1030:504::/122\",\r\n \"2603:1030:504::40/123\",\r\n
+ \ \"2603:1030:504:1::5e0/123\",\r\n \"2603:1030:504:1::600/122\",\r\n
+ \ \"2603:1030:608::620/123\",\r\n \"2603:1030:608::640/122\",\r\n
+ \ \"2603:1030:807::/122\",\r\n \"2603:1030:807::40/123\",\r\n
+ \ \"2603:1030:807:1::5e0/123\",\r\n \"2603:1030:807:1::600/122\",\r\n
+ \ \"2603:1030:a07::620/123\",\r\n \"2603:1030:a07::640/122\",\r\n
+ \ \"2603:1030:b04::620/123\",\r\n \"2603:1030:b04::640/122\",\r\n
+ \ \"2603:1030:c06:1::5e0/123\",\r\n \"2603:1030:c06:1::600/122\",\r\n
+ \ \"2603:1030:f05::/122\",\r\n \"2603:1030:f05::40/123\",\r\n
+ \ \"2603:1030:f05:1::5e0/123\",\r\n \"2603:1030:f05:1::600/122\",\r\n
+ \ \"2603:1030:1005::620/123\",\r\n \"2603:1030:1005::640/122\",\r\n
+ \ \"2603:1040:5::100/122\",\r\n \"2603:1040:5::140/123\",\r\n
+ \ \"2603:1040:5:1::5e0/123\",\r\n \"2603:1040:5:1::600/122\",\r\n
+ \ \"2603:1040:207::620/123\",\r\n \"2603:1040:207::640/122\",\r\n
+ \ \"2603:1040:407::/122\",\r\n \"2603:1040:407::40/123\",\r\n
+ \ \"2603:1040:407:1::5e0/123\",\r\n \"2603:1040:407:1::600/122\",\r\n
+ \ \"2603:1040:606::620/123\",\r\n \"2603:1040:606::640/122\",\r\n
+ \ \"2603:1040:806::620/123\",\r\n \"2603:1040:806::640/122\",\r\n
+ \ \"2603:1040:904::/122\",\r\n \"2603:1040:904::40/123\",\r\n
+ \ \"2603:1040:904:1::5e0/123\",\r\n \"2603:1040:904:1::600/122\",\r\n
+ \ \"2603:1040:a06::100/122\",\r\n \"2603:1040:a06::140/123\",\r\n
+ \ \"2603:1040:a06:1::5e0/123\",\r\n \"2603:1040:a06:1::600/122\",\r\n
+ \ \"2603:1040:b04::620/123\",\r\n \"2603:1040:b04::640/122\",\r\n
+ \ \"2603:1040:c06::620/123\",\r\n \"2603:1040:c06::640/122\",\r\n
+ \ \"2603:1040:d04::5e0/123\",\r\n \"2603:1040:d04::600/122\",\r\n
+ \ \"2603:1040:d04:1::/122\",\r\n \"2603:1040:d04:1::40/123\",\r\n
+ \ \"2603:1040:f05::/122\",\r\n \"2603:1040:f05::40/123\",\r\n
+ \ \"2603:1040:f05:1::5e0/123\",\r\n \"2603:1040:f05:1::600/122\",\r\n
+ \ \"2603:1040:1104::6a0/123\",\r\n \"2603:1040:1104::6c0/122\",\r\n
+ \ \"2603:1050:6::/122\",\r\n \"2603:1050:6::40/123\",\r\n
+ \ \"2603:1050:6:1::5e0/123\",\r\n \"2603:1050:6:1::600/122\",\r\n
+ \ \"2603:1050:403::5e0/123\",\r\n \"2603:1050:403::600/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline\",\r\n
+ \ \"id\": \"PowerQueryOnline\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.120.120/31\",\r\n \"20.37.64.120/31\",\r\n
+ \ \"20.37.152.70/31\",\r\n \"20.37.192.70/31\",\r\n \"20.37.224.120/31\",\r\n
+ \ \"20.38.80.70/31\",\r\n \"20.38.136.68/31\",\r\n \"20.39.11.24/31\",\r\n
+ \ \"20.41.0.68/30\",\r\n \"20.41.64.70/31\",\r\n \"20.41.65.144/31\",\r\n
+ \ \"20.41.192.120/31\",\r\n \"20.42.4.200/30\",\r\n \"20.42.128.70/31\",\r\n
+ \ \"20.42.129.184/29\",\r\n \"20.42.224.120/31\",\r\n \"20.43.40.70/31\",\r\n
+ \ \"20.43.64.70/31\",\r\n \"20.43.128.70/31\",\r\n \"20.45.112.120/31\",\r\n
+ \ \"20.45.192.120/31\",\r\n \"20.72.16.20/31\",\r\n \"20.150.160.108/31\",\r\n
+ \ \"20.189.104.68/31\",\r\n \"20.192.160.20/31\",\r\n \"20.192.225.32/31\",\r\n
+ \ \"40.67.48.120/31\",\r\n \"40.74.30.104/30\",\r\n \"40.80.56.120/31\",\r\n
+ \ \"40.80.168.120/31\",\r\n \"40.80.184.68/31\",\r\n \"40.82.253.72/29\",\r\n
+ \ \"40.89.16.120/31\",\r\n \"40.119.8.74/31\",\r\n \"51.12.46.228/31\",\r\n
+ \ \"51.12.198.208/31\",\r\n \"51.104.24.70/31\",\r\n \"51.105.80.120/31\",\r\n
+ \ \"51.105.88.120/31\",\r\n \"51.107.48.70/31\",\r\n \"51.107.144.120/31\",\r\n
+ \ \"51.116.48.70/31\",\r\n \"51.116.144.70/31\",\r\n \"51.120.40.70/31\",\r\n
+ \ \"51.120.224.120/31\",\r\n \"51.137.160.68/31\",\r\n \"51.143.192.120/31\",\r\n
+ \ \"52.140.104.70/31\",\r\n \"52.150.139.72/30\",\r\n \"52.228.80.70/31\",\r\n
+ \ \"102.133.56.96/31\",\r\n \"102.133.216.70/31\",\r\n \"191.233.8.20/31\",\r\n
+ \ \"191.235.224.70/31\",\r\n \"2603:1000:4::200/123\",\r\n
+ \ \"2603:1000:104:1::200/123\",\r\n \"2603:1010:6:1::200/123\",\r\n
+ \ \"2603:1010:101::200/123\",\r\n \"2603:1010:304::200/123\",\r\n
+ \ \"2603:1010:404::200/123\",\r\n \"2603:1020:5:1::200/123\",\r\n
+ \ \"2603:1020:206:1::200/123\",\r\n \"2603:1020:305::200/123\",\r\n
+ \ \"2603:1020:405::200/123\",\r\n \"2603:1020:605::200/123\",\r\n
+ \ \"2603:1020:705:1::200/123\",\r\n \"2603:1020:805:1::200/123\",\r\n
+ \ \"2603:1020:905::200/123\",\r\n \"2603:1020:a04:1::200/123\",\r\n
+ \ \"2603:1020:b04::200/123\",\r\n \"2603:1020:c04:1::200/123\",\r\n
+ \ \"2603:1020:d04::200/123\",\r\n \"2603:1020:e04:1::200/123\",\r\n
+ \ \"2603:1020:f04::200/123\",\r\n \"2603:1020:1004::200/123\",\r\n
+ \ \"2603:1020:1104::200/123\",\r\n \"2603:1030:f:1::200/123\",\r\n
+ \ \"2603:1030:10:1::200/123\",\r\n \"2603:1030:104:1::200/123\",\r\n
+ \ \"2603:1030:107::200/123\",\r\n \"2603:1030:210:1::200/123\",\r\n
+ \ \"2603:1030:40b:1::200/123\",\r\n \"2603:1030:40c:1::200/123\",\r\n
+ \ \"2603:1030:504:1::200/123\",\r\n \"2603:1030:608::200/123\",\r\n
+ \ \"2603:1030:807:1::200/123\",\r\n \"2603:1030:a07::200/123\",\r\n
+ \ \"2603:1030:b04::200/123\",\r\n \"2603:1030:c06:1::200/123\",\r\n
+ \ \"2603:1030:f05:1::200/123\",\r\n \"2603:1030:1005::200/123\",\r\n
+ \ \"2603:1040:5:1::200/123\",\r\n \"2603:1040:207::200/123\",\r\n
+ \ \"2603:1040:407:1::200/123\",\r\n \"2603:1040:606::200/123\",\r\n
+ \ \"2603:1040:806::200/123\",\r\n \"2603:1040:904:1::200/123\",\r\n
+ \ \"2603:1040:a06:1::200/123\",\r\n \"2603:1040:b04::200/123\",\r\n
+ \ \"2603:1040:c06::200/123\",\r\n \"2603:1040:d04::200/123\",\r\n
+ \ \"2603:1040:f05:1::200/123\",\r\n \"2603:1040:1104::200/123\",\r\n
+ \ \"2603:1050:6:1::200/123\",\r\n \"2603:1050:403::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.120/31\",\r\n \"2603:1010:304::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral2\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.120/31\",\r\n \"2603:1010:404::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.224.120/31\",\r\n \"2603:1010:101::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.CentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.152.70/31\",\r\n \"2603:1030:10:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.EastUS2\",\r\n
+ \ \"id\": \"PowerQueryOnline.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.0.68/30\",\r\n \"2603:1030:40c:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.FranceCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.40.70/31\",\r\n \"2603:1020:805:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.JapanWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.56.120/31\",\r\n \"2603:1040:606::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.KoreaSouth\",\r\n
+ \ \"id\": \"PowerQueryOnline.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.168.120/31\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.NorwayEast\",\r\n
+ \ \"id\": \"PowerQueryOnline.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.70/31\",\r\n \"2603:1020:e04:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SouthCentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.119.8.74/31\",\r\n \"2603:1030:807:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SwitzerlandWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.120/31\",\r\n \"2603:1020:b04::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.UKSouth2\",\r\n
+ \ \"id\": \"PowerQueryOnline.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.192.120/31\",\r\n \"2603:1020:405::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.WestUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"40.82.253.72/29\",\r\n \"2603:1030:a07::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus\",\r\n
+ \ \"id\": \"ServiceBus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.68.110.36/32\",\r\n
+ \ \"13.69.64.64/29\",\r\n \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n
+ \ \"13.69.227.64/29\",\r\n \"13.69.233.192/26\",\r\n \"13.70.72.16/29\",\r\n
+ \ \"13.70.114.0/26\",\r\n \"13.70.186.33/32\",\r\n \"13.71.114.157/32\",\r\n
+ \ \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n \"13.71.194.96/28\",\r\n
+ \ \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n \"13.75.34.128/28\",\r\n
+ \ \"13.76.141.36/32\",\r\n \"13.77.50.16/28\",\r\n \"13.78.94.187/32\",\r\n
+ \ \"13.78.106.80/29\",\r\n \"13.85.81.218/32\",\r\n \"13.87.35.8/32\",\r\n
+ \ \"13.87.56.64/28\",\r\n \"13.87.122.64/28\",\r\n \"13.88.10.93/32\",\r\n
+ \ \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n \"20.36.106.224/27\",\r\n
+ \ \"20.36.114.128/27\",\r\n \"20.36.144.0/26\",\r\n \"20.37.74.32/27\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.42.65.0/26\",\r\n \"20.42.68.0/26\",\r\n
+ \ \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n \"20.43.126.0/26\",\r\n
+ \ \"20.44.2.8/29\",\r\n \"20.44.13.0/26\",\r\n \"20.44.26.128/29\",\r\n
+ \ \"20.44.31.64/26\",\r\n \"20.45.122.128/29\",\r\n \"20.45.126.128/26\",\r\n
+ \ \"20.47.216.0/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n
+ \ \"20.50.201.0/26\",\r\n \"20.52.64.64/26\",\r\n \"20.72.27.144/29\",\r\n
+ \ \"20.72.27.160/28\",\r\n \"20.89.0.0/26\",\r\n \"20.150.160.216/29\",\r\n
+ \ \"20.150.170.8/29\",\r\n \"20.150.175.0/26\",\r\n \"20.150.178.128/29\",\r\n
+ \ \"20.150.182.64/28\",\r\n \"20.150.186.128/29\",\r\n \"20.150.189.48/28\",\r\n
+ \ \"20.150.189.64/26\",\r\n \"20.151.32.0/26\",\r\n \"20.192.32.240/28\",\r\n
+ \ \"20.192.98.128/29\",\r\n \"20.192.101.192/26\",\r\n \"20.192.160.40/29\",\r\n
+ \ \"20.192.225.56/29\",\r\n \"20.192.234.8/29\",\r\n \"20.193.204.104/29\",\r\n
+ \ \"20.193.204.112/28\",\r\n \"20.194.67.208/29\",\r\n \"20.194.68.128/28\",\r\n
+ \ \"20.194.128.128/26\",\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"23.97.120.37/32\",\r\n \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n
+ \ \"23.98.112.128/26\",\r\n \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n
+ \ \"40.67.58.8/29\",\r\n \"40.67.72.0/26\",\r\n \"40.68.127.68/32\",\r\n
+ \ \"40.69.106.16/28\",\r\n \"40.70.146.64/29\",\r\n \"40.70.151.128/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n \"40.75.34.16/29\",\r\n
+ \ \"40.78.194.16/28\",\r\n \"40.78.202.16/28\",\r\n \"40.78.226.192/29\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"40.78.242.144/29\",\r\n \"40.78.247.192/26\",\r\n
+ \ \"40.78.250.80/29\",\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"40.79.154.88/29\",\r\n \"40.79.162.16/29\",\r\n \"40.79.166.128/26\",\r\n
+ \ \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n \"40.79.178.16/28\",\r\n
+ \ \"40.79.186.64/27\",\r\n \"40.79.194.80/29\",\r\n \"40.80.50.128/29\",\r\n
+ \ \"40.86.91.130/32\",\r\n \"40.89.121.192/26\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"40.124.65.0/26\",\r\n \"51.11.192.64/26\",\r\n \"51.12.98.8/29\",\r\n
+ \ \"51.12.101.224/28\",\r\n \"51.12.202.8/29\",\r\n \"51.12.206.0/28\",\r\n
+ \ \"51.12.226.128/29\",\r\n \"51.12.234.128/29\",\r\n \"51.13.0.128/26\",\r\n
+ \ \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n \"51.105.74.128/29\",\r\n
+ \ \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n \"51.107.154.8/29\",\r\n
+ \ \"51.116.58.8/29\",\r\n \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n
+ \ \"51.116.246.128/26\",\r\n \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n
+ \ \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n \"51.120.109.208/28\",\r\n
+ \ \"51.120.210.128/29\",\r\n \"51.120.218.8/29\",\r\n \"51.132.192.128/26\",\r\n
+ \ \"51.140.43.12/32\",\r\n \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n
+ \ \"51.140.210.64/28\",\r\n \"51.141.1.129/32\",\r\n \"51.142.210.16/32\",\r\n
+ \ \"52.138.71.95/32\",\r\n \"52.138.90.16/29\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"52.161.17.198/32\",\r\n \"52.162.106.128/28\",\r\n \"52.167.106.64/29\",\r\n
+ \ \"52.167.109.128/26\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"52.172.220.188/32\",\r\n \"52.178.17.64/26\",\r\n
+ \ \"52.180.178.204/32\",\r\n \"52.182.138.192/29\",\r\n \"52.182.143.0/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"52.231.146.64/28\",\r\n \"52.232.119.191/32\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"52.242.36.0/32\",\r\n \"52.246.154.128/29\",\r\n
+ \ \"52.246.158.192/26\",\r\n \"65.52.219.186/32\",\r\n \"65.52.250.64/27\",\r\n
+ \ \"102.37.64.192/26\",\r\n \"102.37.72.0/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"104.208.16.64/29\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"104.211.81.16/29\",\r\n \"104.211.146.16/28\",\r\n
+ \ \"104.211.190.88/32\",\r\n \"104.214.18.160/29\",\r\n \"168.61.142.56/29\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.8.40/29\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"191.237.224.64/26\",\r\n
+ \ \"207.46.138.15/32\",\r\n \"2603:1000:4::220/123\",\r\n
+ \ \"2603:1000:4:402::170/125\",\r\n \"2603:1000:104:1::220/123\",\r\n
+ \ \"2603:1000:104:402::170/125\",\r\n \"2603:1000:104:802::150/125\",\r\n
+ \ \"2603:1000:104:c02::150/125\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\",\r\n \"2603:1010:404::220/123\",\r\n
+ \ \"2603:1010:404:402::170/125\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\",\r\n \"2603:1020:305::220/123\",\r\n
+ \ \"2603:1020:305:402::170/125\",\r\n \"2603:1020:405::220/123\",\r\n
+ \ \"2603:1020:405:402::170/125\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\",\r\n \"2603:1020:a04:1::220/123\",\r\n
+ \ \"2603:1020:a04:402::170/125\",\r\n \"2603:1020:a04:802::150/125\",\r\n
+ \ \"2603:1020:a04:c02::150/125\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\",\r\n \"2603:1020:1004::220/123\",\r\n
+ \ \"2603:1020:1004:800::e0/124\",\r\n \"2603:1020:1004:800::f0/125\",\r\n
+ \ \"2603:1020:1004:800::358/125\",\r\n \"2603:1020:1004:800::3c0/124\",\r\n
+ \ \"2603:1020:1004:800::3e8/125\",\r\n \"2603:1020:1004:c02::180/123\",\r\n
+ \ \"2603:1020:1004:c02::1a0/125\",\r\n \"2603:1020:1104:400::170/125\",\r\n
+ \ \"2603:1030:f:1::220/123\",\r\n \"2603:1030:f:400::970/125\",\r\n
+ \ \"2603:1030:10:1::220/123\",\r\n \"2603:1030:10:402::170/125\",\r\n
+ \ \"2603:1030:10:802::150/125\",\r\n \"2603:1030:10:c02::150/125\",\r\n
+ \ \"2603:1030:104:1::220/123\",\r\n \"2603:1030:104:402::170/125\",\r\n
+ \ \"2603:1030:107:400::d8/125\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\",\r\n \"2603:1030:504:1::220/123\",\r\n
+ \ \"2603:1030:504:802::e0/124\",\r\n \"2603:1030:504:802::f0/125\",\r\n
+ \ \"2603:1030:504:802::358/125\",\r\n \"2603:1030:608::220/123\",\r\n
+ \ \"2603:1030:608:402::170/125\",\r\n \"2603:1030:807:1::220/123\",\r\n
+ \ \"2603:1030:807:402::170/125\",\r\n \"2603:1030:807:802::150/125\",\r\n
+ \ \"2603:1030:807:c02::150/125\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\",\r\n \"2603:1030:b04::220/123\",\r\n
+ \ \"2603:1030:b04:402::170/125\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\",\r\n \"2603:1040:207::220/123\",\r\n
+ \ \"2603:1040:207:402::170/125\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\",\r\n \"2603:1040:606::220/123\",\r\n
+ \ \"2603:1040:606:402::170/125\",\r\n \"2603:1040:806::220/123\",\r\n
+ \ \"2603:1040:806:402::170/125\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\",\r\n \"2603:1040:c06::220/123\",\r\n
+ \ \"2603:1040:c06:402::170/125\",\r\n \"2603:1040:d04::220/123\",\r\n
+ \ \"2603:1040:d04:800::e0/124\",\r\n \"2603:1040:d04:800::f0/125\",\r\n
+ \ \"2603:1040:d04:800::358/125\",\r\n \"2603:1040:d04:800::3c0/125\",\r\n
+ \ \"2603:1040:d04:800::3e8/125\",\r\n \"2603:1040:f05:1::220/123\",\r\n
+ \ \"2603:1040:f05:402::170/125\",\r\n \"2603:1040:f05:802::150/125\",\r\n
+ \ \"2603:1040:f05:c02::150/125\",\r\n \"2603:1040:1104:400::170/125\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\",\r\n
+ \ \"2603:1050:403::220/123\",\r\n \"2603:1050:403:400::148/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaCentral\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.224/27\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaCentral2\",\r\n \"id\":
+ \"ServiceBus.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.36.114.128/27\",\r\n
+ \ \"2603:1010:404::220/123\",\r\n \"2603:1010:404:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaEast\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.16/29\",\r\n \"13.70.114.0/26\",\r\n \"40.79.162.16/29\",\r\n
+ \ \"40.79.166.128/26\",\r\n \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaSoutheast\",\r\n \"id\":
+ \"ServiceBus.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.70.186.33/32\",\r\n
+ \ \"13.77.50.16/28\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.BrazilSouth\",\r\n \"id\": \"ServiceBus.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.CanadaCentral\",\r\n
+ \ \"id\": \"ServiceBus.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.151.32.0/26\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.246.154.128/29\",\r\n \"52.246.158.192/26\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CanadaEast\",\r\n \"id\": \"ServiceBus.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.16/28\",\r\n \"52.242.36.0/32\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralIndia\",\r\n \"id\": \"ServiceBus.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.126.0/26\",\r\n \"20.192.98.128/29\",\r\n
+ \ \"20.192.101.192/26\",\r\n \"40.80.50.128/29\",\r\n \"52.172.220.188/32\",\r\n
+ \ \"104.211.81.16/29\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUS\",\r\n \"id\": \"ServiceBus.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n
+ \ \"20.44.13.0/26\",\r\n \"40.86.91.130/32\",\r\n \"52.182.138.192/29\",\r\n
+ \ \"52.182.143.0/26\",\r\n \"104.208.16.64/29\",\r\n \"2603:1030:10:1::220/123\",\r\n
+ \ \"2603:1030:10:402::170/125\",\r\n \"2603:1030:10:802::150/125\",\r\n
+ \ \"2603:1030:10:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUSEUAP\",\r\n \"id\": \"ServiceBus.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.16/28\",\r\n \"52.180.178.204/32\",\r\n
+ \ \"168.61.142.56/29\",\r\n \"2603:1030:f:1::220/123\",\r\n
+ \ \"2603:1030:f:400::970/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastAsia\",\r\n \"id\": \"ServiceBus.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.128/28\",\r\n \"207.46.138.15/32\",\r\n
+ \ \"2603:1040:207::220/123\",\r\n \"2603:1040:207:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.EastUS\",\r\n
+ \ \"id\": \"ServiceBus.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.0/26\",\r\n
+ \ \"20.42.68.0/26\",\r\n \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.78.226.192/29\",\r\n \"40.79.154.88/29\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2\",\r\n \"id\": \"ServiceBus.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.110.36/32\",\r\n \"20.36.144.0/26\",\r\n \"40.70.146.64/29\",\r\n
+ \ \"40.70.151.128/26\",\r\n \"52.167.106.64/29\",\r\n \"52.167.109.128/26\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2EUAP\",\r\n \"id\": \"ServiceBus.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.216.0/26\",\r\n \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n
+ \ \"40.75.34.16/29\",\r\n \"40.89.121.192/26\",\r\n \"52.138.71.95/32\",\r\n
+ \ \"52.138.90.16/29\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceCentral\",\r\n \"id\": \"ServiceBus.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"51.11.192.64/26\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceSouth\",\r\n \"id\": \"ServiceBus.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.16/28\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyNorth\",\r\n \"id\": \"ServiceBus.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.8/29\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyWestCentral\",\r\n \"id\":
+ \"ServiceBus.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.64/26\",\r\n
+ \ \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n \"51.116.246.128/26\",\r\n
+ \ \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanEast\",\r\n \"id\": \"ServiceBus.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.94.187/32\",\r\n \"13.78.106.80/29\",\r\n
+ \ \"20.89.0.0/26\",\r\n \"20.194.128.128/26\",\r\n \"40.79.186.64/27\",\r\n
+ \ \"40.79.194.80/29\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanWest\",\r\n \"id\": \"ServiceBus.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"2603:1040:606::220/123\",\r\n \"2603:1040:606:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaCentral\",\r\n
+ \ \"id\": \"ServiceBus.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.128/29\",\r\n \"20.44.31.64/26\",\r\n \"20.194.67.208/29\",\r\n
+ \ \"20.194.68.128/28\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"2603:1040:f05:1::220/123\",\r\n \"2603:1040:f05:402::170/125\",\r\n
+ \ \"2603:1040:f05:802::150/125\",\r\n \"2603:1040:f05:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaSouth\",\r\n
+ \ \"id\": \"ServiceBus.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"52.231.146.64/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.128/28\",\r\n \"65.52.219.186/32\",\r\n
+ \ \"2603:1030:608::220/123\",\r\n \"2603:1030:608:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthEurope\",\r\n
+ \ \"id\": \"ServiceBus.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.64/29\",\r\n
+ \ \"13.69.233.192/26\",\r\n \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n
+ \ \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayEast\",\r\n \"id\": \"ServiceBus.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.128/26\",\r\n \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n
+ \ \"51.120.109.208/28\",\r\n \"51.120.210.128/29\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayWest\",\r\n \"id\": \"ServiceBus.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.218.8/29\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthAfricaNorth\",\r\n \"id\":
+ \"ServiceBus.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"102.37.72.0/26\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"2603:1000:104:1::220/123\",\r\n \"2603:1000:104:402::170/125\",\r\n
+ \ \"2603:1000:104:802::150/125\",\r\n \"2603:1000:104:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthAfricaWest\",\r\n
+ \ \"id\": \"ServiceBus.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"102.37.64.192/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"2603:1000:4::220/123\",\r\n \"2603:1000:4:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.85.81.218/32\",\r\n \"20.45.122.128/29\",\r\n
+ \ \"20.45.126.128/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"40.124.65.0/26\",\r\n \"104.214.18.160/29\",\r\n
+ \ \"2603:1030:807:1::220/123\",\r\n \"2603:1030:807:402::170/125\",\r\n
+ \ \"2603:1030:807:802::150/125\",\r\n \"2603:1030:807:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SoutheastAsia\",\r\n
+ \ \"id\": \"ServiceBus.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.76.141.36/32\",\r\n
+ \ \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n \"23.98.112.128/26\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthIndia\",\r\n \"id\": \"ServiceBus.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.114.157/32\",\r\n \"40.78.194.16/28\",\r\n
+ \ \"2603:1040:c06::220/123\",\r\n \"2603:1040:c06:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n
+ \ \"2603:1020:a04:1::220/123\",\r\n \"2603:1020:a04:402::170/125\",\r\n
+ \ \"2603:1020:a04:802::150/125\",\r\n \"2603:1020:a04:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandWest\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.8/29\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAECentral\",\r\n \"id\": \"ServiceBus.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.32/27\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAENorth\",\r\n \"id\": \"ServiceBus.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"65.52.250.64/27\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth\",\r\n \"id\": \"ServiceBus.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n
+ \ \"51.105.74.128/29\",\r\n \"51.132.192.128/26\",\r\n \"51.140.43.12/32\",\r\n
+ \ \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth2\",\r\n \"id\": \"ServiceBus.UKSouth2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.35.8/32\",\r\n \"13.87.56.64/28\",\r\n
+ \ \"2603:1020:405::220/123\",\r\n \"2603:1020:405:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.UKWest\",\r\n
+ \ \"id\": \"ServiceBus.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.64/28\",\r\n
+ \ \"51.141.1.129/32\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestCentralUS\",\r\n \"id\": \"ServiceBus.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.96/28\",\r\n \"52.161.17.198/32\",\r\n
+ \ \"2603:1030:b04::220/123\",\r\n \"2603:1030:b04:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestEurope\",\r\n
+ \ \"id\": \"ServiceBus.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.64/29\",\r\n
+ \ \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n \"20.50.201.0/26\",\r\n
+ \ \"40.68.127.68/32\",\r\n \"52.178.17.64/26\",\r\n \"52.232.119.191/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestIndia\",\r\n \"id\": \"ServiceBus.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.16/28\",\r\n \"104.211.190.88/32\",\r\n
+ \ \"2603:1040:806::220/123\",\r\n \"2603:1040:806:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestUS\",\r\n
+ \ \"id\": \"ServiceBus.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.10.93/32\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestUS2\",\r\n \"id\": \"ServiceBus.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n \"40.78.242.144/29\",\r\n
+ \ \"40.78.247.192/26\",\r\n \"40.78.250.80/29\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric\",\r\n \"id\": \"ServiceFabric\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.152/29\",\r\n \"13.66.167.194/32\",\r\n
+ \ \"13.66.226.151/32\",\r\n \"13.67.9.136/29\",\r\n \"13.69.64.232/29\",\r\n
+ \ \"13.69.109.136/30\",\r\n \"13.69.227.232/29\",\r\n \"13.70.72.216/29\",\r\n
+ \ \"13.70.78.172/30\",\r\n \"13.71.170.224/29\",\r\n \"13.71.170.248/29\",\r\n
+ \ \"13.71.195.48/29\",\r\n \"13.74.80.74/32\",\r\n \"13.74.111.144/30\",\r\n
+ \ \"13.75.36.80/29\",\r\n \"13.75.41.166/32\",\r\n \"13.75.42.35/32\",\r\n
+ \ \"13.77.52.0/29\",\r\n \"13.78.108.24/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"13.87.32.204/32\",\r\n \"13.87.56.240/29\",\r\n
+ \ \"13.87.98.166/32\",\r\n \"13.87.122.240/29\",\r\n \"13.89.171.104/29\",\r\n
+ \ \"13.91.7.211/32\",\r\n \"13.91.252.58/32\",\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.36.40.70/32\",\r\n \"20.36.72.79/32\",\r\n \"20.36.107.16/29\",\r\n
+ \ \"20.36.114.192/29\",\r\n \"20.37.74.80/29\",\r\n \"20.38.149.192/30\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"20.44.3.24/29\",\r\n
+ \ \"20.44.10.124/30\",\r\n \"20.44.19.0/30\",\r\n \"20.44.29.52/30\",\r\n
+ \ \"20.45.79.240/32\",\r\n \"20.45.123.244/30\",\r\n \"20.49.82.4/30\",\r\n
+ \ \"20.49.90.4/30\",\r\n \"20.72.26.4/30\",\r\n \"20.150.171.72/29\",\r\n
+ \ \"20.150.181.160/30\",\r\n \"20.150.189.28/30\",\r\n \"20.150.225.4/30\",\r\n
+ \ \"20.184.2.84/32\",\r\n \"20.192.32.224/30\",\r\n \"20.192.101.28/30\",\r\n
+ \ \"20.192.235.0/29\",\r\n \"20.193.202.24/29\",\r\n \"20.193.204.100/30\",\r\n
+ \ \"20.194.66.4/30\",\r\n \"23.96.200.228/32\",\r\n \"23.96.210.6/32\",\r\n
+ \ \"23.96.214.100/32\",\r\n \"23.98.86.60/30\",\r\n \"23.99.11.219/32\",\r\n
+ \ \"23.100.199.230/32\",\r\n \"40.67.59.72/29\",\r\n \"40.69.107.0/29\",\r\n
+ \ \"40.69.166.6/32\",\r\n \"40.70.146.232/29\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.74.100.240/29\",\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"40.78.195.0/29\",\r\n
+ \ \"40.78.202.120/29\",\r\n \"40.78.238.60/30\",\r\n \"40.78.245.192/30\",\r\n
+ \ \"40.78.253.64/30\",\r\n \"40.79.114.102/32\",\r\n \"40.79.130.232/29\",\r\n
+ \ \"40.79.139.192/30\",\r\n \"40.79.148.80/30\",\r\n \"40.79.165.80/29\",\r\n
+ \ \"40.79.171.228/30\",\r\n \"40.79.173.0/30\",\r\n \"40.79.179.0/29\",\r\n
+ \ \"40.79.189.60/30\",\r\n \"40.79.197.36/30\",\r\n \"40.80.53.4/30\",\r\n
+ \ \"40.84.62.189/32\",\r\n \"40.84.133.64/32\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"40.86.230.174/32\",\r\n \"40.89.168.15/32\",\r\n \"40.112.243.176/29\",\r\n
+ \ \"40.113.23.157/32\",\r\n \"40.113.88.37/32\",\r\n \"40.115.64.123/32\",\r\n
+ \ \"40.115.113.228/32\",\r\n \"40.120.74.4/30\",\r\n \"40.123.204.26/32\",\r\n
+ \ \"51.12.99.64/29\",\r\n \"51.12.101.168/30\",\r\n \"51.12.203.64/29\",\r\n
+ \ \"51.12.204.240/30\",\r\n \"51.105.69.84/30\",\r\n \"51.105.77.52/30\",\r\n
+ \ \"51.107.59.40/29\",\r\n \"51.107.76.20/32\",\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"51.116.59.40/29\",\r\n \"51.116.155.104/29\",\r\n
+ \ \"51.116.208.26/32\",\r\n \"51.116.232.27/32\",\r\n \"51.116.245.160/30\",\r\n
+ \ \"51.116.253.128/30\",\r\n \"51.120.68.23/32\",\r\n \"51.120.98.240/29\",\r\n
+ \ \"51.120.109.28/30\",\r\n \"51.120.164.23/32\",\r\n \"51.120.219.72/29\",\r\n
+ \ \"51.140.148.24/29\",\r\n \"51.140.184.27/32\",\r\n \"51.140.211.16/29\",\r\n
+ \ \"51.141.8.30/32\",\r\n \"52.136.136.27/32\",\r\n \"52.138.70.82/32\",\r\n
+ \ \"52.138.92.168/30\",\r\n \"52.138.143.55/32\",\r\n \"52.138.229.68/30\",\r\n
+ \ \"52.143.136.15/32\",\r\n \"52.143.184.15/32\",\r\n \"52.151.38.144/32\",\r\n
+ \ \"52.158.236.247/32\",\r\n \"52.162.107.176/29\",\r\n \"52.163.90.165/32\",\r\n
+ \ \"52.163.94.113/32\",\r\n \"52.165.37.188/32\",\r\n \"52.167.0.27/32\",\r\n
+ \ \"52.167.109.68/30\",\r\n \"52.167.227.220/32\",\r\n \"52.174.163.204/32\",\r\n
+ \ \"52.174.164.254/32\",\r\n \"52.178.30.193/32\",\r\n \"52.180.176.84/32\",\r\n
+ \ \"52.182.141.56/30\",\r\n \"52.182.172.232/32\",\r\n \"52.225.184.94/32\",\r\n
+ \ \"52.225.185.159/32\",\r\n \"52.230.8.61/32\",\r\n \"52.231.18.232/29\",\r\n
+ \ \"52.231.32.81/32\",\r\n \"52.231.147.16/29\",\r\n \"52.231.200.124/32\",\r\n
+ \ \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n \"52.246.157.8/30\",\r\n
+ \ \"65.52.250.224/29\",\r\n \"102.37.48.12/32\",\r\n \"102.133.27.24/29\",\r\n
+ \ \"102.133.72.31/32\",\r\n \"102.133.155.24/29\",\r\n \"102.133.160.28/32\",\r\n
+ \ \"102.133.235.169/32\",\r\n \"102.133.251.216/30\",\r\n
+ \ \"104.41.9.53/32\",\r\n \"104.41.187.29/32\",\r\n \"104.42.181.121/32\",\r\n
+ \ \"104.43.213.84/32\",\r\n \"104.45.19.250/32\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"104.210.107.69/32\",\r\n \"104.211.81.216/29\",\r\n \"104.211.103.201/32\",\r\n
+ \ \"104.211.146.240/29\",\r\n \"104.211.164.163/32\",\r\n
+ \ \"104.211.228.68/32\",\r\n \"104.214.19.72/29\",\r\n \"104.215.78.146/32\",\r\n
+ \ \"137.116.252.9/32\",\r\n \"137.135.33.49/32\",\r\n \"168.61.142.48/30\",\r\n
+ \ \"191.233.50.24/29\",\r\n \"191.233.203.216/29\",\r\n \"191.234.149.32/30\",\r\n
+ \ \"191.234.157.128/30\",\r\n \"207.46.234.62/32\",\r\n \"2603:1000:4:402::98/125\",\r\n
+ \ \"2603:1000:104:402::98/125\",\r\n \"2603:1000:104:802::98/125\",\r\n
+ \ \"2603:1000:104:c02::98/125\",\r\n \"2603:1010:6:402::98/125\",\r\n
+ \ \"2603:1010:6:802::98/125\",\r\n \"2603:1010:6:c02::98/125\",\r\n
+ \ \"2603:1010:101:402::98/125\",\r\n \"2603:1010:304:402::98/125\",\r\n
+ \ \"2603:1010:404:402::98/125\",\r\n \"2603:1020:5:402::98/125\",\r\n
+ \ \"2603:1020:5:802::98/125\",\r\n \"2603:1020:5:c02::98/125\",\r\n
+ \ \"2603:1020:206:402::98/125\",\r\n \"2603:1020:206:802::98/125\",\r\n
+ \ \"2603:1020:206:c02::98/125\",\r\n \"2603:1020:305:402::98/125\",\r\n
+ \ \"2603:1020:405:402::98/125\",\r\n \"2603:1020:605:402::98/125\",\r\n
+ \ \"2603:1020:705:402::98/125\",\r\n \"2603:1020:705:802::98/125\",\r\n
+ \ \"2603:1020:705:c02::98/125\",\r\n \"2603:1020:805:402::98/125\",\r\n
+ \ \"2603:1020:805:802::98/125\",\r\n \"2603:1020:805:c02::98/125\",\r\n
+ \ \"2603:1020:905:402::98/125\",\r\n \"2603:1020:a04:402::98/125\",\r\n
+ \ \"2603:1020:a04:802::98/125\",\r\n \"2603:1020:a04:c02::98/125\",\r\n
+ \ \"2603:1020:b04:402::98/125\",\r\n \"2603:1020:c04:402::98/125\",\r\n
+ \ \"2603:1020:c04:802::98/125\",\r\n \"2603:1020:c04:c02::98/125\",\r\n
+ \ \"2603:1020:d04:402::98/125\",\r\n \"2603:1020:e04:402::98/125\",\r\n
+ \ \"2603:1020:e04:802::98/125\",\r\n \"2603:1020:e04:c02::98/125\",\r\n
+ \ \"2603:1020:f04:402::98/125\",\r\n \"2603:1020:1004:400::98/125\",\r\n
+ \ \"2603:1020:1004:800::158/125\",\r\n \"2603:1020:1004:800::350/125\",\r\n
+ \ \"2603:1020:1104:400::98/125\",\r\n \"2603:1030:f:400::898/125\",\r\n
+ \ \"2603:1030:10:402::98/125\",\r\n \"2603:1030:10:802::98/125\",\r\n
+ \ \"2603:1030:10:c02::98/125\",\r\n \"2603:1030:104:402::98/125\",\r\n
+ \ \"2603:1030:107:400::d0/125\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\",\r\n
+ \ \"2603:1030:40b:400::898/125\",\r\n \"2603:1030:40b:800::98/125\",\r\n
+ \ \"2603:1030:40b:c00::98/125\",\r\n \"2603:1030:40c:402::98/125\",\r\n
+ \ \"2603:1030:40c:802::98/125\",\r\n \"2603:1030:40c:c02::98/125\",\r\n
+ \ \"2603:1030:504:402::98/125\",\r\n \"2603:1030:504:802::c8/125\",\r\n
+ \ \"2603:1030:504:802::158/125\",\r\n \"2603:1030:504:802::350/125\",\r\n
+ \ \"2603:1030:608:402::98/125\",\r\n \"2603:1030:807:402::98/125\",\r\n
+ \ \"2603:1030:807:802::98/125\",\r\n \"2603:1030:807:c02::98/125\",\r\n
+ \ \"2603:1030:a07:402::98/125\",\r\n \"2603:1030:b04:402::98/125\",\r\n
+ \ \"2603:1030:c06:400::898/125\",\r\n \"2603:1030:c06:802::98/125\",\r\n
+ \ \"2603:1030:c06:c02::98/125\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\",\r\n
+ \ \"2603:1030:1005:402::98/125\",\r\n \"2603:1040:5:402::98/125\",\r\n
+ \ \"2603:1040:5:802::98/125\",\r\n \"2603:1040:5:c02::98/125\",\r\n
+ \ \"2603:1040:207:402::98/125\",\r\n \"2603:1040:407:402::98/125\",\r\n
+ \ \"2603:1040:407:802::98/125\",\r\n \"2603:1040:407:c02::98/125\",\r\n
+ \ \"2603:1040:606:402::98/125\",\r\n \"2603:1040:806:402::98/125\",\r\n
+ \ \"2603:1040:904:402::98/125\",\r\n \"2603:1040:904:802::98/125\",\r\n
+ \ \"2603:1040:904:c02::98/125\",\r\n \"2603:1040:a06:402::98/125\",\r\n
+ \ \"2603:1040:a06:802::98/125\",\r\n \"2603:1040:a06:c02::98/125\",\r\n
+ \ \"2603:1040:b04:402::98/125\",\r\n \"2603:1040:c06:402::98/125\",\r\n
+ \ \"2603:1040:d04:400::98/125\",\r\n \"2603:1040:d04:800::158/125\",\r\n
+ \ \"2603:1040:d04:800::350/125\",\r\n \"2603:1040:f05:402::98/125\",\r\n
+ \ \"2603:1040:f05:802::98/125\",\r\n \"2603:1040:f05:c02::98/125\",\r\n
+ \ \"2603:1040:1104:400::98/125\",\r\n \"2603:1050:6:402::98/125\",\r\n
+ \ \"2603:1050:6:802::98/125\",\r\n \"2603:1050:6:c02::98/125\",\r\n
+ \ \"2603:1050:403:400::140/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.CanadaCentral\",\r\n \"id\":
+ \"ServiceFabric.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.71.170.224/29\",\r\n
+ \ \"13.71.170.248/29\",\r\n \"20.38.149.192/30\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"52.246.157.8/30\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS2EUAP\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.79.114.102/32\",\r\n \"52.138.70.82/32\",\r\n \"52.138.92.168/30\",\r\n
+ \ \"52.225.184.94/32\",\r\n \"52.225.185.159/32\",\r\n \"2603:1030:40b:400::898/125\",\r\n
+ \ \"2603:1030:40b:800::98/125\",\r\n \"2603:1030:40b:c00::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.FranceSouth\",\r\n
+ \ \"id\": \"ServiceFabric.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.0/29\",\r\n \"52.136.136.27/32\",\r\n
+ \ \"2603:1020:905:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.JapanWest\",\r\n \"id\": \"ServiceFabric.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.240/29\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"2603:1040:606:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.SwitzerlandWest\",\r\n \"id\":
+ \"ServiceFabric.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"2603:1020:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.UAECentral\",\r\n
+ \ \"id\": \"ServiceFabric.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.80/29\",\r\n \"20.45.79.240/32\",\r\n \"2603:1040:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.WestCentralUS\",\r\n
+ \ \"id\": \"ServiceFabric.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.48/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"2603:1030:b04:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.WestEurope\",\r\n \"id\": \"ServiceFabric.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.64.232/29\",\r\n \"13.69.109.136/30\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"52.174.163.204/32\",\r\n \"52.174.164.254/32\",\r\n
+ \ \"52.178.30.193/32\",\r\n \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n
+ \ \"104.45.19.250/32\",\r\n \"2603:1020:206:402::98/125\",\r\n
+ \ \"2603:1020:206:802::98/125\",\r\n \"2603:1020:206:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql\",\r\n \"id\":
+ \"Sql\",\r\n \"properties\": {\r\n \"changeNumber\": \"3\",\r\n
+ \ \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.66.136.0/26\",\r\n \"13.66.136.192/29\",\r\n
+ \ \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n \"13.66.229.222/32\",\r\n
+ \ \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n \"13.66.230.64/32\",\r\n
+ \ \"13.66.230.103/32\",\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n
+ \ \"13.67.17.0/26\",\r\n \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n
+ \ \"13.67.59.217/32\",\r\n \"13.67.215.62/32\",\r\n \"13.68.22.44/32\",\r\n
+ \ \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.70.148.251/32\",\r\n \"13.70.155.163/32\",\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.73.109.251/32\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n
+ \ \"13.77.7.78/32\",\r\n \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n
+ \ \"13.77.49.32/29\",\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n
+ \ \"13.78.104.32/29\",\r\n \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n
+ \ \"13.78.144.57/32\",\r\n \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n
+ \ \"13.78.151.189/32\",\r\n \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n
+ \ \"13.78.178.151/32\",\r\n \"13.78.248.32/27\",\r\n \"13.84.223.76/32\",\r\n
+ \ \"13.85.65.48/32\",\r\n \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n
+ \ \"13.86.216.0/25\",\r\n \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n
+ \ \"13.86.217.0/25\",\r\n \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n
+ \ \"13.86.217.224/29\",\r\n \"13.87.16.64/27\",\r\n \"13.87.17.0/27\",\r\n
+ \ \"13.87.33.234/32\",\r\n \"13.87.34.7/32\",\r\n \"13.87.34.19/32\",\r\n
+ \ \"13.87.38.138/32\",\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"13.89.36.110/32\",\r\n \"13.89.37.61/32\",\r\n
+ \ \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n \"13.89.168.0/26\",\r\n
+ \ \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n
+ \ \"20.36.105.32/29\",\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n
+ \ \"20.36.113.32/29\",\r\n \"20.37.71.64/26\",\r\n \"20.37.71.128/26\",\r\n
+ \ \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n \"20.37.73.64/27\",\r\n
+ \ \"20.37.73.96/29\",\r\n \"20.38.143.64/26\",\r\n \"20.38.143.128/26\",\r\n
+ \ \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n \"20.38.145.0/27\",\r\n
+ \ \"20.38.152.24/29\",\r\n \"20.40.228.128/25\",\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.43.47.192/26\",\r\n \"20.44.0.0/27\",\r\n
+ \ \"20.44.1.0/27\",\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n
+ \ \"20.44.25.0/27\",\r\n \"20.45.120.0/27\",\r\n \"20.45.121.0/27\",\r\n
+ \ \"20.45.121.32/29\",\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n
+ \ \"20.46.11.128/26\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"20.49.80.0/27\",\r\n \"20.49.80.32/29\",\r\n
+ \ \"20.49.81.0/27\",\r\n \"20.49.88.0/27\",\r\n \"20.49.88.32/29\",\r\n
+ \ \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"20.51.17.160/27\",\r\n \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n
+ \ \"20.53.46.128/25\",\r\n \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n
+ \ \"20.53.48.192/26\",\r\n \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n
+ \ \"20.53.56.128/26\",\r\n \"20.58.66.128/25\",\r\n \"20.61.99.192/26\",\r\n
+ \ \"20.61.102.0/26\",\r\n \"20.62.58.128/25\",\r\n \"20.62.132.160/27\",\r\n
+ \ \"20.62.132.192/27\",\r\n \"20.62.133.0/26\",\r\n \"20.65.132.160/27\",\r\n
+ \ \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n \"20.66.3.64/26\",\r\n
+ \ \"20.66.3.128/26\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"20.72.21.224/27\",\r\n \"20.72.24.64/27\",\r\n
+ \ \"20.72.24.128/27\",\r\n \"20.72.25.128/27\",\r\n \"20.88.64.0/27\",\r\n
+ \ \"20.150.168.0/27\",\r\n \"20.150.168.32/29\",\r\n \"20.150.169.0/27\",\r\n
+ \ \"20.150.176.0/27\",\r\n \"20.150.176.32/29\",\r\n \"20.150.177.0/27\",\r\n
+ \ \"20.150.184.0/27\",\r\n \"20.150.184.32/29\",\r\n \"20.150.185.0/27\",\r\n
+ \ \"20.150.241.128/25\",\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"20.191.165.160/27\",\r\n \"20.191.165.192/27\",\r\n
+ \ \"20.191.166.0/26\",\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.48.32/27\",\r\n \"20.192.48.64/27\",\r\n
+ \ \"20.192.48.128/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"20.192.167.224/27\",\r\n \"20.192.232.0/27\",\r\n
+ \ \"20.192.233.0/27\",\r\n \"20.192.233.32/29\",\r\n \"20.193.192.0/27\",\r\n
+ \ \"20.193.192.64/26\",\r\n \"20.193.200.0/27\",\r\n \"20.193.200.32/29\",\r\n
+ \ \"20.193.201.0/27\",\r\n \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n
+ \ \"20.194.65.0/27\",\r\n \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n
+ \ \"20.195.65.32/27\",\r\n \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"20.195.146.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"23.96.178.199/32\",\r\n \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n
+ \ \"23.96.205.215/32\",\r\n \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n
+ \ \"23.96.247.75/32\",\r\n \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.98.55.75/32\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.98.162.75/32\",\r\n
+ \ \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n \"23.98.170.75/32\",\r\n
+ \ \"23.98.170.76/31\",\r\n \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n
+ \ \"23.99.10.185/32\",\r\n \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n
+ \ \"23.99.34.78/32\",\r\n \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n
+ \ \"23.99.57.14/32\",\r\n \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n
+ \ \"23.99.90.75/32\",\r\n \"23.99.91.130/32\",\r\n \"23.99.102.124/32\",\r\n
+ \ \"23.99.118.196/32\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"23.101.64.10/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"23.102.16.130/32\",\r\n \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n
+ \ \"23.102.52.155/32\",\r\n \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n
+ \ \"23.102.69.95/32\",\r\n \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n
+ \ \"23.102.172.251/32\",\r\n \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n
+ \ \"23.102.179.187/32\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.67.53.0/25\",\r\n \"40.67.56.0/27\",\r\n \"40.67.56.32/29\",\r\n
+ \ \"40.67.57.0/27\",\r\n \"40.68.37.158/32\",\r\n \"40.68.215.206/32\",\r\n
+ \ \"40.68.220.16/32\",\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n
+ \ \"40.69.105.32/29\",\r\n \"40.69.132.90/32\",\r\n \"40.69.143.202/32\",\r\n
+ \ \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n \"40.70.144.0/26\",\r\n
+ \ \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n \"40.71.8.0/26\",\r\n
+ \ \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n \"40.71.9.192/26\",\r\n
+ \ \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n \"40.71.211.227/32\",\r\n
+ \ \"40.71.226.18/32\",\r\n \"40.74.51.145/32\",\r\n \"40.74.53.36/32\",\r\n
+ \ \"40.74.60.91/32\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"40.74.144.0/27\",\r\n \"40.74.144.32/29\",\r\n
+ \ \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n \"40.74.254.156/32\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"40.76.2.172/32\",\r\n \"40.76.26.90/32\",\r\n
+ \ \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n \"40.76.66.9/32\",\r\n
+ \ \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n \"40.76.219.185/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.78.192.0/27\",\r\n
+ \ \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n \"40.78.193.32/29\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"40.78.224.0/26\",\r\n
+ \ \"40.78.224.128/26\",\r\n \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n
+ \ \"40.78.232.0/26\",\r\n \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"40.79.152.0/26\",\r\n \"40.79.152.192/26\",\r\n
+ \ \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.79.176.0/27\",\r\n
+ \ \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n \"40.79.177.32/29\",\r\n
+ \ \"40.79.184.0/27\",\r\n \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n
+ \ \"40.79.192.0/27\",\r\n \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n
+ \ \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n \"40.80.49.0/27\",\r\n
+ \ \"40.83.178.165/32\",\r\n \"40.83.186.249/32\",\r\n \"40.84.5.64/32\",\r\n
+ \ \"40.84.54.249/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n \"40.86.75.134/32\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"40.112.139.250/32\",\r\n
+ \ \"40.112.240.0/27\",\r\n \"40.112.246.0/27\",\r\n \"40.113.14.53/32\",\r\n
+ \ \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n \"40.113.20.38/32\",\r\n
+ \ \"40.113.93.91/32\",\r\n \"40.113.200.119/32\",\r\n \"40.114.40.118/32\",\r\n
+ \ \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n \"40.114.46.128/32\",\r\n
+ \ \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.118.12.208/32\",\r\n \"40.118.129.167/32\",\r\n
+ \ \"40.118.170.1/32\",\r\n \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n
+ \ \"40.118.249.123/32\",\r\n \"40.118.250.19/32\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"40.121.143.204/32\",\r\n
+ \ \"40.121.149.49/32\",\r\n \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"40.126.228.153/32\",\r\n \"40.126.230.223/32\",\r\n
+ \ \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n \"40.126.250.24/32\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"51.12.46.32/27\",\r\n
+ \ \"51.12.46.64/27\",\r\n \"51.12.46.128/26\",\r\n \"51.12.96.0/27\",\r\n
+ \ \"51.12.96.32/29\",\r\n \"51.12.97.0/27\",\r\n \"51.12.198.32/27\",\r\n
+ \ \"51.12.198.64/27\",\r\n \"51.12.198.128/26\",\r\n \"51.12.200.0/27\",\r\n
+ \ \"51.12.200.32/29\",\r\n \"51.12.201.0/27\",\r\n \"51.12.201.32/29\",\r\n
+ \ \"51.12.224.0/27\",\r\n \"51.12.224.32/29\",\r\n \"51.12.225.0/27\",\r\n
+ \ \"51.12.232.0/27\",\r\n \"51.12.232.32/29\",\r\n \"51.12.233.0/27\",\r\n
+ \ \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n \"51.13.137.64/26\",\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.152.0/27\",\r\n \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"51.107.250.64/26\",\r\n \"51.107.250.128/26\",\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"51.120.96.0/27\",\r\n
+ \ \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n \"51.120.104.0/27\",\r\n
+ \ \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n \"51.120.208.0/27\",\r\n
+ \ \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n \"51.120.216.0/27\",\r\n
+ \ \"51.120.217.0/27\",\r\n \"51.120.217.32/29\",\r\n \"51.120.232.192/26\",\r\n
+ \ \"51.120.233.0/26\",\r\n \"51.138.210.0/26\",\r\n \"51.140.77.9/32\",\r\n
+ \ \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n \"51.140.144.0/27\",\r\n
+ \ \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n \"51.140.180.9/32\",\r\n
+ \ \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n \"51.140.184.12/32\",\r\n
+ \ \"51.140.208.64/27\",\r\n \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n
+ \ \"51.140.209.32/29\",\r\n \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n
+ \ \"51.141.15.53/32\",\r\n \"51.141.25.212/32\",\r\n \"51.142.211.129/32\",\r\n
+ \ \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n \"51.143.212.64/26\",\r\n
+ \ \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n \"52.136.185.0/25\",\r\n
+ \ \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n \"52.138.89.0/27\",\r\n
+ \ \"52.138.89.32/29\",\r\n \"52.138.224.0/26\",\r\n \"52.138.224.128/26\",\r\n
+ \ \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n \"52.138.229.72/29\",\r\n
+ \ \"52.139.106.192/26\",\r\n \"52.139.107.0/26\",\r\n \"52.146.133.128/25\",\r\n
+ \ \"52.147.112.160/27\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"52.162.104.0/26\",\r\n
+ \ \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n \"52.162.125.1/32\",\r\n
+ \ \"52.162.241.250/32\",\r\n \"52.165.184.67/32\",\r\n \"52.166.76.0/32\",\r\n
+ \ \"52.166.131.195/32\",\r\n \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n
+ \ \"52.167.105.0/26\",\r\n \"52.167.117.226/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.171.56.10/32\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n \"52.173.205.59/32\",\r\n
+ \ \"52.175.33.150/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.177.185.181/32\",\r\n
+ \ \"52.177.197.103/32\",\r\n \"52.177.200.215/32\",\r\n \"52.179.16.95/32\",\r\n
+ \ \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n \"52.179.167.70/32\",\r\n
+ \ \"52.179.178.184/32\",\r\n \"52.180.176.154/31\",\r\n \"52.180.183.226/32\",\r\n
+ \ \"52.182.136.0/26\",\r\n \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n
+ \ \"52.183.250.62/32\",\r\n \"52.184.192.175/32\",\r\n \"52.184.231.0/32\",\r\n
+ \ \"52.185.152.149/32\",\r\n \"52.187.15.214/32\",\r\n \"52.187.76.130/32\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.225.188.46/32\",\r\n \"52.225.188.113/32\",\r\n
+ \ \"52.225.222.124/32\",\r\n \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n
+ \ \"52.228.39.117/32\",\r\n \"52.229.17.93/32\",\r\n \"52.229.122.195/32\",\r\n
+ \ \"52.229.123.147/32\",\r\n \"52.229.124.23/32\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"52.231.144.0/27\",\r\n \"52.231.145.0/27\",\r\n
+ \ \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n \"52.231.206.133/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"52.237.28.86/32\",\r\n
+ \ \"52.237.219.227/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"52.243.32.19/32\",\r\n
+ \ \"52.243.43.186/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"52.246.251.248/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"65.52.208.91/32\",\r\n \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n
+ \ \"65.52.218.82/32\",\r\n \"65.52.225.245/32\",\r\n \"65.52.226.209/32\",\r\n
+ \ \"65.52.248.0/27\",\r\n \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n
+ \ \"102.37.80.96/27\",\r\n \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n
+ \ \"102.37.160.0/27\",\r\n \"102.37.160.64/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"102.133.120.0/27\",\r\n
+ \ \"102.133.120.32/29\",\r\n \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n
+ \ \"102.133.152.32/29\",\r\n \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n
+ \ \"102.133.248.0/27\",\r\n \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n
+ \ \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n \"104.40.54.130/32\",\r\n
+ \ \"104.40.82.151/32\",\r\n \"104.40.155.247/32\",\r\n \"104.40.168.64/26\",\r\n
+ \ \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n \"104.40.169.32/29\",\r\n
+ \ \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n \"104.40.220.28/32\",\r\n
+ \ \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n \"104.40.237.111/32\",\r\n
+ \ \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n \"104.41.13.233/32\",\r\n
+ \ \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n \"104.41.57.82/32\",\r\n
+ \ \"104.41.59.170/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.41.168.103/32\",\r\n \"104.41.169.34/32\",\r\n \"104.41.202.30/32\",\r\n
+ \ \"104.41.205.195/32\",\r\n \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n
+ \ \"104.41.211.98/32\",\r\n \"104.42.120.235/32\",\r\n \"104.42.127.95/32\",\r\n
+ \ \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n \"104.42.192.190/32\",\r\n
+ \ \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n \"104.42.237.198/32\",\r\n
+ \ \"104.42.238.205/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.43.164.21/32\",\r\n \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n
+ \ \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n \"104.45.158.30/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n
+ \ \"104.46.183.0/26\",\r\n \"104.47.157.97/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"104.210.32.128/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"104.211.144.0/27\",\r\n
+ \ \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n \"104.211.145.32/29\",\r\n
+ \ \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n \"104.211.190.46/32\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n
+ \ \"104.214.17.0/26\",\r\n \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n
+ \ \"104.214.73.137/32\",\r\n \"104.214.78.242/32\",\r\n \"104.214.148.156/32\",\r\n
+ \ \"104.214.150.17/32\",\r\n \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n
+ \ \"111.221.106.161/32\",\r\n \"137.116.31.224/27\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"137.116.203.91/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"137.135.109.63/32\",\r\n \"137.135.186.126/32\",\r\n
+ \ \"137.135.189.158/32\",\r\n \"137.135.205.85/32\",\r\n
+ \ \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n \"138.91.58.227/32\",\r\n
+ \ \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n \"138.91.240.14/32\",\r\n
+ \ \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n \"138.91.251.139/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"168.62.115.112/28\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"168.63.13.214/32\",\r\n
+ \ \"168.63.98.91/32\",\r\n \"168.63.175.68/32\",\r\n \"191.233.15.160/27\",\r\n
+ \ \"191.233.15.192/27\",\r\n \"191.233.48.0/27\",\r\n \"191.233.48.32/29\",\r\n
+ \ \"191.233.49.0/27\",\r\n \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n
+ \ \"191.233.200.0/27\",\r\n \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"191.234.142.160/27\",\r\n \"191.234.142.192/27\",\r\n
+ \ \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n \"191.234.145.0/27\",\r\n
+ \ \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n \"191.235.170.58/32\",\r\n
+ \ \"191.235.193.75/32\",\r\n \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n
+ \ \"191.235.193.139/32\",\r\n \"191.235.193.140/31\",\r\n
+ \ \"191.235.209.79/32\",\r\n \"191.236.119.31/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.237.219.202/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"191.237.240.43/32\",\r\n
+ \ \"191.237.240.44/32\",\r\n \"191.237.240.46/32\",\r\n \"191.238.6.43/32\",\r\n
+ \ \"191.238.6.44/31\",\r\n \"191.238.6.46/32\",\r\n \"191.238.68.11/32\",\r\n
+ \ \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"191.239.12.154/32\",\r\n \"191.239.189.48/32\",\r\n
+ \ \"191.239.192.109/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1000:4::280/123\",\r\n \"2603:1000:4:1::200/121\",\r\n
+ \ \"2603:1000:4:400::/123\",\r\n \"2603:1000:4:401::/123\",\r\n
+ \ \"2603:1000:104::640/123\",\r\n \"2603:1000:104::680/121\",\r\n
+ \ \"2603:1000:104:400::/123\",\r\n \"2603:1000:104:401::/123\",\r\n
+ \ \"2603:1000:104:800::/123\",\r\n \"2603:1000:104:801::/123\",\r\n
+ \ \"2603:1000:104:c00::/123\",\r\n \"2603:1000:104:c01::/123\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\",\r\n \"2603:1010:304::280/123\",\r\n
+ \ \"2603:1010:304:1::200/121\",\r\n \"2603:1010:304:400::/123\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\",\r\n
+ \ \"2603:1020:705::320/123\",\r\n \"2603:1020:705::380/121\",\r\n
+ \ \"2603:1020:705:400::/123\",\r\n \"2603:1020:705:401::/123\",\r\n
+ \ \"2603:1020:705:800::/123\",\r\n \"2603:1020:705:801::/123\",\r\n
+ \ \"2603:1020:705:c00::/123\",\r\n \"2603:1020:705:c01::/123\",\r\n
+ \ \"2603:1020:805::320/123\",\r\n \"2603:1020:805::380/121\",\r\n
+ \ \"2603:1020:805:400::/123\",\r\n \"2603:1020:805:401::/123\",\r\n
+ \ \"2603:1020:805:800::/123\",\r\n \"2603:1020:805:801::/123\",\r\n
+ \ \"2603:1020:805:c00::/123\",\r\n \"2603:1020:805:c01::/123\",\r\n
+ \ \"2603:1020:905::280/123\",\r\n \"2603:1020:905:1::200/121\",\r\n
+ \ \"2603:1020:905:400::/123\",\r\n \"2603:1020:a04::320/123\",\r\n
+ \ \"2603:1020:a04::380/121\",\r\n \"2603:1020:a04:400::/123\",\r\n
+ \ \"2603:1020:a04:401::/123\",\r\n \"2603:1020:a04:800::/123\",\r\n
+ \ \"2603:1020:a04:801::/123\",\r\n \"2603:1020:a04:c00::/123\",\r\n
+ \ \"2603:1020:a04:c01::/123\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\",\r\n
+ \ \"2603:1020:c04::320/123\",\r\n \"2603:1020:c04::380/121\",\r\n
+ \ \"2603:1020:c04:400::/123\",\r\n \"2603:1020:c04:401::/123\",\r\n
+ \ \"2603:1020:c04:800::/123\",\r\n \"2603:1020:c04:801::/123\",\r\n
+ \ \"2603:1020:c04:c00::/123\",\r\n \"2603:1020:c04:c01::/123\",\r\n
+ \ \"2603:1020:d04::280/123\",\r\n \"2603:1020:d04:1::200/121\",\r\n
+ \ \"2603:1020:d04:400::/123\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\",\r\n
+ \ \"2603:1020:1004:1::520/123\",\r\n \"2603:1020:1004:1::580/121\",\r\n
+ \ \"2603:1020:1004:400::400/123\",\r\n \"2603:1020:1004:402::/123\",\r\n
+ \ \"2603:1020:1004:403::/123\",\r\n \"2603:1020:1004:802::/123\",\r\n
+ \ \"2603:1020:1004:803::/123\",\r\n \"2603:1020:1004:c03::/123\",\r\n
+ \ \"2603:1020:1004:c04::/123\",\r\n \"2603:1020:1104::500/123\",\r\n
+ \ \"2603:1020:1104:1::300/121\",\r\n \"2603:1020:1104:400::420/123\",\r\n
+ \ \"2603:1020:1104:402::/123\",\r\n \"2603:1030:f:1::280/123\",\r\n
+ \ \"2603:1030:f:2::200/121\",\r\n \"2603:1030:f:402::/122\",\r\n
+ \ \"2603:1030:f:403::/122\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\",\r\n \"2603:1030:104::320/123\",\r\n
+ \ \"2603:1030:104::380/121\",\r\n \"2603:1030:104:400::/123\",\r\n
+ \ \"2603:1030:104:401::/123\",\r\n \"2603:1030:107:1::380/123\",\r\n
+ \ \"2603:1030:107:401::40/122\",\r\n \"2603:1030:107:402::40/123\",\r\n
+ \ \"2603:1030:210::320/123\",\r\n \"2603:1030:210::380/121\",\r\n
+ \ \"2603:1030:210:400::/123\",\r\n \"2603:1030:210:401::/123\",\r\n
+ \ \"2603:1030:210:800::/123\",\r\n \"2603:1030:210:801::/123\",\r\n
+ \ \"2603:1030:210:c00::/123\",\r\n \"2603:1030:210:c01::/123\",\r\n
+ \ \"2603:1030:40b:2::200/123\",\r\n \"2603:1030:40b:2::280/121\",\r\n
+ \ \"2603:1030:40b:402::/122\",\r\n \"2603:1030:40b:403::/122\",\r\n
+ \ \"2603:1030:40b:802::/122\",\r\n \"2603:1030:40b:803::/122\",\r\n
+ \ \"2603:1030:40b:c02::/122\",\r\n \"2603:1030:40b:c03::/122\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\",\r\n
+ \ \"2603:1030:504::520/123\",\r\n \"2603:1030:504::580/121\",\r\n
+ \ \"2603:1030:504:400::/123\",\r\n \"2603:1030:504:401::/123\",\r\n
+ \ \"2603:1030:504:800::/123\",\r\n \"2603:1030:504:801::/123\",\r\n
+ \ \"2603:1030:504:c00::/123\",\r\n \"2603:1030:504:c01::/123\",\r\n
+ \ \"2603:1030:608::280/123\",\r\n \"2603:1030:608:1::200/121\",\r\n
+ \ \"2603:1030:608:400::/123\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\",\r\n \"2603:1030:a07::280/123\",\r\n
+ \ \"2603:1030:a07:1::200/121\",\r\n \"2603:1030:a07:400::/123\",\r\n
+ \ \"2603:1030:b04::280/123\",\r\n \"2603:1030:b04:1::200/121\",\r\n
+ \ \"2603:1030:b04:400::/123\",\r\n \"2603:1030:c06:2::200/123\",\r\n
+ \ \"2603:1030:c06:2::280/121\",\r\n \"2603:1030:c06:401::/123\",\r\n
+ \ \"2603:1030:c06:402::/123\",\r\n \"2603:1030:c06:800::/123\",\r\n
+ \ \"2603:1030:c06:801::/123\",\r\n \"2603:1030:c06:c00::/123\",\r\n
+ \ \"2603:1030:c06:c01::/123\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\",\r\n
+ \ \"2603:1040:5::420/123\",\r\n \"2603:1040:5::480/121\",\r\n
+ \ \"2603:1040:5:400::/123\",\r\n \"2603:1040:5:401::/123\",\r\n
+ \ \"2603:1040:5:800::/123\",\r\n \"2603:1040:5:801::/123\",\r\n
+ \ \"2603:1040:5:c00::/123\",\r\n \"2603:1040:5:c01::/123\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\",\r\n
+ \ \"2603:1040:407::320/123\",\r\n \"2603:1040:407::380/121\",\r\n
+ \ \"2603:1040:407:400::/123\",\r\n \"2603:1040:407:401::/123\",\r\n
+ \ \"2603:1040:407:800::/123\",\r\n \"2603:1040:407:801::/123\",\r\n
+ \ \"2603:1040:407:c00::/123\",\r\n \"2603:1040:407:c01::/123\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\",\r\n
+ \ \"2603:1040:904::320/123\",\r\n \"2603:1040:904::380/121\",\r\n
+ \ \"2603:1040:904:400::/123\",\r\n \"2603:1040:904:401::/123\",\r\n
+ \ \"2603:1040:904:800::/123\",\r\n \"2603:1040:904:801::/123\",\r\n
+ \ \"2603:1040:904:c00::/123\",\r\n \"2603:1040:904:c01::/123\",\r\n
+ \ \"2603:1040:a06::420/123\",\r\n \"2603:1040:a06::480/121\",\r\n
+ \ \"2603:1040:a06:400::/123\",\r\n \"2603:1040:a06:401::/123\",\r\n
+ \ \"2603:1040:a06:800::/123\",\r\n \"2603:1040:a06:801::/123\",\r\n
+ \ \"2603:1040:a06:c00::/123\",\r\n \"2603:1040:a06:c01::/123\",\r\n
+ \ \"2603:1040:b04::280/123\",\r\n \"2603:1040:b04:1::200/121\",\r\n
+ \ \"2603:1040:b04:400::/123\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\",\r\n \"2603:1040:d04:1::520/123\",\r\n
+ \ \"2603:1040:d04:1::580/121\",\r\n \"2603:1040:d04:400::400/123\",\r\n
+ \ \"2603:1040:d04:402::/123\",\r\n \"2603:1040:d04:403::/123\",\r\n
+ \ \"2603:1040:d04:802::/123\",\r\n \"2603:1040:d04:803::/123\",\r\n
+ \ \"2603:1040:d04:c03::/123\",\r\n \"2603:1040:d04:c04::/123\",\r\n
+ \ \"2603:1040:e05::/123\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\",\r\n \"2603:1040:1104::500/123\",\r\n
+ \ \"2603:1040:1104:1::300/121\",\r\n \"2603:1040:1104:400::440/123\",\r\n
+ \ \"2603:1040:1104:402::/123\",\r\n \"2603:1050:6::320/123\",\r\n
+ \ \"2603:1050:6::380/121\",\r\n \"2603:1050:6:400::/123\",\r\n
+ \ \"2603:1050:6:401::/123\",\r\n \"2603:1050:6:800::/123\",\r\n
+ \ \"2603:1050:6:801::/123\",\r\n \"2603:1050:6:c00::/122\",\r\n
+ \ \"2603:1050:6:c01::/122\",\r\n \"2603:1050:403:1::200/123\",\r\n
+ \ \"2603:1050:403:1::280/121\",\r\n \"2603:1050:403:402::/123\",\r\n
+ \ \"2603:1050:403:403::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral\",\r\n \"id\": \"Sql.AustraliaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n \"20.36.105.32/29\",\r\n
+ \ \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n \"20.53.48.192/26\",\r\n
+ \ \"2603:1010:304::280/123\",\r\n \"2603:1010:304:1::200/121\",\r\n
+ \ \"2603:1010:304:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral2\",\r\n \"id\": \"Sql.AustraliaCentral2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n \"20.36.113.32/29\",\r\n
+ \ \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n \"20.53.56.128/26\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaEast\",\r\n \"id\": \"Sql.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"20.53.46.128/25\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.126.228.153/32\",\r\n
+ \ \"40.126.230.223/32\",\r\n \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n
+ \ \"40.126.250.24/32\",\r\n \"52.237.219.227/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Sql.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.70.148.251/32\",\r\n
+ \ \"13.70.155.163/32\",\r\n \"13.73.109.251/32\",\r\n \"13.77.7.78/32\",\r\n
+ \ \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n \"13.77.49.32/29\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n \"104.46.183.0/26\",\r\n
+ \ \"191.239.189.48/32\",\r\n \"191.239.192.109/32\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.BrazilSouth\",\r\n \"id\": \"Sql.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n
+ \ \"104.41.13.233/32\",\r\n \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n
+ \ \"104.41.57.82/32\",\r\n \"104.41.59.170/32\",\r\n \"191.233.200.0/27\",\r\n
+ \ \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n \"191.234.142.160/27\",\r\n
+ \ \"191.234.142.192/27\",\r\n \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n
+ \ \"191.234.145.0/27\",\r\n \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n
+ \ \"2603:1050:6::320/123\",\r\n \"2603:1050:6::380/121\",\r\n
+ \ \"2603:1050:6:400::/123\",\r\n \"2603:1050:6:401::/123\",\r\n
+ \ \"2603:1050:6:800::/123\",\r\n \"2603:1050:6:801::/123\",\r\n
+ \ \"2603:1050:6:c00::/122\",\r\n \"2603:1050:6:c01::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CanadaCentral\",\r\n
+ \ \"id\": \"Sql.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n
+ \ \"20.38.145.0/27\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n
+ \ \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n \"52.228.39.117/32\",\r\n
+ \ \"52.237.28.86/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CanadaEast\",\r\n \"id\": \"Sql.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n \"40.69.105.32/29\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"52.139.106.192/26\",\r\n
+ \ \"52.139.107.0/26\",\r\n \"52.229.122.195/32\",\r\n \"52.229.123.147/32\",\r\n
+ \ \"52.229.124.23/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CentralIndia\",\r\n
+ \ \"id\": \"Sql.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n
+ \ \"40.80.49.0/27\",\r\n \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"2603:1040:a06::420/123\",\r\n
+ \ \"2603:1040:a06::480/121\",\r\n \"2603:1040:a06:400::/123\",\r\n
+ \ \"2603:1040:a06:401::/123\",\r\n \"2603:1040:a06:800::/123\",\r\n
+ \ \"2603:1040:a06:801::/123\",\r\n \"2603:1040:a06:c00::/123\",\r\n
+ \ \"2603:1040:a06:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUS\",\r\n \"id\": \"Sql.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.215.62/32\",\r\n \"13.89.36.110/32\",\r\n
+ \ \"13.89.37.61/32\",\r\n \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n
+ \ \"13.89.168.0/26\",\r\n \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n
+ \ \"20.40.228.128/25\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"40.69.132.90/32\",\r\n
+ \ \"40.69.143.202/32\",\r\n \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.86.75.134/32\",\r\n \"40.113.200.119/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"52.165.184.67/32\",\r\n
+ \ \"52.173.205.59/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.182.136.0/26\",\r\n
+ \ \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n \"104.43.164.21/32\",\r\n
+ \ \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUSEUAP\",\r\n \"id\": \"Sql.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n \"20.46.11.128/26\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"52.180.176.154/31\",\r\n
+ \ \"52.180.183.226/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"2603:1030:f:1::280/123\",\r\n \"2603:1030:f:2::200/121\",\r\n
+ \ \"2603:1030:f:402::/122\",\r\n \"2603:1030:f:403::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastAsia\",\r\n
+ \ \"id\": \"Sql.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.99.102.124/32\",\r\n \"23.99.118.196/32\",\r\n \"52.175.33.150/32\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS\",\r\n
+ \ \"id\": \"Sql.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.62.132.160/27\",\r\n \"20.62.132.192/27\",\r\n
+ \ \"20.62.133.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"40.71.8.0/26\",\r\n \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n
+ \ \"40.71.9.192/26\",\r\n \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n
+ \ \"40.71.211.227/32\",\r\n \"40.71.226.18/32\",\r\n \"40.76.2.172/32\",\r\n
+ \ \"40.76.26.90/32\",\r\n \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n
+ \ \"40.76.66.9/32\",\r\n \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n
+ \ \"40.76.219.185/32\",\r\n \"40.78.224.0/26\",\r\n \"40.78.224.128/26\",\r\n
+ \ \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n \"40.79.152.0/26\",\r\n
+ \ \"40.79.152.192/26\",\r\n \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n
+ \ \"40.114.40.118/32\",\r\n \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n
+ \ \"40.114.46.128/32\",\r\n \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.121.143.204/32\",\r\n \"40.121.149.49/32\",\r\n
+ \ \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.179.16.95/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.45.158.30/32\",\r\n \"137.135.109.63/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.238.6.43/32\",\r\n \"191.238.6.44/31\",\r\n
+ \ \"191.238.6.46/32\",\r\n \"2603:1030:210::320/123\",\r\n
+ \ \"2603:1030:210::380/121\",\r\n \"2603:1030:210:400::/123\",\r\n
+ \ \"2603:1030:210:401::/123\",\r\n \"2603:1030:210:800::/123\",\r\n
+ \ \"2603:1030:210:801::/123\",\r\n \"2603:1030:210:c00::/123\",\r\n
+ \ \"2603:1030:210:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2\",\r\n \"id\": \"Sql.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.22.44/32\",\r\n \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n
+ \ \"20.62.58.128/25\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.70.144.0/26\",\r\n \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.84.5.64/32\",\r\n \"40.84.54.249/32\",\r\n
+ \ \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n \"52.167.105.0/26\",\r\n
+ \ \"52.167.117.226/32\",\r\n \"52.177.185.181/32\",\r\n \"52.177.197.103/32\",\r\n
+ \ \"52.177.200.215/32\",\r\n \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n
+ \ \"52.179.167.70/32\",\r\n \"52.179.178.184/32\",\r\n \"52.184.192.175/32\",\r\n
+ \ \"52.184.231.0/32\",\r\n \"52.225.222.124/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS2EUAP\",\r\n
+ \ \"id\": \"Sql.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.51.17.160/27\",\r\n
+ \ \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n \"40.74.144.0/27\",\r\n
+ \ \"40.74.144.32/29\",\r\n \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n
+ \ \"52.138.89.0/27\",\r\n \"52.138.89.32/29\",\r\n \"52.225.188.46/32\",\r\n
+ \ \"52.225.188.113/32\",\r\n \"2603:1030:40b:2::200/123\",\r\n
+ \ \"2603:1030:40b:2::280/121\",\r\n \"2603:1030:40b:402::/122\",\r\n
+ \ \"2603:1030:40b:403::/122\",\r\n \"2603:1030:40b:802::/122\",\r\n
+ \ \"2603:1030:40b:803::/122\",\r\n \"2603:1030:40b:c02::/122\",\r\n
+ \ \"2603:1030:40b:c03::/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2Stage\",\r\n \"id\": \"Sql.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.31.224/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceCentral\",\r\n \"id\": \"Sql.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.47.192/26\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"51.138.210.0/26\",\r\n \"2603:1020:805::320/123\",\r\n
+ \ \"2603:1020:805::380/121\",\r\n \"2603:1020:805:400::/123\",\r\n
+ \ \"2603:1020:805:401::/123\",\r\n \"2603:1020:805:800::/123\",\r\n
+ \ \"2603:1020:805:801::/123\",\r\n \"2603:1020:805:c00::/123\",\r\n
+ \ \"2603:1020:805:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceSouth\",\r\n \"id\": \"Sql.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.176.0/27\",\r\n \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n
+ \ \"40.79.177.32/29\",\r\n \"52.136.185.0/25\",\r\n \"2603:1020:905::280/123\",\r\n
+ \ \"2603:1020:905:1::200/121\",\r\n \"2603:1020:905:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyNorth\",\r\n
+ \ \"id\": \"Sql.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"2603:1020:d04::280/123\",\r\n
+ \ \"2603:1020:d04:1::200/121\",\r\n \"2603:1020:d04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyWestCentral\",\r\n
+ \ \"id\": \"Sql.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"2603:1020:c04::320/123\",\r\n
+ \ \"2603:1020:c04::380/121\",\r\n \"2603:1020:c04:400::/123\",\r\n
+ \ \"2603:1020:c04:401::/123\",\r\n \"2603:1020:c04:800::/123\",\r\n
+ \ \"2603:1020:c04:801::/123\",\r\n \"2603:1020:c04:c00::/123\",\r\n
+ \ \"2603:1020:c04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanEast\",\r\n \"id\": \"Sql.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n \"13.78.104.32/29\",\r\n
+ \ \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n \"20.191.165.160/27\",\r\n
+ \ \"20.191.165.192/27\",\r\n \"20.191.166.0/26\",\r\n \"23.102.69.95/32\",\r\n
+ \ \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n \"40.79.184.0/27\",\r\n
+ \ \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n \"40.79.192.0/27\",\r\n
+ \ \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n \"52.185.152.149/32\",\r\n
+ \ \"52.243.32.19/32\",\r\n \"52.243.43.186/32\",\r\n \"104.41.168.103/32\",\r\n
+ \ \"104.41.169.34/32\",\r\n \"191.237.240.43/32\",\r\n \"191.237.240.44/32\",\r\n
+ \ \"191.237.240.46/32\",\r\n \"2603:1040:407::320/123\",\r\n
+ \ \"2603:1040:407::380/121\",\r\n \"2603:1040:407:400::/123\",\r\n
+ \ \"2603:1040:407:401::/123\",\r\n \"2603:1040:407:800::/123\",\r\n
+ \ \"2603:1040:407:801::/123\",\r\n \"2603:1040:407:c00::/123\",\r\n
+ \ \"2603:1040:407:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanWest\",\r\n \"id\": \"Sql.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"104.214.148.156/32\",\r\n \"104.214.150.17/32\",\r\n
+ \ \"191.238.68.11/32\",\r\n \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaCentral\",\r\n \"id\": \"Sql.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n \"20.44.25.0/27\",\r\n
+ \ \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n \"20.194.65.0/27\",\r\n
+ \ \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaSouth\",\r\n \"id\": \"Sql.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.112.160/27\",\r\n \"52.231.144.0/27\",\r\n
+ \ \"52.231.145.0/27\",\r\n \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n
+ \ \"52.231.206.133/32\",\r\n \"2603:1040:e05::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUS\",\r\n
+ \ \"id\": \"Sql.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"23.96.178.199/32\",\r\n
+ \ \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n \"23.96.205.215/32\",\r\n
+ \ \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n \"23.96.247.75/32\",\r\n
+ \ \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n \"23.98.55.75/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"52.162.104.0/26\",\r\n \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n
+ \ \"52.162.125.1/32\",\r\n \"52.162.241.250/32\",\r\n \"65.52.208.91/32\",\r\n
+ \ \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n \"65.52.218.82/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"2603:1030:608::280/123\",\r\n
+ \ \"2603:1030:608:1::200/121\",\r\n \"2603:1030:608:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUSStage\",\r\n
+ \ \"id\": \"Sql.NorthCentralUSStage\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"168.62.115.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.NorthEurope\",\r\n \"id\": \"Sql.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"23.102.16.130/32\",\r\n
+ \ \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n \"23.102.52.155/32\",\r\n
+ \ \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.113.14.53/32\",\r\n \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n
+ \ \"40.113.20.38/32\",\r\n \"40.113.93.91/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"52.138.224.0/26\",\r\n
+ \ \"52.138.224.128/26\",\r\n \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n
+ \ \"52.138.229.72/29\",\r\n \"52.146.133.128/25\",\r\n \"65.52.225.245/32\",\r\n
+ \ \"65.52.226.209/32\",\r\n \"104.41.202.30/32\",\r\n \"104.41.205.195/32\",\r\n
+ \ \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n \"104.41.211.98/32\",\r\n
+ \ \"137.135.186.126/32\",\r\n \"137.135.189.158/32\",\r\n
+ \ \"137.135.205.85/32\",\r\n \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n
+ \ \"138.91.58.227/32\",\r\n \"191.235.170.58/32\",\r\n \"191.235.193.75/32\",\r\n
+ \ \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n \"191.235.193.139/32\",\r\n
+ \ \"191.235.193.140/31\",\r\n \"191.235.209.79/32\",\r\n
+ \ \"191.237.219.202/32\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayEast\",\r\n \"id\": \"Sql.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.96.0/27\",\r\n \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n
+ \ \"51.120.104.0/27\",\r\n \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n
+ \ \"51.120.208.0/27\",\r\n \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n
+ \ \"51.120.232.192/26\",\r\n \"51.120.233.0/26\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayWest\",\r\n \"id\": \"Sql.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n
+ \ \"51.13.137.64/26\",\r\n \"51.120.216.0/27\",\r\n \"51.120.217.0/27\",\r\n
+ \ \"51.120.217.32/29\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Sql.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.0/27\",\r\n
+ \ \"102.37.160.64/26\",\r\n \"102.133.120.0/27\",\r\n \"102.133.120.32/29\",\r\n
+ \ \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n \"102.133.152.32/29\",\r\n
+ \ \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n \"102.133.248.0/27\",\r\n
+ \ \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n \"2603:1000:104::640/123\",\r\n
+ \ \"2603:1000:104::680/121\",\r\n \"2603:1000:104:400::/123\",\r\n
+ \ \"2603:1000:104:401::/123\",\r\n \"2603:1000:104:800::/123\",\r\n
+ \ \"2603:1000:104:801::/123\",\r\n \"2603:1000:104:c00::/123\",\r\n
+ \ \"2603:1000:104:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthAfricaWest\",\r\n \"id\": \"Sql.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.80.96/27\",\r\n
+ \ \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"2603:1000:4::280/123\",\r\n
+ \ \"2603:1000:4:1::200/121\",\r\n \"2603:1000:4:400::/123\",\r\n
+ \ \"2603:1000:4:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthCentralUS\",\r\n \"id\": \"Sql.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.84.223.76/32\",\r\n \"13.85.65.48/32\",\r\n
+ \ \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n \"20.45.120.0/27\",\r\n
+ \ \"20.45.121.0/27\",\r\n \"20.45.121.32/29\",\r\n \"20.49.88.0/27\",\r\n
+ \ \"20.49.88.32/29\",\r\n \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n
+ \ \"20.65.132.160/27\",\r\n \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n
+ \ \"23.98.162.75/32\",\r\n \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n
+ \ \"23.98.170.75/32\",\r\n \"23.98.170.76/31\",\r\n \"23.102.172.251/32\",\r\n
+ \ \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n \"23.102.179.187/32\",\r\n
+ \ \"40.74.254.156/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"52.171.56.10/32\",\r\n \"52.183.250.62/32\",\r\n
+ \ \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n \"104.214.17.0/26\",\r\n
+ \ \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n \"104.214.73.137/32\",\r\n
+ \ \"104.214.78.242/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SoutheastAsia\",\r\n \"id\": \"Sql.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n \"13.67.17.0/26\",\r\n
+ \ \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n \"13.67.59.217/32\",\r\n
+ \ \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n \"20.195.65.32/27\",\r\n
+ \ \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"40.78.232.0/26\",\r\n
+ \ \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n \"52.187.15.214/32\",\r\n
+ \ \"52.187.76.130/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n \"111.221.106.161/32\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"168.63.175.68/32\",\r\n \"2603:1040:5::420/123\",\r\n
+ \ \"2603:1040:5::480/121\",\r\n \"2603:1040:5:400::/123\",\r\n
+ \ \"2603:1040:5:401::/123\",\r\n \"2603:1040:5:800::/123\",\r\n
+ \ \"2603:1040:5:801::/123\",\r\n \"2603:1040:5:c00::/123\",\r\n
+ \ \"2603:1040:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthIndia\",\r\n \"id\": \"Sql.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.192.0/27\",\r\n \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n
+ \ \"40.78.193.32/29\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SwitzerlandNorth\",\r\n \"id\": \"Sql.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"2603:1020:a04::320/123\",\r\n \"2603:1020:a04::380/121\",\r\n
+ \ \"2603:1020:a04:400::/123\",\r\n \"2603:1020:a04:401::/123\",\r\n
+ \ \"2603:1020:a04:800::/123\",\r\n \"2603:1020:a04:801::/123\",\r\n
+ \ \"2603:1020:a04:c00::/123\",\r\n \"2603:1020:a04:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SwitzerlandWest\",\r\n
+ \ \"id\": \"Sql.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.107.152.0/27\",\r\n
+ \ \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n \"51.107.250.64/26\",\r\n
+ \ \"51.107.250.128/26\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAECentral\",\r\n
+ \ \"id\": \"Sql.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.37.71.64/26\",\r\n
+ \ \"20.37.71.128/26\",\r\n \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n
+ \ \"20.37.73.64/27\",\r\n \"20.37.73.96/29\",\r\n \"2603:1040:b04::280/123\",\r\n
+ \ \"2603:1040:b04:1::200/121\",\r\n \"2603:1040:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAENorth\",\r\n
+ \ \"id\": \"Sql.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.64/26\",\r\n
+ \ \"20.38.143.128/26\",\r\n \"20.38.152.24/29\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"65.52.248.0/27\",\r\n
+ \ \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n \"2603:1040:904::320/123\",\r\n
+ \ \"2603:1040:904::380/121\",\r\n \"2603:1040:904:400::/123\",\r\n
+ \ \"2603:1040:904:401::/123\",\r\n \"2603:1040:904:800::/123\",\r\n
+ \ \"2603:1040:904:801::/123\",\r\n \"2603:1040:904:c00::/123\",\r\n
+ \ \"2603:1040:904:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKNorth\",\r\n \"id\": \"Sql.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"51.142.211.129/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.UKSouth\",\r\n \"id\": \"Sql.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.140.77.9/32\",\r\n \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n
+ \ \"51.140.144.0/27\",\r\n \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n
+ \ \"51.140.180.9/32\",\r\n \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n
+ \ \"51.140.184.12/32\",\r\n \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n
+ \ \"51.143.212.64/26\",\r\n \"2603:1020:705::320/123\",\r\n
+ \ \"2603:1020:705::380/121\",\r\n \"2603:1020:705:400::/123\",\r\n
+ \ \"2603:1020:705:401::/123\",\r\n \"2603:1020:705:800::/123\",\r\n
+ \ \"2603:1020:705:801::/123\",\r\n \"2603:1020:705:c00::/123\",\r\n
+ \ \"2603:1020:705:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKWest\",\r\n \"id\": \"Sql.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.58.66.128/25\",\r\n \"51.140.208.64/27\",\r\n
+ \ \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n \"51.140.209.32/29\",\r\n
+ \ \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n \"51.141.15.53/32\",\r\n
+ \ \"51.141.25.212/32\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestCentralUS\",\r\n
+ \ \"id\": \"Sql.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.78.144.57/32\",\r\n
+ \ \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n \"13.78.151.189/32\",\r\n
+ \ \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n \"13.78.178.151/32\",\r\n
+ \ \"13.78.248.32/27\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"2603:1030:b04::280/123\",\r\n
+ \ \"2603:1030:b04:1::200/121\",\r\n \"2603:1030:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestEurope\",\r\n
+ \ \"id\": \"Sql.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"20.61.99.192/26\",\r\n \"20.61.102.0/26\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.101.64.10/32\",\r\n \"40.68.37.158/32\",\r\n
+ \ \"40.68.215.206/32\",\r\n \"40.68.220.16/32\",\r\n \"40.74.51.145/32\",\r\n
+ \ \"40.74.53.36/32\",\r\n \"40.74.60.91/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.118.12.208/32\",\r\n \"52.166.76.0/32\",\r\n \"52.166.131.195/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"104.40.155.247/32\",\r\n
+ \ \"104.40.168.64/26\",\r\n \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n
+ \ \"104.40.169.32/29\",\r\n \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n
+ \ \"104.40.220.28/32\",\r\n \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n
+ \ \"104.40.237.111/32\",\r\n \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.47.157.97/32\",\r\n
+ \ \"137.116.203.91/32\",\r\n \"168.63.13.214/32\",\r\n \"168.63.98.91/32\",\r\n
+ \ \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestIndia\",\r\n \"id\": \"Sql.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n
+ \ \"104.211.144.0/27\",\r\n \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n
+ \ \"104.211.145.32/29\",\r\n \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n
+ \ \"104.211.190.46/32\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestUS\",\r\n
+ \ \"id\": \"Sql.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.86.216.0/25\",\r\n
+ \ \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n \"13.86.217.0/25\",\r\n
+ \ \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n \"13.86.217.224/29\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.66.3.64/26\",\r\n \"20.66.3.128/26\",\r\n
+ \ \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n \"23.99.10.185/32\",\r\n
+ \ \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n \"23.99.34.78/32\",\r\n
+ \ \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n \"23.99.57.14/32\",\r\n
+ \ \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n \"23.99.90.75/32\",\r\n
+ \ \"23.99.91.130/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.83.178.165/32\",\r\n
+ \ \"40.83.186.249/32\",\r\n \"40.112.139.250/32\",\r\n \"40.112.240.0/27\",\r\n
+ \ \"40.112.246.0/27\",\r\n \"40.118.129.167/32\",\r\n \"40.118.170.1/32\",\r\n
+ \ \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n \"40.118.249.123/32\",\r\n
+ \ \"40.118.250.19/32\",\r\n \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n
+ \ \"104.40.54.130/32\",\r\n \"104.40.82.151/32\",\r\n \"104.42.120.235/32\",\r\n
+ \ \"104.42.127.95/32\",\r\n \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n
+ \ \"104.42.192.190/32\",\r\n \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n
+ \ \"104.42.237.198/32\",\r\n \"104.42.238.205/32\",\r\n \"104.210.32.128/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n
+ \ \"138.91.240.14/32\",\r\n \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n
+ \ \"138.91.251.139/32\",\r\n \"191.236.119.31/32\",\r\n \"191.239.12.154/32\",\r\n
+ \ \"2603:1030:a07::280/123\",\r\n \"2603:1030:a07:1::200/121\",\r\n
+ \ \"2603:1030:a07:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestUS2\",\r\n \"id\": \"Sql.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.66.136.0/26\",\r\n
+ \ \"13.66.136.192/29\",\r\n \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n
+ \ \"13.66.229.222/32\",\r\n \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n
+ \ \"13.66.230.64/32\",\r\n \"13.66.230.103/32\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.229.17.93/32\",\r\n \"52.246.251.248/32\",\r\n
+ \ \"2603:1030:c06:2::200/123\",\r\n \"2603:1030:c06:2::280/121\",\r\n
+ \ \"2603:1030:c06:401::/123\",\r\n \"2603:1030:c06:402::/123\",\r\n
+ \ \"2603:1030:c06:800::/123\",\r\n \"2603:1030:c06:801::/123\",\r\n
+ \ \"2603:1030:c06:c00::/123\",\r\n \"2603:1030:c06:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"SqlManagement\",\r\n
+ \ \"id\": \"SqlManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"SqlManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.155.40/32\",\r\n \"13.66.140.96/27\",\r\n
+ \ \"13.66.141.192/27\",\r\n \"13.67.8.192/27\",\r\n \"13.67.10.32/27\",\r\n
+ \ \"13.69.64.96/27\",\r\n \"13.69.67.0/27\",\r\n \"13.69.106.96/27\",\r\n
+ \ \"13.69.107.32/27\",\r\n \"13.69.227.96/27\",\r\n \"13.69.229.192/27\",\r\n
+ \ \"13.70.72.160/27\",\r\n \"13.70.73.224/27\",\r\n \"13.71.119.167/32\",\r\n
+ \ \"13.71.123.234/32\",\r\n \"13.71.170.160/27\",\r\n \"13.71.173.96/27\",\r\n
+ \ \"13.71.195.0/27\",\r\n \"13.71.196.96/27\",\r\n \"13.73.240.192/27\",\r\n
+ \ \"13.73.242.0/27\",\r\n \"13.73.249.176/28\",\r\n \"13.74.107.96/27\",\r\n
+ \ \"13.74.107.224/27\",\r\n \"13.75.36.32/27\",\r\n \"13.75.39.32/27\",\r\n
+ \ \"13.77.50.192/27\",\r\n \"13.77.53.0/27\",\r\n \"13.78.106.224/27\",\r\n
+ \ \"13.78.109.64/27\",\r\n \"13.78.181.246/32\",\r\n \"13.78.182.82/32\",\r\n
+ \ \"13.84.52.76/32\",\r\n \"13.86.219.96/27\",\r\n \"13.87.39.133/32\",\r\n
+ \ \"13.87.39.173/32\",\r\n \"13.87.56.192/27\",\r\n \"13.87.58.0/27\",\r\n
+ \ \"13.87.122.192/27\",\r\n \"13.87.124.0/27\",\r\n \"13.89.170.224/27\",\r\n
+ \ \"13.89.174.96/27\",\r\n \"13.92.242.41/32\",\r\n \"13.94.47.38/32\",\r\n
+ \ \"13.104.248.32/27\",\r\n \"13.104.248.96/27\",\r\n \"20.36.46.202/32\",\r\n
+ \ \"20.36.46.220/32\",\r\n \"20.36.75.75/32\",\r\n \"20.36.75.114/32\",\r\n
+ \ \"20.36.108.0/27\",\r\n \"20.36.108.64/27\",\r\n \"20.36.115.160/27\",\r\n
+ \ \"20.36.115.192/27\",\r\n \"20.36.123.0/28\",\r\n \"20.37.67.64/28\",\r\n
+ \ \"20.37.76.0/27\",\r\n \"20.37.76.64/27\",\r\n \"20.37.198.96/28\",\r\n
+ \ \"20.37.227.0/28\",\r\n \"20.38.87.208/28\",\r\n \"20.38.128.0/27\",\r\n
+ \ \"20.38.139.64/28\",\r\n \"20.38.146.192/27\",\r\n \"20.38.147.32/27\",\r\n
+ \ \"20.39.12.240/28\",\r\n \"20.40.200.176/28\",\r\n \"20.41.67.96/28\",\r\n
+ \ \"20.41.197.32/28\",\r\n \"20.42.131.34/31\",\r\n \"20.42.230.96/28\",\r\n
+ \ \"20.43.43.176/28\",\r\n \"20.43.70.80/28\",\r\n \"20.43.120.192/27\",\r\n
+ \ \"20.44.4.0/26\",\r\n \"20.44.8.128/27\",\r\n \"20.44.16.160/27\",\r\n
+ \ \"20.44.26.192/27\",\r\n \"20.44.27.160/27\",\r\n \"20.45.75.228/32\",\r\n
+ \ \"20.45.75.230/32\",\r\n \"20.45.114.208/28\",\r\n \"20.45.122.192/27\",\r\n
+ \ \"20.45.126.32/27\",\r\n \"20.45.197.240/28\",\r\n \"20.49.83.160/27\",\r\n
+ \ \"20.49.83.192/27\",\r\n \"20.49.91.160/27\",\r\n \"20.49.93.96/27\",\r\n
+ \ \"20.49.99.48/28\",\r\n \"20.49.109.64/28\",\r\n \"20.49.113.16/28\",\r\n
+ \ \"20.49.120.48/28\",\r\n \"20.50.1.224/28\",\r\n \"20.72.21.16/28\",\r\n
+ \ \"20.72.28.224/27\",\r\n \"20.72.30.128/27\",\r\n \"20.150.165.160/28\",\r\n
+ \ \"20.150.170.32/27\",\r\n \"20.150.170.128/27\",\r\n \"20.150.172.96/27\",\r\n
+ \ \"20.150.178.192/26\",\r\n \"20.150.186.192/26\",\r\n \"20.187.194.208/28\",\r\n
+ \ \"20.192.98.192/26\",\r\n \"20.192.165.192/28\",\r\n \"20.192.230.16/28\",\r\n
+ \ \"20.192.238.32/27\",\r\n \"20.192.238.64/27\",\r\n \"20.193.205.160/27\",\r\n
+ \ \"20.193.205.192/27\",\r\n \"20.194.67.128/26\",\r\n \"23.96.185.63/32\",\r\n
+ \ \"23.96.243.93/32\",\r\n \"23.97.120.24/32\",\r\n \"23.98.82.128/27\",\r\n
+ \ \"23.98.83.32/27\",\r\n \"23.98.104.144/28\",\r\n \"23.99.97.255/32\",\r\n
+ \ \"40.64.132.112/28\",\r\n \"40.65.124.161/32\",\r\n \"40.67.50.224/28\",\r\n
+ \ \"40.67.58.32/27\",\r\n \"40.67.60.32/27\",\r\n \"40.69.106.192/27\",\r\n
+ \ \"40.69.108.0/27\",\r\n \"40.69.161.215/32\",\r\n \"40.70.72.228/32\",\r\n
+ \ \"40.70.146.96/27\",\r\n \"40.70.148.64/27\",\r\n \"40.71.10.224/27\",\r\n
+ \ \"40.71.13.192/27\",\r\n \"40.71.215.148/32\",\r\n \"40.74.100.192/27\",\r\n
+ \ \"40.74.101.224/27\",\r\n \"40.74.147.0/27\",\r\n \"40.74.147.96/27\",\r\n
+ \ \"40.74.147.128/27\",\r\n \"40.74.254.227/32\",\r\n \"40.75.34.64/27\",\r\n
+ \ \"40.75.35.0/27\",\r\n \"40.78.194.192/27\",\r\n \"40.78.196.0/27\",\r\n
+ \ \"40.78.203.128/27\",\r\n \"40.78.203.192/27\",\r\n \"40.78.226.224/27\",\r\n
+ \ \"40.78.229.0/27\",\r\n \"40.78.234.64/27\",\r\n \"40.78.234.224/27\",\r\n
+ \ \"40.78.242.192/27\",\r\n \"40.78.243.128/27\",\r\n \"40.78.250.128/27\",\r\n
+ \ \"40.78.251.64/27\",\r\n \"40.79.32.162/32\",\r\n \"40.79.130.160/27\",\r\n
+ \ \"40.79.132.0/27\",\r\n \"40.79.138.64/27\",\r\n \"40.79.138.160/27\",\r\n
+ \ \"40.79.146.64/27\",\r\n \"40.79.146.160/27\",\r\n \"40.79.154.0/27\",\r\n
+ \ \"40.79.154.224/27\",\r\n \"40.79.156.0/27\",\r\n \"40.79.162.64/27\",\r\n
+ \ \"40.79.162.160/27\",\r\n \"40.79.170.160/27\",\r\n \"40.79.171.0/27\",\r\n
+ \ \"40.79.178.192/27\",\r\n \"40.79.179.224/27\",\r\n \"40.79.186.96/27\",\r\n
+ \ \"40.79.187.128/27\",\r\n \"40.79.194.0/27\",\r\n \"40.79.195.128/27\",\r\n
+ \ \"40.80.50.192/27\",\r\n \"40.80.51.32/27\",\r\n \"40.80.62.0/28\",\r\n
+ \ \"40.80.172.32/28\",\r\n \"40.89.20.144/28\",\r\n \"40.112.243.128/27\",\r\n
+ \ \"40.120.75.192/26\",\r\n \"40.123.207.224/32\",\r\n \"40.123.219.239/32\",\r\n
+ \ \"40.126.238.47/32\",\r\n \"40.127.3.232/32\",\r\n \"51.12.42.0/28\",\r\n
+ \ \"51.12.98.32/27\",\r\n \"51.12.98.128/27\",\r\n \"51.12.194.0/28\",\r\n
+ \ \"51.12.202.32/27\",\r\n \"51.12.202.128/27\",\r\n \"51.12.226.192/26\",\r\n
+ \ \"51.12.234.192/26\",\r\n \"51.104.8.192/27\",\r\n \"51.104.28.240/28\",\r\n
+ \ \"51.105.66.192/27\",\r\n \"51.105.67.128/27\",\r\n \"51.105.74.192/27\",\r\n
+ \ \"51.105.75.32/27\",\r\n \"51.105.83.0/28\",\r\n \"51.105.90.160/28\",\r\n
+ \ \"51.107.51.0/28\",\r\n \"51.107.58.32/27\",\r\n \"51.107.60.0/27\",\r\n
+ \ \"51.107.147.0/28\",\r\n \"51.107.154.32/27\",\r\n \"51.107.156.0/27\",\r\n
+ \ \"51.116.49.144/28\",\r\n \"51.116.58.32/27\",\r\n \"51.116.60.0/27\",\r\n
+ \ \"51.116.145.144/28\",\r\n \"51.116.154.96/27\",\r\n \"51.116.156.0/27\",\r\n
+ \ \"51.116.242.192/26\",\r\n \"51.116.243.32/27\",\r\n \"51.116.250.192/27\",\r\n
+ \ \"51.116.253.96/27\",\r\n \"51.120.43.64/28\",\r\n \"51.120.98.32/27\",\r\n
+ \ \"51.120.100.0/27\",\r\n \"51.120.106.192/26\",\r\n \"51.120.210.192/26\",\r\n
+ \ \"51.120.218.32/27\",\r\n \"51.120.218.128/27\",\r\n \"51.120.227.64/28\",\r\n
+ \ \"51.137.164.96/28\",\r\n \"51.140.121.92/32\",\r\n \"51.140.127.51/32\",\r\n
+ \ \"51.140.146.224/27\",\r\n \"51.140.210.224/27\",\r\n \"51.140.212.32/27\",\r\n
+ \ \"51.141.38.88/32\",\r\n \"51.141.39.175/32\",\r\n \"51.142.213.97/32\",\r\n
+ \ \"51.142.215.251/32\",\r\n \"51.143.195.0/28\",\r\n \"52.136.51.80/28\",\r\n
+ \ \"52.136.139.224/32\",\r\n \"52.136.140.157/32\",\r\n \"52.138.90.96/27\",\r\n
+ \ \"52.138.226.96/27\",\r\n \"52.138.226.224/27\",\r\n \"52.140.108.80/28\",\r\n
+ \ \"52.143.136.162/32\",\r\n \"52.143.139.82/32\",\r\n \"52.150.139.78/31\",\r\n
+ \ \"52.150.152.32/28\",\r\n \"52.162.107.128/27\",\r\n \"52.162.110.192/27\",\r\n
+ \ \"52.164.200.174/32\",\r\n \"52.165.237.178/32\",\r\n \"52.166.50.138/32\",\r\n
+ \ \"52.167.106.96/27\",\r\n \"52.167.106.224/27\",\r\n \"52.169.6.70/32\",\r\n
+ \ \"52.172.193.99/32\",\r\n \"52.172.204.185/32\",\r\n \"52.173.243.204/32\",\r\n
+ \ \"52.175.156.251/32\",\r\n \"52.182.138.224/27\",\r\n \"52.182.139.96/27\",\r\n
+ \ \"52.183.64.43/32\",\r\n \"52.185.145.40/32\",\r\n \"52.185.154.136/32\",\r\n
+ \ \"52.187.185.17/32\",\r\n \"52.225.130.171/32\",\r\n \"52.228.84.112/28\",\r\n
+ \ \"52.230.122.197/32\",\r\n \"52.231.18.160/27\",\r\n \"52.231.19.224/27\",\r\n
+ \ \"52.231.30.200/32\",\r\n \"52.231.34.21/32\",\r\n \"52.231.146.224/27\",\r\n
+ \ \"52.231.148.32/27\",\r\n \"52.231.202.76/32\",\r\n \"52.231.206.187/32\",\r\n
+ \ \"52.233.30.2/32\",\r\n \"52.233.38.82/32\",\r\n \"52.233.130.100/32\",\r\n
+ \ \"52.235.36.131/32\",\r\n \"52.236.186.96/27\",\r\n \"52.236.187.32/27\",\r\n
+ \ \"52.237.244.169/32\",\r\n \"52.242.36.170/32\",\r\n \"52.243.87.200/32\",\r\n
+ \ \"52.246.154.192/27\",\r\n \"52.246.155.32/27\",\r\n \"52.255.51.21/32\",\r\n
+ \ \"65.52.252.0/27\",\r\n \"65.52.252.64/27\",\r\n \"102.133.27.224/27\",\r\n
+ \ \"102.133.28.32/27\",\r\n \"102.133.58.208/28\",\r\n \"102.133.72.35/32\",\r\n
+ \ \"102.133.72.42/32\",\r\n \"102.133.122.192/27\",\r\n \"102.133.123.192/27\",\r\n
+ \ \"102.133.155.224/27\",\r\n \"102.133.156.32/27\",\r\n
+ \ \"102.133.160.35/32\",\r\n \"102.133.218.128/28\",\r\n
+ \ \"102.133.250.192/27\",\r\n \"102.133.251.32/27\",\r\n
+ \ \"104.42.96.175/32\",\r\n \"104.208.16.96/27\",\r\n \"104.208.144.96/27\",\r\n
+ \ \"104.211.81.160/27\",\r\n \"104.211.146.192/27\",\r\n
+ \ \"104.211.187.232/32\",\r\n \"104.214.19.0/27\",\r\n \"104.214.108.80/32\",\r\n
+ \ \"104.215.17.87/32\",\r\n \"191.232.163.58/32\",\r\n \"191.233.11.128/28\",\r\n
+ \ \"191.233.54.32/27\",\r\n \"191.233.54.192/27\",\r\n \"191.233.203.160/27\",\r\n
+ \ \"191.233.205.32/27\",\r\n \"191.234.136.64/28\",\r\n \"191.234.146.192/26\",\r\n
+ \ \"191.234.154.192/26\",\r\n \"2603:1000:4:402::380/122\",\r\n
+ \ \"2603:1000:104:402::380/122\",\r\n \"2603:1000:104:802::260/123\",\r\n
+ \ \"2603:1000:104:802::280/123\",\r\n \"2603:1000:104:c02::260/123\",\r\n
+ \ \"2603:1000:104:c02::280/123\",\r\n \"2603:1010:6:402::380/122\",\r\n
+ \ \"2603:1010:6:802::260/123\",\r\n \"2603:1010:6:802::280/123\",\r\n
+ \ \"2603:1010:6:c02::260/123\",\r\n \"2603:1010:6:c02::280/123\",\r\n
+ \ \"2603:1010:101:402::380/122\",\r\n \"2603:1010:304:402::380/122\",\r\n
+ \ \"2603:1010:404:402::380/122\",\r\n \"2603:1020:5:402::380/122\",\r\n
+ \ \"2603:1020:5:802::260/123\",\r\n \"2603:1020:5:802::280/123\",\r\n
+ \ \"2603:1020:5:c02::260/123\",\r\n \"2603:1020:5:c02::280/123\",\r\n
+ \ \"2603:1020:206:402::380/122\",\r\n \"2603:1020:206:802::260/123\",\r\n
+ \ \"2603:1020:206:802::280/123\",\r\n \"2603:1020:206:c02::260/123\",\r\n
+ \ \"2603:1020:206:c02::280/123\",\r\n \"2603:1020:305:402::380/122\",\r\n
+ \ \"2603:1020:405:402::380/122\",\r\n \"2603:1020:605:402::380/122\",\r\n
+ \ \"2603:1020:705:402::380/122\",\r\n \"2603:1020:705:802::260/123\",\r\n
+ \ \"2603:1020:705:802::280/123\",\r\n \"2603:1020:705:c02::260/123\",\r\n
+ \ \"2603:1020:705:c02::280/123\",\r\n \"2603:1020:805:402::380/122\",\r\n
+ \ \"2603:1020:805:802::260/123\",\r\n \"2603:1020:805:802::280/123\",\r\n
+ \ \"2603:1020:805:c02::260/123\",\r\n \"2603:1020:805:c02::280/123\",\r\n
+ \ \"2603:1020:905:402::380/122\",\r\n \"2603:1020:a04:402::380/122\",\r\n
+ \ \"2603:1020:a04:802::260/123\",\r\n \"2603:1020:a04:802::280/123\",\r\n
+ \ \"2603:1020:a04:c02::260/123\",\r\n \"2603:1020:a04:c02::280/123\",\r\n
+ \ \"2603:1020:b04:402::380/122\",\r\n \"2603:1020:c04:402::380/122\",\r\n
+ \ \"2603:1020:c04:802::260/123\",\r\n \"2603:1020:c04:802::280/123\",\r\n
+ \ \"2603:1020:c04:c02::260/123\",\r\n \"2603:1020:c04:c02::280/123\",\r\n
+ \ \"2603:1020:d04:402::380/122\",\r\n \"2603:1020:e04:3::400/123\",\r\n
+ \ \"2603:1020:e04:402::380/122\",\r\n \"2603:1020:e04:802::260/123\",\r\n
+ \ \"2603:1020:e04:802::280/123\",\r\n \"2603:1020:e04:c02::260/123\",\r\n
+ \ \"2603:1020:e04:c02::280/123\",\r\n \"2603:1020:f04:402::380/122\",\r\n
+ \ \"2603:1020:1004:1::500/123\",\r\n \"2603:1020:1004:400::200/122\",\r\n
+ \ \"2603:1020:1004:800::300/122\",\r\n \"2603:1020:1004:c02::2c0/122\",\r\n
+ \ \"2603:1020:1104:1::1e0/123\",\r\n \"2603:1020:1104:400::340/122\",\r\n
+ \ \"2603:1030:f:2::6e0/123\",\r\n \"2603:1030:f:400::b80/122\",\r\n
+ \ \"2603:1030:10:402::380/122\",\r\n \"2603:1030:10:802::260/123\",\r\n
+ \ \"2603:1030:10:802::280/123\",\r\n \"2603:1030:10:c02::260/123\",\r\n
+ \ \"2603:1030:10:c02::280/123\",\r\n \"2603:1030:104:402::380/122\",\r\n
+ \ \"2603:1030:107:1::220/123\",\r\n \"2603:1030:107:400::2c0/122\",\r\n
+ \ \"2603:1030:210:402::380/122\",\r\n \"2603:1030:210:802::260/123\",\r\n
+ \ \"2603:1030:210:802::280/123\",\r\n \"2603:1030:210:c02::260/123\",\r\n
+ \ \"2603:1030:210:c02::280/123\",\r\n \"2603:1030:40b:400::b80/122\",\r\n
+ \ \"2603:1030:40b:800::260/123\",\r\n \"2603:1030:40b:800::280/123\",\r\n
+ \ \"2603:1030:40b:c00::260/123\",\r\n \"2603:1030:40b:c00::280/123\",\r\n
+ \ \"2603:1030:40c:402::380/122\",\r\n \"2603:1030:40c:802::260/123\",\r\n
+ \ \"2603:1030:40c:802::280/123\",\r\n \"2603:1030:40c:c02::260/123\",\r\n
+ \ \"2603:1030:40c:c02::280/123\",\r\n \"2603:1030:504::500/123\",\r\n
+ \ \"2603:1030:504:402::200/122\",\r\n \"2603:1030:504:802::300/122\",\r\n
+ \ \"2603:1030:504:c02::2c0/122\",\r\n \"2603:1030:608:402::380/122\",\r\n
+ \ \"2603:1030:807:402::380/122\",\r\n \"2603:1030:807:802::260/123\",\r\n
+ \ \"2603:1030:807:802::280/123\",\r\n \"2603:1030:807:c02::260/123\",\r\n
+ \ \"2603:1030:807:c02::280/123\",\r\n \"2603:1030:a07:402::300/122\",\r\n
+ \ \"2603:1030:b04:402::380/122\",\r\n \"2603:1030:c06:400::b80/122\",\r\n
+ \ \"2603:1030:c06:802::260/123\",\r\n \"2603:1030:c06:802::280/123\",\r\n
+ \ \"2603:1030:c06:c02::260/123\",\r\n \"2603:1030:c06:c02::280/123\",\r\n
+ \ \"2603:1030:f05:402::380/122\",\r\n \"2603:1030:f05:802::260/123\",\r\n
+ \ \"2603:1030:f05:802::280/123\",\r\n \"2603:1030:f05:c02::260/123\",\r\n
+ \ \"2603:1030:f05:c02::280/123\",\r\n \"2603:1030:1005:402::380/122\",\r\n
+ \ \"2603:1040:5:402::380/122\",\r\n \"2603:1040:5:802::260/123\",\r\n
+ \ \"2603:1040:5:802::280/123\",\r\n \"2603:1040:5:c02::260/123\",\r\n
+ \ \"2603:1040:5:c02::280/123\",\r\n \"2603:1040:207:402::380/122\",\r\n
+ \ \"2603:1040:407:402::380/122\",\r\n \"2603:1040:407:802::260/123\",\r\n
+ \ \"2603:1040:407:802::280/123\",\r\n \"2603:1040:407:c02::260/123\",\r\n
+ \ \"2603:1040:407:c02::280/123\",\r\n \"2603:1040:606:402::380/122\",\r\n
+ \ \"2603:1040:806:402::380/122\",\r\n \"2603:1040:904:402::380/122\",\r\n
+ \ \"2603:1040:904:802::260/123\",\r\n \"2603:1040:904:802::280/123\",\r\n
+ \ \"2603:1040:904:c02::260/123\",\r\n \"2603:1040:904:c02::280/123\",\r\n
+ \ \"2603:1040:a06:402::380/122\",\r\n \"2603:1040:a06:802::260/123\",\r\n
+ \ \"2603:1040:a06:802::280/123\",\r\n \"2603:1040:a06:c02::260/123\",\r\n
+ \ \"2603:1040:a06:c02::280/123\",\r\n \"2603:1040:b04:402::380/122\",\r\n
+ \ \"2603:1040:c06:402::380/122\",\r\n \"2603:1040:d04:1::500/123\",\r\n
+ \ \"2603:1040:d04:400::200/122\",\r\n \"2603:1040:d04:800::300/122\",\r\n
+ \ \"2603:1040:d04:c02::2c0/122\",\r\n \"2603:1040:f05:2::240/123\",\r\n
+ \ \"2603:1040:f05:402::380/122\",\r\n \"2603:1040:f05:802::260/123\",\r\n
+ \ \"2603:1040:f05:802::280/123\",\r\n \"2603:1040:f05:c02::260/123\",\r\n
+ \ \"2603:1040:f05:c02::280/123\",\r\n \"2603:1040:1104:1::1e0/123\",\r\n
+ \ \"2603:1040:1104:400::340/122\",\r\n \"2603:1050:6:402::380/122\",\r\n
+ \ \"2603:1050:6:802::260/123\",\r\n \"2603:1050:6:802::280/123\",\r\n
+ \ \"2603:1050:6:c02::260/123\",\r\n \"2603:1050:6:c02::280/123\",\r\n
+ \ \"2603:1050:403:400::260/123\",\r\n \"2603:1050:403:400::280/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage\",\r\n
+ \ \"id\": \"Storage\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureStorage\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n \"13.65.160.16/28\",\r\n
+ \ \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.67.155.16/28\",\r\n
+ \ \"13.68.120.64/28\",\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.69.40.16/28\",\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.71.200.64/28\",\r\n \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n
+ \ \"13.71.202.16/28\",\r\n \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n
+ \ \"13.72.235.64/28\",\r\n \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n
+ \ \"13.72.237.48/28\",\r\n \"13.72.237.64/28\",\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n
+ \ \"13.74.208.144/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"13.76.104.16/28\",\r\n \"13.77.8.16/28\",\r\n
+ \ \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n \"13.77.8.96/28\",\r\n
+ \ \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n \"13.77.8.192/27\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"13.77.184.64/28\",\r\n \"13.78.152.64/28\",\r\n \"13.78.240.16/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n \"13.82.152.48/28\",\r\n
+ \ \"13.82.152.80/28\",\r\n \"13.83.72.16/28\",\r\n \"13.84.56.16/28\",\r\n
+ \ \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n \"13.87.40.64/28\",\r\n
+ \ \"13.87.40.96/28\",\r\n \"13.87.104.64/28\",\r\n \"13.87.104.96/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"13.95.96.176/28\",\r\n
+ \ \"13.95.240.16/28\",\r\n \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n
+ \ \"20.38.96.0/19\",\r\n \"20.47.0.0/18\",\r\n \"20.60.0.0/16\",\r\n
+ \ \"20.150.0.0/17\",\r\n \"20.157.32.0/19\",\r\n \"20.157.128.0/19\",\r\n
+ \ \"23.96.64.64/26\",\r\n \"23.97.112.64/26\",\r\n \"23.98.49.0/26\",\r\n
+ \ \"23.98.49.192/26\",\r\n \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n
+ \ \"23.98.55.144/28\",\r\n \"23.98.56.0/26\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.98.160.64/26\",\r\n \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n
+ \ \"23.98.192.64/26\",\r\n \"23.98.255.64/26\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"23.99.160.64/26\",\r\n \"23.99.160.192/28\",\r\n \"23.102.206.0/28\",\r\n
+ \ \"23.102.206.128/28\",\r\n \"23.102.206.192/28\",\r\n \"40.68.176.16/28\",\r\n
+ \ \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n \"40.68.232.48/28\",\r\n
+ \ \"40.69.176.16/28\",\r\n \"40.70.88.0/28\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.78.72.16/28\",\r\n
+ \ \"40.78.112.64/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.79.88.16/28\",\r\n \"40.83.24.16/28\",\r\n \"40.83.24.80/28\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.104.176/28\",\r\n \"40.83.104.208/28\",\r\n
+ \ \"40.83.225.32/28\",\r\n \"40.83.227.16/28\",\r\n \"40.84.8.32/28\",\r\n
+ \ \"40.84.11.80/28\",\r\n \"40.85.105.32/28\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"40.86.232.64/28\",\r\n
+ \ \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n \"40.86.232.176/28\",\r\n
+ \ \"40.86.232.192/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"40.113.27.176/28\",\r\n \"40.114.152.16/28\",\r\n
+ \ \"40.114.152.48/28\",\r\n \"40.115.169.32/28\",\r\n \"40.115.175.16/28\",\r\n
+ \ \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n \"40.115.229.16/28\",\r\n
+ \ \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n \"40.115.231.112/28\",\r\n
+ \ \"40.115.231.128/28\",\r\n \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n
+ \ \"40.116.232.48/28\",\r\n \"40.116.232.96/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"40.118.72.176/28\",\r\n
+ \ \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n \"40.118.73.208/28\",\r\n
+ \ \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"51.140.16.16/28\",\r\n \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n
+ \ \"51.140.168.112/28\",\r\n \"51.140.168.128/28\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/23\",\r\n \"51.141.130.0/25\",\r\n \"52.161.112.16/28\",\r\n
+ \ \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n \"52.161.168.32/28\",\r\n
+ \ \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n \"52.162.56.64/27\",\r\n
+ \ \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n \"52.163.176.16/28\",\r\n
+ \ \"52.163.232.16/28\",\r\n \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n
+ \ \"52.164.232.32/28\",\r\n \"52.164.232.64/28\",\r\n \"52.165.104.16/28\",\r\n
+ \ \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n \"52.165.104.112/28\",\r\n
+ \ \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n \"52.165.136.32/28\",\r\n
+ \ \"52.165.240.64/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n
+ \ \"52.167.240.16/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.171.144.32/27\",\r\n
+ \ \"52.171.144.80/28\",\r\n \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n
+ \ \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n \"52.174.224.32/28\",\r\n
+ \ \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n \"52.174.224.128/28\",\r\n
+ \ \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.177.208.80/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.179.24.16/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n \"52.182.176.32/28\",\r\n
+ \ \"52.182.176.64/27\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n
+ \ \"52.184.168.32/28\",\r\n \"52.184.168.96/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.80/28\",\r\n
+ \ \"52.185.112.112/28\",\r\n \"52.185.233.0/24\",\r\n \"52.186.112.32/27\",\r\n
+ \ \"52.187.141.32/27\",\r\n \"52.189.177.0/24\",\r\n \"52.190.240.16/28\",\r\n
+ \ \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n \"52.190.240.112/28\",\r\n
+ \ \"52.190.240.128/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.225.40.32/27\",\r\n \"52.225.136.16/28\",\r\n \"52.225.136.32/28\",\r\n
+ \ \"52.225.240.0/28\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.228.232.0/28\",\r\n
+ \ \"52.229.80.64/27\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n
+ \ \"52.231.80.128/28\",\r\n \"52.231.80.160/27\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.232.232.16/28\",\r\n \"52.232.232.32/28\",\r\n
+ \ \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n \"52.232.232.128/27\",\r\n
+ \ \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.236.40.16/28\",\r\n
+ \ \"52.236.40.32/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.238.56.16/28\",\r\n
+ \ \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n \"52.238.56.112/28\",\r\n
+ \ \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n \"52.238.200.32/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.128.0/20\",\r\n
+ \ \"52.239.144.0/22\",\r\n \"52.239.148.0/27\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.152.0/21\",\r\n \"52.239.160.0/22\",\r\n \"52.239.164.0/24\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/21\",\r\n \"52.239.176.128/25\",\r\n
+ \ \"52.239.177.0/24\",\r\n \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n
+ \ \"52.239.184.0/22\",\r\n \"52.239.188.0/23\",\r\n \"52.239.190.0/24\",\r\n
+ \ \"52.239.191.0/28\",\r\n \"52.239.192.0/21\",\r\n \"52.239.200.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.206.0/23\",\r\n \"52.239.208.0/20\",\r\n
+ \ \"52.239.224.0/19\",\r\n \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n
+ \ \"52.240.60.16/28\",\r\n \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n
+ \ \"52.241.88.16/28\",\r\n \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n
+ \ \"52.245.40.0/24\",\r\n \"104.41.232.16/28\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.46.31.16/28\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n
+ \ \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n \"104.211.104.128/28\",\r\n
+ \ \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n \"104.211.109.80/28\",\r\n
+ \ \"104.211.109.96/28\",\r\n \"104.211.168.16/28\",\r\n \"104.211.232.16/28\",\r\n
+ \ \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n \"104.211.232.176/28\",\r\n
+ \ \"104.214.40.16/28\",\r\n \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n
+ \ \"104.215.32.64/27\",\r\n \"104.215.35.32/27\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/25\",\r\n \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n
+ \ \"137.116.96.0/25\",\r\n \"137.116.96.128/26\",\r\n \"137.135.192.64/26\",\r\n
+ \ \"137.135.192.192/26\",\r\n \"137.135.193.192/26\",\r\n
+ \ \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.61.120.32/27\",\r\n
+ \ \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.62.0.0/26\",\r\n \"168.62.1.128/26\",\r\n \"168.62.32.0/26\",\r\n
+ \ \"168.62.32.192/26\",\r\n \"168.62.33.128/26\",\r\n \"168.62.96.128/25\",\r\n
+ \ \"168.62.128.128/26\",\r\n \"168.63.0.0/26\",\r\n \"168.63.2.64/26\",\r\n
+ \ \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n \"168.63.32.0/26\",\r\n
+ \ \"168.63.33.192/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"168.63.128.0/26\",\r\n
+ \ \"168.63.128.128/25\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n
+ \ \"168.63.130.128/26\",\r\n \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n
+ \ \"168.63.156.192/26\",\r\n \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n
+ \ \"168.63.161.64/26\",\r\n \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n
+ \ \"168.63.162.32/27\",\r\n \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n
+ \ \"168.63.162.192/26\",\r\n \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n
+ \ \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n \"191.232.221.32/28\",\r\n
+ \ \"191.233.128.0/24\",\r\n \"191.235.192.192/26\",\r\n \"191.235.193.32/28\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.192/26\",\r\n
+ \ \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n \"191.237.32.240/28\",\r\n
+ \ \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.237.232.32/28\",\r\n \"191.237.232.128/28\",\r\n
+ \ \"191.237.238.32/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\",\r\n
+ \ \"191.238.64.64/26\",\r\n \"191.238.64.192/28\",\r\n \"191.238.66.0/26\",\r\n
+ \ \"191.239.192.0/26\",\r\n \"191.239.203.0/28\",\r\n \"191.239.224.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.35.0/24\",\r\n \"20.150.124.0/24\",\r\n \"52.239.216.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral2\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.36.0/24\",\r\n \"20.150.103.0/24\",\r\n \"52.239.218.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaEast\",\r\n
+ \ \"id\": \"Storage.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.72.235.64/28\",\r\n
+ \ \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n \"13.72.237.48/28\",\r\n
+ \ \"13.72.237.64/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"20.38.112.0/23\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.150.66.0/24\",\r\n
+ \ \"20.150.92.0/24\",\r\n \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n \"104.46.31.16/28\",\r\n
+ \ \"191.238.66.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.AustraliaSoutheast\",\r\n \"id\": \"Storage.AustraliaSoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.8.16/28\",\r\n \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n
+ \ \"13.77.8.96/28\",\r\n \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n
+ \ \"13.77.8.192/27\",\r\n \"20.47.38.0/24\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n \"191.239.192.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.BrazilSouth\",\r\n
+ \ \"id\": \"Storage.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.60.36.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"23.97.112.64/26\",\r\n \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n
+ \ \"191.232.221.32/28\",\r\n \"191.233.128.0/24\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaCentral\",\r\n \"id\": \"Storage.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.0/25\",\r\n \"20.47.40.0/24\",\r\n \"20.60.42.0/23\",\r\n
+ \ \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.100.0/24\",\r\n \"20.157.52.0/24\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaEast\",\r\n \"id\": \"Storage.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.60.142.0/23\",\r\n
+ \ \"20.150.1.0/25\",\r\n \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"40.86.232.64/28\",\r\n \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n
+ \ \"40.86.232.176/28\",\r\n \"40.86.232.192/28\",\r\n \"52.229.80.64/27\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralIndia\",\r\n
+ \ \"id\": \"Storage.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.150.114.0/24\",\r\n \"52.239.135.64/26\",\r\n
+ \ \"52.239.202.0/24\",\r\n \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n
+ \ \"104.211.104.128/28\",\r\n \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n
+ \ \"104.211.109.80/28\",\r\n \"104.211.109.96/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUS\",\r\n \"id\":
+ \"Storage.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.67.155.16/28\",\r\n
+ \ \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n \"20.47.58.0/23\",\r\n
+ \ \"20.60.18.0/24\",\r\n \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n
+ \ \"20.60.194.0/23\",\r\n \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n
+ \ \"20.150.63.0/24\",\r\n \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.95.0/24\",\r\n \"20.157.34.0/23\",\r\n \"23.99.160.64/26\",\r\n
+ \ \"23.99.160.192/28\",\r\n \"40.69.176.16/28\",\r\n \"40.83.24.16/28\",\r\n
+ \ \"40.83.24.80/28\",\r\n \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n
+ \ \"52.165.104.16/28\",\r\n \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n
+ \ \"52.165.104.112/28\",\r\n \"52.165.136.32/28\",\r\n \"52.165.240.64/28\",\r\n
+ \ \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n
+ \ \"52.182.176.32/28\",\r\n \"52.182.176.64/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.112/28\",\r\n
+ \ \"52.228.232.0/28\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.238.200.32/27\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.177.32/27\",\r\n \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.234.0/23\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUSEUAP\",\r\n
+ \ \"id\": \"Storage.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.150.23.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n
+ \ \"52.185.112.80/28\",\r\n \"52.239.177.0/27\",\r\n \"52.239.238.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastAsia\",\r\n
+ \ \"id\": \"Storage.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.43.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"40.83.104.176/28\",\r\n
+ \ \"40.83.104.208/28\",\r\n \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n
+ \ \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n \"52.239.128.0/24\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"168.63.128.0/26\",\r\n \"168.63.128.128/25\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n \"168.63.130.128/26\",\r\n
+ \ \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n \"168.63.156.192/26\",\r\n
+ \ \"191.237.238.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS\",\r\n \"id\": \"Storage.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n
+ \ \"13.82.152.48/28\",\r\n \"13.82.152.80/28\",\r\n \"20.38.98.0/24\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.60.0.0/24\",\r\n \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.60.0/22\",\r\n \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.146.0/23\",\r\n \"20.150.32.0/23\",\r\n \"20.150.90.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"23.96.64.64/26\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"52.179.24.16/28\",\r\n
+ \ \"52.186.112.32/27\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.239.152.0/22\",\r\n
+ \ \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n \"52.239.214.0/23\",\r\n
+ \ \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.252.0/24\",\r\n
+ \ \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n \"52.240.60.16/28\",\r\n
+ \ \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"168.62.32.0/26\",\r\n \"168.62.32.192/26\",\r\n
+ \ \"168.62.33.128/26\",\r\n \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n
+ \ \"191.237.32.240/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastUS2\",\r\n
+ \ \"id\": \"Storage.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.68.120.64/28\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"20.38.100.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.60.56.0/22\",\r\n
+ \ \"20.60.132.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.150.29.0/24\",\r\n
+ \ \"20.150.36.0/24\",\r\n \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n
+ \ \"20.150.82.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n
+ \ \"20.157.48.0/23\",\r\n \"23.102.206.0/28\",\r\n \"23.102.206.128/28\",\r\n
+ \ \"23.102.206.192/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.84.8.32/28\",\r\n \"40.84.11.80/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n \"52.167.240.16/28\",\r\n
+ \ \"52.177.208.80/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.184.168.96/27\",\r\n \"52.225.136.16/28\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.240.0/28\",\r\n \"52.232.232.16/28\",\r\n
+ \ \"52.232.232.32/28\",\r\n \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n
+ \ \"52.232.232.128/27\",\r\n \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n
+ \ \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n
+ \ \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n \"52.239.184.0/25\",\r\n
+ \ \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.185.32/27\",\r\n
+ \ \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n \"52.239.192.96/27\",\r\n
+ \ \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n \"52.239.198.0/25\",\r\n
+ \ \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n \"52.239.207.32/28\",\r\n
+ \ \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/26\",\r\n \"137.116.2.96/29\",\r\n \"137.116.2.104/30\",\r\n
+ \ \"137.116.2.108/32\",\r\n \"137.116.2.110/31\",\r\n \"137.116.2.112/32\",\r\n
+ \ \"137.116.2.114/32\",\r\n \"137.116.2.116/30\",\r\n \"137.116.2.120/29\",\r\n
+ \ \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n \"137.116.96.0/25\",\r\n
+ \ \"137.116.96.128/26\",\r\n \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.239.224.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2EUAP\",\r\n \"id\": \"Storage.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.6.0/24\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.150.108.0/24\",\r\n \"40.70.88.0/30\",\r\n \"40.70.88.4/31\",\r\n
+ \ \"40.70.88.6/32\",\r\n \"40.70.88.8/31\",\r\n \"40.70.88.10/32\",\r\n
+ \ \"40.70.88.12/32\",\r\n \"40.70.88.14/31\",\r\n \"40.79.88.16/30\",\r\n
+ \ \"40.79.88.20/31\",\r\n \"40.79.88.22/32\",\r\n \"40.79.88.24/31\",\r\n
+ \ \"40.79.88.26/32\",\r\n \"40.79.88.28/32\",\r\n \"40.79.88.30/31\",\r\n
+ \ \"52.184.168.32/30\",\r\n \"52.184.168.36/31\",\r\n \"52.184.168.38/32\",\r\n
+ \ \"52.184.168.40/31\",\r\n \"52.184.168.42/32\",\r\n \"52.184.168.44/32\",\r\n
+ \ \"52.184.168.46/31\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2Stage\",\r\n \"id\": \"Storage.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.2.64/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceCentral\",\r\n \"id\": \"Storage.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.44.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"52.239.134.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.241.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceSouth\",\r\n \"id\": \"Storage.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.28.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.150.19.0/24\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyNorth\",\r\n
+ \ \"id\": \"Storage.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.115.0/24\",\r\n
+ \ \"20.47.45.0/24\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyWestCentral\",\r\n
+ \ \"id\": \"Storage.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.118.0/24\",\r\n \"20.47.27.0/24\",\r\n \"20.60.22.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.JapanEast\",\r\n \"id\":
+ \"Storage.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"20.38.116.0/23\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n
+ \ \"20.157.38.0/24\",\r\n \"23.98.57.64/26\",\r\n \"40.115.169.32/28\",\r\n
+ \ \"40.115.175.16/28\",\r\n \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n
+ \ \"40.115.229.16/28\",\r\n \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n
+ \ \"40.115.231.112/28\",\r\n \"40.115.231.128/28\",\r\n \"52.239.144.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.JapanWest\",\r\n
+ \ \"id\": \"Storage.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.10.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.157.56.0/24\",\r\n \"23.98.56.0/26\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n \"104.215.32.64/27\",\r\n
+ \ \"104.215.35.32/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaCentral\",\r\n \"id\": \"Storage.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.46.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n \"52.231.80.128/28\",\r\n
+ \ \"52.231.80.160/27\",\r\n \"52.239.148.0/27\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.190.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaSouth\",\r\n \"id\": \"Storage.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.47.0/24\",\r\n \"20.150.14.0/23\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n
+ \ \"52.239.190.192/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUS\",\r\n \"id\": \"Storage.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"23.98.49.0/26\",\r\n \"23.98.49.192/26\",\r\n
+ \ \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n \"23.98.55.144/28\",\r\n
+ \ \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n \"40.116.232.48/28\",\r\n
+ \ \"40.116.232.96/28\",\r\n \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n
+ \ \"52.162.56.64/27\",\r\n \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.62.96.128/26\",\r\n \"168.62.96.210/32\",\r\n
+ \ \"168.62.96.224/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUSStage\",\r\n \"id\": \"Storage.NorthCentralUSStage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"168.62.96.192/29\",\r\n \"168.62.96.200/30\",\r\n
+ \ \"168.62.96.204/32\",\r\n \"168.62.96.206/31\",\r\n \"168.62.96.208/32\",\r\n
+ \ \"168.62.96.212/30\",\r\n \"168.62.96.216/29\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorthEurope\",\r\n
+ \ \"id\": \"Storage.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n \"13.74.208.144/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.144.0/23\",\r\n \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n
+ \ \"20.150.48.0/24\",\r\n \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"40.85.105.32/28\",\r\n \"40.113.27.176/28\",\r\n
+ \ \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n \"52.164.232.32/28\",\r\n
+ \ \"52.164.232.64/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.236.40.16/28\",\r\n \"52.236.40.32/28\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/24\",\r\n
+ \ \"104.41.232.16/28\",\r\n \"137.135.192.64/26\",\r\n \"137.135.192.192/26\",\r\n
+ \ \"137.135.193.192/26\",\r\n \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n
+ \ \"168.61.120.32/27\",\r\n \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n
+ \ \"168.63.32.0/26\",\r\n \"168.63.33.192/26\",\r\n \"191.235.192.192/26\",\r\n
+ \ \"191.235.193.32/28\",\r\n \"191.235.255.192/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayEast\",\r\n
+ \ \"id\": \"Storage.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.120.0/24\",\r\n
+ \ \"20.47.48.0/24\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayWest\",\r\n
+ \ \"id\": \"Storage.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.150.0.0/24\",\r\n \"20.150.56.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Storage.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.128/25\",\r\n \"20.47.50.0/24\",\r\n \"20.60.190.0/23\",\r\n
+ \ \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.101.0/24\",\r\n
+ \ \"52.239.232.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthAfricaWest\",\r\n \"id\": \"Storage.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.0/25\",\r\n \"20.47.51.0/24\",\r\n \"20.60.8.0/24\",\r\n
+ \ \"20.150.20.0/25\",\r\n \"52.239.232.128/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.SouthCentralUS\",\r\n
+ \ \"id\": \"Storage.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n
+ \ \"13.65.160.16/28\",\r\n \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n
+ \ \"13.84.56.16/28\",\r\n \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n
+ \ \"20.38.104.0/23\",\r\n \"20.47.0.0/27\",\r\n \"20.47.24.0/23\",\r\n
+ \ \"20.47.29.0/24\",\r\n \"20.60.48.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n \"20.150.70.0/24\",\r\n
+ \ \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n \"23.98.160.64/26\",\r\n
+ \ \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n \"23.98.192.64/26\",\r\n
+ \ \"23.98.255.64/26\",\r\n \"52.171.144.32/27\",\r\n \"52.171.144.80/28\",\r\n
+ \ \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n \"52.185.233.0/24\",\r\n
+ \ \"52.189.177.0/24\",\r\n \"52.239.158.0/23\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n \"104.214.40.16/28\",\r\n
+ \ \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"168.62.128.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SoutheastAsia\",\r\n \"id\": \"Storage.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.76.104.16/28\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.150.17.128/25\",\r\n
+ \ \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n \"20.150.127.0/24\",\r\n
+ \ \"52.163.176.16/28\",\r\n \"52.163.232.16/28\",\r\n \"52.187.141.32/27\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.197.0/24\",\r\n \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n
+ \ \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n \"168.63.161.64/26\",\r\n
+ \ \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n \"168.63.162.32/27\",\r\n
+ \ \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n \"168.63.162.192/26\",\r\n
+ \ \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n \"191.238.64.64/26\",\r\n
+ \ \"191.238.64.192/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthIndia\",\r\n \"id\": \"Storage.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.52.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.150.24.0/24\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.239.135.128/26\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"104.211.232.16/28\",\r\n \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n
+ \ \"104.211.232.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandNorth\",\r\n \"id\": \"Storage.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.53.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n
+ \ \"52.239.251.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandWest\",\r\n \"id\": \"Storage.SwitzerlandWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.26.0/24\",\r\n \"20.60.176.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"52.239.250.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.UAECentral\",\r\n
+ \ \"id\": \"Storage.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"52.239.233.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UAENorth\",\r\n
+ \ \"id\": \"Storage.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.60.21.0/24\",\r\n \"52.239.233.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKSouth\",\r\n
+ \ \"id\": \"Storage.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.60.17.0/24\",\r\n
+ \ \"20.60.166.0/23\",\r\n \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.69.0/24\",\r\n \"51.140.16.16/28\",\r\n
+ \ \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n \"51.140.168.112/28\",\r\n
+ \ \"51.140.168.128/28\",\r\n \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"52.239.187.0/25\",\r\n \"52.239.231.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKWest\",\r\n
+ \ \"id\": \"Storage.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.56.0/24\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n
+ \ \"20.150.110.0/24\",\r\n \"20.157.46.0/24\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n \"51.141.128.128/25\",\r\n
+ \ \"51.141.129.128/26\",\r\n \"52.239.240.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestCentralUS\",\r\n
+ \ \"id\": \"Storage.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.71.200.64/28\",\r\n
+ \ \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n \"13.71.202.16/28\",\r\n
+ \ \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n \"13.78.152.64/28\",\r\n
+ \ \"13.78.240.16/28\",\r\n \"20.47.4.0/24\",\r\n \"20.60.4.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"52.161.112.16/28\",\r\n \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n
+ \ \"52.161.168.32/28\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.WestEurope\",\r\n \"id\": \"Storage.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.40.16/28\",\r\n \"13.95.96.176/28\",\r\n \"13.95.240.16/28\",\r\n
+ \ \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.60.26.0/23\",\r\n \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n
+ \ \"20.60.196.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"40.68.176.16/28\",\r\n \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n
+ \ \"40.68.232.48/28\",\r\n \"40.114.152.16/28\",\r\n \"40.114.152.48/28\",\r\n
+ \ \"40.118.72.176/28\",\r\n \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n
+ \ \"40.118.73.208/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n
+ \ \"52.174.224.32/28\",\r\n \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n
+ \ \"52.174.224.128/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.63.0.0/26\",\r\n
+ \ \"168.63.2.64/26\",\r\n \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"191.237.232.32/28\",\r\n
+ \ \"191.237.232.128/28\",\r\n \"191.239.203.0/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestIndia\",\r\n \"id\":
+ \"Storage.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n \"104.211.168.16/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS\",\r\n
+ \ \"id\": \"Storage.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.83.72.16/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.22.0/23\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n
+ \ \"20.157.32.0/24\",\r\n \"20.157.57.0/24\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"40.78.72.16/28\",\r\n \"40.78.112.64/28\",\r\n \"40.83.225.32/28\",\r\n
+ \ \"40.83.227.16/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.190.240.16/28\",\r\n \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n
+ \ \"52.190.240.112/28\",\r\n \"52.190.240.128/28\",\r\n \"52.225.40.32/27\",\r\n
+ \ \"52.238.56.16/28\",\r\n \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n
+ \ \"52.238.56.112/28\",\r\n \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n \"52.241.88.16/28\",\r\n
+ \ \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n \"168.62.0.0/26\",\r\n
+ \ \"168.62.1.128/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS2\",\r\n
+ \ \"id\": \"Storage.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.77.184.64/28\",\r\n
+ \ \"20.38.99.0/24\",\r\n \"20.47.62.0/23\",\r\n \"20.60.20.0/24\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n
+ \ \"52.239.210.0/23\",\r\n \"52.239.236.0/23\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"StorageSyncService\",\r\n
+ \ \"id\": \"StorageSyncService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.176.196/32\",\r\n \"13.73.248.112/29\",\r\n
+ \ \"13.75.153.240/32\",\r\n \"13.76.81.46/32\",\r\n \"20.36.120.216/29\",\r\n
+ \ \"20.37.64.216/29\",\r\n \"20.37.157.80/29\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"20.37.224.216/29\",\r\n \"20.38.85.152/29\",\r\n \"20.38.136.224/29\",\r\n
+ \ \"20.39.11.96/29\",\r\n \"20.41.5.144/29\",\r\n \"20.41.65.184/29\",\r\n
+ \ \"20.41.193.160/29\",\r\n \"20.42.4.248/29\",\r\n \"20.42.131.224/29\",\r\n
+ \ \"20.42.227.128/29\",\r\n \"20.43.42.8/29\",\r\n \"20.43.66.0/29\",\r\n
+ \ \"20.43.131.40/29\",\r\n \"20.45.71.151/32\",\r\n \"20.45.112.216/29\",\r\n
+ \ \"20.45.192.248/29\",\r\n \"20.45.208.0/29\",\r\n \"20.50.1.0/29\",\r\n
+ \ \"20.72.27.184/29\",\r\n \"20.150.172.40/29\",\r\n \"20.189.108.56/29\",\r\n
+ \ \"20.192.32.232/29\",\r\n \"20.193.205.128/29\",\r\n \"23.100.106.151/32\",\r\n
+ \ \"23.102.225.54/32\",\r\n \"40.67.48.208/29\",\r\n \"40.80.57.192/29\",\r\n
+ \ \"40.80.169.176/29\",\r\n \"40.80.188.24/29\",\r\n \"40.82.253.192/29\",\r\n
+ \ \"40.89.17.232/29\",\r\n \"40.112.150.67/32\",\r\n \"40.113.94.67/32\",\r\n
+ \ \"40.123.47.110/32\",\r\n \"40.123.216.130/32\",\r\n \"51.12.101.240/29\",\r\n
+ \ \"51.12.204.248/29\",\r\n \"51.104.25.224/29\",\r\n \"51.105.80.208/29\",\r\n
+ \ \"51.105.88.248/29\",\r\n \"51.107.48.224/29\",\r\n \"51.107.144.216/29\",\r\n
+ \ \"51.116.60.244/30\",\r\n \"51.116.245.168/30\",\r\n \"51.120.40.224/29\",\r\n
+ \ \"51.120.224.216/29\",\r\n \"51.137.161.240/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"51.140.202.34/32\",\r\n \"51.143.192.208/29\",\r\n \"52.136.48.216/29\",\r\n
+ \ \"52.136.131.99/32\",\r\n \"52.140.105.184/29\",\r\n \"52.143.166.54/32\",\r\n
+ \ \"52.150.139.104/29\",\r\n \"52.161.25.233/32\",\r\n \"52.176.149.179/32\",\r\n
+ \ \"52.183.27.204/32\",\r\n \"52.225.171.85/32\",\r\n \"52.228.42.41/32\",\r\n
+ \ \"52.228.81.248/29\",\r\n \"52.231.67.75/32\",\r\n \"52.231.159.38/32\",\r\n
+ \ \"52.235.36.119/32\",\r\n \"65.52.62.167/32\",\r\n \"102.133.56.128/29\",\r\n
+ \ \"102.133.75.173/32\",\r\n \"102.133.175.72/32\",\r\n \"104.40.191.8/32\",\r\n
+ \ \"104.41.148.238/32\",\r\n \"104.41.161.113/32\",\r\n \"104.208.61.223/32\",\r\n
+ \ \"104.210.219.252/32\",\r\n \"104.211.73.56/32\",\r\n \"104.211.231.18/32\",\r\n
+ \ \"191.233.9.96/29\",\r\n \"191.235.225.216/29\",\r\n \"191.237.253.115/32\",\r\n
+ \ \"2603:1000:4::340/123\",\r\n \"2603:1000:104:1::300/123\",\r\n
+ \ \"2603:1010:6:1::300/123\",\r\n \"2603:1010:101::340/123\",\r\n
+ \ \"2603:1010:304::340/123\",\r\n \"2603:1010:404::340/123\",\r\n
+ \ \"2603:1020:5:1::300/123\",\r\n \"2603:1020:206:1::300/123\",\r\n
+ \ \"2603:1020:305::340/123\",\r\n \"2603:1020:405::340/123\",\r\n
+ \ \"2603:1020:605::340/123\",\r\n \"2603:1020:705:1::300/123\",\r\n
+ \ \"2603:1020:805:1::300/123\",\r\n \"2603:1020:905::340/123\",\r\n
+ \ \"2603:1020:a04:1::300/123\",\r\n \"2603:1020:b04::340/123\",\r\n
+ \ \"2603:1020:c04:1::300/123\",\r\n \"2603:1020:d04::340/123\",\r\n
+ \ \"2603:1020:e04:1::300/123\",\r\n \"2603:1020:e04:802::2a0/123\",\r\n
+ \ \"2603:1020:f04::340/123\",\r\n \"2603:1020:1004::300/123\",\r\n
+ \ \"2603:1020:1004:800::120/123\",\r\n \"2603:1020:1104:400::320/123\",\r\n
+ \ \"2603:1030:f:1::340/123\",\r\n \"2603:1030:f:400::dc0/123\",\r\n
+ \ \"2603:1030:10:1::300/123\",\r\n \"2603:1030:104:1::300/123\",\r\n
+ \ \"2603:1030:107:400::2a0/123\",\r\n \"2603:1030:210:1::300/123\",\r\n
+ \ \"2603:1030:40b:1::300/123\",\r\n \"2603:1030:40c:1::300/123\",\r\n
+ \ \"2603:1030:504:1::300/123\",\r\n \"2603:1030:504:802::120/123\",\r\n
+ \ \"2603:1030:608::340/123\",\r\n \"2603:1030:807:1::300/123\",\r\n
+ \ \"2603:1030:a07::340/123\",\r\n \"2603:1030:b04::340/123\",\r\n
+ \ \"2603:1030:c06:1::300/123\",\r\n \"2603:1030:f05:1::300/123\",\r\n
+ \ \"2603:1030:1005::340/123\",\r\n \"2603:1040:5:1::300/123\",\r\n
+ \ \"2603:1040:207::340/123\",\r\n \"2603:1040:407:1::300/123\",\r\n
+ \ \"2603:1040:606::340/123\",\r\n \"2603:1040:806::340/123\",\r\n
+ \ \"2603:1040:904:1::300/123\",\r\n \"2603:1040:a06:1::300/123\",\r\n
+ \ \"2603:1040:b04::340/123\",\r\n \"2603:1040:c06::340/123\",\r\n
+ \ \"2603:1040:d04::300/123\",\r\n \"2603:1040:d04:800::120/123\",\r\n
+ \ \"2603:1040:f05:1::300/123\",\r\n \"2603:1040:f05:802::2a0/123\",\r\n
+ \ \"2603:1040:1104:400::320/123\",\r\n \"2603:1050:6:1::300/123\",\r\n
+ \ \"2603:1050:6:802::2a0/123\",\r\n \"2603:1050:403::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.216/29\",\r\n \"2603:1010:304::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral2\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.216/29\",\r\n \"2603:1010:404::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaEast\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.153.240/32\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"2603:1010:6:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.CanadaEast\",\r\n \"id\":
+ \"StorageSyncService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.89.17.232/29\",\r\n \"52.235.36.119/32\",\r\n
+ \ \"2603:1030:1005::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.EastUS2\",\r\n \"id\":
+ \"StorageSyncService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.144/29\",\r\n \"40.123.47.110/32\",\r\n
+ \ \"2603:1030:40c:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.FranceSouth\",\r\n \"id\":
+ \"StorageSyncService.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.88.248/29\",\r\n \"52.136.131.99/32\",\r\n
+ \ \"2603:1020:905::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.SouthAfricaWest\",\r\n \"id\":
+ \"StorageSyncService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.56.128/29\",\r\n \"102.133.75.173/32\",\r\n
+ \ \"2603:1000:4::340/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"StorageSyncService.SouthIndia\",\r\n \"id\": \"StorageSyncService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"StorageSyncService\",\r\n \"addressPrefixes\": [\r\n \"20.41.193.160/29\",\r\n
+ \ \"104.211.231.18/32\",\r\n \"2603:1040:c06::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.SwitzerlandWest\",\r\n
+ \ \"id\": \"StorageSyncService.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.216/29\",\r\n \"2603:1020:b04::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.UKSouth\",\r\n
+ \ \"id\": \"StorageSyncService.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.25.224/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"2603:1020:705:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"WindowsVirtualDesktop\",\r\n \"id\": \"WindowsVirtualDesktop\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.251.49/32\",\r\n \"13.67.68.78/32\",\r\n \"13.68.76.104/32\",\r\n
+ \ \"13.69.82.138/32\",\r\n \"13.69.156.85/32\",\r\n \"13.70.40.201/32\",\r\n
+ \ \"13.70.120.215/32\",\r\n \"13.71.5.20/32\",\r\n \"13.71.67.87/32\",\r\n
+ \ \"13.71.81.161/32\",\r\n \"13.71.113.6/32\",\r\n \"13.73.237.154/32\",\r\n
+ \ \"13.75.114.143/32\",\r\n \"13.75.171.61/32\",\r\n \"13.75.198.169/32\",\r\n
+ \ \"13.76.88.89/32\",\r\n \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n
+ \ \"13.77.45.213/32\",\r\n \"13.77.140.58/32\",\r\n \"13.79.243.194/32\",\r\n
+ \ \"13.88.221.28/32\",\r\n \"13.88.254.98/32\",\r\n \"20.36.33.29/32\",\r\n
+ \ \"20.36.33.170/32\",\r\n \"20.36.35.190/32\",\r\n \"20.36.38.195/32\",\r\n
+ \ \"20.36.39.50/32\",\r\n \"20.36.39.171/32\",\r\n \"20.36.41.74/32\",\r\n
+ \ \"20.41.77.252/32\",\r\n \"20.45.64.86/32\",\r\n \"20.45.67.112/32\",\r\n
+ \ \"20.45.67.185/32\",\r\n \"20.45.79.3/32\",\r\n \"20.45.79.24/32\",\r\n
+ \ \"20.45.79.91/32\",\r\n \"20.45.79.96/32\",\r\n \"20.45.79.168/32\",\r\n
+ \ \"20.46.45.161/32\",\r\n \"20.46.46.252/32\",\r\n \"20.188.3.1/32\",\r\n
+ \ \"20.188.39.108/32\",\r\n \"20.188.41.240/32\",\r\n \"20.188.45.82/32\",\r\n
+ \ \"20.190.43.99/32\",\r\n \"23.97.108.170/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"23.98.133.187/32\",\r\n \"23.99.141.138/32\",\r\n \"23.100.50.154/32\",\r\n
+ \ \"23.100.98.36/32\",\r\n \"23.101.5.54/32\",\r\n \"23.101.220.135/32\",\r\n
+ \ \"23.102.229.113/32\",\r\n \"40.65.122.222/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.69.31.73/32\",\r\n \"40.69.90.166/32\",\r\n \"40.69.102.46/32\",\r\n
+ \ \"40.69.149.151/32\",\r\n \"40.70.189.87/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"40.75.30.117/32\",\r\n \"40.80.80.48/32\",\r\n \"40.83.79.39/32\",\r\n
+ \ \"40.85.241.159/32\",\r\n \"40.86.204.245/32\",\r\n \"40.86.205.216/32\",\r\n
+ \ \"40.86.208.118/32\",\r\n \"40.86.222.183/32\",\r\n \"40.89.129.146/32\",\r\n
+ \ \"40.89.154.76/32\",\r\n \"40.113.199.138/32\",\r\n \"40.113.200.58/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"40.115.136.175/32\",\r\n \"40.119.163.43/32\",\r\n
+ \ \"40.119.167.95/32\",\r\n \"40.120.39.124/32\",\r\n \"40.122.28.196/32\",\r\n
+ \ \"40.122.212.20/32\",\r\n \"40.123.228.58/32\",\r\n \"40.123.230.81/32\",\r\n
+ \ \"40.123.230.179/32\",\r\n \"40.123.230.249/32\",\r\n \"40.127.3.207/32\",\r\n
+ \ \"51.11.13.248/32\",\r\n \"51.11.241.142/32\",\r\n \"51.104.49.88/32\",\r\n
+ \ \"51.105.54.123/32\",\r\n \"51.107.68.172/32\",\r\n \"51.107.69.35/32\",\r\n
+ \ \"51.107.78.168/32\",\r\n \"51.107.85.67/32\",\r\n \"51.107.85.110/32\",\r\n
+ \ \"51.107.86.7/32\",\r\n \"51.107.86.99/32\",\r\n \"51.116.171.102/32\",\r\n
+ \ \"51.116.182.248/32\",\r\n \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n
+ \ \"51.116.225.55/32\",\r\n \"51.116.236.74/32\",\r\n \"51.116.236.84/32\",\r\n
+ \ \"51.120.69.158/32\",\r\n \"51.120.70.135/32\",\r\n \"51.120.70.141/32\",\r\n
+ \ \"51.120.77.155/32\",\r\n \"51.120.78.142/32\",\r\n \"51.120.79.212/32\",\r\n
+ \ \"51.120.88.120/32\",\r\n \"51.132.29.107/32\",\r\n \"51.136.28.200/32\",\r\n
+ \ \"51.137.89.79/32\",\r\n \"51.140.57.159/32\",\r\n \"51.140.206.110/32\",\r\n
+ \ \"51.140.231.223/32\",\r\n \"51.140.255.55/32\",\r\n \"51.141.30.31/32\",\r\n
+ \ \"51.141.122.89/32\",\r\n \"51.141.173.236/32\",\r\n \"51.143.39.79/32\",\r\n
+ \ \"51.143.164.192/32\",\r\n \"51.143.169.107/32\",\r\n \"51.145.17.75/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"52.138.20.115/32\",\r\n \"52.138.28.23/32\",\r\n
+ \ \"52.141.37.201/32\",\r\n \"52.141.56.101/32\",\r\n \"52.142.161.0/32\",\r\n
+ \ \"52.142.162.226/32\",\r\n \"52.143.96.87/32\",\r\n \"52.143.182.208/32\",\r\n
+ \ \"52.147.3.93/32\",\r\n \"52.147.160.158/32\",\r\n \"52.151.53.196/32\",\r\n
+ \ \"52.155.111.124/32\",\r\n \"52.156.171.127/32\",\r\n \"52.163.209.255/32\",\r\n
+ \ \"52.164.126.124/32\",\r\n \"52.165.218.15/32\",\r\n \"52.167.163.135/32\",\r\n
+ \ \"52.167.171.53/32\",\r\n \"52.169.5.116/32\",\r\n \"52.171.36.33/32\",\r\n
+ \ \"52.172.34.74/32\",\r\n \"52.172.40.215/32\",\r\n \"52.172.133.5/32\",\r\n
+ \ \"52.172.194.109/32\",\r\n \"52.172.210.235/32\",\r\n \"52.172.217.34/32\",\r\n
+ \ \"52.172.223.46/32\",\r\n \"52.173.89.168/32\",\r\n \"52.175.144.120/32\",\r\n
+ \ \"52.175.253.156/32\",\r\n \"52.177.123.162/32\",\r\n \"52.177.172.247/32\",\r\n
+ \ \"52.183.19.64/32\",\r\n \"52.183.130.137/32\",\r\n \"52.185.202.152/32\",\r\n
+ \ \"52.187.127.152/32\",\r\n \"52.189.194.14/32\",\r\n \"52.189.215.151/32\",\r\n
+ \ \"52.189.233.158/32\",\r\n \"52.191.129.231/32\",\r\n \"52.228.29.164/32\",\r\n
+ \ \"52.229.117.254/32\",\r\n \"52.229.125.45/32\",\r\n \"52.229.207.180/32\",\r\n
+ \ \"52.231.13.193/32\",\r\n \"52.231.38.211/32\",\r\n \"52.231.93.224/32\",\r\n
+ \ \"52.231.98.58/32\",\r\n \"52.231.155.130/32\",\r\n \"52.231.156.19/32\",\r\n
+ \ \"52.231.164.163/32\",\r\n \"52.231.166.199/32\",\r\n \"52.231.195.7/32\",\r\n
+ \ \"52.231.197.195/32\",\r\n \"52.231.206.162/32\",\r\n \"52.233.16.198/32\",\r\n
+ \ \"52.237.20.14/32\",\r\n \"52.237.201.246/32\",\r\n \"52.237.253.245/32\",\r\n
+ \ \"52.242.86.101/32\",\r\n \"52.243.65.107/32\",\r\n \"52.243.74.213/32\",\r\n
+ \ \"52.246.165.140/32\",\r\n \"52.246.177.221/32\",\r\n \"52.246.191.98/32\",\r\n
+ \ \"52.247.122.225/32\",\r\n \"52.247.123.0/32\",\r\n \"52.255.40.105/32\",\r\n
+ \ \"52.255.61.145/32\",\r\n \"65.52.71.120/32\",\r\n \"65.52.158.177/32\",\r\n
+ \ \"70.37.83.67/32\",\r\n \"70.37.86.126/32\",\r\n \"70.37.99.24/32\",\r\n
+ \ \"102.37.42.159/32\",\r\n \"102.133.64.36/32\",\r\n \"102.133.64.68/32\",\r\n
+ \ \"102.133.64.91/32\",\r\n \"102.133.64.111/32\",\r\n \"102.133.72.250/32\",\r\n
+ \ \"102.133.75.8/32\",\r\n \"102.133.75.32/32\",\r\n \"102.133.75.35/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\",\r\n
+ \ \"104.40.156.194/32\",\r\n \"104.41.45.182/32\",\r\n \"104.41.166.159/32\",\r\n
+ \ \"104.43.169.4/32\",\r\n \"104.46.237.209/32\",\r\n \"104.208.28.82/32\",\r\n
+ \ \"104.209.233.222/32\",\r\n \"104.210.150.160/32\",\r\n
+ \ \"104.211.78.17/32\",\r\n \"104.211.114.61/32\",\r\n \"104.211.138.88/32\",\r\n
+ \ \"104.211.140.190/32\",\r\n \"104.211.155.114/32\",\r\n
+ \ \"104.211.165.123/32\",\r\n \"104.211.184.150/32\",\r\n
+ \ \"104.211.188.151/32\",\r\n \"104.211.211.213/32\",\r\n
+ \ \"104.211.216.230/32\",\r\n \"104.211.242.104/32\",\r\n
+ \ \"104.214.60.144/32\",\r\n \"104.214.237.23/32\",\r\n \"104.215.51.3/32\",\r\n
+ \ \"104.215.103.51/32\",\r\n \"104.215.112.85/32\",\r\n \"137.116.49.12/32\",\r\n
+ \ \"137.116.248.148/32\",\r\n \"137.117.171.26/32\",\r\n
+ \ \"137.135.243.65/32\",\r\n \"138.91.44.13/32\",\r\n \"168.61.167.193/32\",\r\n
+ \ \"168.63.31.54/32\",\r\n \"168.63.71.119/32\",\r\n \"168.63.137.213/32\",\r\n
+ \ \"191.232.49.74/32\",\r\n \"191.232.166.149/32\",\r\n \"191.232.235.70/32\",\r\n
+ \ \"191.232.238.73/32\",\r\n \"191.234.191.63/32\",\r\n \"191.235.65.127/32\",\r\n
+ \ \"191.235.73.211/32\",\r\n \"191.235.78.126/32\",\r\n \"191.239.248.16/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.171.102/32\",\r\n \"51.116.182.248/32\",\r\n
+ \ \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n \"51.116.225.55/32\",\r\n
+ \ \"51.116.236.74/32\",\r\n \"51.116.236.84/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.JapanWest\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.237.154/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"52.175.144.120/32\",\r\n \"104.46.237.209/32\",\r\n \"104.215.51.3/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.127.3.207/32\",\r\n \"102.37.42.159/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.68.78/32\",\r\n \"13.76.88.89/32\",\r\n
+ \ \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"52.163.209.255/32\",\r\n \"52.187.127.152/32\",\r\n \"138.91.44.13/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.WestEurope\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.82.138/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"51.136.28.200/32\",\r\n \"51.137.89.79/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"65.52.158.177/32\",\r\n \"104.40.156.194/32\",\r\n
+ \ \"104.214.237.23/32\",\r\n \"137.117.171.26/32\",\r\n \"168.63.31.54/32\"\r\n
+ \ ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1580866'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 08:51:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 574620ea-2f94-45d9-b921-2b2c36a1988b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"East
+ US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOTNETCORE|3.1","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3741'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"East
+ US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOTNETCORE|3.1","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3741'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm",
+ "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx",
+ "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion":
+ "", "pythonVersion": "", "nodeVersion": "", "powerShellVersion": "", "linuxFxVersion":
+ "DOTNETCORE|3.1", "requestTracingEnabled": false, "remoteDebuggingEnabled":
+ false, "remoteDebuggingVersion": "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit":
+ 35, "detailedErrorLoggingEnabled": false, "publishingUsername": "$cli-webapp-nwr000002",
+ "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled": false,
+ "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated",
+ "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot",
+ "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments":
+ {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "vnetRouteAllEnabled":
+ false, "vnetPrivatePortsCount": 0, "localMySqlEnabled": false, "ipSecurityRestrictions":
+ [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all",
+ "description": "Allow all access"}, {"ipAddress": "AzureFrontDoor.Backend",
+ "action": "Allow", "tag": "ServiceTag", "priority": 200, "name": "afd-extended",
+ "headers": {"x-azure-fdid": ["12345678-abcd-1234-abcd-12345678910a", "next-id"],
+ "x-forwarded-host": ["contoso.com"]}}], "scmIpSecurityRestrictions": [{"ipAddress":
+ "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description":
+ "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled":
+ true, "minTlsVersion": "1.2", "scmMinTlsVersion": "1.0", "ftpsState": "AllAllowed",
+ "preWarmedInstanceCount": 0}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1754'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority --http-header
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"East
+ US 2","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"DOTNETCORE|3.1","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"AzureFrontDoor.Backend","action":"Allow","tag":"ServiceTag","priority":200,"name":"afd-extended","headers":{"x-azure-fdid":["12345678-abcd-1234-abcd-12345678910a","next-id"],"x-forwarded-host":["contoso.com"]}},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3954'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:51:53 GMT
+ etag:
+ - '"1D7310B6650EDA0"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1190'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_ip_address_validation.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_ip_address_validation.yaml
index 014d1b81b77..e9457de75f7 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_ip_address_validation.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_ip_address_validation.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:51:56Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:16 GMT
+ - Wed, 14 Apr 2021 08:51:58 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:16 GMT
+ - Wed, 14 Apr 2021 08:51:59 GMT
expires:
- '-1'
pragma:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:51:56Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:16 GMT
+ - Wed, 14 Apr 2021 08:51:59 GMT
expires:
- '-1'
pragma:
@@ -165,13 +165,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":22602,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22602","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":23301,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -180,9 +180,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:31 GMT
+ - Wed, 14 Apr 2021 08:52:14 GMT
etag:
- - '"1D7266CD481012B"'
+ - '"1D7310B755212F5"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1193'
x-powered-by:
- ASP.NET
status:
@@ -220,14 +220,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22602,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22602","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":23301,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -236,7 +236,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:33 GMT
+ - Wed, 14 Apr 2021 08:52:15 GMT
expires:
- '-1'
pragma:
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:33 GMT
+ - Wed, 14 Apr 2021 08:52:15 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -329,14 +329,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22602,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22602","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":23301,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23301","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -345,7 +345,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:35 GMT
+ - Wed, 14 Apr 2021 08:52:16 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:35 GMT
+ - Wed, 14 Apr 2021 08:52:16 GMT
expires:
- '-1'
pragma:
@@ -443,15 +443,15 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:31:41.93","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:52:26.07","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
@@ -460,9 +460,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:00 GMT
+ - Wed, 14 Apr 2021 08:52:44 GMT
etag:
- - '"1D7266CDC5FAC60"'
+ - '"1D7310B7E903420"'
expires:
- '-1'
pragma:
@@ -480,7 +480,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '498'
x-powered-by:
- ASP.NET
status:
@@ -504,31 +504,31 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
@@ -540,7 +540,7 @@ interactions:
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:32:01 GMT
+ - Wed, 14 Apr 2021 08:52:46 GMT
expires:
- '-1'
pragma:
@@ -574,7 +574,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -591,7 +591,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:02 GMT
+ - Wed, 14 Apr 2021 08:52:47 GMT
expires:
- '-1'
pragma:
@@ -627,7 +627,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -644,7 +644,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:02 GMT
+ - Wed, 14 Apr 2021 08:52:49 GMT
expires:
- '-1'
pragma:
@@ -702,7 +702,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -719,9 +719,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:05 GMT
+ - Wed, 14 Apr 2021 08:52:52 GMT
etag:
- - '"1D7266CDC5FAC60"'
+ - '"1D7310B7E903420"'
expires:
- '-1'
pragma:
@@ -739,7 +739,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1191'
x-powered-by:
- ASP.NET
status:
@@ -759,7 +759,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -776,7 +776,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:06 GMT
+ - Wed, 14 Apr 2021 08:52:53 GMT
expires:
- '-1'
pragma:
@@ -812,7 +812,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -829,7 +829,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:07 GMT
+ - Wed, 14 Apr 2021 08:52:54 GMT
expires:
- '-1'
pragma:
@@ -888,7 +888,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -905,9 +905,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:10 GMT
+ - Wed, 14 Apr 2021 08:52:56 GMT
etag:
- - '"1D7266CE9F8B635"'
+ - '"1D7310B8DD88EA0"'
expires:
- '-1'
pragma:
@@ -925,7 +925,195 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1194'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --ip-address --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/32","action":"Allow","tag":"Default","priority":200,"name":"ipv4"},{"ipAddress":"2004::1000/128","action":"Allow","tag":"Default","priority":200,"name":"ipv6"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3923'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:52:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --ip-address --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/32","action":"Allow","tag":"Default","priority":200,"name":"ipv4"},{"ipAddress":"2004::1000/128","action":"Allow","tag":"Default","priority":200,"name":"ipv6"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3923'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:52:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm",
+ "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx",
+ "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion":
+ "5.6", "pythonVersion": "", "nodeVersion": "", "powerShellVersion": "", "linuxFxVersion":
+ "", "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion":
+ "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled":
+ false, "publishingUsername": "$cli-webapp-nwr000002", "scmType": "None", "use32BitWorkerProcess":
+ true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode":
+ "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot",
+ "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments":
+ {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "vnetRouteAllEnabled":
+ false, "vnetPrivatePortsCount": 0, "localMySqlEnabled": false, "ipSecurityRestrictions":
+ [{"ipAddress": "130.220.0.0/32", "action": "Allow", "tag": "Default", "priority":
+ 200, "name": "ipv4"}, {"ipAddress": "2004::1000/128", "action": "Allow", "tag":
+ "Default", "priority": 200, "name": "ipv6"}, {"ipAddress": "Any", "action":
+ "Deny", "priority": 2147483647, "name": "Deny all", "description": "Deny all
+ access"}, {"ipAddress": "2004::1000/120,192.168.0.0/24", "action": "Allow",
+ "tag": "Default", "priority": 200, "name": "multi-source"}], "scmIpSecurityRestrictions":
+ [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all",
+ "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false,
+ "http20Enabled": true, "minTlsVersion": "1.2", "scmMinTlsVersion": "1.0", "ftpsState":
+ "AllAllowed", "preWarmedInstanceCount": 0}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1840'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --rule-name --action --ip-address --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/32","action":"Allow","tag":"Default","priority":200,"name":"ipv4"},{"ipAddress":"2004::1000/128","action":"Allow","tag":"Default","priority":200,"name":"ipv6"},{"ipAddress":"2004::1000/120,192.168.0.0/24","action":"Allow","tag":"Default","priority":200,"name":"multi-source"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4021'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:53:02 GMT
+ etag:
+ - '"1D7310B90385D95"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1196'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml
index 2cd92bd1508..345d0df8d97 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_scm.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:53:08Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:15 GMT
+ - Wed, 14 Apr 2021 08:53:10 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:16 GMT
+ - Wed, 14 Apr 2021 08:53:11 GMT
expires:
- '-1'
pragma:
@@ -95,7 +95,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:53:08Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:16 GMT
+ - Wed, 14 Apr 2021 08:53:11 GMT
expires:
- '-1'
pragma:
@@ -165,13 +165,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":22599,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22599","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":23302,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23302","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -180,9 +180,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:30 GMT
+ - Wed, 14 Apr 2021 08:53:27 GMT
etag:
- - '"1D7266CD338F0CB"'
+ - '"1D7310BA0E3BD80"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1189'
x-powered-by:
- ASP.NET
status:
@@ -220,14 +220,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22599,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22599","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":23302,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23302","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -236,7 +236,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:31 GMT
+ - Wed, 14 Apr 2021 08:53:28 GMT
expires:
- '-1'
pragma:
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:31 GMT
+ - Wed, 14 Apr 2021 08:53:28 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1196'
x-powered-by:
- ASP.NET
status:
@@ -329,14 +329,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22599,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22599","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":23302,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23302","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -345,7 +345,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:33 GMT
+ - Wed, 14 Apr 2021 08:53:29 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:34 GMT
+ - Wed, 14 Apr 2021 08:53:30 GMT
expires:
- '-1'
pragma:
@@ -443,26 +443,26 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:31:41.6866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:53:36.83","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6210'
+ - '6205'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:00 GMT
+ - Wed, 14 Apr 2021 08:53:56 GMT
etag:
- - '"1D7266CDC3C11CB"'
+ - '"1D7310BA89BC0E0"'
expires:
- '-1'
pragma:
@@ -480,7 +480,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '497'
x-powered-by:
- ASP.NET
status:
@@ -504,31 +504,31 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
@@ -540,7 +540,7 @@ interactions:
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:32:01 GMT
+ - Wed, 14 Apr 2021 08:53:56 GMT
expires:
- '-1'
pragma:
@@ -554,7 +554,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '11999'
+ - '11998'
x-powered-by:
- ASP.NET
status:
@@ -574,7 +574,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -591,7 +591,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:02 GMT
+ - Wed, 14 Apr 2021 08:53:59 GMT
expires:
- '-1'
pragma:
@@ -627,7 +627,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -644,7 +644,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:02 GMT
+ - Wed, 14 Apr 2021 08:54:00 GMT
expires:
- '-1'
pragma:
@@ -702,7 +702,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -719,9 +719,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:05 GMT
+ - Wed, 14 Apr 2021 08:54:02 GMT
etag:
- - '"1D7266CDC3C11CB"'
+ - '"1D7310BA89BC0E0"'
expires:
- '-1'
pragma:
@@ -739,7 +739,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1189'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml
index 616c6fc55a2..fc2b8737734 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_endpoint.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:54:07Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:14 GMT
+ - Wed, 14 Apr 2021 08:54:10 GMT
expires:
- '-1'
pragma:
@@ -46,7 +46,7 @@ interactions:
message: OK
- request:
body: '{"name": "cli-plan-nwr000003", "type": "Microsoft.Web/serverfarms", "location":
- "centralus", "properties": {"skuName": "B1", "capacity": 1}}'
+ "japanwest", "properties": {"skuName": "B1", "capacity": 1}}'
headers:
Accept:
- application/json
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:15 GMT
+ - Wed, 14 Apr 2021 08:54:11 GMT
expires:
- '-1'
pragma:
@@ -95,7 +95,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:54:07Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:15 GMT
+ - Wed, 14 Apr 2021 08:54:11 GMT
expires:
- '-1'
pragma:
@@ -147,7 +147,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "centralus", "sku": {"name": "B1", "tier": "BASIC", "capacity":
+ body: '{"location": "japanwest", "sku": {"name": "B1", "tier": "BASIC", "capacity":
1}, "properties": {"perSiteScaling": false, "isXenon": false}}'
headers:
Accept:
@@ -165,24 +165,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"centralus","properties":{"serverFarmId":16157,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central
- US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-197_16157","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":2834,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2834","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1655'
+ - '1653'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:22 GMT
+ - Wed, 14 Apr 2021 08:54:24 GMT
etag:
- - '"1D7266CCFE3F96B"'
+ - '"1D7310BC2E2D84B"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1194'
x-powered-by:
- ASP.NET
status:
@@ -220,23 +220,23 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central
- US","properties":{"serverFarmId":16157,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central
- US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-197_16157","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
+ West","properties":{"serverFarmId":2834,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2834","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1583'
+ - '1581'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:23 GMT
+ - Wed, 14 Apr 2021 08:54:26 GMT
expires:
- '-1'
pragma:
@@ -260,7 +260,7 @@ interactions:
message: OK
- request:
body: '{"name": "cli-webapp-nwr000002", "type": "Microsoft.Web/sites", "location":
- "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003"}}'
+ "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003"}}'
headers:
Accept:
- application/json
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:23 GMT
+ - Wed, 14 Apr 2021 08:54:27 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -329,23 +329,23 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central
- US","properties":{"serverFarmId":16157,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central
- US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-197_16157","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
+ West","properties":{"serverFarmId":2834,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2834","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1583'
+ - '1581'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:23 GMT
+ - Wed, 14 Apr 2021 08:54:29 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:24 GMT
+ - Wed, 14 Apr 2021 08:54:29 GMT
expires:
- '-1'
pragma:
@@ -422,7 +422,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003",
+ body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
"v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}],
"localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
@@ -443,26 +443,26 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Central
- US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-197.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:31:27.6933333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:54:38.77","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"20.40.202.10","possibleInboundIpAddresses":"20.40.202.10","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-dm1-197.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.143.242.16,52.143.244.150,52.143.247.239,52.154.168.225,40.89.242.163,52.154.170.5,20.40.202.10","possibleOutboundIpAddresses":"52.143.242.16,52.143.244.150,52.143.247.239,52.154.168.225,40.89.242.163,52.154.170.5,13.89.109.87,52.154.170.121,52.154.170.130,52.154.170.240,52.154.169.254,52.154.171.50,52.154.171.159,52.154.172.108,52.154.172.168,52.154.172.201,52.154.173.64,52.154.173.244,52.154.174.206,52.154.174.219,52.154.175.133,52.154.240.178,13.89.107.200,52.154.240.255,52.154.241.74,52.154.242.21,52.154.242.233,52.154.242.237,52.154.243.0,52.154.243.98,20.40.202.10","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-197","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6554'
+ - '6338'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:42 GMT
+ - Wed, 14 Apr 2021 08:55:00 GMT
etag:
- - '"1D7266CD3CC7135"'
+ - '"1D7310BCD858580"'
expires:
- '-1'
pragma:
@@ -504,25 +504,25 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
@@ -534,7 +534,7 @@ interactions:
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:31:43 GMT
+ - Wed, 14 Apr 2021 08:55:03 GMT
expires:
- '-1'
pragma:
@@ -568,15 +568,15 @@ interactions:
ParameterSetName:
- -g -n --address-prefixes --subnet-name --subnet-prefixes
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:54:07Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -585,7 +585,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:44 GMT
+ - Wed, 14 Apr 2021 08:55:03 GMT
expires:
- '-1'
pragma:
@@ -600,7 +600,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "centralus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
+ body: '{"location": "japanwest", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "endpoint-subnet",
"properties": {"addressPrefix": "10.0.0.0/24"}}]}}'
headers:
@@ -619,21 +619,21 @@ interactions:
ParameterSetName:
- -g -n --address-prefixes --subnet-name --subnet-prefixes
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"cli-vnet-nwr000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004\",\r\n
- \ \"etag\": \"W/\\\"3e6f05c3-e85a-407c-96fb-5eb2dc6eae44\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n
+ \ \"etag\": \"W/\\\"76d94004-d312-4c70-81a7-35202bed0e66\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"japanwest\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
- \ \"resourceGuid\": \"79fda613-63f8-4cdd-91f9-cd8e47c23572\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"ce9c7f2b-9e23-45a7-ae43-8a072d883c29\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"3e6f05c3-e85a-407c-96fb-5eb2dc6eae44\\\"\",\r\n
+ \ \"etag\": \"W/\\\"76d94004-d312-4c70-81a7-35202bed0e66\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -644,7 +644,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/aee233b3-f33a-4d02-8a24-436b386fc727?api-version=2020-11-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/3f207652-4979-4c60-88b8-b80aa0abe3a0?api-version=2020-11-01
cache-control:
- no-cache
content-length:
@@ -652,7 +652,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:45 GMT
+ - Wed, 14 Apr 2021 08:55:12 GMT
expires:
- '-1'
pragma:
@@ -665,9 +665,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f59c94e4-8e04-461f-adf9-a73b41dbf746
+ - 1a1c4835-b66c-4fe7-8882-f67066e95703
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1190'
status:
code: 201
message: Created
@@ -685,9 +685,9 @@ interactions:
ParameterSetName:
- -g -n --address-prefixes --subnet-name --subnet-prefixes
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/aee233b3-f33a-4d02-8a24-436b386fc727?api-version=2020-11-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/3f207652-4979-4c60-88b8-b80aa0abe3a0?api-version=2020-11-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -699,7 +699,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:48 GMT
+ - Wed, 14 Apr 2021 08:55:16 GMT
expires:
- '-1'
pragma:
@@ -716,7 +716,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 32af648f-3368-4cc9-a614-f195809c4128
+ - 169c493c-76bb-4eaa-a841-214ed95df833
status:
code: 200
message: OK
@@ -734,21 +734,21 @@ interactions:
ParameterSetName:
- -g -n --address-prefixes --subnet-name --subnet-prefixes
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004?api-version=2020-11-01
response:
body:
string: "{\r\n \"name\": \"cli-vnet-nwr000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004\",\r\n
- \ \"etag\": \"W/\\\"e9a563ae-daea-4231-8331-281012c4d969\\\"\",\r\n \"type\":
- \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"centralus\",\r\n
+ \ \"etag\": \"W/\\\"cb93f924-9f55-480e-ac6e-3f88ae7bf8ef\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"japanwest\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"resourceGuid\": \"79fda613-63f8-4cdd-91f9-cd8e47c23572\",\r\n \"addressSpace\":
+ \ \"resourceGuid\": \"ce9c7f2b-9e23-45a7-ae43-8a072d883c29\",\r\n \"addressSpace\":
{\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
\ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
\ \"subnets\": [\r\n {\r\n \"name\": \"endpoint-subnet\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"e9a563ae-daea-4231-8331-281012c4d969\\\"\",\r\n
+ \ \"etag\": \"W/\\\"cb93f924-9f55-480e-ac6e-3f88ae7bf8ef\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\":
[],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
@@ -763,9 +763,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:48 GMT
+ - Wed, 14 Apr 2021 08:55:16 GMT
etag:
- - W/"e9a563ae-daea-4231-8331-281012c4d969"
+ - W/"cb93f924-9f55-480e-ac6e-3f88ae7bf8ef"
expires:
- '-1'
pragma:
@@ -782,60 +782,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 3cd6be3e-a8b8-42f2-9ad3-0420a0ac2f4f
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - webapp config access-restriction add
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --rule-name --action --subnet --priority
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Central
- US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '3727'
- content-type:
- - application/json
- date:
- - Wed, 31 Mar 2021 20:31:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-IIS/10.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-aspnet-version:
- - 4.0.30319
- x-content-type-options:
- - nosniff
- x-powered-by:
- - ASP.NET
+ - fcaf6596-d6b7-43c4-bc78-7a264ae0b229
status:
code: 200
message: OK
@@ -853,13 +800,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Central
- US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
@@ -870,7 +817,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:50 GMT
+ - Wed, 14 Apr 2021 08:55:18 GMT
expires:
- '-1'
pragma:
@@ -906,13 +853,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet?api-version=2019-02-01
response:
body:
string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"e9a563ae-daea-4231-8331-281012c4d969\\\"\",\r\n \"properties\":
+ \ \"etag\": \"W/\\\"cb93f924-9f55-480e-ac6e-3f88ae7bf8ef\\\"\",\r\n \"properties\":
{\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n
\ \"delegations\": []\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
headers:
@@ -923,9 +870,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:51 GMT
+ - Wed, 14 Apr 2021 08:55:18 GMT
etag:
- - W/"e9a563ae-daea-4231-8331-281012c4d969"
+ - W/"cb93f924-9f55-480e-ac6e-3f88ae7bf8ef"
expires:
- '-1'
pragma:
@@ -942,13 +889,13 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f9a6f7b6-c8b5-493d-b00b-44e85aee7258
+ - 4540e92a-d740-4651-804c-d2d171a37f24
status:
code: 200
message: OK
- request:
body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet",
- "name": "endpoint-subnet", "etag": "W/\"e9a563ae-daea-4231-8331-281012c4d969\"",
+ "name": "endpoint-subnet", "etag": "W/\"cb93f924-9f55-480e-ac6e-3f88ae7bf8ef\"",
"properties": {"addressPrefix": "10.0.0.0/24", "serviceEndpoints": [{"service":
"Microsoft.Web"}], "delegations": [], "provisioningState": "Succeeded"}}'
headers:
@@ -967,13 +914,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet?api-version=2019-02-01
response:
body:
string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"26d3c34b-c9af-4cc7-a57f-adba26d5a129\\\"\",\r\n \"properties\":
+ \ \"etag\": \"W/\\\"904c5fb1-99f2-43bb-8c60-1c3fbb45e6c5\\\"\",\r\n \"properties\":
{\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n
\ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Updating\",\r\n
\ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n
@@ -981,7 +928,7 @@ interactions:
\"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/196bd80c-e925-4efd-a357-b229d37531b7?api-version=2019-02-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/a143422a-d4f9-435d-a1b4-70b849111e45?api-version=2019-02-01
cache-control:
- no-cache
content-length:
@@ -989,7 +936,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:51 GMT
+ - Wed, 14 Apr 2021 08:55:19 GMT
expires:
- '-1'
pragma:
@@ -1006,9 +953,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b3a5f315-c712-453a-983c-bd054eb448f2
+ - 5e9a1017-9e19-4e9c-90b1-30be495ccf19
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1188'
status:
code: 200
message: OK
@@ -1026,9 +973,9 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/centralus/operations/196bd80c-e925-4efd-a357-b229d37531b7?api-version=2019-02-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/japanwest/operations/a143422a-d4f9-435d-a1b4-70b849111e45?api-version=2019-02-01
response:
body:
string: "{\r\n \"status\": \"Succeeded\"\r\n}"
@@ -1040,7 +987,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:54 GMT
+ - Wed, 14 Apr 2021 08:55:23 GMT
expires:
- '-1'
pragma:
@@ -1057,7 +1004,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - f7026baf-11a1-4987-962e-5a5bd41ab33a
+ - e7d4e600-7f27-4cb4-a88d-a1cc2498080a
status:
code: 200
message: OK
@@ -1075,13 +1022,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet?api-version=2019-02-01
response:
body:
string: "{\r\n \"name\": \"endpoint-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet\",\r\n
- \ \"etag\": \"W/\\\"93cf0551-2e84-432e-92dc-3e4c6c49eb64\\\"\",\r\n \"properties\":
+ \ \"etag\": \"W/\\\"6418b7a6-3295-403a-a952-c63d2147c04a\\\"\",\r\n \"properties\":
{\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n
\ \"serviceEndpoints\": [\r\n {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"service\": \"Microsoft.Web\",\r\n \"locations\": [\r\n \"*\"\r\n
@@ -1095,9 +1042,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:55 GMT
+ - Wed, 14 Apr 2021 08:55:23 GMT
etag:
- - W/"93cf0551-2e84-432e-92dc-3e4c6c49eb64"
+ - W/"6418b7a6-3295-403a-a952-c63d2147c04a"
expires:
- '-1'
pragma:
@@ -1114,7 +1061,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2b824986-7825-43a2-a93a-a123aec997a2
+ - 091ca9c1-51bc-49a8-b630-a67ccfd4bb0b
status:
code: 200
message: OK
@@ -1154,13 +1101,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --vnet-name --subnet --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"Central
- US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"vnetSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet","action":"Allow","tag":"Default","priority":150,"name":"vnet-integration"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"vnetSubnetResourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/cli-vnet-nwr000004/subnets/endpoint-subnet","action":"Allow","tag":"Default","priority":150,"name":"vnet-integration"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
@@ -1171,9 +1118,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:58 GMT
+ - Wed, 14 Apr 2021 08:55:26 GMT
etag:
- - '"1D7266CD3CC7135"'
+ - '"1D7310BCD858580"'
expires:
- '-1'
pragma:
@@ -1191,7 +1138,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1188'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_tag_validation.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_tag_validation.yaml
new file mode 100644
index 00000000000..a447649a938
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_add_service_tag_validation.yaml
@@ -0,0 +1,39945 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice plan create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:55:32Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '431'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 08:55:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "cli-plan-nwr000003", "type": "Microsoft.Web/serverfarms", "location":
+ "japanwest", "properties": {"skuName": "B1", "capacity": 1}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice plan create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '146'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
+ response:
+ body:
+ string: '{"status":"Success","error":null}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '33'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:55:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice plan create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:55:32Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '431'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 08:55:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "japanwest", "sku": {"name": "B1", "tier": "BASIC", "capacity":
+ 1}, "properties": {"perSiteScaling": false, "isXenon": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - appservice plan create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '139'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":2835,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2835","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1653'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:55:49 GMT
+ etag:
+ - '"1D7310BF5A0A6EB"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1196'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --plan
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
+ West","properties":{"serverFarmId":2835,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2835","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1581'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:55:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "cli-webapp-nwr000002", "type": "Microsoft.Web/sites", "location":
+ "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '332'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
+ response:
+ body:
+ string: '{"status":"Success","error":null}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '33'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:55:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --plan
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
+ West","properties":{"serverFarmId":2835,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2835","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1581'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:55:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "cli-webapp-nwr000002", "type": "Site"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '52'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
+ response:
+ body:
+ string: '{"nameAvailable":true,"reason":"","message":""}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '47'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:55:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003",
+ "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
+ "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}],
+ "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
+ "httpsOnly": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '545'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:56:05.4833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6343'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:56:24 GMT
+ etag:
+ - '"1D7310C012CC9C0"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"format": "WebDeploy"}'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '23'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --plan
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
+ response:
+ body:
+ string:
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1667'
+ content-type:
+ - application/xml
+ date:
+ - Wed, 14 Apr 2021 08:56:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11998'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:56:05.98","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6138'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:56:27 GMT
+ etag:
+ - '"1D7310C012CC9C0"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/Japan%20West/serviceTags?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"Public\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/serviceTags/Public\",\r\n
+ \ \"type\": \"Microsoft.Network/serviceTags\",\r\n \"changeNumber\": \"70\",\r\n
+ \ \"cloud\": \"Public\",\r\n \"values\": [\r\n {\r\n \"name\": \"ActionGroup\",\r\n
+ \ \"id\": \"ActionGroup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.60.119/32\",\r\n \"13.66.143.220/30\",\r\n
+ \ \"13.66.202.14/32\",\r\n \"13.66.248.225/32\",\r\n \"13.66.249.211/32\",\r\n
+ \ \"13.67.10.124/30\",\r\n \"13.69.109.132/30\",\r\n \"13.71.199.112/30\",\r\n
+ \ \"13.77.53.216/30\",\r\n \"13.77.172.102/32\",\r\n \"13.77.183.209/32\",\r\n
+ \ \"13.78.109.156/30\",\r\n \"13.84.49.247/32\",\r\n \"13.84.51.172/32\",\r\n
+ \ \"13.84.52.58/32\",\r\n \"13.86.221.220/30\",\r\n \"13.106.38.142/32\",\r\n
+ \ \"13.106.38.148/32\",\r\n \"13.106.54.3/32\",\r\n \"13.106.54.19/32\",\r\n
+ \ \"13.106.57.181/32\",\r\n \"13.106.57.196/31\",\r\n \"20.38.149.132/30\",\r\n
+ \ \"20.42.64.36/30\",\r\n \"20.43.121.124/30\",\r\n \"20.44.17.220/30\",\r\n
+ \ \"20.45.123.236/30\",\r\n \"20.72.27.152/30\",\r\n \"20.150.172.228/30\",\r\n
+ \ \"20.192.238.124/30\",\r\n \"20.193.202.4/30\",\r\n \"40.68.195.137/32\",\r\n
+ \ \"40.68.201.58/32\",\r\n \"40.68.201.65/32\",\r\n \"40.68.201.206/32\",\r\n
+ \ \"40.68.201.211/32\",\r\n \"40.68.204.18/32\",\r\n \"40.115.37.106/32\",\r\n
+ \ \"40.121.219.215/32\",\r\n \"40.121.221.62/32\",\r\n \"40.121.222.201/32\",\r\n
+ \ \"40.121.223.186/32\",\r\n \"51.12.101.172/30\",\r\n \"51.12.204.244/30\",\r\n
+ \ \"51.104.9.100/30\",\r\n \"52.183.20.244/32\",\r\n \"52.183.31.0/32\",\r\n
+ \ \"52.183.94.59/32\",\r\n \"52.184.145.166/32\",\r\n \"168.61.142.52/30\",\r\n
+ \ \"191.233.50.4/30\",\r\n \"191.233.207.64/26\",\r\n \"2603:1000:4:402::178/125\",\r\n
+ \ \"2603:1000:104:402::178/125\",\r\n \"2603:1010:6:402::178/125\",\r\n
+ \ \"2603:1010:101:402::178/125\",\r\n \"2603:1010:304:402::178/125\",\r\n
+ \ \"2603:1010:404:402::178/125\",\r\n \"2603:1020:5:402::178/125\",\r\n
+ \ \"2603:1020:206:402::178/125\",\r\n \"2603:1020:305:402::178/125\",\r\n
+ \ \"2603:1020:405:402::178/125\",\r\n \"2603:1020:605:402::178/125\",\r\n
+ \ \"2603:1020:705:402::178/125\",\r\n \"2603:1020:805:402::178/125\",\r\n
+ \ \"2603:1020:905:402::178/125\",\r\n \"2603:1020:a04:402::178/125\",\r\n
+ \ \"2603:1020:b04:402::178/125\",\r\n \"2603:1020:c04:402::178/125\",\r\n
+ \ \"2603:1020:d04:402::178/125\",\r\n \"2603:1020:e04:402::178/125\",\r\n
+ \ \"2603:1020:f04:402::178/125\",\r\n \"2603:1020:1004:800::f8/125\",\r\n
+ \ \"2603:1020:1104:400::178/125\",\r\n \"2603:1030:f:400::978/125\",\r\n
+ \ \"2603:1030:10:402::178/125\",\r\n \"2603:1030:104:402::178/125\",\r\n
+ \ \"2603:1030:107:400::f0/125\",\r\n \"2603:1030:210:402::178/125\",\r\n
+ \ \"2603:1030:40b:400::978/125\",\r\n \"2603:1030:40c:402::178/125\",\r\n
+ \ \"2603:1030:504:802::f8/125\",\r\n \"2603:1030:608:402::178/125\",\r\n
+ \ \"2603:1030:807:402::178/125\",\r\n \"2603:1030:a07:402::8f8/125\",\r\n
+ \ \"2603:1030:b04:402::178/125\",\r\n \"2603:1030:c06:400::978/125\",\r\n
+ \ \"2603:1030:f05:402::178/125\",\r\n \"2603:1030:1005:402::178/125\",\r\n
+ \ \"2603:1040:5:402::178/125\",\r\n \"2603:1040:207:402::178/125\",\r\n
+ \ \"2603:1040:407:402::178/125\",\r\n \"2603:1040:606:402::178/125\",\r\n
+ \ \"2603:1040:806:402::178/125\",\r\n \"2603:1040:904:402::178/125\",\r\n
+ \ \"2603:1040:a06:402::178/125\",\r\n \"2603:1040:b04:402::178/125\",\r\n
+ \ \"2603:1040:c06:402::178/125\",\r\n \"2603:1040:d04:800::f8/125\",\r\n
+ \ \"2603:1040:f05:402::178/125\",\r\n \"2603:1040:1104:400::178/125\",\r\n
+ \ \"2603:1050:6:402::178/125\",\r\n \"2603:1050:403:400::1f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:304:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral2\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:404:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaEast\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:6:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CanadaEast\",\r\n
+ \ \"id\": \"ActionGroup.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:1005:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUS\",\r\n
+ \ \"id\": \"ActionGroup.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:10:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUSEUAP\",\r\n
+ \ \"id\": \"ActionGroup.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"168.61.142.52/30\",\r\n
+ \ \"2603:1030:f:400::978/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastAsia\",\r\n \"id\": \"ActionGroup.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1040:207:402::178/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.EastUS2\",\r\n \"id\":
+ \"ActionGroup.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.17.220/30\",\r\n \"52.184.145.166/32\",\r\n
+ \ \"2603:1030:40c:402::178/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastUS2EUAP\",\r\n \"id\": \"ActionGroup.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1030:40b:400::978/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.FranceCentral\",\r\n \"id\":
+ \"ActionGroup.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:805:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.FranceSouth\",\r\n
+ \ \"id\": \"ActionGroup.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:905:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyNorth\",\r\n
+ \ \"id\": \"ActionGroup.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyWestCentral\",\r\n
+ \ \"id\": \"ActionGroup.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:c04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.JapanWest\",\r\n
+ \ \"id\": \"ActionGroup.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:606:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.KoreaCentral\",\r\n
+ \ \"id\": \"ActionGroup.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1040:f05:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorthEurope\",\r\n
+ \ \"id\": \"ActionGroup.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:5:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayEast\",\r\n
+ \ \"id\": \"ActionGroup.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:e04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayWest\",\r\n
+ \ \"id\": \"ActionGroup.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:f04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaNorth\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:104:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaWest\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthIndia\",\r\n
+ \ \"id\": \"ActionGroup.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:c06:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:a04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandWest\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAECentral\",\r\n
+ \ \"id\": \"ActionGroup.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAENorth\",\r\n
+ \ \"id\": \"ActionGroup.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:904:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKNorth\",\r\n
+ \ \"id\": \"ActionGroup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:305:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKSouth2\",\r\n
+ \ \"id\": \"ActionGroup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:405:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKWest\",\r\n
+ \ \"id\": \"ActionGroup.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:605:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestIndia\",\r\n
+ \ \"id\": \"ActionGroup.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:806:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestUS\",\r\n
+ \ \"id\": \"ActionGroup.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.221.220/30\",\r\n \"2603:1030:a07:402::8f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement\",\r\n
+ \ \"id\": \"ApiManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.39.16/32\",\r\n \"13.66.138.92/31\",\r\n \"13.66.140.176/28\",\r\n
+ \ \"13.67.8.108/31\",\r\n \"13.67.9.208/28\",\r\n \"13.69.64.76/31\",\r\n
+ \ \"13.69.66.144/28\",\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.71.49.1/32\",\r\n
+ \ \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n \"13.71.194.116/31\",\r\n
+ \ \"13.71.196.32/28\",\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n
+ \ \"13.75.217.184/32\",\r\n \"13.75.221.78/32\",\r\n \"13.77.50.68/31\",\r\n
+ \ \"13.77.52.224/28\",\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"13.86.102.66/32\",\r\n
+ \ \"13.87.56.84/31\",\r\n \"13.87.57.144/28\",\r\n \"13.87.122.84/31\",\r\n
+ \ \"13.87.123.144/28\",\r\n \"13.89.170.204/31\",\r\n \"13.89.174.64/28\",\r\n
+ \ \"20.36.106.68/31\",\r\n \"20.36.107.176/28\",\r\n \"20.36.114.20/31\",\r\n
+ \ \"20.36.115.128/28\",\r\n \"20.37.52.67/32\",\r\n \"20.37.74.224/31\",\r\n
+ \ \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n \"20.39.80.2/32\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"20.40.125.155/32\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"20.44.2.4/31\",\r\n \"20.44.3.224/28\",\r\n \"20.44.33.246/32\",\r\n
+ \ \"20.44.72.3/32\",\r\n \"20.46.13.224/28\",\r\n \"20.46.144.85/32\",\r\n
+ \ \"20.72.26.16/28\",\r\n \"20.150.167.160/28\",\r\n \"20.150.170.224/28\",\r\n
+ \ \"20.188.77.119/32\",\r\n \"20.192.50.64/28\",\r\n \"20.192.234.160/28\",\r\n
+ \ \"20.193.192.48/28\",\r\n \"20.193.202.160/28\",\r\n \"20.194.74.240/28\",\r\n
+ \ \"23.96.224.175/32\",\r\n \"23.101.67.140/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.66.60.111/32\",\r\n \"40.67.58.224/28\",\r\n \"40.69.106.68/31\",\r\n
+ \ \"40.69.107.224/28\",\r\n \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n
+ \ \"40.71.10.204/31\",\r\n \"40.71.13.128/28\",\r\n \"40.74.100.52/31\",\r\n
+ \ \"40.74.101.48/28\",\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"40.78.194.68/31\",\r\n \"40.78.195.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"40.79.130.44/31\",\r\n \"40.79.131.192/28\",\r\n
+ \ \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n \"40.80.232.185/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"40.81.89.24/32\",\r\n \"40.81.185.8/32\",\r\n
+ \ \"40.82.157.167/32\",\r\n \"40.90.185.46/32\",\r\n \"40.112.242.148/31\",\r\n
+ \ \"40.112.243.240/28\",\r\n \"51.12.17.0/28\",\r\n \"51.12.25.16/28\",\r\n
+ \ \"51.12.98.224/28\",\r\n \"51.12.202.224/28\",\r\n \"51.107.0.91/32\",\r\n
+ \ \"51.107.59.0/28\",\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n
+ \ \"51.116.0.0/32\",\r\n \"51.116.59.0/28\",\r\n \"51.116.96.0/32\",\r\n
+ \ \"51.116.155.64/28\",\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n \"51.120.234.240/28\",\r\n
+ \ \"51.137.136.0/32\",\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"51.143.127.203/32\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"51.145.179.78/32\",\r\n \"52.139.20.34/32\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"52.139.152.27/32\",\r\n \"52.140.238.179/32\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"52.224.186.99/32\",\r\n \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n
+ \ \"52.231.146.84/31\",\r\n \"52.231.147.176/28\",\r\n \"52.253.135.58/32\",\r\n
+ \ \"52.253.159.160/32\",\r\n \"52.253.229.253/32\",\r\n \"65.52.164.91/32\",\r\n
+ \ \"65.52.173.247/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n \"102.133.28.0/28\",\r\n
+ \ \"102.133.130.197/32\",\r\n \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n
+ \ \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n \"104.211.81.28/31\",\r\n
+ \ \"104.211.81.240/28\",\r\n \"104.211.146.68/31\",\r\n \"104.211.147.144/28\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"137.117.160.56/32\",\r\n
+ \ \"191.232.18.181/32\",\r\n \"191.233.24.179/32\",\r\n \"191.233.50.192/28\",\r\n
+ \ \"191.233.203.28/31\",\r\n \"191.233.203.240/28\",\r\n
+ \ \"191.238.241.97/32\",\r\n \"2603:1000:4:402::140/124\",\r\n
+ \ \"2603:1000:104:402::140/124\",\r\n \"2603:1010:6:402::140/124\",\r\n
+ \ \"2603:1010:101:402::140/124\",\r\n \"2603:1010:304:402::140/124\",\r\n
+ \ \"2603:1010:404:402::140/124\",\r\n \"2603:1020:5:402::140/124\",\r\n
+ \ \"2603:1020:206:402::140/124\",\r\n \"2603:1020:305:402::140/124\",\r\n
+ \ \"2603:1020:405:402::140/124\",\r\n \"2603:1020:605:402::140/124\",\r\n
+ \ \"2603:1020:705:402::140/124\",\r\n \"2603:1020:805:402::140/124\",\r\n
+ \ \"2603:1020:905:402::140/124\",\r\n \"2603:1020:a04:402::140/124\",\r\n
+ \ \"2603:1020:b04:402::140/124\",\r\n \"2603:1020:c04:402::140/124\",\r\n
+ \ \"2603:1020:d04:402::140/124\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\",\r\n \"2603:1020:f04:402::140/124\",\r\n
+ \ \"2603:1020:1004:1::700/124\",\r\n \"2603:1020:1004:800::c0/124\",\r\n
+ \ \"2603:1020:1104:1::3c0/124\",\r\n \"2603:1020:1104:400::140/124\",\r\n
+ \ \"2603:1030:f:2::490/124\",\r\n \"2603:1030:f:400::940/124\",\r\n
+ \ \"2603:1030:10:402::140/124\",\r\n \"2603:1030:104:402::140/124\",\r\n
+ \ \"2603:1030:107:400::c0/124\",\r\n \"2603:1030:210:402::140/124\",\r\n
+ \ \"2603:1030:40b:400::940/124\",\r\n \"2603:1030:40c:402::140/124\",\r\n
+ \ \"2603:1030:504:2::80/124\",\r\n \"2603:1030:608:402::140/124\",\r\n
+ \ \"2603:1030:807:402::140/124\",\r\n \"2603:1030:a07:402::8c0/124\",\r\n
+ \ \"2603:1030:b04:402::140/124\",\r\n \"2603:1030:c06:400::940/124\",\r\n
+ \ \"2603:1030:f05:402::140/124\",\r\n \"2603:1030:1005:402::140/124\",\r\n
+ \ \"2603:1040:5:402::140/124\",\r\n \"2603:1040:207:402::140/124\",\r\n
+ \ \"2603:1040:407:402::140/124\",\r\n \"2603:1040:606:402::140/124\",\r\n
+ \ \"2603:1040:806:402::140/124\",\r\n \"2603:1040:904:402::140/124\",\r\n
+ \ \"2603:1040:a06:402::140/124\",\r\n \"2603:1040:b04:402::140/124\",\r\n
+ \ \"2603:1040:c06:402::140/124\",\r\n \"2603:1040:d04:1::700/124\",\r\n
+ \ \"2603:1040:d04:800::c0/124\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\",\r\n \"2603:1040:1104:1::400/124\",\r\n
+ \ \"2603:1040:1104:400::140/124\",\r\n \"2603:1050:6:402::140/124\",\r\n
+ \ \"2603:1050:403:400::2a0/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.AustraliaCentral\",\r\n \"id\":
+ \"ApiManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.106.68/31\",\r\n
+ \ \"20.36.107.176/28\",\r\n \"20.37.52.67/32\",\r\n \"2603:1010:304:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.20/31\",\r\n \"20.36.115.128/28\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"2603:1010:404:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaEast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.75.217.184/32\",\r\n
+ \ \"13.75.221.78/32\",\r\n \"20.40.125.155/32\",\r\n \"2603:1010:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.68/31\",\r\n \"13.77.52.224/28\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"2603:1010:101:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.BrazilSouth\",\r\n \"id\": \"ApiManagement.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.24.179/32\",\r\n \"191.233.203.28/31\",\r\n
+ \ \"191.233.203.240/28\",\r\n \"2603:1050:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaCentral\",\r\n
+ \ \"id\": \"ApiManagement.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n
+ \ \"52.139.20.34/32\",\r\n \"2603:1030:f05:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaEast\",\r\n
+ \ \"id\": \"ApiManagement.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.68/31\",\r\n \"40.69.107.224/28\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"2603:1030:1005:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralIndia\",\r\n
+ \ \"id\": \"ApiManagement.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.49.1/32\",\r\n \"104.211.81.28/31\",\r\n \"104.211.81.240/28\",\r\n
+ \ \"2603:1040:a06:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.CentralUS\",\r\n \"id\": \"ApiManagement.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.102.66/32\",\r\n \"13.89.170.204/31\",\r\n
+ \ \"13.89.174.64/28\",\r\n \"2603:1030:10:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"ApiManagement.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"52.253.159.160/32\",\r\n \"2603:1030:f:2::490/124\",\r\n
+ \ \"2603:1030:f:400::940/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.EastAsia\",\r\n \"id\": \"ApiManagement.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n \"52.139.152.27/32\",\r\n
+ \ \"65.52.164.91/32\",\r\n \"65.52.173.247/32\",\r\n \"2603:1040:207:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS\",\r\n
+ \ \"id\": \"ApiManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.10.204/31\",\r\n
+ \ \"40.71.13.128/28\",\r\n \"52.224.186.99/32\",\r\n \"2603:1030:210:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.72.3/32\",\r\n
+ \ \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n \"2603:1030:40c:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"52.253.229.253/32\",\r\n \"2603:1030:40b:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceCentral\",\r\n
+ \ \"id\": \"ApiManagement.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.66.60.111/32\",\r\n \"40.79.130.44/31\",\r\n
+ \ \"40.79.131.192/28\",\r\n \"2603:1020:805:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceSouth\",\r\n
+ \ \"id\": \"ApiManagement.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.80.2/32\",\r\n \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n
+ \ \"2603:1020:905:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.GermanyNorth\",\r\n \"id\":
+ \"ApiManagement.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.116.0.0/32\",\r\n
+ \ \"51.116.59.0/28\",\r\n \"2603:1020:d04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"ApiManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.96.0/32\",\r\n \"51.116.155.64/28\",\r\n
+ \ \"2603:1020:c04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.JapanEast\",\r\n \"id\": \"ApiManagement.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"52.140.238.179/32\",\r\n \"2603:1040:407:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.JapanWest\",\r\n
+ \ \"id\": \"ApiManagement.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.52/31\",\r\n \"40.74.101.48/28\",\r\n
+ \ \"40.81.185.8/32\",\r\n \"2603:1040:606:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.KoreaCentral\",\r\n
+ \ \"id\": \"ApiManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.74.240/28\",\r\n \"40.82.157.167/32\",\r\n
+ \ \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.KoreaSouth\",\r\n \"id\": \"ApiManagement.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.232.185/32\",\r\n \"52.231.146.84/31\",\r\n
+ \ \"52.231.147.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"ApiManagement.NorthCentralUS\",\r\n \"id\": \"ApiManagement.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.224.175/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"2603:1030:608:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorthEurope\",\r\n \"id\": \"ApiManagement.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n
+ \ \"2603:1020:5:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayEast\",\r\n \"id\": \"ApiManagement.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.234.240/28\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayWest\",\r\n \"id\": \"ApiManagement.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n
+ \ \"2603:1020:f04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"ApiManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.130.197/32\",\r\n
+ \ \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n \"2603:1000:104:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"ApiManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n
+ \ \"102.133.28.0/28\",\r\n \"2603:1000:4:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"20.188.77.119/32\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"191.238.241.97/32\",\r\n
+ \ \"2603:1030:807:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SoutheastAsia\",\r\n \"id\":
+ \"ApiManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.108/31\",\r\n
+ \ \"13.67.9.208/28\",\r\n \"40.90.185.46/32\",\r\n \"2603:1040:5:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthIndia\",\r\n
+ \ \"id\": \"ApiManagement.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.33.246/32\",\r\n \"40.78.194.68/31\",\r\n
+ \ \"40.78.195.224/28\",\r\n \"2603:1040:c06:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.0.91/32\",\r\n \"51.107.59.0/28\",\r\n \"2603:1020:a04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n \"2603:1020:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UAECentral\",\r\n
+ \ \"id\": \"ApiManagement.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.224/31\",\r\n \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n
+ \ \"2603:1040:b04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UAENorth\",\r\n \"id\": \"ApiManagement.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.144.85/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"2603:1040:904:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKNorth\",\r\n \"id\": \"ApiManagement.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.84/31\",\r\n \"13.87.123.144/28\",\r\n
+ \ \"2603:1020:305:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKSouth\",\r\n \"id\": \"ApiManagement.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"2603:1020:705:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UKWest\",\r\n
+ \ \"id\": \"ApiManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.136.0/32\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"2603:1020:605:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.116/31\",\r\n \"13.71.196.32/28\",\r\n
+ \ \"52.253.135.58/32\",\r\n \"2603:1030:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestEurope\",\r\n
+ \ \"id\": \"ApiManagement.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.76/31\",\r\n \"13.69.66.144/28\",\r\n \"23.101.67.140/32\",\r\n
+ \ \"51.145.179.78/32\",\r\n \"137.117.160.56/32\",\r\n \"2603:1020:206:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestIndia\",\r\n
+ \ \"id\": \"ApiManagement.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.89.24/32\",\r\n \"104.211.146.68/31\",\r\n
+ \ \"104.211.147.144/28\",\r\n \"2603:1040:806:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS\",\r\n
+ \ \"id\": \"ApiManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.39.16/32\",\r\n
+ \ \"40.112.242.148/31\",\r\n \"40.112.243.240/28\",\r\n \"2603:1030:a07:402::8c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS2\",\r\n
+ \ \"id\": \"ApiManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.92/31\",\r\n
+ \ \"13.66.140.176/28\",\r\n \"51.143.127.203/32\",\r\n \"2603:1030:c06:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppConfiguration\",\r\n
+ \ \"id\": \"AppConfiguration\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppConfiguration\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.72/29\",\r\n \"13.66.143.192/28\",\r\n
+ \ \"13.66.143.208/29\",\r\n \"13.67.10.112/29\",\r\n \"13.67.13.192/28\",\r\n
+ \ \"13.67.13.208/29\",\r\n \"13.69.67.112/29\",\r\n \"13.69.67.240/28\",\r\n
+ \ \"13.69.71.128/29\",\r\n \"13.69.107.72/29\",\r\n \"13.69.112.144/28\",\r\n
+ \ \"13.69.112.160/29\",\r\n \"13.69.230.8/29\",\r\n \"13.69.230.40/29\",\r\n
+ \ \"13.69.231.144/28\",\r\n \"13.70.74.128/29\",\r\n \"13.70.78.144/28\",\r\n
+ \ \"13.70.78.160/29\",\r\n \"13.71.175.64/28\",\r\n \"13.71.175.96/28\",\r\n
+ \ \"13.71.196.176/28\",\r\n \"13.71.199.80/28\",\r\n \"13.73.242.56/29\",\r\n
+ \ \"13.73.244.96/28\",\r\n \"13.73.244.112/29\",\r\n \"13.73.255.128/26\",\r\n
+ \ \"13.74.108.160/28\",\r\n \"13.74.108.240/28\",\r\n \"13.77.53.88/29\",\r\n
+ \ \"13.77.53.192/28\",\r\n \"13.77.53.208/29\",\r\n \"13.78.109.144/29\",\r\n
+ \ \"13.78.109.208/28\",\r\n \"13.78.111.128/29\",\r\n \"13.86.219.192/29\",\r\n
+ \ \"13.86.221.192/28\",\r\n \"13.86.221.208/29\",\r\n \"13.87.58.64/29\",\r\n
+ \ \"13.87.58.80/28\",\r\n \"13.87.58.128/29\",\r\n \"13.87.124.64/29\",\r\n
+ \ \"13.87.124.80/28\",\r\n \"13.87.124.128/29\",\r\n \"13.89.175.208/28\",\r\n
+ \ \"13.89.178.16/29\",\r\n \"13.89.178.32/29\",\r\n \"20.36.108.120/29\",\r\n
+ \ \"20.36.108.136/29\",\r\n \"20.36.108.144/28\",\r\n \"20.36.115.248/29\",\r\n
+ \ \"20.36.117.40/29\",\r\n \"20.36.117.48/28\",\r\n \"20.36.123.16/28\",\r\n
+ \ \"20.36.124.64/26\",\r\n \"20.37.67.96/28\",\r\n \"20.37.69.64/26\",\r\n
+ \ \"20.37.76.112/29\",\r\n \"20.37.76.144/28\",\r\n \"20.37.76.192/29\",\r\n
+ \ \"20.37.198.144/28\",\r\n \"20.37.227.32/28\",\r\n \"20.37.228.128/26\",\r\n
+ \ \"20.38.128.96/29\",\r\n \"20.38.128.112/28\",\r\n \"20.38.128.160/29\",\r\n
+ \ \"20.38.139.96/28\",\r\n \"20.38.141.64/26\",\r\n \"20.38.147.176/28\",\r\n
+ \ \"20.38.147.240/28\",\r\n \"20.39.14.16/28\",\r\n \"20.40.206.144/28\",\r\n
+ \ \"20.40.206.160/28\",\r\n \"20.40.224.128/26\",\r\n \"20.41.68.64/28\",\r\n
+ \ \"20.41.69.192/26\",\r\n \"20.41.197.48/28\",\r\n \"20.42.64.16/28\",\r\n
+ \ \"20.42.230.144/28\",\r\n \"20.43.44.144/28\",\r\n \"20.43.46.128/26\",\r\n
+ \ \"20.43.70.128/28\",\r\n \"20.43.121.40/29\",\r\n \"20.43.121.96/28\",\r\n
+ \ \"20.43.121.112/29\",\r\n \"20.44.4.96/29\",\r\n \"20.44.4.120/29\",\r\n
+ \ \"20.44.4.160/28\",\r\n \"20.44.8.168/29\",\r\n \"20.44.10.96/28\",\r\n
+ \ \"20.44.10.112/29\",\r\n \"20.44.17.56/29\",\r\n \"20.44.17.192/28\",\r\n
+ \ \"20.44.17.208/29\",\r\n \"20.44.27.224/28\",\r\n \"20.44.29.32/28\",\r\n
+ \ \"20.45.116.0/26\",\r\n \"20.45.123.120/29\",\r\n \"20.45.123.176/28\",\r\n
+ \ \"20.45.123.224/29\",\r\n \"20.45.126.0/27\",\r\n \"20.45.198.0/27\",\r\n
+ \ \"20.45.199.64/26\",\r\n \"20.48.192.192/26\",\r\n \"20.49.83.96/27\",\r\n
+ \ \"20.49.91.96/27\",\r\n \"20.49.99.80/28\",\r\n \"20.49.103.0/26\",\r\n
+ \ \"20.49.109.96/28\",\r\n \"20.49.115.64/26\",\r\n \"20.49.120.80/28\",\r\n
+ \ \"20.49.127.64/26\",\r\n \"20.50.1.240/28\",\r\n \"20.50.65.96/28\",\r\n
+ \ \"20.51.8.0/26\",\r\n \"20.51.16.0/26\",\r\n \"20.53.41.192/26\",\r\n
+ \ \"20.61.98.0/26\",\r\n \"20.62.128.64/26\",\r\n \"20.72.20.192/26\",\r\n
+ \ \"20.72.28.128/27\",\r\n \"20.150.165.176/28\",\r\n \"20.150.167.0/26\",\r\n
+ \ \"20.150.172.64/27\",\r\n \"20.150.173.32/27\",\r\n \"20.150.179.200/29\",\r\n
+ \ \"20.150.181.0/28\",\r\n \"20.150.181.16/29\",\r\n \"20.150.181.128/27\",\r\n
+ \ \"20.150.187.200/29\",\r\n \"20.150.189.0/28\",\r\n \"20.150.189.16/29\",\r\n
+ \ \"20.150.190.32/27\",\r\n \"20.187.194.224/28\",\r\n \"20.187.196.128/26\",\r\n
+ \ \"20.189.224.64/26\",\r\n \"20.191.160.192/26\",\r\n \"20.192.99.200/29\",\r\n
+ \ \"20.192.101.0/28\",\r\n \"20.192.101.16/29\",\r\n \"20.192.167.0/26\",\r\n
+ \ \"20.192.231.64/26\",\r\n \"20.192.235.240/29\",\r\n \"20.192.238.112/29\",\r\n
+ \ \"20.192.238.192/27\",\r\n \"20.193.203.224/27\",\r\n \"20.194.67.64/27\",\r\n
+ \ \"23.98.83.72/29\",\r\n \"23.98.86.32/28\",\r\n \"23.98.86.48/29\",\r\n
+ \ \"23.98.104.176/28\",\r\n \"23.98.108.64/26\",\r\n \"40.64.132.144/28\",\r\n
+ \ \"40.67.52.0/26\",\r\n \"40.67.60.72/29\",\r\n \"40.67.60.112/28\",\r\n
+ \ \"40.67.60.160/29\",\r\n \"40.69.108.80/29\",\r\n \"40.69.108.176/28\",\r\n
+ \ \"40.69.110.160/29\",\r\n \"40.70.148.56/29\",\r\n \"40.70.151.48/28\",\r\n
+ \ \"40.70.151.64/29\",\r\n \"40.71.13.248/29\",\r\n \"40.71.14.120/29\",\r\n
+ \ \"40.71.15.128/28\",\r\n \"40.74.149.40/29\",\r\n \"40.74.149.56/29\",\r\n
+ \ \"40.74.149.80/28\",\r\n \"40.75.35.72/29\",\r\n \"40.75.35.192/28\",\r\n
+ \ \"40.75.35.208/29\",\r\n \"40.78.196.80/29\",\r\n \"40.78.196.144/28\",\r\n
+ \ \"40.78.196.160/29\",\r\n \"40.78.204.8/29\",\r\n \"40.78.204.144/28\",\r\n
+ \ \"40.78.204.192/29\",\r\n \"40.78.229.80/28\",\r\n \"40.78.229.112/28\",\r\n
+ \ \"40.78.236.136/29\",\r\n \"40.78.238.32/28\",\r\n \"40.78.238.48/29\",\r\n
+ \ \"40.78.243.176/28\",\r\n \"40.78.245.128/28\",\r\n \"40.78.251.144/28\",\r\n
+ \ \"40.78.251.208/28\",\r\n \"40.79.132.88/29\",\r\n \"40.79.139.64/28\",\r\n
+ \ \"40.79.139.128/28\",\r\n \"40.79.146.208/28\",\r\n \"40.79.148.64/28\",\r\n
+ \ \"40.79.156.96/28\",\r\n \"40.79.163.64/29\",\r\n \"40.79.163.128/28\",\r\n
+ \ \"40.79.163.144/29\",\r\n \"40.79.165.96/27\",\r\n \"40.79.171.112/28\",\r\n
+ \ \"40.79.171.176/28\",\r\n \"40.79.180.48/29\",\r\n \"40.79.180.128/28\",\r\n
+ \ \"40.79.180.144/29\",\r\n \"40.79.187.192/29\",\r\n \"40.79.189.32/28\",\r\n
+ \ \"40.79.189.48/29\",\r\n \"40.79.195.176/28\",\r\n \"40.79.195.240/28\",\r\n
+ \ \"40.80.51.112/28\",\r\n \"40.80.51.176/28\",\r\n \"40.80.62.32/28\",\r\n
+ \ \"40.80.172.48/28\",\r\n \"40.80.173.64/26\",\r\n \"40.80.176.40/29\",\r\n
+ \ \"40.80.176.56/29\",\r\n \"40.80.176.112/28\",\r\n \"40.80.191.240/28\",\r\n
+ \ \"40.89.20.160/28\",\r\n \"40.89.23.128/26\",\r\n \"40.119.11.192/28\",\r\n
+ \ \"40.120.75.128/27\",\r\n \"51.11.192.0/28\",\r\n \"51.11.192.16/29\",\r\n
+ \ \"51.12.43.64/26\",\r\n \"51.12.99.216/29\",\r\n \"51.12.100.48/28\",\r\n
+ \ \"51.12.100.96/29\",\r\n \"51.12.102.128/27\",\r\n \"51.12.195.64/26\",\r\n
+ \ \"51.12.204.48/28\",\r\n \"51.12.204.96/28\",\r\n \"51.12.206.32/27\",\r\n
+ \ \"51.12.227.200/29\",\r\n \"51.12.229.0/28\",\r\n \"51.12.229.16/29\",\r\n
+ \ \"51.12.235.200/29\",\r\n \"51.12.237.0/28\",\r\n \"51.12.237.16/29\",\r\n
+ \ \"51.104.9.48/28\",\r\n \"51.104.29.224/28\",\r\n \"51.105.67.184/29\",\r\n
+ \ \"51.105.67.216/29\",\r\n \"51.105.69.64/28\",\r\n \"51.105.75.224/28\",\r\n
+ \ \"51.105.77.32/28\",\r\n \"51.105.83.64/26\",\r\n \"51.105.90.176/28\",\r\n
+ \ \"51.105.93.0/26\",\r\n \"51.107.51.48/28\",\r\n \"51.107.53.128/26\",\r\n
+ \ \"51.107.60.56/29\",\r\n \"51.107.60.128/28\",\r\n \"51.107.60.144/29\",\r\n
+ \ \"51.107.147.48/28\",\r\n \"51.107.148.192/26\",\r\n \"51.107.156.64/29\",\r\n
+ \ \"51.107.156.136/29\",\r\n \"51.107.156.144/28\",\r\n \"51.116.49.192/28\",\r\n
+ \ \"51.116.51.64/26\",\r\n \"51.116.60.56/29\",\r\n \"51.116.60.88/29\",\r\n
+ \ \"51.116.60.128/28\",\r\n \"51.116.145.176/28\",\r\n \"51.116.148.0/26\",\r\n
+ \ \"51.116.156.56/29\",\r\n \"51.116.156.168/29\",\r\n \"51.116.158.32/28\",\r\n
+ \ \"51.116.158.48/29\",\r\n \"51.116.243.152/29\",\r\n \"51.116.243.192/28\",\r\n
+ \ \"51.116.243.208/29\",\r\n \"51.116.245.128/27\",\r\n \"51.116.251.40/29\",\r\n
+ \ \"51.116.251.160/28\",\r\n \"51.116.251.176/29\",\r\n \"51.116.253.64/27\",\r\n
+ \ \"51.120.43.96/28\",\r\n \"51.120.45.0/26\",\r\n \"51.120.100.56/29\",\r\n
+ \ \"51.120.100.128/28\",\r\n \"51.120.100.144/29\",\r\n \"51.120.107.200/29\",\r\n
+ \ \"51.120.109.0/28\",\r\n \"51.120.109.16/29\",\r\n \"51.120.110.160/27\",\r\n
+ \ \"51.120.211.200/29\",\r\n \"51.120.213.0/28\",\r\n \"51.120.213.16/29\",\r\n
+ \ \"51.120.220.56/29\",\r\n \"51.120.220.96/28\",\r\n \"51.120.220.112/29\",\r\n
+ \ \"51.120.227.96/28\",\r\n \"51.120.229.0/26\",\r\n \"51.137.164.128/28\",\r\n
+ \ \"51.137.167.0/26\",\r\n \"51.140.148.40/29\",\r\n \"51.140.149.16/29\",\r\n
+ \ \"51.140.212.96/29\",\r\n \"51.140.212.192/28\",\r\n \"51.140.212.208/29\",\r\n
+ \ \"51.143.195.64/26\",\r\n \"51.143.208.64/26\",\r\n \"52.136.51.96/28\",\r\n
+ \ \"52.136.52.128/26\",\r\n \"52.138.92.88/29\",\r\n \"52.138.92.144/28\",\r\n
+ \ \"52.138.92.160/29\",\r\n \"52.138.227.176/28\",\r\n \"52.138.229.48/28\",\r\n
+ \ \"52.140.108.112/28\",\r\n \"52.140.108.128/28\",\r\n \"52.140.111.0/26\",\r\n
+ \ \"52.146.131.192/26\",\r\n \"52.150.152.64/28\",\r\n \"52.150.156.128/26\",\r\n
+ \ \"52.162.111.32/28\",\r\n \"52.162.111.112/28\",\r\n \"52.167.107.112/28\",\r\n
+ \ \"52.167.107.240/28\",\r\n \"52.172.112.64/26\",\r\n \"52.182.141.0/29\",\r\n
+ \ \"52.182.141.32/28\",\r\n \"52.182.141.48/29\",\r\n \"52.228.85.208/28\",\r\n
+ \ \"52.231.20.8/29\",\r\n \"52.231.20.80/28\",\r\n \"52.231.23.0/29\",\r\n
+ \ \"52.231.148.112/29\",\r\n \"52.231.148.176/28\",\r\n \"52.231.148.192/29\",\r\n
+ \ \"52.236.186.248/29\",\r\n \"52.236.187.96/28\",\r\n \"52.236.189.64/29\",\r\n
+ \ \"52.246.155.176/28\",\r\n \"52.246.155.240/28\",\r\n \"52.246.157.32/27\",\r\n
+ \ \"65.52.252.112/29\",\r\n \"65.52.252.224/28\",\r\n \"65.52.252.240/29\",\r\n
+ \ \"102.133.28.96/29\",\r\n \"102.133.28.152/29\",\r\n \"102.133.28.192/28\",\r\n
+ \ \"102.133.58.240/28\",\r\n \"102.133.60.128/26\",\r\n \"102.133.124.80/29\",\r\n
+ \ \"102.133.124.112/28\",\r\n \"102.133.124.128/29\",\r\n
+ \ \"102.133.156.120/29\",\r\n \"102.133.156.152/29\",\r\n
+ \ \"102.133.156.160/28\",\r\n \"102.133.218.160/28\",\r\n
+ \ \"102.133.220.128/26\",\r\n \"102.133.251.88/29\",\r\n
+ \ \"102.133.251.192/28\",\r\n \"102.133.251.208/29\",\r\n
+ \ \"104.46.177.192/26\",\r\n \"104.214.161.0/29\",\r\n \"104.214.161.16/28\",\r\n
+ \ \"104.214.161.32/29\",\r\n \"168.61.142.96/27\",\r\n \"191.233.11.144/28\",\r\n
+ \ \"191.233.14.128/26\",\r\n \"191.233.51.224/27\",\r\n \"191.233.205.112/28\",\r\n
+ \ \"191.233.205.176/28\",\r\n \"191.234.136.96/28\",\r\n
+ \ \"191.234.139.64/26\",\r\n \"191.234.147.200/29\",\r\n
+ \ \"191.234.149.16/28\",\r\n \"191.234.149.128/29\",\r\n
+ \ \"191.234.149.192/27\",\r\n \"191.234.155.200/29\",\r\n
+ \ \"191.234.157.16/28\",\r\n \"191.234.157.32/29\",\r\n \"191.234.157.96/27\",\r\n
+ \ \"2603:1000:4:402::2e0/123\",\r\n \"2603:1000:104:402::2e0/123\",\r\n
+ \ \"2603:1000:104:802::220/123\",\r\n \"2603:1000:104:c02::220/123\",\r\n
+ \ \"2603:1010:6:402::2e0/123\",\r\n \"2603:1010:6:802::220/123\",\r\n
+ \ \"2603:1010:6:c02::220/123\",\r\n \"2603:1010:101:402::2e0/123\",\r\n
+ \ \"2603:1010:304:402::2e0/123\",\r\n \"2603:1010:404:402::2e0/123\",\r\n
+ \ \"2603:1020:5:402::2e0/123\",\r\n \"2603:1020:5:802::220/123\",\r\n
+ \ \"2603:1020:5:c02::220/123\",\r\n \"2603:1020:206:402::2e0/123\",\r\n
+ \ \"2603:1020:206:802::220/123\",\r\n \"2603:1020:206:c02::220/123\",\r\n
+ \ \"2603:1020:305:402::2e0/123\",\r\n \"2603:1020:405:402::2e0/123\",\r\n
+ \ \"2603:1020:605:402::2e0/123\",\r\n \"2603:1020:705:402::2e0/123\",\r\n
+ \ \"2603:1020:705:802::220/123\",\r\n \"2603:1020:705:c02::220/123\",\r\n
+ \ \"2603:1020:805:402::2e0/123\",\r\n \"2603:1020:805:802::220/123\",\r\n
+ \ \"2603:1020:805:c02::220/123\",\r\n \"2603:1020:905:402::2e0/123\",\r\n
+ \ \"2603:1020:a04:402::2e0/123\",\r\n \"2603:1020:a04:802::220/123\",\r\n
+ \ \"2603:1020:a04:c02::220/123\",\r\n \"2603:1020:b04:402::2e0/123\",\r\n
+ \ \"2603:1020:c04:402::2e0/123\",\r\n \"2603:1020:c04:802::220/123\",\r\n
+ \ \"2603:1020:c04:c02::220/123\",\r\n \"2603:1020:d04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:3::2c0/122\",\r\n \"2603:1020:e04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:802::220/123\",\r\n \"2603:1020:e04:c02::220/123\",\r\n
+ \ \"2603:1020:f04:402::2e0/123\",\r\n \"2603:1020:1004:1::340/122\",\r\n
+ \ \"2603:1020:1004:400::1e0/123\",\r\n \"2603:1020:1004:400::380/123\",\r\n
+ \ \"2603:1020:1004:c02::280/123\",\r\n \"2603:1020:1104:1::100/122\",\r\n
+ \ \"2603:1020:1104:400::2e0/123\",\r\n \"2603:1030:f:2::680/122\",\r\n
+ \ \"2603:1030:f:400::ae0/123\",\r\n \"2603:1030:10:402::2e0/123\",\r\n
+ \ \"2603:1030:10:802::220/123\",\r\n \"2603:1030:10:c02::220/123\",\r\n
+ \ \"2603:1030:104:402::2e0/123\",\r\n \"2603:1030:107::7c0/122\",\r\n
+ \ \"2603:1030:107:400::260/123\",\r\n \"2603:1030:210:402::2e0/123\",\r\n
+ \ \"2603:1030:210:802::220/123\",\r\n \"2603:1030:210:c02::220/123\",\r\n
+ \ \"2603:1030:40b:400::ae0/123\",\r\n \"2603:1030:40b:800::220/123\",\r\n
+ \ \"2603:1030:40b:c00::220/123\",\r\n \"2603:1030:40c:402::2e0/123\",\r\n
+ \ \"2603:1030:40c:802::220/123\",\r\n \"2603:1030:40c:c02::220/123\",\r\n
+ \ \"2603:1030:504::340/122\",\r\n \"2603:1030:504:402::1e0/123\",\r\n
+ \ \"2603:1030:504:402::380/123\",\r\n \"2603:1030:504:802::260/123\",\r\n
+ \ \"2603:1030:504:c02::280/123\",\r\n \"2603:1030:608:402::2e0/123\",\r\n
+ \ \"2603:1030:807:402::2e0/123\",\r\n \"2603:1030:807:802::220/123\",\r\n
+ \ \"2603:1030:807:c02::220/123\",\r\n \"2603:1030:a07:402::960/123\",\r\n
+ \ \"2603:1030:b04:402::2e0/123\",\r\n \"2603:1030:c06:400::ae0/123\",\r\n
+ \ \"2603:1030:c06:802::220/123\",\r\n \"2603:1030:c06:c02::220/123\",\r\n
+ \ \"2603:1030:f05:402::2e0/123\",\r\n \"2603:1030:f05:802::220/123\",\r\n
+ \ \"2603:1030:f05:c02::220/123\",\r\n \"2603:1030:1005:402::2e0/123\",\r\n
+ \ \"2603:1040:5:402::2e0/123\",\r\n \"2603:1040:5:802::220/123\",\r\n
+ \ \"2603:1040:5:c02::220/123\",\r\n \"2603:1040:207:402::2e0/123\",\r\n
+ \ \"2603:1040:407:402::2e0/123\",\r\n \"2603:1040:407:802::220/123\",\r\n
+ \ \"2603:1040:407:c02::220/123\",\r\n \"2603:1040:606:402::2e0/123\",\r\n
+ \ \"2603:1040:806:402::2e0/123\",\r\n \"2603:1040:904:402::2e0/123\",\r\n
+ \ \"2603:1040:904:802::220/123\",\r\n \"2603:1040:904:c02::220/123\",\r\n
+ \ \"2603:1040:a06:402::2e0/123\",\r\n \"2603:1040:a06:802::220/123\",\r\n
+ \ \"2603:1040:a06:c02::220/123\",\r\n \"2603:1040:b04:402::2e0/123\",\r\n
+ \ \"2603:1040:c06:402::2e0/123\",\r\n \"2603:1040:d04:1::340/122\",\r\n
+ \ \"2603:1040:d04:400::1e0/123\",\r\n \"2603:1040:d04:400::380/123\",\r\n
+ \ \"2603:1040:d04:c02::280/123\",\r\n \"2603:1040:f05:2::200/122\",\r\n
+ \ \"2603:1040:f05:402::2e0/123\",\r\n \"2603:1040:f05:802::220/123\",\r\n
+ \ \"2603:1040:f05:c02::220/123\",\r\n \"2603:1040:1104:1::100/122\",\r\n
+ \ \"2603:1040:1104:400::2e0/123\",\r\n \"2603:1050:6:402::2e0/123\",\r\n
+ \ \"2603:1050:6:802::220/123\",\r\n \"2603:1050:6:c02::220/123\",\r\n
+ \ \"2603:1050:403:400::200/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApplicationInsightsAvailability\",\r\n \"id\":
+ \"ApplicationInsightsAvailability\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ApplicationInsightsAvailability\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.97.224/27\",\r\n \"13.86.98.0/27\",\r\n
+ \ \"13.86.98.48/28\",\r\n \"13.86.98.64/28\",\r\n \"20.37.156.64/27\",\r\n
+ \ \"20.37.192.80/29\",\r\n \"20.38.80.80/28\",\r\n \"20.40.104.96/27\",\r\n
+ \ \"20.40.104.128/27\",\r\n \"20.40.124.176/28\",\r\n \"20.40.124.240/28\",\r\n
+ \ \"20.40.125.80/28\",\r\n \"20.40.129.32/27\",\r\n \"20.40.129.64/26\",\r\n
+ \ \"20.40.129.128/27\",\r\n \"20.42.4.64/27\",\r\n \"20.42.35.32/28\",\r\n
+ \ \"20.42.35.64/26\",\r\n \"20.42.35.128/28\",\r\n \"20.42.129.32/27\",\r\n
+ \ \"20.43.40.80/28\",\r\n \"20.43.64.80/29\",\r\n \"20.43.128.96/29\",\r\n
+ \ \"20.45.5.160/27\",\r\n \"20.45.5.192/26\",\r\n \"20.189.106.64/29\",\r\n
+ \ \"23.100.224.16/28\",\r\n \"23.100.224.32/27\",\r\n \"23.100.224.64/26\",\r\n
+ \ \"23.100.225.0/28\",\r\n \"40.74.24.80/28\",\r\n \"40.80.186.128/26\",\r\n
+ \ \"40.91.82.48/28\",\r\n \"40.91.82.64/26\",\r\n \"40.91.82.128/28\",\r\n
+ \ \"40.119.8.96/27\",\r\n \"51.104.24.80/29\",\r\n \"51.105.9.128/27\",\r\n
+ \ \"51.105.9.160/28\",\r\n \"51.137.160.80/29\",\r\n \"51.144.56.96/27\",\r\n
+ \ \"51.144.56.128/26\",\r\n \"52.139.250.96/27\",\r\n \"52.139.250.128/27\",\r\n
+ \ \"52.140.232.160/27\",\r\n \"52.140.232.192/28\",\r\n \"52.158.28.64/26\",\r\n
+ \ \"52.229.216.48/28\",\r\n \"52.229.216.64/27\",\r\n \"191.233.26.64/28\",\r\n
+ \ \"191.233.26.128/28\",\r\n \"191.233.26.176/28\",\r\n \"191.235.224.80/29\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApplicationInsightsAvailability.JapanEast\",\r\n
+ \ \"id\": \"ApplicationInsightsAvailability.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ApplicationInsightsAvailability\",\r\n \"addressPrefixes\": [\r\n
+ \ \"20.43.64.80/29\",\r\n \"52.140.232.160/27\",\r\n \"52.140.232.192/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService\",\r\n
+ \ \"id\": \"AppService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.110/32\",\r\n \"13.65.30.245/32\",\r\n
+ \ \"13.65.37.122/32\",\r\n \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n
+ \ \"13.65.42.183/32\",\r\n \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n
+ \ \"13.65.89.91/32\",\r\n \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n
+ \ \"13.65.95.109/32\",\r\n \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n
+ \ \"13.65.210.166/32\",\r\n \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n
+ \ \"13.65.243.110/32\",\r\n \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n
+ \ \"13.66.39.88/32\",\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.67.9.0/25\",\r\n
+ \ \"13.67.56.225/32\",\r\n \"13.67.63.90/32\",\r\n \"13.67.129.26/32\",\r\n
+ \ \"13.67.141.98/32\",\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.69.68.0/23\",\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n \"13.71.122.35/32\",\r\n
+ \ \"13.71.123.138/32\",\r\n \"13.71.149.151/32\",\r\n \"13.71.170.128/27\",\r\n
+ \ \"13.71.194.192/27\",\r\n \"13.73.1.134/32\",\r\n \"13.73.26.73/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.74.41.233/32\",\r\n
+ \ \"13.74.147.218/32\",\r\n \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n
+ \ \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n \"13.75.47.15/32\",\r\n
+ \ \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n \"13.75.115.40/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"13.77.7.175/32\",\r\n \"13.77.50.96/27\",\r\n \"13.77.82.141/32\",\r\n
+ \ \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"13.78.59.237/32\",\r\n
+ \ \"13.78.106.96/27\",\r\n \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n
+ \ \"13.78.150.96/32\",\r\n \"13.78.184.89/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n \"13.82.175.96/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"13.89.57.7/32\",\r\n
+ \ \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n \"13.90.143.69/32\",\r\n
+ \ \"13.90.213.204/32\",\r\n \"13.91.40.166/32\",\r\n \"13.91.242.166/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n \"13.93.220.109/32\",\r\n
+ \ \"13.93.231.75/32\",\r\n \"13.94.47.87/32\",\r\n \"13.94.143.57/32\",\r\n
+ \ \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n \"13.95.82.181/32\",\r\n
+ \ \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n \"13.95.238.192/32\",\r\n
+ \ \"20.36.43.207/32\",\r\n \"20.36.72.230/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n \"20.37.66.0/27\",\r\n
+ \ \"20.37.74.96/27\",\r\n \"20.37.196.192/27\",\r\n \"20.37.226.0/27\",\r\n
+ \ \"20.38.138.0/27\",\r\n \"20.38.146.160/27\",\r\n \"20.39.11.104/29\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"20.41.66.224/27\",\r\n \"20.41.195.192/27\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.42.128.96/27\",\r\n \"20.42.228.160/27\",\r\n
+ \ \"20.43.43.32/27\",\r\n \"20.43.67.32/27\",\r\n \"20.43.132.128/25\",\r\n
+ \ \"20.44.2.32/27\",\r\n \"20.44.26.160/27\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.45.196.16/29\",\r\n \"20.49.82.32/27\",\r\n \"20.49.90.32/27\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"20.49.104.0/25\",\r\n \"20.50.2.0/23\",\r\n
+ \ \"20.50.64.0/25\",\r\n \"20.72.26.32/27\",\r\n \"20.150.170.192/27\",\r\n
+ \ \"20.150.178.160/27\",\r\n \"20.150.186.160/27\",\r\n \"20.188.98.74/32\",\r\n
+ \ \"20.189.104.96/27\",\r\n \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n
+ \ \"20.192.98.160/27\",\r\n \"20.192.234.128/27\",\r\n \"20.193.202.128/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"23.96.0.52/32\",\r\n \"23.96.1.109/32\",\r\n
+ \ \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n \"23.96.96.142/32\",\r\n
+ \ \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n \"23.96.113.128/32\",\r\n
+ \ \"23.96.124.25/32\",\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n
+ \ \"23.96.207.177/32\",\r\n \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n
+ \ \"23.97.56.169/32\",\r\n \"23.97.79.119/32\",\r\n \"23.97.96.32/32\",\r\n
+ \ \"23.97.160.56/32\",\r\n \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n
+ \ \"23.97.195.129/32\",\r\n \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n
+ \ \"23.97.216.47/32\",\r\n \"23.97.224.11/32\",\r\n \"23.98.64.36/32\",\r\n
+ \ \"23.98.64.158/32\",\r\n \"23.99.0.12/32\",\r\n \"23.99.65.65/32\",\r\n
+ \ \"23.99.91.55/32\",\r\n \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n
+ \ \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n \"23.99.192.132/32\",\r\n
+ \ \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n \"23.99.224.56/32\",\r\n
+ \ \"23.100.1.29/32\",\r\n \"23.100.46.198/32\",\r\n \"23.100.48.106/32\",\r\n
+ \ \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n \"23.100.56.27/32\",\r\n
+ \ \"23.100.72.240/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"23.101.27.182/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.101.67.245/32\",\r\n \"23.101.118.145/32\",\r\n \"23.101.119.44/32\",\r\n
+ \ \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n \"23.101.125.65/32\",\r\n
+ \ \"23.101.147.117/32\",\r\n \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n
+ \ \"23.101.172.244/32\",\r\n \"23.101.180.75/32\",\r\n \"23.101.203.117/32\",\r\n
+ \ \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"23.101.224.24/32\",\r\n \"23.101.230.162/32\",\r\n \"23.102.12.43/32\",\r\n
+ \ \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n \"23.102.25.149/32\",\r\n
+ \ \"23.102.28.178/32\",\r\n \"23.102.154.38/32\",\r\n \"23.102.161.217/32\",\r\n
+ \ \"23.102.191.170/32\",\r\n \"40.64.128.224/27\",\r\n \"40.67.58.192/27\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.106.96/27\",\r\n \"40.69.190.41/32\",\r\n
+ \ \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n \"40.69.218.150/32\",\r\n
+ \ \"40.70.27.35/32\",\r\n \"40.70.147.0/25\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.74.100.128/27\",\r\n
+ \ \"40.74.133.20/32\",\r\n \"40.74.245.188/32\",\r\n \"40.74.253.108/32\",\r\n
+ \ \"40.74.255.112/32\",\r\n \"40.76.5.137/32\",\r\n \"40.76.192.15/32\",\r\n
+ \ \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n \"40.76.223.101/32\",\r\n
+ \ \"40.77.56.174/32\",\r\n \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n
+ \ \"40.78.48.219/32\",\r\n \"40.78.194.96/27\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"40.79.65.200/32\",\r\n \"40.79.130.128/27\",\r\n \"40.79.154.192/27\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.79.178.96/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.80.50.160/27\",\r\n \"40.80.58.224/27\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.80.170.224/27\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"40.82.191.84/32\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.82.255.128/25\",\r\n \"40.83.16.172/32\",\r\n \"40.83.72.59/32\",\r\n
+ \ \"40.83.124.73/32\",\r\n \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n
+ \ \"40.83.182.206/32\",\r\n \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n
+ \ \"40.84.54.203/32\",\r\n \"40.84.59.174/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.85.74.227/32\",\r\n
+ \ \"40.85.92.115/32\",\r\n \"40.85.96.208/32\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n \"40.86.86.144/32\",\r\n
+ \ \"40.86.91.212/32\",\r\n \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n
+ \ \"40.86.225.89/32\",\r\n \"40.86.230.96/32\",\r\n \"40.87.65.131/32\",\r\n
+ \ \"40.87.70.95/32\",\r\n \"40.89.19.0/27\",\r\n \"40.89.131.148/32\",\r\n
+ \ \"40.89.141.103/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.112.142.148/32\",\r\n \"40.112.143.134/32\",\r\n
+ \ \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n \"40.112.165.44/32\",\r\n
+ \ \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n \"40.112.192.69/32\",\r\n
+ \ \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n \"40.113.2.52/32\",\r\n
+ \ \"40.113.65.9/32\",\r\n \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n
+ \ \"40.113.90.202/32\",\r\n \"40.113.126.251/32\",\r\n \"40.113.131.37/32\",\r\n
+ \ \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n
+ \ \"40.114.228.161/32\",\r\n \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n
+ \ \"40.115.55.251/32\",\r\n \"40.115.98.85/32\",\r\n \"40.115.179.121/32\",\r\n
+ \ \"40.115.251.148/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n
+ \ \"40.118.96.231/32\",\r\n \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n
+ \ \"40.118.102.46/32\",\r\n \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n
+ \ \"40.118.246.51/32\",\r\n \"40.118.255.59/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.120.74.32/27\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n \"40.124.12.75/32\",\r\n
+ \ \"40.124.13.58/32\",\r\n \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n
+ \ \"40.126.242.59/32\",\r\n \"40.126.245.169/32\",\r\n \"40.127.132.204/32\",\r\n
+ \ \"40.127.139.252/32\",\r\n \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n
+ \ \"51.12.98.192/27\",\r\n \"51.12.202.192/27\",\r\n \"51.12.226.160/27\",\r\n
+ \ \"51.12.234.160/27\",\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.105.90.32/27\",\r\n \"51.105.172.25/32\",\r\n
+ \ \"51.107.50.0/27\",\r\n \"51.107.58.160/27\",\r\n \"51.107.146.0/27\",\r\n
+ \ \"51.107.154.160/27\",\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n \"51.116.242.160/27\",\r\n
+ \ \"51.116.250.160/27\",\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"51.120.218.192/27\",\r\n
+ \ \"51.120.226.0/27\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.137.163.32/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.140.210.96/27\",\r\n \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n
+ \ \"51.141.12.112/32\",\r\n \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n
+ \ \"51.141.45.207/32\",\r\n \"51.141.90.252/32\",\r\n \"51.143.102.21/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n
+ \ \"51.144.116.43/32\",\r\n \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n
+ \ \"52.136.50.0/27\",\r\n \"52.136.138.55/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.140.106.224/27\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"52.150.140.224/27\",\r\n \"52.151.62.51/32\",\r\n \"52.160.40.218/32\",\r\n
+ \ \"52.161.96.193/32\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"52.172.54.225/32\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"52.173.28.95/32\",\r\n \"52.173.36.83/32\",\r\n
+ \ \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n \"52.173.83.49/32\",\r\n
+ \ \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n \"52.173.94.173/32\",\r\n
+ \ \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n \"52.173.139.125/32\",\r\n
+ \ \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n \"52.173.184.147/32\",\r\n
+ \ \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.175.158.219/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.176.2.229/32\",\r\n
+ \ \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n \"52.176.6.37/32\",\r\n
+ \ \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n \"52.176.149.197/32\",\r\n
+ \ \"52.176.165.69/32\",\r\n \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n
+ \ \"52.177.206.73/32\",\r\n \"52.178.29.39/32\",\r\n \"52.178.37.244/32\",\r\n
+ \ \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n \"52.178.46.181/32\",\r\n
+ \ \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n \"52.178.89.129/32\",\r\n
+ \ \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n \"52.178.105.179/32\",\r\n
+ \ \"52.178.114.226/32\",\r\n \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n
+ \ \"52.178.179.169/32\",\r\n \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n
+ \ \"52.178.208.12/32\",\r\n \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n
+ \ \"52.179.97.15/32\",\r\n \"52.179.188.206/32\",\r\n \"52.180.178.6/32\",\r\n
+ \ \"52.180.183.66/32\",\r\n \"52.183.82.125/32\",\r\n \"52.184.162.135/32\",\r\n
+ \ \"52.184.193.103/32\",\r\n \"52.184.193.104/32\",\r\n \"52.187.17.126/32\",\r\n
+ \ \"52.187.36.104/32\",\r\n \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n
+ \ \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n \"52.189.213.49/32\",\r\n
+ \ \"52.225.179.39/32\",\r\n \"52.225.190.65/32\",\r\n \"52.226.134.64/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"52.229.115.84/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n \"52.231.38.95/32\",\r\n
+ \ \"52.231.77.58/32\",\r\n \"52.231.146.96/27\",\r\n \"52.231.200.101/32\",\r\n
+ \ \"52.231.200.179/32\",\r\n \"52.232.19.237/32\",\r\n \"52.232.26.228/32\",\r\n
+ \ \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n \"52.232.127.196/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"52.234.209.94/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n
+ \ \"52.237.246.162/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"52.243.39.89/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"52.252.160.21/32\",\r\n \"52.253.224.223/32\",\r\n
+ \ \"52.255.35.249/32\",\r\n \"52.255.54.134/32\",\r\n \"65.52.24.41/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"65.52.213.73/32\",\r\n \"65.52.217.59/32\",\r\n
+ \ \"65.52.218.253/32\",\r\n \"65.52.250.96/27\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n \"102.133.122.160/27\",\r\n
+ \ \"102.133.154.32/27\",\r\n \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"104.40.3.53/32\",\r\n \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n
+ \ \"104.40.53.219/32\",\r\n \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n
+ \ \"104.40.92.107/32\",\r\n \"104.40.129.89/32\",\r\n \"104.40.147.180/32\",\r\n
+ \ \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n \"104.40.179.243/32\",\r\n
+ \ \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n \"104.40.187.26/32\",\r\n
+ \ \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n \"104.40.215.219/32\",\r\n
+ \ \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n \"104.41.9.139/32\",\r\n
+ \ \"104.41.13.179/32\",\r\n \"104.41.63.108/32\",\r\n \"104.41.186.103/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.42.53.248/32\",\r\n
+ \ \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n \"104.42.148.55/32\",\r\n
+ \ \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n \"104.42.188.146/32\",\r\n
+ \ \"104.42.231.5/32\",\r\n \"104.43.129.105/32\",\r\n \"104.43.140.101/32\",\r\n
+ \ \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n \"104.43.246.71/32\",\r\n
+ \ \"104.43.254.102/32\",\r\n \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"104.45.129.178/32\",\r\n \"104.45.141.247/32\",\r\n
+ \ \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n \"104.45.154.200/32\",\r\n
+ \ \"104.45.226.98/32\",\r\n \"104.45.231.79/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.46.101.59/32\",\r\n
+ \ \"104.47.137.62/32\",\r\n \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n
+ \ \"104.47.164.119/32\",\r\n \"104.208.48.107/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"104.210.38.149/32\",\r\n \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n
+ \ \"104.210.145.181/32\",\r\n \"104.210.147.57/32\",\r\n
+ \ \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.211.26.212/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"104.211.146.96/27\",\r\n \"104.211.160.159/32\",\r\n
+ \ \"104.211.179.11/32\",\r\n \"104.211.184.197/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"104.215.11.176/32\",\r\n
+ \ \"104.215.58.230/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n
+ \ \"111.221.95.27/32\",\r\n \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"137.117.9.212/32\",\r\n \"137.117.17.70/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.117.166.35/32\",\r\n \"137.117.175.14/32\",\r\n
+ \ \"137.117.203.130/32\",\r\n \"137.117.211.244/32\",\r\n
+ \ \"137.117.218.101/32\",\r\n \"137.117.224.218/32\",\r\n
+ \ \"137.117.225.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"138.91.0.30/32\",\r\n \"138.91.16.18/32\",\r\n \"138.91.224.84/32\",\r\n
+ \ \"138.91.225.40/32\",\r\n \"138.91.240.81/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.61.152.29/32\",\r\n \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n
+ \ \"168.61.218.125/32\",\r\n \"168.62.20.37/32\",\r\n \"168.62.48.183/32\",\r\n
+ \ \"168.62.180.173/32\",\r\n \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.53.239/32\",\r\n \"168.63.107.5/32\",\r\n
+ \ \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n \"191.233.50.32/27\",\r\n
+ \ \"191.233.82.44/32\",\r\n \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.16.188/32\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n \"191.235.177.30/32\",\r\n
+ \ \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"191.236.16.12/32\",\r\n \"191.236.59.67/32\",\r\n
+ \ \"191.236.80.12/32\",\r\n \"191.236.106.123/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"191.236.192.121/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n
+ \ \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"191.239.58.162/32\",\r\n \"191.239.188.11/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1000:4:402::a0/123\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\",\r\n
+ \ \"2603:1010:101:402::a0/123\",\r\n \"2603:1010:304:402::a0/123\",\r\n
+ \ \"2603:1010:404:402::a0/123\",\r\n \"2603:1020:5:402::a0/123\",\r\n
+ \ \"2603:1020:5:802::a0/123\",\r\n \"2603:1020:5:c02::a0/123\",\r\n
+ \ \"2603:1020:206:402::a0/123\",\r\n \"2603:1020:206:802::a0/123\",\r\n
+ \ \"2603:1020:206:c02::a0/123\",\r\n \"2603:1020:305:402::a0/123\",\r\n
+ \ \"2603:1020:405:402::a0/123\",\r\n \"2603:1020:605:402::a0/123\",\r\n
+ \ \"2603:1020:705:402::a0/123\",\r\n \"2603:1020:705:802::a0/123\",\r\n
+ \ \"2603:1020:705:c02::a0/123\",\r\n \"2603:1020:805:402::a0/123\",\r\n
+ \ \"2603:1020:805:802::a0/123\",\r\n \"2603:1020:805:c02::a0/123\",\r\n
+ \ \"2603:1020:905:402::a0/123\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\",\r\n
+ \ \"2603:1020:b04:402::a0/123\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\",\r\n
+ \ \"2603:1020:d04:402::a0/123\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\",\r\n
+ \ \"2603:1020:f04:402::a0/123\",\r\n \"2603:1020:1004:400::a0/123\",\r\n
+ \ \"2603:1020:1004:800::160/123\",\r\n \"2603:1020:1004:800::360/123\",\r\n
+ \ \"2603:1020:1104:400::a0/123\",\r\n \"2603:1030:f:400::8a0/123\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\",\r\n \"2603:1030:104:402::a0/123\",\r\n
+ \ \"2603:1030:107:400::20/123\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\",\r\n
+ \ \"2603:1030:40b:400::8a0/123\",\r\n \"2603:1030:40b:800::a0/123\",\r\n
+ \ \"2603:1030:40b:c00::a0/123\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\",\r\n
+ \ \"2603:1030:504:402::a0/123\",\r\n \"2603:1030:504:802::160/123\",\r\n
+ \ \"2603:1030:504:802::360/123\",\r\n \"2603:1030:504:c02::3a0/123\",\r\n
+ \ \"2603:1030:608:402::a0/123\",\r\n \"2603:1030:807:402::a0/123\",\r\n
+ \ \"2603:1030:807:802::a0/123\",\r\n \"2603:1030:807:c02::a0/123\",\r\n
+ \ \"2603:1030:a07:402::a0/123\",\r\n \"2603:1030:b04:402::a0/123\",\r\n
+ \ \"2603:1030:c06:400::8a0/123\",\r\n \"2603:1030:c06:802::a0/123\",\r\n
+ \ \"2603:1030:c06:c02::a0/123\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\",\r\n
+ \ \"2603:1030:1005:402::a0/123\",\r\n \"2603:1040:5:402::a0/123\",\r\n
+ \ \"2603:1040:5:802::a0/123\",\r\n \"2603:1040:5:c02::a0/123\",\r\n
+ \ \"2603:1040:207:402::a0/123\",\r\n \"2603:1040:407:402::a0/123\",\r\n
+ \ \"2603:1040:407:802::a0/123\",\r\n \"2603:1040:407:c02::a0/123\",\r\n
+ \ \"2603:1040:606:402::a0/123\",\r\n \"2603:1040:806:402::a0/123\",\r\n
+ \ \"2603:1040:904:402::a0/123\",\r\n \"2603:1040:904:802::a0/123\",\r\n
+ \ \"2603:1040:904:c02::a0/123\",\r\n \"2603:1040:a06:402::a0/123\",\r\n
+ \ \"2603:1040:a06:802::a0/123\",\r\n \"2603:1040:a06:c02::a0/123\",\r\n
+ \ \"2603:1040:b04:402::a0/123\",\r\n \"2603:1040:c06:402::a0/123\",\r\n
+ \ \"2603:1040:d04:400::a0/123\",\r\n \"2603:1040:d04:800::160/123\",\r\n
+ \ \"2603:1040:d04:800::360/123\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\",\r\n
+ \ \"2603:1040:1104:400::a0/123\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\",\r\n
+ \ \"2603:1050:403:400::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaCentral\",\r\n \"id\":
+ \"AppService.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.43.207/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.37.226.0/27\",\r\n \"2603:1010:304:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppService.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.230/32\",\r\n \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n
+ \ \"2603:1010:404:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaEast\",\r\n \"id\": \"AppService.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"20.37.196.192/27\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n \"40.126.242.59/32\",\r\n
+ \ \"40.126.245.169/32\",\r\n \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n
+ \ \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n \"52.237.246.162/32\",\r\n
+ \ \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppService.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.77.7.175/32\",\r\n
+ \ \"13.77.50.96/27\",\r\n \"20.42.228.160/27\",\r\n \"23.101.224.24/32\",\r\n
+ \ \"23.101.230.162/32\",\r\n \"52.189.213.49/32\",\r\n \"52.255.35.249/32\",\r\n
+ \ \"52.255.54.134/32\",\r\n \"191.239.188.11/32\",\r\n \"2603:1010:101:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.BrazilSouth\",\r\n
+ \ \"id\": \"AppService.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.96.32/32\",\r\n \"104.41.9.139/32\",\r\n \"104.41.13.179/32\",\r\n
+ \ \"104.41.63.108/32\",\r\n \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaCentral\",\r\n
+ \ \"id\": \"AppService.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.128/27\",\r\n \"20.38.146.160/27\",\r\n
+ \ \"40.82.191.84/32\",\r\n \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaEast\",\r\n
+ \ \"id\": \"AppService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.96/27\",\r\n \"40.86.225.89/32\",\r\n
+ \ \"40.86.230.96/32\",\r\n \"40.89.19.0/27\",\r\n \"52.229.115.84/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"2603:1030:1005:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CentralIndia\",\r\n
+ \ \"id\": \"AppService.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.98.160/27\",\r\n \"40.80.50.160/27\",\r\n
+ \ \"52.140.106.224/27\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"2603:1040:a06:402::a0/123\",\r\n \"2603:1040:a06:802::a0/123\",\r\n
+ \ \"2603:1040:a06:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUS\",\r\n \"id\": \"AppService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.129.26/32\",\r\n \"13.67.141.98/32\",\r\n
+ \ \"13.89.57.7/32\",\r\n \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n
+ \ \"23.99.192.132/32\",\r\n \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n
+ \ \"23.99.224.56/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.118.145/32\",\r\n
+ \ \"23.101.119.44/32\",\r\n \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n
+ \ \"23.101.125.65/32\",\r\n \"40.69.190.41/32\",\r\n \"40.77.56.174/32\",\r\n
+ \ \"40.83.16.172/32\",\r\n \"40.86.86.144/32\",\r\n \"40.86.91.212/32\",\r\n
+ \ \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.173.28.95/32\",\r\n
+ \ \"52.173.36.83/32\",\r\n \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n
+ \ \"52.173.83.49/32\",\r\n \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n
+ \ \"52.173.94.173/32\",\r\n \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n
+ \ \"52.173.139.125/32\",\r\n \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n
+ \ \"52.173.184.147/32\",\r\n \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n
+ \ \"52.176.2.229/32\",\r\n \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n
+ \ \"52.176.6.37/32\",\r\n \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n
+ \ \"52.176.149.197/32\",\r\n \"52.176.165.69/32\",\r\n \"104.43.129.105/32\",\r\n
+ \ \"104.43.140.101/32\",\r\n \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n
+ \ \"104.43.246.71/32\",\r\n \"104.43.254.102/32\",\r\n \"168.61.152.29/32\",\r\n
+ \ \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n \"168.61.218.125/32\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUSEUAP\",\r\n \"id\": \"AppService.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.196.16/29\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"52.180.178.6/32\",\r\n \"52.180.183.66/32\",\r\n \"104.208.48.107/32\",\r\n
+ \ \"2603:1030:f:400::8a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.EastAsia\",\r\n \"id\": \"AppService.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n
+ \ \"13.75.47.15/32\",\r\n \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n
+ \ \"13.75.115.40/32\",\r\n \"13.94.47.87/32\",\r\n \"20.189.104.96/27\",\r\n
+ \ \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n \"23.97.79.119/32\",\r\n
+ \ \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"40.83.72.59/32\",\r\n \"40.83.124.73/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"191.234.16.188/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1040:207:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS\",\r\n
+ \ \"id\": \"AppService.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n
+ \ \"13.82.175.96/32\",\r\n \"13.90.143.69/32\",\r\n \"13.90.213.204/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.49.104.0/25\",\r\n \"23.96.0.52/32\",\r\n
+ \ \"23.96.1.109/32\",\r\n \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n
+ \ \"23.96.96.142/32\",\r\n \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n
+ \ \"23.96.113.128/32\",\r\n \"23.96.124.25/32\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.76.5.137/32\",\r\n
+ \ \"40.76.192.15/32\",\r\n \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n
+ \ \"40.76.223.101/32\",\r\n \"40.79.154.192/27\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.87.65.131/32\",\r\n \"40.87.70.95/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.179.97.15/32\",\r\n
+ \ \"52.226.134.64/32\",\r\n \"52.234.209.94/32\",\r\n \"104.45.129.178/32\",\r\n
+ \ \"104.45.141.247/32\",\r\n \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n
+ \ \"104.45.154.200/32\",\r\n \"104.211.26.212/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"168.62.48.183/32\",\r\n \"168.62.180.173/32\",\r\n \"191.236.16.12/32\",\r\n
+ \ \"191.236.59.67/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2\",\r\n
+ \ \"id\": \"AppService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.77.82.141/32\",\r\n \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"23.101.147.117/32\",\r\n \"40.70.27.35/32\",\r\n
+ \ \"40.70.147.0/25\",\r\n \"40.79.65.200/32\",\r\n \"40.84.54.203/32\",\r\n
+ \ \"40.84.59.174/32\",\r\n \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n
+ \ \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n \"52.177.206.73/32\",\r\n
+ \ \"52.179.188.206/32\",\r\n \"52.184.162.135/32\",\r\n \"52.184.193.103/32\",\r\n
+ \ \"52.184.193.104/32\",\r\n \"104.46.101.59/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n \"191.236.192.121/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2EUAP\",\r\n
+ \ \"id\": \"AppService.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.11.104/29\",\r\n \"52.225.179.39/32\",\r\n
+ \ \"52.225.190.65/32\",\r\n \"52.253.224.223/32\",\r\n \"2603:1030:40b:400::8a0/123\",\r\n
+ \ \"2603:1030:40b:800::a0/123\",\r\n \"2603:1030:40b:c00::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.FranceCentral\",\r\n
+ \ \"id\": \"AppService.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.43.32/27\",\r\n \"40.79.130.128/27\",\r\n
+ \ \"40.89.131.148/32\",\r\n \"40.89.141.103/32\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"2603:1020:805:402::a0/123\",\r\n \"2603:1020:805:802::a0/123\",\r\n
+ \ \"2603:1020:805:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.FranceSouth\",\r\n \"id\": \"AppService.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.79.178.96/27\",\r\n \"51.105.90.32/27\",\r\n
+ \ \"52.136.138.55/32\",\r\n \"2603:1020:905:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.GermanyNorth\",\r\n
+ \ \"id\": \"AppService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"2603:1020:d04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.GermanyWestCentral\",\r\n \"id\":
+ \"AppService.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n
+ \ \"51.116.242.160/27\",\r\n \"51.116.250.160/27\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.JapanEast\",\r\n
+ \ \"id\": \"AppService.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.149.151/32\",\r\n \"13.73.1.134/32\",\r\n
+ \ \"13.73.26.73/32\",\r\n \"13.78.59.237/32\",\r\n \"13.78.106.96/27\",\r\n
+ \ \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n \"20.43.67.32/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.115.179.121/32\",\r\n \"40.115.251.148/32\",\r\n
+ \ \"52.243.39.89/32\",\r\n \"104.41.186.103/32\",\r\n \"138.91.0.30/32\",\r\n
+ \ \"2603:1040:407:402::a0/123\",\r\n \"2603:1040:407:802::a0/123\",\r\n
+ \ \"2603:1040:407:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.JapanWest\",\r\n \"id\": \"AppService.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.128/27\",\r\n \"40.74.133.20/32\",\r\n
+ \ \"40.80.58.224/27\",\r\n \"52.175.158.219/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.215.11.176/32\",\r\n \"104.215.58.230/32\",\r\n \"138.91.16.18/32\",\r\n
+ \ \"2603:1040:606:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.KoreaCentral\",\r\n \"id\": \"AppService.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.66.224/27\",\r\n \"20.44.26.160/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n
+ \ \"52.231.38.95/32\",\r\n \"52.231.77.58/32\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.KoreaSouth\",\r\n
+ \ \"id\": \"AppService.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.224/27\",\r\n \"52.231.146.96/27\",\r\n
+ \ \"52.231.200.101/32\",\r\n \"52.231.200.179/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AppService.NorthCentralUS\",\r\n
+ \ \"id\": \"AppService.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n \"23.96.207.177/32\",\r\n
+ \ \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n \"23.100.72.240/32\",\r\n
+ \ \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n \"23.101.172.244/32\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.252.160.21/32\",\r\n \"65.52.24.41/32\",\r\n \"65.52.213.73/32\",\r\n
+ \ \"65.52.217.59/32\",\r\n \"65.52.218.253/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"2603:1030:608:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorthEurope\",\r\n \"id\": \"AppService.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.74.41.233/32\",\r\n \"13.74.147.218/32\",\r\n
+ \ \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"20.50.64.0/25\",\r\n
+ \ \"23.100.48.106/32\",\r\n \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n
+ \ \"23.100.56.27/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.102.12.43/32\",\r\n \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n
+ \ \"23.102.25.149/32\",\r\n \"23.102.28.178/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n
+ \ \"40.69.218.150/32\",\r\n \"40.85.74.227/32\",\r\n \"40.85.92.115/32\",\r\n
+ \ \"40.85.96.208/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.113.2.52/32\",\r\n \"40.113.65.9/32\",\r\n
+ \ \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n \"40.113.90.202/32\",\r\n
+ \ \"40.115.98.85/32\",\r\n \"40.127.132.204/32\",\r\n \"40.127.139.252/32\",\r\n
+ \ \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n \"52.178.179.169/32\",\r\n
+ \ \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n \"52.178.208.12/32\",\r\n
+ \ \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"168.63.53.239/32\",\r\n \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n
+ \ \"191.235.177.30/32\",\r\n \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"2603:1020:5:402::a0/123\",\r\n \"2603:1020:5:802::a0/123\",\r\n
+ \ \"2603:1020:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorwayEast\",\r\n \"id\": \"AppService.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.NorwayWest\",\r\n
+ \ \"id\": \"AppService.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.192/27\",\r\n \"51.120.226.0/27\",\r\n
+ \ \"2603:1020:f04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaNorth\",\r\n \"id\":
+ \"AppService.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.160/27\",\r\n \"102.133.154.32/27\",\r\n
+ \ \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaWest\",\r\n \"id\":
+ \"AppService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n
+ \ \"2603:1000:4:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthCentralUS\",\r\n \"id\": \"AppService.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.30.245/32\",\r\n \"13.65.37.122/32\",\r\n
+ \ \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n \"13.65.42.183/32\",\r\n
+ \ \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n \"13.65.89.91/32\",\r\n
+ \ \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n \"13.65.95.109/32\",\r\n
+ \ \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n \"13.65.210.166/32\",\r\n
+ \ \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n \"13.65.243.110/32\",\r\n
+ \ \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n \"13.66.39.88/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.49.90.32/27\",\r\n \"23.101.180.75/32\",\r\n \"23.102.154.38/32\",\r\n
+ \ \"23.102.161.217/32\",\r\n \"23.102.191.170/32\",\r\n \"40.74.245.188/32\",\r\n
+ \ \"40.74.253.108/32\",\r\n \"40.74.255.112/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.124.12.75/32\",\r\n \"40.124.13.58/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n \"104.210.145.181/32\",\r\n
+ \ \"104.210.147.57/32\",\r\n \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"2603:1030:807:402::a0/123\",\r\n \"2603:1030:807:802::a0/123\",\r\n
+ \ \"2603:1030:807:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SoutheastAsia\",\r\n \"id\": \"AppService.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.9.0/25\",\r\n \"13.67.56.225/32\",\r\n
+ \ \"13.67.63.90/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"20.43.132.128/25\",\r\n \"20.188.98.74/32\",\r\n \"23.97.56.169/32\",\r\n
+ \ \"23.98.64.36/32\",\r\n \"23.98.64.158/32\",\r\n \"23.101.27.182/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.187.17.126/32\",\r\n \"52.187.36.104/32\",\r\n
+ \ \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n \"111.221.95.27/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"2603:1040:5:402::a0/123\",\r\n \"2603:1040:5:802::a0/123\",\r\n
+ \ \"2603:1040:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthIndia\",\r\n \"id\": \"AppService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.122.35/32\",\r\n \"13.71.123.138/32\",\r\n
+ \ \"20.41.195.192/27\",\r\n \"40.78.194.96/27\",\r\n \"52.172.54.225/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"2603:1040:c06:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SwitzerlandNorth\",\r\n \"id\":
+ \"AppService.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"51.107.50.0/27\",\r\n
+ \ \"51.107.58.160/27\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppService.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.146.0/27\",\r\n \"51.107.154.160/27\",\r\n
+ \ \"2603:1020:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAECentral\",\r\n \"id\": \"AppService.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.66.0/27\",\r\n \"20.37.74.96/27\",\r\n
+ \ \"2603:1040:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAENorth\",\r\n \"id\": \"AppService.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.138.0/27\",\r\n \"40.120.74.32/27\",\r\n
+ \ \"65.52.250.96/27\",\r\n \"2603:1040:904:402::a0/123\",\r\n
+ \ \"2603:1040:904:802::a0/123\",\r\n \"2603:1040:904:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKNorth\",\r\n
+ \ \"id\": \"AppService.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:305:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth\",\r\n
+ \ \"id\": \"AppService.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"2603:1020:705:402::a0/123\",\r\n
+ \ \"2603:1020:705:802::a0/123\",\r\n \"2603:1020:705:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth2\",\r\n
+ \ \"id\": \"AppService.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:405:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKWest\",\r\n
+ \ \"id\": \"AppService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.163.32/27\",\r\n \"51.140.210.96/27\",\r\n
+ \ \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n \"51.141.12.112/32\",\r\n
+ \ \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n \"51.141.45.207/32\",\r\n
+ \ \"51.141.90.252/32\",\r\n \"2603:1020:605:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestCentralUS\",\r\n
+ \ \"id\": \"AppService.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.192/27\",\r\n \"13.78.150.96/32\",\r\n
+ \ \"13.78.184.89/32\",\r\n \"52.150.140.224/27\",\r\n \"52.161.96.193/32\",\r\n
+ \ \"2603:1030:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestEurope\",\r\n \"id\": \"AppService.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.68.0/23\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.94.143.57/32\",\r\n \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n
+ \ \"13.95.82.181/32\",\r\n \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n
+ \ \"13.95.238.192/32\",\r\n \"20.50.2.0/23\",\r\n \"23.97.160.56/32\",\r\n
+ \ \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n \"23.97.195.129/32\",\r\n
+ \ \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n \"23.97.216.47/32\",\r\n
+ \ \"23.97.224.11/32\",\r\n \"23.100.1.29/32\",\r\n \"23.101.67.245/32\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.113.126.251/32\",\r\n
+ \ \"40.113.131.37/32\",\r\n \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n
+ \ \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n \"40.114.228.161/32\",\r\n
+ \ \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n \"40.115.55.251/32\",\r\n
+ \ \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n \"40.118.96.231/32\",\r\n
+ \ \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n \"40.118.102.46/32\",\r\n
+ \ \"51.105.172.25/32\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n \"51.144.116.43/32\",\r\n
+ \ \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.178.29.39/32\",\r\n
+ \ \"52.178.37.244/32\",\r\n \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n
+ \ \"52.178.46.181/32\",\r\n \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n
+ \ \"52.178.89.129/32\",\r\n \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n
+ \ \"52.178.105.179/32\",\r\n \"52.178.114.226/32\",\r\n \"52.232.19.237/32\",\r\n
+ \ \"52.232.26.228/32\",\r\n \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n
+ \ \"52.232.127.196/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"104.40.129.89/32\",\r\n
+ \ \"104.40.147.180/32\",\r\n \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n
+ \ \"104.40.179.243/32\",\r\n \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n
+ \ \"104.40.187.26/32\",\r\n \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n
+ \ \"104.40.215.219/32\",\r\n \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.47.137.62/32\",\r\n
+ \ \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n \"104.47.164.119/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"137.117.166.35/32\",\r\n
+ \ \"137.117.175.14/32\",\r\n \"137.117.203.130/32\",\r\n
+ \ \"137.117.211.244/32\",\r\n \"137.117.218.101/32\",\r\n
+ \ \"137.117.224.218/32\",\r\n \"137.117.225.87/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.107.5/32\",\r\n \"191.233.82.44/32\",\r\n
+ \ \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n \"2603:1020:206:402::a0/123\",\r\n
+ \ \"2603:1020:206:802::a0/123\",\r\n \"2603:1020:206:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestIndia\",\r\n
+ \ \"id\": \"AppService.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.50.0/27\",\r\n \"104.211.146.96/27\",\r\n
+ \ \"104.211.160.159/32\",\r\n \"104.211.179.11/32\",\r\n
+ \ \"104.211.184.197/32\",\r\n \"2603:1040:806:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestUS\",\r\n
+ \ \"id\": \"AppService.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.73.110/32\",\r\n \"13.91.40.166/32\",\r\n
+ \ \"13.91.242.166/32\",\r\n \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n
+ \ \"13.93.220.109/32\",\r\n \"13.93.231.75/32\",\r\n \"23.99.0.12/32\",\r\n
+ \ \"23.99.65.65/32\",\r\n \"23.99.91.55/32\",\r\n \"23.100.46.198/32\",\r\n
+ \ \"23.101.203.117/32\",\r\n \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n
+ \ \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n \"40.78.48.219/32\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.82.255.128/25\",\r\n
+ \ \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n \"40.83.182.206/32\",\r\n
+ \ \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n \"40.112.142.148/32\",\r\n
+ \ \"40.112.143.134/32\",\r\n \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n
+ \ \"40.112.165.44/32\",\r\n \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n
+ \ \"40.112.192.69/32\",\r\n \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n
+ \ \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n \"40.118.246.51/32\",\r\n
+ \ \"40.118.255.59/32\",\r\n \"52.160.40.218/32\",\r\n \"104.40.3.53/32\",\r\n
+ \ \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n \"104.40.53.219/32\",\r\n
+ \ \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n \"104.40.92.107/32\",\r\n
+ \ \"104.42.53.248/32\",\r\n \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n
+ \ \"104.42.148.55/32\",\r\n \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n
+ \ \"104.42.188.146/32\",\r\n \"104.42.231.5/32\",\r\n \"104.45.226.98/32\",\r\n
+ \ \"104.45.231.79/32\",\r\n \"104.210.38.149/32\",\r\n \"137.117.9.212/32\",\r\n
+ \ \"137.117.17.70/32\",\r\n \"138.91.224.84/32\",\r\n \"138.91.225.40/32\",\r\n
+ \ \"138.91.240.81/32\",\r\n \"168.62.20.37/32\",\r\n \"191.236.80.12/32\",\r\n
+ \ \"191.236.106.123/32\",\r\n \"191.239.58.162/32\",\r\n
+ \ \"2603:1030:a07:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestUS2\",\r\n \"id\": \"AppService.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"20.42.128.96/27\",\r\n
+ \ \"40.64.128.224/27\",\r\n \"51.143.102.21/32\",\r\n \"52.151.62.51/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.183.82.125/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"2603:1030:c06:400::8a0/123\",\r\n
+ \ \"2603:1030:c06:802::a0/123\",\r\n \"2603:1030:c06:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement\",\r\n
+ \ \"id\": \"AppServiceManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppServiceManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n \"13.66.140.0/26\",\r\n
+ \ \"13.67.8.128/26\",\r\n \"13.69.64.128/26\",\r\n \"13.69.227.128/26\",\r\n
+ \ \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"13.71.170.64/26\",\r\n
+ \ \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n \"13.71.194.128/26\",\r\n
+ \ \"13.73.240.128/26\",\r\n \"13.73.242.64/26\",\r\n \"13.75.34.192/26\",\r\n
+ \ \"13.75.127.117/32\",\r\n \"13.77.50.128/26\",\r\n \"13.78.106.128/26\",\r\n
+ \ \"13.78.109.0/26\",\r\n \"13.87.56.128/26\",\r\n \"13.87.122.128/26\",\r\n
+ \ \"13.89.171.0/26\",\r\n \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n
+ \ \"13.94.149.179/32\",\r\n \"20.36.106.128/26\",\r\n \"20.36.114.64/26\",\r\n
+ \ \"20.37.74.128/26\",\r\n \"20.43.120.128/26\",\r\n \"20.44.2.192/26\",\r\n
+ \ \"20.44.27.0/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.82.128/26\",\r\n
+ \ \"20.49.90.128/26\",\r\n \"20.72.26.192/26\",\r\n \"20.150.171.0/26\",\r\n
+ \ \"20.150.179.0/26\",\r\n \"20.150.187.0/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"20.192.234.192/26\",\r\n \"20.193.202.192/26\",\r\n \"20.194.66.128/26\",\r\n
+ \ \"23.96.195.3/32\",\r\n \"23.100.226.236/32\",\r\n \"23.102.188.65/32\",\r\n
+ \ \"40.67.59.0/26\",\r\n \"40.69.106.128/26\",\r\n \"40.70.146.128/26\",\r\n
+ \ \"40.71.11.0/26\",\r\n \"40.71.13.64/26\",\r\n \"40.74.100.64/26\",\r\n
+ \ \"40.78.194.128/26\",\r\n \"40.79.130.64/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"40.79.178.128/26\",\r\n \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n
+ \ \"40.83.125.161/32\",\r\n \"40.90.240.166/32\",\r\n \"40.91.126.196/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"40.119.4.111/32\",\r\n \"40.120.74.128/26\",\r\n
+ \ \"40.124.47.188/32\",\r\n \"51.12.99.0/26\",\r\n \"51.12.203.0/26\",\r\n
+ \ \"51.12.227.0/26\",\r\n \"51.12.235.0/26\",\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.107.58.192/26\",\r\n \"51.107.154.192/26\",\r\n
+ \ \"51.116.58.192/26\",\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"51.120.219.0/26\",\r\n
+ \ \"51.140.146.64/26\",\r\n \"51.140.210.128/26\",\r\n \"52.151.25.45/32\",\r\n
+ \ \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"52.178.177.147/32\",\r\n \"52.178.184.149/32\",\r\n
+ \ \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n \"52.187.56.50/32\",\r\n
+ \ \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n \"52.187.63.37/32\",\r\n
+ \ \"52.224.105.172/32\",\r\n \"52.225.177.15/32\",\r\n \"52.225.177.153/32\",\r\n
+ \ \"52.231.18.64/26\",\r\n \"52.231.146.128/26\",\r\n \"52.246.157.64/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.172.237/32\",\r\n \"65.52.193.203/32\",\r\n
+ \ \"65.52.250.128/26\",\r\n \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n
+ \ \"102.133.26.192/26\",\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"104.43.242.137/32\",\r\n
+ \ \"104.44.129.141/32\",\r\n \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n
+ \ \"104.44.134.255/32\",\r\n \"104.208.54.11/32\",\r\n \"104.211.81.64/26\",\r\n
+ \ \"104.211.146.128/26\",\r\n \"104.214.18.192/26\",\r\n
+ \ \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"168.61.143.0/26\",\r\n \"191.233.50.128/26\",\r\n \"191.233.203.64/26\",\r\n
+ \ \"191.234.147.0/26\",\r\n \"191.234.155.0/26\",\r\n \"191.236.154.88/32\",\r\n
+ \ \"2603:1000:4:402::100/122\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\",\r\n \"2603:1010:101:402::100/122\",\r\n
+ \ \"2603:1010:304:402::100/122\",\r\n \"2603:1010:404:402::100/122\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\",\r\n
+ \ \"2603:1020:305:402::100/122\",\r\n \"2603:1020:405:402::100/122\",\r\n
+ \ \"2603:1020:605:402::100/122\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\",\r\n
+ \ \"2603:1020:805:402::100/122\",\r\n \"2603:1020:805:802::100/122\",\r\n
+ \ \"2603:1020:805:c02::100/122\",\r\n \"2603:1020:905:402::100/122\",\r\n
+ \ \"2603:1020:a04:402::100/122\",\r\n \"2603:1020:a04:802::100/122\",\r\n
+ \ \"2603:1020:a04:c02::100/122\",\r\n \"2603:1020:b04:402::100/122\",\r\n
+ \ \"2603:1020:c04:402::100/122\",\r\n \"2603:1020:c04:802::100/122\",\r\n
+ \ \"2603:1020:c04:c02::100/122\",\r\n \"2603:1020:d04:402::100/122\",\r\n
+ \ \"2603:1020:e04:402::100/122\",\r\n \"2603:1020:e04:802::100/122\",\r\n
+ \ \"2603:1020:e04:c02::100/122\",\r\n \"2603:1020:f04:402::100/122\",\r\n
+ \ \"2603:1020:1004:400::440/122\",\r\n \"2603:1020:1004:800::80/122\",\r\n
+ \ \"2603:1020:1004:800::200/122\",\r\n \"2603:1020:1004:800::380/122\",\r\n
+ \ \"2603:1020:1104:400::100/122\",\r\n \"2603:1030:f:400::900/122\",\r\n
+ \ \"2603:1030:10:402::100/122\",\r\n \"2603:1030:10:802::100/122\",\r\n
+ \ \"2603:1030:10:c02::100/122\",\r\n \"2603:1030:104:402::100/122\",\r\n
+ \ \"2603:1030:107:400::80/122\",\r\n \"2603:1030:210:402::100/122\",\r\n
+ \ \"2603:1030:210:802::100/122\",\r\n \"2603:1030:210:c02::100/122\",\r\n
+ \ \"2603:1030:40b:400::900/122\",\r\n \"2603:1030:40b:800::100/122\",\r\n
+ \ \"2603:1030:40b:c00::100/122\",\r\n \"2603:1030:40c:402::100/122\",\r\n
+ \ \"2603:1030:40c:802::100/122\",\r\n \"2603:1030:40c:c02::100/122\",\r\n
+ \ \"2603:1030:504:402::400/122\",\r\n \"2603:1030:504:802::80/122\",\r\n
+ \ \"2603:1030:504:802::380/122\",\r\n \"2603:1030:608:402::100/122\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\",\r\n \"2603:1030:a07:402::880/122\",\r\n
+ \ \"2603:1030:b04:402::100/122\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\",\r\n
+ \ \"2603:1030:f05:402::100/122\",\r\n \"2603:1030:f05:802::100/122\",\r\n
+ \ \"2603:1030:f05:c02::100/122\",\r\n \"2603:1030:1005:402::100/122\",\r\n
+ \ \"2603:1040:5:402::100/122\",\r\n \"2603:1040:5:802::100/122\",\r\n
+ \ \"2603:1040:5:c02::100/122\",\r\n \"2603:1040:207:402::100/122\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\",\r\n \"2603:1040:606:402::100/122\",\r\n
+ \ \"2603:1040:806:402::100/122\",\r\n \"2603:1040:904:402::100/122\",\r\n
+ \ \"2603:1040:904:802::100/122\",\r\n \"2603:1040:904:c02::100/122\",\r\n
+ \ \"2603:1040:a06:402::100/122\",\r\n \"2603:1040:a06:802::100/122\",\r\n
+ \ \"2603:1040:a06:c02::100/122\",\r\n \"2603:1040:b04:402::100/122\",\r\n
+ \ \"2603:1040:c06:402::100/122\",\r\n \"2603:1040:d04:400::440/122\",\r\n
+ \ \"2603:1040:d04:800::80/122\",\r\n \"2603:1040:d04:800::200/122\",\r\n
+ \ \"2603:1040:d04:800::380/122\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\",\r\n
+ \ \"2603:1040:1104:400::100/122\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\",\r\n
+ \ \"2603:1050:403:400::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaCentral\",\r\n \"id\":
+ \"AppServiceManagement.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.128/26\",\r\n \"2603:1010:304:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.64/26\",\r\n \"2603:1010:404:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.128/26\",\r\n \"2603:1010:101:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.BrazilSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.64/26\",\r\n \"191.234.147.0/26\",\r\n
+ \ \"191.234.155.0/26\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.64/26\",\r\n \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n
+ \ \"52.246.157.64/26\",\r\n \"2603:1030:f05:402::100/122\",\r\n
+ \ \"2603:1030:f05:802::100/122\",\r\n \"2603:1030:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.128/26\",\r\n \"2603:1030:1005:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.128/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"104.211.81.64/26\",\r\n \"2603:1040:a06:402::100/122\",\r\n
+ \ \"2603:1040:a06:802::100/122\",\r\n \"2603:1040:a06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.0/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"104.43.242.137/32\",\r\n \"2603:1030:10:402::100/122\",\r\n
+ \ \"2603:1030:10:802::100/122\",\r\n \"2603:1030:10:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastAsia\",\r\n
+ \ \"id\": \"AppServiceManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.192/26\",\r\n \"13.75.127.117/32\",\r\n
+ \ \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n \"40.83.125.161/32\",\r\n
+ \ \"65.52.172.237/32\",\r\n \"2603:1040:207:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastUS\",\r\n
+ \ \"id\": \"AppServiceManagement.EastUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.0/26\",\r\n
+ \ \"40.71.13.64/26\",\r\n \"40.90.240.166/32\",\r\n \"52.224.105.172/32\",\r\n
+ \ \"2603:1030:210:402::100/122\",\r\n \"2603:1030:210:802::100/122\",\r\n
+ \ \"2603:1030:210:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.128/26\",\r\n
+ \ \"2603:1030:40c:402::100/122\",\r\n \"2603:1030:40c:802::100/122\",\r\n
+ \ \"2603:1030:40c:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2EUAP\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"52.225.177.15/32\",\r\n
+ \ \"52.225.177.153/32\",\r\n \"2603:1030:40b:400::900/122\",\r\n
+ \ \"2603:1030:40b:800::100/122\",\r\n \"2603:1030:40b:c00::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.64/26\",\r\n \"2603:1020:805:402::100/122\",\r\n
+ \ \"2603:1020:805:802::100/122\",\r\n \"2603:1020:805:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.128/26\",\r\n \"2603:1020:905:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.192/26\",\r\n \"2603:1020:d04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"2603:1020:c04:402::100/122\",\r\n
+ \ \"2603:1020:c04:802::100/122\",\r\n \"2603:1020:c04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.JapanEast\",\r\n
+ \ \"id\": \"AppServiceManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.128/26\",\r\n \"13.78.109.0/26\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.JapanWest\",\r\n \"id\":
+ \"AppServiceManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.100.64/26\",\r\n
+ \ \"2603:1040:606:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.KoreaCentral\",\r\n \"id\":
+ \"AppServiceManagement.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.0/26\",\r\n
+ \ \"20.194.66.128/26\",\r\n \"52.231.18.64/26\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.KoreaSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.128/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorthCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"23.96.195.3/32\",\r\n
+ \ \"23.100.226.236/32\",\r\n \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.193.203/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"191.236.154.88/32\",\r\n \"2603:1030:608:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorthEurope\",\r\n
+ \ \"id\": \"AppServiceManagement.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.128/26\",\r\n \"52.178.177.147/32\",\r\n
+ \ \"52.178.184.149/32\",\r\n \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorwayEast\",\r\n \"id\":
+ \"AppServiceManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"2603:1020:e04:402::100/122\",\r\n
+ \ \"2603:1020:e04:802::100/122\",\r\n \"2603:1020:e04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorwayWest\",\r\n
+ \ \"id\": \"AppServiceManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.219.0/26\",\r\n \"2603:1020:f04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.192/26\",\r\n \"2603:1000:4:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.128/26\",\r\n
+ \ \"13.73.242.64/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.90.128/26\",\r\n
+ \ \"23.102.188.65/32\",\r\n \"40.119.4.111/32\",\r\n \"40.124.47.188/32\",\r\n
+ \ \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n \"104.44.129.141/32\",\r\n
+ \ \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n \"104.44.134.255/32\",\r\n
+ \ \"104.214.18.192/26\",\r\n \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.SoutheastAsia\",\r\n \"id\":
+ \"AppServiceManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.128/26\",\r\n
+ \ \"52.187.56.50/32\",\r\n \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n
+ \ \"52.187.63.37/32\",\r\n \"2603:1040:5:402::100/122\",\r\n
+ \ \"2603:1040:5:802::100/122\",\r\n \"2603:1040:5:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.128/26\",\r\n \"2603:1040:c06:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.192/26\",\r\n \"2603:1020:a04:402::100/122\",\r\n
+ \ \"2603:1020:a04:802::100/122\",\r\n \"2603:1020:a04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.192/26\",\r\n \"2603:1020:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAECentral\",\r\n
+ \ \"id\": \"AppServiceManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.128/26\",\r\n \"2603:1040:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAENorth\",\r\n
+ \ \"id\": \"AppServiceManagement.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.128/26\",\r\n \"65.52.250.128/26\",\r\n
+ \ \"2603:1040:904:402::100/122\",\r\n \"2603:1040:904:802::100/122\",\r\n
+ \ \"2603:1040:904:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKSouth\",\r\n \"id\":
+ \"AppServiceManagement.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.140.146.64/26\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UKSouth2\",\r\n
+ \ \"id\": \"AppServiceManagement.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.56.128/26\",\r\n
+ \ \"2603:1020:405:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKWest\",\r\n \"id\":
+ \"AppServiceManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.128/26\",\r\n
+ \ \"2603:1020:605:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.128/26\",\r\n
+ \ \"2603:1030:b04:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestEurope\",\r\n \"id\":
+ \"AppServiceManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.128/26\",\r\n
+ \ \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n \"13.94.149.179/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.128/26\",\r\n \"2603:1040:806:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"2603:1030:a07:402::880/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS2\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.0/26\",\r\n
+ \ \"40.91.126.196/32\",\r\n \"52.151.25.45/32\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectory\",\r\n
+ \ \"id\": \"AzureActiveDirectory\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAD\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n \"13.66.141.64/27\",\r\n
+ \ \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n \"13.69.229.96/27\",\r\n
+ \ \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n \"13.71.195.224/27\",\r\n
+ \ \"13.71.201.64/26\",\r\n \"13.73.240.32/27\",\r\n \"13.74.104.0/26\",\r\n
+ \ \"13.74.249.156/32\",\r\n \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n
+ \ \"13.77.52.160/27\",\r\n \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n
+ \ \"13.79.37.247/32\",\r\n \"13.86.219.0/27\",\r\n \"13.87.16.0/26\",\r\n
+ \ \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n \"13.89.174.0/27\",\r\n
+ \ \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n \"20.37.75.96/27\",\r\n
+ \ \"20.40.228.64/28\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.9.80/28\",\r\n
+ \ \"20.51.16.128/27\",\r\n \"20.61.98.160/27\",\r\n \"20.61.99.128/28\",\r\n
+ \ \"20.62.58.80/28\",\r\n \"20.62.129.0/27\",\r\n \"20.62.129.240/28\",\r\n
+ \ \"20.65.132.96/28\",\r\n \"20.66.2.32/27\",\r\n \"20.66.3.16/28\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.187.197.240/28\",\r\n \"20.190.128.0/18\",\r\n
+ \ \"20.194.73.0/28\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"20.195.64.240/28\",\r\n \"23.101.0.70/32\",\r\n
+ \ \"23.101.6.190/32\",\r\n \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n
+ \ \"40.71.13.0/27\",\r\n \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n
+ \ \"40.78.195.160/27\",\r\n \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n
+ \ \"40.79.179.128/27\",\r\n \"40.83.144.56/32\",\r\n \"40.126.0.0/18\",\r\n
+ \ \"51.140.148.192/27\",\r\n \"51.140.208.0/26\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.146.133.80/28\",\r\n \"52.150.157.0/27\",\r\n \"52.159.175.31/32\",\r\n
+ \ \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n \"52.161.110.169/32\",\r\n
+ \ \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n \"52.169.218.0/32\",\r\n
+ \ \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n \"52.178.27.112/32\",\r\n
+ \ \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n \"52.180.177.87/32\",\r\n
+ \ \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n \"52.180.183.8/32\",\r\n
+ \ \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n \"52.187.117.83/32\",\r\n
+ \ \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n \"52.225.188.89/32\",\r\n
+ \ \"52.226.169.40/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.40.168.0/26\",\r\n \"104.41.159.212/32\",\r\n
+ \ \"104.45.138.161/32\",\r\n \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\",\r\n \"2603:1006:2000::/48\",\r\n
+ \ \"2603:1007:200::/48\",\r\n \"2603:1016:1400::/48\",\r\n
+ \ \"2603:1017::/48\",\r\n \"2603:1026:3000::/48\",\r\n \"2603:1027:1::/48\",\r\n
+ \ \"2603:1036:3000::/48\",\r\n \"2603:1037:1::/48\",\r\n
+ \ \"2603:1046:2000::/48\",\r\n \"2603:1047:1::/48\",\r\n
+ \ \"2603:1056:2000::/48\",\r\n \"2603:1057:2::/48\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectoryDomainServices\",\r\n
+ \ \"id\": \"AzureActiveDirectoryDomainServices\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureIdentity\",\r\n \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n
+ \ \"13.66.141.64/27\",\r\n \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n
+ \ \"13.69.229.96/27\",\r\n \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n
+ \ \"13.71.195.224/27\",\r\n \"13.73.240.32/27\",\r\n \"13.74.249.156/32\",\r\n
+ \ \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n \"13.77.52.160/27\",\r\n
+ \ \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n \"13.79.37.247/32\",\r\n
+ \ \"13.86.219.0/27\",\r\n \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n
+ \ \"13.89.174.0/27\",\r\n \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n
+ \ \"20.37.75.96/27\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.16.128/27\",\r\n
+ \ \"20.61.98.160/27\",\r\n \"20.62.129.0/27\",\r\n \"20.66.2.32/27\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"23.101.0.70/32\",\r\n \"23.101.6.190/32\",\r\n
+ \ \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n \"40.71.13.0/27\",\r\n
+ \ \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n \"40.78.195.160/27\",\r\n
+ \ \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n \"40.79.179.128/27\",\r\n
+ \ \"40.83.144.56/32\",\r\n \"51.140.148.192/27\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.150.157.0/27\",\r\n \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n
+ \ \"52.161.110.169/32\",\r\n \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n
+ \ \"52.169.218.0/32\",\r\n \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n
+ \ \"52.178.27.112/32\",\r\n \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n
+ \ \"52.180.177.87/32\",\r\n \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n
+ \ \"52.180.183.8/32\",\r\n \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n
+ \ \"52.187.117.83/32\",\r\n \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n
+ \ \"52.225.188.89/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.41.159.212/32\",\r\n \"104.45.138.161/32\",\r\n
+ \ \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureAdvancedThreatProtection\",\r\n \"id\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.72.105.31/32\",\r\n \"13.72.105.76/32\",\r\n
+ \ \"13.93.176.195/32\",\r\n \"13.93.176.215/32\",\r\n \"20.36.120.112/29\",\r\n
+ \ \"20.37.64.112/29\",\r\n \"20.37.156.192/29\",\r\n \"20.37.195.8/29\",\r\n
+ \ \"20.37.224.112/29\",\r\n \"20.38.84.96/29\",\r\n \"20.38.136.112/29\",\r\n
+ \ \"20.39.11.16/29\",\r\n \"20.41.4.96/29\",\r\n \"20.41.65.128/29\",\r\n
+ \ \"20.41.192.112/29\",\r\n \"20.42.4.192/29\",\r\n \"20.42.129.176/29\",\r\n
+ \ \"20.42.224.112/29\",\r\n \"20.43.41.144/29\",\r\n \"20.43.65.136/29\",\r\n
+ \ \"20.43.130.88/29\",\r\n \"20.45.112.112/29\",\r\n \"20.45.192.112/29\",\r\n
+ \ \"20.72.16.24/29\",\r\n \"20.150.160.112/29\",\r\n \"20.184.13.55/32\",\r\n
+ \ \"20.184.14.129/32\",\r\n \"20.189.106.120/29\",\r\n \"20.192.160.24/29\",\r\n
+ \ \"20.192.225.16/29\",\r\n \"40.65.107.78/32\",\r\n \"40.65.111.206/32\",\r\n
+ \ \"40.67.48.112/29\",\r\n \"40.74.30.96/29\",\r\n \"40.80.56.112/29\",\r\n
+ \ \"40.80.168.112/29\",\r\n \"40.80.188.16/29\",\r\n \"40.82.253.64/29\",\r\n
+ \ \"40.85.133.119/32\",\r\n \"40.85.133.178/32\",\r\n \"40.87.44.77/32\",\r\n
+ \ \"40.87.45.222/32\",\r\n \"40.89.16.112/29\",\r\n \"40.119.9.224/29\",\r\n
+ \ \"51.12.46.232/29\",\r\n \"51.12.198.192/29\",\r\n \"51.104.25.144/29\",\r\n
+ \ \"51.105.80.112/29\",\r\n \"51.105.88.112/29\",\r\n \"51.107.48.112/29\",\r\n
+ \ \"51.107.144.112/29\",\r\n \"51.120.40.112/29\",\r\n \"51.120.224.112/29\",\r\n
+ \ \"51.137.161.128/29\",\r\n \"51.143.183.3/32\",\r\n \"51.143.183.52/32\",\r\n
+ \ \"51.143.192.112/29\",\r\n \"52.136.48.112/29\",\r\n \"52.140.104.112/29\",\r\n
+ \ \"52.150.139.64/29\",\r\n \"52.170.0.116/32\",\r\n \"52.170.1.228/32\",\r\n
+ \ \"52.170.249.197/32\",\r\n \"52.174.66.179/32\",\r\n \"52.174.66.180/32\",\r\n
+ \ \"52.225.176.98/32\",\r\n \"52.225.181.34/32\",\r\n \"52.225.183.206/32\",\r\n
+ \ \"52.228.81.128/29\",\r\n \"104.42.25.10/32\",\r\n \"104.42.29.8/32\",\r\n
+ \ \"168.63.46.233/32\",\r\n \"168.63.46.241/32\",\r\n \"191.233.8.24/29\",\r\n
+ \ \"191.235.225.136/29\",\r\n \"2603:1000:4::140/123\",\r\n
+ \ \"2603:1000:104:1::140/123\",\r\n \"2603:1010:6:1::140/123\",\r\n
+ \ \"2603:1010:101::140/123\",\r\n \"2603:1010:304::140/123\",\r\n
+ \ \"2603:1010:404::140/123\",\r\n \"2603:1020:5:1::140/123\",\r\n
+ \ \"2603:1020:206:1::140/123\",\r\n \"2603:1020:305::140/123\",\r\n
+ \ \"2603:1020:405::140/123\",\r\n \"2603:1020:605::140/123\",\r\n
+ \ \"2603:1020:705:1::140/123\",\r\n \"2603:1020:805:1::140/123\",\r\n
+ \ \"2603:1020:905::140/123\",\r\n \"2603:1020:a04:1::140/123\",\r\n
+ \ \"2603:1020:b04::140/123\",\r\n \"2603:1020:c04:1::140/123\",\r\n
+ \ \"2603:1020:d04::140/123\",\r\n \"2603:1020:e04:1::140/123\",\r\n
+ \ \"2603:1020:f04::140/123\",\r\n \"2603:1020:1004::140/123\",\r\n
+ \ \"2603:1020:1104::140/123\",\r\n \"2603:1030:f:1::140/123\",\r\n
+ \ \"2603:1030:10:1::140/123\",\r\n \"2603:1030:104:1::140/123\",\r\n
+ \ \"2603:1030:107::140/123\",\r\n \"2603:1030:210:1::140/123\",\r\n
+ \ \"2603:1030:40b:1::140/123\",\r\n \"2603:1030:40c:1::140/123\",\r\n
+ \ \"2603:1030:504:1::140/123\",\r\n \"2603:1030:608::140/123\",\r\n
+ \ \"2603:1030:807:1::140/123\",\r\n \"2603:1030:a07::140/123\",\r\n
+ \ \"2603:1030:b04::140/123\",\r\n \"2603:1030:c06:1::140/123\",\r\n
+ \ \"2603:1030:f05:1::140/123\",\r\n \"2603:1030:1005::140/123\",\r\n
+ \ \"2603:1040:5:1::140/123\",\r\n \"2603:1040:207::140/123\",\r\n
+ \ \"2603:1040:407:1::140/123\",\r\n \"2603:1040:606::140/123\",\r\n
+ \ \"2603:1040:806::140/123\",\r\n \"2603:1040:904:1::140/123\",\r\n
+ \ \"2603:1040:a06:1::140/123\",\r\n \"2603:1040:b04::140/123\",\r\n
+ \ \"2603:1040:c06::140/123\",\r\n \"2603:1040:d04::140/123\",\r\n
+ \ \"2603:1040:f05:1::140/123\",\r\n \"2603:1040:1104::140/123\",\r\n
+ \ \"2603:1050:6:1::140/123\",\r\n \"2603:1050:403::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"40.89.16.112/29\",\r\n
+ \ \"2603:1030:1005::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR\",\r\n
+ \ \"id\": \"AzureAPIForFHIR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"13.69.233.32/31\",\r\n
+ \ \"13.70.78.170/31\",\r\n \"13.71.175.130/31\",\r\n \"13.71.199.118/31\",\r\n
+ \ \"13.73.244.194/31\",\r\n \"13.73.254.220/30\",\r\n \"13.78.111.194/31\",\r\n
+ \ \"13.80.124.132/32\",\r\n \"13.82.180.206/32\",\r\n \"13.86.221.218/31\",\r\n
+ \ \"13.87.58.136/31\",\r\n \"13.87.124.136/31\",\r\n \"20.36.117.192/31\",\r\n
+ \ \"20.36.123.84/30\",\r\n \"20.37.68.224/30\",\r\n \"20.37.76.204/31\",\r\n
+ \ \"20.37.198.142/31\",\r\n \"20.37.227.102/31\",\r\n \"20.37.228.12/31\",\r\n
+ \ \"20.38.128.170/31\",\r\n \"20.38.141.6/31\",\r\n \"20.38.142.104/31\",\r\n
+ \ \"20.39.15.58/31\",\r\n \"20.40.224.224/31\",\r\n \"20.40.224.228/31\",\r\n
+ \ \"20.40.230.128/28\",\r\n \"20.41.69.50/31\",\r\n \"20.41.69.60/31\",\r\n
+ \ \"20.42.230.234/31\",\r\n \"20.43.45.248/30\",\r\n \"20.43.121.122/31\",\r\n
+ \ \"20.44.4.232/31\",\r\n \"20.44.19.4/31\",\r\n \"20.45.90.96/28\",\r\n
+ \ \"20.45.112.122/31\",\r\n \"20.45.114.204/31\",\r\n \"20.45.117.48/28\",\r\n
+ \ \"20.45.199.40/30\",\r\n \"20.46.12.208/28\",\r\n \"20.46.15.0/27\",\r\n
+ \ \"20.48.192.84/30\",\r\n \"20.48.197.160/28\",\r\n \"20.49.99.46/31\",\r\n
+ \ \"20.49.102.228/31\",\r\n \"20.49.114.188/30\",\r\n \"20.49.127.240/31\",\r\n
+ \ \"20.51.0.208/28\",\r\n \"20.51.13.80/28\",\r\n \"20.51.16.168/31\",\r\n
+ \ \"20.51.21.80/28\",\r\n \"20.52.88.224/28\",\r\n \"20.53.0.32/31\",\r\n
+ \ \"20.53.44.80/31\",\r\n \"20.53.47.208/28\",\r\n \"20.53.49.112/28\",\r\n
+ \ \"20.53.57.64/28\",\r\n \"20.58.67.96/28\",\r\n \"20.61.98.66/31\",\r\n
+ \ \"20.61.98.68/31\",\r\n \"20.61.103.240/28\",\r\n \"20.62.60.112/28\",\r\n
+ \ \"20.62.128.148/30\",\r\n \"20.62.134.240/28\",\r\n \"20.65.134.80/28\",\r\n
+ \ \"20.66.5.144/28\",\r\n \"20.69.1.160/28\",\r\n \"20.72.21.208/28\",\r\n
+ \ \"20.150.165.156/30\",\r\n \"20.150.225.0/31\",\r\n \"20.150.245.64/28\",\r\n
+ \ \"20.150.245.160/27\",\r\n \"20.187.196.196/30\",\r\n \"20.189.228.224/28\",\r\n
+ \ \"20.191.160.26/31\",\r\n \"20.191.160.116/31\",\r\n \"20.191.167.144/28\",\r\n
+ \ \"20.192.45.0/28\",\r\n \"20.192.50.96/27\",\r\n \"20.192.50.240/28\",\r\n
+ \ \"20.192.80.192/28\",\r\n \"20.192.164.188/30\",\r\n \"20.192.184.80/31\",\r\n
+ \ \"20.192.225.200/30\",\r\n \"20.192.238.122/31\",\r\n \"20.193.194.128/27\",\r\n
+ \ \"20.193.194.160/28\",\r\n \"20.193.206.36/31\",\r\n \"20.194.74.160/28\",\r\n
+ \ \"20.194.75.192/27\",\r\n \"20.195.67.208/28\",\r\n \"20.195.74.224/28\",\r\n
+ \ \"20.195.146.208/28\",\r\n \"23.96.205.55/32\",\r\n \"23.98.108.42/31\",\r\n
+ \ \"23.98.108.46/31\",\r\n \"40.64.135.76/30\",\r\n \"40.67.48.122/31\",\r\n
+ \ \"40.67.50.244/31\",\r\n \"40.67.53.240/28\",\r\n \"40.67.60.110/31\",\r\n
+ \ \"40.69.111.32/31\",\r\n \"40.71.15.192/31\",\r\n \"40.75.35.218/31\",\r\n
+ \ \"40.78.204.44/31\",\r\n \"40.78.238.58/31\",\r\n \"40.78.250.110/31\",\r\n
+ \ \"40.79.116.45/32\",\r\n \"40.80.63.158/31\",\r\n \"40.80.63.244/31\",\r\n
+ \ \"40.80.173.128/30\",\r\n \"40.80.180.2/31\",\r\n \"40.82.248.70/31\",\r\n
+ \ \"40.89.23.40/31\",\r\n \"40.113.78.45/32\",\r\n \"40.120.82.160/28\",\r\n
+ \ \"40.126.239.114/32\",\r\n \"51.11.192.32/31\",\r\n \"51.12.20.32/28\",\r\n
+ \ \"51.12.20.64/27\",\r\n \"51.12.28.64/27\",\r\n \"51.12.28.96/28\",\r\n
+ \ \"51.12.42.64/30\",\r\n \"51.12.100.104/31\",\r\n \"51.12.193.28/30\",\r\n
+ \ \"51.12.204.224/31\",\r\n \"51.13.136.56/31\",\r\n \"51.13.138.32/28\",\r\n
+ \ \"51.104.9.98/31\",\r\n \"51.104.30.170/31\",\r\n \"51.107.53.48/30\",\r\n
+ \ \"51.107.60.94/31\",\r\n \"51.107.148.18/31\",\r\n \"51.107.156.134/31\",\r\n
+ \ \"51.107.243.128/28\",\r\n \"51.107.249.72/31\",\r\n \"51.107.251.112/28\",\r\n
+ \ \"51.116.51.32/30\",\r\n \"51.116.55.128/28\",\r\n \"51.116.60.240/31\",\r\n
+ \ \"51.116.146.216/30\",\r\n \"51.116.158.58/31\",\r\n \"51.120.40.126/31\",\r\n
+ \ \"51.120.100.94/31\",\r\n \"51.120.220.94/31\",\r\n \"51.120.228.36/31\",\r\n
+ \ \"51.120.232.32/31\",\r\n \"51.120.234.144/28\",\r\n \"51.120.235.192/27\",\r\n
+ \ \"51.137.164.94/31\",\r\n \"51.137.167.168/31\",\r\n \"51.138.160.0/31\",\r\n
+ \ \"51.138.211.16/28\",\r\n \"51.140.40.89/32\",\r\n \"51.140.210.86/31\",\r\n
+ \ \"51.140.224.110/32\",\r\n \"51.143.208.132/31\",\r\n \"51.143.213.208/28\",\r\n
+ \ \"52.136.48.122/31\",\r\n \"52.136.52.36/31\",\r\n \"52.136.184.0/30\",\r\n
+ \ \"52.136.186.32/28\",\r\n \"52.139.106.72/31\",\r\n \"52.139.108.32/28\",\r\n
+ \ \"52.140.110.164/30\",\r\n \"52.146.131.52/30\",\r\n \"52.146.137.176/28\",\r\n
+ \ \"52.147.113.96/28\",\r\n \"52.150.156.44/30\",\r\n \"52.161.13.30/32\",\r\n
+ \ \"52.162.111.130/31\",\r\n \"52.167.239.195/32\",\r\n \"52.172.112.24/30\",\r\n
+ \ \"52.172.116.144/28\",\r\n \"52.178.17.0/31\",\r\n \"52.182.141.14/31\",\r\n
+ \ \"52.231.23.8/31\",\r\n \"52.231.146.86/31\",\r\n \"52.231.152.94/32\",\r\n
+ \ \"52.247.220.99/32\",\r\n \"65.52.252.248/31\",\r\n \"102.37.64.48/31\",\r\n
+ \ \"102.37.81.144/28\",\r\n \"102.37.161.64/28\",\r\n \"102.133.58.204/30\",\r\n
+ \ \"102.133.124.12/31\",\r\n \"102.133.220.196/30\",\r\n
+ \ \"104.46.162.0/31\",\r\n \"104.46.178.112/31\",\r\n \"104.46.183.192/28\",\r\n
+ \ \"104.210.152.157/32\",\r\n \"104.214.161.14/31\",\r\n
+ \ \"191.233.14.192/30\",\r\n \"191.233.51.212/31\",\r\n \"191.233.207.24/31\",\r\n
+ \ \"191.234.139.160/31\",\r\n \"191.235.225.154/31\",\r\n
+ \ \"191.238.72.224/28\",\r\n \"2603:1020:e04::7c0/123\",\r\n
+ \ \"2603:1020:1004:2::c0/123\",\r\n \"2603:1020:1104:1::4e0/123\",\r\n
+ \ \"2603:1030:f:2::4e0/123\",\r\n \"2603:1030:504:2::c0/123\",\r\n
+ \ \"2603:1040:d04:2::20/123\",\r\n \"2603:1040:f05::7c0/123\",\r\n
+ \ \"2603:1040:1104:1::440/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"id\":
+ \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"20.195.67.208/28\",\r\n
+ \ \"23.98.108.42/31\",\r\n \"23.98.108.46/31\",\r\n \"40.78.238.58/31\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR.UKNorth\",\r\n
+ \ \"id\": \"AzureAPIForFHIR.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.136/31\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureArcInfrastructure\",\r\n \"id\": \"AzureArcInfrastructure\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureArcInfrastructure\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.219/32\",\r\n \"13.70.79.64/32\",\r\n
+ \ \"13.71.175.129/32\",\r\n \"13.71.199.117/32\",\r\n \"13.73.244.196/32\",\r\n
+ \ \"13.73.253.124/30\",\r\n \"13.74.107.94/32\",\r\n \"13.77.53.221/32\",\r\n
+ \ \"13.78.111.193/32\",\r\n \"13.81.244.155/32\",\r\n \"13.86.223.80/32\",\r\n
+ \ \"13.90.194.180/32\",\r\n \"20.36.122.52/30\",\r\n \"20.37.66.52/30\",\r\n
+ \ \"20.37.196.248/30\",\r\n \"20.37.226.52/30\",\r\n \"20.37.228.8/30\",\r\n
+ \ \"20.38.87.188/30\",\r\n \"20.38.138.56/30\",\r\n \"20.38.141.8/30\",\r\n
+ \ \"20.39.12.228/30\",\r\n \"20.39.14.84/30\",\r\n \"20.40.200.152/29\",\r\n
+ \ \"20.40.224.52/30\",\r\n \"20.41.67.84/30\",\r\n \"20.41.69.52/30\",\r\n
+ \ \"20.41.195.252/30\",\r\n \"20.42.228.216/30\",\r\n \"20.43.43.160/30\",\r\n
+ \ \"20.43.45.240/30\",\r\n \"20.43.67.88/30\",\r\n \"20.43.121.252/32\",\r\n
+ \ \"20.44.19.6/32\",\r\n \"20.45.197.224/30\",\r\n \"20.45.199.32/30\",\r\n
+ \ \"20.48.192.76/30\",\r\n \"20.49.99.12/30\",\r\n \"20.49.102.212/30\",\r\n
+ \ \"20.49.109.32/30\",\r\n \"20.49.113.12/30\",\r\n \"20.49.114.52/30\",\r\n
+ \ \"20.49.120.32/30\",\r\n \"20.49.125.188/30\",\r\n \"20.50.1.196/30\",\r\n
+ \ \"20.53.0.34/32\",\r\n \"20.53.41.44/30\",\r\n \"20.61.96.184/30\",\r\n
+ \ \"20.150.165.140/30\",\r\n \"20.187.194.204/30\",\r\n \"20.189.111.204/30\",\r\n
+ \ \"20.191.160.28/30\",\r\n \"20.192.164.176/30\",\r\n \"20.192.228.252/30\",\r\n
+ \ \"23.98.104.12/30\",\r\n \"23.98.108.32/30\",\r\n \"40.64.132.84/30\",\r\n
+ \ \"40.64.135.72/30\",\r\n \"40.69.111.34/32\",\r\n \"40.71.15.194/32\",\r\n
+ \ \"40.78.204.46/32\",\r\n \"40.78.239.96/32\",\r\n \"40.79.138.46/32\",\r\n
+ \ \"40.80.59.24/30\",\r\n \"40.80.172.12/30\",\r\n \"40.89.20.128/30\",\r\n
+ \ \"40.89.23.32/30\",\r\n \"40.119.9.232/30\",\r\n \"51.104.28.216/30\",\r\n
+ \ \"51.104.31.172/30\",\r\n \"51.105.77.50/32\",\r\n \"51.105.90.148/30\",\r\n
+ \ \"51.107.50.56/30\",\r\n \"51.107.53.32/30\",\r\n \"51.107.60.152/32\",\r\n
+ \ \"51.107.146.52/30\",\r\n \"51.116.49.136/30\",\r\n \"51.116.145.136/30\",\r\n
+ \ \"51.116.146.212/30\",\r\n \"51.116.158.60/32\",\r\n \"51.120.42.56/30\",\r\n
+ \ \"51.120.44.196/30\",\r\n \"51.120.100.156/32\",\r\n \"51.120.226.52/30\",\r\n
+ \ \"51.137.164.76/30\",\r\n \"51.137.166.40/30\",\r\n \"51.140.212.216/32\",\r\n
+ \ \"52.136.51.68/30\",\r\n \"52.138.90.54/32\",\r\n \"52.140.107.92/30\",\r\n
+ \ \"52.140.110.108/30\",\r\n \"52.146.79.132/30\",\r\n \"52.146.130.180/30\",\r\n
+ \ \"52.150.152.204/30\",\r\n \"52.150.156.36/30\",\r\n \"52.162.111.132/32\",\r\n
+ \ \"52.182.141.60/32\",\r\n \"52.228.84.80/30\",\r\n \"52.231.23.10/32\",\r\n
+ \ \"52.236.189.74/32\",\r\n \"65.52.252.250/32\",\r\n \"102.133.57.188/30\",\r\n
+ \ \"102.133.154.6/32\",\r\n \"102.133.218.52/30\",\r\n \"102.133.219.188/30\",\r\n
+ \ \"104.46.178.0/30\",\r\n \"104.214.164.48/32\",\r\n \"137.135.98.137/32\",\r\n
+ \ \"191.233.207.26/32\",\r\n \"191.234.136.44/30\",\r\n \"191.234.138.144/30\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup\",\r\n
+ \ \"id\": \"AzureBackup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"13.67.12.0/24\",\r\n \"13.67.13.0/25\",\r\n \"13.69.65.32/27\",\r\n
+ \ \"13.69.65.128/25\",\r\n \"13.69.107.0/27\",\r\n \"13.69.107.128/25\",\r\n
+ \ \"13.69.228.128/25\",\r\n \"13.69.229.0/27\",\r\n \"13.70.73.192/27\",\r\n
+ \ \"13.70.74.0/26\",\r\n \"13.71.172.0/26\",\r\n \"13.71.172.64/27\",\r\n
+ \ \"13.71.195.64/26\",\r\n \"13.71.195.128/27\",\r\n \"13.74.107.192/27\",\r\n
+ \ \"13.74.108.0/25\",\r\n \"13.75.36.128/25\",\r\n \"13.75.37.0/24\",\r\n
+ \ \"13.77.52.32/27\",\r\n \"13.77.52.64/26\",\r\n \"13.78.108.32/27\",\r\n
+ \ \"13.78.108.64/26\",\r\n \"13.86.218.0/25\",\r\n \"13.86.218.128/26\",\r\n
+ \ \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"13.87.123.0/26\",\r\n
+ \ \"13.87.123.64/27\",\r\n \"13.89.171.128/26\",\r\n \"13.89.171.192/27\",\r\n
+ \ \"20.36.107.32/27\",\r\n \"20.36.107.64/26\",\r\n \"20.36.114.224/27\",\r\n
+ \ \"20.36.115.0/26\",\r\n \"20.37.75.0/26\",\r\n \"20.37.75.64/27\",\r\n
+ \ \"20.38.147.0/27\",\r\n \"20.38.147.64/26\",\r\n \"20.40.229.128/25\",\r\n
+ \ \"20.44.3.64/26\",\r\n \"20.44.3.128/27\",\r\n \"20.44.8.32/27\",\r\n
+ \ \"20.44.8.64/26\",\r\n \"20.44.16.128/27\",\r\n \"20.44.16.192/26\",\r\n
+ \ \"20.44.27.128/27\",\r\n \"20.45.90.0/26\",\r\n \"20.45.123.0/26\",\r\n
+ \ \"20.45.123.64/28\",\r\n \"20.45.125.192/27\",\r\n \"20.46.12.0/25\",\r\n
+ \ \"20.48.197.0/26\",\r\n \"20.49.82.192/26\",\r\n \"20.49.83.0/27\",\r\n
+ \ \"20.49.90.192/26\",\r\n \"20.49.91.0/27\",\r\n \"20.51.0.0/26\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"20.51.20.128/25\",\r\n \"20.52.88.0/26\",\r\n
+ \ \"20.53.47.128/26\",\r\n \"20.53.49.0/26\",\r\n \"20.53.56.192/26\",\r\n
+ \ \"20.58.67.128/25\",\r\n \"20.61.102.128/25\",\r\n \"20.61.103.0/26\",\r\n
+ \ \"20.62.59.128/25\",\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"20.65.133.128/26\",\r\n \"20.66.4.0/25\",\r\n \"20.66.4.128/26\",\r\n
+ \ \"20.69.1.0/26\",\r\n \"20.72.27.64/26\",\r\n \"20.150.171.96/27\",\r\n
+ \ \"20.150.171.128/26\",\r\n \"20.150.179.80/28\",\r\n \"20.150.179.128/26\",\r\n
+ \ \"20.150.181.64/27\",\r\n \"20.150.187.80/28\",\r\n \"20.150.187.128/26\",\r\n
+ \ \"20.150.190.0/27\",\r\n \"20.150.244.64/26\",\r\n \"20.189.228.64/26\",\r\n
+ \ \"20.191.166.128/26\",\r\n \"20.192.44.128/26\",\r\n \"20.192.50.128/26\",\r\n
+ \ \"20.192.80.64/26\",\r\n \"20.192.99.80/28\",\r\n \"20.192.99.128/26\",\r\n
+ \ \"20.192.235.32/27\",\r\n \"20.192.235.64/26\",\r\n \"20.193.192.192/26\",\r\n
+ \ \"20.193.203.0/26\",\r\n \"20.193.203.64/27\",\r\n \"20.194.66.192/26\",\r\n
+ \ \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n \"20.195.66.0/24\",\r\n
+ \ \"20.195.67.0/25\",\r\n \"20.195.73.0/24\",\r\n \"20.195.74.0/25\",\r\n
+ \ \"20.195.146.128/26\",\r\n \"23.98.83.0/27\",\r\n \"23.98.83.128/25\",\r\n
+ \ \"23.98.84.0/24\",\r\n \"40.67.59.96/27\",\r\n \"40.67.59.128/26\",\r\n
+ \ \"40.69.107.32/27\",\r\n \"40.69.107.64/26\",\r\n \"40.70.147.128/26\",\r\n
+ \ \"40.70.147.192/27\",\r\n \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n
+ \ \"40.74.98.64/26\",\r\n \"40.74.98.128/27\",\r\n \"40.74.146.96/27\",\r\n
+ \ \"40.74.146.128/26\",\r\n \"40.75.34.96/27\",\r\n \"40.75.34.192/26\",\r\n
+ \ \"40.78.195.32/27\",\r\n \"40.78.195.64/26\",\r\n \"40.78.202.160/27\",\r\n
+ \ \"40.78.202.192/26\",\r\n \"40.78.227.64/26\",\r\n \"40.78.227.128/25\",\r\n
+ \ \"40.78.234.192/27\",\r\n \"40.78.235.0/24\",\r\n \"40.78.236.0/25\",\r\n
+ \ \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n \"40.78.250.224/27\",\r\n
+ \ \"40.78.251.0/26\",\r\n \"40.79.131.0/26\",\r\n \"40.79.131.64/27\",\r\n
+ \ \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n \"40.79.162.128/27\",\r\n
+ \ \"40.79.162.192/26\",\r\n \"40.79.170.64/26\",\r\n \"40.79.170.128/27\",\r\n
+ \ \"40.79.171.32/27\",\r\n \"40.79.179.32/27\",\r\n \"40.79.179.64/26\",\r\n
+ \ \"40.79.187.32/27\",\r\n \"40.79.187.64/26\",\r\n \"40.79.195.32/27\",\r\n
+ \ \"40.79.195.64/26\",\r\n \"40.80.51.0/27\",\r\n \"40.120.74.192/26\",\r\n
+ \ \"40.120.75.0/27\",\r\n \"40.120.82.0/26\",\r\n \"51.12.17.64/26\",\r\n
+ \ \"51.12.25.128/26\",\r\n \"51.12.99.96/27\",\r\n \"51.12.99.128/26\",\r\n
+ \ \"51.12.203.96/27\",\r\n \"51.12.203.128/26\",\r\n \"51.12.227.80/28\",\r\n
+ \ \"51.12.227.128/26\",\r\n \"51.12.235.80/28\",\r\n \"51.12.235.128/26\",\r\n
+ \ \"51.13.137.128/26\",\r\n \"51.105.67.32/27\",\r\n \"51.105.67.64/26\",\r\n
+ \ \"51.105.75.0/27\",\r\n \"51.105.75.64/26\",\r\n \"51.107.59.64/26\",\r\n
+ \ \"51.107.59.128/27\",\r\n \"51.107.155.64/26\",\r\n \"51.107.155.128/27\",\r\n
+ \ \"51.107.243.0/26\",\r\n \"51.107.251.0/26\",\r\n \"51.116.55.0/26\",\r\n
+ \ \"51.116.59.64/26\",\r\n \"51.116.59.128/27\",\r\n \"51.116.155.128/26\",\r\n
+ \ \"51.116.155.192/27\",\r\n \"51.116.156.144/28\",\r\n \"51.116.156.192/26\",\r\n
+ \ \"51.116.245.0/26\",\r\n \"51.116.245.64/27\",\r\n \"51.116.250.240/28\",\r\n
+ \ \"51.116.251.64/26\",\r\n \"51.116.253.0/27\",\r\n \"51.120.99.96/27\",\r\n
+ \ \"51.120.99.128/26\",\r\n \"51.120.107.80/28\",\r\n \"51.120.107.128/26\",\r\n
+ \ \"51.120.110.128/27\",\r\n \"51.120.211.80/28\",\r\n \"51.120.211.128/26\",\r\n
+ \ \"51.120.219.96/27\",\r\n \"51.120.219.128/26\",\r\n \"51.120.233.192/26\",\r\n
+ \ \"51.138.210.192/26\",\r\n \"51.140.148.64/26\",\r\n \"51.140.148.128/27\",\r\n
+ \ \"51.140.211.32/27\",\r\n \"51.140.211.64/26\",\r\n \"51.143.212.192/26\",\r\n
+ \ \"51.143.213.0/25\",\r\n \"52.136.185.192/26\",\r\n \"52.138.90.160/27\",\r\n
+ \ \"52.138.90.192/26\",\r\n \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n
+ \ \"52.139.107.128/26\",\r\n \"52.146.136.64/26\",\r\n \"52.146.136.128/25\",\r\n
+ \ \"52.147.113.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"52.167.106.192/27\",\r\n \"52.167.107.0/26\",\r\n \"52.172.116.64/26\",\r\n
+ \ \"52.182.139.64/27\",\r\n \"52.182.139.128/26\",\r\n \"52.231.19.0/26\",\r\n
+ \ \"52.231.19.64/27\",\r\n \"52.231.147.32/27\",\r\n \"52.231.147.64/26\",\r\n
+ \ \"52.236.187.0/27\",\r\n \"52.236.187.128/25\",\r\n \"52.246.155.0/27\",\r\n
+ \ \"52.246.155.64/26\",\r\n \"65.52.251.0/26\",\r\n \"65.52.251.64/27\",\r\n
+ \ \"102.37.81.0/26\",\r\n \"102.37.160.192/26\",\r\n \"102.133.27.64/26\",\r\n
+ \ \"102.133.27.128/27\",\r\n \"102.133.123.96/27\",\r\n \"102.133.155.64/26\",\r\n
+ \ \"102.133.155.128/27\",\r\n \"102.133.251.0/27\",\r\n \"104.46.183.64/26\",\r\n
+ \ \"104.211.82.0/26\",\r\n \"104.211.82.64/27\",\r\n \"104.211.147.0/26\",\r\n
+ \ \"104.211.147.64/27\",\r\n \"104.214.19.96/27\",\r\n \"104.214.19.128/26\",\r\n
+ \ \"191.233.50.224/27\",\r\n \"191.233.51.64/26\",\r\n \"191.233.204.0/26\",\r\n
+ \ \"191.233.204.64/27\",\r\n \"191.234.147.80/28\",\r\n \"191.234.147.128/26\",\r\n
+ \ \"191.234.149.160/27\",\r\n \"191.234.155.80/28\",\r\n
+ \ \"191.234.155.128/26\",\r\n \"191.234.157.64/27\",\r\n
+ \ \"191.238.72.0/26\",\r\n \"2603:1000:4:402::200/121\",\r\n
+ \ \"2603:1000:104:402::200/121\",\r\n \"2603:1000:104:802::180/121\",\r\n
+ \ \"2603:1000:104:c02::180/121\",\r\n \"2603:1010:6:402::200/121\",\r\n
+ \ \"2603:1010:6:802::180/121\",\r\n \"2603:1010:6:c02::180/121\",\r\n
+ \ \"2603:1010:101:402::200/121\",\r\n \"2603:1010:304:402::200/121\",\r\n
+ \ \"2603:1010:404:402::200/121\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\",\r\n
+ \ \"2603:1020:206:402::200/121\",\r\n \"2603:1020:206:802::180/121\",\r\n
+ \ \"2603:1020:206:c02::180/121\",\r\n \"2603:1020:305:402::200/121\",\r\n
+ \ \"2603:1020:405:402::200/121\",\r\n \"2603:1020:605:402::200/121\",\r\n
+ \ \"2603:1020:705:402::200/121\",\r\n \"2603:1020:705:802::180/121\",\r\n
+ \ \"2603:1020:705:c02::180/121\",\r\n \"2603:1020:805:402::200/121\",\r\n
+ \ \"2603:1020:805:802::180/121\",\r\n \"2603:1020:805:c02::180/121\",\r\n
+ \ \"2603:1020:905:402::200/121\",\r\n \"2603:1020:a04:402::200/121\",\r\n
+ \ \"2603:1020:a04:802::180/121\",\r\n \"2603:1020:a04:c02::180/121\",\r\n
+ \ \"2603:1020:b04:402::200/121\",\r\n \"2603:1020:c04:402::200/121\",\r\n
+ \ \"2603:1020:c04:802::180/121\",\r\n \"2603:1020:c04:c02::180/121\",\r\n
+ \ \"2603:1020:d04:402::200/121\",\r\n \"2603:1020:e04:3::200/121\",\r\n
+ \ \"2603:1020:e04:402::200/121\",\r\n \"2603:1020:e04:802::180/121\",\r\n
+ \ \"2603:1020:e04:c02::180/121\",\r\n \"2603:1020:f04:402::200/121\",\r\n
+ \ \"2603:1020:1004:1::780/121\",\r\n \"2603:1020:1004:400::100/121\",\r\n
+ \ \"2603:1020:1004:400::300/121\",\r\n \"2603:1020:1004:c02::200/121\",\r\n
+ \ \"2603:1020:1104:1::400/121\",\r\n \"2603:1020:1104:400::200/121\",\r\n
+ \ \"2603:1030:f:2::580/121\",\r\n \"2603:1030:f:400::a00/121\",\r\n
+ \ \"2603:1030:10:402::200/121\",\r\n \"2603:1030:10:802::180/121\",\r\n
+ \ \"2603:1030:10:c02::180/121\",\r\n \"2603:1030:104:402::200/121\",\r\n
+ \ \"2603:1030:107:400::180/121\",\r\n \"2603:1030:210:402::200/121\",\r\n
+ \ \"2603:1030:210:802::180/121\",\r\n \"2603:1030:210:c02::180/121\",\r\n
+ \ \"2603:1030:40b:400::a00/121\",\r\n \"2603:1030:40b:800::180/121\",\r\n
+ \ \"2603:1030:40b:c00::180/121\",\r\n \"2603:1030:40c:402::200/121\",\r\n
+ \ \"2603:1030:40c:802::180/121\",\r\n \"2603:1030:40c:c02::180/121\",\r\n
+ \ \"2603:1030:504:2::100/121\",\r\n \"2603:1030:504:402::100/121\",\r\n
+ \ \"2603:1030:504:402::300/121\",\r\n \"2603:1030:504:802::280/121\",\r\n
+ \ \"2603:1030:504:c02::200/121\",\r\n \"2603:1030:608:402::200/121\",\r\n
+ \ \"2603:1030:807:402::200/121\",\r\n \"2603:1030:807:802::180/121\",\r\n
+ \ \"2603:1030:807:c02::180/121\",\r\n \"2603:1030:a07:402::180/121\",\r\n
+ \ \"2603:1030:b04:402::200/121\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\",\r\n
+ \ \"2603:1030:f05:402::200/121\",\r\n \"2603:1030:f05:802::180/121\",\r\n
+ \ \"2603:1030:f05:c02::180/121\",\r\n \"2603:1030:1005:402::200/121\",\r\n
+ \ \"2603:1040:5:402::200/121\",\r\n \"2603:1040:5:802::180/121\",\r\n
+ \ \"2603:1040:5:c02::180/121\",\r\n \"2603:1040:207:402::200/121\",\r\n
+ \ \"2603:1040:407:402::200/121\",\r\n \"2603:1040:407:802::180/121\",\r\n
+ \ \"2603:1040:407:c02::180/121\",\r\n \"2603:1040:606:402::200/121\",\r\n
+ \ \"2603:1040:806:402::200/121\",\r\n \"2603:1040:904:402::200/121\",\r\n
+ \ \"2603:1040:904:802::180/121\",\r\n \"2603:1040:904:c02::180/121\",\r\n
+ \ \"2603:1040:a06:402::200/121\",\r\n \"2603:1040:a06:802::180/121\",\r\n
+ \ \"2603:1040:a06:c02::180/121\",\r\n \"2603:1040:b04:402::200/121\",\r\n
+ \ \"2603:1040:c06:402::200/121\",\r\n \"2603:1040:d04:1::780/121\",\r\n
+ \ \"2603:1040:d04:400::100/121\",\r\n \"2603:1040:d04:400::300/121\",\r\n
+ \ \"2603:1040:d04:c02::200/121\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\",\r\n \"2603:1040:1104:1::480/121\",\r\n
+ \ \"2603:1040:1104:400::200/121\",\r\n \"2603:1050:6:402::200/121\",\r\n
+ \ \"2603:1050:6:802::180/121\",\r\n \"2603:1050:6:c02::180/121\",\r\n
+ \ \"2603:1050:403:400::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.AustraliaCentral2\",\r\n \"id\":
+ \"AzureBackup.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.224/27\",\r\n \"20.36.115.0/26\",\r\n
+ \ \"20.53.56.192/26\",\r\n \"2603:1010:404:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.BrazilSoutheast\",\r\n
+ \ \"id\": \"AzureBackup.BrazilSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilse\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBackup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.195.146.128/26\",\r\n \"191.233.50.224/27\",\r\n
+ \ \"191.233.51.64/26\",\r\n \"2603:1050:403:400::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.EastUS\",\r\n
+ \ \"id\": \"AzureBackup.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n \"40.78.227.64/26\",\r\n
+ \ \"40.78.227.128/25\",\r\n \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n
+ \ \"2603:1030:210:402::200/121\",\r\n \"2603:1030:210:802::180/121\",\r\n
+ \ \"2603:1030:210:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.KoreaCentral\",\r\n \"id\": \"AzureBackup.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.128/27\",\r\n
+ \ \"20.194.66.192/26\",\r\n \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n
+ \ \"52.231.19.0/26\",\r\n \"52.231.19.64/27\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthCentralUS\",\r\n \"id\":
+ \"AzureBackup.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.0.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"2603:1030:608:402::200/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthEurope\",\r\n \"id\": \"AzureBackup.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"13.69.228.128/25\",\r\n
+ \ \"13.69.229.0/27\",\r\n \"13.74.107.192/27\",\r\n \"13.74.108.0/25\",\r\n
+ \ \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n \"52.146.136.64/26\",\r\n
+ \ \"52.146.136.128/25\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKNorth\",\r\n
+ \ \"id\": \"AzureBackup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.123.0/26\",\r\n \"13.87.123.64/27\",\r\n \"2603:1020:305:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKSouth2\",\r\n
+ \ \"id\": \"AzureBackup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"2603:1020:405:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.WestUS2\",\r\n
+ \ \"id\": \"AzureBackup.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n
+ \ \"40.78.250.224/27\",\r\n \"40.78.251.0/26\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService\",\r\n
+ \ \"id\": \"AzureBotService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.64/30\",\r\n \"13.67.10.88/30\",\r\n \"13.69.67.56/30\",\r\n
+ \ \"13.69.227.252/30\",\r\n \"13.70.74.112/30\",\r\n \"13.71.173.240/30\",\r\n
+ \ \"13.71.196.160/30\",\r\n \"13.73.248.0/30\",\r\n \"13.75.39.72/30\",\r\n
+ \ \"13.77.53.80/30\",\r\n \"13.78.108.172/30\",\r\n \"13.86.219.168/30\",\r\n
+ \ \"13.87.58.40/30\",\r\n \"13.87.124.40/30\",\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.36.108.112/30\",\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"20.37.64.64/30\",\r\n \"20.37.76.104/30\",\r\n \"20.37.152.64/30\",\r\n
+ \ \"20.37.192.64/30\",\r\n \"20.37.224.64/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"20.38.128.72/30\",\r\n \"20.38.136.64/30\",\r\n \"20.39.8.64/30\",\r\n
+ \ \"20.41.0.64/30\",\r\n \"20.41.64.64/30\",\r\n \"20.41.192.64/30\",\r\n
+ \ \"20.42.0.64/30\",\r\n \"20.42.128.64/30\",\r\n \"20.42.224.64/30\",\r\n
+ \ \"20.43.40.64/30\",\r\n \"20.43.64.64/30\",\r\n \"20.43.121.8/30\",\r\n
+ \ \"20.43.128.64/30\",\r\n \"20.44.4.72/30\",\r\n \"20.44.17.24/30\",\r\n
+ \ \"20.44.27.208/30\",\r\n \"20.45.112.64/30\",\r\n \"20.45.123.112/30\",\r\n
+ \ \"20.45.192.64/30\",\r\n \"20.72.16.16/30\",\r\n \"20.150.160.120/30\",\r\n
+ \ \"20.189.104.64/30\",\r\n \"20.192.160.16/30\",\r\n \"20.192.224.64/26\",\r\n
+ \ \"40.67.48.64/30\",\r\n \"40.67.58.4/30\",\r\n \"40.69.108.56/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"40.74.24.64/30\",\r\n \"40.74.147.168/30\",\r\n
+ \ \"40.78.196.56/30\",\r\n \"40.78.202.132/30\",\r\n \"40.79.132.56/30\",\r\n
+ \ \"40.79.180.24/30\",\r\n \"40.80.56.64/30\",\r\n \"40.80.168.64/30\",\r\n
+ \ \"40.80.176.32/30\",\r\n \"40.80.184.64/30\",\r\n \"40.82.248.64/30\",\r\n
+ \ \"40.89.16.64/30\",\r\n \"51.12.40.64/26\",\r\n \"51.12.192.64/26\",\r\n
+ \ \"51.104.8.248/30\",\r\n \"51.104.24.64/30\",\r\n \"51.105.80.64/30\",\r\n
+ \ \"51.105.88.64/30\",\r\n \"51.107.48.64/30\",\r\n \"51.107.58.4/30\",\r\n
+ \ \"51.107.144.64/30\",\r\n \"51.107.154.4/30\",\r\n \"51.116.48.64/30\",\r\n
+ \ \"51.116.144.64/30\",\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"51.120.218.4/30\",\r\n \"51.120.224.64/30\",\r\n \"51.137.160.64/30\",\r\n
+ \ \"51.140.212.72/30\",\r\n \"51.143.192.64/30\",\r\n \"52.136.48.64/30\",\r\n
+ \ \"52.140.104.64/30\",\r\n \"52.150.136.64/30\",\r\n \"52.162.111.16/30\",\r\n
+ \ \"52.228.80.64/30\",\r\n \"52.231.148.88/30\",\r\n \"65.52.252.104/30\",\r\n
+ \ \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n \"102.133.124.8/30\",\r\n
+ \ \"102.133.216.64/30\",\r\n \"191.233.8.16/30\",\r\n \"191.233.205.96/30\",\r\n
+ \ \"191.235.224.64/30\",\r\n \"2603:1000:4::20/123\",\r\n
+ \ \"2603:1000:104:1::20/123\",\r\n \"2603:1010:6:1::20/123\",\r\n
+ \ \"2603:1010:101::20/123\",\r\n \"2603:1010:304::20/123\",\r\n
+ \ \"2603:1010:404::20/123\",\r\n \"2603:1020:5:1::20/123\",\r\n
+ \ \"2603:1020:206:1::20/123\",\r\n \"2603:1020:305::20/123\",\r\n
+ \ \"2603:1020:405::20/123\",\r\n \"2603:1020:605::20/123\",\r\n
+ \ \"2603:1020:705:1::20/123\",\r\n \"2603:1020:805:1::20/123\",\r\n
+ \ \"2603:1020:905::20/123\",\r\n \"2603:1020:a04:1::20/123\",\r\n
+ \ \"2603:1020:b04::20/123\",\r\n \"2603:1020:c04:1::20/123\",\r\n
+ \ \"2603:1020:d04::20/123\",\r\n \"2603:1020:e04:1::20/123\",\r\n
+ \ \"2603:1020:f04::20/123\",\r\n \"2603:1020:1004::20/123\",\r\n
+ \ \"2603:1020:1104::20/123\",\r\n \"2603:1030:f:1::20/123\",\r\n
+ \ \"2603:1030:10:1::20/123\",\r\n \"2603:1030:104:1::20/123\",\r\n
+ \ \"2603:1030:107::20/123\",\r\n \"2603:1030:210:1::20/123\",\r\n
+ \ \"2603:1030:40b:1::20/123\",\r\n \"2603:1030:40c:1::20/123\",\r\n
+ \ \"2603:1030:504:1::20/123\",\r\n \"2603:1030:608::20/123\",\r\n
+ \ \"2603:1030:807:1::20/123\",\r\n \"2603:1030:a07::20/123\",\r\n
+ \ \"2603:1030:b04::20/123\",\r\n \"2603:1030:c06:1::20/123\",\r\n
+ \ \"2603:1030:f05:1::20/123\",\r\n \"2603:1030:1005::20/123\",\r\n
+ \ \"2603:1040:5:1::20/123\",\r\n \"2603:1040:207::20/123\",\r\n
+ \ \"2603:1040:407:1::20/123\",\r\n \"2603:1040:606::20/123\",\r\n
+ \ \"2603:1040:806::20/123\",\r\n \"2603:1040:904:1::20/123\",\r\n
+ \ \"2603:1040:a06:1::20/123\",\r\n \"2603:1040:b04::20/123\",\r\n
+ \ \"2603:1040:c06::20/123\",\r\n \"2603:1040:d04::20/123\",\r\n
+ \ \"2603:1040:f05:1::20/123\",\r\n \"2603:1040:1104::20/123\",\r\n
+ \ \"2603:1050:6:1::20/123\",\r\n \"2603:1050:403::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureBotService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"2603:1010:404::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.CentralUS\",\r\n \"id\": \"AzureBotService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.37.152.64/30\",\r\n \"2603:1030:10:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureBotService.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.192.64/30\",\r\n \"40.78.202.132/30\",\r\n
+ \ \"2603:1030:f:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.EastUS\",\r\n \"id\": \"AzureBotService.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"20.42.0.64/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"2603:1030:210:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.GermanyNorth\",\r\n
+ \ \"id\": \"AzureBotService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.64/30\",\r\n \"2603:1020:d04::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.NorthEurope\",\r\n
+ \ \"id\": \"AzureBotService.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.227.252/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"2603:1020:5:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.NorwayEast\",\r\n \"id\":
+ \"AzureBotService.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"2603:1020:e04:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.SouthAfricaWest\",\r\n \"id\":
+ \"AzureBotService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n
+ \ \"2603:1000:4::20/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureBotService.UKSouth\",\r\n \"id\": \"AzureBotService.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.248/30\",\r\n
+ \ \"51.104.24.64/30\",\r\n \"2603:1020:705:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.UKWest\",\r\n
+ \ \"id\": \"AzureBotService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.160.64/30\",\r\n \"51.140.212.72/30\",\r\n
+ \ \"2603:1020:605::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestCentralUS\",\r\n \"id\":
+ \"AzureBotService.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.160/30\",\r\n \"52.150.136.64/30\",\r\n
+ \ \"2603:1030:b04::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestEurope\",\r\n \"id\":
+ \"AzureBotService.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.67.56/30\",\r\n \"40.74.24.64/30\",\r\n \"2603:1020:206:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud\",\r\n
+ \ \"id\": \"AzureCloud\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.65.0.0/16\",\r\n \"13.66.0.0/17\",\r\n \"13.66.128.0/17\",\r\n
+ \ \"13.67.0.0/17\",\r\n \"13.67.128.0/20\",\r\n \"13.67.144.0/21\",\r\n
+ \ \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n
+ \ \"13.67.160.0/19\",\r\n \"13.67.192.0/18\",\r\n \"13.68.0.0/17\",\r\n
+ \ \"13.68.128.0/17\",\r\n \"13.69.0.0/17\",\r\n \"13.69.128.0/17\",\r\n
+ \ \"13.70.0.0/18\",\r\n \"13.70.64.0/18\",\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.70.192.0/18\",\r\n \"13.71.0.0/18\",\r\n \"13.71.64.0/18\",\r\n
+ \ \"13.71.128.0/19\",\r\n \"13.71.160.0/19\",\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.72.64.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.72.224.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.73.32.0/19\",\r\n \"13.73.96.0/19\",\r\n
+ \ \"13.73.128.0/18\",\r\n \"13.73.192.0/20\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.73.232.0/21\",\r\n \"13.73.240.0/20\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.75.0.0/17\",\r\n \"13.75.128.0/17\",\r\n \"13.76.0.0/16\",\r\n
+ \ \"13.77.0.0/18\",\r\n \"13.77.64.0/18\",\r\n \"13.77.128.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.78.128.0/17\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.80.0.0/15\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.83.0.0/16\",\r\n \"13.84.0.0/15\",\r\n \"13.86.0.0/17\",\r\n
+ \ \"13.86.128.0/17\",\r\n \"13.87.0.0/18\",\r\n \"13.87.64.0/18\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.88.200.0/21\",\r\n \"13.88.208.0/20\",\r\n \"13.88.224.0/19\",\r\n
+ \ \"13.89.0.0/16\",\r\n \"13.90.0.0/16\",\r\n \"13.91.0.0/16\",\r\n
+ \ \"13.92.0.0/16\",\r\n \"13.93.0.0/17\",\r\n \"13.93.128.0/17\",\r\n
+ \ \"13.94.0.0/18\",\r\n \"13.94.64.0/18\",\r\n \"13.94.128.0/17\",\r\n
+ \ \"13.95.0.0/16\",\r\n \"13.104.129.0/26\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.129.128/26\",\r\n \"13.104.129.192/26\",\r\n \"13.104.144.0/27\",\r\n
+ \ \"13.104.144.32/27\",\r\n \"13.104.144.64/27\",\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.144.128/27\",\r\n \"13.104.144.160/27\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.144.224/27\",\r\n \"13.104.145.0/26\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.145.128/27\",\r\n \"13.104.145.160/27\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.64/26\",\r\n \"13.104.146.128/25\",\r\n
+ \ \"13.104.147.0/25\",\r\n \"13.104.147.128/25\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.148.128/25\",\r\n \"13.104.149.0/26\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.150.128/26\",\r\n
+ \ \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n \"13.104.151.64/26\",\r\n
+ \ \"13.104.151.128/26\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.153.0/27\",\r\n \"13.104.153.32/28\",\r\n
+ \ \"13.104.153.48/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.153.128/26\",\r\n \"13.104.153.192/26\",\r\n \"13.104.154.0/25\",\r\n
+ \ \"13.104.154.128/25\",\r\n \"13.104.155.0/27\",\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.155.64/26\",\r\n \"13.104.155.128/26\",\r\n \"13.104.155.192/26\",\r\n
+ \ \"13.104.156.0/24\",\r\n \"13.104.157.0/25\",\r\n \"13.104.157.128/25\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.16/28\",\r\n \"13.104.158.32/27\",\r\n
+ \ \"13.104.158.64/26\",\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.176/28\",\r\n \"13.104.158.192/27\",\r\n \"13.104.158.224/27\",\r\n
+ \ \"13.104.159.0/25\",\r\n \"13.104.159.128/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.192.0/21\",\r\n \"13.104.208.0/26\",\r\n \"13.104.208.64/27\",\r\n
+ \ \"13.104.208.96/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.208.192/26\",\r\n \"13.104.209.0/24\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.104.211.0/25\",\r\n \"13.104.211.128/26\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"13.104.212.0/26\",\r\n \"13.104.212.64/26\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.104.212.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.213.128/25\",\r\n \"13.104.214.0/25\",\r\n \"13.104.214.128/25\",\r\n
+ \ \"13.104.215.0/25\",\r\n \"13.104.215.128/25\",\r\n \"13.104.216.0/24\",\r\n
+ \ \"13.104.217.0/25\",\r\n \"13.104.217.128/25\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.104.218.128/25\",\r\n \"13.104.219.0/25\",\r\n \"13.104.219.128/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.104.220.128/25\",\r\n \"13.104.221.0/24\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.104.223.192/26\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.17.0/26\",\r\n \"13.105.17.64/26\",\r\n \"13.105.17.128/26\",\r\n
+ \ \"13.105.17.192/26\",\r\n \"13.105.18.0/26\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.19.0/25\",\r\n
+ \ \"13.105.19.128/25\",\r\n \"13.105.20.0/25\",\r\n \"13.105.20.128/26\",\r\n
+ \ \"13.105.20.192/26\",\r\n \"13.105.21.0/24\",\r\n \"13.105.22.0/24\",\r\n
+ \ \"13.105.23.0/26\",\r\n \"13.105.23.64/26\",\r\n \"13.105.23.128/25\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.25.0/24\",\r\n \"13.105.26.0/24\",\r\n
+ \ \"13.105.27.0/25\",\r\n \"13.105.27.128/27\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.27.224/27\",\r\n \"13.105.28.0/28\",\r\n
+ \ \"13.105.28.16/28\",\r\n \"13.105.28.32/28\",\r\n \"13.105.28.48/28\",\r\n
+ \ \"13.105.28.128/25\",\r\n \"13.105.29.0/25\",\r\n \"13.105.29.128/25\",\r\n
+ \ \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.96/27\",\r\n \"13.105.36.128/26\",\r\n
+ \ \"13.105.36.192/26\",\r\n \"13.105.37.0/26\",\r\n \"13.105.37.64/26\",\r\n
+ \ \"13.105.37.128/26\",\r\n \"13.105.37.192/26\",\r\n \"13.105.52.0/27\",\r\n
+ \ \"13.105.52.32/27\",\r\n \"13.105.52.64/28\",\r\n \"13.105.52.80/28\",\r\n
+ \ \"13.105.52.96/27\",\r\n \"13.105.52.128/26\",\r\n \"13.105.52.192/26\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.53.128/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n \"13.105.60.48/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.60.96/27\",\r\n \"13.105.60.128/27\",\r\n
+ \ \"13.105.60.160/27\",\r\n \"13.105.60.192/26\",\r\n \"13.105.61.0/28\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.32/27\",\r\n \"13.105.61.64/26\",\r\n
+ \ \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"13.105.66.144/28\",\r\n \"13.105.66.192/26\",\r\n \"13.105.67.0/25\",\r\n
+ \ \"13.105.67.128/25\",\r\n \"13.105.74.48/28\",\r\n \"13.105.74.96/27\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.74.192/26\",\r\n \"13.105.75.0/27\",\r\n
+ \ \"13.105.75.32/28\",\r\n \"13.105.75.64/27\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.96.112/28\",\r\n \"13.105.96.128/25\",\r\n
+ \ \"13.105.97.0/27\",\r\n \"13.105.97.32/27\",\r\n \"13.105.97.64/27\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.36.32.0/19\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.96.0/21\",\r\n \"20.36.104.0/21\",\r\n \"20.36.112.0/20\",\r\n
+ \ \"20.36.128.0/17\",\r\n \"20.37.0.0/18\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.37.128.0/18\",\r\n \"20.37.192.0/19\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.64.0/19\",\r\n \"20.38.96.0/23\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.38.99.0/24\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.38.104.0/23\",\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.38.108.0/23\",\r\n \"20.38.112.0/23\",\r\n \"20.38.114.0/25\",\r\n
+ \ \"20.38.114.128/25\",\r\n \"20.38.115.0/24\",\r\n \"20.38.116.0/23\",\r\n
+ \ \"20.38.118.0/24\",\r\n \"20.38.120.0/24\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.38.122.0/23\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.126.0/23\",\r\n \"20.38.128.0/21\",\r\n \"20.38.136.0/21\",\r\n
+ \ \"20.38.144.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.38.184.0/22\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.38.196.0/22\",\r\n \"20.38.200.0/22\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.39.0.0/19\",\r\n \"20.39.32.0/19\",\r\n
+ \ \"20.39.64.0/21\",\r\n \"20.39.72.0/21\",\r\n \"20.39.80.0/20\",\r\n
+ \ \"20.39.96.0/19\",\r\n \"20.39.128.0/20\",\r\n \"20.39.144.0/20\",\r\n
+ \ \"20.39.160.0/21\",\r\n \"20.39.168.0/21\",\r\n \"20.39.176.0/21\",\r\n
+ \ \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n \"20.39.208.0/20\",\r\n
+ \ \"20.39.224.0/21\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.40.16.0/21\",\r\n
+ \ \"20.40.32.0/21\",\r\n \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n
+ \ \"20.40.64.0/20\",\r\n \"20.40.80.0/21\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.40.104.0/21\",\r\n \"20.40.112.0/21\",\r\n
+ \ \"20.40.120.0/21\",\r\n \"20.40.128.0/19\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.40.176.0/20\",\r\n \"20.40.192.0/18\",\r\n \"20.41.0.0/18\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.41.128.0/18\",\r\n \"20.41.192.0/18\",\r\n
+ \ \"20.42.0.0/17\",\r\n \"20.42.128.0/18\",\r\n \"20.42.192.0/19\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.43.0.0/19\",\r\n \"20.43.32.0/19\",\r\n
+ \ \"20.43.64.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.43.128.0/18\",\r\n \"20.43.192.0/18\",\r\n \"20.44.8.0/21\",\r\n
+ \ \"20.44.16.0/21\",\r\n \"20.44.24.0/21\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.44.128.0/18\",\r\n \"20.44.192.0/18\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.64.0/19\",\r\n \"20.45.120.0/21\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.45.136.0/21\",\r\n \"20.45.144.0/20\",\r\n
+ \ \"20.45.160.0/19\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.46.32.0/19\",\r\n \"20.46.96.0/20\",\r\n \"20.46.112.0/20\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.46.192.0/21\",\r\n
+ \ \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.0.0/24\",\r\n \"20.47.1.0/24\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.3.0/24\",\r\n \"20.47.4.0/24\",\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.7.0/24\",\r\n \"20.47.8.0/24\",\r\n
+ \ \"20.47.9.0/24\",\r\n \"20.47.10.0/24\",\r\n \"20.47.11.0/24\",\r\n
+ \ \"20.47.12.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.47.16.0/23\",\r\n
+ \ \"20.47.18.0/23\",\r\n \"20.47.20.0/23\",\r\n \"20.47.22.0/23\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.26.0/24\",\r\n \"20.47.27.0/24\",\r\n
+ \ \"20.47.28.0/24\",\r\n \"20.47.29.0/24\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.47.31.0/24\",\r\n \"20.47.32.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.34.0/24\",\r\n \"20.47.35.0/24\",\r\n \"20.47.36.0/24\",\r\n
+ \ \"20.47.37.0/24\",\r\n \"20.47.38.0/24\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.40.0/24\",\r\n \"20.47.41.0/24\",\r\n \"20.47.42.0/24\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.44.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.46.0/24\",\r\n \"20.47.47.0/24\",\r\n \"20.47.48.0/24\",\r\n
+ \ \"20.47.49.0/24\",\r\n \"20.47.50.0/24\",\r\n \"20.47.51.0/24\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.53.0/24\",\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.47.56.0/24\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.47.62.0/23\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.67.0/24\",\r\n \"20.47.68.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.71.0/24\",\r\n \"20.47.72.0/23\",\r\n
+ \ \"20.47.74.0/23\",\r\n \"20.47.76.0/23\",\r\n \"20.47.78.0/23\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.47.82.0/23\",\r\n \"20.47.84.0/23\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.47.87.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.47.89.0/24\",\r\n \"20.47.90.0/24\",\r\n \"20.47.91.0/24\",\r\n
+ \ \"20.47.92.0/24\",\r\n \"20.47.93.0/24\",\r\n \"20.47.94.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.98.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.47.100.0/24\",\r\n \"20.47.101.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.47.103.0/24\",\r\n \"20.47.104.0/24\",\r\n
+ \ \"20.47.105.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.107.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.110.0/24\",\r\n \"20.47.111.0/24\",\r\n
+ \ \"20.47.112.0/24\",\r\n \"20.47.113.0/24\",\r\n \"20.47.114.0/24\",\r\n
+ \ \"20.47.115.0/24\",\r\n \"20.47.116.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.47.120.0/23\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.47.124.0/23\",\r\n \"20.47.126.0/23\",\r\n
+ \ \"20.47.128.0/17\",\r\n \"20.48.0.0/17\",\r\n \"20.48.128.0/18\",\r\n
+ \ \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n \"20.49.0.0/18\",\r\n
+ \ \"20.49.88.0/21\",\r\n \"20.49.96.0/21\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.49.112.0/21\",\r\n \"20.49.120.0/21\",\r\n \"20.49.128.0/17\",\r\n
+ \ \"20.50.0.0/18\",\r\n \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n
+ \ \"20.50.96.0/19\",\r\n \"20.50.128.0/17\",\r\n \"20.51.0.0/21\",\r\n
+ \ \"20.51.8.0/21\",\r\n \"20.51.16.0/21\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.51.32.0/19\",\r\n \"20.51.64.0/18\",\r\n \"20.51.128.0/17\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.72.0/21\",\r\n
+ \ \"20.52.80.0/27\",\r\n \"20.52.80.32/27\",\r\n \"20.52.80.64/27\",\r\n
+ \ \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n \"20.52.128.0/17\",\r\n
+ \ \"20.53.0.0/19\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.48.0/21\",\r\n \"20.53.56.0/21\",\r\n \"20.53.64.0/18\",\r\n
+ \ \"20.53.128.0/17\",\r\n \"20.54.0.0/17\",\r\n \"20.54.128.0/17\",\r\n
+ \ \"20.55.0.0/17\",\r\n \"20.55.128.0/18\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.56.0.0/16\",\r\n \"20.57.0.0/17\",\r\n \"20.57.128.0/18\",\r\n
+ \ \"20.57.192.0/19\",\r\n \"20.57.224.0/19\",\r\n \"20.58.0.0/18\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.58.128.0/18\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.59.0.0/18\",\r\n \"20.59.64.0/18\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.59.192.0/18\",\r\n \"20.60.0.0/24\",\r\n \"20.60.1.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.4.0/24\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.60.11.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.15.0/24\",\r\n
+ \ \"20.60.16.0/24\",\r\n \"20.60.17.0/24\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.20.0/24\",\r\n \"20.60.21.0/24\",\r\n
+ \ \"20.60.22.0/23\",\r\n \"20.60.24.0/23\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.28.0/23\",\r\n \"20.60.30.0/23\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.60.34.0/23\",\r\n \"20.60.36.0/23\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.60.48.0/22\",\r\n \"20.60.52.0/23\",\r\n
+ \ \"20.60.56.0/22\",\r\n \"20.60.60.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.72.0/22\",\r\n \"20.60.80.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.60.128.0/23\",\r\n \"20.60.130.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.60.132.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.60.140.0/23\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.60.144.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.60.148.0/23\",\r\n \"20.60.150.0/23\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.60.154.0/23\",\r\n \"20.60.156.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.60.166.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.60.174.0/23\",\r\n \"20.60.176.0/23\",\r\n
+ \ \"20.60.178.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.60.182.0/23\",\r\n
+ \ \"20.60.184.0/23\",\r\n \"20.60.186.0/23\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.60.194.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.62.0.0/17\",\r\n \"20.62.128.0/17\",\r\n
+ \ \"20.63.0.0/17\",\r\n \"20.63.128.0/18\",\r\n \"20.63.192.0/18\",\r\n
+ \ \"20.64.0.0/17\",\r\n \"20.64.128.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.65.128.0/17\",\r\n \"20.66.0.0/17\",\r\n \"20.66.128.0/17\",\r\n
+ \ \"20.67.0.0/17\",\r\n \"20.67.128.0/17\",\r\n \"20.68.0.0/18\",\r\n
+ \ \"20.68.64.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.69.0.0/18\",\r\n
+ \ \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n \"20.69.192.0/18\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.70.64.0/18\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.71.0.0/16\",\r\n \"20.72.32.0/19\",\r\n \"20.72.64.0/18\",\r\n
+ \ \"20.72.128.0/18\",\r\n \"20.72.192.0/18\",\r\n \"20.73.0.0/16\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.74.128.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.75.128.0/17\",\r\n \"20.76.0.0/16\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.77.192.0/18\",\r\n \"20.78.0.0/17\",\r\n
+ \ \"20.78.128.0/18\",\r\n \"20.78.192.0/18\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.80.0.0/18\",\r\n \"20.80.64.0/18\",\r\n
+ \ \"20.80.128.0/18\",\r\n \"20.80.192.0/18\",\r\n \"20.81.0.0/17\",\r\n
+ \ \"20.81.128.0/17\",\r\n \"20.82.0.0/17\",\r\n \"20.82.128.0/17\",\r\n
+ \ \"20.83.0.0/18\",\r\n \"20.83.64.0/18\",\r\n \"20.83.128.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.84.0.0/17\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.85.0.0/17\",\r\n \"20.85.128.0/17\",\r\n \"20.86.0.0/17\",\r\n
+ \ \"20.87.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.88.96.0/19\",\r\n
+ \ \"20.88.128.0/18\",\r\n \"20.88.192.0/18\",\r\n \"20.89.0.0/17\",\r\n
+ \ \"20.90.0.0/18\",\r\n \"20.92.0.0/18\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.4.0/22\",\r\n \"20.135.8.0/22\",\r\n
+ \ \"20.135.12.0/22\",\r\n \"20.135.16.0/23\",\r\n \"20.135.18.0/23\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.24.0/23\",\r\n \"20.135.26.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.135.30.0/23\",\r\n \"20.135.32.0/23\",\r\n
+ \ \"20.135.36.0/23\",\r\n \"20.135.40.0/23\",\r\n \"20.135.42.0/23\",\r\n
+ \ \"20.135.44.0/23\",\r\n \"20.135.48.0/23\",\r\n \"20.135.50.0/23\",\r\n
+ \ \"20.135.52.0/23\",\r\n \"20.135.54.0/23\",\r\n \"20.135.56.0/23\",\r\n
+ \ \"20.135.58.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.135.66.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.135.70.0/23\",\r\n
+ \ \"20.135.72.0/23\",\r\n \"20.135.74.0/23\",\r\n \"20.135.76.0/23\",\r\n
+ \ \"20.135.78.0/23\",\r\n \"20.135.80.0/22\",\r\n \"20.135.84.0/22\",\r\n
+ \ \"20.135.88.0/23\",\r\n \"20.135.90.0/23\",\r\n \"20.135.92.0/22\",\r\n
+ \ \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.135.128.0/22\",\r\n \"20.135.132.0/23\",\r\n
+ \ \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n
+ \ \"20.135.216.0/22\",\r\n \"20.135.220.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.0.0/24\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.1.128/25\",\r\n \"20.150.2.0/23\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.14.0/23\",\r\n \"20.150.16.0/24\",\r\n
+ \ \"20.150.17.0/25\",\r\n \"20.150.17.128/25\",\r\n \"20.150.18.0/25\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.19.0/24\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.21.0/24\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.23.0/24\",\r\n \"20.150.24.0/24\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.27.0/24\",\r\n \"20.150.28.0/24\",\r\n
+ \ \"20.150.29.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.36.0/24\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.38.0/23\",\r\n \"20.150.40.0/25\",\r\n \"20.150.40.128/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.42.0/24\",\r\n \"20.150.43.0/25\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.46.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n \"20.150.49.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.53.0/24\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.55.0/24\",\r\n \"20.150.56.0/24\",\r\n
+ \ \"20.150.58.0/24\",\r\n \"20.150.59.0/24\",\r\n \"20.150.60.0/24\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.66.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.150.70.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.72.0/24\",\r\n \"20.150.73.0/24\",\r\n \"20.150.74.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.76.0/24\",\r\n \"20.150.77.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.82.0/24\",\r\n \"20.150.83.0/24\",\r\n
+ \ \"20.150.84.0/24\",\r\n \"20.150.85.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.150.91.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.150.100.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.150.103.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"20.150.107.0/24\",\r\n \"20.150.108.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.150.111.0/24\",\r\n \"20.150.112.0/24\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"20.150.114.0/24\",\r\n \"20.150.115.0/24\",\r\n \"20.150.116.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.150.121.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.150.123.0/24\",\r\n
+ \ \"20.150.124.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.151.0.0/17\",\r\n \"20.151.128.0/18\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.157.2.0/24\",\r\n
+ \ \"20.157.3.0/24\",\r\n \"20.157.32.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.157.36.0/23\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"20.157.41.0/24\",\r\n \"20.157.42.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.157.47.0/24\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"20.157.52.0/24\",\r\n \"20.157.53.0/24\",\r\n
+ \ \"20.157.54.0/24\",\r\n \"20.157.55.0/24\",\r\n \"20.157.56.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.157.96.0/24\",\r\n \"20.184.0.0/18\",\r\n
+ \ \"20.184.64.0/18\",\r\n \"20.184.128.0/17\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.187.64.0/18\",\r\n \"20.187.128.0/18\",\r\n
+ \ \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n \"20.188.0.0/19\",\r\n
+ \ \"20.188.32.0/19\",\r\n \"20.188.64.0/19\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.188.128.0/17\",\r\n \"20.189.0.0/18\",\r\n \"20.189.64.0/18\",\r\n
+ \ \"20.189.128.0/18\",\r\n \"20.189.192.0/18\",\r\n \"20.190.0.0/18\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.96.0/19\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.130.0/24\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.133.0/24\",\r\n \"20.190.134.0/24\",\r\n
+ \ \"20.190.135.0/24\",\r\n \"20.190.136.0/24\",\r\n \"20.190.137.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.138.128/25\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.139.128/25\",\r\n \"20.190.140.0/25\",\r\n \"20.190.140.128/25\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.141.128/25\",\r\n \"20.190.142.0/25\",\r\n
+ \ \"20.190.142.128/25\",\r\n \"20.190.143.0/25\",\r\n \"20.190.143.128/25\",\r\n
+ \ \"20.190.144.0/25\",\r\n \"20.190.144.128/25\",\r\n \"20.190.145.0/25\",\r\n
+ \ \"20.190.145.128/25\",\r\n \"20.190.146.0/25\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.147.0/25\",\r\n \"20.190.147.128/25\",\r\n \"20.190.148.0/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.149.0/24\",\r\n \"20.190.150.0/24\",\r\n
+ \ \"20.190.151.0/24\",\r\n \"20.190.152.0/24\",\r\n \"20.190.153.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.190.155.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"20.190.158.0/24\",\r\n \"20.190.159.0/24\",\r\n
+ \ \"20.190.160.0/24\",\r\n \"20.190.161.0/24\",\r\n \"20.190.162.0/24\",\r\n
+ \ \"20.190.163.0/24\",\r\n \"20.190.164.0/24\",\r\n \"20.190.165.0/24\",\r\n
+ \ \"20.190.166.0/24\",\r\n \"20.190.167.0/24\",\r\n \"20.190.168.0/24\",\r\n
+ \ \"20.190.169.0/24\",\r\n \"20.190.170.0/24\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"20.190.172.0/24\",\r\n \"20.190.173.0/24\",\r\n \"20.190.174.0/24\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.190.176.0/24\",\r\n \"20.190.177.0/24\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"20.190.179.0/24\",\r\n \"20.190.180.0/24\",\r\n
+ \ \"20.190.183.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.190.185.0/24\",\r\n
+ \ \"20.190.186.0/24\",\r\n \"20.190.187.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"20.190.189.64/26\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"20.190.190.0/26\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"20.190.192.0/18\",\r\n \"20.191.0.0/18\",\r\n \"20.191.64.0/18\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.191.160.0/19\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n \"20.192.64.0/19\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"20.193.96.0/19\",\r\n
+ \ \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.194.128.0/17\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n
+ \ \"20.195.128.0/22\",\r\n \"20.195.136.0/21\",\r\n \"20.195.144.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.197.64.0/18\",\r\n \"20.197.128.0/17\",\r\n
+ \ \"20.198.0.0/17\",\r\n \"20.198.128.0/17\",\r\n \"20.199.0.0/17\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"20.199.192.0/18\",\r\n \"20.200.0.0/18\",\r\n
+ \ \"20.200.64.0/18\",\r\n \"20.200.128.0/18\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"20.201.0.0/18\",\r\n \"23.96.0.0/17\",\r\n \"23.96.128.0/17\",\r\n
+ \ \"23.97.48.0/20\",\r\n \"23.97.64.0/19\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"23.97.112.192/27\",\r\n \"23.97.112.224/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"23.97.128.0/17\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.98.45.0/24\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.98.47.0/24\",\r\n \"23.98.48.0/21\",\r\n
+ \ \"23.98.56.0/24\",\r\n \"23.98.57.64/26\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.98.128.0/17\",\r\n \"23.99.0.0/18\",\r\n \"23.99.64.0/19\",\r\n
+ \ \"23.99.96.0/19\",\r\n \"23.99.128.0/17\",\r\n \"23.100.0.0/20\",\r\n
+ \ \"23.100.16.0/20\",\r\n \"23.100.32.0/20\",\r\n \"23.100.48.0/20\",\r\n
+ \ \"23.100.64.0/21\",\r\n \"23.100.72.0/21\",\r\n \"23.100.80.0/21\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.100.96.0/21\",\r\n \"23.100.104.0/21\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.100.120.0/21\",\r\n \"23.100.128.0/18\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.100.240.0/20\",\r\n \"23.101.0.0/20\",\r\n
+ \ \"23.101.16.0/20\",\r\n \"23.101.32.0/21\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.101.64.0/20\",\r\n \"23.101.80.0/21\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.101.128.0/20\",\r\n \"23.101.144.0/20\",\r\n \"23.101.160.0/20\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.101.192.0/20\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"23.101.224.0/19\",\r\n \"23.102.0.0/18\",\r\n \"23.102.64.0/19\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.128.0/18\",\r\n \"23.102.192.0/21\",\r\n
+ \ \"23.102.200.0/23\",\r\n \"23.102.202.0/24\",\r\n \"23.102.203.0/24\",\r\n
+ \ \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n \"23.102.224.0/19\",\r\n
+ \ \"23.103.64.32/27\",\r\n \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n
+ \ \"40.64.64.0/18\",\r\n \"40.64.128.0/21\",\r\n \"40.65.0.0/18\",\r\n
+ \ \"40.65.64.0/18\",\r\n \"40.65.128.0/18\",\r\n \"40.65.192.0/18\",\r\n
+ \ \"40.66.32.0/19\",\r\n \"40.66.120.0/21\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.67.128.0/19\",\r\n \"40.67.160.0/19\",\r\n \"40.67.192.0/19\",\r\n
+ \ \"40.67.224.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.96.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.69.192.0/19\",\r\n \"40.70.0.0/18\",\r\n \"40.70.64.0/20\",\r\n
+ \ \"40.70.80.0/21\",\r\n \"40.70.88.0/28\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.74.0.0/18\",\r\n \"40.74.64.0/18\",\r\n
+ \ \"40.74.128.0/20\",\r\n \"40.74.144.0/20\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.75.0.0/19\",\r\n \"40.75.32.0/21\",\r\n
+ \ \"40.75.64.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.76.0.0/16\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.128.0/25\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.130.128/26\",\r\n
+ \ \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n \"40.77.131.128/26\",\r\n
+ \ \"40.77.131.192/27\",\r\n \"40.77.131.224/28\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.132.0/24\",\r\n \"40.77.133.0/24\",\r\n \"40.77.134.0/24\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.0/28\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.48/28\",\r\n \"40.77.136.64/28\",\r\n
+ \ \"40.77.136.80/28\",\r\n \"40.77.136.96/28\",\r\n \"40.77.136.128/25\",\r\n
+ \ \"40.77.137.0/25\",\r\n \"40.77.137.128/26\",\r\n \"40.77.137.192/27\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.138.128/25\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n \"40.77.160.32/27\",\r\n
+ \ \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n \"40.77.161.0/26\",\r\n
+ \ \"40.77.161.64/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.162.0/24\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.166.0/25\",\r\n \"40.77.166.128/28\",\r\n \"40.77.166.160/27\",\r\n
+ \ \"40.77.166.192/26\",\r\n \"40.77.167.0/24\",\r\n \"40.77.168.0/24\",\r\n
+ \ \"40.77.169.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.171.0/24\",\r\n
+ \ \"40.77.172.0/24\",\r\n \"40.77.173.0/24\",\r\n \"40.77.174.0/24\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.175.32/27\",\r\n \"40.77.175.64/27\",\r\n
+ \ \"40.77.175.96/27\",\r\n \"40.77.175.128/27\",\r\n \"40.77.175.160/27\",\r\n
+ \ \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n \"40.77.176.0/24\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.180.0/23\",\r\n
+ \ \"40.77.182.0/28\",\r\n \"40.77.182.16/28\",\r\n \"40.77.182.32/27\",\r\n
+ \ \"40.77.182.64/27\",\r\n \"40.77.182.96/27\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.182.192/26\",\r\n \"40.77.183.0/24\",\r\n
+ \ \"40.77.184.0/25\",\r\n \"40.77.184.128/25\",\r\n \"40.77.185.0/25\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.188.0/22\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.196.0/24\",\r\n \"40.77.197.0/24\",\r\n
+ \ \"40.77.198.0/26\",\r\n \"40.77.198.64/26\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.0/25\",\r\n \"40.77.199.128/26\",\r\n \"40.77.199.192/26\",\r\n
+ \ \"40.77.200.0/25\",\r\n \"40.77.200.128/25\",\r\n \"40.77.201.0/24\",\r\n
+ \ \"40.77.202.0/24\",\r\n \"40.77.224.0/28\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.224.64/27\",\r\n \"40.77.224.96/27\",\r\n
+ \ \"40.77.224.128/25\",\r\n \"40.77.225.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.227.0/24\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.229.0/24\",\r\n \"40.77.230.0/24\",\r\n \"40.77.231.0/24\",\r\n
+ \ \"40.77.232.0/25\",\r\n \"40.77.232.128/25\",\r\n \"40.77.233.0/24\",\r\n
+ \ \"40.77.234.0/25\",\r\n \"40.77.234.128/27\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.234.192/27\",\r\n \"40.77.234.224/27\",\r\n \"40.77.235.0/24\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.32/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.236.96/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.236.160/28\",\r\n
+ \ \"40.77.236.176/28\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.237.128/25\",\r\n \"40.77.240.0/25\",\r\n
+ \ \"40.77.240.128/25\",\r\n \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n
+ \ \"40.77.245.0/24\",\r\n \"40.77.246.0/24\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.248.128/25\",\r\n \"40.77.249.0/24\",\r\n
+ \ \"40.77.250.0/24\",\r\n \"40.77.251.0/24\",\r\n \"40.77.252.0/23\",\r\n
+ \ \"40.77.254.0/26\",\r\n \"40.77.254.128/25\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.77.255.128/26\",\r\n \"40.77.255.192/26\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.128.0/18\",\r\n \"40.78.192.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.0/28\",\r\n \"40.78.208.16/28\",\r\n \"40.78.208.32/30\",\r\n
+ \ \"40.78.208.48/28\",\r\n \"40.78.208.64/28\",\r\n \"40.78.209.0/24\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.78.211.0/24\",\r\n \"40.78.212.0/24\",\r\n
+ \ \"40.78.214.0/24\",\r\n \"40.78.216.0/24\",\r\n \"40.78.217.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.78.219.0/24\",\r\n \"40.78.220.0/24\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.78.222.0/24\",\r\n \"40.78.223.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.78.232.0/21\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n \"40.79.8.32/28\",\r\n
+ \ \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n \"40.79.9.0/24\",\r\n
+ \ \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n \"40.79.48.0/27\",\r\n
+ \ \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n \"40.79.56.0/21\",\r\n
+ \ \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n \"40.79.88.0/27\",\r\n
+ \ \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n \"40.79.90.0/24\",\r\n
+ \ \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n \"40.79.93.0/28\",\r\n
+ \ \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n \"40.79.96.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.152.0/21\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.176.0/21\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.201.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.79.203.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.79.204.192/26\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n \"40.79.205.240/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.79.206.32/27\",\r\n \"40.79.206.64/27\",\r\n
+ \ \"40.79.206.96/27\",\r\n \"40.79.206.128/27\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.206.224/27\",\r\n \"40.79.207.0/27\",\r\n
+ \ \"40.79.207.32/27\",\r\n \"40.79.207.64/28\",\r\n \"40.79.207.80/28\",\r\n
+ \ \"40.79.207.96/27\",\r\n \"40.79.207.128/25\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.79.210.0/24\",\r\n \"40.79.211.0/24\",\r\n
+ \ \"40.79.212.0/24\",\r\n \"40.79.213.0/24\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.79.216.0/24\",\r\n \"40.79.217.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.79.219.0/24\",\r\n \"40.79.220.0/24\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.79.222.0/24\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.79.232.0/21\",\r\n \"40.79.240.0/20\",\r\n \"40.80.0.0/22\",\r\n
+ \ \"40.80.4.0/22\",\r\n \"40.80.12.0/22\",\r\n \"40.80.16.0/22\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.24.0/22\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.36.0/22\",\r\n \"40.80.40.0/22\",\r\n \"40.80.44.0/22\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.56.0/21\",\r\n \"40.80.64.0/19\",\r\n
+ \ \"40.80.96.0/20\",\r\n \"40.80.144.0/21\",\r\n \"40.80.152.0/21\",\r\n
+ \ \"40.80.160.0/24\",\r\n \"40.80.168.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.80.184.0/21\",\r\n \"40.80.192.0/19\",\r\n \"40.80.224.0/20\",\r\n
+ \ \"40.80.240.0/20\",\r\n \"40.81.0.0/20\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.81.48.0/20\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.81.96.0/20\",\r\n \"40.81.112.0/20\",\r\n
+ \ \"40.81.128.0/19\",\r\n \"40.81.160.0/20\",\r\n \"40.81.176.0/20\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.81.224.0/19\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.82.4.0/22\",\r\n \"40.82.8.0/22\",\r\n \"40.82.16.0/22\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.24.0/22\",\r\n \"40.82.28.0/22\",\r\n
+ \ \"40.82.32.0/22\",\r\n \"40.82.36.0/22\",\r\n \"40.82.44.0/22\",\r\n
+ \ \"40.82.48.0/22\",\r\n \"40.82.52.0/22\",\r\n \"40.82.60.0/22\",\r\n
+ \ \"40.82.64.0/22\",\r\n \"40.82.68.0/22\",\r\n \"40.82.72.0/22\",\r\n
+ \ \"40.82.84.0/22\",\r\n \"40.82.88.0/22\",\r\n \"40.82.92.0/22\",\r\n
+ \ \"40.82.96.0/22\",\r\n \"40.82.100.0/22\",\r\n \"40.82.116.0/22\",\r\n
+ \ \"40.82.120.0/22\",\r\n \"40.82.128.0/19\",\r\n \"40.82.160.0/19\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.82.224.0/20\",\r\n \"40.82.240.0/22\",\r\n
+ \ \"40.82.244.0/22\",\r\n \"40.82.248.0/21\",\r\n \"40.83.0.0/20\",\r\n
+ \ \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n \"40.83.24.64/27\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.83.64.0/18\",\r\n \"40.83.128.0/17\",\r\n \"40.84.0.0/17\",\r\n
+ \ \"40.84.128.0/17\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.85.144.0/20\",\r\n \"40.85.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.86.128.0/19\",\r\n \"40.86.160.0/19\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.87.0.0/17\",\r\n \"40.87.128.0/19\",\r\n
+ \ \"40.87.160.0/22\",\r\n \"40.87.164.0/22\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.4/30\",\r\n \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n
+ \ \"40.87.168.32/29\",\r\n \"40.87.168.40/29\",\r\n \"40.87.168.48/28\",\r\n
+ \ \"40.87.168.64/30\",\r\n \"40.87.168.68/31\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.208/31\",\r\n
+ \ \"40.87.168.210/31\",\r\n \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n
+ \ \"40.87.168.224/27\",\r\n \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n
+ \ \"40.87.169.40/30\",\r\n \"40.87.169.44/30\",\r\n \"40.87.169.48/29\",\r\n
+ \ \"40.87.169.56/31\",\r\n \"40.87.169.58/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.98/31\",\r\n
+ \ \"40.87.169.100/31\",\r\n \"40.87.169.102/31\",\r\n \"40.87.169.104/29\",\r\n
+ \ \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n \"40.87.169.136/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.144/28\",\r\n
+ \ \"40.87.169.160/27\",\r\n \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n
+ \ \"40.87.170.128/28\",\r\n \"40.87.170.144/31\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.188/30\",\r\n
+ \ \"40.87.170.192/31\",\r\n \"40.87.170.194/31\",\r\n \"40.87.170.196/30\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n \"40.87.170.220/30\",\r\n
+ \ \"40.87.170.224/30\",\r\n \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n
+ \ \"40.87.170.240/29\",\r\n \"40.87.170.248/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.32/30\",\r\n
+ \ \"40.87.171.36/30\",\r\n \"40.87.171.40/31\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n \"40.87.171.96/27\",\r\n
+ \ \"40.87.171.128/28\",\r\n \"40.87.172.0/22\",\r\n \"40.87.176.0/25\",\r\n
+ \ \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n \"40.87.176.174/31\",\r\n
+ \ \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n \"40.87.176.216/29\",\r\n
+ \ \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n \"40.87.176.240/28\",\r\n
+ \ \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n \"40.87.177.64/27\",\r\n
+ \ \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n \"40.87.177.120/31\",\r\n
+ \ \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n \"40.87.177.144/29\",\r\n
+ \ \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n \"40.87.177.160/27\",\r\n
+ \ \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n \"40.87.177.212/30\",\r\n
+ \ \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n \"40.87.178.0/26\",\r\n
+ \ \"40.87.178.64/29\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n \"40.87.180.12/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n \"40.87.180.28/30\",\r\n
+ \ \"40.87.180.32/29\",\r\n \"40.87.180.40/31\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n \"40.87.180.74/31\",\r\n
+ \ \"40.87.180.76/30\",\r\n \"40.87.182.0/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.24/29\",\r\n
+ \ \"40.87.182.32/28\",\r\n \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n
+ \ \"40.87.182.60/31\",\r\n \"40.87.182.62/31\",\r\n \"40.87.182.64/26\",\r\n
+ \ \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n \"40.87.183.16/29\",\r\n
+ \ \"40.87.183.24/30\",\r\n \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n
+ \ \"40.87.183.34/31\",\r\n \"40.87.183.36/30\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n \"40.87.183.48/30\",\r\n
+ \ \"40.87.183.52/31\",\r\n \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n
+ \ \"40.87.183.64/26\",\r\n \"40.87.183.128/28\",\r\n \"40.87.183.144/28\",\r\n
+ \ \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n \"40.87.183.224/29\",\r\n
+ \ \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n \"40.87.183.238/31\",\r\n
+ \ \"40.87.183.240/30\",\r\n \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n
+ \ \"40.87.184.0/22\",\r\n \"40.87.188.0/22\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.87.196.0/22\",\r\n \"40.87.200.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.87.208.0/22\",\r\n \"40.87.212.0/22\",\r\n \"40.87.216.0/22\",\r\n
+ \ \"40.87.220.0/22\",\r\n \"40.87.224.0/22\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.88.0.0/16\",\r\n \"40.89.0.0/19\",\r\n
+ \ \"40.89.32.0/19\",\r\n \"40.89.64.0/18\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.89.192.0/19\",\r\n \"40.89.224.0/19\",\r\n \"40.90.16.0/27\",\r\n
+ \ \"40.90.16.64/27\",\r\n \"40.90.16.96/27\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.16.192/26\",\r\n \"40.90.17.0/27\",\r\n
+ \ \"40.90.17.32/27\",\r\n \"40.90.17.64/27\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.17.128/28\",\r\n \"40.90.17.144/28\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.17.192/27\",\r\n \"40.90.17.224/27\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.18.64/26\",\r\n \"40.90.18.128/26\",\r\n
+ \ \"40.90.18.192/26\",\r\n \"40.90.19.0/27\",\r\n \"40.90.19.32/27\",\r\n
+ \ \"40.90.19.64/26\",\r\n \"40.90.19.128/25\",\r\n \"40.90.20.0/25\",\r\n
+ \ \"40.90.20.128/25\",\r\n \"40.90.21.0/25\",\r\n \"40.90.21.128/25\",\r\n
+ \ \"40.90.22.0/25\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.0/25\",\r\n \"40.90.24.128/25\",\r\n
+ \ \"40.90.25.0/26\",\r\n \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.26.0/26\",\r\n \"40.90.26.64/26\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.27.0/26\",\r\n \"40.90.27.64/26\",\r\n
+ \ \"40.90.27.128/26\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.28.192/26\",\r\n
+ \ \"40.90.29.0/26\",\r\n \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.30.0/25\",\r\n \"40.90.30.128/27\",\r\n
+ \ \"40.90.30.160/27\",\r\n \"40.90.30.192/26\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.31.96/27\",\r\n \"40.90.31.128/25\",\r\n \"40.90.128.0/28\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.128.48/28\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.128.80/28\",\r\n \"40.90.128.96/28\",\r\n \"40.90.128.112/28\",\r\n
+ \ \"40.90.128.128/28\",\r\n \"40.90.128.144/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.128.176/28\",\r\n \"40.90.128.192/28\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.128.240/28\",\r\n \"40.90.129.48/28\",\r\n
+ \ \"40.90.129.96/27\",\r\n \"40.90.129.128/26\",\r\n \"40.90.129.192/27\",\r\n
+ \ \"40.90.129.224/27\",\r\n \"40.90.130.0/27\",\r\n \"40.90.130.32/28\",\r\n
+ \ \"40.90.130.48/28\",\r\n \"40.90.130.64/28\",\r\n \"40.90.130.80/28\",\r\n
+ \ \"40.90.130.96/28\",\r\n \"40.90.130.112/28\",\r\n \"40.90.130.128/28\",\r\n
+ \ \"40.90.130.144/28\",\r\n \"40.90.130.160/27\",\r\n \"40.90.130.192/28\",\r\n
+ \ \"40.90.130.208/28\",\r\n \"40.90.130.224/28\",\r\n \"40.90.130.240/28\",\r\n
+ \ \"40.90.131.0/27\",\r\n \"40.90.131.32/27\",\r\n \"40.90.131.64/27\",\r\n
+ \ \"40.90.131.96/27\",\r\n \"40.90.131.128/27\",\r\n \"40.90.131.160/27\",\r\n
+ \ \"40.90.131.192/27\",\r\n \"40.90.131.224/27\",\r\n \"40.90.132.0/27\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.132.48/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.132.96/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.132.192/26\",\r\n \"40.90.133.0/27\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.133.96/28\",\r\n \"40.90.133.112/28\",\r\n
+ \ \"40.90.133.128/28\",\r\n \"40.90.133.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.133.192/26\",\r\n \"40.90.134.0/26\",\r\n \"40.90.134.64/26\",\r\n
+ \ \"40.90.134.128/26\",\r\n \"40.90.134.192/26\",\r\n \"40.90.135.0/26\",\r\n
+ \ \"40.90.135.64/26\",\r\n \"40.90.135.128/25\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.136.160/28\",\r\n \"40.90.136.176/28\",\r\n
+ \ \"40.90.136.192/27\",\r\n \"40.90.136.224/27\",\r\n \"40.90.137.0/27\",\r\n
+ \ \"40.90.137.32/27\",\r\n \"40.90.137.64/27\",\r\n \"40.90.137.96/27\",\r\n
+ \ \"40.90.137.128/27\",\r\n \"40.90.137.160/27\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.137.224/27\",\r\n \"40.90.138.0/27\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.138.96/27\",\r\n \"40.90.138.128/27\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.138.192/28\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.90.139.0/27\",\r\n \"40.90.139.32/27\",\r\n
+ \ \"40.90.139.64/27\",\r\n \"40.90.139.96/27\",\r\n \"40.90.139.128/27\",\r\n
+ \ \"40.90.139.160/27\",\r\n \"40.90.139.192/27\",\r\n \"40.90.139.224/27\",\r\n
+ \ \"40.90.140.0/27\",\r\n \"40.90.140.32/27\",\r\n \"40.90.140.64/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.128/27\",\r\n \"40.90.140.160/27\",\r\n
+ \ \"40.90.140.192/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.64/27\",\r\n \"40.90.141.96/27\",\r\n
+ \ \"40.90.141.128/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.32/27\",\r\n \"40.90.142.64/27\",\r\n
+ \ \"40.90.142.96/27\",\r\n \"40.90.142.128/27\",\r\n \"40.90.142.160/27\",\r\n
+ \ \"40.90.142.192/28\",\r\n \"40.90.142.208/28\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.142.240/28\",\r\n \"40.90.143.0/27\",\r\n \"40.90.143.32/27\",\r\n
+ \ \"40.90.143.64/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.143.128/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.143.192/26\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.32/27\",\r\n \"40.90.144.64/26\",\r\n \"40.90.144.128/26\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.144.224/27\",\r\n \"40.90.145.0/27\",\r\n
+ \ \"40.90.145.32/27\",\r\n \"40.90.145.64/27\",\r\n \"40.90.145.96/27\",\r\n
+ \ \"40.90.145.128/27\",\r\n \"40.90.145.160/27\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"40.90.145.224/27\",\r\n \"40.90.146.0/28\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.32/27\",\r\n \"40.90.146.64/26\",\r\n \"40.90.146.128/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.192/27\",\r\n \"40.90.146.224/27\",\r\n
+ \ \"40.90.147.0/27\",\r\n \"40.90.147.32/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.147.96/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.90.147.224/27\",\r\n \"40.90.148.0/26\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.148.96/27\",\r\n \"40.90.148.128/27\",\r\n \"40.90.148.160/28\",\r\n
+ \ \"40.90.148.176/28\",\r\n \"40.90.148.192/27\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.149.0/27\",\r\n \"40.90.149.32/27\",\r\n \"40.90.149.64/27\",\r\n
+ \ \"40.90.149.96/27\",\r\n \"40.90.149.128/25\",\r\n \"40.90.150.0/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.90.150.128/25\",\r\n \"40.90.151.0/26\",\r\n \"40.90.151.64/27\",\r\n
+ \ \"40.90.151.96/27\",\r\n \"40.90.151.128/28\",\r\n \"40.90.151.144/28\",\r\n
+ \ \"40.90.151.160/27\",\r\n \"40.90.151.224/27\",\r\n \"40.90.152.0/25\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.90.152.160/27\",\r\n \"40.90.152.192/27\",\r\n
+ \ \"40.90.152.224/27\",\r\n \"40.90.153.0/26\",\r\n \"40.90.153.64/27\",\r\n
+ \ \"40.90.153.96/27\",\r\n \"40.90.153.128/25\",\r\n \"40.90.154.0/26\",\r\n
+ \ \"40.90.154.64/26\",\r\n \"40.90.154.128/26\",\r\n \"40.90.154.192/26\",\r\n
+ \ \"40.90.155.0/26\",\r\n \"40.90.155.64/26\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.155.192/26\",\r\n \"40.90.156.0/26\",\r\n \"40.90.156.64/27\",\r\n
+ \ \"40.90.156.96/27\",\r\n \"40.90.156.128/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.157.0/27\",\r\n \"40.90.157.32/27\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.157.192/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.90.158.0/26\",\r\n \"40.90.158.64/26\",\r\n \"40.90.158.128/25\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.90.160.0/19\",\r\n \"40.90.192.0/19\",\r\n
+ \ \"40.90.224.0/19\",\r\n \"40.91.0.0/22\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.91.12.0/28\",\r\n \"40.91.12.16/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n
+ \ \"40.91.13.128/27\",\r\n \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n
+ \ \"40.91.16.0/22\",\r\n \"40.91.20.0/22\",\r\n \"40.91.24.0/22\",\r\n
+ \ \"40.91.28.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.91.64.0/18\",\r\n
+ \ \"40.91.160.0/19\",\r\n \"40.91.192.0/18\",\r\n \"40.93.0.0/23\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.3.0/24\",\r\n \"40.93.4.0/24\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.93.6.0/24\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.93.8.0/24\",\r\n \"40.96.46.0/24\",\r\n \"40.96.52.0/24\",\r\n
+ \ \"40.96.55.0/24\",\r\n \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.112.36.0/25\",\r\n \"40.112.36.128/25\",\r\n
+ \ \"40.112.37.0/26\",\r\n \"40.112.37.64/26\",\r\n \"40.112.37.128/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.112.38.192/26\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.112.48.0/20\",\r\n \"40.112.64.0/19\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.112.128.0/17\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.113.192.0/18\",\r\n \"40.114.0.0/17\",\r\n \"40.114.128.0/17\",\r\n
+ \ \"40.115.0.0/18\",\r\n \"40.115.64.0/19\",\r\n \"40.115.96.0/19\",\r\n
+ \ \"40.115.128.0/17\",\r\n \"40.116.0.0/16\",\r\n \"40.117.0.0/19\",\r\n
+ \ \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n \"40.117.128.0/17\",\r\n
+ \ \"40.118.0.0/17\",\r\n \"40.118.128.0/17\",\r\n \"40.119.0.0/18\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.119.68.0/22\",\r\n \"40.119.72.0/22\",\r\n
+ \ \"40.119.76.0/22\",\r\n \"40.119.80.0/22\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.119.92.0/22\",\r\n \"40.119.96.0/22\",\r\n \"40.119.104.0/22\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.119.128.0/19\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.119.192.0/18\",\r\n \"40.120.0.0/20\",\r\n \"40.120.16.0/20\",\r\n
+ \ \"40.120.32.0/19\",\r\n \"40.120.64.0/18\",\r\n \"40.121.0.0/16\",\r\n
+ \ \"40.122.0.0/20\",\r\n \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n
+ \ \"40.122.64.0/18\",\r\n \"40.122.128.0/17\",\r\n \"40.123.0.0/17\",\r\n
+ \ \"40.123.128.0/22\",\r\n \"40.123.132.0/22\",\r\n \"40.123.136.0/24\",\r\n
+ \ \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.124.0.0/16\",\r\n \"40.125.0.0/19\",\r\n \"40.125.32.0/19\",\r\n
+ \ \"40.125.64.0/18\",\r\n \"40.126.0.0/24\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.3.0/24\",\r\n \"40.126.4.0/24\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.6.0/24\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.8.0/24\",\r\n \"40.126.9.0/24\",\r\n \"40.126.10.0/25\",\r\n
+ \ \"40.126.10.128/25\",\r\n \"40.126.11.0/25\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.12.0/25\",\r\n \"40.126.12.128/25\",\r\n \"40.126.13.0/25\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.14.0/25\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.15.128/25\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.16.128/25\",\r\n \"40.126.17.0/25\",\r\n \"40.126.17.128/25\",\r\n
+ \ \"40.126.18.0/25\",\r\n \"40.126.18.128/25\",\r\n \"40.126.19.0/25\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.20.0/25\",\r\n \"40.126.20.128/25\",\r\n
+ \ \"40.126.21.0/24\",\r\n \"40.126.22.0/24\",\r\n \"40.126.23.0/24\",\r\n
+ \ \"40.126.24.0/24\",\r\n \"40.126.25.0/24\",\r\n \"40.126.26.0/24\",\r\n
+ \ \"40.126.27.0/24\",\r\n \"40.126.28.0/24\",\r\n \"40.126.29.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"40.126.31.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"40.126.34.0/24\",\r\n \"40.126.35.0/24\",\r\n
+ \ \"40.126.36.0/24\",\r\n \"40.126.37.0/24\",\r\n \"40.126.38.0/24\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.40.0/24\",\r\n \"40.126.41.0/24\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"40.126.43.0/24\",\r\n \"40.126.44.0/24\",\r\n
+ \ \"40.126.45.0/24\",\r\n \"40.126.46.0/24\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"40.126.48.0/24\",\r\n \"40.126.49.0/24\",\r\n \"40.126.50.0/24\",\r\n
+ \ \"40.126.51.0/24\",\r\n \"40.126.52.0/24\",\r\n \"40.126.55.0/24\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.57.0/24\",\r\n \"40.126.58.0/24\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.60.0/24\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.61.64/26\",\r\n \"40.126.61.128/26\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.126.62.64/26\",\r\n \"40.126.128.0/18\",\r\n
+ \ \"40.126.192.0/24\",\r\n \"40.126.193.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"40.126.195.0/24\",\r\n \"40.126.197.0/24\",\r\n \"40.126.198.0/24\",\r\n
+ \ \"40.126.200.0/24\",\r\n \"40.126.201.0/24\",\r\n \"40.126.207.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"40.126.224.0/19\",\r\n \"40.127.0.0/19\",\r\n
+ \ \"40.127.64.0/19\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.11.0.0/18\",\r\n \"51.11.64.0/19\",\r\n \"51.11.96.0/19\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.11.192.0/18\",\r\n \"51.13.0.0/17\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.103.0.0/17\",\r\n \"51.103.128.0/18\",\r\n
+ \ \"51.103.192.0/27\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.104.0.0/19\",\r\n \"51.104.32.0/19\",\r\n \"51.104.64.0/18\",\r\n
+ \ \"51.104.128.0/18\",\r\n \"51.104.192.0/18\",\r\n \"51.105.0.0/18\",\r\n
+ \ \"51.105.64.0/20\",\r\n \"51.105.80.0/21\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.107.0.0/18\",\r\n
+ \ \"51.107.64.0/19\",\r\n \"51.107.96.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n \"51.107.160.0/20\",\r\n
+ \ \"51.107.192.0/21\",\r\n \"51.107.200.0/21\",\r\n \"51.107.208.0/20\",\r\n
+ \ \"51.107.224.0/20\",\r\n \"51.107.240.0/21\",\r\n \"51.107.248.0/21\",\r\n
+ \ \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.200.0/21\",\r\n
+ \ \"51.116.208.0/20\",\r\n \"51.116.224.0/19\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n \"51.120.208.0/21\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"51.120.232.0/21\",\r\n
+ \ \"51.120.240.0/20\",\r\n \"51.124.0.0/17\",\r\n \"51.124.128.0/18\",\r\n
+ \ \"51.132.0.0/18\",\r\n \"51.132.64.0/18\",\r\n \"51.132.128.0/17\",\r\n
+ \ \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n \"51.137.128.0/18\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.138.128.0/19\",\r\n
+ \ \"51.138.160.0/21\",\r\n \"51.138.192.0/19\",\r\n \"51.140.0.0/17\",\r\n
+ \ \"51.140.128.0/18\",\r\n \"51.140.192.0/18\",\r\n \"51.141.0.0/17\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.32/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.32/27\",\r\n
+ \ \"51.141.129.64/26\",\r\n \"51.141.129.128/26\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"51.141.134.0/24\",\r\n \"51.141.135.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"51.141.156.0/22\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.141.192.0/18\",\r\n \"51.142.0.0/17\",\r\n \"51.142.128.0/17\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"51.143.128.0/18\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"51.143.208.0/20\",\r\n
+ \ \"51.143.224.0/19\",\r\n \"51.144.0.0/16\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.0.0/22\",\r\n
+ \ \"52.101.4.0/22\",\r\n \"52.101.8.0/24\",\r\n \"52.101.9.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.11.0/24\",\r\n \"52.101.12.0/22\",\r\n
+ \ \"52.101.16.0/22\",\r\n \"52.101.20.0/22\",\r\n \"52.101.24.0/22\",\r\n
+ \ \"52.101.28.0/22\",\r\n \"52.101.32.0/22\",\r\n \"52.101.36.0/22\",\r\n
+ \ \"52.101.40.0/24\",\r\n \"52.101.41.0/24\",\r\n \"52.101.42.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.129.0/24\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.102.131.0/24\",\r\n \"52.102.132.0/24\",\r\n \"52.102.133.0/24\",\r\n
+ \ \"52.102.134.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.102.159.0/24\",\r\n
+ \ \"52.103.0.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.2.0/24\",\r\n
+ \ \"52.103.3.0/24\",\r\n \"52.103.4.0/24\",\r\n \"52.103.5.0/24\",\r\n
+ \ \"52.103.6.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.128.0/24\",\r\n \"52.103.129.0/24\",\r\n \"52.103.130.0/24\",\r\n
+ \ \"52.103.131.0/24\",\r\n \"52.103.132.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.0.0/21\",\r\n \"52.108.16.0/21\",\r\n
+ \ \"52.108.24.0/21\",\r\n \"52.108.32.0/22\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.40.0/23\",\r\n \"52.108.42.0/23\",\r\n \"52.108.44.0/23\",\r\n
+ \ \"52.108.46.0/23\",\r\n \"52.108.48.0/23\",\r\n \"52.108.50.0/23\",\r\n
+ \ \"52.108.52.0/23\",\r\n \"52.108.54.0/23\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.68.0/23\",\r\n \"52.108.70.0/23\",\r\n \"52.108.72.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.74.0/24\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.76.0/24\",\r\n \"52.108.77.0/24\",\r\n \"52.108.78.0/24\",\r\n
+ \ \"52.108.79.0/24\",\r\n \"52.108.80.0/24\",\r\n \"52.108.81.0/24\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.83.0/24\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.108.85.0/24\",\r\n \"52.108.86.0/24\",\r\n \"52.108.87.0/24\",\r\n
+ \ \"52.108.88.0/24\",\r\n \"52.108.89.0/24\",\r\n \"52.108.90.0/24\",\r\n
+ \ \"52.108.91.0/24\",\r\n \"52.108.92.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.108.94.0/24\",\r\n \"52.108.95.0/24\",\r\n \"52.108.96.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.108.108.0/23\",\r\n
+ \ \"52.108.110.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.108.113.0/24\",\r\n \"52.108.116.0/24\",\r\n \"52.108.128.0/24\",\r\n
+ \ \"52.108.137.0/24\",\r\n \"52.108.138.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.177.0/24\",\r\n \"52.108.178.0/24\",\r\n
+ \ \"52.108.179.0/24\",\r\n \"52.108.180.0/24\",\r\n \"52.108.181.0/24\",\r\n
+ \ \"52.108.182.0/24\",\r\n \"52.108.183.0/24\",\r\n \"52.108.184.0/24\",\r\n
+ \ \"52.108.185.0/24\",\r\n \"52.108.186.0/24\",\r\n \"52.108.187.0/24\",\r\n
+ \ \"52.108.188.0/24\",\r\n \"52.108.189.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.191.0/24\",\r\n \"52.108.192.0/24\",\r\n \"52.108.193.0/24\",\r\n
+ \ \"52.108.194.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.196.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.198.0/24\",\r\n \"52.108.199.0/24\",\r\n
+ \ \"52.108.200.0/24\",\r\n \"52.108.201.0/24\",\r\n \"52.108.202.0/24\",\r\n
+ \ \"52.108.203.0/24\",\r\n \"52.108.204.0/23\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.208.0/21\",\r\n \"52.108.216.0/22\",\r\n \"52.108.220.0/23\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.108.224.0/23\",\r\n \"52.108.226.0/23\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.108.230.0/23\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.108.236.0/22\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.108.248.0/21\",\r\n \"52.109.0.0/22\",\r\n \"52.109.4.0/22\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.109.12.0/22\",\r\n \"52.109.16.0/22\",\r\n
+ \ \"52.109.20.0/22\",\r\n \"52.109.24.0/22\",\r\n \"52.109.28.0/22\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.109.36.0/22\",\r\n \"52.109.40.0/22\",\r\n
+ \ \"52.109.44.0/22\",\r\n \"52.109.48.0/22\",\r\n \"52.109.52.0/22\",\r\n
+ \ \"52.109.56.0/22\",\r\n \"52.109.60.0/22\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.109.72.0/22\",\r\n \"52.109.76.0/22\",\r\n
+ \ \"52.109.86.0/23\",\r\n \"52.109.88.0/22\",\r\n \"52.109.92.0/22\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.109.100.0/23\",\r\n \"52.109.102.0/23\",\r\n
+ \ \"52.109.104.0/23\",\r\n \"52.109.108.0/22\",\r\n \"52.109.112.0/22\",\r\n
+ \ \"52.109.116.0/22\",\r\n \"52.109.120.0/22\",\r\n \"52.109.124.0/22\",\r\n
+ \ \"52.109.128.0/22\",\r\n \"52.109.132.0/22\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.109.140.0/22\",\r\n \"52.109.144.0/23\",\r\n \"52.109.150.0/23\",\r\n
+ \ \"52.109.152.0/23\",\r\n \"52.109.156.0/23\",\r\n \"52.109.158.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.109.162.0/23\",\r\n \"52.109.164.0/24\",\r\n
+ \ \"52.111.194.0/24\",\r\n \"52.111.197.0/24\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.111.202.0/24\",\r\n \"52.111.203.0/24\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.111.205.0/24\",\r\n \"52.111.206.0/24\",\r\n \"52.111.207.0/24\",\r\n
+ \ \"52.111.224.0/24\",\r\n \"52.111.225.0/24\",\r\n \"52.111.226.0/24\",\r\n
+ \ \"52.111.227.0/24\",\r\n \"52.111.228.0/24\",\r\n \"52.111.229.0/24\",\r\n
+ \ \"52.111.230.0/24\",\r\n \"52.111.231.0/24\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.111.233.0/24\",\r\n \"52.111.234.0/24\",\r\n \"52.111.235.0/24\",\r\n
+ \ \"52.111.236.0/24\",\r\n \"52.111.237.0/24\",\r\n \"52.111.238.0/24\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.111.240.0/24\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.111.242.0/24\",\r\n \"52.111.243.0/24\",\r\n \"52.111.244.0/24\",\r\n
+ \ \"52.111.245.0/24\",\r\n \"52.111.246.0/24\",\r\n \"52.111.247.0/24\",\r\n
+ \ \"52.111.248.0/24\",\r\n \"52.111.249.0/24\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.111.251.0/24\",\r\n \"52.111.252.0/24\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.111.254.0/24\",\r\n \"52.111.255.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.24.0/21\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.83.0/24\",\r\n \"52.112.88.0/22\",\r\n
+ \ \"52.112.93.0/24\",\r\n \"52.112.94.0/24\",\r\n \"52.112.95.0/24\",\r\n
+ \ \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.105.0/24\",\r\n \"52.112.106.0/23\",\r\n \"52.112.108.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.110.0/23\",\r\n \"52.112.112.0/24\",\r\n
+ \ \"52.112.113.0/24\",\r\n \"52.112.114.0/24\",\r\n \"52.112.115.0/24\",\r\n
+ \ \"52.112.116.0/24\",\r\n \"52.112.117.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.112.144.0/20\",\r\n \"52.112.168.0/22\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.112.190.0/24\",\r\n
+ \ \"52.112.191.0/24\",\r\n \"52.112.197.0/24\",\r\n \"52.112.200.0/22\",\r\n
+ \ \"52.112.204.0/23\",\r\n \"52.112.206.0/24\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.229.0/24\",\r\n \"52.112.230.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.233.0/24\",\r\n
+ \ \"52.112.236.0/24\",\r\n \"52.112.237.0/24\",\r\n \"52.112.238.0/24\",\r\n
+ \ \"52.112.240.0/20\",\r\n \"52.113.9.0/24\",\r\n \"52.113.10.0/23\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.14.0/24\",\r\n \"52.113.15.0/24\",\r\n
+ \ \"52.113.16.0/20\",\r\n \"52.113.37.0/24\",\r\n \"52.113.40.0/21\",\r\n
+ \ \"52.113.48.0/20\",\r\n \"52.113.70.0/23\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.76.0/23\",\r\n \"52.113.78.0/23\",\r\n \"52.113.83.0/24\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.88.0/22\",\r\n \"52.113.92.0/22\",\r\n
+ \ \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.103.0/24\",\r\n \"52.113.104.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.113.107.0/24\",\r\n
+ \ \"52.113.108.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.110.0/23\",\r\n
+ \ \"52.113.112.0/20\",\r\n \"52.113.128.0/24\",\r\n \"52.113.129.0/24\",\r\n
+ \ \"52.113.130.0/24\",\r\n \"52.113.131.0/24\",\r\n \"52.113.132.0/24\",\r\n
+ \ \"52.113.133.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.113.136.0/21\",\r\n
+ \ \"52.113.144.0/21\",\r\n \"52.113.160.0/19\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.113.193.0/24\",\r\n \"52.113.198.0/24\",\r\n \"52.113.199.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.205.0/24\",\r\n
+ \ \"52.113.206.0/24\",\r\n \"52.113.207.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.113.224.0/19\",\r\n \"52.114.0.0/21\",\r\n \"52.114.8.0/21\",\r\n
+ \ \"52.114.16.0/22\",\r\n \"52.114.20.0/22\",\r\n \"52.114.24.0/22\",\r\n
+ \ \"52.114.28.0/22\",\r\n \"52.114.32.0/22\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.114.40.0/22\",\r\n \"52.114.44.0/22\",\r\n \"52.114.48.0/22\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.60.0/23\",\r\n \"52.114.64.0/21\",\r\n
+ \ \"52.114.72.0/22\",\r\n \"52.114.76.0/22\",\r\n \"52.114.80.0/22\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.88.0/22\",\r\n \"52.114.92.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.104.0/22\",\r\n \"52.114.108.0/22\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.116.0/22\",\r\n \"52.114.120.0/22\",\r\n
+ \ \"52.114.128.0/22\",\r\n \"52.114.132.0/22\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.144.0/22\",\r\n \"52.114.148.0/22\",\r\n \"52.114.152.0/21\",\r\n
+ \ \"52.114.160.0/22\",\r\n \"52.114.164.0/22\",\r\n \"52.114.168.0/22\",\r\n
+ \ \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n \"52.114.180.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.114.186.0/23\",\r\n \"52.114.192.0/23\",\r\n
+ \ \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n \"52.114.200.0/22\",\r\n
+ \ \"52.114.216.0/22\",\r\n \"52.114.224.0/24\",\r\n \"52.114.226.0/24\",\r\n
+ \ \"52.114.228.0/24\",\r\n \"52.114.230.0/24\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.232.0/24\",\r\n \"52.114.233.0/24\",\r\n \"52.114.234.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.114.238.0/24\",\r\n \"52.114.240.0/24\",\r\n
+ \ \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n \"52.114.244.0/24\",\r\n
+ \ \"52.114.248.0/22\",\r\n \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n
+ \ \"52.115.8.0/22\",\r\n \"52.115.16.0/21\",\r\n \"52.115.24.0/22\",\r\n
+ \ \"52.115.32.0/22\",\r\n \"52.115.36.0/23\",\r\n \"52.115.38.0/24\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.47.0/24\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.54.0/24\",\r\n \"52.115.55.0/24\",\r\n
+ \ \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.64.0/22\",\r\n \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n
+ \ \"52.115.76.0/22\",\r\n \"52.115.80.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.115.88.0/22\",\r\n \"52.115.96.0/24\",\r\n \"52.115.97.0/24\",\r\n
+ \ \"52.115.98.0/24\",\r\n \"52.115.99.0/24\",\r\n \"52.115.100.0/22\",\r\n
+ \ \"52.115.104.0/23\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n \"52.115.140.0/22\",\r\n
+ \ \"52.115.144.0/20\",\r\n \"52.115.160.0/19\",\r\n \"52.115.192.0/19\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.64.0/19\",\r\n
+ \ \"52.120.96.0/19\",\r\n \"52.120.128.0/21\",\r\n \"52.120.136.0/21\",\r\n
+ \ \"52.120.144.0/21\",\r\n \"52.120.152.0/22\",\r\n \"52.120.156.0/24\",\r\n
+ \ \"52.120.157.0/24\",\r\n \"52.120.158.0/23\",\r\n \"52.120.160.0/19\",\r\n
+ \ \"52.120.192.0/20\",\r\n \"52.120.208.0/20\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.120.240.0/20\",\r\n \"52.121.0.0/21\",\r\n \"52.121.16.0/21\",\r\n
+ \ \"52.121.24.0/21\",\r\n \"52.121.32.0/22\",\r\n \"52.121.36.0/22\",\r\n
+ \ \"52.121.40.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.121.64.0/20\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.121.100.0/22\",\r\n
+ \ \"52.121.104.0/23\",\r\n \"52.121.106.0/23\",\r\n \"52.121.108.0/22\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.121.116.0/22\",\r\n \"52.121.120.0/23\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.121.128.0/20\",\r\n
+ \ \"52.121.144.0/21\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.123.0.0/24\",\r\n
+ \ \"52.123.1.0/24\",\r\n \"52.123.2.0/24\",\r\n \"52.123.3.0/24\",\r\n
+ \ \"52.123.4.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.125.128.0/22\",\r\n
+ \ \"52.125.132.0/22\",\r\n \"52.125.136.0/24\",\r\n \"52.125.137.0/24\",\r\n
+ \ \"52.125.138.0/23\",\r\n \"52.125.140.0/23\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.16.0/24\",\r\n
+ \ \"52.136.17.0/24\",\r\n \"52.136.18.0/24\",\r\n \"52.136.19.0/24\",\r\n
+ \ \"52.136.20.0/24\",\r\n \"52.136.21.0/24\",\r\n \"52.136.22.0/24\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.24.0/24\",\r\n \"52.136.25.0/24\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.29.0/24\",\r\n \"52.136.30.0/24\",\r\n \"52.136.31.0/24\",\r\n
+ \ \"52.136.32.0/19\",\r\n \"52.136.64.0/18\",\r\n \"52.136.128.0/18\",\r\n
+ \ \"52.136.192.0/18\",\r\n \"52.137.0.0/18\",\r\n \"52.137.64.0/18\",\r\n
+ \ \"52.137.128.0/17\",\r\n \"52.138.0.0/18\",\r\n \"52.138.64.0/20\",\r\n
+ \ \"52.138.80.0/21\",\r\n \"52.138.88.0/21\",\r\n \"52.138.96.0/19\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.139.0.0/18\",\r\n \"52.139.64.0/18\",\r\n
+ \ \"52.139.128.0/18\",\r\n \"52.139.192.0/18\",\r\n \"52.140.0.0/18\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.140.128.0/18\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.141.0.0/18\",\r\n \"52.141.64.0/18\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.141.192.0/19\",\r\n \"52.141.224.0/20\",\r\n \"52.141.240.0/20\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.142.64.0/18\",\r\n \"52.142.128.0/18\",\r\n
+ \ \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n \"52.143.64.0/18\",\r\n
+ \ \"52.143.128.0/18\",\r\n \"52.143.192.0/24\",\r\n \"52.143.193.0/24\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.195.0/24\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.197.0/24\",\r\n \"52.143.198.0/24\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.143.202.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.143.207.0/24\",\r\n
+ \ \"52.143.208.0/24\",\r\n \"52.143.209.0/24\",\r\n \"52.143.210.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.143.212.0/23\",\r\n \"52.143.214.0/24\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.143.218.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.143.221.0/24\",\r\n \"52.143.222.0/23\",\r\n
+ \ \"52.143.224.0/19\",\r\n \"52.146.0.0/17\",\r\n \"52.146.128.0/17\",\r\n
+ \ \"52.147.0.0/19\",\r\n \"52.147.32.0/19\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.147.96.0/19\",\r\n \"52.147.128.0/19\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.148.0.0/18\",\r\n \"52.148.64.0/18\",\r\n
+ \ \"52.148.128.0/18\",\r\n \"52.148.192.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.151.0.0/18\",\r\n \"52.151.64.0/18\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.0.0/17\",\r\n \"52.152.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.153.64.0/18\",\r\n \"52.153.128.0/18\",\r\n
+ \ \"52.153.192.0/18\",\r\n \"52.154.0.0/18\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.154.128.0/17\",\r\n \"52.155.0.0/19\",\r\n \"52.155.32.0/19\",\r\n
+ \ \"52.155.64.0/19\",\r\n \"52.155.96.0/19\",\r\n \"52.155.128.0/17\",\r\n
+ \ \"52.156.0.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.156.64.0/18\",\r\n
+ \ \"52.156.128.0/19\",\r\n \"52.156.160.0/19\",\r\n \"52.156.192.0/18\",\r\n
+ \ \"52.157.0.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.158.0.0/17\",\r\n \"52.158.128.0/19\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.176.0/20\",\r\n \"52.158.192.0/19\",\r\n \"52.158.224.0/19\",\r\n
+ \ \"52.159.0.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.159.128.0/17\",\r\n
+ \ \"52.160.0.0/16\",\r\n \"52.161.0.0/16\",\r\n \"52.162.0.0/16\",\r\n
+ \ \"52.163.0.0/16\",\r\n \"52.164.0.0/16\",\r\n \"52.165.0.0/19\",\r\n
+ \ \"52.165.32.0/20\",\r\n \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n
+ \ \"52.165.56.0/21\",\r\n \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n
+ \ \"52.165.104.0/25\",\r\n \"52.165.104.128/26\",\r\n \"52.165.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.167.0.0/16\",\r\n \"52.168.0.0/16\",\r\n
+ \ \"52.169.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.171.0.0/16\",\r\n
+ \ \"52.172.0.0/17\",\r\n \"52.172.128.0/17\",\r\n \"52.173.0.0/16\",\r\n
+ \ \"52.174.0.0/16\",\r\n \"52.175.0.0/17\",\r\n \"52.175.128.0/18\",\r\n
+ \ \"52.175.192.0/18\",\r\n \"52.176.0.0/17\",\r\n \"52.176.128.0/19\",\r\n
+ \ \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n \"52.176.192.0/19\",\r\n
+ \ \"52.176.224.0/24\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.177.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.178.128.0/17\",\r\n \"52.179.0.0/17\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.180.0.0/17\",\r\n \"52.180.128.0/19\",\r\n \"52.180.160.0/20\",\r\n
+ \ \"52.180.176.0/21\",\r\n \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n
+ \ \"52.180.185.0/24\",\r\n \"52.182.128.0/17\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.183.192.0/18\",\r\n \"52.184.0.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n \"52.184.168.80/28\",\r\n
+ \ \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n \"52.184.169.0/24\",\r\n
+ \ \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n \"52.184.192.0/18\",\r\n
+ \ \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n \"52.185.48.0/21\",\r\n
+ \ \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n \"52.185.56.96/28\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.64/27\",\r\n \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n
+ \ \"52.185.128.0/18\",\r\n \"52.185.192.0/18\",\r\n \"52.186.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.187.192.0/18\",\r\n
+ \ \"52.188.0.0/16\",\r\n \"52.189.0.0/17\",\r\n \"52.189.128.0/18\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.190.0.0/17\",\r\n \"52.190.128.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.128.0/18\",\r\n \"52.191.192.0/18\",\r\n
+ \ \"52.224.0.0/16\",\r\n \"52.225.0.0/17\",\r\n \"52.225.128.0/21\",\r\n
+ \ \"52.225.136.0/27\",\r\n \"52.225.136.32/28\",\r\n \"52.225.136.48/28\",\r\n
+ \ \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n \"52.225.144.0/20\",\r\n
+ \ \"52.225.160.0/19\",\r\n \"52.225.192.0/18\",\r\n \"52.226.0.0/16\",\r\n
+ \ \"52.228.0.0/17\",\r\n \"52.228.128.0/17\",\r\n \"52.229.0.0/18\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.229.128.0/17\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.230.128.0/17\",\r\n \"52.231.0.0/17\",\r\n \"52.231.128.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.128.0/21\",\r\n \"52.232.136.0/21\",\r\n
+ \ \"52.232.144.0/24\",\r\n \"52.232.145.0/24\",\r\n \"52.232.146.0/24\",\r\n
+ \ \"52.232.147.0/24\",\r\n \"52.232.148.0/24\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.232.151.0/24\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.232.153.0/24\",\r\n \"52.232.154.0/24\",\r\n \"52.232.155.0/24\",\r\n
+ \ \"52.232.156.0/24\",\r\n \"52.232.157.0/24\",\r\n \"52.232.158.0/24\",\r\n
+ \ \"52.232.159.0/24\",\r\n \"52.232.160.0/19\",\r\n \"52.232.192.0/18\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.233.64.0/18\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.234.128.0/17\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.235.64.0/18\",\r\n \"52.236.0.0/17\",\r\n \"52.236.128.0/17\",\r\n
+ \ \"52.237.0.0/18\",\r\n \"52.237.64.0/18\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.238.0.0/18\",\r\n \"52.238.192.0/18\",\r\n
+ \ \"52.239.0.0/17\",\r\n \"52.239.128.0/24\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.132.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.135.0/26\",\r\n \"52.239.135.64/26\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.136.0/22\",\r\n \"52.239.140.0/22\",\r\n
+ \ \"52.239.144.0/23\",\r\n \"52.239.146.0/23\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.148.64/26\",\r\n \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n
+ \ \"52.239.150.0/23\",\r\n \"52.239.152.0/22\",\r\n \"52.239.156.0/24\",\r\n
+ \ \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n
+ \ \"52.239.157.224/27\",\r\n \"52.239.158.0/23\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.164.0/25\",\r\n \"52.239.164.128/26\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/22\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.177.0/27\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.184.224/27\",\r\n
+ \ \"52.239.185.0/28\",\r\n \"52.239.185.32/27\",\r\n \"52.239.186.0/24\",\r\n
+ \ \"52.239.187.0/25\",\r\n \"52.239.187.128/25\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.239.190.0/25\",\r\n \"52.239.190.128/26\",\r\n
+ \ \"52.239.190.192/26\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.128/27\",\r\n \"52.239.192.160/27\",\r\n
+ \ \"52.239.192.192/26\",\r\n \"52.239.193.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.196.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.128/27\",\r\n \"52.239.198.192/26\",\r\n
+ \ \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n \"52.239.202.0/24\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.205.0/24\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.207.192/26\",\r\n \"52.239.208.0/23\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.212.0/23\",\r\n \"52.239.214.0/23\",\r\n \"52.239.216.0/23\",\r\n
+ \ \"52.239.218.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"52.239.225.0/24\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.228.0/23\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.239.232.0/25\",\r\n \"52.239.232.128/25\",\r\n
+ \ \"52.239.233.0/25\",\r\n \"52.239.233.128/25\",\r\n \"52.239.234.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.239.238.0/24\",\r\n \"52.239.239.0/24\",\r\n
+ \ \"52.239.240.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.248.0/24\",\r\n
+ \ \"52.239.249.0/24\",\r\n \"52.239.250.0/24\",\r\n \"52.239.251.0/24\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.239.253.0/24\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.240.0.0/17\",\r\n \"52.240.128.0/17\",\r\n \"52.241.0.0/16\",\r\n
+ \ \"52.242.0.0/18\",\r\n \"52.242.64.0/18\",\r\n \"52.242.128.0/17\",\r\n
+ \ \"52.243.32.0/19\",\r\n \"52.243.64.0/18\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.12.0/22\",\r\n \"52.245.16.0/22\",\r\n \"52.245.20.0/22\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.245.28.0/22\",\r\n \"52.245.32.0/22\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.245.40.0/22\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.144/28\",\r\n
+ \ \"52.245.45.160/27\",\r\n \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n
+ \ \"52.245.46.32/28\",\r\n \"52.245.46.48/28\",\r\n \"52.245.46.64/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.245.46.112/28\",\r\n
+ \ \"52.245.46.128/28\",\r\n \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n
+ \ \"52.245.48.0/22\",\r\n \"52.245.52.0/22\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.245.60.0/22\",\r\n \"52.245.64.0/22\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.0/27\",\r\n \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n
+ \ \"52.245.69.96/28\",\r\n \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n
+ \ \"52.245.69.192/26\",\r\n \"52.245.70.0/23\",\r\n \"52.245.72.0/22\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.245.80.0/22\",\r\n \"52.245.84.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"52.245.92.0/22\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.245.100.0/22\",\r\n \"52.245.104.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.245.112.0/22\",\r\n \"52.245.116.0/22\",\r\n \"52.245.120.0/22\",\r\n
+ \ \"52.245.124.0/22\",\r\n \"52.246.0.0/17\",\r\n \"52.246.128.0/20\",\r\n
+ \ \"52.246.152.0/21\",\r\n \"52.246.160.0/19\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.0.0/17\",\r\n \"52.247.192.0/18\",\r\n \"52.248.0.0/17\",\r\n
+ \ \"52.248.128.0/17\",\r\n \"52.249.0.0/18\",\r\n \"52.249.64.0/19\",\r\n
+ \ \"52.249.128.0/17\",\r\n \"52.250.0.0/17\",\r\n \"52.250.128.0/18\",\r\n
+ \ \"52.250.192.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.252.128.0/17\",\r\n \"52.253.0.0/18\",\r\n \"52.253.64.0/20\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"52.253.96.0/19\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"52.253.148.0/23\",\r\n \"52.253.150.0/23\",\r\n \"52.253.152.0/23\",\r\n
+ \ \"52.253.154.0/23\",\r\n \"52.253.156.0/22\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"52.253.162.0/23\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.166.0/24\",\r\n \"52.253.167.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.169.0/24\",\r\n \"52.253.170.0/23\",\r\n \"52.253.172.0/24\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"52.253.175.0/24\",\r\n
+ \ \"52.253.176.0/24\",\r\n \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n
+ \ \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n \"52.253.181.0/24\",\r\n
+ \ \"52.253.185.0/24\",\r\n \"52.253.186.0/24\",\r\n \"52.253.191.0/24\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"52.253.197.0/24\",\r\n \"52.253.224.0/21\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n
+ \ \"52.254.96.0/20\",\r\n \"52.254.112.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"52.255.0.0/19\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"52.255.128.0/17\",\r\n \"64.4.8.0/24\",\r\n
+ \ \"64.4.54.0/24\",\r\n \"65.52.0.0/19\",\r\n \"65.52.32.0/21\",\r\n
+ \ \"65.52.48.0/20\",\r\n \"65.52.64.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.52.111.0/24\",\r\n \"65.52.112.0/20\",\r\n \"65.52.128.0/19\",\r\n
+ \ \"65.52.160.0/19\",\r\n \"65.52.192.0/19\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"65.52.232.0/21\",\r\n \"65.52.240.0/21\",\r\n \"65.52.248.0/21\",\r\n
+ \ \"65.54.19.128/27\",\r\n \"65.54.55.160/27\",\r\n \"65.54.55.224/27\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n
+ \ \"65.55.44.64/27\",\r\n \"65.55.44.96/28\",\r\n \"65.55.44.112/28\",\r\n
+ \ \"65.55.44.128/27\",\r\n \"65.55.51.0/24\",\r\n \"65.55.60.176/29\",\r\n
+ \ \"65.55.60.188/30\",\r\n \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.105.192/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.106.192/28\",\r\n \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n
+ \ \"65.55.106.240/28\",\r\n \"65.55.107.0/28\",\r\n \"65.55.107.48/28\",\r\n
+ \ \"65.55.107.64/27\",\r\n \"65.55.107.96/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.109.0/24\",\r\n \"65.55.110.0/24\",\r\n \"65.55.120.0/24\",\r\n
+ \ \"65.55.144.0/23\",\r\n \"65.55.146.0/24\",\r\n \"65.55.207.0/24\",\r\n
+ \ \"65.55.209.0/25\",\r\n \"65.55.209.128/26\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.211.0/27\",\r\n \"65.55.211.32/27\",\r\n
+ \ \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n \"65.55.213.0/27\",\r\n
+ \ \"65.55.213.64/26\",\r\n \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n
+ \ \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.64/26\",\r\n \"65.55.219.128/25\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.12.0/32\",\r\n \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n
+ \ \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n \"70.37.160.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"102.37.0.0/20\",\r\n
+ \ \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n \"102.37.26.0/27\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.72.0/21\",\r\n \"102.37.80.0/21\",\r\n \"102.37.96.0/19\",\r\n
+ \ \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n \"102.37.192.0/18\",\r\n
+ \ \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n \"102.133.96.0/20\",\r\n
+ \ \"102.133.112.0/28\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.40.128.0/17\",\r\n \"104.41.0.0/18\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.128.0/19\",\r\n \"104.41.160.0/19\",\r\n \"104.41.192.0/18\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.43.0.0/17\",\r\n \"104.43.128.0/17\",\r\n
+ \ \"104.44.88.0/27\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.64/27\",\r\n
+ \ \"104.44.88.96/27\",\r\n \"104.44.88.128/27\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.88.192/27\",\r\n \"104.44.88.224/27\",\r\n \"104.44.89.0/27\",\r\n
+ \ \"104.44.89.32/27\",\r\n \"104.44.89.64/27\",\r\n \"104.44.89.96/27\",\r\n
+ \ \"104.44.89.128/27\",\r\n \"104.44.89.160/27\",\r\n \"104.44.89.192/27\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"104.44.90.0/27\",\r\n \"104.44.90.32/27\",\r\n
+ \ \"104.44.90.64/26\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.90.224/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.91.64/27\",\r\n \"104.44.91.96/27\",\r\n
+ \ \"104.44.91.128/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.91.192/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.92.0/27\",\r\n \"104.44.92.32/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.92.96/27\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.92.160/27\",\r\n \"104.44.92.192/27\",\r\n \"104.44.92.224/27\",\r\n
+ \ \"104.44.93.0/27\",\r\n \"104.44.93.32/27\",\r\n \"104.44.93.64/27\",\r\n
+ \ \"104.44.93.96/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.93.160/27\",\r\n
+ \ \"104.44.93.192/27\",\r\n \"104.44.93.224/27\",\r\n \"104.44.94.0/28\",\r\n
+ \ \"104.44.94.16/28\",\r\n \"104.44.94.32/28\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.44.94.64/28\",\r\n \"104.44.94.80/28\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.44.94.112/28\",\r\n \"104.44.94.128/28\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.94.160/27\",\r\n \"104.44.94.192/28\",\r\n \"104.44.94.208/28\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"104.44.95.0/28\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"104.44.95.32/28\",\r\n \"104.44.95.48/28\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.44.95.112/28\",\r\n
+ \ \"104.44.95.128/27\",\r\n \"104.44.95.160/27\",\r\n \"104.44.95.192/28\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"104.44.95.224/28\",\r\n \"104.44.95.240/28\",\r\n
+ \ \"104.44.128.0/18\",\r\n \"104.45.0.0/18\",\r\n \"104.45.64.0/20\",\r\n
+ \ \"104.45.80.0/20\",\r\n \"104.45.96.0/19\",\r\n \"104.45.128.0/18\",\r\n
+ \ \"104.45.192.0/20\",\r\n \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.8.0/21\",\r\n \"104.46.24.0/22\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.46.32.0/19\",\r\n \"104.46.64.0/19\",\r\n \"104.46.96.0/19\",\r\n
+ \ \"104.46.160.0/19\",\r\n \"104.46.192.0/20\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.47.128.0/18\",\r\n \"104.47.200.0/21\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.47.210.0/23\",\r\n \"104.47.212.0/23\",\r\n
+ \ \"104.47.214.0/23\",\r\n \"104.47.216.64/26\",\r\n \"104.47.218.0/23\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"104.47.224.0/20\",\r\n \"104.208.0.0/19\",\r\n
+ \ \"104.208.32.0/20\",\r\n \"104.208.48.0/20\",\r\n \"104.208.64.0/18\",\r\n
+ \ \"104.208.128.0/17\",\r\n \"104.209.0.0/18\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.209.128.0/17\",\r\n \"104.210.0.0/20\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"104.210.64.0/18\",\r\n \"104.210.128.0/19\",\r\n
+ \ \"104.210.176.0/20\",\r\n \"104.210.192.0/19\",\r\n \"104.211.0.0/18\",\r\n
+ \ \"104.211.64.0/18\",\r\n \"104.211.128.0/18\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"104.214.0.0/17\",\r\n \"104.214.128.0/19\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"104.214.192.0/18\",\r\n \"104.215.0.0/18\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"104.215.128.0/17\",\r\n \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n
+ \ \"111.221.78.0/23\",\r\n \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n
+ \ \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n \"131.253.12.48/29\",\r\n
+ \ \"131.253.12.160/28\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.192/28\",\r\n
+ \ \"131.253.12.208/28\",\r\n \"131.253.12.224/30\",\r\n \"131.253.12.228/30\",\r\n
+ \ \"131.253.12.248/29\",\r\n \"131.253.13.0/28\",\r\n \"131.253.13.16/29\",\r\n
+ \ \"131.253.13.24/29\",\r\n \"131.253.13.32/28\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.96/30\",\r\n \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.32/27\",\r\n \"131.253.14.64/29\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.160/27\",\r\n
+ \ \"131.253.14.192/29\",\r\n \"131.253.14.208/28\",\r\n \"131.253.14.224/28\",\r\n
+ \ \"131.253.14.248/29\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.15.32/27\",\r\n \"131.253.15.192/28\",\r\n \"131.253.15.208/28\",\r\n
+ \ \"131.253.15.224/27\",\r\n \"131.253.24.0/28\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.24.192/26\",\r\n \"131.253.25.0/24\",\r\n \"131.253.27.0/24\",\r\n
+ \ \"131.253.34.224/27\",\r\n \"131.253.35.128/26\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"131.253.36.128/26\",\r\n \"131.253.36.224/27\",\r\n \"131.253.38.0/27\",\r\n
+ \ \"131.253.38.32/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.38.224/27\",\r\n
+ \ \"131.253.40.0/28\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.48/29\",\r\n \"131.253.40.64/28\",\r\n \"131.253.40.80/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.128/27\",\r\n \"131.253.40.160/28\",\r\n
+ \ \"131.253.40.192/26\",\r\n \"131.253.41.0/24\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"134.170.220.0/23\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n \"137.116.96.0/22\",\r\n
+ \ \"137.116.112.0/20\",\r\n \"137.116.128.0/19\",\r\n \"137.116.160.0/20\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"137.116.184.0/21\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.117.0.0/19\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.117.128.0/17\",\r\n \"137.135.0.0/18\",\r\n
+ \ \"137.135.64.0/18\",\r\n \"137.135.128.0/17\",\r\n \"138.91.0.0/20\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"138.91.32.0/20\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"138.91.64.0/19\",\r\n \"138.91.96.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.55.2.128/26\",\r\n \"157.55.3.0/24\",\r\n \"157.55.7.128/26\",\r\n
+ \ \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n \"157.55.10.160/29\",\r\n
+ \ \"157.55.10.176/28\",\r\n \"157.55.10.192/26\",\r\n \"157.55.11.128/25\",\r\n
+ \ \"157.55.12.64/26\",\r\n \"157.55.12.128/26\",\r\n \"157.55.13.64/26\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.24.0/21\",\r\n \"157.55.37.0/24\",\r\n
+ \ \"157.55.38.0/24\",\r\n \"157.55.39.0/24\",\r\n \"157.55.48.0/24\",\r\n
+ \ \"157.55.50.0/25\",\r\n \"157.55.51.224/28\",\r\n \"157.55.55.0/27\",\r\n
+ \ \"157.55.55.32/28\",\r\n \"157.55.55.100/30\",\r\n \"157.55.55.104/29\",\r\n
+ \ \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n
+ \ \"157.55.55.216/29\",\r\n \"157.55.55.228/30\",\r\n \"157.55.55.232/29\",\r\n
+ \ \"157.55.55.240/28\",\r\n \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n
+ \ \"157.55.80.0/21\",\r\n \"157.55.103.32/27\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"157.55.106.0/26\",\r\n \"157.55.106.128/25\",\r\n \"157.55.107.0/24\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n
+ \ \"157.55.136.0/21\",\r\n \"157.55.151.0/28\",\r\n \"157.55.153.224/28\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.55.160.0/20\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"157.55.204.128/25\",\r\n \"157.55.208.0/21\",\r\n \"157.55.248.0/21\",\r\n
+ \ \"157.56.2.0/25\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"157.56.3.128/25\",\r\n \"157.56.8.0/21\",\r\n \"157.56.19.224/27\",\r\n
+ \ \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.80.0/25\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"157.56.160.0/21\",\r\n \"157.56.176.0/21\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.0.0/19\",\r\n \"168.61.32.0/20\",\r\n
+ \ \"168.61.48.0/21\",\r\n \"168.61.56.0/21\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.61.128.0/25\",\r\n
+ \ \"168.61.128.128/28\",\r\n \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n
+ \ \"168.61.129.224/27\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.61.136.0/21\",\r\n \"168.61.144.0/20\",\r\n \"168.61.160.0/19\",\r\n
+ \ \"168.61.208.0/20\",\r\n \"168.62.0.0/19\",\r\n \"168.62.32.0/19\",\r\n
+ \ \"168.62.64.0/19\",\r\n \"168.62.96.0/19\",\r\n \"168.62.128.0/19\",\r\n
+ \ \"168.62.160.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.62.224.0/19\",\r\n
+ \ \"168.63.0.0/19\",\r\n \"168.63.32.0/19\",\r\n \"168.63.64.0/20\",\r\n
+ \ \"168.63.80.0/21\",\r\n \"168.63.88.0/23\",\r\n \"168.63.90.0/24\",\r\n
+ \ \"168.63.91.0/26\",\r\n \"168.63.92.0/22\",\r\n \"168.63.96.0/19\",\r\n
+ \ \"168.63.128.0/24\",\r\n \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n
+ \ \"168.63.129.64/26\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n
+ \ \"168.63.132.0/22\",\r\n \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n
+ \ \"168.63.152.0/22\",\r\n \"168.63.156.0/24\",\r\n \"168.63.160.0/19\",\r\n
+ \ \"168.63.192.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.232.16.0/21\",\r\n
+ \ \"191.232.32.0/19\",\r\n \"191.232.138.0/23\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.8.0/21\",\r\n \"191.233.16.0/20\",\r\n \"191.233.32.0/20\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.64.0/18\",\r\n \"191.233.128.0/20\",\r\n
+ \ \"191.233.144.0/20\",\r\n \"191.233.160.0/19\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.235.32.0/19\",\r\n \"191.235.64.0/18\",\r\n \"191.235.128.0/18\",\r\n
+ \ \"191.235.192.0/22\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.0/24\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.236.64.0/18\",\r\n \"191.236.128.0/18\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.237.128.0/18\",\r\n
+ \ \"191.237.192.0/23\",\r\n \"191.237.194.0/24\",\r\n \"191.237.195.0/24\",\r\n
+ \ \"191.237.196.0/24\",\r\n \"191.237.200.0/21\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"191.237.232.0/22\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.237.238.0/24\",\r\n \"191.237.240.0/23\",\r\n \"191.237.248.0/21\",\r\n
+ \ \"191.238.0.0/18\",\r\n \"191.238.64.0/23\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.70.0/23\",\r\n \"191.238.72.0/21\",\r\n
+ \ \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n \"191.238.92.0/23\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.238.128.0/21\",\r\n \"191.238.144.0/20\",\r\n
+ \ \"191.238.160.0/19\",\r\n \"191.238.192.0/19\",\r\n \"191.238.224.0/19\",\r\n
+ \ \"191.239.0.0/18\",\r\n \"191.239.64.0/19\",\r\n \"191.239.96.0/20\",\r\n
+ \ \"191.239.112.0/20\",\r\n \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"191.239.204.0/22\",\r\n \"191.239.208.0/20\",\r\n
+ \ \"191.239.224.0/20\",\r\n \"191.239.240.0/20\",\r\n \"193.149.64.0/21\",\r\n
+ \ \"193.149.72.0/21\",\r\n \"193.149.80.0/21\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"198.180.96.0/25\",\r\n \"198.180.97.0/24\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.24.0/23\",\r\n \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n
+ \ \"199.30.27.160/27\",\r\n \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n
+ \ \"199.30.29.0/24\",\r\n \"199.30.31.0/25\",\r\n \"199.30.31.192/26\",\r\n
+ \ \"204.79.180.0/24\",\r\n \"204.231.197.0/24\",\r\n \"207.46.13.0/24\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n
+ \ \"207.46.198.128/25\",\r\n \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n
+ \ \"207.46.202.128/28\",\r\n \"207.46.205.0/24\",\r\n \"207.46.224.0/20\",\r\n
+ \ \"207.68.174.40/29\",\r\n \"207.68.174.48/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"207.68.174.192/28\",\r\n \"207.68.174.208/28\",\r\n \"209.240.212.0/23\",\r\n
+ \ \"213.199.128.0/20\",\r\n \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n
+ \ \"213.199.180.192/27\",\r\n \"213.199.183.0/24\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200::/59\",\r\n \"2603:1007:200:20::/59\",\r\n
+ \ \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n \"2603:1010:6::/48\",\r\n
+ \ \"2603:1010:100::/40\",\r\n \"2603:1010:200::/47\",\r\n
+ \ \"2603:1010:202::/48\",\r\n \"2603:1010:204::/48\",\r\n
+ \ \"2603:1010:205::/48\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1010:400::/47\",\r\n \"2603:1010:403::/48\",\r\n
+ \ \"2603:1010:404::/48\",\r\n \"2603:1016:1400::/59\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:1400:40::/59\",\r\n
+ \ \"2603:1016:1400:60::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2401::/48\",\r\n \"2603:1016:2402::/48\",\r\n
+ \ \"2603:1016:2403::/48\",\r\n \"2603:1016:2500::/64\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1016:2500:8::/64\",\r\n
+ \ \"2603:1016:2500:c::/64\",\r\n \"2603:1017::/59\",\r\n
+ \ \"2603:1017:0:20::/59\",\r\n \"2603:1017:0:40::/59\",\r\n
+ \ \"2603:1017:0:60::/59\",\r\n \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n
+ \ \"2603:1020:4::/48\",\r\n \"2603:1020:5::/48\",\r\n \"2603:1020:200::/46\",\r\n
+ \ \"2603:1020:205::/48\",\r\n \"2603:1020:206::/48\",\r\n
+ \ \"2603:1020:300::/47\",\r\n \"2603:1020:302::/48\",\r\n
+ \ \"2603:1020:304::/48\",\r\n \"2603:1020:305::/48\",\r\n
+ \ \"2603:1020:400::/47\",\r\n \"2603:1020:402::/48\",\r\n
+ \ \"2603:1020:404::/48\",\r\n \"2603:1020:405::/48\",\r\n
+ \ \"2603:1020:500::/47\",\r\n \"2603:1020:503::/48\",\r\n
+ \ \"2603:1020:504::/48\",\r\n \"2603:1020:600::/47\",\r\n
+ \ \"2603:1020:602::/48\",\r\n \"2603:1020:604::/48\",\r\n
+ \ \"2603:1020:605::/48\",\r\n \"2603:1020:700::/47\",\r\n
+ \ \"2603:1020:702::/48\",\r\n \"2603:1020:704::/48\",\r\n
+ \ \"2603:1020:705::/48\",\r\n \"2603:1020:800::/47\",\r\n
+ \ \"2603:1020:802::/48\",\r\n \"2603:1020:804::/48\",\r\n
+ \ \"2603:1020:805::/48\",\r\n \"2603:1020:900::/47\",\r\n
+ \ \"2603:1020:902::/48\",\r\n \"2603:1020:904::/48\",\r\n
+ \ \"2603:1020:905::/48\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1020:b00::/47\",\r\n \"2603:1020:b03::/48\",\r\n
+ \ \"2603:1020:b04::/48\",\r\n \"2603:1020:c00::/47\",\r\n
+ \ \"2603:1020:c03::/48\",\r\n \"2603:1020:c04::/48\",\r\n
+ \ \"2603:1020:d00::/47\",\r\n \"2603:1020:d03::/48\",\r\n
+ \ \"2603:1020:d04::/48\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1020:f00::/47\",\r\n \"2603:1020:f03::/48\",\r\n
+ \ \"2603:1020:f04::/48\",\r\n \"2603:1026:2400::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2404::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2407::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:240c::/48\",\r\n
+ \ \"2603:1026:240d::/48\",\r\n \"2603:1026:240e::/48\",\r\n
+ \ \"2603:1026:240f::/48\",\r\n \"2603:1026:2411::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:2500:10::/64\",\r\n \"2603:1026:2500:14::/64\",\r\n
+ \ \"2603:1026:2500:18::/64\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:2500:20::/64\",\r\n \"2603:1026:2500:24::/64\",\r\n
+ \ \"2603:1026:2500:28::/64\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:40::/59\",\r\n \"2603:1026:3000:60::/59\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1026:3000:e0::/59\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1026:3000:120::/59\",\r\n
+ \ \"2603:1026:3000:140::/59\",\r\n \"2603:1026:3000:160::/59\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1026:3000:1a0::/59\",\r\n
+ \ \"2603:1026:3000:1c0::/59\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:40::/59\",\r\n
+ \ \"2603:1027:1:60::/59\",\r\n \"2603:1027:1:80::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2603:1027:1:e0::/59\",\r\n \"2603:1027:1:100::/59\",\r\n
+ \ \"2603:1027:1:120::/59\",\r\n \"2603:1027:1:140::/59\",\r\n
+ \ \"2603:1027:1:160::/59\",\r\n \"2603:1027:1:180::/59\",\r\n
+ \ \"2603:1027:1:1a0::/59\",\r\n \"2603:1027:1:1c0::/59\",\r\n
+ \ \"2603:1027:1:200::/59\",\r\n \"2603:1027:1:220::/59\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n
+ \ \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:17::/64\",\r\n \"2603:1030:9:18::/61\",\r\n
+ \ \"2603:1030:9:20::/59\",\r\n \"2603:1030:9:40::/58\",\r\n
+ \ \"2603:1030:9:80::/59\",\r\n \"2603:1030:9:a0::/60\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b3::/64\",\r\n \"2603:1030:9:b4::/63\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:10d::/64\",\r\n \"2603:1030:9:10e::/63\",\r\n
+ \ \"2603:1030:9:110::/64\",\r\n \"2603:1030:9:111::/64\",\r\n
+ \ \"2603:1030:9:112::/63\",\r\n \"2603:1030:9:114::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:118::/62\",\r\n \"2603:1030:9:11c::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12c::/63\",\r\n \"2603:1030:9:12e::/64\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1030:10::/48\",\r\n \"2603:1030:208::/47\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:20c::/47\",\r\n
+ \ \"2603:1030:20e::/48\",\r\n \"2603:1030:210::/47\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:2::/63\",\r\n \"2603:1030:401:4::/62\",\r\n
+ \ \"2603:1030:401:8::/61\",\r\n \"2603:1030:401:10::/62\",\r\n
+ \ \"2603:1030:401:14::/63\",\r\n \"2603:1030:401:16::/64\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:59::/64\",\r\n \"2603:1030:401:5a::/63\",\r\n
+ \ \"2603:1030:401:5c::/62\",\r\n \"2603:1030:401:60::/59\",\r\n
+ \ \"2603:1030:401:80::/62\",\r\n \"2603:1030:401:84::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:87::/64\",\r\n \"2603:1030:401:88::/62\",\r\n
+ \ \"2603:1030:401:8c::/63\",\r\n \"2603:1030:401:8e::/64\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:92::/63\",\r\n \"2603:1030:401:94::/62\",\r\n
+ \ \"2603:1030:401:98::/61\",\r\n \"2603:1030:401:a0::/62\",\r\n
+ \ \"2603:1030:401:a4::/63\",\r\n \"2603:1030:401:a6::/64\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:121::/64\",\r\n \"2603:1030:401:122::/63\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:136::/63\",\r\n \"2603:1030:401:138::/64\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:13c::/62\",\r\n \"2603:1030:401:140::/63\",\r\n
+ \ \"2603:1030:401:142::/64\",\r\n \"2603:1030:401:143::/64\",\r\n
+ \ \"2603:1030:401:144::/63\",\r\n \"2603:1030:401:146::/63\",\r\n
+ \ \"2603:1030:401:148::/63\",\r\n \"2603:1030:401:14a::/63\",\r\n
+ \ \"2603:1030:401:14c::/62\",\r\n \"2603:1030:401:150::/62\",\r\n
+ \ \"2603:1030:401:154::/63\",\r\n \"2603:1030:401:156::/63\",\r\n
+ \ \"2603:1030:401:158::/64\",\r\n \"2603:1030:401:159::/64\",\r\n
+ \ \"2603:1030:401:15a::/63\",\r\n \"2603:1030:401:15c::/62\",\r\n
+ \ \"2603:1030:401:160::/61\",\r\n \"2603:1030:401:168::/63\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:16d::/64\",\r\n \"2603:1030:401:16e::/63\",\r\n
+ \ \"2603:1030:401:170::/61\",\r\n \"2603:1030:401:178::/62\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:406::/47\",\r\n \"2603:1030:408::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:1::/64\",\r\n \"2603:1030:40a:2::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40c::/48\",\r\n \"2603:1030:40d::/60\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1030:600::/46\",\r\n
+ \ \"2603:1030:604::/47\",\r\n \"2603:1030:607::/48\",\r\n
+ \ \"2603:1030:608::/48\",\r\n \"2603:1030:800::/48\",\r\n
+ \ \"2603:1030:802::/47\",\r\n \"2603:1030:804::/58\",\r\n
+ \ \"2603:1030:804:40::/60\",\r\n \"2603:1030:804:53::/64\",\r\n
+ \ \"2603:1030:804:54::/64\",\r\n \"2603:1030:804:5b::/64\",\r\n
+ \ \"2603:1030:804:5c::/62\",\r\n \"2603:1030:804:60::/62\",\r\n
+ \ \"2603:1030:804:67::/64\",\r\n \"2603:1030:804:68::/61\",\r\n
+ \ \"2603:1030:804:70::/60\",\r\n \"2603:1030:804:80::/59\",\r\n
+ \ \"2603:1030:804:a0::/62\",\r\n \"2603:1030:804:a4::/64\",\r\n
+ \ \"2603:1030:804:a6::/63\",\r\n \"2603:1030:804:a8::/61\",\r\n
+ \ \"2603:1030:804:b0::/62\",\r\n \"2603:1030:804:b4::/64\",\r\n
+ \ \"2603:1030:804:b6::/63\",\r\n \"2603:1030:804:b8::/61\",\r\n
+ \ \"2603:1030:804:c0::/61\",\r\n \"2603:1030:804:c8::/62\",\r\n
+ \ \"2603:1030:804:cc::/63\",\r\n \"2603:1030:804:d2::/63\",\r\n
+ \ \"2603:1030:804:d4::/62\",\r\n \"2603:1030:804:d8::/61\",\r\n
+ \ \"2603:1030:804:e0::/59\",\r\n \"2603:1030:804:100::/61\",\r\n
+ \ \"2603:1030:804:108::/62\",\r\n \"2603:1030:805::/48\",\r\n
+ \ \"2603:1030:806::/48\",\r\n \"2603:1030:807::/48\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1030:b00::/47\",\r\n
+ \ \"2603:1030:b03::/48\",\r\n \"2603:1030:b04::/48\",\r\n
+ \ \"2603:1030:b05::/48\",\r\n \"2603:1030:c00::/48\",\r\n
+ \ \"2603:1030:c02::/47\",\r\n \"2603:1030:c04::/48\",\r\n
+ \ \"2603:1030:c05::/48\",\r\n \"2603:1030:c06::/48\",\r\n
+ \ \"2603:1030:c07::/48\",\r\n \"2603:1030:d00::/48\",\r\n
+ \ \"2603:1030:e01:2::/64\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:903::/64\",\r\n
+ \ \"2603:1036:903:1::/64\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:9ff:ffff::/64\",\r\n
+ \ \"2603:1036:d20::/64\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2400::/48\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2402::/48\",\r\n \"2603:1036:2403::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2408::/48\",\r\n \"2603:1036:2409::/48\",\r\n
+ \ \"2603:1036:240a::/48\",\r\n \"2603:1036:240d::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:2500:4::/64\",\r\n
+ \ \"2603:1036:2500:8::/64\",\r\n \"2603:1036:2500:10::/64\",\r\n
+ \ \"2603:1036:2500:14::/64\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:2500:24::/64\",\r\n
+ \ \"2603:1036:2500:2c::/64\",\r\n \"2603:1036:2500:30::/64\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1036:3000:20::/59\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1036:3000:100::/59\",\r\n
+ \ \"2603:1036:3000:120::/59\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1036:3000:1c0::/59\",\r\n \"2603:1037:1::/59\",\r\n
+ \ \"2603:1037:1:20::/59\",\r\n \"2603:1037:1:40::/59\",\r\n
+ \ \"2603:1037:1:60::/59\",\r\n \"2603:1037:1:80::/59\",\r\n
+ \ \"2603:1037:1:c0::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2603:1037:1:140::/59\",\r\n
+ \ \"2603:1037:1:160::/59\",\r\n \"2603:1037:1:180::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2603:1039:205::/48\",\r\n
+ \ \"2603:1040::/47\",\r\n \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n
+ \ \"2603:1040:5::/48\",\r\n \"2603:1040:200::/46\",\r\n \"2603:1040:204::/48\",\r\n
+ \ \"2603:1040:206::/48\",\r\n \"2603:1040:207::/48\",\r\n
+ \ \"2603:1040:400::/46\",\r\n \"2603:1040:404::/48\",\r\n
+ \ \"2603:1040:406::/48\",\r\n \"2603:1040:407::/48\",\r\n
+ \ \"2603:1040:600::/46\",\r\n \"2603:1040:605::/48\",\r\n
+ \ \"2603:1040:606::/48\",\r\n \"2603:1040:800::/46\",\r\n
+ \ \"2603:1040:805::/48\",\r\n \"2603:1040:806::/48\",\r\n
+ \ \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1040:a00::/46\",\r\n
+ \ \"2603:1040:a05::/48\",\r\n \"2603:1040:a06::/48\",\r\n
+ \ \"2603:1040:b00::/47\",\r\n \"2603:1040:b03::/48\",\r\n
+ \ \"2603:1040:b04::/48\",\r\n \"2603:1040:c00::/46\",\r\n
+ \ \"2603:1040:c05::/48\",\r\n \"2603:1040:c06::/48\",\r\n
+ \ \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1400::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1402::/48\",\r\n \"2603:1046:1403::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1405::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1408::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500::/64\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:1500:8::/64\",\r\n
+ \ \"2603:1046:1500:14::/64\",\r\n \"2603:1046:1500:18::/64\",\r\n
+ \ \"2603:1046:1500:1c::/64\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:20::/59\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1046:2000:60::/59\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1046:2000:c0::/59\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1046:2000:180::/59\",\r\n
+ \ \"2603:1047:1:20::/59\",\r\n \"2603:1047:1:40::/59\",\r\n
+ \ \"2603:1047:1:60::/59\",\r\n \"2603:1047:1:80::/59\",\r\n
+ \ \"2603:1047:1:a0::/59\",\r\n \"2603:1047:1:c0::/59\",\r\n
+ \ \"2603:1047:1:e0::/59\",\r\n \"2603:1047:1:100::/59\",\r\n
+ \ \"2603:1047:1:120::/59\",\r\n \"2603:1047:1:140::/59\",\r\n
+ \ \"2603:1047:1:160::/59\",\r\n \"2603:1047:1:180::/59\",\r\n
+ \ \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n \"2603:1050:5::/48\",\r\n
+ \ \"2603:1050:6::/48\",\r\n \"2603:1050:100::/40\",\r\n \"2603:1050:211::/48\",\r\n
+ \ \"2603:1050:300::/40\",\r\n \"2603:1050:400::/48\",\r\n
+ \ \"2603:1050:402::/48\",\r\n \"2603:1050:403::/48\",\r\n
+ \ \"2603:1056:1400::/48\",\r\n \"2603:1056:1401::/48\",\r\n
+ \ \"2603:1056:1402::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:1500:4::/64\",\r\n
+ \ \"2603:1056:2000:20::/59\",\r\n \"2603:1056:2000:40::/59\",\r\n
+ \ \"2603:1056:2000:60::/59\",\r\n \"2603:1057:2:20::/59\",\r\n
+ \ \"2603:1057:2:40::/59\",\r\n \"2603:1057:2:60::/59\",\r\n
+ \ \"2603:1061:1002::/48\",\r\n \"2a01:111:f100:1000::/62\",\r\n
+ \ \"2a01:111:f100:1004::/63\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f100:3000::/52\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f100:6000::/64\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\",\r\n \"2a01:111:f403:c000::/64\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c100::/64\",\r\n
+ \ \"2a01:111:f403:c10c::/62\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:c804::/62\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d004::/62\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:d804::/62\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f000::/64\",\r\n
+ \ \"2a01:111:f403:f800::/62\",\r\n \"2a01:111:f403:f804::/62\",\r\n
+ \ \"2a01:111:f403:f900::/62\",\r\n \"2a01:111:f403:f904::/62\",\r\n
+ \ \"2a01:111:f403:f908::/62\",\r\n \"2a01:111:f403:f90c::/62\",\r\n
+ \ \"2a01:111:f403:f910::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.australiacentral\",\r\n \"id\":
+ \"AzureCloud.australiacentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.155.128/26\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"20.36.32.0/19\",\r\n \"20.36.104.0/21\",\r\n \"20.37.0.0/18\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.184.0/22\",\r\n \"20.39.64.0/21\",\r\n
+ \ \"20.47.35.0/24\",\r\n \"20.53.0.0/19\",\r\n \"20.53.48.0/21\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.135.52.0/23\",\r\n \"20.150.124.0/24\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.190.189.64/26\",\r\n \"40.82.8.0/22\",\r\n
+ \ \"40.82.240.0/22\",\r\n \"40.90.130.48/28\",\r\n \"40.90.142.96/27\",\r\n
+ \ \"40.90.149.64/27\",\r\n \"40.126.61.64/26\",\r\n \"52.108.74.0/24\",\r\n
+ \ \"52.108.95.0/24\",\r\n \"52.109.128.0/22\",\r\n \"52.111.248.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.239.216.0/23\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1017:0:20::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiacentral2\",\r\n
+ \ \"id\": \"AzureCloud.australiacentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.224/27\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.112.0/20\",\r\n \"20.39.72.0/21\",\r\n \"20.39.96.0/19\",\r\n
+ \ \"20.47.36.0/24\",\r\n \"20.53.56.0/21\",\r\n \"20.135.54.0/23\",\r\n
+ \ \"20.150.103.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.193.96.0/19\",\r\n \"40.82.244.0/22\",\r\n \"40.90.31.96/27\",\r\n
+ \ \"40.90.130.32/28\",\r\n \"40.90.142.64/27\",\r\n \"40.90.149.32/27\",\r\n
+ \ \"40.126.61.128/26\",\r\n \"40.126.128.0/18\",\r\n \"52.108.180.0/24\",\r\n
+ \ \"52.108.201.0/24\",\r\n \"52.109.100.0/23\",\r\n \"52.111.249.0/24\",\r\n
+ \ \"52.143.218.0/24\",\r\n \"52.239.218.0/23\",\r\n \"2603:1010:400::/47\",\r\n
+ \ \"2603:1010:403::/48\",\r\n \"2603:1010:404::/48\",\r\n
+ \ \"2603:1016:1400:40::/59\",\r\n \"2603:1016:2401::/48\",\r\n
+ \ \"2603:1016:2500:8::/64\",\r\n \"2603:1017:0:40::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiaeast\",\r\n
+ \ \"id\": \"AzureCloud.australiaeast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.64.0/18\",\r\n \"13.72.224.0/19\",\r\n \"13.73.192.0/20\",\r\n
+ \ \"13.75.128.0/17\",\r\n \"13.104.211.128/26\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.20.128/26\",\r\n \"13.105.52.192/26\",\r\n \"13.105.53.128/26\",\r\n
+ \ \"20.37.192.0/19\",\r\n \"20.38.112.0/23\",\r\n \"20.40.64.0/20\",\r\n
+ \ \"20.40.80.0/21\",\r\n \"20.40.120.0/21\",\r\n \"20.40.176.0/20\",\r\n
+ \ \"20.42.192.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.64.0/18\",\r\n \"20.53.128.0/17\",\r\n \"20.58.128.0/18\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.150.66.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.188.128.0/17\",\r\n
+ \ \"20.190.142.0/25\",\r\n \"20.190.167.0/24\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.211.0/24\",\r\n \"40.82.32.0/22\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.87.208.0/22\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.30.0/25\",\r\n \"40.90.130.80/28\",\r\n \"40.90.130.208/28\",\r\n
+ \ \"40.90.140.32/27\",\r\n \"40.90.142.160/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.150.0/27\",\r\n \"40.112.37.128/26\",\r\n \"40.126.14.0/25\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.224.0/19\",\r\n \"52.108.40.0/23\",\r\n
+ \ \"52.108.83.0/24\",\r\n \"52.109.112.0/22\",\r\n \"52.111.224.0/24\",\r\n
+ \ \"52.113.88.0/22\",\r\n \"52.113.103.0/24\",\r\n \"52.114.16.0/22\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.192.0/23\",\r\n \"52.115.98.0/24\",\r\n
+ \ \"52.120.158.0/23\",\r\n \"52.121.108.0/22\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.147.0.0/19\",\r\n \"52.156.160.0/19\",\r\n
+ \ \"52.187.192.0/18\",\r\n \"52.232.136.0/21\",\r\n \"52.232.154.0/24\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.245.16.0/22\",\r\n \"104.44.90.64/26\",\r\n \"104.44.93.96/27\",\r\n
+ \ \"104.44.95.48/28\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.210.64.0/18\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.239.64.0/19\",\r\n \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n
+ \ \"2603:1010:6::/48\",\r\n \"2603:1016:1400:60::/59\",\r\n
+ \ \"2603:1016:2402::/48\",\r\n \"2603:1016:2500:c::/64\",\r\n
+ \ \"2603:1017:0:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.australiasoutheast\",\r\n \"id\": \"AzureCloud.australiasoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.73.96.0/19\",\r\n \"13.77.0.0/18\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.45.144.0/20\",\r\n \"20.46.96.0/20\",\r\n
+ \ \"20.47.38.0/24\",\r\n \"20.47.74.0/23\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.60.32.0/23\",\r\n \"20.70.64.0/18\",\r\n \"20.92.0.0/18\",\r\n
+ \ \"20.135.50.0/23\",\r\n \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.157.45.0/24\",\r\n \"20.190.96.0/19\",\r\n \"20.190.142.128/25\",\r\n
+ \ \"20.190.168.0/24\",\r\n \"23.101.224.0/19\",\r\n \"40.79.212.0/24\",\r\n
+ \ \"40.81.48.0/20\",\r\n \"40.87.212.0/22\",\r\n \"40.90.24.0/25\",\r\n
+ \ \"40.90.27.0/26\",\r\n \"40.90.138.128/27\",\r\n \"40.90.155.64/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.115.64.0/19\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.40.0/24\",\r\n \"40.127.64.0/19\",\r\n \"52.108.194.0/24\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.109.116.0/22\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.76.0/23\",\r\n \"52.114.20.0/22\",\r\n
+ \ \"52.114.60.0/23\",\r\n \"52.115.99.0/24\",\r\n \"52.121.106.0/23\",\r\n
+ \ \"52.136.25.0/24\",\r\n \"52.147.32.0/19\",\r\n \"52.158.128.0/19\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n
+ \ \"52.243.64.0/18\",\r\n \"52.245.20.0/22\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"104.44.90.32/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.160.0/19\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n \"2603:1010:100::/40\",\r\n
+ \ \"2603:1010:200::/47\",\r\n \"2603:1010:202::/48\",\r\n
+ \ \"2603:1010:204::/48\",\r\n \"2603:1010:205::/48\",\r\n
+ \ \"2603:1016:1400::/59\",\r\n \"2603:1016:2403::/48\",\r\n
+ \ \"2603:1016:2500::/64\",\r\n \"2603:1017::/59\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilse\",\r\n
+ \ \"id\": \"AzureCloud.brazilse\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"brazilse\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.27.128/27\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.96/27\",\r\n \"13.105.52.0/27\",\r\n \"20.40.32.0/21\",\r\n
+ \ \"20.135.76.0/23\",\r\n \"20.150.73.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.123.0/24\",\r\n \"20.157.42.0/24\",\r\n \"20.195.128.0/22\",\r\n
+ \ \"20.195.144.0/21\",\r\n \"23.97.112.192/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"40.79.204.192/26\",\r\n \"40.123.128.0/22\",\r\n
+ \ \"40.126.207.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.109.164.0/24\",\r\n \"52.111.207.0/24\",\r\n \"52.112.206.0/24\",\r\n
+ \ \"52.253.197.0/24\",\r\n \"191.232.16.0/21\",\r\n \"191.233.8.0/21\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.160.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"2603:1050:400::/48\",\r\n \"2603:1050:402::/48\",\r\n
+ \ \"2603:1050:403::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500:4::/64\",\r\n \"2603:1056:2000:60::/59\",\r\n
+ \ \"2603:1057:2:60::/59\",\r\n \"2603:1061:1002::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilsouth\",\r\n
+ \ \"id\": \"AzureCloud.brazilsouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.52.80/28\",\r\n \"13.105.52.128/26\",\r\n
+ \ \"20.40.16.0/21\",\r\n \"20.40.112.0/21\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.60.36.0/23\",\r\n \"20.135.128.0/22\",\r\n
+ \ \"20.135.132.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"20.190.145.0/25\",\r\n \"20.190.173.0/24\",\r\n \"20.195.136.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.197.128.0/17\",\r\n \"20.201.0.0/18\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.144/28\",\r\n \"40.90.141.64/27\",\r\n \"40.90.144.224/27\",\r\n
+ \ \"40.90.145.96/27\",\r\n \"40.90.145.128/27\",\r\n \"40.90.157.0/27\",\r\n
+ \ \"40.126.17.0/25\",\r\n \"40.126.45.0/24\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n
+ \ \"52.109.108.0/22\",\r\n \"52.111.225.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.113.132.0/24\",\r\n \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n
+ \ \"52.114.200.0/22\",\r\n \"52.121.40.0/21\",\r\n \"52.253.185.0/24\",\r\n
+ \ \"52.253.186.0/24\",\r\n \"104.41.0.0/18\",\r\n \"191.232.32.0/19\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.16.0/20\",\r\n \"191.233.128.0/20\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.235.32.0/19\",\r\n
+ \ \"191.235.64.0/18\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\",\r\n \"191.237.195.0/24\",\r\n \"191.237.200.0/21\",\r\n
+ \ \"191.237.248.0/21\",\r\n \"191.238.72.0/21\",\r\n \"191.238.128.0/21\",\r\n
+ \ \"191.238.192.0/19\",\r\n \"191.239.112.0/20\",\r\n \"191.239.204.0/22\",\r\n
+ \ \"191.239.240.0/20\",\r\n \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n
+ \ \"2603:1050:5::/48\",\r\n \"2603:1050:6::/48\",\r\n \"2603:1056:1400::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:2000:20::/59\",\r\n
+ \ \"2603:1057:2:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadacentral\",\r\n \"id\": \"AzureCloud.canadacentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.160.0/19\",\r\n
+ \ \"13.88.224.0/19\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.212.192/26\",\r\n \"13.104.223.192/26\",\r\n
+ \ \"20.38.114.0/25\",\r\n \"20.38.144.0/21\",\r\n \"20.39.128.0/20\",\r\n
+ \ \"20.43.0.0/19\",\r\n \"20.47.40.0/24\",\r\n \"20.47.87.0/24\",\r\n
+ \ \"20.48.128.0/18\",\r\n \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.63.0.0/17\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n
+ \ \"20.150.71.0/24\",\r\n \"20.150.100.0/24\",\r\n \"20.151.0.0/17\",\r\n
+ \ \"20.151.128.0/18\",\r\n \"20.157.52.0/24\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.161.0/24\",\r\n \"20.200.64.0/18\",\r\n \"40.79.216.0/24\",\r\n
+ \ \"40.80.44.0/22\",\r\n \"40.82.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.90.17.144/28\",\r\n \"40.90.128.0/28\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.151.96/27\",\r\n \"40.126.11.0/25\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"52.108.42.0/23\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.109.92.0/22\",\r\n \"52.111.251.0/24\",\r\n \"52.114.160.0/22\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.138.0.0/18\",\r\n
+ \ \"52.139.0.0/18\",\r\n \"52.156.0.0/19\",\r\n \"52.228.0.0/17\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.237.0.0/18\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.245.28.0/22\",\r\n \"52.246.152.0/21\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"104.44.93.32/27\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"2603:1030:208::/47\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2500:30::/64\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1037:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadaeast\",\r\n \"id\": \"AzureCloud.canadaeast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.154.128/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.135.66.0/23\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n \"20.190.139.128/25\",\r\n
+ \ \"20.190.162.0/24\",\r\n \"20.200.0.0/18\",\r\n \"40.69.96.0/19\",\r\n
+ \ \"40.79.217.0/24\",\r\n \"40.80.40.0/22\",\r\n \"40.80.240.0/20\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.89.0.0/19\",\r\n \"40.90.17.128/28\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.156.96/27\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.34.0/24\",\r\n \"52.108.193.0/24\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.111.226.0/24\",\r\n \"52.114.164.0/22\",\r\n
+ \ \"52.136.22.0/24\",\r\n \"52.139.64.0/18\",\r\n \"52.155.0.0/19\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.232.128.0/21\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\",\r\n \"52.242.0.0/18\",\r\n
+ \ \"52.245.32.0/22\",\r\n \"104.44.93.64/27\",\r\n \"104.44.95.32/28\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:2402::/48\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1037:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralfrance\",\r\n \"id\": \"AzureCloud.centralfrance\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.156.0/24\",\r\n
+ \ \"20.38.196.0/22\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.128.0/19\",\r\n \"20.43.32.0/19\",\r\n \"20.47.44.0/24\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.188.32.0/19\",\r\n \"20.190.147.0/25\",\r\n
+ \ \"20.190.177.0/24\",\r\n \"20.199.0.0/17\",\r\n \"40.66.32.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.222.0/24\",\r\n \"40.80.24.0/22\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.90.130.240/28\",\r\n \"40.90.132.0/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.126.19.0/25\",\r\n \"40.126.49.0/24\",\r\n \"51.11.192.0/18\",\r\n
+ \ \"51.103.0.0/17\",\r\n \"51.138.192.0/19\",\r\n \"52.108.52.0/23\",\r\n
+ \ \"52.108.89.0/24\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.111.231.0/24\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.190.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.114.104.0/22\",\r\n \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.143.128.0/18\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.194.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.245.116.0/22\",\r\n
+ \ \"2603:1020:800::/47\",\r\n \"2603:1020:802::/48\",\r\n
+ \ \"2603:1020:804::/48\",\r\n \"2603:1020:805::/48\",\r\n
+ \ \"2603:1026:2400::/48\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1027:1:100::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.centralindia\",\r\n
+ \ \"id\": \"AzureCloud.centralindia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.0.0/18\",\r\n \"13.104.148.128/25\",\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.47.89.0/24\",\r\n \"20.135.90.0/23\",\r\n
+ \ \"20.135.92.0/22\",\r\n \"20.150.114.0/24\",\r\n \"20.190.146.0/25\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.198.0.0/17\",\r\n \"40.79.207.32/27\",\r\n
+ \ \"40.79.207.64/28\",\r\n \"40.79.207.96/27\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.64.0/19\",\r\n \"40.81.224.0/19\",\r\n
+ \ \"40.87.224.0/22\",\r\n \"40.90.137.128/27\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.126.18.0/25\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"52.108.44.0/23\",\r\n \"52.108.85.0/24\",\r\n \"52.109.56.0/22\",\r\n
+ \ \"52.111.252.0/24\",\r\n \"52.113.10.0/23\",\r\n \"52.113.70.0/23\",\r\n
+ \ \"52.113.92.0/22\",\r\n \"52.113.193.0/24\",\r\n \"52.114.40.0/22\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.136.24.0/24\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.172.128.0/17\",\r\n
+ \ \"52.239.135.64/26\",\r\n \"52.239.202.0/24\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.253.181.0/24\",\r\n \"52.253.191.0/24\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.94.192/28\",\r\n \"104.47.210.0/23\",\r\n \"104.211.64.0/18\",\r\n
+ \ \"2603:1040:a00::/46\",\r\n \"2603:1040:a05::/48\",\r\n
+ \ \"2603:1040:a06::/48\",\r\n \"2603:1046:1400::/48\",\r\n
+ \ \"2603:1046:1500:8::/64\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1047:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralus\",\r\n \"id\": \"AzureCloud.centralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.128.0/20\",\r\n
+ \ \"13.67.144.0/21\",\r\n \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n \"13.67.160.0/19\",\r\n
+ \ \"13.67.192.0/18\",\r\n \"13.86.0.0/17\",\r\n \"13.89.0.0/16\",\r\n
+ \ \"13.104.147.128/25\",\r\n \"13.104.219.128/25\",\r\n \"13.105.17.192/26\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.37.0/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"20.37.128.0/18\",\r\n \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n
+ \ \"20.40.192.0/18\",\r\n \"20.44.8.0/21\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.78.0/23\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n \"20.60.194.0/23\",\r\n
+ \ \"20.80.64.0/18\",\r\n \"20.83.0.0/18\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.184.64.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.190.134.0/24\",\r\n \"20.190.155.0/24\",\r\n \"23.99.128.0/17\",\r\n
+ \ \"23.100.80.0/21\",\r\n \"23.100.240.0/20\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.102.202.0/24\",\r\n \"40.67.160.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.130.128/26\",\r\n \"40.77.137.0/25\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.161.64/26\",\r\n \"40.77.166.192/26\",\r\n
+ \ \"40.77.171.0/24\",\r\n \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n
+ \ \"40.77.182.16/28\",\r\n \"40.77.182.192/26\",\r\n \"40.77.184.128/25\",\r\n
+ \ \"40.77.197.0/24\",\r\n \"40.77.255.128/26\",\r\n \"40.78.128.0/18\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.82.16.0/22\",\r\n \"40.82.96.0/22\",\r\n
+ \ \"40.83.0.0/20\",\r\n \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n
+ \ \"40.83.24.64/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.28/30\",\r\n \"40.87.180.32/29\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.74/31\",\r\n \"40.87.180.76/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.24/29\",\r\n \"40.87.182.32/28\",\r\n
+ \ \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n \"40.87.182.62/31\",\r\n
+ \ \"40.87.182.64/26\",\r\n \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n
+ \ \"40.87.183.16/29\",\r\n \"40.87.183.24/30\",\r\n \"40.87.183.34/31\",\r\n
+ \ \"40.87.183.36/30\",\r\n \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n
+ \ \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n \"40.87.183.64/26\",\r\n
+ \ \"40.87.183.144/28\",\r\n \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n
+ \ \"40.87.183.224/29\",\r\n \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n
+ \ \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n \"40.89.224.0/19\",\r\n
+ \ \"40.90.16.0/27\",\r\n \"40.90.21.128/25\",\r\n \"40.90.22.0/25\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.129.224/27\",\r\n \"40.90.130.64/28\",\r\n
+ \ \"40.90.130.192/28\",\r\n \"40.90.132.192/26\",\r\n \"40.90.137.224/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.142.128/27\",\r\n \"40.90.142.240/28\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.128/26\",\r\n \"40.90.148.176/28\",\r\n \"40.90.149.96/27\",\r\n
+ \ \"40.90.151.144/28\",\r\n \"40.90.154.64/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.158.64/26\",\r\n \"40.93.8.0/24\",\r\n \"40.113.192.0/18\",\r\n
+ \ \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n \"40.122.64.0/18\",\r\n
+ \ \"40.122.128.0/17\",\r\n \"40.126.6.0/24\",\r\n \"40.126.27.0/24\",\r\n
+ \ \"52.101.8.0/24\",\r\n \"52.101.32.0/22\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.103.4.0/24\",\r\n \"52.103.130.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.185.0/24\",\r\n \"52.108.208.0/21\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.111.227.0/24\",\r\n \"52.112.113.0/24\",\r\n
+ \ \"52.113.129.0/24\",\r\n \"52.114.128.0/22\",\r\n \"52.115.76.0/22\",\r\n
+ \ \"52.115.80.0/22\",\r\n \"52.115.88.0/22\",\r\n \"52.123.2.0/24\",\r\n
+ \ \"52.125.128.0/22\",\r\n \"52.136.30.0/24\",\r\n \"52.141.192.0/19\",\r\n
+ \ \"52.141.240.0/20\",\r\n \"52.143.193.0/24\",\r\n \"52.143.224.0/19\",\r\n
+ \ \"52.154.0.0/18\",\r\n \"52.154.128.0/17\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.192.0/19\",\r\n \"52.165.0.0/19\",\r\n \"52.165.32.0/20\",\r\n
+ \ \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n \"52.165.56.0/21\",\r\n
+ \ \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n \"52.165.104.0/25\",\r\n
+ \ \"52.165.128.0/17\",\r\n \"52.173.0.0/16\",\r\n \"52.176.0.0/17\",\r\n
+ \ \"52.176.128.0/19\",\r\n \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n
+ \ \"52.176.192.0/19\",\r\n \"52.176.224.0/24\",\r\n \"52.180.128.0/19\",\r\n
+ \ \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n \"52.180.185.0/24\",\r\n
+ \ \"52.182.128.0/17\",\r\n \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n
+ \ \"52.185.48.0/21\",\r\n \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n \"52.189.0.0/17\",\r\n
+ \ \"52.228.128.0/17\",\r\n \"52.230.128.0/17\",\r\n \"52.232.157.0/24\",\r\n
+ \ \"52.238.192.0/18\",\r\n \"52.239.150.0/23\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.195.0/24\",\r\n
+ \ \"52.239.234.0/23\",\r\n \"52.242.128.0/17\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n \"52.245.69.96/28\",\r\n
+ \ \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n \"52.245.69.192/26\",\r\n
+ \ \"52.245.70.0/23\",\r\n \"52.255.0.0/19\",\r\n \"65.55.144.0/23\",\r\n
+ \ \"65.55.146.0/24\",\r\n \"104.43.128.0/17\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.91.160/27\",\r\n \"104.44.92.224/27\",\r\n \"104.44.94.80/28\",\r\n
+ \ \"104.208.0.0/19\",\r\n \"104.208.32.0/20\",\r\n \"131.253.36.224/27\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"168.61.128.0/25\",\r\n \"168.61.128.128/28\",\r\n
+ \ \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n \"168.61.129.224/27\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n \"168.61.144.0/20\",\r\n
+ \ \"168.61.160.0/19\",\r\n \"168.61.208.0/20\",\r\n \"193.149.72.0/21\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:17::/64\",\r\n
+ \ \"2603:1030:9:18::/61\",\r\n \"2603:1030:9:20::/59\",\r\n
+ \ \"2603:1030:9:40::/58\",\r\n \"2603:1030:9:80::/59\",\r\n
+ \ \"2603:1030:9:a0::/60\",\r\n \"2603:1030:9:b3::/64\",\r\n
+ \ \"2603:1030:9:b4::/63\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:111::/64\",\r\n \"2603:1030:9:112::/63\",\r\n
+ \ \"2603:1030:9:114::/64\",\r\n \"2603:1030:9:118::/62\",\r\n
+ \ \"2603:1030:9:11c::/63\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:10::/48\",\r\n
+ \ \"2603:1036:2403::/48\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:3000:100::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:f904::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.centraluseuap\",\r\n \"id\": \"AzureCloud.centraluseuap\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.104.129.0/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.208.0/26\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.47.5.0/24\",\r\n \"20.47.105.0/24\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.150.23.0/24\",\r\n
+ \ \"20.150.47.0/25\",\r\n \"20.157.96.0/24\",\r\n \"20.190.138.128/25\",\r\n
+ \ \"20.190.150.0/24\",\r\n \"40.66.120.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.16/28\",\r\n \"40.79.232.0/21\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n
+ \ \"40.87.180.12/31\",\r\n \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n
+ \ \"40.87.180.40/31\",\r\n \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n
+ \ \"40.87.182.0/30\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.60/31\",\r\n
+ \ \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.48/30\",\r\n \"40.87.183.52/31\",\r\n \"40.87.183.128/28\",\r\n
+ \ \"40.87.183.238/31\",\r\n \"40.87.183.240/30\",\r\n \"40.89.32.0/19\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.142.32/27\",\r\n \"40.90.149.0/27\",\r\n
+ \ \"40.96.52.0/24\",\r\n \"40.122.0.0/20\",\r\n \"40.126.10.128/25\",\r\n
+ \ \"40.126.22.0/24\",\r\n \"52.108.113.0/24\",\r\n \"52.109.140.0/22\",\r\n
+ \ \"52.141.224.0/20\",\r\n \"52.143.198.0/24\",\r\n \"52.158.176.0/20\",\r\n
+ \ \"52.165.104.128/26\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.180.160.0/20\",\r\n \"52.180.176.0/21\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.112.64/27\",\r\n \"52.239.177.0/27\",\r\n
+ \ \"52.239.238.0/24\",\r\n \"52.245.69.0/27\",\r\n \"52.253.156.0/22\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"104.208.48.0/20\",\r\n \"168.61.136.0/21\",\r\n
+ \ \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:10d::/64\",\r\n
+ \ \"2603:1030:9:10e::/63\",\r\n \"2603:1030:9:110::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:12c::/63\",\r\n
+ \ \"2603:1030:9:12e::/64\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:240d::/48\",\r\n \"2603:1036:2500:2c::/64\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1037:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastasia\",\r\n
+ \ \"id\": \"AzureCloud.eastasia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.0.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.75.0.0/17\",\r\n
+ \ \"13.88.208.0/20\",\r\n \"13.94.0.0/18\",\r\n \"13.104.155.64/26\",\r\n
+ \ \"13.104.155.192/26\",\r\n \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.126.0/23\",\r\n \"20.60.131.0/24\",\r\n
+ \ \"20.135.40.0/23\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"20.187.64.0/18\",\r\n
+ \ \"20.187.128.0/18\",\r\n \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n
+ \ \"20.189.64.0/18\",\r\n \"20.190.140.128/25\",\r\n \"20.190.164.0/24\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"23.97.64.0/19\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.99.96.0/19\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.101.0.0/20\",\r\n \"23.102.200.0/23\",\r\n
+ \ \"23.102.224.0/19\",\r\n \"40.77.134.0/24\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.160.32/27\",\r\n \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n
+ \ \"40.77.161.0/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.175.128/27\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.201.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.234.128/27\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.128/25\",\r\n
+ \ \"40.77.252.0/23\",\r\n \"40.79.210.0/24\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.82.116.0/22\",\r\n \"40.83.64.0/18\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.90.154.192/26\",\r\n \"40.126.12.128/25\",\r\n \"40.126.36.0/24\",\r\n
+ \ \"52.108.32.0/22\",\r\n \"52.108.81.0/24\",\r\n \"52.109.120.0/22\",\r\n
+ \ \"52.111.228.0/24\",\r\n \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n
+ \ \"52.113.104.0/24\",\r\n \"52.113.108.0/24\",\r\n \"52.114.0.0/21\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.96.0/24\",\r\n \"52.120.157.0/24\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.139.128.0/18\",\r\n \"52.175.0.0/17\",\r\n
+ \ \"52.184.0.0/17\",\r\n \"52.229.128.0/17\",\r\n \"52.232.153.0/24\",\r\n
+ \ \"52.239.128.0/24\",\r\n \"52.239.224.0/24\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.246.128.0/20\",\r\n \"65.52.160.0/19\",\r\n \"104.44.88.192/27\",\r\n
+ \ \"104.44.90.224/27\",\r\n \"104.44.91.192/27\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.46.24.0/22\",\r\n \"104.208.64.0/18\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n \"111.221.78.0/23\",\r\n
+ \ \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"137.116.160.0/20\",\r\n \"168.63.128.0/24\",\r\n
+ \ \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n \"168.63.129.64/26\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n \"168.63.132.0/22\",\r\n
+ \ \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n \"168.63.152.0/22\",\r\n
+ \ \"168.63.156.0/24\",\r\n \"168.63.192.0/19\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.237.238.0/24\",\r\n
+ \ \"204.231.197.0/24\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.68.174.208/28\",\r\n \"2603:1040:200::/46\",\r\n
+ \ \"2603:1040:204::/48\",\r\n \"2603:1040:206::/48\",\r\n
+ \ \"2603:1040:207::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1047:1:40::/59\",\r\n \"2a01:111:f100:6000::/64\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus\",\r\n
+ \ \"id\": \"AzureCloud.eastus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.128.0/17\",\r\n \"13.72.64.0/18\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.90.0.0/16\",\r\n \"13.92.0.0/16\",\r\n \"13.104.144.128/27\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.192.0/21\",\r\n \"13.104.211.0/25\",\r\n
+ \ \"13.104.214.128/25\",\r\n \"13.104.215.0/25\",\r\n \"13.105.17.0/26\",\r\n
+ \ \"13.105.19.0/25\",\r\n \"13.105.20.192/26\",\r\n \"13.105.27.0/25\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.36.192/26\",\r\n \"13.105.74.48/28\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.39.32.0/19\",\r\n \"20.42.0.0/17\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.113.0/24\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.51.128.0/17\",\r\n \"20.55.0.0/17\",\r\n \"20.60.0.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n \"20.60.60.0/22\",\r\n
+ \ \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.62.128.0/17\",\r\n \"20.72.128.0/18\",\r\n \"20.75.128.0/17\",\r\n
+ \ \"20.81.0.0/17\",\r\n \"20.83.128.0/18\",\r\n \"20.84.0.0/17\",\r\n
+ \ \"20.85.128.0/17\",\r\n \"20.88.128.0/18\",\r\n \"20.135.4.0/22\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.157.39.0/24\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.190.130.0/24\",\r\n \"20.190.151.0/24\",\r\n \"23.96.0.0/17\",\r\n
+ \ \"23.98.45.0/24\",\r\n \"23.100.16.0/20\",\r\n \"23.101.128.0/20\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.76.0.0/16\",\r\n \"40.78.219.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.79.152.0/21\",\r\n \"40.80.144.0/21\",\r\n
+ \ \"40.82.24.0/22\",\r\n \"40.82.60.0/22\",\r\n \"40.85.160.0/19\",\r\n
+ \ \"40.87.0.0/17\",\r\n \"40.87.164.0/22\",\r\n \"40.88.0.0/16\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.128/25\",\r\n \"40.90.25.0/26\",\r\n
+ \ \"40.90.30.192/26\",\r\n \"40.90.129.128/26\",\r\n \"40.90.130.96/28\",\r\n
+ \ \"40.90.131.224/27\",\r\n \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n
+ \ \"40.90.137.96/27\",\r\n \"40.90.139.224/27\",\r\n \"40.90.143.0/27\",\r\n
+ \ \"40.90.146.64/26\",\r\n \"40.90.147.0/27\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.224.0/19\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.4.0/24\",\r\n \"40.112.48.0/20\",\r\n
+ \ \"40.114.0.0/17\",\r\n \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n
+ \ \"40.117.128.0/17\",\r\n \"40.121.0.0/16\",\r\n \"40.123.132.0/22\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.23.0/24\",\r\n \"52.101.4.0/22\",\r\n
+ \ \"52.101.9.0/24\",\r\n \"52.101.20.0/22\",\r\n \"52.102.129.0/24\",\r\n
+ \ \"52.102.159.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.3.0/24\",\r\n
+ \ \"52.103.129.0/24\",\r\n \"52.108.16.0/21\",\r\n \"52.108.79.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.109.12.0/22\",\r\n
+ \ \"52.111.229.0/24\",\r\n \"52.112.112.0/24\",\r\n \"52.113.16.0/20\",\r\n
+ \ \"52.114.132.0/22\",\r\n \"52.115.54.0/24\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.192.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.123.0.0/24\",\r\n \"52.125.132.0/22\",\r\n \"52.136.64.0/18\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.143.207.0/24\",\r\n \"52.146.0.0/17\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.128.0/17\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.168.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.179.0.0/17\",\r\n
+ \ \"52.186.0.0/16\",\r\n \"52.188.0.0/16\",\r\n \"52.190.0.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.192.0/18\",\r\n \"52.224.0.0/16\",\r\n
+ \ \"52.226.0.0/16\",\r\n \"52.232.146.0/24\",\r\n \"52.234.128.0/17\",\r\n
+ \ \"52.239.152.0/22\",\r\n \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n
+ \ \"52.239.214.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.240.0.0/17\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.104.0/22\",\r\n \"52.249.128.0/17\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.255.128.0/17\",\r\n \"65.54.19.128/27\",\r\n \"104.41.128.0/19\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.94.16/28\",\r\n \"104.44.95.160/27\",\r\n
+ \ \"104.44.95.240/28\",\r\n \"104.45.128.0/18\",\r\n \"104.45.192.0/20\",\r\n
+ \ \"104.211.0.0/18\",\r\n \"137.116.112.0/20\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.135.64.0/18\",\r\n \"138.91.96.0/19\",\r\n
+ \ \"157.56.176.0/21\",\r\n \"168.61.32.0/20\",\r\n \"168.61.48.0/21\",\r\n
+ \ \"168.62.32.0/19\",\r\n \"168.62.160.0/19\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.238.0.0/18\",\r\n
+ \ \"2603:1030:20c::/47\",\r\n \"2603:1030:20e::/48\",\r\n
+ \ \"2603:1030:210::/47\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:3000:120::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f403:c100::/64\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:f000::/64\",\r\n \"2a01:111:f403:f900::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2\",\r\n
+ \ \"id\": \"AzureCloud.eastus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.0.0/17\",\r\n \"13.77.64.0/18\",\r\n \"13.104.147.0/25\",\r\n
+ \ \"13.104.208.64/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.23.64/26\",\r\n
+ \ \"13.105.28.0/28\",\r\n \"13.105.28.128/25\",\r\n \"13.105.67.128/25\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.75.0/27\",\r\n \"13.105.75.32/28\",\r\n
+ \ \"13.105.75.64/27\",\r\n \"20.36.128.0/17\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.41.0.0/18\",\r\n \"20.44.16.0/21\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.47.60.0/23\",\r\n \"20.47.76.0/23\",\r\n
+ \ \"20.49.0.0/18\",\r\n \"20.49.96.0/21\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.57.0.0/17\",\r\n \"20.60.56.0/22\",\r\n \"20.60.132.0/23\",\r\n
+ \ \"20.60.180.0/23\",\r\n \"20.62.0.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.69.192.0/18\",\r\n \"20.72.64.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.80.192.0/18\",\r\n \"20.81.128.0/17\",\r\n \"20.85.0.0/17\",\r\n
+ \ \"20.88.96.0/19\",\r\n \"20.135.16.0/23\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.150.29.0/24\",\r\n \"20.150.36.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n \"20.150.82.0/24\",\r\n
+ \ \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.152.0/24\",\r\n \"20.190.192.0/18\",\r\n \"23.100.64.0/21\",\r\n
+ \ \"23.101.32.0/21\",\r\n \"23.101.80.0/21\",\r\n \"23.101.144.0/20\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n
+ \ \"40.65.192.0/18\",\r\n \"40.67.128.0/19\",\r\n \"40.70.0.0/18\",\r\n
+ \ \"40.70.64.0/20\",\r\n \"40.70.80.0/21\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.75.0.0/19\",\r\n \"40.75.64.0/18\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.132.0/24\",\r\n
+ \ \"40.77.136.48/28\",\r\n \"40.77.137.128/26\",\r\n \"40.77.138.128/25\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.166.160/27\",\r\n \"40.77.167.0/24\",\r\n
+ \ \"40.77.168.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.175.96/27\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.182.0/28\",\r\n
+ \ \"40.77.182.32/27\",\r\n \"40.77.184.0/25\",\r\n \"40.77.198.0/26\",\r\n
+ \ \"40.77.199.192/26\",\r\n \"40.77.224.128/25\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.233.0/24\",\r\n \"40.77.234.192/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.240.0/25\",\r\n \"40.77.245.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.251.0/24\",\r\n \"40.78.208.48/28\",\r\n
+ \ \"40.78.220.0/24\",\r\n \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n
+ \ \"40.79.8.32/28\",\r\n \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n
+ \ \"40.79.9.0/24\",\r\n \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n
+ \ \"40.79.48.0/27\",\r\n \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n
+ \ \"40.79.56.0/21\",\r\n \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n
+ \ \"40.79.90.0/24\",\r\n \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n
+ \ \"40.79.93.0/28\",\r\n \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n
+ \ \"40.79.206.64/27\",\r\n \"40.79.240.0/20\",\r\n \"40.82.4.0/22\",\r\n
+ \ \"40.82.44.0/22\",\r\n \"40.84.0.0/17\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n \"40.87.168.32/29\",\r\n
+ \ \"40.87.168.48/28\",\r\n \"40.87.168.64/30\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.210/31\",\r\n
+ \ \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n \"40.87.168.224/27\",\r\n
+ \ \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n \"40.87.169.44/30\",\r\n
+ \ \"40.87.169.48/29\",\r\n \"40.87.169.56/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.102/31\",\r\n
+ \ \"40.87.169.104/29\",\r\n \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n
+ \ \"40.87.169.136/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.160/27\",\r\n
+ \ \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n \"40.87.170.128/28\",\r\n
+ \ \"40.87.170.144/31\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.194/31\",\r\n
+ \ \"40.87.170.196/30\",\r\n \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n
+ \ \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n \"40.87.170.240/29\",\r\n
+ \ \"40.87.170.248/30\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.36/30\",\r\n
+ \ \"40.87.171.40/31\",\r\n \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n
+ \ \"40.87.171.96/27\",\r\n \"40.87.171.128/28\",\r\n \"40.90.19.128/25\",\r\n
+ \ \"40.90.20.0/25\",\r\n \"40.90.130.160/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.133.112/28\",\r\n \"40.90.134.192/26\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.140.160/27\",\r\n \"40.90.140.192/27\",\r\n
+ \ \"40.90.143.192/26\",\r\n \"40.90.144.64/26\",\r\n \"40.90.145.32/27\",\r\n
+ \ \"40.90.145.64/27\",\r\n \"40.90.148.96/27\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.158.128/25\",\r\n \"40.91.12.16/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n \"40.91.13.128/27\",\r\n
+ \ \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n \"40.93.3.0/24\",\r\n
+ \ \"40.123.0.0/17\",\r\n \"40.126.3.0/24\",\r\n \"40.126.24.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.36.0/22\",\r\n \"52.102.131.0/24\",\r\n
+ \ \"52.103.5.0/24\",\r\n \"52.103.131.0/24\",\r\n \"52.108.186.0/24\",\r\n
+ \ \"52.108.216.0/22\",\r\n \"52.109.4.0/22\",\r\n \"52.111.230.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.95.0/24\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.108.0/24\",\r\n \"52.112.116.0/24\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.180.0/22\",\r\n \"52.114.186.0/23\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.64.0/22\",\r\n \"52.115.160.0/19\",\r\n
+ \ \"52.120.64.0/19\",\r\n \"52.121.32.0/22\",\r\n \"52.123.4.0/24\",\r\n
+ \ \"52.125.136.0/24\",\r\n \"52.136.29.0/24\",\r\n \"52.138.80.0/21\",\r\n
+ \ \"52.138.96.0/19\",\r\n \"52.143.192.0/24\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.167.0.0/16\",\r\n \"52.177.0.0/16\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.80/28\",\r\n \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n
+ \ \"52.184.169.0/24\",\r\n \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n
+ \ \"52.184.192.0/18\",\r\n \"52.225.128.0/21\",\r\n \"52.225.136.0/27\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n
+ \ \"52.225.192.0/18\",\r\n \"52.232.151.0/24\",\r\n \"52.232.160.0/19\",\r\n
+ \ \"52.232.192.0/18\",\r\n \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n
+ \ \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n
+ \ \"52.239.185.32/27\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.222.0/23\",\r\n \"52.242.64.0/18\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.160/27\",\r\n
+ \ \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n \"52.245.46.48/28\",\r\n
+ \ \"52.245.46.64/28\",\r\n \"52.245.46.112/28\",\r\n \"52.245.46.128/28\",\r\n
+ \ \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n \"52.247.0.0/17\",\r\n
+ \ \"52.250.128.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.253.64.0/20\",\r\n \"52.253.148.0/23\",\r\n \"52.253.154.0/23\",\r\n
+ \ \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n \"52.254.96.0/20\",\r\n
+ \ \"52.254.112.0/21\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n \"65.55.44.64/27\",\r\n
+ \ \"65.55.44.96/28\",\r\n \"65.55.44.128/27\",\r\n \"65.55.60.188/30\",\r\n
+ \ \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.107.48/28\",\r\n \"65.55.107.64/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.209.128/26\",\r\n \"65.55.211.32/27\",\r\n \"65.55.213.64/26\",\r\n
+ \ \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.128/25\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.96/27\",\r\n
+ \ \"104.44.91.96/27\",\r\n \"104.44.93.160/27\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.96.0/19\",\r\n \"104.46.192.0/20\",\r\n
+ \ \"104.47.200.0/21\",\r\n \"104.208.128.0/17\",\r\n \"104.209.128.0/17\",\r\n
+ \ \"104.210.0.0/20\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.208/28\",\r\n
+ \ \"131.253.12.224/30\",\r\n \"131.253.13.16/29\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.96/30\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.64/29\",\r\n \"131.253.14.208/28\",\r\n
+ \ \"131.253.14.224/28\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.24.0/28\",\r\n \"131.253.24.192/26\",\r\n \"131.253.34.224/27\",\r\n
+ \ \"131.253.38.0/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.40.0/28\",\r\n
+ \ \"134.170.220.0/23\",\r\n \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n
+ \ \"137.116.96.0/22\",\r\n \"157.55.7.128/26\",\r\n \"157.55.10.192/26\",\r\n
+ \ \"157.55.11.128/25\",\r\n \"157.55.37.0/24\",\r\n \"157.55.38.0/24\",\r\n
+ \ \"157.55.48.0/24\",\r\n \"157.55.50.0/25\",\r\n \"157.55.55.100/30\",\r\n
+ \ \"157.55.55.104/29\",\r\n \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.128.0/18\",\r\n \"191.239.224.0/20\",\r\n
+ \ \"193.149.64.0/21\",\r\n \"198.180.96.0/25\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n \"199.30.29.0/24\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401:2::/63\",\r\n
+ \ \"2603:1030:401:4::/62\",\r\n \"2603:1030:401:8::/61\",\r\n
+ \ \"2603:1030:401:10::/62\",\r\n \"2603:1030:401:14::/63\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:5a::/63\",\r\n \"2603:1030:401:5c::/62\",\r\n
+ \ \"2603:1030:401:60::/59\",\r\n \"2603:1030:401:80::/62\",\r\n
+ \ \"2603:1030:401:84::/64\",\r\n \"2603:1030:401:87::/64\",\r\n
+ \ \"2603:1030:401:88::/62\",\r\n \"2603:1030:401:8c::/63\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:94::/62\",\r\n \"2603:1030:401:98::/61\",\r\n
+ \ \"2603:1030:401:a0::/62\",\r\n \"2603:1030:401:a4::/63\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:143::/64\",\r\n \"2603:1030:401:144::/63\",\r\n
+ \ \"2603:1030:401:14a::/63\",\r\n \"2603:1030:401:14c::/62\",\r\n
+ \ \"2603:1030:401:150::/62\",\r\n \"2603:1030:401:154::/63\",\r\n
+ \ \"2603:1030:401:159::/64\",\r\n \"2603:1030:401:15a::/63\",\r\n
+ \ \"2603:1030:401:15c::/62\",\r\n \"2603:1030:401:160::/61\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:406::/47\",\r\n
+ \ \"2603:1030:408::/48\",\r\n \"2603:1030:40a:1::/64\",\r\n
+ \ \"2603:1030:40a:2::/64\",\r\n \"2603:1030:40c::/48\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1037:1::/59\",\r\n \"2603:1039:205::/48\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:f908::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2euap\",\r\n
+ \ \"id\": \"AzureCloud.eastus2euap\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.216.0/24\",\r\n \"13.105.52.32/27\",\r\n
+ \ \"13.105.52.64/28\",\r\n \"13.105.52.96/27\",\r\n \"13.105.60.160/27\",\r\n
+ \ \"13.105.61.0/28\",\r\n \"13.105.61.32/27\",\r\n \"20.39.0.0/19\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.128.0/17\",\r\n
+ \ \"20.51.16.0/21\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n \"20.150.108.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.149.0/24\",\r\n \"40.70.88.0/28\",\r\n
+ \ \"40.74.144.0/20\",\r\n \"40.75.32.0/21\",\r\n \"40.78.208.0/28\",\r\n
+ \ \"40.79.88.0/27\",\r\n \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n
+ \ \"40.79.96.0/19\",\r\n \"40.87.168.4/30\",\r\n \"40.87.168.40/29\",\r\n
+ \ \"40.87.168.68/31\",\r\n \"40.87.168.208/31\",\r\n \"40.87.169.40/30\",\r\n
+ \ \"40.87.169.58/31\",\r\n \"40.87.169.98/31\",\r\n \"40.87.169.100/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.144/28\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.188/30\",\r\n \"40.87.170.192/31\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.220/30\",\r\n \"40.87.170.224/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.32/30\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.89.64.0/18\",\r\n \"40.90.129.96/27\",\r\n \"40.90.137.32/27\",\r\n
+ \ \"40.90.146.192/27\",\r\n \"40.91.12.0/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.96.46.0/24\",\r\n \"40.96.55.0/24\",\r\n
+ \ \"40.126.10.0/25\",\r\n \"40.126.21.0/24\",\r\n \"52.108.116.0/24\",\r\n
+ \ \"52.138.64.0/20\",\r\n \"52.138.88.0/21\",\r\n \"52.143.212.0/23\",\r\n
+ \ \"52.147.128.0/19\",\r\n \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n
+ \ \"52.225.136.48/28\",\r\n \"52.225.144.0/20\",\r\n \"52.225.160.0/19\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\",\r\n \"52.245.45.144/28\",\r\n \"52.245.46.32/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.253.150.0/23\",\r\n
+ \ \"52.253.152.0/23\",\r\n \"52.253.224.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"198.180.97.0/24\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:16::/64\",\r\n \"2603:1030:401:59::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:8e::/64\",\r\n \"2603:1030:401:92::/63\",\r\n
+ \ \"2603:1030:401:a6::/64\",\r\n \"2603:1030:401:121::/64\",\r\n
+ \ \"2603:1030:401:122::/63\",\r\n \"2603:1030:401:136::/63\",\r\n
+ \ \"2603:1030:401:138::/64\",\r\n \"2603:1030:401:13c::/62\",\r\n
+ \ \"2603:1030:401:140::/63\",\r\n \"2603:1030:401:142::/64\",\r\n
+ \ \"2603:1030:401:146::/63\",\r\n \"2603:1030:401:148::/63\",\r\n
+ \ \"2603:1030:401:156::/63\",\r\n \"2603:1030:401:158::/64\",\r\n
+ \ \"2603:1030:401:168::/63\",\r\n \"2603:1030:401:16d::/64\",\r\n
+ \ \"2603:1030:401:16e::/63\",\r\n \"2603:1030:401:170::/61\",\r\n
+ \ \"2603:1030:401:178::/62\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40d::/60\",\r\n \"2603:1036:903:1::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:240a::/48\",\r\n
+ \ \"2603:1036:2500:4::/64\",\r\n \"2603:1036:3000:20::/59\",\r\n
+ \ \"2603:1037:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.germanyn\",\r\n \"id\": \"AzureCloud.germanyn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.212.64/26\",\r\n \"20.38.115.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.84.0/23\",\r\n \"20.52.72.0/21\",\r\n \"20.52.80.32/27\",\r\n
+ \ \"20.135.56.0/23\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"40.82.72.0/22\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.128.240/28\",\r\n \"40.119.96.0/22\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.198.0/24\",\r\n \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n
+ \ \"51.116.200.0/21\",\r\n \"51.116.208.0/20\",\r\n \"52.108.76.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.109.102.0/23\",\r\n \"52.111.254.0/24\",\r\n
+ \ \"52.114.240.0/24\",\r\n \"52.253.172.0/24\",\r\n \"2603:1020:d00::/47\",\r\n
+ \ \"2603:1020:d03::/48\",\r\n \"2603:1020:d04::/48\",\r\n
+ \ \"2603:1026:2411::/48\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:220::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.germanywc\",\r\n
+ \ \"id\": \"AzureCloud.germanywc\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.224/27\",\r\n \"13.104.145.128/27\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n
+ \ \"13.105.74.96/27\",\r\n \"13.105.74.192/26\",\r\n \"20.38.118.0/24\",\r\n
+ \ \"20.47.27.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.112.0/24\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.80.0/27\",\r\n
+ \ \"20.52.80.64/27\",\r\n \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n
+ \ \"20.52.128.0/17\",\r\n \"20.60.22.0/23\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"40.82.68.0/22\",\r\n \"40.90.129.48/28\",\r\n \"40.90.140.0/27\",\r\n
+ \ \"40.90.147.32/27\",\r\n \"40.90.151.160/27\",\r\n \"40.119.92.0/22\",\r\n
+ \ \"40.126.62.64/26\",\r\n \"40.126.197.0/24\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.224.0/19\",\r\n
+ \ \"52.108.178.0/24\",\r\n \"52.108.199.0/24\",\r\n \"52.109.104.0/23\",\r\n
+ \ \"52.111.255.0/24\",\r\n \"52.114.244.0/24\",\r\n \"52.253.169.0/24\",\r\n
+ \ \"52.253.170.0/23\",\r\n \"2603:1020:c00::/47\",\r\n \"2603:1020:c03::/48\",\r\n
+ \ \"2603:1020:c04::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:2500:14::/64\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japaneast\",\r\n \"id\": \"AzureCloud.japaneast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.128.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.150.128/26\",\r\n \"13.104.221.0/24\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.38.116.0/23\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.43.64.0/19\",\r\n \"20.44.128.0/18\",\r\n
+ \ \"20.46.112.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.47.101.0/24\",\r\n \"20.48.0.0/17\",\r\n \"20.60.172.0/23\",\r\n
+ \ \"20.63.128.0/18\",\r\n \"20.78.0.0/17\",\r\n \"20.78.192.0/18\",\r\n
+ \ \"20.89.0.0/17\",\r\n \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n
+ \ \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.188.0.0/19\",\r\n \"20.190.141.128/25\",\r\n \"20.190.166.0/24\",\r\n
+ \ \"20.191.160.0/19\",\r\n \"20.194.128.0/17\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.100.96.0/21\",\r\n \"23.102.64.0/19\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.206.96/27\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.82.48.0/22\",\r\n \"40.87.200.0/22\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.128.80/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.192/28\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.152.192/27\",\r\n \"40.90.158.0/26\",\r\n \"40.115.128.0/17\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.38.0/24\",\r\n \"52.108.191.0/24\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.109.52.0/22\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.113.78.0/23\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.107.0/24\",\r\n \"52.113.133.0/24\",\r\n
+ \ \"52.114.32.0/22\",\r\n \"52.115.38.0/24\",\r\n \"52.115.47.0/24\",\r\n
+ \ \"52.121.120.0/23\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.136.31.0/24\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.155.96.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.185.128.0/18\",\r\n
+ \ \"52.232.155.0/24\",\r\n \"52.239.144.0/23\",\r\n \"52.243.32.0/19\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.246.160.0/19\",\r\n \"52.253.96.0/19\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"104.41.160.0/19\",\r\n \"104.44.88.224/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.94.112/28\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"138.91.0.0/20\",\r\n \"191.237.240.0/23\",\r\n \"2603:1040:400::/46\",\r\n
+ \ \"2603:1040:404::/48\",\r\n \"2603:1040:406::/48\",\r\n
+ \ \"2603:1040:407::/48\",\r\n \"2603:1046:1402::/48\",\r\n
+ \ \"2603:1046:1500:18::/64\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1047:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japanwest\",\r\n \"id\": \"AzureCloud.japanwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.73.232.0/21\",\r\n
+ \ \"20.39.176.0/21\",\r\n \"20.47.10.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n
+ \ \"20.63.192.0/18\",\r\n \"20.78.128.0/18\",\r\n \"20.135.48.0/23\",\r\n
+ \ \"20.150.10.0/23\",\r\n \"20.157.56.0/24\",\r\n \"20.189.192.0/18\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.165.0/24\",\r\n \"23.98.56.0/24\",\r\n
+ \ \"23.100.104.0/21\",\r\n \"40.74.64.0/18\",\r\n \"40.74.128.0/20\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.80.56.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.81.176.0/20\",\r\n \"40.82.100.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.137.0/27\",\r\n \"40.90.142.208/28\",\r\n \"40.90.156.0/26\",\r\n
+ \ \"40.126.13.0/25\",\r\n \"40.126.37.0/24\",\r\n \"52.108.46.0/23\",\r\n
+ \ \"52.108.86.0/24\",\r\n \"52.109.132.0/22\",\r\n \"52.111.233.0/24\",\r\n
+ \ \"52.112.88.0/22\",\r\n \"52.113.14.0/24\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.100.0/22\",\r\n \"52.115.104.0/23\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.116.0/22\",\r\n
+ \ \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.175.128.0/18\",\r\n \"52.232.158.0/24\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"52.245.92.0/22\",\r\n \"104.44.92.0/27\",\r\n \"104.44.94.128/28\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.214.128.0/19\",\r\n \"104.215.0.0/18\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"191.233.32.0/20\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n
+ \ \"191.238.92.0/23\",\r\n \"191.239.96.0/20\",\r\n \"2603:1040:600::/46\",\r\n
+ \ \"2603:1040:605::/48\",\r\n \"2603:1040:606::/48\",\r\n
+ \ \"2603:1046:1403::/48\",\r\n \"2603:1046:1500:14::/64\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1047:1:a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreacentral\",\r\n
+ \ \"id\": \"AzureCloud.koreacentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.129.192/26\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.105.20.0/25\",\r\n \"13.105.96.112/28\",\r\n \"13.105.97.32/27\",\r\n
+ \ \"13.105.97.64/27\",\r\n \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.44.24.0/21\",\r\n \"20.47.46.0/24\",\r\n
+ \ \"20.47.90.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.150.4.0/23\",\r\n \"20.190.144.128/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.180.0/24\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.80.36.0/22\",\r\n \"40.82.128.0/19\",\r\n
+ \ \"40.90.17.224/27\",\r\n \"40.90.128.176/28\",\r\n \"40.90.131.128/27\",\r\n
+ \ \"40.90.139.128/27\",\r\n \"40.90.156.64/27\",\r\n \"40.126.16.128/25\",\r\n
+ \ \"40.126.20.128/25\",\r\n \"40.126.52.0/24\",\r\n \"52.108.48.0/23\",\r\n
+ \ \"52.108.87.0/24\",\r\n \"52.109.44.0/22\",\r\n \"52.111.194.0/24\",\r\n
+ \ \"52.114.44.0/22\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.141.0.0/18\",\r\n
+ \ \"52.231.0.0/17\",\r\n \"52.232.145.0/24\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.164.192/26\",\r\n \"52.239.190.128/26\",\r\n \"52.245.112.0/22\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1047:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreasouth\",\r\n
+ \ \"id\": \"AzureCloud.koreasouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.157.0/25\",\r\n \"20.39.168.0/21\",\r\n \"20.47.47.0/24\",\r\n
+ \ \"20.47.91.0/24\",\r\n \"20.135.26.0/23\",\r\n \"20.135.30.0/23\",\r\n
+ \ \"20.150.14.0/23\",\r\n \"20.190.148.0/25\",\r\n \"20.190.179.0/24\",\r\n
+ \ \"20.200.128.0/18\",\r\n \"40.79.220.0/24\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.168.0/21\",\r\n \"40.80.224.0/20\",\r\n \"40.89.192.0/19\",\r\n
+ \ \"40.90.131.160/27\",\r\n \"40.90.139.160/27\",\r\n \"40.90.157.32/27\",\r\n
+ \ \"40.126.20.0/25\",\r\n \"40.126.51.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.226.0/23\",\r\n \"52.109.48.0/22\",\r\n \"52.111.234.0/24\",\r\n
+ \ \"52.113.110.0/23\",\r\n \"52.114.48.0/22\",\r\n \"52.147.96.0/19\",\r\n
+ \ \"52.231.128.0/17\",\r\n \"52.232.144.0/24\",\r\n \"52.239.165.0/26\",\r\n
+ \ \"52.239.165.160/27\",\r\n \"52.239.190.192/26\",\r\n \"52.245.100.0/22\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1046:1405::/48\",\r\n \"2603:1046:1500:1c::/64\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1047:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northcentralus\",\r\n
+ \ \"id\": \"AzureCloud.northcentralus\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.26.0/24\",\r\n \"13.105.28.16/28\",\r\n \"13.105.29.0/25\",\r\n
+ \ \"13.105.37.64/26\",\r\n \"13.105.37.128/26\",\r\n \"20.36.96.0/21\",\r\n
+ \ \"20.41.128.0/18\",\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n
+ \ \"20.47.107.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.49.112.0/21\",\r\n
+ \ \"20.51.0.0/21\",\r\n \"20.59.192.0/18\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.66.128.0/17\",\r\n \"20.72.32.0/19\",\r\n
+ \ \"20.80.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.135.12.0/22\",\r\n
+ \ \"20.135.70.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"20.190.135.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"23.96.128.0/17\",\r\n \"23.98.48.0/21\",\r\n \"23.100.72.0/21\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.101.160.0/20\",\r\n \"40.77.131.224/28\",\r\n
+ \ \"40.77.136.96/28\",\r\n \"40.77.137.192/27\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.176.0/24\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.183.0/24\",\r\n \"40.77.188.0/22\",\r\n \"40.77.196.0/24\",\r\n
+ \ \"40.77.198.64/26\",\r\n \"40.77.200.128/25\",\r\n \"40.77.224.0/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.231.0/24\",\r\n \"40.77.234.0/25\",\r\n
+ \ \"40.77.236.32/27\",\r\n \"40.77.236.160/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.248.128/25\",\r\n \"40.77.254.0/26\",\r\n \"40.77.255.192/26\",\r\n
+ \ \"40.78.208.64/28\",\r\n \"40.78.222.0/24\",\r\n \"40.80.184.0/21\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.87.172.0/22\",\r\n \"40.90.19.64/26\",\r\n
+ \ \"40.90.132.96/27\",\r\n \"40.90.133.128/28\",\r\n \"40.90.135.64/26\",\r\n
+ \ \"40.90.140.128/27\",\r\n \"40.90.144.32/27\",\r\n \"40.90.155.192/26\",\r\n
+ \ \"40.91.24.0/22\",\r\n \"40.116.0.0/16\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.28.0/24\",\r\n \"52.108.182.0/24\",\r\n \"52.108.203.0/24\",\r\n
+ \ \"52.109.16.0/22\",\r\n \"52.111.235.0/24\",\r\n \"52.112.94.0/24\",\r\n
+ \ \"52.113.198.0/24\",\r\n \"52.114.168.0/22\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.162.0.0/16\",\r\n \"52.232.156.0/24\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"52.240.128.0/17\",\r\n \"52.245.72.0/22\",\r\n \"52.252.128.0/17\",\r\n
+ \ \"65.52.0.0/19\",\r\n \"65.52.48.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.192.0/19\",\r\n \"65.52.232.0/21\",\r\n
+ \ \"65.52.240.0/21\",\r\n \"65.55.60.176/29\",\r\n \"65.55.105.192/27\",\r\n
+ \ \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n \"65.55.109.0/24\",\r\n
+ \ \"65.55.211.0/27\",\r\n \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n
+ \ \"65.55.213.0/27\",\r\n \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n
+ \ \"104.44.88.128/27\",\r\n \"104.44.91.128/27\",\r\n \"104.44.94.64/28\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n
+ \ \"131.253.12.48/29\",\r\n \"131.253.12.192/28\",\r\n \"131.253.12.248/29\",\r\n
+ \ \"131.253.13.0/28\",\r\n \"131.253.13.32/28\",\r\n \"131.253.14.32/27\",\r\n
+ \ \"131.253.14.160/27\",\r\n \"131.253.14.248/29\",\r\n \"131.253.15.32/27\",\r\n
+ \ \"131.253.15.208/28\",\r\n \"131.253.15.224/27\",\r\n \"131.253.25.0/24\",\r\n
+ \ \"131.253.27.0/24\",\r\n \"131.253.36.128/26\",\r\n \"131.253.38.32/27\",\r\n
+ \ \"131.253.38.224/27\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.192/26\",\r\n \"157.55.24.0/21\",\r\n
+ \ \"157.55.55.0/27\",\r\n \"157.55.55.32/28\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n \"157.55.55.216/29\",\r\n
+ \ \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n \"157.55.106.128/25\",\r\n
+ \ \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n \"157.55.136.0/21\",\r\n
+ \ \"157.55.151.0/28\",\r\n \"157.55.160.0/20\",\r\n \"157.55.208.0/21\",\r\n
+ \ \"157.55.248.0/21\",\r\n \"157.56.8.0/21\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.216.0/26\",\r\n
+ \ \"168.62.96.0/19\",\r\n \"168.62.224.0/19\",\r\n \"191.233.144.0/20\",\r\n
+ \ \"191.236.128.0/18\",\r\n \"199.30.31.0/25\",\r\n \"204.79.180.0/24\",\r\n
+ \ \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n \"207.46.198.128/25\",\r\n
+ \ \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n \"207.46.202.128/28\",\r\n
+ \ \"207.46.205.0/24\",\r\n \"207.68.174.40/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"2603:1030:600::/46\",\r\n \"2603:1030:604::/47\",\r\n
+ \ \"2603:1030:607::/48\",\r\n \"2603:1030:608::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2500:8::/64\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1037:1:60::/59\",\r\n
+ \ \"2a01:111:f100:1000::/62\",\r\n \"2a01:111:f100:1004::/63\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northeurope\",\r\n
+ \ \"id\": \"AzureCloud.northeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.128.0/17\",\r\n \"13.70.192.0/18\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.94.64.0/18\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.105.18.0/26\",\r\n \"13.105.21.0/24\",\r\n
+ \ \"13.105.28.48/28\",\r\n \"13.105.37.192/26\",\r\n \"13.105.60.192/26\",\r\n
+ \ \"13.105.67.0/25\",\r\n \"13.105.96.128/25\",\r\n \"20.38.64.0/19\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.47.111.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n \"20.54.0.0/17\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n \"20.60.144.0/23\",\r\n
+ \ \"20.67.128.0/17\",\r\n \"20.82.128.0/17\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n \"20.150.104.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.159.0/24\",\r\n \"20.191.0.0/18\",\r\n
+ \ \"23.100.48.0/20\",\r\n \"23.100.128.0/18\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.102.0.0/18\",\r\n \"40.67.224.0/19\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.192.0/19\",\r\n \"40.77.133.0/24\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.80/28\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.174.0/24\",\r\n \"40.77.175.160/27\",\r\n \"40.77.182.96/27\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.229.0/24\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.176/28\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.78.211.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.87.128.0/19\",\r\n \"40.87.188.0/22\",\r\n \"40.90.17.192/27\",\r\n
+ \ \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n \"40.90.31.128/25\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.129.192/27\",\r\n \"40.90.130.224/28\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.136.176/28\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.140.64/27\",\r\n \"40.90.141.96/27\",\r\n \"40.90.141.128/27\",\r\n
+ \ \"40.90.145.0/27\",\r\n \"40.90.145.224/27\",\r\n \"40.90.147.96/27\",\r\n
+ \ \"40.90.148.160/28\",\r\n \"40.90.149.128/25\",\r\n \"40.90.153.128/25\",\r\n
+ \ \"40.91.20.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.112.36.0/25\",\r\n
+ \ \"40.112.37.64/26\",\r\n \"40.112.64.0/19\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.115.96.0/19\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.31.0/24\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.104.64.0/18\",\r\n \"51.104.128.0/18\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.196.0/24\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.109.76.0/22\",\r\n \"52.111.236.0/24\",\r\n \"52.112.191.0/24\",\r\n
+ \ \"52.112.229.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.236.0/24\",\r\n
+ \ \"52.113.40.0/21\",\r\n \"52.113.48.0/20\",\r\n \"52.113.112.0/20\",\r\n
+ \ \"52.113.136.0/21\",\r\n \"52.113.205.0/24\",\r\n \"52.114.76.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.120.0/22\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.233.0/24\",\r\n \"52.114.248.0/22\",\r\n \"52.115.16.0/21\",\r\n
+ \ \"52.115.24.0/22\",\r\n \"52.120.136.0/21\",\r\n \"52.120.192.0/20\",\r\n
+ \ \"52.121.16.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.125.138.0/23\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.142.64.0/18\",\r\n \"52.143.195.0/24\",\r\n
+ \ \"52.143.209.0/24\",\r\n \"52.146.128.0/17\",\r\n \"52.155.64.0/19\",\r\n
+ \ \"52.155.128.0/17\",\r\n \"52.156.192.0/18\",\r\n \"52.158.0.0/17\",\r\n
+ \ \"52.164.0.0/16\",\r\n \"52.169.0.0/16\",\r\n \"52.178.128.0/17\",\r\n
+ \ \"52.232.148.0/24\",\r\n \"52.236.0.0/17\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"65.52.64.0/20\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.192.0/18\",\r\n \"104.44.88.64/27\",\r\n \"104.44.91.64/27\",\r\n
+ \ \"104.44.92.192/27\",\r\n \"104.44.94.32/28\",\r\n \"104.45.80.0/20\",\r\n
+ \ \"104.45.96.0/19\",\r\n \"104.46.8.0/21\",\r\n \"104.46.64.0/19\",\r\n
+ \ \"104.47.218.0/23\",\r\n \"131.253.40.80/28\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.135.128.0/17\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"157.55.3.0/24\",\r\n \"157.55.10.160/29\",\r\n \"157.55.10.176/28\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.107.0/24\",\r\n \"157.55.204.128/25\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.63.32.0/19\",\r\n
+ \ \"168.63.64.0/20\",\r\n \"168.63.80.0/21\",\r\n \"168.63.92.0/22\",\r\n
+ \ \"191.232.138.0/23\",\r\n \"191.235.128.0/18\",\r\n \"191.235.192.0/22\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.255.0/24\",\r\n \"191.237.192.0/23\",\r\n
+ \ \"191.237.194.0/24\",\r\n \"191.237.196.0/24\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.239.208.0/20\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n \"2603:1020:4::/48\",\r\n
+ \ \"2603:1020:5::/48\",\r\n \"2603:1026:2404::/48\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.norwaye\",\r\n \"id\": \"AzureCloud.norwaye\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.32/27\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.38.120.0/24\",\r\n \"20.47.48.0/24\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\",\r\n
+ \ \"20.157.2.0/24\",\r\n \"20.190.185.0/24\",\r\n \"40.82.84.0/22\",\r\n
+ \ \"40.119.104.0/22\",\r\n \"40.126.57.0/24\",\r\n \"40.126.200.0/24\",\r\n
+ \ \"51.13.0.0/17\",\r\n \"51.107.208.0/20\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.208.0/21\",\r\n \"51.120.232.0/21\",\r\n \"51.120.240.0/20\",\r\n
+ \ \"52.108.77.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.109.86.0/23\",\r\n
+ \ \"52.111.197.0/24\",\r\n \"52.114.234.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1026:240e::/48\",\r\n \"2603:1026:2500:28::/64\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1027:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.norwayw\",\r\n
+ \ \"id\": \"AzureCloud.norwayw\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.153.48/28\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.155.0/27\",\r\n \"13.104.217.128/25\",\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.135.58.0/23\",\r\n \"20.150.0.0/24\",\r\n
+ \ \"20.150.56.0/24\",\r\n \"20.157.3.0/24\",\r\n \"20.190.186.0/24\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.126.58.0/24\",\r\n \"40.126.201.0/24\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"52.108.177.0/24\",\r\n
+ \ \"52.108.198.0/24\",\r\n \"52.109.144.0/23\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.114.238.0/24\",\r\n \"52.253.167.0/24\",\r\n \"2603:1020:f00::/47\",\r\n
+ \ \"2603:1020:f03::/48\",\r\n \"2603:1020:f04::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:2500:10::/64\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1027:1:80::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricanorth\",\r\n
+ \ \"id\": \"AzureCloud.southafricanorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.192/27\",\r\n \"13.105.27.224/27\",\r\n \"20.38.114.128/25\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.47.50.0/24\",\r\n \"20.47.92.0/24\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.87.0.0/18\",\r\n \"20.135.78.0/23\",\r\n
+ \ \"20.135.80.0/22\",\r\n \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.190.190.0/26\",\r\n \"40.79.203.0/24\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.120.0/22\",\r\n \"40.90.19.0/27\",\r\n
+ \ \"40.90.128.144/28\",\r\n \"40.90.130.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.143.128/27\",\r\n \"40.90.151.64/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.120.16.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.127.0.0/19\",\r\n \"52.108.54.0/23\",\r\n
+ \ \"52.108.90.0/24\",\r\n \"52.109.150.0/23\",\r\n \"52.111.237.0/24\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.224.0/24\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.239.232.0/25\",\r\n
+ \ \"102.37.0.0/20\",\r\n \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.72.0/21\",\r\n
+ \ \"102.37.96.0/19\",\r\n \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n
+ \ \"102.37.192.0/18\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1007:200::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricawest\",\r\n
+ \ \"id\": \"AzureCloud.southafricawest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.160/27\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.45.136.0/21\",\r\n \"20.47.51.0/24\",\r\n \"20.47.93.0/24\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.135.32.0/23\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"40.78.209.0/24\",\r\n \"40.82.64.0/22\",\r\n
+ \ \"40.90.17.0/27\",\r\n \"40.90.128.96/28\",\r\n \"40.90.152.224/27\",\r\n
+ \ \"40.117.0.0/19\",\r\n \"40.119.68.0/22\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"52.108.187.0/24\",\r\n \"52.108.220.0/23\",\r\n \"52.109.152.0/23\",\r\n
+ \ \"52.111.238.0/24\",\r\n \"52.114.228.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.239.232.128/25\",\r\n \"102.37.26.0/27\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.80.0/21\",\r\n \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n
+ \ \"102.133.96.0/20\",\r\n \"102.133.112.0/28\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200:20::/59\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southcentralus\",\r\n \"id\": \"AzureCloud.southcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.65.0.0/16\",\r\n
+ \ \"13.66.0.0/17\",\r\n \"13.73.240.0/20\",\r\n \"13.84.0.0/15\",\r\n
+ \ \"13.104.144.64/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.217.0/25\",\r\n
+ \ \"13.104.220.128/25\",\r\n \"13.105.23.0/26\",\r\n \"13.105.25.0/24\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.66.192/26\",\r\n \"20.38.104.0/23\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.120.0/21\",\r\n \"20.47.0.0/24\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.29.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.100.0/24\",\r\n \"20.49.88.0/21\",\r\n \"20.60.48.0/22\",\r\n
+ \ \"20.60.64.0/22\",\r\n \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n
+ \ \"20.60.160.0/23\",\r\n \"20.64.0.0/17\",\r\n \"20.65.128.0/17\",\r\n
+ \ \"20.88.192.0/18\",\r\n \"20.135.8.0/22\",\r\n \"20.135.216.0/22\",\r\n
+ \ \"20.135.220.0/23\",\r\n \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n
+ \ \"20.150.70.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n
+ \ \"20.150.94.0/24\",\r\n \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n
+ \ \"20.188.64.0/19\",\r\n \"20.189.0.0/18\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"23.98.128.0/17\",\r\n \"23.100.120.0/21\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.102.128.0/18\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n
+ \ \"40.77.131.128/26\",\r\n \"40.77.172.0/24\",\r\n \"40.77.199.0/25\",\r\n
+ \ \"40.77.225.0/24\",\r\n \"40.78.214.0/24\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.207.80/28\",\r\n \"40.79.207.128/25\",\r\n
+ \ \"40.80.192.0/19\",\r\n \"40.84.128.0/17\",\r\n \"40.86.128.0/19\",\r\n
+ \ \"40.87.176.0/25\",\r\n \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n
+ \ \"40.87.176.174/31\",\r\n \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n
+ \ \"40.87.176.216/29\",\r\n \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n
+ \ \"40.87.176.240/28\",\r\n \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n
+ \ \"40.87.177.64/27\",\r\n \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n
+ \ \"40.87.177.120/31\",\r\n \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n
+ \ \"40.87.177.144/29\",\r\n \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n
+ \ \"40.87.177.160/27\",\r\n \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n
+ \ \"40.87.177.212/30\",\r\n \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n
+ \ \"40.87.178.0/26\",\r\n \"40.87.178.64/29\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.18.64/26\",\r\n \"40.90.27.64/26\",\r\n \"40.90.27.128/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.30.160/27\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.133.96/28\",\r\n \"40.90.135.128/25\",\r\n
+ \ \"40.90.136.160/28\",\r\n \"40.90.145.160/27\",\r\n \"40.90.148.0/26\",\r\n
+ \ \"40.90.152.160/27\",\r\n \"40.90.155.0/26\",\r\n \"40.91.16.0/22\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.119.0.0/18\",\r\n \"40.124.0.0/16\",\r\n
+ \ \"40.126.0.0/24\",\r\n \"40.126.29.0/24\",\r\n \"52.101.11.0/24\",\r\n
+ \ \"52.101.12.0/22\",\r\n \"52.102.132.0/24\",\r\n \"52.103.6.0/24\",\r\n
+ \ \"52.103.132.0/24\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.248.0/21\",\r\n \"52.109.20.0/22\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.112.24.0/21\",\r\n \"52.112.117.0/24\",\r\n
+ \ \"52.113.160.0/19\",\r\n \"52.113.206.0/24\",\r\n \"52.114.144.0/22\",\r\n
+ \ \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.152.0/22\",\r\n \"52.121.0.0/21\",\r\n
+ \ \"52.123.3.0/24\",\r\n \"52.125.137.0/24\",\r\n \"52.141.64.0/18\",\r\n
+ \ \"52.152.0.0/17\",\r\n \"52.153.64.0/18\",\r\n \"52.153.192.0/18\",\r\n
+ \ \"52.171.0.0/16\",\r\n \"52.183.192.0/18\",\r\n \"52.185.192.0/18\",\r\n
+ \ \"52.189.128.0/18\",\r\n \"52.232.159.0/24\",\r\n \"52.239.158.0/23\",\r\n
+ \ \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n
+ \ \"52.239.200.0/23\",\r\n \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.248.0.0/17\",\r\n \"52.249.0.0/18\",\r\n
+ \ \"52.253.0.0/18\",\r\n \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"65.52.32.0/21\",\r\n \"65.54.55.160/27\",\r\n
+ \ \"65.54.55.224/27\",\r\n \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n
+ \ \"70.37.160.0/21\",\r\n \"104.44.89.0/27\",\r\n \"104.44.89.64/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.94.160/27\",\r\n \"104.44.128.0/18\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.210.128.0/19\",\r\n \"104.210.176.0/20\",\r\n
+ \ \"104.210.192.0/19\",\r\n \"104.214.0.0/17\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"131.253.40.64/28\",\r\n \"157.55.51.224/28\",\r\n \"157.55.80.0/21\",\r\n
+ \ \"157.55.103.32/27\",\r\n \"157.55.153.224/28\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"168.62.128.0/19\",\r\n \"191.238.144.0/20\",\r\n \"191.238.160.0/19\",\r\n
+ \ \"191.238.224.0/19\",\r\n \"2603:1030:800::/48\",\r\n \"2603:1030:802::/47\",\r\n
+ \ \"2603:1030:804::/58\",\r\n \"2603:1030:804:40::/60\",\r\n
+ \ \"2603:1030:804:53::/64\",\r\n \"2603:1030:804:54::/64\",\r\n
+ \ \"2603:1030:804:5b::/64\",\r\n \"2603:1030:804:5c::/62\",\r\n
+ \ \"2603:1030:804:60::/62\",\r\n \"2603:1030:804:67::/64\",\r\n
+ \ \"2603:1030:804:68::/61\",\r\n \"2603:1030:804:70::/60\",\r\n
+ \ \"2603:1030:804:80::/59\",\r\n \"2603:1030:804:a0::/62\",\r\n
+ \ \"2603:1030:804:a4::/64\",\r\n \"2603:1030:804:a6::/63\",\r\n
+ \ \"2603:1030:804:a8::/61\",\r\n \"2603:1030:804:b0::/62\",\r\n
+ \ \"2603:1030:804:b4::/64\",\r\n \"2603:1030:804:b6::/63\",\r\n
+ \ \"2603:1030:804:b8::/61\",\r\n \"2603:1030:804:c0::/61\",\r\n
+ \ \"2603:1030:804:c8::/62\",\r\n \"2603:1030:804:cc::/63\",\r\n
+ \ \"2603:1030:804:d2::/63\",\r\n \"2603:1030:804:d4::/62\",\r\n
+ \ \"2603:1030:804:d8::/61\",\r\n \"2603:1030:804:e0::/59\",\r\n
+ \ \"2603:1030:804:100::/61\",\r\n \"2603:1030:804:108::/62\",\r\n
+ \ \"2603:1030:805::/48\",\r\n \"2603:1030:806::/48\",\r\n
+ \ \"2603:1030:807::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2500:24::/64\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1037:1:140::/59\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f403:c10c::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:f90c::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southeastasia\",\r\n \"id\": \"AzureCloud.southeastasia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.0.0/17\",\r\n
+ \ \"13.76.0.0/16\",\r\n \"13.104.149.0/26\",\r\n \"13.104.153.0/27\",\r\n
+ \ \"13.104.153.32/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.192/26\",\r\n
+ \ \"13.104.154.0/25\",\r\n \"13.104.213.128/25\",\r\n \"20.43.128.0/18\",\r\n
+ \ \"20.44.192.0/18\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.98.0/24\",\r\n \"20.60.136.0/24\",\r\n
+ \ \"20.60.138.0/23\",\r\n \"20.135.84.0/22\",\r\n \"20.135.88.0/23\",\r\n
+ \ \"20.150.17.128/25\",\r\n \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.184.0.0/18\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.140.0/25\",\r\n \"20.190.163.0/24\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n \"20.197.64.0/18\",\r\n
+ \ \"20.198.128.0/17\",\r\n \"23.97.48.0/20\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.101.16.0/20\",\r\n \"40.65.128.0/18\",\r\n
+ \ \"40.78.223.0/24\",\r\n \"40.78.232.0/21\",\r\n \"40.79.206.32/27\",\r\n
+ \ \"40.82.28.0/22\",\r\n \"40.87.196.0/22\",\r\n \"40.90.133.192/26\",\r\n
+ \ \"40.90.134.0/26\",\r\n \"40.90.137.64/27\",\r\n \"40.90.138.96/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.224/27\",\r\n \"40.90.154.128/26\",\r\n
+ \ \"40.90.160.0/19\",\r\n \"40.119.192.0/18\",\r\n \"40.126.12.0/25\",\r\n
+ \ \"40.126.35.0/24\",\r\n \"52.108.68.0/23\",\r\n \"52.108.91.0/24\",\r\n
+ \ \"52.108.184.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.236.0/22\",\r\n \"52.109.124.0/22\",\r\n \"52.111.240.0/24\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.131.0/24\",\r\n
+ \ \"52.114.8.0/21\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.80.0/22\",\r\n \"52.114.216.0/22\",\r\n \"52.115.32.0/22\",\r\n
+ \ \"52.115.36.0/23\",\r\n \"52.115.97.0/24\",\r\n \"52.120.144.0/21\",\r\n
+ \ \"52.120.156.0/24\",\r\n \"52.121.128.0/20\",\r\n \"52.121.144.0/21\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.139.192.0/18\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.210.0/24\",\r\n \"52.148.64.0/18\",\r\n \"52.163.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.237.64.0/18\",\r\n \"52.239.129.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n \"52.245.80.0/22\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"104.43.0.0/17\",\r\n \"104.44.89.32/27\",\r\n
+ \ \"104.44.90.128/27\",\r\n \"104.44.92.32/27\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.95.192/28\",\r\n \"104.44.95.224/28\",\r\n \"104.215.128.0/17\",\r\n
+ \ \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n \"137.116.128.0/19\",\r\n
+ \ \"138.91.32.0/20\",\r\n \"168.63.90.0/24\",\r\n \"168.63.91.0/26\",\r\n
+ \ \"168.63.160.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.238.64.0/23\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.224.0/20\",\r\n \"2603:1040::/47\",\r\n
+ \ \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n \"2603:1040:5::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:2000:180::/59\",\r\n \"2603:1047:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southfrance\",\r\n
+ \ \"id\": \"AzureCloud.southfrance\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.39.80.0/20\",\r\n \"20.47.28.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.150.19.0/24\",\r\n \"20.190.147.128/25\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"40.79.176.0/21\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.96.0/20\",\r\n \"40.82.224.0/20\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.136.192/27\",\r\n \"40.90.147.224/27\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.50.0/24\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.138.128.0/19\",\r\n \"51.138.160.0/21\",\r\n \"52.108.188.0/24\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.109.72.0/22\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.114.108.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.128.0/18\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\",\r\n
+ \ \"52.245.120.0/22\",\r\n \"2603:1020:900::/47\",\r\n \"2603:1020:902::/48\",\r\n
+ \ \"2603:1020:904::/48\",\r\n \"2603:1020:905::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:3000:1a0::/59\",\r\n \"2603:1027:1:1a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southindia\",\r\n
+ \ \"id\": \"AzureCloud.southindia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.64.0/18\",\r\n \"13.104.153.128/26\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.41.192.0/18\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.72.0/23\",\r\n \"20.60.10.0/24\",\r\n
+ \ \"20.135.42.0/23\",\r\n \"20.150.24.0/24\",\r\n \"20.190.145.128/25\",\r\n
+ \ \"20.190.174.0/24\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"40.78.192.0/21\",\r\n \"40.79.213.0/24\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.87.216.0/22\",\r\n \"40.90.26.64/26\",\r\n \"40.90.137.160/27\",\r\n
+ \ \"40.126.17.128/25\",\r\n \"40.126.46.0/24\",\r\n \"52.108.192.0/24\",\r\n
+ \ \"52.108.230.0/23\",\r\n \"52.109.60.0/22\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.113.15.0/24\",\r\n \"52.114.24.0/22\",\r\n \"52.136.17.0/24\",\r\n
+ \ \"52.140.0.0/18\",\r\n \"52.172.0.0/17\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.188.0/24\",\r\n \"52.245.84.0/22\",\r\n \"104.44.92.160/27\",\r\n
+ \ \"104.44.94.208/28\",\r\n \"104.47.214.0/23\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"2603:1040:c00::/46\",\r\n \"2603:1040:c05::/48\",\r\n
+ \ \"2603:1040:c06::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:2000:60::/59\",\r\n
+ \ \"2603:1047:1:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.switzerlandn\",\r\n \"id\": \"AzureCloud.switzerlandn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.32/27\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"20.47.53.0/24\",\r\n \"20.47.71.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.190.183.0/24\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"40.90.30.128/27\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.119.80.0/22\",\r\n \"40.126.55.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"51.103.128.0/18\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.107.0.0/18\",\r\n \"51.107.64.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.200.0/21\",\r\n \"51.107.240.0/21\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.96.0/24\",\r\n \"52.109.156.0/23\",\r\n \"52.111.202.0/24\",\r\n
+ \ \"52.114.226.0/24\",\r\n \"52.239.251.0/24\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.175.0/24\",\r\n \"52.253.176.0/24\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:3000:60::/59\",\r\n \"2603:1027:1:60::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.switzerlandw\",\r\n
+ \ \"id\": \"AzureCloud.switzerlandw\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.0/27\",\r\n \"13.104.212.0/26\",\r\n
+ \ \"20.47.26.0/24\",\r\n \"20.47.67.0/24\",\r\n \"20.47.103.0/24\",\r\n
+ \ \"20.60.176.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.199.192.0/18\",\r\n
+ \ \"40.90.19.32/27\",\r\n \"40.90.128.192/28\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.195.0/24\",\r\n \"51.103.192.0/27\",\r\n
+ \ \"51.107.96.0/19\",\r\n \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n
+ \ \"51.107.160.0/20\",\r\n \"51.107.192.0/21\",\r\n \"51.107.224.0/20\",\r\n
+ \ \"51.107.248.0/21\",\r\n \"52.108.179.0/24\",\r\n \"52.108.200.0/24\",\r\n
+ \ \"52.109.158.0/23\",\r\n \"52.111.203.0/24\",\r\n \"52.114.230.0/24\",\r\n
+ \ \"52.239.250.0/24\",\r\n \"52.253.166.0/24\",\r\n \"2603:1020:b00::/47\",\r\n
+ \ \"2603:1020:b03::/48\",\r\n \"2603:1020:b04::/48\",\r\n
+ \ \"2603:1026:240c::/48\",\r\n \"2603:1026:2500:20::/64\",\r\n
+ \ \"2603:1026:3000:120::/59\",\r\n \"2603:1027:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaecentral\",\r\n
+ \ \"id\": \"AzureCloud.uaecentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.159.128/26\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.45.64.0/19\",\r\n \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n
+ \ \"20.47.54.0/24\",\r\n \"20.47.94.0/24\",\r\n \"20.135.36.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"40.82.52.0/22\",\r\n \"40.90.16.64/27\",\r\n \"40.90.128.48/28\",\r\n
+ \ \"40.90.151.224/27\",\r\n \"40.119.76.0/22\",\r\n \"40.120.0.0/20\",\r\n
+ \ \"40.125.0.0/19\",\r\n \"40.126.60.0/24\",\r\n \"40.126.193.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"52.108.183.0/24\",\r\n \"52.108.204.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.111.247.0/24\",\r\n \"52.114.232.0/24\",\r\n
+ \ \"52.143.221.0/24\",\r\n \"52.239.233.0/25\",\r\n \"2603:1040:b00::/47\",\r\n
+ \ \"2603:1040:b03::/48\",\r\n \"2603:1040:b04::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1047:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaenorth\",\r\n
+ \ \"id\": \"AzureCloud.uaenorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.151.64/26\",\r\n \"13.104.151.128/26\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.64/26\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.136.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.46.32.0/19\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.192.0/21\",\r\n \"20.47.55.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.60.21.0/24\",\r\n \"20.74.128.0/18\",\r\n
+ \ \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n \"20.190.187.0/24\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"40.90.16.96/27\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.119.72.0/22\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.120.64.0/18\",\r\n \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.192.0/24\",\r\n \"52.108.70.0/23\",\r\n
+ \ \"52.108.92.0/24\",\r\n \"52.109.162.0/23\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.112.200.0/22\",\r\n \"52.112.204.0/23\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.121.100.0/22\",\r\n \"52.121.104.0/23\",\r\n
+ \ \"52.143.202.0/24\",\r\n \"52.143.222.0/23\",\r\n \"52.239.233.128/25\",\r\n
+ \ \"65.52.248.0/21\",\r\n \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1047:1:100::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uknorth\",\r\n \"id\": \"AzureCloud.uknorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.87.64.0/18\",\r\n
+ \ \"20.39.144.0/20\",\r\n \"20.45.160.0/19\",\r\n \"20.150.46.0/24\",\r\n
+ \ \"20.190.143.128/25\",\r\n \"20.190.170.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.80.16.0/22\",\r\n \"40.81.96.0/20\",\r\n \"40.90.130.112/28\",\r\n
+ \ \"40.90.143.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.126.15.128/25\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"51.11.64.0/19\",\r\n \"51.105.80.0/21\",\r\n
+ \ \"51.141.129.32/27\",\r\n \"51.142.128.0/17\",\r\n \"52.108.137.0/24\",\r\n
+ \ \"52.109.36.0/22\",\r\n \"52.136.19.0/24\",\r\n \"2603:1020:300::/47\",\r\n
+ \ \"2603:1020:302::/48\",\r\n \"2603:1020:304::/48\",\r\n
+ \ \"2603:1020:305::/48\",\r\n \"2603:1026:240f::/48\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:3000:1c0::/59\",\r\n
+ \ \"2603:1027:1:1c0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uksouth\",\r\n \"id\": \"AzureCloud.uksouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.129.128/26\",\r\n
+ \ \"13.104.145.160/27\",\r\n \"13.104.146.64/26\",\r\n \"13.104.159.0/25\",\r\n
+ \ \"20.38.106.0/23\",\r\n \"20.39.208.0/20\",\r\n \"20.39.224.0/21\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.47.68.0/24\",\r\n
+ \ \"20.47.114.0/24\",\r\n \"20.49.128.0/17\",\r\n \"20.50.96.0/19\",\r\n
+ \ \"20.58.0.0/18\",\r\n \"20.60.17.0/24\",\r\n \"20.60.166.0/23\",\r\n
+ \ \"20.68.0.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n
+ \ \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n \"20.150.41.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.190.143.0/25\",\r\n \"20.190.169.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.80.0.0/22\",\r\n \"40.81.128.0/19\",\r\n
+ \ \"40.82.88.0/22\",\r\n \"40.90.17.32/27\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.128.112/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.131.64/27\",\r\n \"40.90.139.64/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.153.64/27\",\r\n \"40.90.154.0/26\",\r\n \"40.120.32.0/19\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.41.0/24\",\r\n \"51.11.0.0/18\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.104.0.0/19\",\r\n \"51.104.192.0/18\",\r\n
+ \ \"51.105.0.0/18\",\r\n \"51.105.64.0/20\",\r\n \"51.132.0.0/18\",\r\n
+ \ \"51.132.128.0/17\",\r\n \"51.140.0.0/17\",\r\n \"51.140.128.0/18\",\r\n
+ \ \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n \"51.141.130.0/25\",\r\n
+ \ \"51.141.135.0/24\",\r\n \"51.141.192.0/18\",\r\n \"51.143.128.0/18\",\r\n
+ \ \"51.143.208.0/20\",\r\n \"51.143.224.0/19\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"52.108.50.0/23\",\r\n \"52.108.88.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.109.28.0/22\",\r\n \"52.111.242.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.240.0/20\",\r\n \"52.113.128.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.224.0/19\",\r\n
+ \ \"52.114.88.0/22\",\r\n \"52.120.160.0/19\",\r\n \"52.120.240.0/20\",\r\n
+ \ \"52.136.21.0/24\",\r\n \"52.151.64.0/18\",\r\n \"52.239.187.0/25\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.245.64.0/22\",\r\n \"52.253.162.0/23\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"2603:1020:700::/47\",\r\n \"2603:1020:702::/48\",\r\n
+ \ \"2603:1020:704::/48\",\r\n \"2603:1020:705::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2500:18::/64\",\r\n
+ \ \"2603:1026:3000:e0::/59\",\r\n \"2603:1027:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uksouth2\",\r\n
+ \ \"id\": \"AzureCloud.uksouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.0.0/18\",\r\n \"20.150.27.0/24\",\r\n \"20.190.172.0/24\",\r\n
+ \ \"40.79.201.0/24\",\r\n \"40.80.12.0/22\",\r\n \"40.81.160.0/20\",\r\n
+ \ \"40.90.130.128/28\",\r\n \"40.90.143.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.126.44.0/24\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.156.0/22\",\r\n \"51.142.0.0/17\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"52.108.138.0/24\",\r\n
+ \ \"52.109.40.0/22\",\r\n \"52.136.18.0/24\",\r\n \"2603:1020:400::/47\",\r\n
+ \ \"2603:1020:402::/48\",\r\n \"2603:1020:404::/48\",\r\n
+ \ \"2603:1020:405::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:3000:40::/59\",\r\n
+ \ \"2603:1027:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.ukwest\",\r\n \"id\": \"AzureCloud.ukwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"20.39.160.0/21\",\r\n
+ \ \"20.40.104.0/21\",\r\n \"20.47.56.0/24\",\r\n \"20.47.82.0/23\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.60.164.0/23\",\r\n \"20.68.64.0/18\",\r\n
+ \ \"20.77.192.0/18\",\r\n \"20.90.0.0/18\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.190.144.0/25\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.81.112.0/20\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.90.28.192/26\",\r\n \"40.90.29.0/26\",\r\n \"40.90.131.96/27\",\r\n
+ \ \"40.90.139.96/27\",\r\n \"40.90.157.192/27\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.43.0/24\",\r\n \"51.11.96.0/19\",\r\n \"51.104.32.0/19\",\r\n
+ \ \"51.132.64.0/18\",\r\n \"51.137.128.0/18\",\r\n \"51.140.192.0/18\",\r\n
+ \ \"51.141.0.0/17\",\r\n \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.128/26\",\r\n \"51.141.134.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"52.108.189.0/24\",\r\n \"52.108.224.0/23\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.111.205.0/24\",\r\n \"52.112.168.0/22\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.230.0/24\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.92.0/22\",\r\n \"52.136.20.0/24\",\r\n
+ \ \"52.142.128.0/18\",\r\n \"52.239.240.0/24\",\r\n \"104.44.90.0/27\",\r\n
+ \ \"2603:1020:600::/47\",\r\n \"2603:1020:602::/48\",\r\n
+ \ \"2603:1020:604::/48\",\r\n \"2603:1020:605::/48\",\r\n
+ \ \"2603:1026:2407::/48\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1027:1:200::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westcentralus\",\r\n \"id\": \"AzureCloud.westcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.128.0/17\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.215.128/25\",\r\n \"13.104.219.0/25\",\r\n \"20.47.4.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.104.0/24\",\r\n \"20.51.32.0/19\",\r\n
+ \ \"20.55.128.0/18\",\r\n \"20.57.224.0/19\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.60.4.0/24\",\r\n \"20.69.0.0/18\",\r\n \"20.135.72.0/23\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"20.190.136.0/24\",\r\n \"20.190.158.0/24\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.77.128.0/25\",\r\n \"40.77.131.192/27\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.128/25\",\r\n \"40.77.166.0/25\",\r\n
+ \ \"40.77.166.128/28\",\r\n \"40.77.173.0/24\",\r\n \"40.77.175.32/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.185.0/25\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.64/27\",\r\n \"40.77.227.0/24\",\r\n \"40.77.232.0/25\",\r\n
+ \ \"40.77.235.0/24\",\r\n \"40.77.236.96/27\",\r\n \"40.77.246.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.79.205.240/28\",\r\n \"40.79.206.224/27\",\r\n
+ \ \"40.79.207.0/27\",\r\n \"40.90.131.0/27\",\r\n \"40.90.138.192/28\",\r\n
+ \ \"40.90.139.0/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.151.0/26\",\r\n
+ \ \"40.90.151.128/28\",\r\n \"40.90.152.0/25\",\r\n \"40.93.6.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.123.136.0/24\",\r\n \"40.126.8.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"52.101.24.0/22\",\r\n \"52.101.40.0/24\",\r\n
+ \ \"52.102.133.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.108.181.0/24\",\r\n \"52.108.202.0/24\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.111.206.0/24\",\r\n \"52.112.93.0/24\",\r\n \"52.113.207.0/24\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.143.214.0/24\",\r\n \"52.148.0.0/18\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.153.128.0/18\",\r\n \"52.159.0.0/18\",\r\n
+ \ \"52.161.0.0/16\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.245.60.0/22\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"64.4.8.0/24\",\r\n \"64.4.54.0/24\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"104.44.89.96/27\",\r\n \"104.47.224.0/20\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.40.160/28\",\r\n \"157.55.12.128/26\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"207.68.174.48/29\",\r\n \"2603:1030:b00::/47\",\r\n \"2603:1030:b03::/48\",\r\n
+ \ \"2603:1030:b04::/48\",\r\n \"2603:1030:b05::/48\",\r\n
+ \ \"2603:1036:9ff:ffff::/64\",\r\n \"2603:1036:2408::/48\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1037:1:180::/59\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f910::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westeurope\",\r\n
+ \ \"id\": \"AzureCloud.westeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.0.0/17\",\r\n \"13.73.128.0/18\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.80.0.0/15\",\r\n \"13.88.200.0/21\",\r\n \"13.93.0.0/17\",\r\n
+ \ \"13.94.128.0/17\",\r\n \"13.95.0.0/16\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.128/25\",\r\n \"13.104.158.176/28\",\r\n
+ \ \"13.104.209.0/24\",\r\n \"13.104.214.0/25\",\r\n \"13.104.218.128/25\",\r\n
+ \ \"13.105.22.0/24\",\r\n \"13.105.23.128/25\",\r\n \"13.105.28.32/28\",\r\n
+ \ \"13.105.29.128/25\",\r\n \"13.105.60.48/28\",\r\n \"13.105.60.96/27\",\r\n
+ \ \"13.105.60.128/27\",\r\n \"13.105.66.144/28\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.38.200.0/22\",\r\n \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n
+ \ \"20.47.30.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.115.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.50.0.0/18\",\r\n \"20.50.128.0/17\",\r\n
+ \ \"20.54.128.0/17\",\r\n \"20.56.0.0/16\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.67.0.0/17\",\r\n \"20.71.0.0/16\",\r\n
+ \ \"20.73.0.0/16\",\r\n \"20.76.0.0/16\",\r\n \"20.82.0.0/17\",\r\n
+ \ \"20.86.0.0/17\",\r\n \"20.135.24.0/23\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.190.137.0/24\",\r\n \"20.190.160.0/24\",\r\n \"23.97.128.0/17\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.100.0.0/20\",\r\n \"23.101.64.0/20\",\r\n
+ \ \"40.67.192.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.74.0.0/18\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.82.92.0/22\",\r\n \"40.87.184.0/22\",\r\n
+ \ \"40.90.17.64/27\",\r\n \"40.90.18.192/26\",\r\n \"40.90.20.128/25\",\r\n
+ \ \"40.90.21.0/25\",\r\n \"40.90.130.0/27\",\r\n \"40.90.133.0/27\",\r\n
+ \ \"40.90.134.64/26\",\r\n \"40.90.134.128/26\",\r\n \"40.90.138.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.145.192/27\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.128/27\",\r\n \"40.90.150.128/25\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.91.28.0/22\",\r\n \"40.91.192.0/18\",\r\n
+ \ \"40.112.36.128/25\",\r\n \"40.112.37.0/26\",\r\n \"40.112.38.192/26\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.114.128.0/17\",\r\n \"40.115.0.0/18\",\r\n \"40.118.0.0/17\",\r\n
+ \ \"40.119.128.0/19\",\r\n \"40.126.9.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.124.0.0/17\",\r\n
+ \ \"51.124.128.0/18\",\r\n \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.144.0.0/16\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.108.24.0/21\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.80.0/24\",\r\n \"52.108.108.0/23\",\r\n \"52.108.110.0/24\",\r\n
+ \ \"52.109.88.0/22\",\r\n \"52.111.243.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.83.0/24\",\r\n \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n
+ \ \"52.112.110.0/23\",\r\n \"52.112.144.0/20\",\r\n \"52.112.197.0/24\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.233.0/24\",\r\n \"52.112.237.0/24\",\r\n
+ \ \"52.112.238.0/24\",\r\n \"52.113.9.0/24\",\r\n \"52.113.37.0/24\",\r\n
+ \ \"52.113.83.0/24\",\r\n \"52.113.130.0/24\",\r\n \"52.113.144.0/21\",\r\n
+ \ \"52.113.199.0/24\",\r\n \"52.114.64.0/21\",\r\n \"52.114.72.0/22\",\r\n
+ \ \"52.114.116.0/22\",\r\n \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n
+ \ \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n \"52.115.8.0/22\",\r\n
+ \ \"52.120.128.0/21\",\r\n \"52.120.208.0/20\",\r\n \"52.121.24.0/21\",\r\n
+ \ \"52.121.64.0/20\",\r\n \"52.125.140.0/23\",\r\n \"52.136.192.0/18\",\r\n
+ \ \"52.137.0.0/18\",\r\n \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.208.0/24\",\r\n \"52.148.192.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.174.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.147.0/24\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.236.128.0/17\",\r\n \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n
+ \ \"52.239.242.0/23\",\r\n \"52.245.48.0/22\",\r\n \"52.245.124.0/22\",\r\n
+ \ \"65.52.128.0/19\",\r\n \"104.40.128.0/17\",\r\n \"104.44.89.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.93.0/27\",\r\n \"104.44.93.192/27\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.45.0.0/18\",\r\n
+ \ \"104.45.64.0/20\",\r\n \"104.46.32.0/19\",\r\n \"104.47.128.0/18\",\r\n
+ \ \"104.47.216.64/26\",\r\n \"104.214.192.0/18\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.117.128.0/17\",\r\n \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"168.61.56.0/21\",\r\n \"168.63.0.0/19\",\r\n
+ \ \"168.63.96.0/19\",\r\n \"191.233.64.0/18\",\r\n \"191.237.232.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"193.149.80.0/21\",\r\n \"213.199.128.0/20\",\r\n
+ \ \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n \"213.199.180.192/27\",\r\n
+ \ \"213.199.183.0/24\",\r\n \"2603:1020:200::/46\",\r\n \"2603:1020:205::/48\",\r\n
+ \ \"2603:1020:206::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2500:24::/64\",\r\n \"2603:1026:3000:140::/59\",\r\n
+ \ \"2603:1027:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westindia\",\r\n \"id\": \"AzureCloud.westindia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.157.128/25\",\r\n
+ \ \"20.38.128.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.124.0/23\",\r\n \"20.135.44.0/23\",\r\n \"20.150.18.128/25\",\r\n
+ \ \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.176.0/24\",\r\n \"20.192.64.0/19\",\r\n \"40.79.219.0/24\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.87.220.0/22\",\r\n \"40.90.26.0/26\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.126.18.128/25\",\r\n \"40.126.48.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.94.0/24\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.111.244.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.114.28.0/22\",\r\n
+ \ \"52.136.16.0/24\",\r\n \"52.136.32.0/19\",\r\n \"52.140.128.0/18\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.249.64.0/19\",\r\n \"104.44.93.224/27\",\r\n
+ \ \"104.44.95.112/28\",\r\n \"104.47.212.0/23\",\r\n \"104.211.128.0/18\",\r\n
+ \ \"2603:1040:800::/46\",\r\n \"2603:1040:805::/48\",\r\n
+ \ \"2603:1040:806::/48\",\r\n \"2603:1046:1408::/48\",\r\n
+ \ \"2603:1046:1500::/64\",\r\n \"2603:1046:2000:20::/59\",\r\n
+ \ \"2603:1047:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westus\",\r\n \"id\": \"AzureCloud.westus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.73.32.0/19\",\r\n \"13.83.0.0/16\",\r\n \"13.86.128.0/17\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.91.0.0/16\",\r\n \"13.93.128.0/17\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.158.16/28\",\r\n \"13.104.158.64/26\",\r\n \"13.104.208.96/27\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.105.17.64/26\",\r\n
+ \ \"13.105.17.128/26\",\r\n \"13.105.19.128/25\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.97.0/27\",\r\n \"20.43.192.0/18\",\r\n
+ \ \"20.47.2.0/24\",\r\n \"20.47.22.0/23\",\r\n \"20.47.110.0/24\",\r\n
+ \ \"20.47.116.0/24\",\r\n \"20.49.120.0/21\",\r\n \"20.57.192.0/19\",\r\n
+ \ \"20.59.64.0/18\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.66.0.0/17\",\r\n \"20.135.74.0/23\",\r\n \"20.150.34.0/23\",\r\n
+ \ \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.157.32.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.184.128.0/17\",\r\n \"20.189.128.0/18\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.153.0/24\",\r\n \"23.99.0.0/18\",\r\n
+ \ \"23.99.64.0/19\",\r\n \"23.100.32.0/20\",\r\n \"23.101.192.0/20\",\r\n
+ \ \"40.65.0.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.216.0/24\",\r\n \"40.80.152.0/21\",\r\n \"40.81.0.0/20\",\r\n
+ \ \"40.82.248.0/21\",\r\n \"40.83.128.0/17\",\r\n \"40.85.144.0/20\",\r\n
+ \ \"40.86.160.0/19\",\r\n \"40.87.160.0/22\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.18.128/26\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.128.128/28\",\r\n \"40.90.131.192/27\",\r\n
+ \ \"40.90.135.0/26\",\r\n \"40.90.139.192/27\",\r\n \"40.90.146.0/28\",\r\n
+ \ \"40.90.148.128/27\",\r\n \"40.90.153.96/27\",\r\n \"40.90.156.128/26\",\r\n
+ \ \"40.93.0.0/23\",\r\n \"40.112.128.0/17\",\r\n \"40.118.128.0/17\",\r\n
+ \ \"40.125.32.0/19\",\r\n \"40.126.4.0/24\",\r\n \"40.126.25.0/24\",\r\n
+ \ \"52.101.0.0/22\",\r\n \"52.101.16.0/22\",\r\n \"52.101.41.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.103.0.0/24\",\r\n
+ \ \"52.103.2.0/24\",\r\n \"52.103.128.0/24\",\r\n \"52.108.0.0/21\",\r\n
+ \ \"52.108.78.0/24\",\r\n \"52.109.0.0/22\",\r\n \"52.111.245.0/24\",\r\n
+ \ \"52.112.106.0/23\",\r\n \"52.112.114.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.114.152.0/21\",\r\n \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n
+ \ \"52.115.140.0/22\",\r\n \"52.115.144.0/20\",\r\n \"52.120.96.0/19\",\r\n
+ \ \"52.121.36.0/22\",\r\n \"52.123.1.0/24\",\r\n \"52.137.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.155.32.0/19\",\r\n \"52.157.0.0/18\",\r\n
+ \ \"52.159.128.0/17\",\r\n \"52.160.0.0/16\",\r\n \"52.180.0.0/17\",\r\n
+ \ \"52.190.128.0/17\",\r\n \"52.225.0.0/17\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.238.0.0/18\",\r\n \"52.239.0.0/17\",\r\n
+ \ \"52.239.160.0/22\",\r\n \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.241.0.0/16\",\r\n \"52.245.12.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.246.0.0/17\",\r\n \"52.248.128.0/17\",\r\n \"52.250.192.0/18\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"65.52.112.0/20\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.44.88.0/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.92.96/27\",\r\n \"104.44.94.0/28\",\r\n \"104.44.95.128/27\",\r\n
+ \ \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n \"104.209.0.0/18\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"137.116.184.0/21\",\r\n \"137.117.0.0/19\",\r\n
+ \ \"137.135.0.0/18\",\r\n \"138.91.64.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.56.160.0/21\",\r\n \"168.61.0.0/19\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.62.0.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.63.88.0/23\",\r\n
+ \ \"191.236.64.0/18\",\r\n \"191.238.70.0/23\",\r\n \"191.239.0.0/18\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1036:2400::/48\",\r\n
+ \ \"2603:1036:2500:10::/64\",\r\n \"2603:1036:3000:1c0::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2a01:111:f100:3000::/52\",\r\n
+ \ \"2a01:111:f403:c000::/64\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:f800::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westus2\",\r\n
+ \ \"id\": \"AzureCloud.westus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.128.0/17\",\r\n \"13.77.128.0/18\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.145.0/26\",\r\n \"13.104.208.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.128/26\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.38.99.0/24\",\r\n \"20.42.128.0/18\",\r\n
+ \ \"20.47.62.0/23\",\r\n \"20.47.120.0/23\",\r\n \"20.51.8.0/21\",\r\n
+ \ \"20.51.64.0/18\",\r\n \"20.57.128.0/18\",\r\n \"20.59.0.0/18\",\r\n
+ \ \"20.60.20.0/24\",\r\n \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.64.128.0/17\",\r\n \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n
+ \ \"20.72.192.0/18\",\r\n \"20.80.128.0/18\",\r\n \"20.83.64.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.135.18.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.68.0/24\",\r\n \"20.150.78.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n \"20.157.50.0/23\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.190.0.0/18\",\r\n \"20.190.133.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.191.64.0/18\",\r\n \"23.98.47.0/24\",\r\n
+ \ \"23.102.192.0/21\",\r\n \"23.102.203.0/24\",\r\n \"23.103.64.32/27\",\r\n
+ \ \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n \"40.64.64.0/18\",\r\n
+ \ \"40.64.128.0/21\",\r\n \"40.65.64.0/18\",\r\n \"40.77.136.0/28\",\r\n
+ \ \"40.77.136.64/28\",\r\n \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n
+ \ \"40.77.162.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.169.0/24\",\r\n
+ \ \"40.77.175.64/27\",\r\n \"40.77.180.0/23\",\r\n \"40.77.182.64/27\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.128/26\",\r\n \"40.77.200.0/25\",\r\n \"40.77.202.0/24\",\r\n
+ \ \"40.77.224.96/27\",\r\n \"40.77.230.0/24\",\r\n \"40.77.232.128/25\",\r\n
+ \ \"40.77.234.224/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.240.128/25\",\r\n
+ \ \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.249.0/24\",\r\n \"40.77.250.0/24\",\r\n \"40.77.254.128/25\",\r\n
+ \ \"40.78.208.32/30\",\r\n \"40.78.217.0/24\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.206.128/27\",\r\n \"40.80.160.0/24\",\r\n \"40.82.36.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.90.16.192/26\",\r\n \"40.90.131.32/27\",\r\n
+ \ \"40.90.132.48/28\",\r\n \"40.90.136.224/27\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.139.32/27\",\r\n \"40.90.146.32/27\",\r\n \"40.90.148.192/27\",\r\n
+ \ \"40.90.153.0/26\",\r\n \"40.90.192.0/19\",\r\n \"40.91.0.0/22\",\r\n
+ \ \"40.91.64.0/18\",\r\n \"40.91.160.0/19\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n \"40.125.64.0/18\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.26.0/24\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.28.0/22\",\r\n
+ \ \"52.101.42.0/24\",\r\n \"52.102.134.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.72.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.109.24.0/22\",\r\n \"52.111.246.0/24\",\r\n \"52.112.105.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.115.0/24\",\r\n \"52.114.148.0/22\",\r\n
+ \ \"52.115.55.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.137.64.0/18\",\r\n \"52.143.64.0/18\",\r\n \"52.143.197.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.148.128.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.151.0.0/18\",\r\n \"52.156.64.0/18\",\r\n \"52.156.128.0/19\",\r\n
+ \ \"52.158.224.0/19\",\r\n \"52.175.192.0/18\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.191.128.0/18\",\r\n \"52.229.0.0/18\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.233.64.0/18\",\r\n \"52.235.64.0/18\",\r\n \"52.239.148.128/25\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.245.52.0/22\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.192.0/18\",\r\n \"52.250.0.0/17\",\r\n \"65.52.111.0/24\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.112/28\",\r\n \"65.55.51.0/24\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.106.192/28\",\r\n \"65.55.106.240/28\",\r\n
+ \ \"65.55.107.0/28\",\r\n \"65.55.107.96/27\",\r\n \"65.55.110.0/24\",\r\n
+ \ \"65.55.120.0/24\",\r\n \"65.55.207.0/24\",\r\n \"65.55.209.0/25\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.219.64/26\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n \"104.44.89.128/27\",\r\n
+ \ \"104.44.89.192/27\",\r\n \"104.44.95.0/28\",\r\n \"131.253.12.160/28\",\r\n
+ \ \"131.253.12.228/30\",\r\n \"131.253.13.24/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.192/29\",\r\n
+ \ \"131.253.15.192/28\",\r\n \"131.253.35.128/26\",\r\n \"131.253.40.48/29\",\r\n
+ \ \"131.253.40.128/27\",\r\n \"131.253.41.0/24\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"157.55.2.128/26\",\r\n \"157.55.12.64/26\",\r\n
+ \ \"157.55.13.64/26\",\r\n \"157.55.39.0/24\",\r\n \"157.55.55.228/30\",\r\n
+ \ \"157.55.55.232/29\",\r\n \"157.55.55.240/28\",\r\n \"157.55.106.0/26\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.56.2.0/25\",\r\n \"157.56.3.128/25\",\r\n
+ \ \"157.56.19.224/27\",\r\n \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n
+ \ \"157.56.80.0/25\",\r\n \"168.62.64.0/19\",\r\n \"199.30.24.0/23\",\r\n
+ \ \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n \"199.30.27.160/27\",\r\n
+ \ \"199.30.31.192/26\",\r\n \"207.46.13.0/24\",\r\n \"207.68.174.192/28\",\r\n
+ \ \"209.240.212.0/23\",\r\n \"2603:1030:c00::/48\",\r\n \"2603:1030:c02::/47\",\r\n
+ \ \"2603:1030:c04::/48\",\r\n \"2603:1030:c05::/48\",\r\n
+ \ \"2603:1030:c06::/48\",\r\n \"2603:1030:c07::/48\",\r\n
+ \ \"2603:1030:d00::/48\",\r\n \"2603:1030:e01:2::/64\",\r\n
+ \ \"2603:1036:903::/64\",\r\n \"2603:1036:d20::/64\",\r\n
+ \ \"2603:1036:2409::/48\",\r\n \"2603:1036:2500:14::/64\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1037:1:c0::/59\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c804::/62\",\r\n
+ \ \"2a01:111:f403:d004::/62\",\r\n \"2a01:111:f403:d804::/62\",\r\n
+ \ \"2a01:111:f403:f804::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch\",\r\n \"id\": \"AzureCognitiveSearch\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.32.141/32\",\r\n \"13.83.22.45/32\",\r\n \"13.83.22.74/32\",\r\n
+ \ \"13.83.22.119/32\",\r\n \"13.86.5.51/32\",\r\n \"20.36.120.128/26\",\r\n
+ \ \"20.37.64.128/26\",\r\n \"20.37.156.128/26\",\r\n \"20.37.193.192/26\",\r\n
+ \ \"20.37.224.128/26\",\r\n \"20.38.84.0/26\",\r\n \"20.38.136.128/26\",\r\n
+ \ \"20.39.8.192/26\",\r\n \"20.40.123.36/32\",\r\n \"20.40.123.39/32\",\r\n
+ \ \"20.40.123.46/32\",\r\n \"20.40.123.72/32\",\r\n \"20.41.4.128/26\",\r\n
+ \ \"20.41.65.64/26\",\r\n \"20.41.193.64/26\",\r\n \"20.42.4.128/26\",\r\n
+ \ \"20.42.24.90/32\",\r\n \"20.42.29.212/32\",\r\n \"20.42.30.105/32\",\r\n
+ \ \"20.42.34.190/32\",\r\n \"20.42.35.204/32\",\r\n \"20.42.129.192/26\",\r\n
+ \ \"20.42.225.192/26\",\r\n \"20.43.41.64/26\",\r\n \"20.43.65.64/26\",\r\n
+ \ \"20.43.130.128/26\",\r\n \"20.44.74.182/32\",\r\n \"20.44.76.53/32\",\r\n
+ \ \"20.44.76.61/32\",\r\n \"20.44.76.86/32\",\r\n \"20.45.0.49/32\",\r\n
+ \ \"20.45.2.122/32\",\r\n \"20.45.112.128/26\",\r\n \"20.45.192.128/26\",\r\n
+ \ \"20.72.17.0/26\",\r\n \"20.150.160.128/26\",\r\n \"20.185.110.199/32\",\r\n
+ \ \"20.189.106.128/26\",\r\n \"20.189.129.94/32\",\r\n \"20.192.161.0/26\",\r\n
+ \ \"20.192.225.64/26\",\r\n \"23.100.238.27/32\",\r\n \"23.100.238.34/31\",\r\n
+ \ \"23.100.238.37/32\",\r\n \"40.65.173.157/32\",\r\n \"40.65.175.212/32\",\r\n
+ \ \"40.65.175.228/32\",\r\n \"40.66.56.233/32\",\r\n \"40.67.48.128/26\",\r\n
+ \ \"40.74.18.154/32\",\r\n \"40.74.30.0/26\",\r\n \"40.80.57.64/26\",\r\n
+ \ \"40.80.169.64/26\",\r\n \"40.80.186.192/26\",\r\n \"40.80.216.231/32\",\r\n
+ \ \"40.80.217.38/32\",\r\n \"40.80.219.46/32\",\r\n \"40.81.9.100/32\",\r\n
+ \ \"40.81.9.131/32\",\r\n \"40.81.9.203/32\",\r\n \"40.81.9.209/32\",\r\n
+ \ \"40.81.9.213/32\",\r\n \"40.81.9.221/32\",\r\n \"40.81.10.36/32\",\r\n
+ \ \"40.81.12.133/32\",\r\n \"40.81.15.8/32\",\r\n \"40.81.15.39/32\",\r\n
+ \ \"40.81.29.152/32\",\r\n \"40.81.188.130/32\",\r\n \"40.81.191.58/32\",\r\n
+ \ \"40.81.253.154/32\",\r\n \"40.82.155.65/32\",\r\n \"40.82.253.0/26\",\r\n
+ \ \"40.89.17.64/26\",\r\n \"40.90.190.180/32\",\r\n \"40.90.240.17/32\",\r\n
+ \ \"40.91.93.84/32\",\r\n \"40.91.127.116/32\",\r\n \"40.91.127.241/32\",\r\n
+ \ \"40.119.11.0/26\",\r\n \"51.12.41.64/26\",\r\n \"51.12.193.64/26\",\r\n
+ \ \"51.104.25.64/26\",\r\n \"51.105.80.128/26\",\r\n \"51.105.88.128/26\",\r\n
+ \ \"51.107.48.128/26\",\r\n \"51.107.144.128/26\",\r\n \"51.116.48.96/28\",\r\n
+ \ \"51.116.144.96/28\",\r\n \"51.120.40.128/26\",\r\n \"51.120.224.128/26\",\r\n
+ \ \"51.132.43.66/32\",\r\n \"51.137.161.64/26\",\r\n \"51.143.104.54/32\",\r\n
+ \ \"51.143.104.90/32\",\r\n \"51.143.192.128/26\",\r\n \"51.145.124.157/32\",\r\n
+ \ \"51.145.124.158/32\",\r\n \"51.145.176.249/32\",\r\n \"51.145.177.212/32\",\r\n
+ \ \"51.145.178.138/32\",\r\n \"51.145.178.140/32\",\r\n \"52.136.48.128/26\",\r\n
+ \ \"52.137.24.236/32\",\r\n \"52.137.26.114/32\",\r\n \"52.137.26.155/32\",\r\n
+ \ \"52.137.26.198/32\",\r\n \"52.137.27.49/32\",\r\n \"52.137.56.115/32\",\r\n
+ \ \"52.137.60.208/32\",\r\n \"52.139.0.47/32\",\r\n \"52.139.0.49/32\",\r\n
+ \ \"52.140.105.64/26\",\r\n \"52.140.233.105/32\",\r\n \"52.150.139.0/26\",\r\n
+ \ \"52.151.235.150/32\",\r\n \"52.151.235.242/32\",\r\n \"52.151.235.244/32\",\r\n
+ \ \"52.155.216.245/32\",\r\n \"52.155.217.84/32\",\r\n \"52.155.221.242/32\",\r\n
+ \ \"52.155.221.250/32\",\r\n \"52.155.222.35/32\",\r\n \"52.155.222.56/32\",\r\n
+ \ \"52.157.22.233/32\",\r\n \"52.157.231.64/32\",\r\n \"52.158.28.181/32\",\r\n
+ \ \"52.158.30.241/32\",\r\n \"52.158.208.11/32\",\r\n \"52.184.80.221/32\",\r\n
+ \ \"52.185.224.13/32\",\r\n \"52.185.224.38/32\",\r\n \"52.188.217.235/32\",\r\n
+ \ \"52.188.218.228/32\",\r\n \"52.188.218.239/32\",\r\n \"52.228.81.64/26\",\r\n
+ \ \"52.242.214.45/32\",\r\n \"52.253.133.74/32\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"102.133.128.33/32\",\r\n \"102.133.217.128/26\",\r\n
+ \ \"104.45.64.0/32\",\r\n \"104.45.64.147/32\",\r\n \"104.45.64.224/32\",\r\n
+ \ \"104.45.65.30/32\",\r\n \"104.45.65.89/32\",\r\n \"191.233.9.0/26\",\r\n
+ \ \"191.233.26.156/32\",\r\n \"191.235.225.64/26\",\r\n \"2603:1000:4::180/121\",\r\n
+ \ \"2603:1000:104:1::180/121\",\r\n \"2603:1010:6:1::180/121\",\r\n
+ \ \"2603:1010:101::180/121\",\r\n \"2603:1010:304::180/121\",\r\n
+ \ \"2603:1010:404::180/121\",\r\n \"2603:1020:5:1::180/121\",\r\n
+ \ \"2603:1020:206:1::180/121\",\r\n \"2603:1020:305::180/121\",\r\n
+ \ \"2603:1020:405::180/121\",\r\n \"2603:1020:605::180/121\",\r\n
+ \ \"2603:1020:705:1::180/121\",\r\n \"2603:1020:805:1::180/121\",\r\n
+ \ \"2603:1020:905::180/121\",\r\n \"2603:1020:a04:1::180/121\",\r\n
+ \ \"2603:1020:b04::180/121\",\r\n \"2603:1020:c04:1::180/121\",\r\n
+ \ \"2603:1020:d04::180/121\",\r\n \"2603:1020:e04:1::180/121\",\r\n
+ \ \"2603:1020:f04::180/121\",\r\n \"2603:1020:1004::180/121\",\r\n
+ \ \"2603:1020:1104::180/121\",\r\n \"2603:1030:f:1::180/121\",\r\n
+ \ \"2603:1030:10:1::180/121\",\r\n \"2603:1030:104:1::180/121\",\r\n
+ \ \"2603:1030:107::180/121\",\r\n \"2603:1030:210:1::180/121\",\r\n
+ \ \"2603:1030:40b:1::180/121\",\r\n \"2603:1030:40c:1::180/121\",\r\n
+ \ \"2603:1030:504:1::180/121\",\r\n \"2603:1030:608::180/121\",\r\n
+ \ \"2603:1030:807:1::180/121\",\r\n \"2603:1030:a07::180/121\",\r\n
+ \ \"2603:1030:b04::180/121\",\r\n \"2603:1030:c06:1::180/121\",\r\n
+ \ \"2603:1030:f05:1::180/121\",\r\n \"2603:1030:1005::180/121\",\r\n
+ \ \"2603:1040:5:1::180/121\",\r\n \"2603:1040:207::180/121\",\r\n
+ \ \"2603:1040:407:1::180/121\",\r\n \"2603:1040:606::180/121\",\r\n
+ \ \"2603:1040:806::180/121\",\r\n \"2603:1040:904:1::180/121\",\r\n
+ \ \"2603:1040:a06:1::180/121\",\r\n \"2603:1040:b04::180/121\",\r\n
+ \ \"2603:1040:c06::180/121\",\r\n \"2603:1040:d04::180/121\",\r\n
+ \ \"2603:1040:f05:1::180/121\",\r\n \"2603:1040:1104::180/121\",\r\n
+ \ \"2603:1050:6:1::180/121\",\r\n \"2603:1050:403::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.128/26\",\r\n \"2603:1010:304::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.128/26\",\r\n \"2603:1010:404::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.CentralIndia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.81.253.154/32\",\r\n \"52.140.105.64/26\",\r\n
+ \ \"2603:1040:a06:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"id\":
+ \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.128/26\",\r\n \"2603:1030:f:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastAsia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.189.106.128/26\",\r\n \"40.81.29.152/32\",\r\n
+ \ \"52.184.80.221/32\",\r\n \"2603:1040:207::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.8.192/26\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"2603:1030:40b:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.KoreaCentral\",\r\n \"id\":
+ \"AzureCognitiveSearch.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.65.64/26\",\r\n \"40.82.155.65/32\",\r\n \"2603:1040:f05:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.128/26\",\r\n \"2603:1020:b04::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.UKNorth\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.80.128/26\",\r\n \"2603:1020:305::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors\",\r\n
+ \ \"id\": \"AzureConnectors\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.86.57/32\",\r\n \"13.66.140.128/28\",\r\n
+ \ \"13.66.145.96/27\",\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n
+ \ \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n \"13.69.227.208/28\",\r\n
+ \ \"13.69.231.192/27\",\r\n \"13.70.72.192/28\",\r\n \"13.70.78.224/27\",\r\n
+ \ \"13.70.136.174/32\",\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"13.71.153.19/32\",\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"13.71.195.32/28\",\r\n \"13.71.199.192/27\",\r\n \"13.72.243.10/32\",\r\n
+ \ \"13.73.21.230/32\",\r\n \"13.73.244.224/27\",\r\n \"13.75.36.64/28\",\r\n
+ \ \"13.75.110.131/32\",\r\n \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"13.78.132.82/32\",\r\n \"13.86.223.32/27\",\r\n
+ \ \"13.87.56.224/28\",\r\n \"13.87.122.224/28\",\r\n \"13.89.171.80/28\",\r\n
+ \ \"13.89.178.64/27\",\r\n \"13.93.148.62/32\",\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n \"20.37.74.192/28\",\r\n
+ \ \"20.38.128.224/27\",\r\n \"20.43.123.0/27\",\r\n \"20.44.3.0/28\",\r\n
+ \ \"20.44.29.64/27\",\r\n \"20.53.0.0/27\",\r\n \"20.72.27.0/26\",\r\n
+ \ \"20.150.170.240/28\",\r\n \"20.150.173.64/26\",\r\n \"20.192.32.64/26\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"20.193.206.192/26\",\r\n \"23.100.208.0/27\",\r\n
+ \ \"40.67.58.240/28\",\r\n \"40.67.60.224/27\",\r\n \"40.69.106.240/28\",\r\n
+ \ \"40.69.111.0/27\",\r\n \"40.70.146.208/28\",\r\n \"40.70.151.96/27\",\r\n
+ \ \"40.71.11.80/28\",\r\n \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n
+ \ \"40.71.249.205/32\",\r\n \"40.74.100.224/28\",\r\n \"40.74.146.64/28\",\r\n
+ \ \"40.78.194.240/28\",\r\n \"40.78.202.96/28\",\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.79.178.240/28\",\r\n \"40.79.180.224/27\",\r\n
+ \ \"40.79.189.64/27\",\r\n \"40.80.180.64/27\",\r\n \"40.89.135.2/32\",\r\n
+ \ \"40.89.186.239/32\",\r\n \"40.91.208.65/32\",\r\n \"40.112.195.87/32\",\r\n
+ \ \"40.112.243.160/28\",\r\n \"40.114.40.132/32\",\r\n \"40.120.8.0/27\",\r\n
+ \ \"40.120.64.64/27\",\r\n \"51.12.98.240/28\",\r\n \"51.12.102.0/26\",\r\n
+ \ \"51.12.202.240/28\",\r\n \"51.12.205.192/26\",\r\n \"51.103.142.22/32\",\r\n
+ \ \"51.105.77.96/27\",\r\n \"51.107.59.16/28\",\r\n \"51.107.60.224/27\",\r\n
+ \ \"51.107.86.217/32\",\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"51.116.59.16/28\",\r\n \"51.116.60.192/27\",\r\n \"51.116.155.80/28\",\r\n
+ \ \"51.116.158.96/27\",\r\n \"51.116.211.212/32\",\r\n \"51.116.236.78/32\",\r\n
+ \ \"51.120.98.224/28\",\r\n \"51.120.100.192/27\",\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"51.140.61.124/32\",\r\n \"51.140.74.150/32\",\r\n
+ \ \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n \"51.140.211.0/28\",\r\n
+ \ \"51.140.212.224/27\",\r\n \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n
+ \ \"51.141.124.13/32\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"52.138.92.192/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.161.101.204/32\",\r\n \"52.161.102.22/32\",\r\n \"52.162.107.160/28\",\r\n
+ \ \"52.162.111.192/27\",\r\n \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n
+ \ \"52.166.78.89/32\",\r\n \"52.169.28.181/32\",\r\n \"52.171.130.92/32\",\r\n
+ \ \"52.172.211.12/32\",\r\n \"52.172.212.129/32\",\r\n \"52.173.241.27/32\",\r\n
+ \ \"52.173.245.164/32\",\r\n \"52.174.88.118/32\",\r\n \"52.175.23.169/32\",\r\n
+ \ \"52.178.150.68/32\",\r\n \"52.183.78.157/32\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"52.191.164.250/32\",\r\n \"52.225.129.144/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"65.52.250.208/28\",\r\n \"94.245.91.93/32\",\r\n \"102.37.64.0/27\",\r\n
+ \ \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n \"102.133.155.0/28\",\r\n
+ \ \"102.133.168.167/32\",\r\n \"102.133.253.0/27\",\r\n \"104.41.59.51/32\",\r\n
+ \ \"104.42.122.49/32\",\r\n \"104.209.247.23/32\",\r\n \"104.211.81.192/28\",\r\n
+ \ \"104.211.146.224/28\",\r\n \"104.211.189.124/32\",\r\n
+ \ \"104.211.189.218/32\",\r\n \"104.214.19.48/28\",\r\n \"104.214.70.191/32\",\r\n
+ \ \"104.214.164.0/27\",\r\n \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n
+ \ \"168.61.140.0/27\",\r\n \"168.61.143.64/26\",\r\n \"191.232.191.157/32\",\r\n
+ \ \"191.233.51.0/26\",\r\n \"191.233.203.192/28\",\r\n \"191.233.207.160/27\",\r\n
+ \ \"2603:1000:4:402::180/122\",\r\n \"2603:1000:104:402::180/122\",\r\n
+ \ \"2603:1010:6:402::180/122\",\r\n \"2603:1010:101:402::180/122\",\r\n
+ \ \"2603:1010:304:402::180/122\",\r\n \"2603:1010:404:402::180/122\",\r\n
+ \ \"2603:1020:5:402::180/122\",\r\n \"2603:1020:206:402::180/122\",\r\n
+ \ \"2603:1020:305:402::180/122\",\r\n \"2603:1020:405:402::180/122\",\r\n
+ \ \"2603:1020:605:402::180/122\",\r\n \"2603:1020:705:402::180/122\",\r\n
+ \ \"2603:1020:805:402::180/122\",\r\n \"2603:1020:905:402::180/122\",\r\n
+ \ \"2603:1020:a04:402::180/122\",\r\n \"2603:1020:b04:402::180/122\",\r\n
+ \ \"2603:1020:c04:402::180/122\",\r\n \"2603:1020:d04:402::180/122\",\r\n
+ \ \"2603:1020:e04:402::180/122\",\r\n \"2603:1020:f04:402::180/122\",\r\n
+ \ \"2603:1020:1004:c02::80/122\",\r\n \"2603:1020:1104:400::180/122\",\r\n
+ \ \"2603:1030:f:400::980/122\",\r\n \"2603:1030:10:402::180/122\",\r\n
+ \ \"2603:1030:104:402::180/122\",\r\n \"2603:1030:107:400::100/122\",\r\n
+ \ \"2603:1030:210:402::180/122\",\r\n \"2603:1030:40b:400::980/122\",\r\n
+ \ \"2603:1030:40c:402::180/122\",\r\n \"2603:1030:504:c02::80/122\",\r\n
+ \ \"2603:1030:608:402::180/122\",\r\n \"2603:1030:807:402::180/122\",\r\n
+ \ \"2603:1030:a07:402::100/122\",\r\n \"2603:1030:b04:402::180/122\",\r\n
+ \ \"2603:1030:c06:400::980/122\",\r\n \"2603:1030:f05:402::180/122\",\r\n
+ \ \"2603:1030:1005:402::180/122\",\r\n \"2603:1040:5:402::180/122\",\r\n
+ \ \"2603:1040:207:402::180/122\",\r\n \"2603:1040:407:402::180/122\",\r\n
+ \ \"2603:1040:606:402::180/122\",\r\n \"2603:1040:806:402::180/122\",\r\n
+ \ \"2603:1040:904:402::180/122\",\r\n \"2603:1040:a06:402::180/122\",\r\n
+ \ \"2603:1040:b04:402::180/122\",\r\n \"2603:1040:c06:402::180/122\",\r\n
+ \ \"2603:1040:d04:c02::80/122\",\r\n \"2603:1040:f05:402::180/122\",\r\n
+ \ \"2603:1040:1104:400::180/122\",\r\n \"2603:1050:6:402::180/122\",\r\n
+ \ \"2603:1050:403:400::2c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaCentral\",\r\n \"id\":
+ \"AzureConnectors.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.53.0.0/27\",\r\n \"2603:1010:304:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureConnectors.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n
+ \ \"2603:1010:404:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaEast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.192/28\",\r\n
+ \ \"13.70.78.224/27\",\r\n \"13.72.243.10/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"2603:1010:6:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.136.174/32\",\r\n
+ \ \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"2603:1010:101:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.BrazilSouth\",\r\n \"id\":
+ \"AzureConnectors.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"104.41.59.51/32\",\r\n
+ \ \"191.232.191.157/32\",\r\n \"191.233.203.192/28\",\r\n
+ \ \"191.233.207.160/27\",\r\n \"2603:1050:6:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"2603:1030:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaEast\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.240/28\",\r\n \"40.69.111.0/27\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"2603:1030:1005:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralIndia\",\r\n
+ \ \"id\": \"AzureConnectors.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.123.0/27\",\r\n \"52.172.211.12/32\",\r\n
+ \ \"52.172.212.129/32\",\r\n \"104.211.81.192/28\",\r\n \"2603:1040:a06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.80/28\",\r\n \"13.89.178.64/27\",\r\n
+ \ \"52.173.241.27/32\",\r\n \"52.173.245.164/32\",\r\n \"2603:1030:10:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureConnectors\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.202.96/28\",\r\n \"168.61.140.0/27\",\r\n
+ \ \"168.61.143.64/26\",\r\n \"2603:1030:f:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.64/28\",\r\n \"13.75.110.131/32\",\r\n
+ \ \"52.175.23.169/32\",\r\n \"104.214.164.0/27\",\r\n \"2603:1040:207:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.80/28\",\r\n
+ \ \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n \"40.71.249.205/32\",\r\n
+ \ \"40.114.40.132/32\",\r\n \"2603:1030:210:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.208/28\",\r\n
+ \ \"40.70.151.96/27\",\r\n \"52.225.129.144/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"104.209.247.23/32\",\r\n \"2603:1030:40c:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.64/28\",\r\n \"52.138.92.192/27\",\r\n
+ \ \"2603:1030:40b:400::980/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceCentral\",\r\n \"id\":
+ \"AzureConnectors.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.89.135.2/32\",\r\n \"40.89.186.239/32\",\r\n
+ \ \"2603:1020:805:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceSouth\",\r\n \"id\":
+ \"AzureConnectors.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.240/28\",\r\n
+ \ \"40.79.180.224/27\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"2603:1020:905:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.GermanyNorth\",\r\n \"id\":
+ \"AzureConnectors.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.116.59.16/28\",\r\n
+ \ \"51.116.60.192/27\",\r\n \"51.116.211.212/32\",\r\n \"2603:1020:d04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureConnectors.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.80/28\",\r\n \"51.116.158.96/27\",\r\n
+ \ \"51.116.236.78/32\",\r\n \"2603:1020:c04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanEast\",\r\n
+ \ \"id\": \"AzureConnectors.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.153.19/32\",\r\n \"13.73.21.230/32\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"40.79.189.64/27\",\r\n \"2603:1040:407:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanWest\",\r\n
+ \ \"id\": \"AzureConnectors.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.224/28\",\r\n \"40.80.180.64/27\",\r\n
+ \ \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n \"2603:1040:606:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.29.64/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"2603:1040:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaSouth\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.107.160/28\",\r\n \"52.162.111.192/27\",\r\n
+ \ \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n \"2603:1030:608:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthEurope\",\r\n
+ \ \"id\": \"AzureConnectors.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.208/28\",\r\n \"13.69.231.192/27\",\r\n
+ \ \"52.169.28.181/32\",\r\n \"52.178.150.68/32\",\r\n \"94.245.91.93/32\",\r\n
+ \ \"2603:1020:5:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.NorwayEast\",\r\n \"id\":
+ \"AzureConnectors.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.224/28\",\r\n
+ \ \"51.120.100.192/27\",\r\n \"2603:1020:e04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorwayWest\",\r\n
+ \ \"id\": \"AzureConnectors.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"2603:1020:f04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.0/28\",\r\n \"102.133.168.167/32\",\r\n
+ \ \"102.133.253.0/27\",\r\n \"2603:1000:104:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.0/27\",\r\n \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n
+ \ \"2603:1000:4:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.SouthCentralUS\",\r\n \"id\":
+ \"AzureConnectors.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.65.86.57/32\",\r\n
+ \ \"13.73.244.224/27\",\r\n \"52.171.130.92/32\",\r\n \"104.214.19.48/28\",\r\n
+ \ \"104.214.70.191/32\",\r\n \"2603:1030:807:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"2603:1040:5:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthIndia\",\r\n
+ \ \"id\": \"AzureConnectors.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"40.78.194.240/28\",\r\n \"2603:1040:c06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.103.142.22/32\",\r\n \"51.107.59.16/28\",\r\n
+ \ \"51.107.60.224/27\",\r\n \"51.107.86.217/32\",\r\n \"2603:1020:a04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"2603:1020:b04:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UAECentral\",\r\n \"id\":
+ \"AzureConnectors.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.37.74.192/28\",\r\n
+ \ \"40.120.8.0/27\",\r\n \"2603:1040:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.UAENorth\",\r\n
+ \ \"id\": \"AzureConnectors.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.64/27\",\r\n \"65.52.250.208/28\",\r\n
+ \ \"2603:1040:904:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKSouth\",\r\n \"id\": \"AzureConnectors.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.77.96/27\",\r\n \"51.140.61.124/32\",\r\n
+ \ \"51.140.74.150/32\",\r\n \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n
+ \ \"2603:1020:705:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKWest\",\r\n \"id\": \"AzureConnectors.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.211.0/28\",\r\n \"51.140.212.224/27\",\r\n
+ \ \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n \"51.141.124.13/32\",\r\n
+ \ \"2603:1020:605:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestCentralUS\",\r\n \"id\":
+ \"AzureConnectors.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.32/28\",\r\n
+ \ \"13.71.199.192/27\",\r\n \"13.78.132.82/32\",\r\n \"52.161.101.204/32\",\r\n
+ \ \"52.161.102.22/32\",\r\n \"2603:1030:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.WestEurope\",\r\n
+ \ \"id\": \"AzureConnectors.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n
+ \ \"40.91.208.65/32\",\r\n \"52.166.78.89/32\",\r\n \"52.174.88.118/32\",\r\n
+ \ \"2603:1020:206:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestIndia\",\r\n \"id\": \"AzureConnectors.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.224/27\",\r\n \"104.211.146.224/28\",\r\n
+ \ \"104.211.189.124/32\",\r\n \"104.211.189.218/32\",\r\n
+ \ \"2603:1040:806:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS\",\r\n \"id\": \"AzureConnectors.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.223.32/27\",\r\n \"13.93.148.62/32\",\r\n
+ \ \"40.112.195.87/32\",\r\n \"40.112.243.160/28\",\r\n \"104.42.122.49/32\",\r\n
+ \ \"2603:1030:a07:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS2\",\r\n \"id\": \"AzureConnectors.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.128/28\",\r\n \"13.66.145.96/27\",\r\n
+ \ \"52.183.78.157/32\",\r\n \"52.191.164.250/32\",\r\n \"2603:1030:c06:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry\",\r\n
+ \ \"id\": \"AzureContainerRegistry\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n
+ \ \"13.66.147.0/25\",\r\n \"13.66.148.0/24\",\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/24\",\r\n \"13.69.64.88/29\",\r\n \"13.69.106.80/29\",\r\n
+ \ \"13.69.110.0/24\",\r\n \"13.69.227.88/29\",\r\n \"13.69.236.0/23\",\r\n
+ \ \"13.69.238.0/24\",\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n
+ \ \"13.71.170.56/29\",\r\n \"13.71.176.0/24\",\r\n \"13.71.194.224/29\",\r\n
+ \ \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n \"13.73.255.64/26\",\r\n
+ \ \"13.74.107.80/29\",\r\n \"13.74.110.0/24\",\r\n \"13.75.36.0/29\",\r\n
+ \ \"13.77.50.80/29\",\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"13.87.56.96/29\",\r\n \"13.87.122.96/29\",\r\n \"13.89.170.216/29\",\r\n
+ \ \"13.89.175.0/25\",\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"20.38.132.192/26\",\r\n \"20.38.140.192/26\",\r\n \"20.38.146.144/29\",\r\n
+ \ \"20.38.149.0/25\",\r\n \"20.39.15.128/25\",\r\n \"20.40.224.64/26\",\r\n
+ \ \"20.41.69.128/26\",\r\n \"20.41.199.192/26\",\r\n \"20.41.208.64/26\",\r\n
+ \ \"20.42.66.0/23\",\r\n \"20.43.46.64/26\",\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.44.2.24/29\",\r\n \"20.44.11.0/25\",\r\n
+ \ \"20.44.11.128/26\",\r\n \"20.44.12.0/25\",\r\n \"20.44.19.64/26\",\r\n
+ \ \"20.44.22.0/23\",\r\n \"20.44.26.144/29\",\r\n \"20.44.29.128/25\",\r\n
+ \ \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n \"20.45.199.128/25\",\r\n
+ \ \"20.48.192.128/26\",\r\n \"20.49.82.16/29\",\r\n \"20.49.90.16/29\",\r\n
+ \ \"20.49.92.0/24\",\r\n \"20.49.93.0/26\",\r\n \"20.49.102.128/26\",\r\n
+ \ \"20.49.115.0/26\",\r\n \"20.49.127.0/26\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.52.72.128/26\",\r\n \"20.52.88.64/26\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"20.62.128.0/26\",\r\n \"20.65.0.0/24\",\r\n
+ \ \"20.72.18.128/26\",\r\n \"20.72.26.128/26\",\r\n \"20.72.30.0/25\",\r\n
+ \ \"20.135.26.64/26\",\r\n \"20.150.170.24/29\",\r\n \"20.150.173.128/26\",\r\n
+ \ \"20.150.174.0/25\",\r\n \"20.150.178.144/29\",\r\n \"20.150.181.192/26\",\r\n
+ \ \"20.150.182.128/25\",\r\n \"20.150.186.144/29\",\r\n \"20.150.189.192/26\",\r\n
+ \ \"20.150.190.128/25\",\r\n \"20.150.225.64/26\",\r\n \"20.150.241.0/26\",\r\n
+ \ \"20.187.196.64/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"20.189.224.0/26\",\r\n \"20.191.160.128/26\",\r\n \"20.192.32.0/26\",\r\n
+ \ \"20.192.33.0/26\",\r\n \"20.192.33.128/25\",\r\n \"20.192.50.0/26\",\r\n
+ \ \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n \"20.192.101.128/26\",\r\n
+ \ \"20.192.234.24/29\",\r\n \"20.193.192.128/26\",\r\n \"20.193.202.16/29\",\r\n
+ \ \"20.193.204.128/26\",\r\n \"20.193.205.0/25\",\r\n \"20.193.206.64/26\",\r\n
+ \ \"20.194.66.16/29\",\r\n \"20.194.68.0/25\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"20.194.128.0/25\",\r\n \"20.195.64.128/26\",\r\n \"20.195.136.0/24\",\r\n
+ \ \"20.195.137.0/25\",\r\n \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n
+ \ \"23.98.87.0/25\",\r\n \"23.98.112.0/25\",\r\n \"40.64.112.0/24\",\r\n
+ \ \"40.64.135.128/25\",\r\n \"40.67.58.24/29\",\r\n \"40.67.121.0/25\",\r\n
+ \ \"40.67.122.128/26\",\r\n \"40.69.106.80/29\",\r\n \"40.69.110.0/25\",\r\n
+ \ \"40.69.116.0/26\",\r\n \"40.70.146.88/29\",\r\n \"40.70.150.0/24\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.74.100.160/29\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.78.194.80/29\",\r\n
+ \ \"40.78.196.192/26\",\r\n \"40.78.202.72/29\",\r\n \"40.78.226.208/29\",\r\n
+ \ \"40.78.231.0/24\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n \"40.79.138.32/29\",\r\n
+ \ \"40.79.141.0/25\",\r\n \"40.79.146.32/29\",\r\n \"40.79.148.128/25\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n
+ \ \"40.79.166.0/25\",\r\n \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n
+ \ \"40.79.174.0/25\",\r\n \"40.79.178.80/29\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"40.89.120.0/24\",\r\n \"40.89.121.0/25\",\r\n \"40.112.242.160/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/25\",\r\n \"40.124.64.0/25\",\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.12.25.64/26\",\r\n \"51.12.32.0/25\",\r\n \"51.12.98.24/29\",\r\n
+ \ \"51.12.100.192/26\",\r\n \"51.12.101.0/26\",\r\n \"51.12.199.192/26\",\r\n
+ \ \"51.12.202.24/29\",\r\n \"51.12.205.128/26\",\r\n \"51.12.206.128/25\",\r\n
+ \ \"51.12.226.144/29\",\r\n \"51.12.234.144/29\",\r\n \"51.13.0.0/25\",\r\n
+ \ \"51.13.1.64/26\",\r\n \"51.13.128.128/25\",\r\n \"51.13.129.0/26\",\r\n
+ \ \"51.104.9.128/25\",\r\n \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n
+ \ \"51.105.70.0/25\",\r\n \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n
+ \ \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n \"51.107.58.24/29\",\r\n
+ \ \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n \"51.107.154.24/29\",\r\n
+ \ \"51.107.192.0/26\",\r\n \"51.116.58.24/29\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/25\",\r\n \"51.116.242.144/29\",\r\n \"51.116.250.144/29\",\r\n
+ \ \"51.120.98.160/29\",\r\n \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n
+ \ \"51.120.110.0/25\",\r\n \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n
+ \ \"51.120.218.24/29\",\r\n \"51.120.234.0/26\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.138.160.128/26\",\r\n \"51.140.146.200/29\",\r\n
+ \ \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n \"51.143.208.0/26\",\r\n
+ \ \"52.138.90.32/29\",\r\n \"52.138.93.0/24\",\r\n \"52.138.226.80/29\",\r\n
+ \ \"52.138.230.0/23\",\r\n \"52.140.110.192/26\",\r\n \"52.146.131.128/26\",\r\n
+ \ \"52.150.156.64/26\",\r\n \"52.162.104.192/26\",\r\n \"52.162.106.160/29\",\r\n
+ \ \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n \"52.168.112.192/26\",\r\n
+ \ \"52.168.114.0/23\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.182.138.208/29\",\r\n \"52.182.142.0/24\",\r\n \"52.231.18.56/29\",\r\n
+ \ \"52.231.20.128/26\",\r\n \"52.231.146.192/29\",\r\n \"52.236.186.80/29\",\r\n
+ \ \"52.236.191.0/24\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"65.52.248.192/26\",\r\n \"65.52.250.16/29\",\r\n \"102.37.65.64/26\",\r\n
+ \ \"102.37.72.128/26\",\r\n \"102.133.26.24/29\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"104.208.16.80/29\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"104.211.81.136/29\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"104.214.18.184/29\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"168.61.140.128/25\",\r\n \"168.61.141.0/24\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"191.233.50.16/29\",\r\n \"191.233.54.64/26\",\r\n
+ \ \"191.233.54.128/26\",\r\n \"191.233.203.136/29\",\r\n
+ \ \"191.233.205.192/26\",\r\n \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n
+ \ \"191.234.149.64/26\",\r\n \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n
+ \ \"191.234.157.192/26\",\r\n \"2603:1000:4:402::90/125\",\r\n
+ \ \"2603:1000:4:402::340/122\",\r\n \"2603:1000:4:402::580/122\",\r\n
+ \ \"2603:1000:104:402::90/125\",\r\n \"2603:1000:104:402::340/122\",\r\n
+ \ \"2603:1000:104:802::90/125\",\r\n \"2603:1000:104:802::2c0/122\",\r\n
+ \ \"2603:1000:104:c02::90/125\",\r\n \"2603:1010:6:402::90/125\",\r\n
+ \ \"2603:1010:6:402::340/122\",\r\n \"2603:1010:6:802::90/125\",\r\n
+ \ \"2603:1010:6:802::2c0/122\",\r\n \"2603:1010:6:c02::90/125\",\r\n
+ \ \"2603:1010:101:402::90/125\",\r\n \"2603:1010:101:402::340/122\",\r\n
+ \ \"2603:1010:101:402::580/122\",\r\n \"2603:1010:304:402::90/125\",\r\n
+ \ \"2603:1010:304:402::340/122\",\r\n \"2603:1010:304:402::580/122\",\r\n
+ \ \"2603:1010:404:402::90/125\",\r\n \"2603:1010:404:402::340/122\",\r\n
+ \ \"2603:1010:404:402::580/122\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\",\r\n
+ \ \"2603:1020:206:402::90/125\",\r\n \"2603:1020:206:402::340/122\",\r\n
+ \ \"2603:1020:206:802::90/125\",\r\n \"2603:1020:206:802::2c0/122\",\r\n
+ \ \"2603:1020:206:c02::90/125\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\",\r\n \"2603:1020:605:402::90/125\",\r\n
+ \ \"2603:1020:605:402::340/122\",\r\n \"2603:1020:605:402::580/122\",\r\n
+ \ \"2603:1020:705:402::90/125\",\r\n \"2603:1020:705:402::340/122\",\r\n
+ \ \"2603:1020:705:802::90/125\",\r\n \"2603:1020:705:802::2c0/122\",\r\n
+ \ \"2603:1020:705:c02::90/125\",\r\n \"2603:1020:805:402::90/125\",\r\n
+ \ \"2603:1020:805:402::340/122\",\r\n \"2603:1020:805:802::90/125\",\r\n
+ \ \"2603:1020:805:802::2c0/122\",\r\n \"2603:1020:805:c02::90/125\",\r\n
+ \ \"2603:1020:905:402::90/125\",\r\n \"2603:1020:905:402::340/122\",\r\n
+ \ \"2603:1020:905:402::580/122\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\",\r\n
+ \ \"2603:1020:b04:402::90/125\",\r\n \"2603:1020:b04:402::340/122\",\r\n
+ \ \"2603:1020:b04:402::580/122\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\",\r\n \"2603:1020:e04::348/125\",\r\n
+ \ \"2603:1020:e04:402::90/125\",\r\n \"2603:1020:e04:402::340/122\",\r\n
+ \ \"2603:1020:e04:402::580/121\",\r\n \"2603:1020:e04:802::90/125\",\r\n
+ \ \"2603:1020:e04:802::2c0/122\",\r\n \"2603:1020:e04:c02::90/125\",\r\n
+ \ \"2603:1020:f04:402::90/125\",\r\n \"2603:1020:f04:402::340/122\",\r\n
+ \ \"2603:1020:f04:402::580/122\",\r\n \"2603:1020:1004:1::1a0/125\",\r\n
+ \ \"2603:1020:1004:400::90/125\",\r\n \"2603:1020:1004:400::3b8/125\",\r\n
+ \ \"2603:1020:1004:400::4c0/122\",\r\n \"2603:1020:1004:400::500/121\",\r\n
+ \ \"2603:1020:1004:800::150/125\",\r\n \"2603:1020:1004:800::180/121\",\r\n
+ \ \"2603:1020:1004:800::280/121\",\r\n \"2603:1020:1004:c02::300/121\",\r\n
+ \ \"2603:1020:1104::5a0/125\",\r\n \"2603:1020:1104:400::90/125\",\r\n
+ \ \"2603:1020:1104:400::380/121\",\r\n \"2603:1020:1104:400::540/122\",\r\n
+ \ \"2603:1030:f:1::2a8/125\",\r\n \"2603:1030:f:400::890/125\",\r\n
+ \ \"2603:1030:f:400::b40/122\",\r\n \"2603:1030:f:400::d80/122\",\r\n
+ \ \"2603:1030:f:400::e00/121\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\",\r\n
+ \ \"2603:1030:104:402::90/125\",\r\n \"2603:1030:104:402::340/122\",\r\n
+ \ \"2603:1030:104:402::580/122\",\r\n \"2603:1030:107::580/125\",\r\n
+ \ \"2603:1030:107:400::18/125\",\r\n \"2603:1030:107:400::300/121\",\r\n
+ \ \"2603:1030:107:400::500/122\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\",\r\n
+ \ \"2603:1030:302:402::c0/122\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\",\r\n
+ \ \"2603:1030:40c:402::90/125\",\r\n \"2603:1030:40c:402::340/122\",\r\n
+ \ \"2603:1030:40c:802::90/125\",\r\n \"2603:1030:40c:802::2c0/122\",\r\n
+ \ \"2603:1030:40c:c02::90/125\",\r\n \"2603:1030:504::1a0/125\",\r\n
+ \ \"2603:1030:504:402::90/125\",\r\n \"2603:1030:504:402::3b8/125\",\r\n
+ \ \"2603:1030:504:802::c0/125\",\r\n \"2603:1030:504:802::150/125\",\r\n
+ \ \"2603:1030:504:802::180/121\",\r\n \"2603:1030:504:c02::140/122\",\r\n
+ \ \"2603:1030:504:c02::300/121\",\r\n \"2603:1030:608:402::90/125\",\r\n
+ \ \"2603:1030:608:402::340/122\",\r\n \"2603:1030:608:402::580/122\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\",\r\n \"2603:1030:c06:400::890/125\",\r\n
+ \ \"2603:1030:c06:400::b40/122\",\r\n \"2603:1030:c06:802::90/125\",\r\n
+ \ \"2603:1030:c06:802::2c0/122\",\r\n \"2603:1030:c06:c02::90/125\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\",\r\n \"2603:1030:1005:402::90/125\",\r\n
+ \ \"2603:1030:1005:402::340/122\",\r\n \"2603:1030:1005:402::580/122\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\",\r\n
+ \ \"2603:1040:407:402::90/125\",\r\n \"2603:1040:407:402::340/122\",\r\n
+ \ \"2603:1040:407:802::90/125\",\r\n \"2603:1040:407:802::2c0/122\",\r\n
+ \ \"2603:1040:407:c02::90/125\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\",\r\n
+ \ \"2603:1040:a06:402::90/125\",\r\n \"2603:1040:a06:402::340/122\",\r\n
+ \ \"2603:1040:a06:802::90/125\",\r\n \"2603:1040:a06:802::2c0/122\",\r\n
+ \ \"2603:1040:a06:c02::90/125\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\",\r\n \"2603:1040:d04:1::1a0/125\",\r\n
+ \ \"2603:1040:d04:400::90/125\",\r\n \"2603:1040:d04:400::3b8/125\",\r\n
+ \ \"2603:1040:d04:400::4c0/122\",\r\n \"2603:1040:d04:400::500/121\",\r\n
+ \ \"2603:1040:d04:800::150/125\",\r\n \"2603:1040:d04:800::180/121\",\r\n
+ \ \"2603:1040:d04:800::280/121\",\r\n \"2603:1040:d04:c02::300/121\",\r\n
+ \ \"2603:1040:e05:402::100/122\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\",\r\n
+ \ \"2603:1040:1104::5a0/125\",\r\n \"2603:1040:1104:400::90/125\",\r\n
+ \ \"2603:1040:1104:400::380/121\",\r\n \"2603:1040:1104:400::480/122\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\",\r\n
+ \ \"2603:1050:403:400::98/125\",\r\n \"2603:1050:403:400::480/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n \"40.79.166.0/25\",\r\n
+ \ \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n \"40.79.174.0/25\",\r\n
+ \ \"2603:1010:6:402::90/125\",\r\n \"2603:1010:6:402::340/122\",\r\n
+ \ \"2603:1010:6:802::90/125\",\r\n \"2603:1010:6:802::2c0/122\",\r\n
+ \ \"2603:1010:6:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.80/29\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"2603:1010:101:402::90/125\",\r\n
+ \ \"2603:1010:101:402::340/122\",\r\n \"2603:1010:101:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.136.0/24\",\r\n \"20.195.137.0/25\",\r\n
+ \ \"191.233.203.136/29\",\r\n \"191.233.205.192/26\",\r\n
+ \ \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n \"191.234.149.64/26\",\r\n
+ \ \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n \"191.234.157.192/26\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.56/29\",\r\n \"13.71.176.0/25\",\r\n \"13.71.176.128/25\",\r\n
+ \ \"20.38.146.144/29\",\r\n \"20.38.149.0/25\",\r\n \"20.48.192.128/26\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CanadaEast\",\r\n \"id\":
+ \"AzureContainerRegistry.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.80/29\",\r\n
+ \ \"40.69.110.0/25\",\r\n \"40.69.116.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"2603:1030:1005:402::90/125\",\r\n \"2603:1030:1005:402::340/122\",\r\n
+ \ \"2603:1030:1005:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CentralIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n
+ \ \"20.192.101.128/26\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"52.140.110.192/26\",\r\n \"104.211.81.136/29\",\r\n \"2603:1040:a06:402::90/125\",\r\n
+ \ \"2603:1040:a06:402::340/122\",\r\n \"2603:1040:a06:802::90/125\",\r\n
+ \ \"2603:1040:a06:802::2c0/122\",\r\n \"2603:1040:a06:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.216/29\",\r\n \"13.89.175.0/25\",\r\n
+ \ \"20.40.224.64/26\",\r\n \"20.44.11.0/25\",\r\n \"20.44.11.128/26\",\r\n
+ \ \"20.44.12.0/25\",\r\n \"52.182.138.208/29\",\r\n \"52.182.142.0/25\",\r\n
+ \ \"52.182.142.128/25\",\r\n \"104.208.16.80/29\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.199.128/25\",\r\n \"40.78.202.72/29\",\r\n
+ \ \"168.61.140.128/25\",\r\n \"168.61.141.0/25\",\r\n \"168.61.141.128/25\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"2603:1030:f:1::2a8/125\",\r\n
+ \ \"2603:1030:f:400::890/125\",\r\n \"2603:1030:f:400::b40/122\",\r\n
+ \ \"2603:1030:f:400::d80/122\",\r\n \"2603:1030:f:400::e00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.0/29\",\r\n \"20.187.196.64/26\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.66.0/24\",\r\n \"20.42.67.0/24\",\r\n \"20.62.128.0/26\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.78.226.208/29\",\r\n \"40.78.231.0/24\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"52.168.112.192/26\",\r\n \"52.168.114.0/24\",\r\n
+ \ \"52.168.115.0/24\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.19.64/26\",\r\n \"20.44.22.0/24\",\r\n \"20.44.23.0/24\",\r\n
+ \ \"20.49.102.128/26\",\r\n \"20.65.0.0/24\",\r\n \"40.70.146.88/29\",\r\n
+ \ \"40.70.150.0/24\",\r\n \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"2603:1030:40c:402::90/125\",\r\n
+ \ \"2603:1030:40c:402::340/122\",\r\n \"2603:1030:40c:802::90/125\",\r\n
+ \ \"2603:1030:40c:802::2c0/122\",\r\n \"2603:1030:40c:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.128/25\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.89.120.0/24\",\r\n
+ \ \"40.89.121.0/25\",\r\n \"52.138.90.32/29\",\r\n \"52.138.93.0/25\",\r\n
+ \ \"52.138.93.128/25\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.46.64/26\",\r\n \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n
+ \ \"40.79.138.32/29\",\r\n \"40.79.141.0/26\",\r\n \"40.79.141.64/26\",\r\n
+ \ \"40.79.146.32/29\",\r\n \"40.79.148.128/26\",\r\n \"40.79.148.192/26\",\r\n
+ \ \"2603:1020:805:402::90/125\",\r\n \"2603:1020:805:402::340/122\",\r\n
+ \ \"2603:1020:805:802::90/125\",\r\n \"2603:1020:805:802::2c0/122\",\r\n
+ \ \"2603:1020:805:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.FranceSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.80/29\",\r\n
+ \ \"51.138.160.128/26\",\r\n \"2603:1020:905:402::90/125\",\r\n
+ \ \"2603:1020:905:402::340/122\",\r\n \"2603:1020:905:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.128/26\",\r\n \"51.116.58.24/29\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.88.64/26\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/26\",\r\n \"51.116.158.192/26\",\r\n \"51.116.242.144/29\",\r\n
+ \ \"51.116.250.144/29\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"20.191.160.128/26\",\r\n \"20.194.128.0/25\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"2603:1040:407:402::90/125\",\r\n
+ \ \"2603:1040:407:402::340/122\",\r\n \"2603:1040:407:802::90/125\",\r\n
+ \ \"2603:1040:407:802::2c0/122\",\r\n \"2603:1040:407:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.224.0/26\",\r\n \"40.74.100.160/29\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.128/26\",\r\n \"20.44.26.144/29\",\r\n
+ \ \"20.44.29.128/26\",\r\n \"20.44.29.192/26\",\r\n \"20.194.66.16/29\",\r\n
+ \ \"20.194.68.0/26\",\r\n \"20.194.68.64/26\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"52.231.18.56/29\",\r\n \"52.231.20.128/26\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.135.26.64/26\",\r\n \"52.231.146.192/29\",\r\n
+ \ \"2603:1040:e05:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.115.0/26\",\r\n \"52.162.104.192/26\",\r\n
+ \ \"52.162.106.160/29\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"2603:1030:608:402::90/125\",\r\n \"2603:1030:608:402::340/122\",\r\n
+ \ \"2603:1030:608:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.88/29\",\r\n
+ \ \"13.69.236.0/23\",\r\n \"13.69.238.0/24\",\r\n \"13.74.107.80/29\",\r\n
+ \ \"13.74.110.0/24\",\r\n \"52.138.226.80/29\",\r\n \"52.138.230.0/24\",\r\n
+ \ \"52.138.231.0/24\",\r\n \"52.146.131.128/26\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"5\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.0/25\",\r\n \"51.13.1.64/26\",\r\n \"51.120.98.160/29\",\r\n
+ \ \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n \"51.120.110.0/25\",\r\n
+ \ \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n \"51.120.234.0/26\",\r\n
+ \ \"2603:1020:e04::348/125\",\r\n \"2603:1020:e04:402::90/125\",\r\n
+ \ \"2603:1020:e04:402::340/122\",\r\n \"2603:1020:e04:402::580/121\",\r\n
+ \ \"2603:1020:e04:802::90/125\",\r\n \"2603:1020:e04:802::2c0/122\",\r\n
+ \ \"2603:1020:e04:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorwayWest\",\r\n \"id\":
+ \"AzureContainerRegistry.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.13.128.128/25\",\r\n
+ \ \"51.13.129.0/26\",\r\n \"51.120.218.24/29\",\r\n \"2603:1020:f04:402::90/125\",\r\n
+ \ \"2603:1020:f04:402::340/122\",\r\n \"2603:1020:f04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.128/26\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"2603:1000:104:402::90/125\",\r\n
+ \ \"2603:1000:104:402::340/122\",\r\n \"2603:1000:104:802::90/125\",\r\n
+ \ \"2603:1000:104:802::2c0/122\",\r\n \"2603:1000:104:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.64/26\",\r\n \"102.133.26.24/29\",\r\n
+ \ \"2603:1000:4:402::90/125\",\r\n \"2603:1000:4:402::340/122\",\r\n
+ \ \"2603:1000:4:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n
+ \ \"13.73.255.64/26\",\r\n \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n
+ \ \"20.49.90.16/29\",\r\n \"20.49.92.0/25\",\r\n \"20.49.92.128/25\",\r\n
+ \ \"20.49.93.0/26\",\r\n \"40.124.64.0/25\",\r\n \"104.214.18.184/29\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SoutheastAsia\",\r\n \"id\":
+ \"AzureContainerRegistry.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/25\",\r\n \"13.67.14.128/25\",\r\n \"20.195.64.128/26\",\r\n
+ \ \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n \"23.98.87.0/25\",\r\n
+ \ \"23.98.112.0/25\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.41.199.192/26\",\r\n
+ \ \"20.41.208.64/26\",\r\n \"40.78.194.80/29\",\r\n \"40.78.196.192/26\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n
+ \ \"51.107.58.24/29\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n
+ \ \"51.107.154.24/29\",\r\n \"51.107.192.0/26\",\r\n \"2603:1020:b04:402::90/125\",\r\n
+ \ \"2603:1020:b04:402::340/122\",\r\n \"2603:1020:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.192/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/26\",\r\n \"40.120.77.64/26\",\r\n \"65.52.248.192/26\",\r\n
+ \ \"65.52.250.16/29\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.96/29\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.128/25\",\r\n
+ \ \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n \"51.105.70.0/25\",\r\n
+ \ \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.140.146.200/29\",\r\n \"51.143.208.0/26\",\r\n \"2603:1020:705:402::90/125\",\r\n
+ \ \"2603:1020:705:402::340/122\",\r\n \"2603:1020:705:802::90/125\",\r\n
+ \ \"2603:1020:705:802::2c0/122\",\r\n \"2603:1020:705:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.56.96/29\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKWest\",\r\n \"id\":
+ \"AzureContainerRegistry.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n
+ \ \"2603:1020:605:402::90/125\",\r\n \"2603:1020:605:402::340/122\",\r\n
+ \ \"2603:1020:605:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.224/29\",\r\n
+ \ \"40.67.121.0/25\",\r\n \"40.67.122.128/26\",\r\n \"52.150.156.64/26\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.88/29\",\r\n
+ \ \"13.69.106.80/29\",\r\n \"13.69.110.0/24\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.236.186.80/29\",\r\n \"52.236.191.0/24\",\r\n \"2603:1020:206:402::90/125\",\r\n
+ \ \"2603:1020:206:402::340/122\",\r\n \"2603:1020:206:802::90/125\",\r\n
+ \ \"2603:1020:206:802::2c0/122\",\r\n \"2603:1020:206:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestIndia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.132.192/26\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.127.0/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"40.112.242.160/29\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n \"13.66.147.0/25\",\r\n
+ \ \"13.66.148.0/24\",\r\n \"40.64.112.0/24\",\r\n \"40.64.135.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"2603:1030:c06:400::890/125\",\r\n \"2603:1030:c06:400::b40/122\",\r\n
+ \ \"2603:1030:c06:802::90/125\",\r\n \"2603:1030:c06:802::2c0/122\",\r\n
+ \ \"2603:1030:c06:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB\",\r\n \"id\": \"AzureCosmosDB\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n \"13.64.113.68/32\",\r\n
+ \ \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.66.138.0/26\",\r\n
+ \ \"13.67.8.0/26\",\r\n \"13.68.28.135/32\",\r\n \"13.69.66.0/25\",\r\n
+ \ \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n \"13.69.226.0/25\",\r\n
+ \ \"13.70.74.136/29\",\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"13.71.170.0/28\",\r\n \"13.71.194.0/26\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.73.100.183/32\",\r\n \"13.73.254.224/27\",\r\n \"13.74.106.0/25\",\r\n
+ \ \"13.75.34.0/26\",\r\n \"13.75.134.84/32\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"13.77.50.0/28\",\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n
+ \ \"13.78.188.25/32\",\r\n \"13.79.34.236/32\",\r\n \"13.81.51.99/32\",\r\n
+ \ \"13.82.53.191/32\",\r\n \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n
+ \ \"13.85.16.188/32\",\r\n \"13.87.56.0/27\",\r\n \"13.87.122.0/27\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.88.253.180/32\",\r\n \"13.89.41.245/32\",\r\n
+ \ \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n \"13.89.224.229/32\",\r\n
+ \ \"13.90.199.155/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"13.94.201.5/32\",\r\n
+ \ \"13.95.234.68/32\",\r\n \"20.36.26.132/32\",\r\n \"20.36.42.8/32\",\r\n
+ \ \"20.36.75.163/32\",\r\n \"20.36.106.0/26\",\r\n \"20.36.114.0/28\",\r\n
+ \ \"20.36.123.96/27\",\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"20.37.228.32/27\",\r\n \"20.38.140.128/27\",\r\n \"20.38.146.0/26\",\r\n
+ \ \"20.39.15.64/27\",\r\n \"20.40.207.160/27\",\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"20.43.46.0/27\",\r\n \"20.44.2.64/26\",\r\n
+ \ \"20.44.10.0/26\",\r\n \"20.44.26.0/26\",\r\n \"20.45.115.160/27\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.45.198.96/27\",\r\n \"20.48.192.32/27\",\r\n
+ \ \"20.49.82.64/26\",\r\n \"20.49.90.64/26\",\r\n \"20.49.102.64/27\",\r\n
+ \ \"20.49.114.128/27\",\r\n \"20.49.126.160/27\",\r\n \"20.53.41.0/27\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"20.72.18.64/27\",\r\n \"20.72.26.64/26\",\r\n
+ \ \"20.150.166.192/27\",\r\n \"20.150.170.64/26\",\r\n \"20.150.178.0/26\",\r\n
+ \ \"20.150.186.0/26\",\r\n \"20.187.196.0/27\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"20.192.98.0/26\",\r\n \"20.192.166.192/27\",\r\n \"20.192.231.0/27\",\r\n
+ \ \"20.192.234.64/26\",\r\n \"20.193.202.64/26\",\r\n \"20.194.66.64/26\",\r\n
+ \ \"23.96.180.213/32\",\r\n \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"23.102.239.134/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.67.51.160/27\",\r\n \"40.67.58.64/26\",\r\n
+ \ \"40.68.44.85/32\",\r\n \"40.69.106.0/28\",\r\n \"40.70.0.140/32\",\r\n
+ \ \"40.70.220.202/32\",\r\n \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n
+ \ \"40.71.203.37/32\",\r\n \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n
+ \ \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.77.63.179/32\",\r\n
+ \ \"40.78.194.0/28\",\r\n \"40.78.203.32/27\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.78.236.192/26\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.79.163.72/29\",\r\n \"40.79.163.192/26\",\r\n
+ \ \"40.79.170.48/28\",\r\n \"40.79.178.0/28\",\r\n \"40.79.186.16/28\",\r\n
+ \ \"40.79.194.128/26\",\r\n \"40.80.50.0/26\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"40.80.173.0/27\",\r\n \"40.83.137.191/32\",\r\n \"40.85.178.211/32\",\r\n
+ \ \"40.86.229.245/32\",\r\n \"40.89.22.224/27\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.113.90.91/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"40.115.241.37/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"40.120.74.64/26\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"40.126.244.209/32\",\r\n \"51.12.43.0/27\",\r\n \"51.12.98.64/26\",\r\n
+ \ \"51.12.195.0/27\",\r\n \"51.12.202.64/26\",\r\n \"51.12.226.0/26\",\r\n
+ \ \"51.12.234.0/26\",\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.105.92.192/27\",\r\n \"51.107.52.224/27\",\r\n
+ \ \"51.107.58.64/26\",\r\n \"51.107.148.32/27\",\r\n \"51.107.154.64/26\",\r\n
+ \ \"51.116.50.224/27\",\r\n \"51.116.58.64/26\",\r\n \"51.116.146.224/27\",\r\n
+ \ \"51.116.154.128/26\",\r\n \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n
+ \ \"51.120.44.128/27\",\r\n \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n
+ \ \"51.120.210.0/26\",\r\n \"51.120.218.64/26\",\r\n \"51.120.228.160/27\",\r\n
+ \ \"51.137.166.128/27\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n
+ \ \"51.141.25.77/32\",\r\n \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n
+ \ \"51.143.189.37/32\",\r\n \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n
+ \ \"52.136.52.64/27\",\r\n \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n
+ \ \"52.136.136.70/32\",\r\n \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n
+ \ \"52.138.92.0/26\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.140.110.64/27\",\r\n \"52.143.136.41/32\",\r\n
+ \ \"52.146.79.160/27\",\r\n \"52.146.131.0/27\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.156.170.104/32\",\r\n \"52.158.234.203/32\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"52.162.106.0/26\",\r\n \"52.162.252.26/32\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.167.107.128/26\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n
+ \ \"52.170.204.83/32\",\r\n \"52.172.55.127/32\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"52.173.148.217/32\",\r\n \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n
+ \ \"52.174.253.239/32\",\r\n \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n
+ \ \"52.176.0.136/32\",\r\n \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n
+ \ \"52.176.155.127/32\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n
+ \ \"52.179.200.0/25\",\r\n \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n
+ \ \"52.180.177.137/32\",\r\n \"52.182.138.0/25\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"52.186.69.224/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n
+ \ \"52.226.21.178/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n \"52.231.207.31/32\",\r\n
+ \ \"52.232.59.220/32\",\r\n \"52.233.41.60/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n \"52.236.189.0/26\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"65.52.210.9/32\",\r\n \"65.52.251.128/26\",\r\n
+ \ \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n \"102.133.122.0/26\",\r\n
+ \ \"102.133.154.64/26\",\r\n \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n
+ \ \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n \"104.41.177.93/32\",\r\n
+ \ \"104.45.16.183/32\",\r\n \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n
+ \ \"104.46.177.64/27\",\r\n \"104.208.231.0/25\",\r\n \"104.210.89.99/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n
+ \ \"104.211.146.0/28\",\r\n \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"104.211.227.84/32\",\r\n
+ \ \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n \"104.214.26.177/32\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"157.55.170.133/32\",\r\n \"168.61.142.128/26\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.11.192/27\",\r\n
+ \ \"191.233.50.64/26\",\r\n \"191.233.204.128/27\",\r\n \"191.234.138.160/27\",\r\n
+ \ \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n \"191.234.179.157/32\",\r\n
+ \ \"191.239.179.124/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1000:4:402::c0/122\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\",\r\n
+ \ \"2603:1010:6:402::c0/122\",\r\n \"2603:1010:6:802::c0/122\",\r\n
+ \ \"2603:1010:6:c02::c0/122\",\r\n \"2603:1010:101:402::c0/122\",\r\n
+ \ \"2603:1010:304:402::c0/122\",\r\n \"2603:1010:404:402::c0/122\",\r\n
+ \ \"2603:1020:5:402::c0/122\",\r\n \"2603:1020:5:802::c0/122\",\r\n
+ \ \"2603:1020:5:c02::c0/122\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\",\r\n
+ \ \"2603:1020:305:402::c0/122\",\r\n \"2603:1020:405:402::c0/122\",\r\n
+ \ \"2603:1020:605:402::c0/122\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\",\r\n
+ \ \"2603:1020:805:402::c0/122\",\r\n \"2603:1020:805:802::c0/122\",\r\n
+ \ \"2603:1020:805:c02::c0/122\",\r\n \"2603:1020:905:402::c0/122\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\",\r\n \"2603:1020:b04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:402::c0/122\",\r\n \"2603:1020:c04:802::c0/122\",\r\n
+ \ \"2603:1020:c04:c02::c0/122\",\r\n \"2603:1020:d04:402::c0/122\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\",\r\n
+ \ \"2603:1020:f04:402::c0/122\",\r\n \"2603:1020:1004:1::60/123\",\r\n
+ \ \"2603:1020:1004:400::c0/122\",\r\n \"2603:1020:1004:400::280/122\",\r\n
+ \ \"2603:1020:1004:400::3c0/122\",\r\n \"2603:1020:1104::520/123\",\r\n
+ \ \"2603:1020:1104:400::c0/122\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\",\r\n
+ \ \"2603:1030:104:402::c0/122\",\r\n \"2603:1030:107::540/123\",\r\n
+ \ \"2603:1030:107:400::40/122\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\",\r\n
+ \ \"2603:1030:504::60/123\",\r\n \"2603:1030:504:402::c0/122\",\r\n
+ \ \"2603:1030:504:402::280/122\",\r\n \"2603:1030:504:402::3c0/122\",\r\n
+ \ \"2603:1030:504:802::200/122\",\r\n \"2603:1030:504:c02::3c0/122\",\r\n
+ \ \"2603:1030:608:402::c0/122\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\",\r\n
+ \ \"2603:1030:a07:402::c0/122\",\r\n \"2603:1030:b04:402::c0/122\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\",\r\n
+ \ \"2603:1030:1005:402::c0/122\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\",\r\n
+ \ \"2603:1040:207:402::c0/122\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\",\r\n
+ \ \"2603:1040:606:402::c0/122\",\r\n \"2603:1040:806:402::c0/122\",\r\n
+ \ \"2603:1040:904:402::c0/122\",\r\n \"2603:1040:904:802::c0/122\",\r\n
+ \ \"2603:1040:904:c02::c0/122\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\",\r\n
+ \ \"2603:1040:b04:402::c0/122\",\r\n \"2603:1040:c06:402::c0/122\",\r\n
+ \ \"2603:1040:d04:1::60/123\",\r\n \"2603:1040:d04:400::c0/122\",\r\n
+ \ \"2603:1040:d04:400::280/122\",\r\n \"2603:1040:d04:400::3c0/122\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\",\r\n
+ \ \"2603:1040:1104::520/123\",\r\n \"2603:1040:1104:400::c0/122\",\r\n
+ \ \"2603:1050:6:402::c0/122\",\r\n \"2603:1050:6:802::c0/122\",\r\n
+ \ \"2603:1050:6:c02::c0/122\",\r\n \"2603:1050:403:400::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.8/32\",\r\n \"20.36.106.0/26\",\r\n \"20.37.228.32/27\",\r\n
+ \ \"2603:1010:304:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral2\",\r\n \"id\":
+ \"AzureCosmosDB.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.36.75.163/32\",\r\n
+ \ \"20.36.114.0/28\",\r\n \"20.36.123.96/27\",\r\n \"2603:1010:404:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.136/29\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.75.134.84/32\",\r\n \"20.53.41.0/27\",\r\n \"40.79.163.72/29\",\r\n
+ \ \"40.79.163.192/26\",\r\n \"40.79.170.48/28\",\r\n \"40.126.244.209/32\",\r\n
+ \ \"52.156.170.104/32\",\r\n \"104.210.89.99/32\",\r\n \"2603:1010:6:402::c0/122\",\r\n
+ \ \"2603:1010:6:802::c0/122\",\r\n \"2603:1010:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.100.183/32\",\r\n \"13.77.50.0/28\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"104.46.177.64/27\",\r\n \"191.239.179.124/32\",\r\n
+ \ \"2603:1010:101:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.BrazilSouth\",\r\n \"id\": \"AzureCosmosDB.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.204.128/27\",\r\n
+ \ \"191.234.138.160/27\",\r\n \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n
+ \ \"191.234.179.157/32\",\r\n \"2603:1050:6:402::c0/122\",\r\n
+ \ \"2603:1050:6:802::c0/122\",\r\n \"2603:1050:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.0/28\",\r\n \"13.88.253.180/32\",\r\n
+ \ \"20.38.146.0/26\",\r\n \"20.48.192.32/27\",\r\n \"52.233.41.60/32\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.0/28\",\r\n \"40.86.229.245/32\",\r\n
+ \ \"40.89.22.224/27\",\r\n \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n
+ \ \"2603:1030:1005:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.CentralIndia\",\r\n \"id\":
+ \"AzureCosmosDB.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.192.98.0/26\",\r\n
+ \ \"40.80.50.0/26\",\r\n \"52.140.110.64/27\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.41.245/32\",\r\n \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n
+ \ \"13.89.224.229/32\",\r\n \"20.40.207.160/27\",\r\n \"20.44.10.0/26\",\r\n
+ \ \"40.77.63.179/32\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.173.148.217/32\",\r\n
+ \ \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n \"52.176.0.136/32\",\r\n
+ \ \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n \"52.176.155.127/32\",\r\n
+ \ \"52.182.138.0/25\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.96/27\",\r\n \"40.78.203.32/27\",\r\n
+ \ \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n \"52.180.177.137/32\",\r\n
+ \ \"168.61.142.128/26\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastAsia\",\r\n \"id\": \"AzureCosmosDB.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.0/26\",\r\n \"20.187.196.0/27\",\r\n \"23.102.239.134/32\",\r\n
+ \ \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1040:207:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastUS\",\r\n \"id\": \"AzureCosmosDB.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.53.191/32\",\r\n \"13.90.199.155/32\",\r\n
+ \ \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n \"40.71.203.37/32\",\r\n
+ \ \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.85.178.211/32\",\r\n \"52.146.79.160/27\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.170.204.83/32\",\r\n \"52.186.69.224/32\",\r\n
+ \ \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n \"52.226.21.178/32\",\r\n
+ \ \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.68.28.135/32\",\r\n
+ \ \"20.49.102.64/27\",\r\n \"40.70.0.140/32\",\r\n \"40.70.220.202/32\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"52.167.107.128/26\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n \"52.179.200.0/25\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"104.208.231.0/25\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.64/27\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n \"52.138.92.0/26\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.FranceCentral\",\r\n \"id\":
+ \"AzureCosmosDB.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.43.46.0/27\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"52.143.136.41/32\",\r\n \"2603:1020:805:402::c0/122\",\r\n
+ \ \"2603:1020:805:802::c0/122\",\r\n \"2603:1020:805:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.FranceSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.0/28\",\r\n \"51.105.92.192/27\",\r\n
+ \ \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n \"52.136.136.70/32\",\r\n
+ \ \"2603:1020:905:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.GermanyNorth\",\r\n \"id\":
+ \"AzureCosmosDB.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.116.50.224/27\",\r\n
+ \ \"51.116.58.64/26\",\r\n \"2603:1020:d04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.146.224/27\",\r\n \"51.116.154.128/26\",\r\n
+ \ \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n \"2603:1020:c04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:802::c0/122\",\r\n \"2603:1020:c04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"40.79.186.16/28\",\r\n \"40.79.194.128/26\",\r\n \"40.115.241.37/32\",\r\n
+ \ \"104.41.177.93/32\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"2603:1040:606:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.KoreaCentral\",\r\n \"id\":
+ \"AzureCosmosDB.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.44.26.0/26\",\r\n \"20.194.66.64/26\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.KoreaSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.173.0/27\",\r\n \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n
+ \ \"52.231.207.31/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCosmosDB.NorthCentralUS\",\r\n \"id\": \"AzureCosmosDB.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.128/27\",\r\n \"23.96.180.213/32\",\r\n
+ \ \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n \"52.162.106.0/26\",\r\n
+ \ \"52.162.252.26/32\",\r\n \"65.52.210.9/32\",\r\n \"157.55.170.133/32\",\r\n
+ \ \"2603:1030:608:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.NorthEurope\",\r\n \"id\": \"AzureCosmosDB.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.0/25\",\r\n \"13.74.106.0/25\",\r\n \"13.79.34.236/32\",\r\n
+ \ \"40.113.90.91/32\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.146.131.0/27\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n \"2603:1020:5:402::c0/122\",\r\n
+ \ \"2603:1020:5:802::c0/122\",\r\n \"2603:1020:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.128/27\",\r\n
+ \ \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n \"51.120.210.0/26\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.64/26\",\r\n
+ \ \"51.120.228.160/27\",\r\n \"2603:1020:f04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.0/26\",\r\n \"102.133.154.64/26\",\r\n
+ \ \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n
+ \ \"2603:1000:4:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SouthCentralUS\",\r\n \"id\":
+ \"AzureCosmosDB.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.73.254.224/27\",\r\n
+ \ \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n \"13.85.16.188/32\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.49.90.64/26\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n
+ \ \"104.214.26.177/32\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.8.0/26\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"40.78.236.192/26\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"40.78.194.0/28\",\r\n \"52.172.55.127/32\",\r\n
+ \ \"104.211.227.84/32\",\r\n \"2603:1040:c06:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.52.224/27\",\r\n \"51.107.58.64/26\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SwitzerlandWest\",\r\n \"id\":
+ \"AzureCosmosDB.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.107.148.32/27\",\r\n
+ \ \"51.107.154.64/26\",\r\n \"2603:1020:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UAECentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"2603:1040:b04:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.UAENorth\",\r\n \"id\": \"AzureCosmosDB.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.128/27\",\r\n \"40.120.74.64/26\",\r\n
+ \ \"65.52.251.128/26\",\r\n \"2603:1040:904:402::c0/122\",\r\n
+ \ \"2603:1040:904:802::c0/122\",\r\n \"2603:1040:904:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.143.189.37/32\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.137.166.128/27\",\r\n
+ \ \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n \"51.141.25.77/32\",\r\n
+ \ \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n \"2603:1020:605:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestCentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.0/26\",\r\n \"13.78.188.25/32\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"2603:1030:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestEurope\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.66.0/25\",\r\n \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n
+ \ \"13.81.51.99/32\",\r\n \"13.94.201.5/32\",\r\n \"13.95.234.68/32\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"40.68.44.85/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n \"52.174.253.239/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.232.59.220/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.236.189.0/26\",\r\n \"104.45.16.183/32\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.136.52.64/27\",\r\n \"104.211.146.0/28\",\r\n
+ \ \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"2603:1040:806:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n
+ \ \"13.64.113.68/32\",\r\n \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"20.49.126.160/27\",\r\n
+ \ \"40.83.137.191/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"2603:1030:a07:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.0/26\",\r\n
+ \ \"20.36.26.132/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.158.234.203/32\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"AzureDatabricks\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDatabricks\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.105.50/32\",\r\n \"13.70.107.141/32\",\r\n
+ \ \"13.71.184.74/32\",\r\n \"13.71.187.166/32\",\r\n \"13.75.164.249/32\",\r\n
+ \ \"13.75.218.172/32\",\r\n \"13.78.18.152/32\",\r\n \"13.78.19.235/32\",\r\n
+ \ \"13.86.58.215/32\",\r\n \"13.88.249.244/32\",\r\n \"20.36.120.68/30\",\r\n
+ \ \"20.37.64.68/30\",\r\n \"20.37.156.208/28\",\r\n \"20.37.195.16/29\",\r\n
+ \ \"20.37.224.68/30\",\r\n \"20.38.84.80/28\",\r\n \"20.38.136.120/29\",\r\n
+ \ \"20.39.8.68/30\",\r\n \"20.41.4.112/28\",\r\n \"20.41.65.136/29\",\r\n
+ \ \"20.41.192.68/30\",\r\n \"20.42.4.208/28\",\r\n \"20.42.129.160/28\",\r\n
+ \ \"20.42.224.68/30\",\r\n \"20.43.41.152/29\",\r\n \"20.43.65.144/29\",\r\n
+ \ \"20.43.130.96/28\",\r\n \"20.45.112.68/30\",\r\n \"20.45.192.68/30\",\r\n
+ \ \"20.46.12.200/29\",\r\n \"20.46.121.76/32\",\r\n \"20.72.16.32/29\",\r\n
+ \ \"20.150.160.104/30\",\r\n \"20.150.160.208/29\",\r\n \"20.186.83.56/32\",\r\n
+ \ \"20.189.106.192/28\",\r\n \"20.192.160.32/29\",\r\n \"20.192.225.24/29\",\r\n
+ \ \"20.194.4.102/32\",\r\n \"23.97.106.142/32\",\r\n \"23.97.201.41/32\",\r\n
+ \ \"23.100.0.135/32\",\r\n \"23.100.226.13/32\",\r\n \"23.101.147.147/32\",\r\n
+ \ \"23.101.152.95/32\",\r\n \"40.67.48.68/30\",\r\n \"40.70.58.221/32\",\r\n
+ \ \"40.74.30.80/28\",\r\n \"40.80.56.68/30\",\r\n \"40.80.168.68/30\",\r\n
+ \ \"40.80.188.0/28\",\r\n \"40.82.248.112/28\",\r\n \"40.83.176.199/32\",\r\n
+ \ \"40.83.178.242/32\",\r\n \"40.85.223.25/32\",\r\n \"40.86.167.110/32\",\r\n
+ \ \"40.89.16.68/30\",\r\n \"40.89.168.225/32\",\r\n \"40.89.170.184/32\",\r\n
+ \ \"40.89.171.101/32\",\r\n \"40.118.174.12/32\",\r\n \"40.119.9.208/28\",\r\n
+ \ \"40.123.212.253/32\",\r\n \"40.123.218.63/32\",\r\n \"40.123.219.125/32\",\r\n
+ \ \"40.123.225.135/32\",\r\n \"40.127.5.82/32\",\r\n \"40.127.5.124/32\",\r\n
+ \ \"40.127.147.196/32\",\r\n \"51.12.41.16/30\",\r\n \"51.12.47.16/29\",\r\n
+ \ \"51.12.193.16/30\",\r\n \"51.12.198.200/29\",\r\n \"51.103.18.111/32\",\r\n
+ \ \"51.104.25.136/30\",\r\n \"51.105.80.68/30\",\r\n \"51.105.88.68/30\",\r\n
+ \ \"51.107.48.120/30\",\r\n \"51.107.144.68/30\",\r\n \"51.120.40.120/30\",\r\n
+ \ \"51.120.224.68/30\",\r\n \"51.120.234.176/29\",\r\n \"51.137.160.120/29\",\r\n
+ \ \"51.138.96.158/32\",\r\n \"51.140.200.46/32\",\r\n \"51.140.203.27/32\",\r\n
+ \ \"51.140.204.4/32\",\r\n \"51.141.103.193/32\",\r\n \"51.143.192.68/30\",\r\n
+ \ \"52.136.48.68/30\",\r\n \"52.140.104.120/29\",\r\n \"52.141.6.71/32\",\r\n
+ \ \"52.141.6.181/32\",\r\n \"52.141.22.164/32\",\r\n \"52.146.50.16/32\",\r\n
+ \ \"52.150.136.68/30\",\r\n \"52.172.133.58/32\",\r\n \"52.187.0.85/32\",\r\n
+ \ \"52.187.3.203/32\",\r\n \"52.187.145.107/32\",\r\n \"52.228.81.136/29\",\r\n
+ \ \"52.230.27.216/32\",\r\n \"52.232.19.246/32\",\r\n \"52.246.160.72/32\",\r\n
+ \ \"52.247.0.200/32\",\r\n \"102.37.41.3/32\",\r\n \"102.133.56.68/30\",\r\n
+ \ \"102.133.216.96/29\",\r\n \"102.133.224.24/32\",\r\n \"104.41.54.118/32\",\r\n
+ \ \"104.45.7.191/32\",\r\n \"104.211.89.81/32\",\r\n \"104.211.101.14/32\",\r\n
+ \ \"104.211.103.82/32\",\r\n \"191.232.53.223/32\",\r\n \"191.233.8.32/29\",\r\n
+ \ \"191.234.160.82/32\",\r\n \"191.235.225.144/29\",\r\n
+ \ \"2603:1000:4::160/123\",\r\n \"2603:1000:104:1::160/123\",\r\n
+ \ \"2603:1010:6:1::160/123\",\r\n \"2603:1010:101::160/123\",\r\n
+ \ \"2603:1010:304::160/123\",\r\n \"2603:1010:404::160/123\",\r\n
+ \ \"2603:1020:5:1::160/123\",\r\n \"2603:1020:206:1::160/123\",\r\n
+ \ \"2603:1020:305::160/123\",\r\n \"2603:1020:405::160/123\",\r\n
+ \ \"2603:1020:605::160/123\",\r\n \"2603:1020:705:1::160/123\",\r\n
+ \ \"2603:1020:805:1::160/123\",\r\n \"2603:1020:905::160/123\",\r\n
+ \ \"2603:1020:a04:1::160/123\",\r\n \"2603:1020:b04::160/123\",\r\n
+ \ \"2603:1020:c04:1::160/123\",\r\n \"2603:1020:d04::160/123\",\r\n
+ \ \"2603:1020:e04:1::160/123\",\r\n \"2603:1020:f04::160/123\",\r\n
+ \ \"2603:1020:1004::160/123\",\r\n \"2603:1020:1104::160/123\",\r\n
+ \ \"2603:1030:f:1::160/123\",\r\n \"2603:1030:10:1::160/123\",\r\n
+ \ \"2603:1030:104:1::160/123\",\r\n \"2603:1030:107::160/123\",\r\n
+ \ \"2603:1030:210:1::160/123\",\r\n \"2603:1030:40b:1::160/123\",\r\n
+ \ \"2603:1030:40c:1::160/123\",\r\n \"2603:1030:504:1::160/123\",\r\n
+ \ \"2603:1030:608::160/123\",\r\n \"2603:1030:807:1::160/123\",\r\n
+ \ \"2603:1030:a07::160/123\",\r\n \"2603:1030:b04::160/123\",\r\n
+ \ \"2603:1030:c06:1::160/123\",\r\n \"2603:1030:f05:1::160/123\",\r\n
+ \ \"2603:1030:1005::160/123\",\r\n \"2603:1040:5:1::160/123\",\r\n
+ \ \"2603:1040:207::160/123\",\r\n \"2603:1040:407:1::160/123\",\r\n
+ \ \"2603:1040:606::160/123\",\r\n \"2603:1040:806::160/123\",\r\n
+ \ \"2603:1040:904:1::160/123\",\r\n \"2603:1040:a06:1::160/123\",\r\n
+ \ \"2603:1040:b04::160/123\",\r\n \"2603:1040:c06::160/123\",\r\n
+ \ \"2603:1040:d04::160/123\",\r\n \"2603:1040:f05:1::160/123\",\r\n
+ \ \"2603:1040:1104::160/123\",\r\n \"2603:1050:6:1::160/123\",\r\n
+ \ \"2603:1050:403::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement\",\r\n \"id\":
+ \"AzureDataExplorerManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.66.141.160/28\",\r\n
+ \ \"13.69.106.240/28\",\r\n \"13.69.229.176/28\",\r\n \"13.70.73.112/28\",\r\n
+ \ \"13.71.173.64/28\",\r\n \"13.71.196.64/28\",\r\n \"13.73.240.96/28\",\r\n
+ \ \"13.75.39.0/28\",\r\n \"13.77.52.240/28\",\r\n \"13.86.36.42/32\",\r\n
+ \ \"13.86.219.64/28\",\r\n \"13.87.57.224/28\",\r\n \"13.87.123.224/28\",\r\n
+ \ \"13.89.174.80/28\",\r\n \"20.36.242.104/32\",\r\n \"20.37.24.1/32\",\r\n
+ \ \"20.39.97.38/32\",\r\n \"20.39.99.177/32\",\r\n \"20.40.114.21/32\",\r\n
+ \ \"20.40.161.39/32\",\r\n \"20.43.89.90/32\",\r\n \"20.43.120.96/28\",\r\n
+ \ \"20.44.16.96/28\",\r\n \"20.44.27.96/28\",\r\n \"20.45.3.60/32\",\r\n
+ \ \"20.46.13.240/28\",\r\n \"20.46.146.7/32\",\r\n \"20.72.27.128/28\",\r\n
+ \ \"20.150.171.192/28\",\r\n \"20.150.245.112/28\",\r\n \"20.185.100.27/32\",\r\n
+ \ \"20.189.74.103/32\",\r\n \"20.192.235.128/28\",\r\n \"20.193.203.96/28\",\r\n
+ \ \"20.194.75.224/28\",\r\n \"23.98.82.240/28\",\r\n \"40.66.57.57/32\",\r\n
+ \ \"40.66.57.91/32\",\r\n \"40.67.188.68/32\",\r\n \"40.69.107.240/28\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"40.74.101.208/28\",\r\n \"40.74.147.80/28\",\r\n
+ \ \"40.78.195.240/28\",\r\n \"40.78.203.176/28\",\r\n \"40.79.131.224/28\",\r\n
+ \ \"40.79.179.208/28\",\r\n \"40.79.187.16/28\",\r\n \"40.80.234.9/32\",\r\n
+ \ \"40.80.250.168/32\",\r\n \"40.80.255.12/32\",\r\n \"40.81.28.50/32\",\r\n
+ \ \"40.81.43.47/32\",\r\n \"40.81.56.122/32\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"40.81.88.112/32\",\r\n \"40.81.89.242/32\",\r\n \"40.81.122.39/32\",\r\n
+ \ \"40.81.154.254/32\",\r\n \"40.81.184.86/32\",\r\n \"40.81.220.38/32\",\r\n
+ \ \"40.81.248.53/32\",\r\n \"40.81.249.251/32\",\r\n \"40.82.154.174/32\",\r\n
+ \ \"40.82.156.149/32\",\r\n \"40.82.188.208/32\",\r\n \"40.82.217.84/32\",\r\n
+ \ \"40.82.236.24/32\",\r\n \"40.89.56.69/32\",\r\n \"40.90.219.23/32\",\r\n
+ \ \"40.91.74.95/32\",\r\n \"40.119.3.195/32\",\r\n \"40.119.203.252/32\",\r\n
+ \ \"51.12.20.48/28\",\r\n \"51.12.28.48/28\",\r\n \"51.12.99.192/28\",\r\n
+ \ \"51.12.203.192/28\",\r\n \"51.104.8.112/28\",\r\n \"51.107.59.160/28\",\r\n
+ \ \"51.107.98.201/32\",\r\n \"51.107.155.160/28\",\r\n \"51.116.59.160/28\",\r\n
+ \ \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n \"51.120.99.80/28\",\r\n
+ \ \"51.120.219.192/28\",\r\n \"51.120.235.224/28\",\r\n \"51.140.212.0/28\",\r\n
+ \ \"51.145.176.215/32\",\r\n \"52.142.91.221/32\",\r\n \"52.159.55.120/32\",\r\n
+ \ \"52.162.110.176/28\",\r\n \"52.224.146.56/32\",\r\n \"52.231.148.16/28\",\r\n
+ \ \"52.232.230.201/32\",\r\n \"52.253.159.186/32\",\r\n \"52.253.225.186/32\",\r\n
+ \ \"52.253.226.110/32\",\r\n \"102.133.0.192/32\",\r\n \"102.133.28.112/28\",\r\n
+ \ \"102.133.130.206/32\",\r\n \"102.133.156.16/28\",\r\n
+ \ \"104.211.147.224/28\",\r\n \"191.233.25.183/32\",\r\n
+ \ \"191.233.50.208/28\",\r\n \"191.233.205.0/28\",\r\n \"2603:1000:4:1::380/121\",\r\n
+ \ \"2603:1000:4:402::150/124\",\r\n \"2603:1000:104:2::100/121\",\r\n
+ \ \"2603:1000:104:402::150/124\",\r\n \"2603:1010:6::600/121\",\r\n
+ \ \"2603:1010:6:402::150/124\",\r\n \"2603:1010:101:1::380/121\",\r\n
+ \ \"2603:1010:101:402::150/124\",\r\n \"2603:1010:304:1::380/121\",\r\n
+ \ \"2603:1010:304:402::150/124\",\r\n \"2603:1010:404:1::380/121\",\r\n
+ \ \"2603:1010:404:402::150/124\",\r\n \"2603:1020:5::600/121\",\r\n
+ \ \"2603:1020:5:402::150/124\",\r\n \"2603:1020:206::600/121\",\r\n
+ \ \"2603:1020:206:402::150/124\",\r\n \"2603:1020:305:402::150/124\",\r\n
+ \ \"2603:1020:405:402::150/124\",\r\n \"2603:1020:605:1::380/121\",\r\n
+ \ \"2603:1020:605:402::150/124\",\r\n \"2603:1020:705::600/121\",\r\n
+ \ \"2603:1020:705:402::150/124\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\",\r\n \"2603:1020:905:1::380/121\",\r\n
+ \ \"2603:1020:905:402::150/124\",\r\n \"2603:1020:a04::600/121\",\r\n
+ \ \"2603:1020:a04:402::150/124\",\r\n \"2603:1020:b04:1::380/121\",\r\n
+ \ \"2603:1020:b04:402::150/124\",\r\n \"2603:1020:c04::600/121\",\r\n
+ \ \"2603:1020:c04:402::150/124\",\r\n \"2603:1020:d04:1::380/121\",\r\n
+ \ \"2603:1020:d04:402::150/124\",\r\n \"2603:1020:e04::600/121\",\r\n
+ \ \"2603:1020:e04:402::150/124\",\r\n \"2603:1020:f04:1::380/121\",\r\n
+ \ \"2603:1020:f04:402::150/124\",\r\n \"2603:1020:1004:2::100/121\",\r\n
+ \ \"2603:1020:1004:800::d0/124\",\r\n \"2603:1020:1104:1::600/121\",\r\n
+ \ \"2603:1020:1104:400::150/124\",\r\n \"2603:1030:f:2::380/121\",\r\n
+ \ \"2603:1030:f:400::950/124\",\r\n \"2603:1030:10::600/121\",\r\n
+ \ \"2603:1030:10:402::150/124\",\r\n \"2603:1030:104::600/121\",\r\n
+ \ \"2603:1030:104:402::150/124\",\r\n \"2603:1030:107:1::300/121\",\r\n
+ \ \"2603:1030:107:400::e0/124\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\",\r\n \"2603:1030:40b:2::400/121\",\r\n
+ \ \"2603:1030:40b:400::950/124\",\r\n \"2603:1030:40c::600/121\",\r\n
+ \ \"2603:1030:40c:402::150/124\",\r\n \"2603:1030:504:2::180/121\",\r\n
+ \ \"2603:1030:504:802::d0/124\",\r\n \"2603:1030:608:1::380/121\",\r\n
+ \ \"2603:1030:608:402::150/124\",\r\n \"2603:1030:807::600/121\",\r\n
+ \ \"2603:1030:807:402::150/124\",\r\n \"2603:1030:a07:1::380/121\",\r\n
+ \ \"2603:1030:a07:402::8d0/124\",\r\n \"2603:1030:b04:1::380/121\",\r\n
+ \ \"2603:1030:b04:402::150/124\",\r\n \"2603:1030:c06:2::400/121\",\r\n
+ \ \"2603:1030:c06:400::950/124\",\r\n \"2603:1030:f05::600/121\",\r\n
+ \ \"2603:1030:f05:402::150/124\",\r\n \"2603:1030:1005:1::380/121\",\r\n
+ \ \"2603:1030:1005:402::150/124\",\r\n \"2603:1040:5::700/121\",\r\n
+ \ \"2603:1040:5:402::150/124\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\",\r\n \"2603:1040:407::600/121\",\r\n
+ \ \"2603:1040:407:402::150/124\",\r\n \"2603:1040:606:1::380/121\",\r\n
+ \ \"2603:1040:606:402::150/124\",\r\n \"2603:1040:806:1::380/121\",\r\n
+ \ \"2603:1040:806:402::150/124\",\r\n \"2603:1040:904::600/121\",\r\n
+ \ \"2603:1040:904:402::150/124\",\r\n \"2603:1040:a06::700/121\",\r\n
+ \ \"2603:1040:a06:402::150/124\",\r\n \"2603:1040:b04:1::380/121\",\r\n
+ \ \"2603:1040:b04:402::150/124\",\r\n \"2603:1040:c06:1::380/121\",\r\n
+ \ \"2603:1040:c06:402::150/124\",\r\n \"2603:1040:d04:2::280/121\",\r\n
+ \ \"2603:1040:d04:800::d0/124\",\r\n \"2603:1040:e05::180/121\",\r\n
+ \ \"2603:1040:f05::600/121\",\r\n \"2603:1040:f05:402::150/124\",\r\n
+ \ \"2603:1040:1104:1::680/121\",\r\n \"2603:1040:1104:400::150/124\",\r\n
+ \ \"2603:1050:6::600/121\",\r\n \"2603:1050:6:402::150/124\",\r\n
+ \ \"2603:1050:403:1::400/121\",\r\n \"2603:1050:403:400::2b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.EastAsia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.0/28\",\r\n \"20.189.74.103/32\",\r\n
+ \ \"40.81.28.50/32\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.EastUS\",\r\n \"id\":
+ \"AzureDataExplorerManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureDataExplorerManagement\",\r\n \"addressPrefixes\": [\r\n \"20.185.100.27/32\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"52.224.146.56/32\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.FranceCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.66.57.57/32\",\r\n \"40.66.57.91/32\",\r\n
+ \ \"40.79.131.224/28\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n
+ \ \"2603:1020:c04::600/121\",\r\n \"2603:1020:c04:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.SouthIndia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.195.240/28\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"2603:1040:c06:1::380/121\",\r\n \"2603:1040:c06:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.WestUS\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.WestUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.86.219.64/28\",\r\n
+ \ \"2603:1030:a07:1::380/121\",\r\n \"2603:1030:a07:402::8d0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake\",\r\n
+ \ \"id\": \"AzureDataLake\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\",\r\n
+ \ \"40.90.141.128/29\",\r\n \"40.90.141.167/32\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.145.192/26\",\r\n \"65.52.108.31/32\",\r\n \"65.52.108.38/32\",\r\n
+ \ \"104.44.88.66/31\",\r\n \"104.44.88.106/31\",\r\n \"104.44.88.112/31\",\r\n
+ \ \"104.44.88.176/31\",\r\n \"104.44.88.184/29\",\r\n \"104.44.89.39/32\",\r\n
+ \ \"104.44.89.42/32\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.194/31\",\r\n
+ \ \"104.44.91.64/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.93.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureDataLake.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.WestEurope\",\r\n
+ \ \"id\": \"AzureDataLake.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.141.167/32\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"104.44.90.194/31\",\r\n \"104.44.93.192/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces\",\r\n \"id\":
+ \"AzureDevSpaces\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.71.144/28\",\r\n \"13.70.78.176/28\",\r\n
+ \ \"13.71.175.112/28\",\r\n \"13.71.199.96/28\",\r\n \"13.73.244.128/28\",\r\n
+ \ \"13.74.111.128/28\",\r\n \"13.78.111.144/28\",\r\n \"13.86.221.224/28\",\r\n
+ \ \"20.37.157.64/28\",\r\n \"20.37.195.80/28\",\r\n \"20.38.85.128/28\",\r\n
+ \ \"20.39.11.64/28\",\r\n \"20.41.5.128/28\",\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\",\r\n \"20.42.131.192/27\",\r\n
+ \ \"20.42.230.64/28\",\r\n \"20.43.65.208/28\",\r\n \"20.43.130.240/28\",\r\n
+ \ \"20.189.108.32/28\",\r\n \"40.69.110.176/28\",\r\n \"40.70.151.80/28\",\r\n
+ \ \"40.74.30.144/28\",\r\n \"40.75.35.224/28\",\r\n \"40.78.239.0/28\",\r\n
+ \ \"40.78.251.224/27\",\r\n \"40.82.253.112/28\",\r\n \"40.89.17.192/28\",\r\n
+ \ \"40.119.9.240/28\",\r\n \"51.104.25.208/28\",\r\n \"51.105.77.64/28\",\r\n
+ \ \"52.150.139.144/28\",\r\n \"52.182.141.128/28\",\r\n \"52.228.81.224/28\",\r\n
+ \ \"104.214.161.48/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureDevSpaces.EastUS\",\r\n \"id\": \"AzureDevSpaces.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureDevSpaces\",\r\n \"addressPrefixes\": [\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.128/28\",\r\n \"40.70.151.80/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.11.64/28\",\r\n \"40.75.35.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.JapanEast\",\r\n
+ \ \"id\": \"AzureDevSpaces.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.78.111.144/28\",\r\n \"20.43.65.208/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.NorthEurope\",\r\n
+ \ \"id\": \"AzureDevSpaces.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.74.111.128/28\",\r\n \"20.38.85.128/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureDevSpaces.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.130.240/28\",\r\n \"40.78.239.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.224/28\",\r\n \"40.82.253.112/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.131.192/27\",\r\n \"40.78.251.224/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDigitalTwins\",\r\n
+ \ \"id\": \"AzureDigitalTwins\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDigitalTwins\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.125.120/29\",\r\n \"20.36.125.192/27\",\r\n
+ \ \"20.37.70.112/29\",\r\n \"20.37.70.192/27\",\r\n \"20.38.142.112/29\",\r\n
+ \ \"20.38.142.192/27\",\r\n \"20.39.2.134/32\",\r\n \"20.39.2.208/32\",\r\n
+ \ \"20.39.2.237/32\",\r\n \"20.39.3.11/32\",\r\n \"20.39.3.14/32\",\r\n
+ \ \"20.39.3.17/32\",\r\n \"20.39.3.38/32\",\r\n \"20.39.18.169/32\",\r\n
+ \ \"20.40.225.48/29\",\r\n \"20.40.225.128/27\",\r\n \"20.43.47.72/29\",\r\n
+ \ \"20.43.47.96/27\",\r\n \"20.45.116.80/29\",\r\n \"20.45.116.96/27\",\r\n
+ \ \"20.46.10.56/29\",\r\n \"20.46.10.96/27\",\r\n \"20.48.193.128/27\",\r\n
+ \ \"20.48.193.160/29\",\r\n \"20.49.103.112/29\",\r\n \"20.49.103.192/27\",\r\n
+ \ \"20.49.118.8/29\",\r\n \"20.49.118.32/27\",\r\n \"20.49.248.209/32\",\r\n
+ \ \"20.49.249.56/32\",\r\n \"20.49.249.78/32\",\r\n \"20.49.249.101/32\",\r\n
+ \ \"20.49.249.106/32\",\r\n \"20.49.249.156/32\",\r\n \"20.49.249.189/32\",\r\n
+ \ \"20.49.249.208/32\",\r\n \"20.49.249.236/32\",\r\n \"20.49.250.2/32\",\r\n
+ \ \"20.50.211.192/32\",\r\n \"20.50.212.99/32\",\r\n \"20.50.212.103/32\",\r\n
+ \ \"20.50.212.140/32\",\r\n \"20.50.213.6/32\",\r\n \"20.50.213.76/32\",\r\n
+ \ \"20.50.213.88/32\",\r\n \"20.50.213.93/32\",\r\n \"20.50.213.94/32\",\r\n
+ \ \"20.50.213.120/32\",\r\n \"20.51.8.96/27\",\r\n \"20.51.8.192/29\",\r\n
+ \ \"20.51.16.176/29\",\r\n \"20.51.17.0/27\",\r\n \"20.51.73.8/32\",\r\n
+ \ \"20.51.73.11/32\",\r\n \"20.51.73.22/31\",\r\n \"20.51.73.25/32\",\r\n
+ \ \"20.51.73.26/31\",\r\n \"20.51.73.36/32\",\r\n \"20.51.73.39/32\",\r\n
+ \ \"20.51.73.44/32\",\r\n \"20.53.44.88/29\",\r\n \"20.53.44.96/27\",\r\n
+ \ \"20.53.48.0/27\",\r\n \"20.53.48.32/29\",\r\n \"20.53.114.26/32\",\r\n
+ \ \"20.53.114.71/32\",\r\n \"20.53.114.84/32\",\r\n \"20.53.114.118/32\",\r\n
+ \ \"20.58.66.0/27\",\r\n \"20.58.66.32/29\",\r\n \"20.61.98.144/29\",\r\n
+ \ \"20.61.99.0/27\",\r\n \"20.62.129.32/27\",\r\n \"20.62.129.128/29\",\r\n
+ \ \"20.65.130.72/29\",\r\n \"20.65.130.96/27\",\r\n \"20.66.2.16/29\",\r\n
+ \ \"20.66.2.128/27\",\r\n \"20.72.20.0/27\",\r\n \"20.150.166.176/29\",\r\n
+ \ \"20.150.167.128/27\",\r\n \"20.185.75.6/32\",\r\n \"20.185.75.209/32\",\r\n
+ \ \"20.187.197.16/29\",\r\n \"20.187.197.128/27\",\r\n \"20.189.224.224/27\",\r\n
+ \ \"20.189.225.64/29\",\r\n \"20.191.161.96/27\",\r\n \"20.191.161.192/29\",\r\n
+ \ \"20.192.166.176/29\",\r\n \"20.192.167.128/27\",\r\n \"20.192.231.192/27\",\r\n
+ \ \"20.192.231.224/29\",\r\n \"20.193.3.89/32\",\r\n \"20.193.3.243/32\",\r\n
+ \ \"20.193.7.70/32\",\r\n \"20.193.7.132/32\",\r\n \"20.193.59.172/32\",\r\n
+ \ \"20.193.59.253/32\",\r\n \"20.194.72.136/29\",\r\n \"20.194.72.160/27\",\r\n
+ \ \"23.98.108.184/29\",\r\n \"23.98.109.0/27\",\r\n \"40.67.52.104/29\",\r\n
+ \ \"40.67.52.192/27\",\r\n \"40.80.173.208/29\",\r\n \"40.80.173.224/27\",\r\n
+ \ \"40.119.241.130/32\",\r\n \"40.119.241.148/32\",\r\n \"40.119.241.154/32\",\r\n
+ \ \"40.119.242.73/32\",\r\n \"40.119.242.79/32\",\r\n \"40.119.242.168/32\",\r\n
+ \ \"40.119.242.232/32\",\r\n \"40.119.243.20/32\",\r\n \"40.119.243.119/32\",\r\n
+ \ \"40.119.243.178/32\",\r\n \"40.124.97.243/32\",\r\n \"40.124.98.14/31\",\r\n
+ \ \"40.124.98.23/32\",\r\n \"40.124.98.34/31\",\r\n \"40.124.98.48/32\",\r\n
+ \ \"40.124.98.52/32\",\r\n \"40.124.98.70/32\",\r\n \"40.124.99.100/32\",\r\n
+ \ \"51.12.43.144/29\",\r\n \"51.12.43.160/27\",\r\n \"51.12.194.120/29\",\r\n
+ \ \"51.12.195.192/27\",\r\n \"51.13.136.128/27\",\r\n \"51.13.136.160/29\",\r\n
+ \ \"51.104.141.227/32\",\r\n \"51.107.241.64/27\",\r\n \"51.107.241.96/29\",\r\n
+ \ \"51.107.249.80/29\",\r\n \"51.107.249.96/27\",\r\n \"51.116.51.176/29\",\r\n
+ \ \"51.116.54.0/27\",\r\n \"51.116.148.120/29\",\r\n \"51.116.148.192/27\",\r\n
+ \ \"51.120.232.40/29\",\r\n \"51.120.232.128/27\",\r\n \"51.143.208.208/29\",\r\n
+ \ \"51.143.208.224/27\",\r\n \"52.136.52.248/29\",\r\n \"52.136.53.64/27\",\r\n
+ \ \"52.136.184.80/29\",\r\n \"52.136.184.96/27\",\r\n \"52.139.106.96/27\",\r\n
+ \ \"52.140.111.112/29\",\r\n \"52.140.111.192/27\",\r\n \"52.142.120.18/32\",\r\n
+ \ \"52.142.120.22/32\",\r\n \"52.142.120.57/32\",\r\n \"52.142.120.74/32\",\r\n
+ \ \"52.142.120.90/32\",\r\n \"52.142.120.104/32\",\r\n \"52.142.120.156/32\",\r\n
+ \ \"52.146.132.192/27\",\r\n \"52.146.132.224/29\",\r\n \"52.148.29.27/32\",\r\n
+ \ \"52.149.20.142/32\",\r\n \"52.149.234.152/32\",\r\n \"52.149.238.190/32\",\r\n
+ \ \"52.149.239.34/32\",\r\n \"52.150.156.248/29\",\r\n \"52.150.157.32/27\",\r\n
+ \ \"52.153.153.146/32\",\r\n \"52.153.153.246/32\",\r\n \"52.153.153.255/32\",\r\n
+ \ \"52.153.154.13/32\",\r\n \"52.153.154.40/32\",\r\n \"52.153.154.123/32\",\r\n
+ \ \"52.153.154.158/32\",\r\n \"52.153.154.161/32\",\r\n \"52.156.207.58/32\",\r\n
+ \ \"52.156.207.195/32\",\r\n \"52.161.185.49/32\",\r\n \"52.170.161.49/32\",\r\n
+ \ \"52.170.162.28/32\",\r\n \"52.172.112.168/29\",\r\n \"52.172.113.0/27\",\r\n
+ \ \"52.186.106.218/32\",\r\n \"52.191.16.191/32\",\r\n \"52.191.18.106/32\",\r\n
+ \ \"52.247.76.74/32\",\r\n \"52.247.76.167/32\",\r\n \"52.247.76.187/32\",\r\n
+ \ \"52.247.76.199/32\",\r\n \"52.247.76.216/32\",\r\n \"52.247.76.246/32\",\r\n
+ \ \"52.247.76.252/32\",\r\n \"52.247.77.7/32\",\r\n \"52.247.77.22/32\",\r\n
+ \ \"52.247.77.26/32\",\r\n \"52.250.39.158/32\",\r\n \"52.250.39.236/32\",\r\n
+ \ \"52.250.39.246/32\",\r\n \"52.250.39.250/32\",\r\n \"52.250.72.145/32\",\r\n
+ \ \"52.250.73.36/32\",\r\n \"52.250.73.178/32\",\r\n \"52.250.73.204/32\",\r\n
+ \ \"52.250.74.3/32\",\r\n \"52.253.224.146/32\",\r\n \"52.253.224.154/32\",\r\n
+ \ \"102.37.80.0/27\",\r\n \"102.37.80.32/29\",\r\n \"102.133.221.16/29\",\r\n
+ \ \"102.133.221.32/27\",\r\n \"104.46.178.120/29\",\r\n \"104.46.178.160/27\",\r\n
+ \ \"191.233.15.16/29\",\r\n \"191.233.15.32/27\",\r\n \"191.234.139.168/29\",\r\n
+ \ \"191.234.142.0/27\",\r\n \"2603:1020:e04::700/121\",\r\n
+ \ \"2603:1020:1004:1::540/122\",\r\n \"2603:1020:1004:2::/121\",\r\n
+ \ \"2603:1020:1104:1::380/122\",\r\n \"2603:1020:1104:1::680/121\",\r\n
+ \ \"2603:1030:f:2::500/121\",\r\n \"2603:1030:107::5c0/122\",\r\n
+ \ \"2603:1030:504::560/123\",\r\n \"2603:1030:504:2::/121\",\r\n
+ \ \"2603:1040:d04:1::540/122\",\r\n \"2603:1040:d04:2::80/121\",\r\n
+ \ \"2603:1040:f05::700/121\",\r\n \"2603:1040:1104:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid\",\r\n
+ \ \"id\": \"AzureEventGrid\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.56.240/28\",\r\n \"13.71.57.0/28\",\r\n \"13.73.248.128/25\",\r\n
+ \ \"13.86.56.32/27\",\r\n \"13.86.56.160/27\",\r\n \"13.88.73.16/28\",\r\n
+ \ \"13.88.73.32/27\",\r\n \"13.88.135.208/28\",\r\n \"13.91.193.0/28\",\r\n
+ \ \"20.36.121.0/25\",\r\n \"20.37.55.32/27\",\r\n \"20.37.65.0/25\",\r\n
+ \ \"20.37.82.224/27\",\r\n \"20.37.157.128/25\",\r\n \"20.37.196.0/25\",\r\n
+ \ \"20.37.225.0/25\",\r\n \"20.38.87.0/25\",\r\n \"20.38.137.0/25\",\r\n
+ \ \"20.39.11.128/25\",\r\n \"20.39.20.16/28\",\r\n \"20.39.80.112/28\",\r\n
+ \ \"20.39.80.128/28\",\r\n \"20.39.99.64/28\",\r\n \"20.39.99.240/28\",\r\n
+ \ \"20.40.152.128/27\",\r\n \"20.40.175.48/28\",\r\n \"20.40.175.64/28\",\r\n
+ \ \"20.41.66.0/25\",\r\n \"20.41.136.240/28\",\r\n \"20.41.195.0/25\",\r\n
+ \ \"20.42.7.0/25\",\r\n \"20.42.228.0/25\",\r\n \"20.43.42.128/25\",\r\n
+ \ \"20.43.66.128/25\",\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.39.176/28\",\r\n \"20.44.39.192/28\",\r\n
+ \ \"20.44.168.64/28\",\r\n \"20.44.205.112/28\",\r\n \"20.45.113.0/25\",\r\n
+ \ \"20.45.195.0/25\",\r\n \"20.46.152.112/28\",\r\n \"20.46.152.128/28\",\r\n
+ \ \"20.49.96.0/25\",\r\n \"20.52.90.128/25\",\r\n \"20.72.17.128/25\",\r\n
+ \ \"20.150.164.0/25\",\r\n \"20.189.108.128/25\",\r\n \"20.189.115.80/28\",\r\n
+ \ \"20.189.123.80/28\",\r\n \"20.189.125.32/27\",\r\n \"20.191.59.128/28\",\r\n
+ \ \"20.191.59.176/28\",\r\n \"20.192.164.0/25\",\r\n \"20.192.228.0/25\",\r\n
+ \ \"20.193.34.0/28\",\r\n \"20.193.34.32/28\",\r\n \"40.64.128.0/25\",\r\n
+ \ \"40.67.49.0/25\",\r\n \"40.74.31.128/25\",\r\n \"40.74.106.96/27\",\r\n
+ \ \"40.80.58.0/25\",\r\n \"40.80.170.0/25\",\r\n \"40.80.190.0/25\",\r\n
+ \ \"40.80.236.192/27\",\r\n \"40.81.93.240/28\",\r\n \"40.81.95.128/28\",\r\n
+ \ \"40.82.254.128/25\",\r\n \"40.89.18.0/25\",\r\n \"40.89.240.144/28\",\r\n
+ \ \"40.114.160.176/28\",\r\n \"40.114.160.192/28\",\r\n \"40.114.169.0/28\",\r\n
+ \ \"40.127.155.192/28\",\r\n \"40.127.251.144/28\",\r\n \"51.12.47.128/25\",\r\n
+ \ \"51.12.199.0/25\",\r\n \"51.104.27.128/25\",\r\n \"51.105.81.0/25\",\r\n
+ \ \"51.105.89.0/25\",\r\n \"51.107.4.128/27\",\r\n \"51.107.49.0/25\",\r\n
+ \ \"51.107.99.32/27\",\r\n \"51.107.145.0/25\",\r\n \"51.116.3.32/27\",\r\n
+ \ \"51.116.72.0/25\",\r\n \"51.116.100.208/28\",\r\n \"51.116.100.224/28\",\r\n
+ \ \"51.120.4.0/27\",\r\n \"51.120.41.0/25\",\r\n \"51.120.131.64/27\",\r\n
+ \ \"51.120.225.0/25\",\r\n \"51.132.161.160/28\",\r\n \"51.132.170.64/28\",\r\n
+ \ \"51.137.16.224/28\",\r\n \"51.137.142.32/28\",\r\n \"51.137.162.0/25\",\r\n
+ \ \"51.143.193.0/25\",\r\n \"52.136.49.0/25\",\r\n \"52.139.9.80/28\",\r\n
+ \ \"52.139.11.16/28\",\r\n \"52.139.85.16/28\",\r\n \"52.139.85.32/28\",\r\n
+ \ \"52.140.106.0/25\",\r\n \"52.142.152.144/28\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.149.248.0/28\",\r\n
+ \ \"52.149.248.64/27\",\r\n \"52.149.248.96/28\",\r\n \"52.150.140.0/25\",\r\n
+ \ \"52.154.57.48/28\",\r\n \"52.154.57.80/28\",\r\n \"52.154.68.16/28\",\r\n
+ \ \"52.154.68.32/28\",\r\n \"52.156.103.192/28\",\r\n \"52.159.49.144/28\",\r\n
+ \ \"52.159.51.160/28\",\r\n \"52.159.53.64/28\",\r\n \"52.159.53.112/28\",\r\n
+ \ \"52.160.136.16/28\",\r\n \"52.160.136.32/28\",\r\n \"52.161.186.128/28\",\r\n
+ \ \"52.161.186.208/28\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.170.171.192/28\",\r\n \"52.170.171.240/28\",\r\n
+ \ \"52.177.38.160/27\",\r\n \"52.185.176.112/28\",\r\n \"52.185.212.176/28\",\r\n
+ \ \"52.185.212.192/28\",\r\n \"52.186.36.16/28\",\r\n \"52.228.83.0/25\",\r\n
+ \ \"52.231.112.192/28\",\r\n \"52.231.112.224/28\",\r\n \"52.250.28.176/28\",\r\n
+ \ \"52.250.32.160/28\",\r\n \"52.252.213.192/28\",\r\n \"52.255.80.16/28\",\r\n
+ \ \"52.255.82.160/28\",\r\n \"102.37.162.0/25\",\r\n \"102.133.0.240/28\",\r\n
+ \ \"102.133.1.0/28\",\r\n \"102.133.57.0/25\",\r\n \"102.133.135.16/28\",\r\n
+ \ \"102.133.135.32/28\",\r\n \"191.233.9.128/25\",\r\n \"191.235.126.0/28\",\r\n
+ \ \"191.235.126.144/28\",\r\n \"191.235.227.0/25\",\r\n \"2603:1000:4::380/121\",\r\n
+ \ \"2603:1000:104:1::380/121\",\r\n \"2603:1010:6:1::380/121\",\r\n
+ \ \"2603:1010:101::380/121\",\r\n \"2603:1010:304::380/121\",\r\n
+ \ \"2603:1010:404::380/121\",\r\n \"2603:1020:5:1::380/121\",\r\n
+ \ \"2603:1020:206:1::380/121\",\r\n \"2603:1020:305::380/121\",\r\n
+ \ \"2603:1020:405::380/121\",\r\n \"2603:1020:605::380/121\",\r\n
+ \ \"2603:1020:705:1::380/121\",\r\n \"2603:1020:805:1::380/121\",\r\n
+ \ \"2603:1020:905::380/121\",\r\n \"2603:1020:a04:1::380/121\",\r\n
+ \ \"2603:1020:b04::380/121\",\r\n \"2603:1020:c04:1::380/121\",\r\n
+ \ \"2603:1020:d04::380/121\",\r\n \"2603:1020:e04:1::380/121\",\r\n
+ \ \"2603:1020:f04::380/121\",\r\n \"2603:1020:1004::380/121\",\r\n
+ \ \"2603:1020:1104::280/121\",\r\n \"2603:1030:f:1::380/121\",\r\n
+ \ \"2603:1030:10:1::380/121\",\r\n \"2603:1030:104:1::380/121\",\r\n
+ \ \"2603:1030:107::280/121\",\r\n \"2603:1030:210:1::380/121\",\r\n
+ \ \"2603:1030:40b:1::380/121\",\r\n \"2603:1030:40c:1::380/121\",\r\n
+ \ \"2603:1030:504:1::380/121\",\r\n \"2603:1030:608::380/121\",\r\n
+ \ \"2603:1030:807:1::380/121\",\r\n \"2603:1030:a07::380/121\",\r\n
+ \ \"2603:1030:b04::380/121\",\r\n \"2603:1030:c06:1::380/121\",\r\n
+ \ \"2603:1030:f05:1::380/121\",\r\n \"2603:1030:1005::380/121\",\r\n
+ \ \"2603:1040:5:1::380/121\",\r\n \"2603:1040:207::380/121\",\r\n
+ \ \"2603:1040:407:1::380/121\",\r\n \"2603:1040:606::380/121\",\r\n
+ \ \"2603:1040:806::380/121\",\r\n \"2603:1040:904:1::380/121\",\r\n
+ \ \"2603:1040:a06:1::380/121\",\r\n \"2603:1040:b04::380/121\",\r\n
+ \ \"2603:1040:c06::380/121\",\r\n \"2603:1040:d04::380/121\",\r\n
+ \ \"2603:1040:f05:1::380/121\",\r\n \"2603:1040:1104::280/121\",\r\n
+ \ \"2603:1050:6:1::380/121\",\r\n \"2603:1050:403::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.CanadaCentral\",\r\n
+ \ \"id\": \"AzureEventGrid.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.139.9.80/28\",\r\n \"52.139.11.16/28\",\r\n
+ \ \"52.228.83.0/25\",\r\n \"2603:1030:f05:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.EastUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.96.0/25\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.177.38.160/27\",\r\n \"2603:1030:40c:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureEventGrid.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.205.112/28\",\r\n \"2603:1040:5:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SouthIndia\",\r\n
+ \ \"id\": \"AzureEventGrid.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.195.0/25\",\r\n \"20.44.39.176/28\",\r\n
+ \ \"20.44.39.192/28\",\r\n \"2603:1040:c06::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UAENorth\",\r\n
+ \ \"id\": \"AzureEventGrid.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.137.0/25\",\r\n \"20.46.152.112/28\",\r\n
+ \ \"20.46.152.128/28\",\r\n \"2603:1040:904:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.27.128/25\",\r\n \"51.132.161.160/28\",\r\n
+ \ \"51.132.170.64/28\",\r\n \"2603:1020:705:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth2\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.193.0/25\",\r\n \"2603:1020:405::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.WestUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"40.64.128.0/25\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.156.103.192/28\",\r\n
+ \ \"52.250.28.176/28\",\r\n \"52.250.32.160/28\",\r\n \"2603:1030:c06:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFrontDoor.Backend\",\r\n
+ \ \"id\": \"AzureFrontDoor.Backend\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.16/29\",\r\n \"20.36.120.104/29\",\r\n
+ \ \"20.37.64.104/29\",\r\n \"20.37.156.120/29\",\r\n \"20.37.195.0/29\",\r\n
+ \ \"20.37.224.104/29\",\r\n \"20.38.84.72/29\",\r\n \"20.38.136.104/29\",\r\n
+ \ \"20.39.11.8/29\",\r\n \"20.41.4.88/29\",\r\n \"20.41.64.120/29\",\r\n
+ \ \"20.41.192.104/29\",\r\n \"20.42.4.120/29\",\r\n \"20.42.129.152/29\",\r\n
+ \ \"20.42.224.104/29\",\r\n \"20.43.41.136/29\",\r\n \"20.43.65.128/29\",\r\n
+ \ \"20.43.130.80/29\",\r\n \"20.45.112.104/29\",\r\n \"20.45.192.104/29\",\r\n
+ \ \"20.72.18.248/29\",\r\n \"20.150.160.96/29\",\r\n \"20.189.106.112/29\",\r\n
+ \ \"20.192.161.104/29\",\r\n \"20.192.225.48/29\",\r\n \"40.67.48.104/29\",\r\n
+ \ \"40.74.30.72/29\",\r\n \"40.80.56.104/29\",\r\n \"40.80.168.104/29\",\r\n
+ \ \"40.80.184.120/29\",\r\n \"40.82.248.248/29\",\r\n \"40.89.16.104/29\",\r\n
+ \ \"51.12.41.8/29\",\r\n \"51.12.193.8/29\",\r\n \"51.104.25.128/29\",\r\n
+ \ \"51.105.80.104/29\",\r\n \"51.105.88.104/29\",\r\n \"51.107.48.104/29\",\r\n
+ \ \"51.107.144.104/29\",\r\n \"51.120.40.104/29\",\r\n \"51.120.224.104/29\",\r\n
+ \ \"51.137.160.112/29\",\r\n \"51.143.192.104/29\",\r\n \"52.136.48.104/29\",\r\n
+ \ \"52.140.104.104/29\",\r\n \"52.150.136.120/29\",\r\n \"52.228.80.120/29\",\r\n
+ \ \"102.133.56.88/29\",\r\n \"102.133.216.88/29\",\r\n \"147.243.0.0/16\",\r\n
+ \ \"191.233.9.120/29\",\r\n \"191.235.225.128/29\",\r\n \"2603:1000:4::600/123\",\r\n
+ \ \"2603:1000:104::e0/123\",\r\n \"2603:1000:104::300/123\",\r\n
+ \ \"2603:1000:104:1::5c0/123\",\r\n \"2603:1000:104:1::7e0/123\",\r\n
+ \ \"2603:1010:6:1::5c0/123\",\r\n \"2603:1010:6:1::7e0/123\",\r\n
+ \ \"2603:1010:101::600/123\",\r\n \"2603:1010:304::600/123\",\r\n
+ \ \"2603:1010:404::600/123\",\r\n \"2603:1020:5:1::5c0/123\",\r\n
+ \ \"2603:1020:5:1::7e0/123\",\r\n \"2603:1020:206:1::5c0/123\",\r\n
+ \ \"2603:1020:206:1::7e0/123\",\r\n \"2603:1020:305::600/123\",\r\n
+ \ \"2603:1020:405::600/123\",\r\n \"2603:1020:605::600/123\",\r\n
+ \ \"2603:1020:705:1::5c0/123\",\r\n \"2603:1020:705:1::7e0/123\",\r\n
+ \ \"2603:1020:805:1::5c0/123\",\r\n \"2603:1020:805:1::7e0/123\",\r\n
+ \ \"2603:1020:905::600/123\",\r\n \"2603:1020:a04:1::5c0/123\",\r\n
+ \ \"2603:1020:a04:1::7e0/123\",\r\n \"2603:1020:b04::600/123\",\r\n
+ \ \"2603:1020:c04:1::5c0/123\",\r\n \"2603:1020:c04:1::7e0/123\",\r\n
+ \ \"2603:1020:d04::600/123\",\r\n \"2603:1020:e04:1::5c0/123\",\r\n
+ \ \"2603:1020:e04:1::7e0/123\",\r\n \"2603:1020:f04::600/123\",\r\n
+ \ \"2603:1020:1004::5c0/123\",\r\n \"2603:1020:1004::7e0/123\",\r\n
+ \ \"2603:1020:1104::680/123\",\r\n \"2603:1030:f:1::600/123\",\r\n
+ \ \"2603:1030:10:1::5c0/123\",\r\n \"2603:1030:10:1::7e0/123\",\r\n
+ \ \"2603:1030:104:1::5c0/123\",\r\n \"2603:1030:104:1::7e0/123\",\r\n
+ \ \"2603:1030:107::6a0/123\",\r\n \"2603:1030:210:1::5c0/123\",\r\n
+ \ \"2603:1030:210:1::7e0/123\",\r\n \"2603:1030:40b:1::5c0/123\",\r\n
+ \ \"2603:1030:40c:1::5c0/123\",\r\n \"2603:1030:40c:1::7e0/123\",\r\n
+ \ \"2603:1030:504:1::5c0/123\",\r\n \"2603:1030:504:1::7e0/123\",\r\n
+ \ \"2603:1030:608::600/123\",\r\n \"2603:1030:807:1::5c0/123\",\r\n
+ \ \"2603:1030:807:1::7e0/123\",\r\n \"2603:1030:a07::600/123\",\r\n
+ \ \"2603:1030:b04::600/123\",\r\n \"2603:1030:c06:1::5c0/123\",\r\n
+ \ \"2603:1030:f05:1::5c0/123\",\r\n \"2603:1030:f05:1::7e0/123\",\r\n
+ \ \"2603:1030:1005::600/123\",\r\n \"2603:1040:5::e0/123\",\r\n
+ \ \"2603:1040:5:1::5c0/123\",\r\n \"2603:1040:5:1::7e0/123\",\r\n
+ \ \"2603:1040:207::600/123\",\r\n \"2603:1040:407:1::5c0/123\",\r\n
+ \ \"2603:1040:407:1::7e0/123\",\r\n \"2603:1040:606::600/123\",\r\n
+ \ \"2603:1040:806::600/123\",\r\n \"2603:1040:904:1::5c0/123\",\r\n
+ \ \"2603:1040:904:1::7e0/123\",\r\n \"2603:1040:a06::e0/123\",\r\n
+ \ \"2603:1040:a06:1::5c0/123\",\r\n \"2603:1040:a06:1::7e0/123\",\r\n
+ \ \"2603:1040:b04::600/123\",\r\n \"2603:1040:c06::600/123\",\r\n
+ \ \"2603:1040:d04::5c0/123\",\r\n \"2603:1040:d04::7e0/123\",\r\n
+ \ \"2603:1040:f05:1::5c0/123\",\r\n \"2603:1040:f05:1::7e0/123\",\r\n
+ \ \"2603:1040:1104::680/123\",\r\n \"2603:1050:6:1::5c0/123\",\r\n
+ \ \"2603:1050:6:1::7e0/123\",\r\n \"2603:1050:403::5c0/123\",\r\n
+ \ \"2a01:111:2050::/44\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.FirstParty\",\r\n \"id\": \"AzureFrontDoor.FirstParty\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureFrontDoor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.107.3.0/24\",\r\n \"13.107.4.0/22\",\r\n \"13.107.9.0/24\",\r\n
+ \ \"13.107.12.0/23\",\r\n \"13.107.15.0/24\",\r\n \"13.107.16.0/24\",\r\n
+ \ \"13.107.18.0/23\",\r\n \"13.107.21.0/24\",\r\n \"13.107.22.0/24\",\r\n
+ \ \"13.107.37.0/24\",\r\n \"13.107.38.0/23\",\r\n \"13.107.40.0/24\",\r\n
+ \ \"13.107.42.0/23\",\r\n \"13.107.48.0/24\",\r\n \"13.107.50.0/24\",\r\n
+ \ \"13.107.52.0/24\",\r\n \"13.107.54.0/24\",\r\n \"13.107.56.0/24\",\r\n
+ \ \"13.107.64.0/18\",\r\n \"13.107.128.0/19\",\r\n \"13.107.245.0/24\",\r\n
+ \ \"13.107.254.0/23\",\r\n \"131.253.3.0/24\",\r\n \"131.253.21.0/24\",\r\n
+ \ \"131.253.33.0/24\",\r\n \"150.171.32.0/19\",\r\n \"202.89.233.96/28\",\r\n
+ \ \"204.79.197.0/24\",\r\n \"2620:1ec:4::/46\",\r\n \"2620:1ec:a::/47\",\r\n
+ \ \"2620:1ec:c::/47\",\r\n \"2620:1ec:12::/47\",\r\n \"2620:1ec:21::/48\",\r\n
+ \ \"2620:1ec:22::/48\",\r\n \"2620:1ec:26::/63\",\r\n \"2620:1ec:26:2::/64\",\r\n
+ \ \"2620:1ec:28::/48\",\r\n \"2620:1ec:34::/48\",\r\n \"2620:1ec:39::/48\",\r\n
+ \ \"2620:1ec:3e::/47\",\r\n \"2620:1ec:42::/47\",\r\n \"2620:1ec:44::/47\",\r\n
+ \ \"2620:1ec:8f0::/44\",\r\n \"2620:1ec:900::/44\",\r\n \"2620:1ec:a92::/48\",\r\n
+ \ \"2620:1ec:c11::/48\",\r\n \"2a01:111:2003::/48\",\r\n
+ \ \"2a01:111:202c::/46\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.Frontend\",\r\n \"id\": \"AzureFrontDoor.Frontend\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.8/29\",\r\n \"13.107.208.0/24\",\r\n \"13.107.213.0/24\",\r\n
+ \ \"13.107.219.0/24\",\r\n \"13.107.224.0/24\",\r\n \"13.107.246.0/24\",\r\n
+ \ \"13.107.253.0/24\",\r\n \"20.36.120.96/29\",\r\n \"20.37.64.96/29\",\r\n
+ \ \"20.37.156.112/29\",\r\n \"20.37.192.88/29\",\r\n \"20.37.224.96/29\",\r\n
+ \ \"20.38.84.64/29\",\r\n \"20.38.136.96/29\",\r\n \"20.39.11.0/29\",\r\n
+ \ \"20.41.4.80/29\",\r\n \"20.41.64.112/29\",\r\n \"20.41.192.96/29\",\r\n
+ \ \"20.42.4.112/29\",\r\n \"20.42.129.144/29\",\r\n \"20.42.224.96/29\",\r\n
+ \ \"20.43.41.128/29\",\r\n \"20.43.64.88/29\",\r\n \"20.43.128.104/29\",\r\n
+ \ \"20.45.112.96/29\",\r\n \"20.45.192.96/29\",\r\n \"20.72.18.240/29\",\r\n
+ \ \"20.150.160.72/29\",\r\n \"20.189.106.72/29\",\r\n \"20.192.161.96/29\",\r\n
+ \ \"20.192.225.40/29\",\r\n \"40.67.48.96/29\",\r\n \"40.74.30.64/29\",\r\n
+ \ \"40.80.56.96/29\",\r\n \"40.80.168.96/29\",\r\n \"40.80.184.112/29\",\r\n
+ \ \"40.82.248.72/29\",\r\n \"40.89.16.96/29\",\r\n \"51.12.41.0/29\",\r\n
+ \ \"51.12.193.0/29\",\r\n \"51.104.24.88/29\",\r\n \"51.105.80.96/29\",\r\n
+ \ \"51.105.88.96/29\",\r\n \"51.107.48.96/29\",\r\n \"51.107.144.96/29\",\r\n
+ \ \"51.120.40.96/29\",\r\n \"51.120.224.96/29\",\r\n \"51.137.160.88/29\",\r\n
+ \ \"51.143.192.96/29\",\r\n \"52.136.48.96/29\",\r\n \"52.140.104.96/29\",\r\n
+ \ \"52.150.136.112/29\",\r\n \"52.228.80.112/29\",\r\n \"102.133.56.80/29\",\r\n
+ \ \"102.133.216.80/29\",\r\n \"191.233.9.112/29\",\r\n \"191.235.224.88/29\",\r\n
+ \ \"2603:1000:4::5e0/123\",\r\n \"2603:1000:104::c0/123\",\r\n
+ \ \"2603:1000:104::160/123\",\r\n \"2603:1000:104:1::5a0/123\",\r\n
+ \ \"2603:1000:104:1::7c0/123\",\r\n \"2603:1010:6:1::5a0/123\",\r\n
+ \ \"2603:1010:6:1::7c0/123\",\r\n \"2603:1010:101::5e0/123\",\r\n
+ \ \"2603:1010:304::5e0/123\",\r\n \"2603:1010:404::5e0/123\",\r\n
+ \ \"2603:1020:5:1::5a0/123\",\r\n \"2603:1020:5:1::7c0/123\",\r\n
+ \ \"2603:1020:206:1::5a0/123\",\r\n \"2603:1020:206:1::7c0/123\",\r\n
+ \ \"2603:1020:305::5e0/123\",\r\n \"2603:1020:405::5e0/123\",\r\n
+ \ \"2603:1020:605::5e0/123\",\r\n \"2603:1020:705:1::5a0/123\",\r\n
+ \ \"2603:1020:705:1::7c0/123\",\r\n \"2603:1020:805:1::5a0/123\",\r\n
+ \ \"2603:1020:805:1::7c0/123\",\r\n \"2603:1020:905::5e0/123\",\r\n
+ \ \"2603:1020:a04:1::5a0/123\",\r\n \"2603:1020:a04:1::7c0/123\",\r\n
+ \ \"2603:1020:b04::5e0/123\",\r\n \"2603:1020:c04:1::5a0/123\",\r\n
+ \ \"2603:1020:c04:1::7c0/123\",\r\n \"2603:1020:d04::5e0/123\",\r\n
+ \ \"2603:1020:e04:1::5a0/123\",\r\n \"2603:1020:e04:1::7c0/123\",\r\n
+ \ \"2603:1020:f04::5e0/123\",\r\n \"2603:1020:1004::5a0/123\",\r\n
+ \ \"2603:1020:1004::7c0/123\",\r\n \"2603:1020:1104::5e0/123\",\r\n
+ \ \"2603:1030:f:1::5e0/123\",\r\n \"2603:1030:10:1::5a0/123\",\r\n
+ \ \"2603:1030:10:1::7c0/123\",\r\n \"2603:1030:104:1::5a0/123\",\r\n
+ \ \"2603:1030:104:1::7c0/123\",\r\n \"2603:1030:107::680/123\",\r\n
+ \ \"2603:1030:210:1::5a0/123\",\r\n \"2603:1030:210:1::7c0/123\",\r\n
+ \ \"2603:1030:40b:1::5a0/123\",\r\n \"2603:1030:40c:1::5a0/123\",\r\n
+ \ \"2603:1030:40c:1::7c0/123\",\r\n \"2603:1030:504:1::5a0/123\",\r\n
+ \ \"2603:1030:504:1::7c0/123\",\r\n \"2603:1030:608::5e0/123\",\r\n
+ \ \"2603:1030:807:1::5a0/123\",\r\n \"2603:1030:807:1::7c0/123\",\r\n
+ \ \"2603:1030:a07::5e0/123\",\r\n \"2603:1030:b04::5e0/123\",\r\n
+ \ \"2603:1030:c06:1::5a0/123\",\r\n \"2603:1030:f05:1::5a0/123\",\r\n
+ \ \"2603:1030:f05:1::7c0/123\",\r\n \"2603:1030:1005::5e0/123\",\r\n
+ \ \"2603:1040:5::c0/123\",\r\n \"2603:1040:5:1::5a0/123\",\r\n
+ \ \"2603:1040:5:1::7c0/123\",\r\n \"2603:1040:207::5e0/123\",\r\n
+ \ \"2603:1040:407:1::5a0/123\",\r\n \"2603:1040:407:1::7c0/123\",\r\n
+ \ \"2603:1040:606::5e0/123\",\r\n \"2603:1040:806::5e0/123\",\r\n
+ \ \"2603:1040:904:1::5a0/123\",\r\n \"2603:1040:904:1::7c0/123\",\r\n
+ \ \"2603:1040:a06::c0/123\",\r\n \"2603:1040:a06:1::5a0/123\",\r\n
+ \ \"2603:1040:a06:1::7c0/123\",\r\n \"2603:1040:b04::5e0/123\",\r\n
+ \ \"2603:1040:c06::5e0/123\",\r\n \"2603:1040:d04::5a0/123\",\r\n
+ \ \"2603:1040:d04::7c0/123\",\r\n \"2603:1040:f05:1::5a0/123\",\r\n
+ \ \"2603:1040:f05:1::7c0/123\",\r\n \"2603:1040:1104::5e0/123\",\r\n
+ \ \"2603:1050:6:1::5a0/123\",\r\n \"2603:1050:6:1::7c0/123\",\r\n
+ \ \"2603:1050:403::5a0/123\",\r\n \"2620:1ec:29::/48\",\r\n
+ \ \"2620:1ec:40::/47\",\r\n \"2620:1ec:46::/47\",\r\n \"2620:1ec:bdf::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureInformationProtection\",\r\n
+ \ \"id\": \"AzureInformationProtection\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureInformationProtection\",\r\n \"addressPrefixes\": [\r\n \"13.66.153.57/32\",\r\n
+ \ \"13.66.245.220/32\",\r\n \"13.66.251.171/32\",\r\n \"13.67.114.221/32\",\r\n
+ \ \"13.68.179.152/32\",\r\n \"13.76.139.8/32\",\r\n \"13.76.244.119/32\",\r\n
+ \ \"13.77.166.40/32\",\r\n \"13.77.203.47/32\",\r\n \"13.78.130.67/32\",\r\n
+ \ \"13.78.130.185/32\",\r\n \"13.78.178.191/32\",\r\n \"13.79.189.239/32\",\r\n
+ \ \"13.79.189.241/32\",\r\n \"13.82.198.231/32\",\r\n \"13.83.91.144/32\",\r\n
+ \ \"13.92.58.123/32\",\r\n \"13.92.61.93/32\",\r\n \"13.93.72.133/32\",\r\n
+ \ \"13.93.75.214/32\",\r\n \"13.94.98.184/32\",\r\n \"13.94.116.226/32\",\r\n
+ \ \"23.97.70.206/32\",\r\n \"23.99.106.184/32\",\r\n \"23.99.114.156/32\",\r\n
+ \ \"23.99.251.107/32\",\r\n \"23.101.112.34/32\",\r\n \"23.101.147.227/32\",\r\n
+ \ \"23.101.163.169/32\",\r\n \"40.69.191.65/32\",\r\n \"40.70.16.196/32\",\r\n
+ \ \"40.76.94.49/32\",\r\n \"40.83.177.47/32\",\r\n \"40.83.223.214/32\",\r\n
+ \ \"40.87.2.166/32\",\r\n \"40.87.67.213/32\",\r\n \"40.87.94.91/32\",\r\n
+ \ \"40.114.2.72/32\",\r\n \"40.117.180.9/32\",\r\n \"40.121.48.207/32\",\r\n
+ \ \"40.121.49.153/32\",\r\n \"40.121.90.82/32\",\r\n \"40.127.160.102/32\",\r\n
+ \ \"40.127.175.173/32\",\r\n \"51.136.18.12/32\",\r\n \"51.141.184.35/32\",\r\n
+ \ \"51.143.32.47/32\",\r\n \"51.143.88.135/32\",\r\n \"51.144.167.90/32\",\r\n
+ \ \"51.145.146.97/32\",\r\n \"52.162.33.18/32\",\r\n \"52.162.37.146/32\",\r\n
+ \ \"52.162.88.200/32\",\r\n \"52.162.95.132/32\",\r\n \"52.162.208.48/32\",\r\n
+ \ \"52.163.61.51/32\",\r\n \"52.163.85.21/32\",\r\n \"52.163.85.129/32\",\r\n
+ \ \"52.163.87.92/32\",\r\n \"52.163.89.155/32\",\r\n \"52.163.89.160/32\",\r\n
+ \ \"52.165.189.139/32\",\r\n \"52.167.1.118/32\",\r\n \"52.167.225.247/32\",\r\n
+ \ \"52.167.226.2/32\",\r\n \"52.167.227.104/32\",\r\n \"52.167.227.154/32\",\r\n
+ \ \"52.173.21.111/32\",\r\n \"52.173.89.54/32\",\r\n \"52.173.89.66/32\",\r\n
+ \ \"52.173.93.137/32\",\r\n \"52.176.44.178/32\",\r\n \"52.178.145.186/32\",\r\n
+ \ \"52.178.147.96/32\",\r\n \"52.179.136.129/32\",\r\n \"52.184.34.233/32\",\r\n
+ \ \"52.184.35.49/32\",\r\n \"52.232.110.114/32\",\r\n \"52.232.113.160/32\",\r\n
+ \ \"52.232.118.97/32\",\r\n \"52.232.119.81/32\",\r\n \"52.237.141.83/32\",\r\n
+ \ \"52.237.141.229/32\",\r\n \"52.250.56.125/32\",\r\n \"65.52.36.85/32\",\r\n
+ \ \"65.52.55.108/32\",\r\n \"65.52.176.250/32\",\r\n \"65.52.177.192/32\",\r\n
+ \ \"65.52.184.44/32\",\r\n \"65.52.184.218/32\",\r\n \"65.52.236.123/32\",\r\n
+ \ \"70.37.163.131/32\",\r\n \"94.245.88.160/32\",\r\n \"104.40.16.135/32\",\r\n
+ \ \"104.40.30.29/32\",\r\n \"104.41.143.145/32\",\r\n \"137.116.91.123/32\",\r\n
+ \ \"137.117.47.75/32\",\r\n \"138.91.121.248/32\",\r\n \"138.91.122.178/32\",\r\n
+ \ \"157.55.177.248/32\",\r\n \"157.55.185.205/32\",\r\n \"157.56.8.93/32\",\r\n
+ \ \"157.56.8.135/32\",\r\n \"157.56.9.127/32\",\r\n \"168.61.46.212/32\",\r\n
+ \ \"168.62.5.167/32\",\r\n \"168.62.8.139/32\",\r\n \"168.62.25.173/32\",\r\n
+ \ \"168.62.25.179/32\",\r\n \"168.62.48.148/32\",\r\n \"168.62.49.18/32\",\r\n
+ \ \"168.62.52.244/32\",\r\n \"168.62.53.73/32\",\r\n \"168.62.53.132/32\",\r\n
+ \ \"168.62.54.75/32\",\r\n \"168.62.54.211/32\",\r\n \"168.62.54.212/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub\",\r\n
+ \ \"id\": \"AzureIoTHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.96/27\",\r\n \"13.67.10.224/27\",\r\n
+ \ \"13.67.234.22/32\",\r\n \"13.69.71.0/25\",\r\n \"13.69.109.0/25\",\r\n
+ \ \"13.69.192.43/32\",\r\n \"13.69.230.64/27\",\r\n \"13.70.74.192/27\",\r\n
+ \ \"13.70.182.204/32\",\r\n \"13.70.182.210/32\",\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"13.71.150.19/32\",\r\n \"13.71.175.32/27\",\r\n
+ \ \"13.71.196.224/27\",\r\n \"13.73.115.51/32\",\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.74.108.192/27\",\r\n \"13.75.39.160/27\",\r\n
+ \ \"13.76.83.155/32\",\r\n \"13.76.217.46/32\",\r\n \"13.77.53.128/27\",\r\n
+ \ \"13.78.109.160/27\",\r\n \"13.78.129.154/32\",\r\n \"13.78.130.69/32\",\r\n
+ \ \"13.79.172.43/32\",\r\n \"13.82.93.138/32\",\r\n \"13.84.189.6/32\",\r\n
+ \ \"13.85.68.113/32\",\r\n \"13.86.221.0/25\",\r\n \"13.87.58.96/27\",\r\n
+ \ \"13.87.124.96/27\",\r\n \"13.89.174.160/27\",\r\n \"13.89.231.149/32\",\r\n
+ \ \"13.94.40.72/32\",\r\n \"13.95.15.251/32\",\r\n \"20.36.108.160/27\",\r\n
+ \ \"20.36.117.64/27\",\r\n \"20.36.123.32/27\",\r\n \"20.36.123.128/25\",\r\n
+ \ \"20.37.67.128/25\",\r\n \"20.37.68.0/27\",\r\n \"20.37.76.160/27\",\r\n
+ \ \"20.37.198.160/27\",\r\n \"20.37.199.0/25\",\r\n \"20.37.227.64/27\",\r\n
+ \ \"20.37.227.128/25\",\r\n \"20.38.128.128/27\",\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"20.38.147.192/27\",\r\n \"20.39.14.32/27\",\r\n
+ \ \"20.39.14.128/25\",\r\n \"20.40.206.192/27\",\r\n \"20.40.207.0/25\",\r\n
+ \ \"20.41.68.96/27\",\r\n \"20.41.68.128/25\",\r\n \"20.41.197.64/27\",\r\n
+ \ \"20.41.197.128/25\",\r\n \"20.42.230.160/27\",\r\n \"20.42.231.0/25\",\r\n
+ \ \"20.43.44.160/27\",\r\n \"20.43.45.0/25\",\r\n \"20.43.70.160/27\",\r\n
+ \ \"20.43.71.0/25\",\r\n \"20.43.121.64/27\",\r\n \"20.44.4.128/27\",\r\n
+ \ \"20.44.8.224/27\",\r\n \"20.44.17.96/27\",\r\n \"20.44.29.0/27\",\r\n
+ \ \"20.45.114.224/27\",\r\n \"20.45.115.0/25\",\r\n \"20.45.123.128/27\",\r\n
+ \ \"20.45.198.32/27\",\r\n \"20.45.198.128/25\",\r\n \"20.49.83.128/27\",\r\n
+ \ \"20.49.91.128/27\",\r\n \"20.49.99.96/27\",\r\n \"20.49.99.128/25\",\r\n
+ \ \"20.49.109.128/25\",\r\n \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n
+ \ \"20.49.113.32/27\",\r\n \"20.49.113.128/25\",\r\n \"20.49.120.96/27\",\r\n
+ \ \"20.49.120.128/25\",\r\n \"20.49.121.0/25\",\r\n \"20.50.65.128/25\",\r\n
+ \ \"20.50.68.0/27\",\r\n \"20.72.28.160/27\",\r\n \"20.150.165.192/27\",\r\n
+ \ \"20.150.166.0/25\",\r\n \"20.150.172.192/27\",\r\n \"20.150.179.224/27\",\r\n
+ \ \"20.150.187.224/27\",\r\n \"20.187.195.0/25\",\r\n \"20.188.0.51/32\",\r\n
+ \ \"20.188.3.145/32\",\r\n \"20.188.39.126/32\",\r\n \"20.189.109.192/27\",\r\n
+ \ \"20.192.99.224/27\",\r\n \"20.192.165.224/27\",\r\n \"20.192.166.0/25\",\r\n
+ \ \"20.192.230.32/27\",\r\n \"20.192.230.128/25\",\r\n \"20.192.238.0/27\",\r\n
+ \ \"20.193.206.0/27\",\r\n \"20.194.67.96/27\",\r\n \"23.96.222.45/32\",\r\n
+ \ \"23.96.223.89/32\",\r\n \"23.98.86.0/27\",\r\n \"23.98.104.192/27\",\r\n
+ \ \"23.98.106.0/25\",\r\n \"23.99.109.81/32\",\r\n \"23.100.4.253/32\",\r\n
+ \ \"23.100.8.130/32\",\r\n \"23.100.105.192/32\",\r\n \"23.101.29.228/32\",\r\n
+ \ \"23.102.235.31/32\",\r\n \"40.64.132.160/27\",\r\n \"40.64.134.0/25\",\r\n
+ \ \"40.67.51.0/25\",\r\n \"40.67.51.128/27\",\r\n \"40.67.60.128/27\",\r\n
+ \ \"40.69.108.128/27\",\r\n \"40.70.148.128/27\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.74.66.139/32\",\r\n \"40.74.125.44/32\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.76.71.185/32\",\r\n \"40.77.23.107/32\",\r\n
+ \ \"40.78.22.17/32\",\r\n \"40.78.196.96/27\",\r\n \"40.78.204.64/27\",\r\n
+ \ \"40.78.229.128/25\",\r\n \"40.78.238.0/27\",\r\n \"40.78.245.32/27\",\r\n
+ \ \"40.78.251.160/27\",\r\n \"40.79.114.144/32\",\r\n \"40.79.132.128/27\",\r\n
+ \ \"40.79.139.32/27\",\r\n \"40.79.148.0/27\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.79.163.32/27\",\r\n \"40.79.171.128/27\",\r\n \"40.79.180.96/27\",\r\n
+ \ \"40.79.187.224/27\",\r\n \"40.79.195.192/27\",\r\n \"40.80.51.128/27\",\r\n
+ \ \"40.80.62.64/27\",\r\n \"40.80.62.128/25\",\r\n \"40.80.172.64/27\",\r\n
+ \ \"40.80.172.128/25\",\r\n \"40.80.176.64/27\",\r\n \"40.83.177.42/32\",\r\n
+ \ \"40.84.53.157/32\",\r\n \"40.87.138.172/32\",\r\n \"40.87.143.97/32\",\r\n
+ \ \"40.89.20.192/27\",\r\n \"40.89.21.0/25\",\r\n \"40.112.221.188/32\",\r\n
+ \ \"40.112.223.235/32\",\r\n \"40.113.153.50/32\",\r\n \"40.113.176.160/27\",\r\n
+ \ \"40.113.176.192/27\",\r\n \"40.113.177.0/24\",\r\n \"40.114.53.146/32\",\r\n
+ \ \"40.118.27.192/32\",\r\n \"40.119.11.224/27\",\r\n \"40.120.75.160/27\",\r\n
+ \ \"40.127.132.17/32\",\r\n \"51.12.42.32/27\",\r\n \"51.12.42.128/25\",\r\n
+ \ \"51.12.100.64/27\",\r\n \"51.12.194.32/27\",\r\n \"51.12.194.128/25\",\r\n
+ \ \"51.12.204.64/27\",\r\n \"51.12.227.224/27\",\r\n \"51.12.235.224/27\",\r\n
+ \ \"51.104.30.0/25\",\r\n \"51.104.30.128/27\",\r\n \"51.105.69.0/27\",\r\n
+ \ \"51.105.75.192/27\",\r\n \"51.105.91.128/25\",\r\n \"51.105.92.0/27\",\r\n
+ \ \"51.107.51.64/27\",\r\n \"51.107.51.128/25\",\r\n \"51.107.60.96/27\",\r\n
+ \ \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n \"51.107.156.96/27\",\r\n
+ \ \"51.116.49.224/27\",\r\n \"51.116.50.0/25\",\r\n \"51.116.60.96/27\",\r\n
+ \ \"51.116.145.192/27\",\r\n \"51.116.146.0/25\",\r\n \"51.116.158.0/27\",\r\n
+ \ \"51.116.243.160/27\",\r\n \"51.116.251.128/27\",\r\n \"51.120.43.128/25\",\r\n
+ \ \"51.120.44.0/27\",\r\n \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n
+ \ \"51.120.211.224/27\",\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"51.137.164.160/27\",\r\n \"51.137.165.0/25\",\r\n \"51.140.84.251/32\",\r\n
+ \ \"51.140.126.10/32\",\r\n \"51.140.149.32/27\",\r\n \"51.140.212.160/27\",\r\n
+ \ \"51.140.226.207/32\",\r\n \"51.140.240.234/32\",\r\n \"51.141.49.253/32\",\r\n
+ \ \"51.144.118.31/32\",\r\n \"52.136.51.128/25\",\r\n \"52.136.52.0/27\",\r\n
+ \ \"52.136.132.236/32\",\r\n \"52.138.92.96/27\",\r\n \"52.138.229.0/27\",\r\n
+ \ \"52.140.108.160/27\",\r\n \"52.140.109.0/25\",\r\n \"52.147.10.141/32\",\r\n
+ \ \"52.147.10.149/32\",\r\n \"52.150.152.96/27\",\r\n \"52.150.153.128/25\",\r\n
+ \ \"52.151.6.77/32\",\r\n \"52.151.78.51/32\",\r\n \"52.158.236.252/32\",\r\n
+ \ \"52.161.15.247/32\",\r\n \"52.162.111.64/27\",\r\n \"52.163.212.39/32\",\r\n
+ \ \"52.163.215.122/32\",\r\n \"52.167.107.192/27\",\r\n \"52.167.155.89/32\",\r\n
+ \ \"52.168.180.95/32\",\r\n \"52.169.138.222/32\",\r\n \"52.172.203.144/32\",\r\n
+ \ \"52.175.221.106/32\",\r\n \"52.176.4.4/32\",\r\n \"52.176.92.27/32\",\r\n
+ \ \"52.177.196.50/32\",\r\n \"52.178.147.144/32\",\r\n \"52.179.159.231/32\",\r\n
+ \ \"52.180.165.88/32\",\r\n \"52.180.165.248/32\",\r\n \"52.180.177.125/32\",\r\n
+ \ \"52.182.139.224/27\",\r\n \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n
+ \ \"52.225.179.220/32\",\r\n \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n
+ \ \"52.225.187.149/32\",\r\n \"52.228.85.224/27\",\r\n \"52.228.86.0/25\",\r\n
+ \ \"52.231.20.32/27\",\r\n \"52.231.32.236/32\",\r\n \"52.231.148.128/27\",\r\n
+ \ \"52.231.205.15/32\",\r\n \"52.236.189.128/25\",\r\n \"52.237.27.123/32\",\r\n
+ \ \"52.242.31.77/32\",\r\n \"52.246.155.192/27\",\r\n \"52.250.225.32/27\",\r\n
+ \ \"65.52.252.160/27\",\r\n \"102.133.28.160/27\",\r\n \"102.133.59.0/25\",\r\n
+ \ \"102.133.59.128/27\",\r\n \"102.133.124.32/27\",\r\n \"102.133.156.64/27\",\r\n
+ \ \"102.133.218.192/27\",\r\n \"102.133.219.0/25\",\r\n \"102.133.251.128/27\",\r\n
+ \ \"104.40.49.44/32\",\r\n \"104.41.34.180/32\",\r\n \"104.43.252.98/32\",\r\n
+ \ \"104.46.115.237/32\",\r\n \"104.210.105.7/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"104.211.210.195/32\",\r\n \"104.214.34.123/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"157.55.253.43/32\",\r\n \"168.61.54.255/32\",\r\n
+ \ \"168.61.208.218/32\",\r\n \"191.233.11.160/27\",\r\n \"191.233.14.0/25\",\r\n
+ \ \"191.233.54.0/27\",\r\n \"191.233.205.128/27\",\r\n \"191.234.136.128/25\",\r\n
+ \ \"191.234.137.0/27\",\r\n \"191.234.147.224/27\",\r\n \"191.234.155.224/27\",\r\n
+ \ \"207.46.138.102/32\",\r\n \"2603:1000:4:402::300/123\",\r\n
+ \ \"2603:1000:104:402::300/123\",\r\n \"2603:1000:104:802::240/123\",\r\n
+ \ \"2603:1000:104:c02::240/123\",\r\n \"2603:1010:6:402::300/123\",\r\n
+ \ \"2603:1010:6:802::240/123\",\r\n \"2603:1010:6:c02::240/123\",\r\n
+ \ \"2603:1010:101:402::300/123\",\r\n \"2603:1010:304:402::300/123\",\r\n
+ \ \"2603:1010:404:402::300/123\",\r\n \"2603:1020:5:402::300/123\",\r\n
+ \ \"2603:1020:5:802::240/123\",\r\n \"2603:1020:5:c02::240/123\",\r\n
+ \ \"2603:1020:206:402::300/123\",\r\n \"2603:1020:206:802::240/123\",\r\n
+ \ \"2603:1020:206:c02::240/123\",\r\n \"2603:1020:305:402::300/123\",\r\n
+ \ \"2603:1020:405:402::300/123\",\r\n \"2603:1020:605:402::300/123\",\r\n
+ \ \"2603:1020:705:402::300/123\",\r\n \"2603:1020:705:802::240/123\",\r\n
+ \ \"2603:1020:705:c02::240/123\",\r\n \"2603:1020:805:402::300/123\",\r\n
+ \ \"2603:1020:805:802::240/123\",\r\n \"2603:1020:805:c02::240/123\",\r\n
+ \ \"2603:1020:905:402::300/123\",\r\n \"2603:1020:a04:402::300/123\",\r\n
+ \ \"2603:1020:a04:802::240/123\",\r\n \"2603:1020:a04:c02::240/123\",\r\n
+ \ \"2603:1020:b04:402::300/123\",\r\n \"2603:1020:c04:402::300/123\",\r\n
+ \ \"2603:1020:c04:802::240/123\",\r\n \"2603:1020:c04:c02::240/123\",\r\n
+ \ \"2603:1020:d04:402::300/123\",\r\n \"2603:1020:e04:402::300/123\",\r\n
+ \ \"2603:1020:e04:802::240/123\",\r\n \"2603:1020:e04:c02::240/123\",\r\n
+ \ \"2603:1020:f04:402::300/123\",\r\n \"2603:1020:1004:400::480/123\",\r\n
+ \ \"2603:1020:1004:800::100/123\",\r\n \"2603:1020:1004:800::240/123\",\r\n
+ \ \"2603:1020:1004:c02::2a0/123\",\r\n \"2603:1020:1104:400::300/123\",\r\n
+ \ \"2603:1030:f:400::b00/123\",\r\n \"2603:1030:10:402::300/123\",\r\n
+ \ \"2603:1030:10:802::240/123\",\r\n \"2603:1030:10:c02::240/123\",\r\n
+ \ \"2603:1030:104:402::300/123\",\r\n \"2603:1030:107:400::280/123\",\r\n
+ \ \"2603:1030:210:402::300/123\",\r\n \"2603:1030:210:802::240/123\",\r\n
+ \ \"2603:1030:210:c02::240/123\",\r\n \"2603:1030:40b:400::b00/123\",\r\n
+ \ \"2603:1030:40b:800::240/123\",\r\n \"2603:1030:40b:c00::240/123\",\r\n
+ \ \"2603:1030:40c:402::300/123\",\r\n \"2603:1030:40c:802::240/123\",\r\n
+ \ \"2603:1030:40c:c02::240/123\",\r\n \"2603:1030:504:802::100/123\",\r\n
+ \ \"2603:1030:504:c02::2a0/123\",\r\n \"2603:1030:608:402::300/123\",\r\n
+ \ \"2603:1030:807:402::300/123\",\r\n \"2603:1030:807:802::240/123\",\r\n
+ \ \"2603:1030:807:c02::240/123\",\r\n \"2603:1030:a07:402::980/123\",\r\n
+ \ \"2603:1030:b04:402::300/123\",\r\n \"2603:1030:c06:400::b00/123\",\r\n
+ \ \"2603:1030:c06:802::240/123\",\r\n \"2603:1030:c06:c02::240/123\",\r\n
+ \ \"2603:1030:f05:402::300/123\",\r\n \"2603:1030:f05:802::240/123\",\r\n
+ \ \"2603:1030:f05:c02::240/123\",\r\n \"2603:1030:1005:402::300/123\",\r\n
+ \ \"2603:1040:5:402::300/123\",\r\n \"2603:1040:5:802::240/123\",\r\n
+ \ \"2603:1040:5:c02::240/123\",\r\n \"2603:1040:207:402::300/123\",\r\n
+ \ \"2603:1040:407:402::300/123\",\r\n \"2603:1040:407:802::240/123\",\r\n
+ \ \"2603:1040:407:c02::240/123\",\r\n \"2603:1040:606:402::300/123\",\r\n
+ \ \"2603:1040:806:402::300/123\",\r\n \"2603:1040:904:402::300/123\",\r\n
+ \ \"2603:1040:904:802::240/123\",\r\n \"2603:1040:904:c02::240/123\",\r\n
+ \ \"2603:1040:a06:402::300/123\",\r\n \"2603:1040:a06:802::240/123\",\r\n
+ \ \"2603:1040:a06:c02::240/123\",\r\n \"2603:1040:b04:402::300/123\",\r\n
+ \ \"2603:1040:c06:402::300/123\",\r\n \"2603:1040:d04:400::480/123\",\r\n
+ \ \"2603:1040:d04:800::100/123\",\r\n \"2603:1040:d04:800::240/123\",\r\n
+ \ \"2603:1040:d04:c02::2a0/123\",\r\n \"2603:1040:f05:402::300/123\",\r\n
+ \ \"2603:1040:f05:802::240/123\",\r\n \"2603:1040:f05:c02::240/123\",\r\n
+ \ \"2603:1040:1104:400::300/123\",\r\n \"2603:1050:6:402::300/123\",\r\n
+ \ \"2603:1050:6:802::240/123\",\r\n \"2603:1050:6:c02::240/123\",\r\n
+ \ \"2603:1050:403:400::220/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.EastUS\",\r\n \"id\": \"AzureIoTHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.82.93.138/32\",\r\n \"20.49.109.128/25\",\r\n
+ \ \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.76.71.185/32\",\r\n \"40.78.229.128/25\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.114.53.146/32\",\r\n \"52.168.180.95/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"168.61.54.255/32\",\r\n \"2603:1030:210:402::300/123\",\r\n
+ \ \"2603:1030:210:802::240/123\",\r\n \"2603:1030:210:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureIoTHub.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.32/27\",\r\n \"20.39.14.128/25\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.79.114.144/32\",\r\n \"52.138.92.96/27\",\r\n
+ \ \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n \"52.225.179.220/32\",\r\n
+ \ \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n \"52.225.187.149/32\",\r\n
+ \ \"2603:1030:40b:400::b00/123\",\r\n \"2603:1030:40b:800::240/123\",\r\n
+ \ \"2603:1030:40b:c00::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayEast\",\r\n \"id\": \"AzureIoTHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.43.128/25\",\r\n \"51.120.44.0/27\",\r\n
+ \ \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n \"51.120.211.224/27\",\r\n
+ \ \"2603:1020:e04:402::300/123\",\r\n \"2603:1020:e04:802::240/123\",\r\n
+ \ \"2603:1020:e04:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayWest\",\r\n \"id\": \"AzureIoTHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"2603:1020:f04:402::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.SouthCentralUS\",\r\n \"id\":
+ \"AzureIoTHub.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.84.189.6/32\",\r\n \"13.85.68.113/32\",\r\n
+ \ \"20.45.123.128/27\",\r\n \"20.49.91.128/27\",\r\n \"40.119.11.224/27\",\r\n
+ \ \"104.214.34.123/32\",\r\n \"2603:1030:807:402::300/123\",\r\n
+ \ \"2603:1030:807:802::240/123\",\r\n \"2603:1030:807:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SouthIndia\",\r\n
+ \ \"id\": \"AzureIoTHub.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"20.41.197.64/27\",\r\n \"20.41.197.128/25\",\r\n
+ \ \"40.78.196.96/27\",\r\n \"104.211.210.195/32\",\r\n \"2603:1040:c06:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureIoTHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n
+ \ \"51.107.156.96/27\",\r\n \"2603:1020:b04:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.UAENorth\",\r\n
+ \ \"id\": \"AzureIoTHub.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"40.120.75.160/27\",\r\n \"65.52.252.160/27\",\r\n
+ \ \"2603:1040:904:402::300/123\",\r\n \"2603:1040:904:802::240/123\",\r\n
+ \ \"2603:1040:904:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.WestIndia\",\r\n \"id\": \"AzureIoTHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.128.128/27\",\r\n \"52.136.51.128/25\",\r\n
+ \ \"52.136.52.0/27\",\r\n \"2603:1040:806:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault\",\r\n
+ \ \"id\": \"AzureKeyVault\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"13.67.8.104/30\",\r\n \"13.68.24.216/32\",\r\n
+ \ \"13.68.29.203/32\",\r\n \"13.68.104.240/32\",\r\n \"13.69.64.72/30\",\r\n
+ \ \"13.69.227.72/30\",\r\n \"13.70.72.24/30\",\r\n \"13.70.138.129/32\",\r\n
+ \ \"13.71.170.40/30\",\r\n \"13.71.194.112/30\",\r\n \"13.72.250.239/32\",\r\n
+ \ \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n \"13.75.34.144/30\",\r\n
+ \ \"13.77.50.64/30\",\r\n \"13.78.106.88/30\",\r\n \"13.80.247.19/32\",\r\n
+ \ \"13.80.247.42/32\",\r\n \"13.84.174.143/32\",\r\n \"13.87.34.51/32\",\r\n
+ \ \"13.87.39.0/32\",\r\n \"13.87.56.80/30\",\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"13.89.61.248/32\",\r\n
+ \ \"13.89.170.200/30\",\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n
+ \ \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.36.114.16/30\",\r\n \"20.37.74.228/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.44.2.0/30\",\r\n \"20.45.90.72/29\",\r\n
+ \ \"20.45.90.80/30\",\r\n \"20.45.117.32/29\",\r\n \"20.45.117.40/30\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"20.48.197.104/29\",\r\n
+ \ \"20.48.197.112/30\",\r\n \"20.49.82.0/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.49.119.232/29\",\r\n \"20.49.119.240/28\",\r\n
+ \ \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n \"20.51.20.84/30\",\r\n
+ \ \"20.51.21.64/29\",\r\n \"20.52.88.144/29\",\r\n \"20.52.88.152/30\",\r\n
+ \ \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n \"20.53.48.40/29\",\r\n
+ \ \"20.53.49.96/30\",\r\n \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n
+ \ \"20.58.67.48/29\",\r\n \"20.58.67.56/30\",\r\n \"20.61.103.224/29\",\r\n
+ \ \"20.61.103.232/30\",\r\n \"20.62.60.128/27\",\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"20.66.2.28/30\",\r\n \"20.66.5.128/29\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"20.72.21.148/30\",\r\n \"20.72.21.192/29\",\r\n
+ \ \"20.72.26.0/30\",\r\n \"20.150.170.0/30\",\r\n \"20.150.181.28/30\",\r\n
+ \ \"20.150.181.164/30\",\r\n \"20.150.189.32/30\",\r\n \"20.150.244.36/30\",\r\n
+ \ \"20.150.245.56/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"20.186.41.83/32\",\r\n \"20.186.47.182/32\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n \"20.191.166.120/29\",\r\n
+ \ \"20.191.167.128/30\",\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"20.192.50.216/29\",\r\n \"20.192.50.224/30\",\r\n \"20.192.80.48/29\",\r\n
+ \ \"20.192.80.56/30\",\r\n \"20.192.234.0/30\",\r\n \"20.193.194.44/30\",\r\n
+ \ \"20.193.194.80/29\",\r\n \"20.193.202.0/30\",\r\n \"20.194.66.0/30\",\r\n
+ \ \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"20.195.74.168/29\",\r\n \"20.195.74.176/30\",\r\n
+ \ \"20.195.146.68/30\",\r\n \"20.195.146.192/29\",\r\n \"23.96.210.207/32\",\r\n
+ \ \"23.96.250.48/32\",\r\n \"23.97.50.43/32\",\r\n \"23.97.120.25/32\",\r\n
+ \ \"23.97.120.29/32\",\r\n \"23.97.120.39/32\",\r\n \"23.97.120.57/32\",\r\n
+ \ \"23.97.178.0/32\",\r\n \"23.99.132.207/32\",\r\n \"23.100.57.24/32\",\r\n
+ \ \"23.100.58.149/32\",\r\n \"23.101.21.103/32\",\r\n \"23.101.21.193/32\",\r\n
+ \ \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n \"23.101.159.107/32\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"40.65.188.244/32\",\r\n
+ \ \"40.65.189.219/32\",\r\n \"40.67.53.184/29\",\r\n \"40.67.53.224/30\",\r\n
+ \ \"40.67.58.0/30\",\r\n \"40.69.106.64/30\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.74.100.48/30\",\r\n \"40.76.196.75/32\",\r\n
+ \ \"40.76.212.37/32\",\r\n \"40.78.194.64/30\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"40.79.130.40/30\",\r\n \"40.79.163.156/30\",\r\n
+ \ \"40.79.173.4/30\",\r\n \"40.79.178.64/30\",\r\n \"40.84.47.24/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.85.229.9/32\",\r\n \"40.85.231.231/32\",\r\n
+ \ \"40.86.224.94/32\",\r\n \"40.86.231.180/32\",\r\n \"40.87.69.184/32\",\r\n
+ \ \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n \"40.89.180.10/32\",\r\n
+ \ \"40.89.180.25/32\",\r\n \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n
+ \ \"40.112.242.144/30\",\r\n \"40.117.157.122/32\",\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"40.124.64.128/30\",\r\n
+ \ \"51.12.17.232/29\",\r\n \"51.12.17.240/30\",\r\n \"51.12.25.204/30\",\r\n
+ \ \"51.12.28.32/29\",\r\n \"51.12.98.0/30\",\r\n \"51.12.202.0/30\",\r\n
+ \ \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.107.58.0/30\",\r\n \"51.107.154.0/30\",\r\n \"51.107.241.116/30\",\r\n
+ \ \"51.107.242.248/29\",\r\n \"51.107.250.44/30\",\r\n \"51.107.251.104/29\",\r\n
+ \ \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n \"51.116.58.0/30\",\r\n
+ \ \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n \"51.116.251.188/30\",\r\n
+ \ \"51.120.98.8/30\",\r\n \"51.120.218.0/30\",\r\n \"51.120.233.132/30\",\r\n
+ \ \"51.120.234.128/29\",\r\n \"51.138.210.132/30\",\r\n \"51.138.211.8/29\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n \"51.143.6.21/32\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n \"52.147.113.72/29\",\r\n
+ \ \"52.147.113.80/30\",\r\n \"52.148.84.142/32\",\r\n \"52.148.84.145/32\",\r\n
+ \ \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n
+ \ \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n \"52.161.31.139/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.169.232.147/32\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.175.236.86/32\",\r\n \"52.176.48.58/32\",\r\n
+ \ \"52.176.254.165/32\",\r\n \"52.177.71.51/32\",\r\n \"52.180.176.121/32\",\r\n
+ \ \"52.180.176.122/32\",\r\n \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n
+ \ \"52.183.93.92/32\",\r\n \"52.183.94.166/32\",\r\n \"52.184.155.181/32\",\r\n
+ \ \"52.184.158.37/32\",\r\n \"52.184.164.12/32\",\r\n \"52.187.161.13/32\",\r\n
+ \ \"52.187.163.139/32\",\r\n \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n
+ \ \"52.225.188.225/32\",\r\n \"52.225.191.36/32\",\r\n \"52.225.218.218/32\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"52.237.253.194/32\",\r\n \"52.246.157.4/30\",\r\n \"52.247.193.69/32\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"65.52.250.0/30\",\r\n \"102.37.81.88/29\",\r\n \"102.37.81.128/30\",\r\n
+ \ \"102.37.160.176/29\",\r\n \"102.37.160.184/30\",\r\n \"102.133.26.0/30\",\r\n
+ \ \"102.133.124.140/30\",\r\n \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n
+ \ \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.42.6.91/32\",\r\n \"104.42.136.180/32\",\r\n
+ \ \"104.43.161.34/32\",\r\n \"104.43.192.26/32\",\r\n \"104.44.136.42/32\",\r\n
+ \ \"104.46.40.31/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n \"104.208.26.47/32\",\r\n
+ \ \"104.210.195.61/32\",\r\n \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n
+ \ \"104.211.99.174/32\",\r\n \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n
+ \ \"104.211.167.57/32\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"104.214.18.168/30\",\r\n
+ \ \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n \"104.215.94.76/32\",\r\n
+ \ \"104.215.99.117/32\",\r\n \"104.215.139.166/32\",\r\n
+ \ \"104.215.140.132/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"168.62.108.27/32\",\r\n \"168.62.237.29/32\",\r\n \"168.63.167.27/32\",\r\n
+ \ \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n \"191.233.50.0/30\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1000:4::2a0/125\",\r\n \"2603:1000:4:402::80/125\",\r\n
+ \ \"2603:1000:104::660/125\",\r\n \"2603:1000:104:402::80/125\",\r\n
+ \ \"2603:1000:104:802::80/125\",\r\n \"2603:1000:104:c02::80/125\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\",\r\n
+ \ \"2603:1010:304::2a0/125\",\r\n \"2603:1010:304:402::80/125\",\r\n
+ \ \"2603:1010:404::2a0/125\",\r\n \"2603:1010:404:402::80/125\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\",\r\n
+ \ \"2603:1020:206::340/125\",\r\n \"2603:1020:206:402::80/125\",\r\n
+ \ \"2603:1020:206:802::80/125\",\r\n \"2603:1020:206:c02::80/125\",\r\n
+ \ \"2603:1020:305:402::80/125\",\r\n \"2603:1020:405:402::80/125\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\",\r\n
+ \ \"2603:1020:805::340/125\",\r\n \"2603:1020:805:402::80/125\",\r\n
+ \ \"2603:1020:805:802::80/125\",\r\n \"2603:1020:805:c02::80/125\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\",\r\n
+ \ \"2603:1020:a04::340/125\",\r\n \"2603:1020:a04:402::80/125\",\r\n
+ \ \"2603:1020:a04:802::80/125\",\r\n \"2603:1020:a04:c02::80/125\",\r\n
+ \ \"2603:1020:b04::2a0/125\",\r\n \"2603:1020:b04:402::80/125\",\r\n
+ \ \"2603:1020:c04::340/125\",\r\n \"2603:1020:c04:402::80/125\",\r\n
+ \ \"2603:1020:c04:802::80/125\",\r\n \"2603:1020:c04:c02::80/125\",\r\n
+ \ \"2603:1020:d04::2a0/125\",\r\n \"2603:1020:d04:402::80/125\",\r\n
+ \ \"2603:1020:e04::340/125\",\r\n \"2603:1020:e04:402::80/125\",\r\n
+ \ \"2603:1020:e04:802::80/125\",\r\n \"2603:1020:e04:c02::80/125\",\r\n
+ \ \"2603:1020:f04::2a0/125\",\r\n \"2603:1020:f04:402::80/125\",\r\n
+ \ \"2603:1020:1004:1::1f8/125\",\r\n \"2603:1020:1004:400::80/125\",\r\n
+ \ \"2603:1020:1004:400::2f8/125\",\r\n \"2603:1020:1004:800::140/125\",\r\n
+ \ \"2603:1020:1104:1::158/125\",\r\n \"2603:1020:1104:400::80/125\",\r\n
+ \ \"2603:1030:f:1::2a0/125\",\r\n \"2603:1030:f:400::880/125\",\r\n
+ \ \"2603:1030:10::340/125\",\r\n \"2603:1030:10:402::80/125\",\r\n
+ \ \"2603:1030:10:802::80/125\",\r\n \"2603:1030:10:c02::80/125\",\r\n
+ \ \"2603:1030:104::340/125\",\r\n \"2603:1030:104:402::80/125\",\r\n
+ \ \"2603:1030:107::738/125\",\r\n \"2603:1030:107:400::/125\",\r\n
+ \ \"2603:1030:107:400::10/125\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\",\r\n \"2603:1030:40c::340/125\",\r\n
+ \ \"2603:1030:40c:402::80/125\",\r\n \"2603:1030:40c:802::80/125\",\r\n
+ \ \"2603:1030:40c:c02::80/125\",\r\n \"2603:1030:504::1f8/125\",\r\n
+ \ \"2603:1030:504:402::80/125\",\r\n \"2603:1030:504:402::2f8/125\",\r\n
+ \ \"2603:1030:504:802::140/125\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\",\r\n \"2603:1030:807::340/125\",\r\n
+ \ \"2603:1030:807:402::80/125\",\r\n \"2603:1030:807:802::80/125\",\r\n
+ \ \"2603:1030:807:c02::80/125\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\",\r\n \"2603:1030:1005::2a0/125\",\r\n
+ \ \"2603:1030:1005:402::80/125\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\",\r\n \"2603:1040:207::2a0/125\",\r\n
+ \ \"2603:1040:207:402::80/125\",\r\n \"2603:1040:407::340/125\",\r\n
+ \ \"2603:1040:407:402::80/125\",\r\n \"2603:1040:407:802::80/125\",\r\n
+ \ \"2603:1040:407:c02::80/125\",\r\n \"2603:1040:606::2a0/125\",\r\n
+ \ \"2603:1040:606:402::80/125\",\r\n \"2603:1040:806::2a0/125\",\r\n
+ \ \"2603:1040:806:402::80/125\",\r\n \"2603:1040:904::340/125\",\r\n
+ \ \"2603:1040:904:402::80/125\",\r\n \"2603:1040:904:802::80/125\",\r\n
+ \ \"2603:1040:904:c02::80/125\",\r\n \"2603:1040:a06::440/125\",\r\n
+ \ \"2603:1040:a06:402::80/125\",\r\n \"2603:1040:a06:802::80/125\",\r\n
+ \ \"2603:1040:a06:c02::80/125\",\r\n \"2603:1040:b04::2a0/125\",\r\n
+ \ \"2603:1040:b04:402::80/125\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\",\r\n \"2603:1040:d04:1::1f8/125\",\r\n
+ \ \"2603:1040:d04:400::80/125\",\r\n \"2603:1040:d04:400::2f8/125\",\r\n
+ \ \"2603:1040:d04:800::140/125\",\r\n \"2603:1040:e05::20/125\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\",\r\n
+ \ \"2603:1040:1104:1::158/125\",\r\n \"2603:1040:1104:400::80/125\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\",\r\n
+ \ \"2603:1050:403:1::220/125\",\r\n \"2603:1050:403:400::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.53.48.40/29\",\r\n \"20.53.49.96/30\",\r\n \"2603:1010:304::2a0/125\",\r\n
+ \ \"2603:1010:304:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaCentral2\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.114.16/30\",\r\n
+ \ \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n \"2603:1010:404::2a0/125\",\r\n
+ \ \"2603:1010:404:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaEast\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.24/30\",\r\n
+ \ \"13.72.250.239/32\",\r\n \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n
+ \ \"40.79.163.156/30\",\r\n \"40.79.173.4/30\",\r\n \"52.237.253.194/32\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.138.129/32\",\r\n \"13.77.50.64/30\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.BrazilSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CanadaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.40/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.48.197.104/29\",\r\n \"20.48.197.112/30\",\r\n \"40.85.229.9/32\",\r\n
+ \ \"40.85.231.231/32\",\r\n \"52.246.157.4/30\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CanadaEast\",\r\n \"id\": \"AzureKeyVault.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.69.106.64/30\",\r\n \"40.86.224.94/32\",\r\n
+ \ \"40.86.231.180/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"2603:1030:1005::2a0/125\",\r\n \"2603:1030:1005:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralIndia\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n \"104.211.99.174/32\",\r\n
+ \ \"2603:1040:a06::440/125\",\r\n \"2603:1040:a06:402::80/125\",\r\n
+ \ \"2603:1040:a06:802::80/125\",\r\n \"2603:1040:a06:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.61.248/32\",\r\n \"13.89.170.200/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"23.99.132.207/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.176.48.58/32\",\r\n \"104.43.161.34/32\",\r\n
+ \ \"104.43.192.26/32\",\r\n \"104.208.26.47/32\",\r\n \"2603:1030:10::340/125\",\r\n
+ \ \"2603:1030:10:402::80/125\",\r\n \"2603:1030:10:802::80/125\",\r\n
+ \ \"2603:1030:10:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CentralUSEUAP\",\r\n \"id\":
+ \"AzureKeyVault.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"52.176.254.165/32\",\r\n
+ \ \"52.180.176.121/32\",\r\n \"52.180.176.122/32\",\r\n \"2603:1030:f:1::2a0/125\",\r\n
+ \ \"2603:1030:f:400::880/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastAsia\",\r\n \"id\": \"AzureKeyVault.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.144/30\",\r\n \"20.195.74.168/29\",\r\n
+ \ \"20.195.74.176/30\",\r\n \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n
+ \ \"2603:1040:207::2a0/125\",\r\n \"2603:1040:207:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.76.196.75/32\",\r\n \"40.76.212.37/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.87.69.184/32\",\r\n \"40.117.157.122/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastUS2\",\r\n \"id\": \"AzureKeyVault.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.24.216/32\",\r\n \"13.68.29.203/32\",\r\n
+ \ \"13.68.104.240/32\",\r\n \"20.62.60.128/27\",\r\n \"20.186.41.83/32\",\r\n
+ \ \"20.186.47.182/32\",\r\n \"23.101.159.107/32\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.84.47.24/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.177.71.51/32\",\r\n \"52.184.155.181/32\",\r\n \"52.184.158.37/32\",\r\n
+ \ \"52.184.164.12/32\",\r\n \"52.225.218.218/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"2603:1030:40c::340/125\",\r\n \"2603:1030:40c:402::80/125\",\r\n
+ \ \"2603:1030:40c:802::80/125\",\r\n \"2603:1030:40c:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.20.84/30\",\r\n \"20.51.21.64/29\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n
+ \ \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n \"52.225.188.225/32\",\r\n
+ \ \"52.225.191.36/32\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceCentral\",\r\n \"id\":
+ \"AzureKeyVault.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"40.79.130.40/30\",\r\n \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n
+ \ \"40.89.180.10/32\",\r\n \"40.89.180.25/32\",\r\n \"51.138.210.132/30\",\r\n
+ \ \"51.138.211.8/29\",\r\n \"2603:1020:805::340/125\",\r\n
+ \ \"2603:1020:805:402::80/125\",\r\n \"2603:1020:805:802::80/125\",\r\n
+ \ \"2603:1020:805:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceSouth\",\r\n \"id\": \"AzureKeyVault.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.64/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.GermanyNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n
+ \ \"51.116.58.0/30\",\r\n \"2603:1020:d04::2a0/125\",\r\n
+ \ \"2603:1020:d04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.GermanyWestCentral\",\r\n \"id\":
+ \"AzureKeyVault.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.52.88.144/29\",\r\n
+ \ \"20.52.88.152/30\",\r\n \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n
+ \ \"51.116.251.188/30\",\r\n \"2603:1020:c04::340/125\",\r\n
+ \ \"2603:1020:c04:402::80/125\",\r\n \"2603:1020:c04:802::80/125\",\r\n
+ \ \"2603:1020:c04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.JapanEast\",\r\n \"id\": \"AzureKeyVault.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.88/30\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.191.166.120/29\",\r\n \"20.191.167.128/30\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n
+ \ \"2603:1040:407::340/125\",\r\n \"2603:1040:407:402::80/125\",\r\n
+ \ \"2603:1040:407:802::80/125\",\r\n \"2603:1040:407:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.JapanWest\",\r\n
+ \ \"id\": \"AzureKeyVault.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n
+ \ \"40.74.100.48/30\",\r\n \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n
+ \ \"2603:1040:606::2a0/125\",\r\n \"2603:1040:606:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.66.0/30\",\r\n \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.113.72/29\",\r\n \"52.147.113.80/30\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"2603:1040:e05::20/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.232/29\",\r\n
+ \ \"20.49.119.240/28\",\r\n \"23.96.210.207/32\",\r\n \"23.96.250.48/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"168.62.108.27/32\",\r\n
+ \ \"168.62.237.29/32\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthEurope\",\r\n \"id\": \"AzureKeyVault.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.72/30\",\r\n \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n
+ \ \"23.100.57.24/32\",\r\n \"23.100.58.149/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n
+ \ \"52.169.232.147/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.NorwayEast\",\r\n
+ \ \"id\": \"AzureKeyVault.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.8/30\",\r\n
+ \ \"51.120.233.132/30\",\r\n \"51.120.234.128/29\",\r\n \"2603:1020:e04::340/125\",\r\n
+ \ \"2603:1020:e04:402::80/125\",\r\n \"2603:1020:e04:802::80/125\",\r\n
+ \ \"2603:1020:e04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorwayWest\",\r\n \"id\": \"AzureKeyVault.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n
+ \ \"51.120.218.0/30\",\r\n \"2603:1020:f04::2a0/125\",\r\n
+ \ \"2603:1020:f04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.176/29\",\r\n
+ \ \"102.37.160.184/30\",\r\n \"102.133.124.140/30\",\r\n
+ \ \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n \"2603:1000:104::660/125\",\r\n
+ \ \"2603:1000:104:402::80/125\",\r\n \"2603:1000:104:802::80/125\",\r\n
+ \ \"2603:1000:104:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaWest\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.81.88/29\",\r\n
+ \ \"102.37.81.128/30\",\r\n \"102.133.26.0/30\",\r\n \"2603:1000:4::2a0/125\",\r\n
+ \ \"2603:1000:4:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.84.174.143/32\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"40.124.64.128/30\",\r\n \"104.44.136.42/32\",\r\n \"104.210.195.61/32\",\r\n
+ \ \"104.214.18.168/30\",\r\n \"104.215.94.76/32\",\r\n \"104.215.99.117/32\",\r\n
+ \ \"2603:1030:807::340/125\",\r\n \"2603:1030:807:402::80/125\",\r\n
+ \ \"2603:1030:807:802::80/125\",\r\n \"2603:1030:807:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureKeyVault.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.104/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"23.97.50.43/32\",\r\n \"23.101.21.103/32\",\r\n
+ \ \"23.101.21.193/32\",\r\n \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n
+ \ \"40.65.188.244/32\",\r\n \"40.65.189.219/32\",\r\n \"52.148.84.142/32\",\r\n
+ \ \"52.148.84.145/32\",\r\n \"52.187.161.13/32\",\r\n \"52.187.163.139/32\",\r\n
+ \ \"104.215.139.166/32\",\r\n \"104.215.140.132/32\",\r\n
+ \ \"168.63.167.27/32\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthIndia\",\r\n \"id\": \"AzureKeyVault.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.64/30\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.107.58.0/30\",\r\n
+ \ \"51.107.241.116/30\",\r\n \"51.107.242.248/29\",\r\n \"2603:1020:a04::340/125\",\r\n
+ \ \"2603:1020:a04:402::80/125\",\r\n \"2603:1020:a04:802::80/125\",\r\n
+ \ \"2603:1020:a04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandWest\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.0/30\",\r\n \"51.107.250.44/30\",\r\n
+ \ \"51.107.251.104/29\",\r\n \"2603:1020:b04::2a0/125\",\r\n
+ \ \"2603:1020:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.UAECentral\",\r\n \"id\": \"AzureKeyVault.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.228/30\",\r\n \"20.45.90.72/29\",\r\n \"20.45.90.80/30\",\r\n
+ \ \"2603:1040:b04::2a0/125\",\r\n \"2603:1040:b04:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UAENorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"65.52.250.0/30\",\r\n
+ \ \"2603:1040:904::340/125\",\r\n \"2603:1040:904:402::80/125\",\r\n
+ \ \"2603:1040:904:802::80/125\",\r\n \"2603:1040:904:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"2603:1020:305:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKWest\",\r\n
+ \ \"id\": \"AzureKeyVault.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.58.67.48/29\",\r\n
+ \ \"20.58.67.56/30\",\r\n \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestCentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.112/30\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n
+ \ \"52.161.31.139/32\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestEurope\",\r\n \"id\": \"AzureKeyVault.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.72/30\",\r\n \"13.80.247.19/32\",\r\n \"13.80.247.42/32\",\r\n
+ \ \"20.61.103.224/29\",\r\n \"20.61.103.232/30\",\r\n \"23.97.178.0/32\",\r\n
+ \ \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"104.46.40.31/32\",\r\n \"2603:1020:206::340/125\",\r\n
+ \ \"2603:1020:206:402::80/125\",\r\n \"2603:1020:206:802::80/125\",\r\n
+ \ \"2603:1020:206:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestIndia\",\r\n \"id\": \"AzureKeyVault.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.80.48/29\",\r\n \"20.192.80.56/30\",\r\n
+ \ \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n \"104.211.167.57/32\",\r\n
+ \ \"2603:1040:806::2a0/125\",\r\n \"2603:1040:806:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.66.2.28/30\",\r\n
+ \ \"20.66.5.128/29\",\r\n \"40.112.242.144/30\",\r\n \"104.42.6.91/32\",\r\n
+ \ \"104.42.136.180/32\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestUS2\",\r\n \"id\": \"AzureKeyVault.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n
+ \ \"51.143.6.21/32\",\r\n \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n
+ \ \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n \"52.175.236.86/32\",\r\n
+ \ \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n \"52.183.93.92/32\",\r\n
+ \ \"52.183.94.166/32\",\r\n \"52.247.193.69/32\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning\",\r\n \"id\": \"AzureMachineLearning\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.87.135/32\",\r\n \"13.66.140.80/28\",\r\n
+ \ \"13.67.8.224/28\",\r\n \"13.69.64.192/28\",\r\n \"13.69.106.192/28\",\r\n
+ \ \"13.69.227.192/28\",\r\n \"13.70.72.144/28\",\r\n \"13.71.170.192/28\",\r\n
+ \ \"13.71.173.80/28\",\r\n \"13.71.194.240/28\",\r\n \"13.73.240.16/28\",\r\n
+ \ \"13.73.240.112/28\",\r\n \"13.73.240.240/28\",\r\n \"13.73.248.96/28\",\r\n
+ \ \"13.74.107.160/28\",\r\n \"13.75.36.16/28\",\r\n \"13.77.50.224/28\",\r\n
+ \ \"13.78.106.208/28\",\r\n \"13.86.195.35/32\",\r\n \"13.87.56.112/28\",\r\n
+ \ \"13.87.122.112/28\",\r\n \"13.87.160.129/32\",\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.36.106.80/28\",\r\n \"20.36.114.160/28\",\r\n \"20.37.67.80/28\",\r\n
+ \ \"20.37.74.208/28\",\r\n \"20.37.152.240/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.38.80.96/28\",\r\n \"20.38.128.48/28\",\r\n \"20.38.147.128/28\",\r\n
+ \ \"20.39.1.205/32\",\r\n \"20.39.11.80/28\",\r\n \"20.40.141.171/32\",\r\n
+ \ \"20.41.0.240/28\",\r\n \"20.41.64.80/28\",\r\n \"20.41.197.0/28\",\r\n
+ \ \"20.42.0.240/28\",\r\n \"20.42.129.16/28\",\r\n \"20.42.227.48/28\",\r\n
+ \ \"20.43.40.96/28\",\r\n \"20.43.64.96/28\",\r\n \"20.43.120.112/28\",\r\n
+ \ \"20.43.128.112/28\",\r\n \"20.44.3.32/28\",\r\n \"20.44.26.224/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"20.46.13.192/28\",\r\n \"20.72.16.48/28\",\r\n
+ \ \"20.150.161.128/28\",\r\n \"20.150.171.80/28\",\r\n \"20.150.179.64/28\",\r\n
+ \ \"20.150.187.64/28\",\r\n \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n
+ \ \"20.189.106.80/28\",\r\n \"20.192.99.64/28\",\r\n \"20.192.160.48/28\",\r\n
+ \ \"20.192.225.144/28\",\r\n \"20.192.235.16/28\",\r\n \"23.98.82.192/28\",\r\n
+ \ \"23.100.232.216/32\",\r\n \"40.66.61.146/32\",\r\n \"40.67.59.80/28\",\r\n
+ \ \"40.69.106.224/28\",\r\n \"40.70.146.192/28\",\r\n \"40.70.154.161/32\",\r\n
+ \ \"40.71.11.64/28\",\r\n \"40.74.24.96/28\",\r\n \"40.74.100.176/28\",\r\n
+ \ \"40.74.147.48/28\",\r\n \"40.75.35.48/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"40.78.202.80/28\",\r\n \"40.78.227.32/28\",\r\n \"40.78.234.128/28\",\r\n
+ \ \"40.78.242.176/28\",\r\n \"40.78.250.112/28\",\r\n \"40.79.130.192/28\",\r\n
+ \ \"40.79.138.128/28\",\r\n \"40.79.146.128/28\",\r\n \"40.79.154.64/28\",\r\n
+ \ \"40.79.162.48/28\",\r\n \"40.79.170.224/28\",\r\n \"40.79.178.224/28\",\r\n
+ \ \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n \"40.80.51.64/28\",\r\n
+ \ \"40.80.57.176/28\",\r\n \"40.80.169.160/28\",\r\n \"40.80.184.80/28\",\r\n
+ \ \"40.80.188.96/28\",\r\n \"40.81.27.228/32\",\r\n \"40.82.187.230/32\",\r\n
+ \ \"40.82.248.80/28\",\r\n \"40.89.17.208/28\",\r\n \"40.90.184.249/32\",\r\n
+ \ \"40.91.77.76/32\",\r\n \"40.112.242.176/28\",\r\n \"40.119.8.80/28\",\r\n
+ \ \"51.11.24.49/32\",\r\n \"51.12.47.32/28\",\r\n \"51.12.99.80/28\",\r\n
+ \ \"51.12.198.224/28\",\r\n \"51.12.203.80/28\",\r\n \"51.12.227.64/28\",\r\n
+ \ \"51.12.235.64/28\",\r\n \"51.104.8.64/27\",\r\n \"51.104.24.96/28\",\r\n
+ \ \"51.105.67.16/28\",\r\n \"51.105.75.128/28\",\r\n \"51.105.88.224/28\",\r\n
+ \ \"51.105.129.135/32\",\r\n \"51.107.59.48/28\",\r\n \"51.107.147.32/28\",\r\n
+ \ \"51.107.155.48/28\",\r\n \"51.116.49.176/28\",\r\n \"51.116.59.48/28\",\r\n
+ \ \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n \"51.116.250.224/28\",\r\n
+ \ \"51.120.99.64/28\",\r\n \"51.120.107.64/28\",\r\n \"51.120.211.64/28\",\r\n
+ \ \"51.120.219.80/28\",\r\n \"51.120.227.80/28\",\r\n \"51.120.234.224/28\",\r\n
+ \ \"51.137.161.224/28\",\r\n \"51.140.146.208/28\",\r\n \"51.140.210.208/28\",\r\n
+ \ \"51.144.184.47/32\",\r\n \"52.138.90.144/28\",\r\n \"52.138.226.160/28\",\r\n
+ \ \"52.139.3.33/32\",\r\n \"52.140.107.96/28\",\r\n \"52.141.25.58/32\",\r\n
+ \ \"52.141.26.97/32\",\r\n \"52.148.163.43/32\",\r\n \"52.150.136.80/28\",\r\n
+ \ \"52.151.111.249/32\",\r\n \"52.155.90.254/32\",\r\n \"52.155.115.7/32\",\r\n
+ \ \"52.156.193.50/32\",\r\n \"52.162.106.176/28\",\r\n \"52.167.106.160/28\",\r\n
+ \ \"52.177.164.219/32\",\r\n \"52.182.139.32/28\",\r\n \"52.184.87.76/32\",\r\n
+ \ \"52.185.70.56/32\",\r\n \"52.228.80.80/28\",\r\n \"52.230.56.136/32\",\r\n
+ \ \"52.231.18.192/28\",\r\n \"52.231.146.208/28\",\r\n \"52.236.186.192/28\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"52.246.155.128/28\",\r\n \"52.249.59.91/32\",\r\n
+ \ \"52.252.160.26/32\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"52.253.227.208/32\",\r\n \"52.255.214.109/32\",\r\n \"52.255.217.127/32\",\r\n
+ \ \"65.52.250.192/28\",\r\n \"102.133.27.32/28\",\r\n \"102.133.58.224/28\",\r\n
+ \ \"102.133.122.224/27\",\r\n \"102.133.155.32/28\",\r\n
+ \ \"102.133.251.64/28\",\r\n \"104.208.16.160/28\",\r\n \"104.208.144.160/28\",\r\n
+ \ \"104.211.81.144/28\",\r\n \"104.214.19.32/28\",\r\n \"191.233.8.48/28\",\r\n
+ \ \"191.233.203.144/28\",\r\n \"191.233.240.165/32\",\r\n
+ \ \"191.233.242.167/32\",\r\n \"191.234.147.64/28\",\r\n
+ \ \"191.234.155.64/28\",\r\n \"191.235.224.96/28\",\r\n \"2603:1000:4::300/122\",\r\n
+ \ \"2603:1000:104:1::2c0/122\",\r\n \"2603:1010:6:1::2c0/122\",\r\n
+ \ \"2603:1010:101::300/122\",\r\n \"2603:1010:304::300/122\",\r\n
+ \ \"2603:1010:404::300/122\",\r\n \"2603:1020:5:1::2c0/122\",\r\n
+ \ \"2603:1020:206:1::2c0/122\",\r\n \"2603:1020:305::300/122\",\r\n
+ \ \"2603:1020:405::300/122\",\r\n \"2603:1020:605::300/122\",\r\n
+ \ \"2603:1020:705:1::2c0/122\",\r\n \"2603:1020:805:1::2c0/122\",\r\n
+ \ \"2603:1020:905::300/122\",\r\n \"2603:1020:a04:1::2c0/122\",\r\n
+ \ \"2603:1020:b04::300/122\",\r\n \"2603:1020:c04:1::2c0/122\",\r\n
+ \ \"2603:1020:d04::300/122\",\r\n \"2603:1020:e04:1::2c0/122\",\r\n
+ \ \"2603:1020:f04::300/122\",\r\n \"2603:1020:1004::2c0/122\",\r\n
+ \ \"2603:1020:1104::240/122\",\r\n \"2603:1030:f:1::300/122\",\r\n
+ \ \"2603:1030:10:1::2c0/122\",\r\n \"2603:1030:104:1::2c0/122\",\r\n
+ \ \"2603:1030:107::240/122\",\r\n \"2603:1030:210:1::2c0/122\",\r\n
+ \ \"2603:1030:40b:1::2c0/122\",\r\n \"2603:1030:40c:1::2c0/122\",\r\n
+ \ \"2603:1030:504:1::2c0/122\",\r\n \"2603:1030:608::300/122\",\r\n
+ \ \"2603:1030:807:1::2c0/122\",\r\n \"2603:1030:a07::300/122\",\r\n
+ \ \"2603:1030:b04::300/122\",\r\n \"2603:1030:c06:1::2c0/122\",\r\n
+ \ \"2603:1030:f05:1::2c0/122\",\r\n \"2603:1030:1005::300/122\",\r\n
+ \ \"2603:1040:5:1::2c0/122\",\r\n \"2603:1040:207::300/122\",\r\n
+ \ \"2603:1040:407:1::2c0/122\",\r\n \"2603:1040:606::300/122\",\r\n
+ \ \"2603:1040:806::300/122\",\r\n \"2603:1040:904:1::2c0/122\",\r\n
+ \ \"2603:1040:a06:1::2c0/122\",\r\n \"2603:1040:b04::300/122\",\r\n
+ \ \"2603:1040:c06::300/122\",\r\n \"2603:1040:d04::2c0/122\",\r\n
+ \ \"2603:1040:f05:1::2c0/122\",\r\n \"2603:1040:1104::240/122\",\r\n
+ \ \"2603:1050:6:1::2c0/122\",\r\n \"2603:1050:403::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.AustraliaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.144/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n \"40.79.162.48/28\",\r\n
+ \ \"40.79.170.224/28\",\r\n \"2603:1010:6:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CanadaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.224/28\",\r\n \"40.89.17.208/28\",\r\n
+ \ \"2603:1030:1005::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.CentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.37.152.240/28\",\r\n \"52.182.139.32/28\",\r\n \"52.185.70.56/32\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"104.208.16.160/28\",\r\n \"2603:1030:10:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureMachineLearning.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.192/28\",\r\n \"40.78.202.80/28\",\r\n
+ \ \"2603:1030:f:1::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureMachineLearning.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n
+ \ \"51.116.250.224/28\",\r\n \"2603:1020:c04:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.JapanEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.208/28\",\r\n \"20.43.64.96/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n
+ \ \"52.155.115.7/32\",\r\n \"2603:1040:407:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.SouthIndia\",\r\n
+ \ \"id\": \"AzureMachineLearning.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.197.0/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"2603:1040:c06::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.WestCentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.240/28\",\r\n
+ \ \"52.150.136.80/28\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"2603:1030:b04::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor\",\r\n \"id\": \"AzureMonitor\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"5\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.96.175/32\",\r\n \"13.65.206.67/32\",\r\n
+ \ \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n \"13.66.37.172/32\",\r\n
+ \ \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.67.9.192/28\",\r\n \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n
+ \ \"13.67.15.0/32\",\r\n \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n
+ \ \"13.68.31.237/32\",\r\n \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n
+ \ \"13.68.109.212/32\",\r\n \"13.68.111.247/32\",\r\n \"13.69.51.175/32\",\r\n
+ \ \"13.69.51.218/32\",\r\n \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n
+ \ \"13.69.67.60/30\",\r\n \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n
+ \ \"13.69.106.208/28\",\r\n \"13.69.109.224/27\",\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.72.232/29\",\r\n \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n
+ \ \"13.70.124.27/32\",\r\n \"13.70.127.61/32\",\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.73.26.213/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n
+ \ \"13.75.38.0/28\",\r\n \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n
+ \ \"13.75.117.221/32\",\r\n \"13.75.119.169/32\",\r\n \"13.75.195.15/32\",\r\n
+ \ \"13.76.85.243/32\",\r\n \"13.76.87.86/32\",\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"13.77.150.166/32\",\r\n
+ \ \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n \"13.78.10.58/32\",\r\n
+ \ \"13.78.13.189/32\",\r\n \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n
+ \ \"13.78.109.112/29\",\r\n \"13.78.111.192/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"13.80.134.255/32\",\r\n \"13.82.100.176/32\",\r\n \"13.82.184.151/32\",\r\n
+ \ \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n \"13.84.149.186/32\",\r\n
+ \ \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n \"13.84.225.10/32\",\r\n
+ \ \"13.85.70.142/32\",\r\n \"13.86.218.224/28\",\r\n \"13.86.218.248/29\",\r\n
+ \ \"13.86.223.128/26\",\r\n \"13.87.56.248/29\",\r\n \"13.87.57.128/28\",\r\n
+ \ \"13.87.122.248/29\",\r\n \"13.87.123.128/28\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.88.230.43/32\",\r\n \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n
+ \ \"13.89.42.127/32\",\r\n \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n
+ \ \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n \"13.90.249.229/32\",\r\n
+ \ \"13.90.251.123/32\",\r\n \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n
+ \ \"13.92.40.198/32\",\r\n \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n
+ \ \"13.92.179.52/32\",\r\n \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n
+ \ \"13.92.254.218/32\",\r\n \"13.92.255.146/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"13.94.39.13/32\",\r\n
+ \ \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n \"20.36.114.200/29\",\r\n
+ \ \"20.36.114.208/28\",\r\n \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n
+ \ \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.37.192.68/31\",\r\n \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n
+ \ \"20.37.198.140/32\",\r\n \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.38.80.68/31\",\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"20.38.143.0/27\",\r\n \"20.38.143.44/30\",\r\n
+ \ \"20.38.146.152/29\",\r\n \"20.38.147.144/29\",\r\n \"20.38.152.32/27\",\r\n
+ \ \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.40.124.0/32\",\r\n \"20.40.137.91/32\",\r\n \"20.40.140.212/32\",\r\n
+ \ \"20.40.160.120/32\",\r\n \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n
+ \ \"20.40.206.128/28\",\r\n \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n
+ \ \"20.40.228.0/26\",\r\n \"20.41.49.208/32\",\r\n \"20.41.64.68/31\",\r\n
+ \ \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n \"20.41.69.16/28\",\r\n
+ \ \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n \"20.41.208.32/27\",\r\n
+ \ \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n \"20.42.73.128/25\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n
+ \ \"20.42.230.224/29\",\r\n \"20.42.230.232/31\",\r\n \"20.43.40.68/31\",\r\n
+ \ \"20.43.41.178/31\",\r\n \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n
+ \ \"20.43.44.224/28\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.43.98.234/32\",\r\n
+ \ \"20.43.99.158/32\",\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n \"20.44.3.48/28\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"20.44.16.0/29\",\r\n \"20.44.17.0/29\",\r\n \"20.44.26.152/29\",\r\n
+ \ \"20.44.26.248/29\",\r\n \"20.44.73.196/32\",\r\n \"20.44.192.217/32\",\r\n
+ \ \"20.45.122.152/29\",\r\n \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n
+ \ \"20.45.125.224/28\",\r\n \"20.46.10.224/27\",\r\n \"20.46.12.196/30\",\r\n
+ \ \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n \"20.48.193.224/27\",\r\n
+ \ \"20.49.83.32/28\",\r\n \"20.49.84.32/27\",\r\n \"20.49.91.32/28\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.49.99.44/31\",\r\n \"20.49.99.64/28\",\r\n
+ \ \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n \"20.49.109.46/31\",\r\n
+ \ \"20.49.109.80/28\",\r\n \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n
+ \ \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n \"20.49.114.48/31\",\r\n
+ \ \"20.49.120.64/28\",\r\n \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n
+ \ \"20.50.68.120/30\",\r\n \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n
+ \ \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n \"20.52.64.32/27\",\r\n
+ \ \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n \"20.66.2.192/26\",\r\n
+ \ \"20.72.20.48/28\",\r\n \"20.72.21.0/30\",\r\n \"20.72.21.32/27\",\r\n
+ \ \"20.72.28.192/27\",\r\n \"20.135.13.192/26\",\r\n \"20.150.167.184/29\",\r\n
+ \ \"20.150.171.208/29\",\r\n \"20.150.173.0/28\",\r\n \"20.150.178.152/29\",\r\n
+ \ \"20.150.181.96/28\",\r\n \"20.150.182.32/27\",\r\n \"20.150.186.152/29\",\r\n
+ \ \"20.150.241.64/29\",\r\n \"20.150.241.72/30\",\r\n \"20.150.241.96/27\",\r\n
+ \ \"20.187.197.192/27\",\r\n \"20.188.36.28/32\",\r\n \"20.189.109.144/28\",\r\n
+ \ \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n \"20.189.111.24/31\",\r\n
+ \ \"20.189.172.0/25\",\r\n \"20.189.225.128/27\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.50.192/28\",\r\n
+ \ \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n \"20.192.167.160/27\",\r\n
+ \ \"20.192.231.244/30\",\r\n \"20.192.235.144/28\",\r\n \"20.193.96.32/27\",\r\n
+ \ \"20.193.194.24/29\",\r\n \"20.193.194.32/29\",\r\n \"20.193.194.40/30\",\r\n
+ \ \"20.193.203.112/28\",\r\n \"20.193.204.64/27\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"23.96.28.38/32\",\r\n
+ \ \"23.96.245.125/32\",\r\n \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n
+ \ \"23.97.65.103/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"23.100.90.7/32\",\r\n \"23.100.94.221/32\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.100.228.32/32\",\r\n \"23.101.0.142/32\",\r\n
+ \ \"23.101.9.4/32\",\r\n \"23.101.13.65/32\",\r\n \"23.101.69.223/32\",\r\n
+ \ \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n \"23.101.239.238/32\",\r\n
+ \ \"23.102.44.211/32\",\r\n \"23.102.45.216/32\",\r\n \"23.102.66.132/32\",\r\n
+ \ \"23.102.77.48/32\",\r\n \"23.102.181.197/32\",\r\n \"40.64.132.128/28\",\r\n
+ \ \"40.64.132.240/28\",\r\n \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n
+ \ \"40.64.134.138/32\",\r\n \"40.67.52.224/27\",\r\n \"40.67.59.192/28\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.69.81.159/32\",\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.69.194.158/32\",\r\n \"40.70.23.205/32\",\r\n
+ \ \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n \"40.71.12.224/28\",\r\n
+ \ \"40.71.12.240/30\",\r\n \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n
+ \ \"40.71.14.112/30\",\r\n \"40.71.183.225/32\",\r\n \"40.74.24.68/31\",\r\n
+ \ \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n \"40.74.101.32/28\",\r\n
+ \ \"40.74.101.200/29\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.74.249.98/32\",\r\n \"40.75.34.40/29\",\r\n
+ \ \"40.75.35.64/29\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n \"40.77.24.27/32\",\r\n
+ \ \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.78.195.16/28\",\r\n
+ \ \"40.78.196.48/29\",\r\n \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.78.234.56/29\",\r\n
+ \ \"40.78.234.144/28\",\r\n \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n
+ \ \"40.78.247.64/26\",\r\n \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n
+ \ \"40.78.253.192/26\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.79.154.80/29\",\r\n \"40.79.156.32/29\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.79.179.8/29\",\r\n
+ \ \"40.79.179.16/28\",\r\n \"40.79.187.8/29\",\r\n \"40.79.190.160/27\",\r\n
+ \ \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n \"40.80.50.152/29\",\r\n
+ \ \"40.80.51.80/29\",\r\n \"40.80.180.160/27\",\r\n \"40.80.191.224/28\",\r\n
+ \ \"40.81.58.225/32\",\r\n \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n
+ \ \"40.84.189.107/32\",\r\n \"40.84.192.116/32\",\r\n \"40.85.180.90/32\",\r\n
+ \ \"40.85.201.168/32\",\r\n \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"40.86.201.128/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.89.153.171/32\",\r\n
+ \ \"40.89.189.61/32\",\r\n \"40.112.49.101/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.117.80.207/32\",\r\n
+ \ \"40.117.95.162/32\",\r\n \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n
+ \ \"40.117.197.224/32\",\r\n \"40.118.129.58/32\",\r\n \"40.119.4.128/32\",\r\n
+ \ \"40.119.8.72/31\",\r\n \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"40.120.75.32/28\",\r\n \"40.121.57.2/32\",\r\n
+ \ \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n \"40.121.163.228/32\",\r\n
+ \ \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"40.126.246.183/32\",\r\n \"40.127.75.125/32\",\r\n \"40.127.84.197/32\",\r\n
+ \ \"40.127.144.141/32\",\r\n \"51.11.97.96/27\",\r\n \"51.12.17.20/30\",\r\n
+ \ \"51.12.17.56/29\",\r\n \"51.12.17.128/29\",\r\n \"51.12.25.56/29\",\r\n
+ \ \"51.12.25.192/29\",\r\n \"51.12.25.200/30\",\r\n \"51.12.46.0/27\",\r\n
+ \ \"51.12.99.72/29\",\r\n \"51.12.102.192/27\",\r\n \"51.12.195.224/27\",\r\n
+ \ \"51.12.203.208/28\",\r\n \"51.12.205.96/27\",\r\n \"51.12.226.152/29\",\r\n
+ \ \"51.12.234.152/29\",\r\n \"51.12.237.32/27\",\r\n \"51.13.128.32/27\",\r\n
+ \ \"51.13.136.192/27\",\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.105.248.23/32\",\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n \"51.107.148.0/28\",\r\n
+ \ \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n \"51.107.156.48/29\",\r\n
+ \ \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n \"51.116.245.96/28\",\r\n
+ \ \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.219.208/28\",\r\n
+ \ \"51.120.232.34/31\",\r\n \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n
+ \ \"51.120.235.240/28\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.6.23/32\",\r\n
+ \ \"51.140.54.208/32\",\r\n \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n
+ \ \"51.140.148.48/28\",\r\n \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n
+ \ \"51.140.163.207/32\",\r\n \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n
+ \ \"51.140.211.160/28\",\r\n \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"51.143.165.22/32\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n \"51.145.44.242/32\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.138.31.112/32\",\r\n \"52.138.31.127/32\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"52.138.222.110/32\",\r\n
+ \ \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n \"52.139.8.32/32\",\r\n
+ \ \"52.139.106.160/27\",\r\n \"52.140.104.68/31\",\r\n \"52.140.108.96/28\",\r\n
+ \ \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n \"52.140.108.240/31\",\r\n
+ \ \"52.141.22.149/32\",\r\n \"52.141.22.239/32\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.150.36.187/32\",\r\n
+ \ \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n \"52.150.154.24/29\",\r\n
+ \ \"52.150.154.32/28\",\r\n \"52.151.11.176/32\",\r\n \"52.155.118.97/32\",\r\n
+ \ \"52.155.162.238/32\",\r\n \"52.156.40.142/32\",\r\n \"52.156.168.82/32\",\r\n
+ \ \"52.161.8.76/32\",\r\n \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n
+ \ \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n \"52.162.110.168/29\",\r\n
+ \ \"52.162.214.75/32\",\r\n \"52.163.94.131/32\",\r\n \"52.163.122.20/32\",\r\n
+ \ \"52.164.120.183/32\",\r\n \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n
+ \ \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n \"52.165.38.20/32\",\r\n
+ \ \"52.165.150.242/32\",\r\n \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n
+ \ \"52.167.221.184/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.169.4.236/32\",\r\n \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n
+ \ \"52.169.64.244/32\",\r\n \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n
+ \ \"52.172.113.64/27\",\r\n \"52.172.209.125/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.175.198.74/32\",\r\n \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.177.223.60/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.179.192.178/32\",\r\n
+ \ \"52.180.160.132/32\",\r\n \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n
+ \ \"52.180.182.209/32\",\r\n \"52.182.138.216/29\",\r\n \"52.182.139.48/29\",\r\n
+ \ \"52.183.41.109/32\",\r\n \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n
+ \ \"52.183.95.86/32\",\r\n \"52.183.127.155/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"52.185.132.101/32\",\r\n \"52.185.132.170/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.170.253/32\",\r\n \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n
+ \ \"52.224.162.220/32\",\r\n \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n
+ \ \"52.228.80.68/31\",\r\n \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n
+ \ \"52.228.86.152/29\",\r\n \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n
+ \ \"52.229.25.130/32\",\r\n \"52.229.37.75/32\",\r\n \"52.229.218.221/32\",\r\n
+ \ \"52.229.225.6/32\",\r\n \"52.230.224.237/32\",\r\n \"52.231.18.240/28\",\r\n
+ \ \"52.231.28.204/32\",\r\n \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n
+ \ \"52.231.67.208/32\",\r\n \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n
+ \ \"52.231.111.52/32\",\r\n \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n
+ \ \"52.232.35.33/32\",\r\n \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n
+ \ \"52.236.186.88/29\",\r\n \"52.236.186.208/28\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.237.157.70/32\",\r\n \"52.242.230.209/32\",\r\n \"52.246.154.152/29\",\r\n
+ \ \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n \"52.247.202.90/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"65.52.122.208/32\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"102.37.64.128/27\",\r\n
+ \ \"102.37.80.64/27\",\r\n \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n
+ \ \"102.133.122.152/29\",\r\n \"102.133.123.240/29\",\r\n
+ \ \"102.133.126.64/27\",\r\n \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n
+ \ \"102.133.162.233/32\",\r\n \"102.133.216.68/31\",\r\n
+ \ \"102.133.216.106/31\",\r\n \"102.133.218.144/28\",\r\n
+ \ \"102.133.218.244/30\",\r\n \"102.133.219.128/28\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"102.133.250.152/29\",\r\n
+ \ \"102.133.251.80/29\",\r\n \"104.40.222.36/32\",\r\n \"104.41.61.169/32\",\r\n
+ \ \"104.41.152.101/32\",\r\n \"104.41.157.59/32\",\r\n \"104.41.224.134/32\",\r\n
+ \ \"104.42.40.28/32\",\r\n \"104.44.140.84/32\",\r\n \"104.45.136.42/32\",\r\n
+ \ \"104.45.230.69/32\",\r\n \"104.45.232.72/32\",\r\n \"104.46.123.164/32\",\r\n
+ \ \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n \"104.208.33.155/32\",\r\n
+ \ \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"104.214.70.219/32\",\r\n
+ \ \"104.214.104.109/32\",\r\n \"104.214.164.128/27\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"111.221.88.173/32\",\r\n \"137.116.82.175/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"137.116.226.81/32\",\r\n
+ \ \"137.117.144.33/32\",\r\n \"138.91.9.98/32\",\r\n \"138.91.32.98/32\",\r\n
+ \ \"138.91.37.93/32\",\r\n \"157.55.177.6/32\",\r\n \"168.61.142.0/27\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"168.62.169.17/32\",\r\n \"168.63.174.169/32\",\r\n
+ \ \"168.63.242.221/32\",\r\n \"191.232.33.83/32\",\r\n \"191.232.161.75/32\",\r\n
+ \ \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.233.51.128/28\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.237.224.192/27\",\r\n
+ \ \"191.239.251.90/32\",\r\n \"207.46.224.101/32\",\r\n \"207.46.236.191/32\",\r\n
+ \ \"2603:1000:4::780/121\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\",\r\n
+ \ \"2603:1010:6::60/123\",\r\n \"2603:1010:6::1c0/122\",\r\n
+ \ \"2603:1010:6::300/123\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:1::280/122\",\r\n \"2603:1010:6:402::500/121\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\",\r\n
+ \ \"2603:1010:404::780/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::60/123\",\r\n \"2603:1020:5::1c0/122\",\r\n
+ \ \"2603:1020:5::300/123\",\r\n \"2603:1020:5::360/123\",\r\n
+ \ \"2603:1020:5::500/121\",\r\n \"2603:1020:5:1::280/122\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::60/123\",\r\n
+ \ \"2603:1020:206::1c0/122\",\r\n \"2603:1020:206::300/123\",\r\n
+ \ \"2603:1020:206::360/123\",\r\n \"2603:1020:206::500/121\",\r\n
+ \ \"2603:1020:206:1::280/122\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:305::780/121\",\r\n \"2603:1020:405::780/121\",\r\n
+ \ \"2603:1020:605::780/121\",\r\n \"2603:1020:605:1::280/123\",\r\n
+ \ \"2603:1020:605:1::300/121\",\r\n \"2603:1020:605:402::500/121\",\r\n
+ \ \"2603:1020:705::60/123\",\r\n \"2603:1020:705::1c0/122\",\r\n
+ \ \"2603:1020:705::300/123\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:1::280/122\",\r\n
+ \ \"2603:1020:705:402::500/121\",\r\n \"2603:1020:805::60/123\",\r\n
+ \ \"2603:1020:805::1c0/122\",\r\n \"2603:1020:805::300/123\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:1::280/122\",\r\n \"2603:1020:805:402::500/121\",\r\n
+ \ \"2603:1020:905::780/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::60/123\",\r\n \"2603:1020:a04::1c0/122\",\r\n
+ \ \"2603:1020:a04::300/123\",\r\n \"2603:1020:a04::360/123\",\r\n
+ \ \"2603:1020:a04::500/121\",\r\n \"2603:1020:a04:1::280/122\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04::780/121\",\r\n
+ \ \"2603:1020:b04:1::280/123\",\r\n \"2603:1020:b04:1::300/121\",\r\n
+ \ \"2603:1020:b04:402::500/121\",\r\n \"2603:1020:c01:2::b/128\",\r\n
+ \ \"2603:1020:c01:2::e/128\",\r\n \"2603:1020:c04::60/123\",\r\n
+ \ \"2603:1020:c04::1c0/122\",\r\n \"2603:1020:c04::300/123\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:1::280/122\",\r\n \"2603:1020:c04:402::500/121\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\",\r\n \"2603:1020:e04::60/123\",\r\n
+ \ \"2603:1020:e04::1c0/122\",\r\n \"2603:1020:e04::300/123\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:1::280/122\",\r\n \"2603:1020:e04:402::500/121\",\r\n
+ \ \"2603:1020:f04::780/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004::280/122\",\r\n \"2603:1020:1004:1::380/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::160/123\",\r\n
+ \ \"2603:1020:1104:1::180/122\",\r\n \"2603:1020:1104:1::1c0/123\",\r\n
+ \ \"2603:1020:1104:1::4c0/123\",\r\n \"2603:1020:1104:1::500/121\",\r\n
+ \ \"2603:1020:1104:400::440/123\",\r\n \"2603:1020:1104:400::480/121\",\r\n
+ \ \"2603:1030:7:5::e/128\",\r\n \"2603:1030:7:5::17/128\",\r\n
+ \ \"2603:1030:7:5::29/128\",\r\n \"2603:1030:7:5::32/128\",\r\n
+ \ \"2603:1030:7:6::10/128\",\r\n \"2603:1030:7:6::14/128\",\r\n
+ \ \"2603:1030:7:6::1b/128\",\r\n \"2603:1030:7:6::37/128\",\r\n
+ \ \"2603:1030:7:6::3f/128\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::60/123\",\r\n
+ \ \"2603:1030:104::1c0/122\",\r\n \"2603:1030:104::300/123\",\r\n
+ \ \"2603:1030:104::360/123\",\r\n \"2603:1030:104::500/121\",\r\n
+ \ \"2603:1030:104:1::280/122\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::80/121\",\r\n \"2603:1030:107:1::200/123\",\r\n
+ \ \"2603:1030:107:1::280/121\",\r\n \"2603:1030:107:400::3c0/123\",\r\n
+ \ \"2603:1030:107:400::480/121\",\r\n \"2603:1030:210::60/123\",\r\n
+ \ \"2603:1030:210::1c0/122\",\r\n \"2603:1030:210::300/123\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:1::280/122\",\r\n \"2603:1030:210:402::500/121\",\r\n
+ \ \"2603:1030:302:402::80/123\",\r\n \"2603:1030:302:402::100/121\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\",\r\n
+ \ \"2603:1030:504::380/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:1::280/122\",\r\n
+ \ \"2603:1030:504:c02::100/123\",\r\n \"2603:1030:504:c02::180/121\",\r\n
+ \ \"2603:1030:608::780/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:800:5::bfee:a418/128\",\r\n \"2603:1030:800:5::bfee:a429/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a42a/128\",\r\n \"2603:1030:800:5::bfee:a435/128\",\r\n
+ \ \"2603:1030:807::60/123\",\r\n \"2603:1030:807::1c0/122\",\r\n
+ \ \"2603:1030:807::300/123\",\r\n \"2603:1030:807::360/123\",\r\n
+ \ \"2603:1030:807::500/121\",\r\n \"2603:1030:807:1::280/122\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\",\r\n
+ \ \"2603:1030:c02:2::4e1/128\",\r\n \"2603:1030:c06:1::280/122\",\r\n
+ \ \"2603:1030:c06:2::80/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:d00::1d/128\",\r\n \"2603:1030:d00::48/128\",\r\n
+ \ \"2603:1030:d00::5a/128\",\r\n \"2603:1030:d00::82/128\",\r\n
+ \ \"2603:1030:d00::84/128\",\r\n \"2603:1030:d00::9a/128\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005::780/121\",\r\n
+ \ \"2603:1030:1005:1::280/123\",\r\n \"2603:1030:1005:1::300/121\",\r\n
+ \ \"2603:1030:1005:402::500/121\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2603:1040:207::780/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::60/123\",\r\n \"2603:1040:407::1c0/122\",\r\n
+ \ \"2603:1040:407::300/123\",\r\n \"2603:1040:407::360/123\",\r\n
+ \ \"2603:1040:407::500/121\",\r\n \"2603:1040:407:1::280/122\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606::780/121\",\r\n
+ \ \"2603:1040:606:1::280/123\",\r\n \"2603:1040:606:1::300/121\",\r\n
+ \ \"2603:1040:606:402::500/121\",\r\n \"2603:1040:806::780/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\",\r\n
+ \ \"2603:1040:b00:2::b/128\",\r\n \"2603:1040:b04::780/121\",\r\n
+ \ \"2603:1040:b04:1::280/123\",\r\n \"2603:1040:b04:1::300/121\",\r\n
+ \ \"2603:1040:b04:402::500/121\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04::280/122\",\r\n
+ \ \"2603:1040:d04:1::380/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::160/123\",\r\n
+ \ \"2603:1040:1104:1::180/122\",\r\n \"2603:1040:1104:1::1c0/123\",\r\n
+ \ \"2603:1040:1104:1::580/121\",\r\n \"2603:1040:1104:400::460/123\",\r\n
+ \ \"2603:1050:6::60/123\",\r\n \"2603:1050:6::1c0/122\",\r\n
+ \ \"2603:1050:6::300/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:1::280/122\",\r\n
+ \ \"2603:1050:6:402::580/121\",\r\n \"2603:1050:6:c02::2a0/123\",\r\n
+ \ \"2603:1050:403::280/122\",\r\n \"2603:1050:403:1::80/121\",\r\n
+ \ \"2603:1050:403:1::240/123\",\r\n \"2603:1050:403:1::300/121\",\r\n
+ \ \"2603:1050:403:400::580/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\",\r\n \"2a01:111:f100:4002::9d37:c0bd/128\",\r\n
+ \ \"2a01:111:f100:6000::4134:a6cf/128\",\r\n \"2a01:111:f100:7000::6fdd:5343/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:91e4/128\",\r\n \"2a01:111:f100:9001::1761:958a/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:9696/128\",\r\n \"2a01:111:f100:a001::4134:e463/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureMonitor\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.53.0.128/27\",\r\n \"20.53.48.64/27\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.200/29\",\r\n \"20.36.114.208/28\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.193.96.32/27\",\r\n \"2603:1010:404::780/121\",\r\n
+ \ \"2603:1010:404:1::280/123\",\r\n \"2603:1010:404:1::300/121\",\r\n
+ \ \"2603:1010:404:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaEast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.232/29\",\r\n
+ \ \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n \"13.70.124.27/32\",\r\n
+ \ \"13.70.127.61/32\",\r\n \"13.75.195.15/32\",\r\n \"20.37.192.68/31\",\r\n
+ \ \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n \"20.37.198.140/32\",\r\n
+ \ \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n \"20.40.124.0/32\",\r\n
+ \ \"20.43.98.234/32\",\r\n \"20.43.99.158/32\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.126.246.183/32\",\r\n
+ \ \"52.156.168.82/32\",\r\n \"2603:1010:6::60/123\",\r\n
+ \ \"2603:1010:6::1c0/122\",\r\n \"2603:1010:6::300/123\",\r\n
+ \ \"2603:1010:6::500/121\",\r\n \"2603:1010:6:1::280/122\",\r\n
+ \ \"2603:1010:6:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"20.40.160.120/32\",\r\n
+ \ \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n \"20.42.230.224/29\",\r\n
+ \ \"20.42.230.232/31\",\r\n \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n
+ \ \"23.101.239.238/32\",\r\n \"40.81.58.225/32\",\r\n \"40.127.75.125/32\",\r\n
+ \ \"40.127.84.197/32\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.BrazilSouth\",\r\n
+ \ \"id\": \"AzureMonitor.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.61.169/32\",\r\n \"191.232.33.83/32\",\r\n
+ \ \"191.232.161.75/32\",\r\n \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.239.251.90/32\",\r\n \"2603:1050:6::60/123\",\r\n
+ \ \"2603:1050:6::1c0/122\",\r\n \"2603:1050:6::300/123\",\r\n
+ \ \"2603:1050:6::360/123\",\r\n \"2603:1050:6::500/121\",\r\n
+ \ \"2603:1050:6:1::280/122\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaCentral\",\r\n \"id\":
+ \"AzureMonitor.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.88.230.43/32\",\r\n
+ \ \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n \"20.38.146.152/29\",\r\n
+ \ \"20.38.147.144/29\",\r\n \"20.48.193.224/27\",\r\n \"40.85.201.168/32\",\r\n
+ \ \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n \"52.138.31.112/32\",\r\n
+ \ \"52.138.31.127/32\",\r\n \"52.139.8.32/32\",\r\n \"52.228.80.68/31\",\r\n
+ \ \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n \"52.228.86.152/29\",\r\n
+ \ \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.246.154.152/29\",\r\n \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaEast\",\r\n \"id\": \"AzureMonitor.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.86.201.128/32\",\r\n \"52.139.106.160/27\",\r\n
+ \ \"2603:1030:1005::780/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralIndia\",\r\n
+ \ \"id\": \"AzureMonitor.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"40.80.50.152/29\",\r\n \"40.80.51.80/29\",\r\n \"52.140.104.68/31\",\r\n
+ \ \"52.140.108.96/28\",\r\n \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n
+ \ \"52.140.108.240/31\",\r\n \"52.172.209.125/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.89.42.127/32\",\r\n
+ \ \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n \"20.40.206.128/28\",\r\n
+ \ \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n
+ \ \"40.77.24.27/32\",\r\n \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n
+ \ \"52.165.38.20/32\",\r\n \"52.165.150.242/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.182.138.216/29\",\r\n
+ \ \"52.182.139.48/29\",\r\n \"52.230.224.237/32\",\r\n \"52.242.230.209/32\",\r\n
+ \ \"104.208.33.155/32\",\r\n \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"2603:1030:7:5::e/128\",\r\n
+ \ \"2603:1030:7:5::17/128\",\r\n \"2603:1030:7:5::29/128\",\r\n
+ \ \"2603:1030:7:5::32/128\",\r\n \"2603:1030:7:6::10/128\",\r\n
+ \ \"2603:1030:7:6::14/128\",\r\n \"2603:1030:7:6::1b/128\",\r\n
+ \ \"2603:1030:7:6::37/128\",\r\n \"2603:1030:7:6::3f/128\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CentralUSEUAP\",\r\n \"id\":
+ \"AzureMonitor.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.46.10.224/27\",\r\n
+ \ \"20.46.12.196/30\",\r\n \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n
+ \ \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n \"52.180.160.132/32\",\r\n
+ \ \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n \"52.180.182.209/32\",\r\n
+ \ \"168.61.142.0/27\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.Core\",\r\n
+ \ \"id\": \"AzureMonitor.Core\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.109.224/27\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.79.96/27\",\r\n \"13.71.177.32/27\",\r\n \"13.86.223.128/26\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n \"20.38.132.64/27\",\r\n
+ \ \"20.38.143.0/27\",\r\n \"20.38.152.32/27\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.41.208.32/27\",\r\n \"20.42.65.128/25\",\r\n \"20.44.11.192/26\",\r\n
+ \ \"20.46.10.224/27\",\r\n \"20.48.193.224/27\",\r\n \"20.49.84.32/27\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n
+ \ \"20.52.64.32/27\",\r\n \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n
+ \ \"20.53.46.64/27\",\r\n \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n
+ \ \"20.61.99.64/27\",\r\n \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.72.21.32/27\",\r\n \"20.72.28.192/27\",\r\n
+ \ \"20.150.182.32/27\",\r\n \"20.150.241.96/27\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.225.128/27\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"20.192.167.160/27\",\r\n \"20.193.96.32/27\",\r\n \"20.193.204.64/27\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"40.67.52.224/27\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.74.150.32/27\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.80.180.160/27\",\r\n \"40.120.8.192/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.12.46.0/27\",\r\n \"51.12.102.192/27\",\r\n
+ \ \"51.12.195.224/27\",\r\n \"51.12.205.96/27\",\r\n \"51.12.237.32/27\",\r\n
+ \ \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n \"51.105.70.128/27\",\r\n
+ \ \"51.107.128.96/27\",\r\n \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n
+ \ \"51.107.250.0/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.120.213.64/27\",\r\n \"51.120.232.160/27\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.139.106.160/27\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"168.61.142.0/27\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.237.224.192/27\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104:2::/123\",\r\n \"2603:1000:104:2::80/121\",\r\n
+ \ \"2603:1000:104:402::500/121\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:402::500/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304:1::280/123\",\r\n \"2603:1010:304:1::300/121\",\r\n
+ \ \"2603:1010:304:402::500/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:402::500/121\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:402::500/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:402::500/121\",\r\n \"2603:1020:d04:1::280/123\",\r\n
+ \ \"2603:1020:d04:1::300/121\",\r\n \"2603:1020:d04:402::500/121\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:402::500/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::4c0/123\",\r\n
+ \ \"2603:1020:1104:1::500/121\",\r\n \"2603:1020:1104:400::440/123\",\r\n
+ \ \"2603:1020:1104:400::480/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::360/123\",\r\n \"2603:1030:10::500/121\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::360/123\",\r\n
+ \ \"2603:1030:104::500/121\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::200/123\",\r\n \"2603:1030:107:1::280/121\",\r\n
+ \ \"2603:1030:107:400::3c0/123\",\r\n \"2603:1030:107:400::480/121\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2603:1030:302:402::80/123\",\r\n
+ \ \"2603:1030:302:402::100/121\",\r\n \"2603:1030:40b:2::240/123\",\r\n
+ \ \"2603:1030:40b:2::300/121\",\r\n \"2603:1030:40b:400::d00/121\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:402::500/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:c02::100/123\",\r\n
+ \ \"2603:1030:504:c02::180/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07:1::280/123\",\r\n
+ \ \"2603:1030:a07:1::300/121\",\r\n \"2603:1030:a07:402::380/121\",\r\n
+ \ \"2603:1030:b04:1::280/123\",\r\n \"2603:1030:b04:1::300/121\",\r\n
+ \ \"2603:1030:b04:402::500/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:f05::360/123\",\r\n \"2603:1030:f05::500/121\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:402::500/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:402::500/121\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:402::500/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::360/123\",\r\n \"2603:1040:f05::500/121\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::580/121\",\r\n
+ \ \"2603:1040:1104:400::460/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\",\r\n \"2603:1050:403:1::240/123\",\r\n
+ \ \"2603:1050:403:1::300/121\",\r\n \"2603:1050:403:400::580/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastAsia\",\r\n
+ \ \"id\": \"AzureMonitor.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.75.38.0/28\",\r\n
+ \ \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n \"13.75.117.221/32\",\r\n
+ \ \"13.75.119.169/32\",\r\n \"13.94.39.13/32\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.109.144/28\",\r\n \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n
+ \ \"20.189.111.24/31\",\r\n \"23.97.65.103/32\",\r\n \"23.100.90.7/32\",\r\n
+ \ \"23.100.94.221/32\",\r\n \"23.101.0.142/32\",\r\n \"23.101.9.4/32\",\r\n
+ \ \"23.101.13.65/32\",\r\n \"52.229.218.221/32\",\r\n \"52.229.225.6/32\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"2603:1040:207::780/121\",\r\n
+ \ \"2603:1040:207:1::280/123\",\r\n \"2603:1040:207:1::300/121\",\r\n
+ \ \"2603:1040:207:402::500/121\",\r\n \"2a01:111:f100:6000::4134:a6cf/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.82.100.176/32\",\r\n
+ \ \"13.82.184.151/32\",\r\n \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n
+ \ \"13.90.249.229/32\",\r\n \"13.90.251.123/32\",\r\n \"13.92.40.198/32\",\r\n
+ \ \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n \"13.92.179.52/32\",\r\n
+ \ \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n \"13.92.254.218/32\",\r\n
+ \ \"13.92.255.146/32\",\r\n \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n
+ \ \"20.42.73.128/25\",\r\n \"20.49.109.46/31\",\r\n \"20.49.109.80/28\",\r\n
+ \ \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n \"20.62.132.0/25\",\r\n
+ \ \"23.96.28.38/32\",\r\n \"40.71.12.224/28\",\r\n \"40.71.12.240/30\",\r\n
+ \ \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n \"40.71.14.112/30\",\r\n
+ \ \"40.71.183.225/32\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.79.154.80/29\",\r\n
+ \ \"40.79.156.32/29\",\r\n \"40.85.180.90/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.112.49.101/32\",\r\n \"40.117.80.207/32\",\r\n \"40.117.95.162/32\",\r\n
+ \ \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n \"40.117.197.224/32\",\r\n
+ \ \"40.121.57.2/32\",\r\n \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n
+ \ \"40.121.163.228/32\",\r\n \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n
+ \ \"52.150.36.187/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n \"52.224.162.220/32\",\r\n
+ \ \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n \"104.41.152.101/32\",\r\n
+ \ \"104.41.157.59/32\",\r\n \"104.45.136.42/32\",\r\n \"168.62.169.17/32\",\r\n
+ \ \"2603:1030:210::60/123\",\r\n \"2603:1030:210::1c0/122\",\r\n
+ \ \"2603:1030:210::300/123\",\r\n \"2603:1030:210::360/123\",\r\n
+ \ \"2603:1030:210::500/121\",\r\n \"2603:1030:210:1::280/122\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2\",\r\n \"id\":
+ \"AzureMonitor.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.68.31.237/32\",\r\n
+ \ \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n \"13.68.109.212/32\",\r\n
+ \ \"13.68.111.247/32\",\r\n \"20.41.49.208/32\",\r\n \"20.44.16.0/29\",\r\n
+ \ \"20.44.17.0/29\",\r\n \"20.44.73.196/32\",\r\n \"20.49.99.44/31\",\r\n
+ \ \"20.49.99.64/28\",\r\n \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n
+ \ \"40.70.23.205/32\",\r\n \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n
+ \ \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n \"52.167.221.184/32\",\r\n
+ \ \"52.177.223.60/32\",\r\n \"52.179.192.178/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"104.46.123.164/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"137.116.82.175/32\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.51.17.64/27\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.75.34.40/29\",\r\n \"40.75.35.64/29\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceCentral\",\r\n \"id\":
+ \"AzureMonitor.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.40.137.91/32\",\r\n
+ \ \"20.40.140.212/32\",\r\n \"20.43.40.68/31\",\r\n \"20.43.41.178/31\",\r\n
+ \ \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n \"20.43.44.224/28\",\r\n
+ \ \"20.188.36.28/32\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.89.153.171/32\",\r\n \"40.89.189.61/32\",\r\n
+ \ \"2603:1020:805::60/123\",\r\n \"2603:1020:805::1c0/122\",\r\n
+ \ \"2603:1020:805::300/123\",\r\n \"2603:1020:805::360/123\",\r\n
+ \ \"2603:1020:805::500/121\",\r\n \"2603:1020:805:1::280/122\",\r\n
+ \ \"2603:1020:805:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceSouth\",\r\n \"id\": \"AzureMonitor.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.8/29\",\r\n \"40.79.179.16/28\",\r\n \"2603:1020:905::780/121\",\r\n
+ \ \"2603:1020:905:1::280/123\",\r\n \"2603:1020:905:1::300/121\",\r\n
+ \ \"2603:1020:905:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyNorth\",\r\n \"id\": \"AzureMonitor.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.64/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyWestCentral\",\r\n \"id\":
+ \"AzureMonitor.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.32/27\",\r\n
+ \ \"51.116.149.0/27\",\r\n \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n
+ \ \"51.116.245.96/28\",\r\n \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n
+ \ \"2603:1020:c01:2::b/128\",\r\n \"2603:1020:c01:2::e/128\",\r\n
+ \ \"2603:1020:c04::60/123\",\r\n \"2603:1020:c04::1c0/122\",\r\n
+ \ \"2603:1020:c04::300/123\",\r\n \"2603:1020:c04::360/123\",\r\n
+ \ \"2603:1020:c04::500/121\",\r\n \"2603:1020:c04:1::280/122\",\r\n
+ \ \"2603:1020:c04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.JapanEast\",\r\n \"id\": \"AzureMonitor.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.26.213/32\",\r\n \"13.78.10.58/32\",\r\n \"13.78.13.189/32\",\r\n
+ \ \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n \"13.78.109.112/29\",\r\n
+ \ \"13.78.111.192/32\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.191.165.64/27\",\r\n
+ \ \"23.102.66.132/32\",\r\n \"23.102.77.48/32\",\r\n \"40.79.187.8/29\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n
+ \ \"52.155.118.97/32\",\r\n \"52.156.40.142/32\",\r\n \"52.185.132.101/32\",\r\n
+ \ \"52.185.132.170/32\",\r\n \"138.91.9.98/32\",\r\n \"2603:1040:407::60/123\",\r\n
+ \ \"2603:1040:407::1c0/122\",\r\n \"2603:1040:407::300/123\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:1::280/122\",\r\n \"2603:1040:407:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.JapanWest\",\r\n
+ \ \"id\": \"AzureMonitor.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.189.225.128/27\",\r\n
+ \ \"40.74.101.32/28\",\r\n \"40.74.101.200/29\",\r\n \"40.80.180.160/27\",\r\n
+ \ \"2603:1040:606::780/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.KoreaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.68/31\",\r\n \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n
+ \ \"20.41.69.16/28\",\r\n \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n
+ \ \"20.44.26.152/29\",\r\n \"20.44.26.248/29\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"52.141.22.149/32\",\r\n
+ \ \"52.141.22.239/32\",\r\n \"52.231.18.240/28\",\r\n \"52.231.28.204/32\",\r\n
+ \ \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n \"52.231.67.208/32\",\r\n
+ \ \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n \"52.231.111.52/32\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.KoreaSouth\",\r\n \"id\": \"AzureMonitor.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n
+ \ \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n
+ \ \"20.49.114.48/31\",\r\n \"20.135.13.192/26\",\r\n \"23.96.245.125/32\",\r\n
+ \ \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n \"23.100.228.32/32\",\r\n
+ \ \"40.80.191.224/28\",\r\n \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n
+ \ \"52.162.110.168/29\",\r\n \"52.162.214.75/32\",\r\n \"52.237.157.70/32\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"2603:1030:608::780/121\",\r\n
+ \ \"2603:1030:608:1::280/123\",\r\n \"2603:1030:608:1::300/121\",\r\n
+ \ \"2603:1030:608:402::500/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorthEurope\",\r\n \"id\":
+ \"AzureMonitor.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n \"20.38.80.68/31\",\r\n
+ \ \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n \"20.50.68.120/30\",\r\n
+ \ \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n \"23.102.44.211/32\",\r\n
+ \ \"23.102.45.216/32\",\r\n \"40.69.81.159/32\",\r\n \"40.69.194.158/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.127.144.141/32\",\r\n
+ \ \"52.138.222.110/32\",\r\n \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n
+ \ \"52.146.133.32/27\",\r\n \"52.155.162.238/32\",\r\n \"52.164.120.183/32\",\r\n
+ \ \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n \"52.169.4.236/32\",\r\n
+ \ \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n \"52.169.64.244/32\",\r\n
+ \ \"104.41.224.134/32\",\r\n \"137.116.226.81/32\",\r\n \"2603:1020:5::60/123\",\r\n
+ \ \"2603:1020:5::1c0/122\",\r\n \"2603:1020:5::300/123\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:1::280/122\",\r\n \"2603:1020:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:a001::4134:e463/128\",\r\n \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorwayEast\",\r\n \"id\":
+ \"AzureMonitor.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.232.34/31\",\r\n
+ \ \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n \"51.120.235.240/28\",\r\n
+ \ \"2603:1020:e04::60/123\",\r\n \"2603:1020:e04::1c0/122\",\r\n
+ \ \"2603:1020:e04::300/123\",\r\n \"2603:1020:e04::360/123\",\r\n
+ \ \"2603:1020:e04::500/121\",\r\n \"2603:1020:e04:1::280/122\",\r\n
+ \ \"2603:1020:e04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.NorwayWest\",\r\n \"id\": \"AzureMonitor.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n
+ \ \"51.120.219.208/28\",\r\n \"2603:1020:f04::780/121\",\r\n
+ \ \"2603:1020:f04:1::280/123\",\r\n \"2603:1020:f04:1::300/121\",\r\n
+ \ \"2603:1020:f04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureMonitor.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"102.133.122.152/29\",\r\n
+ \ \"102.133.123.240/29\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n \"102.133.162.233/32\",\r\n
+ \ \"102.133.216.68/31\",\r\n \"102.133.216.106/31\",\r\n
+ \ \"102.133.218.144/28\",\r\n \"102.133.218.244/30\",\r\n
+ \ \"102.133.219.128/28\",\r\n \"102.133.221.160/27\",\r\n
+ \ \"102.133.250.152/29\",\r\n \"102.133.251.80/29\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureMonitor.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n
+ \ \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n \"2603:1000:4::780/121\",\r\n
+ \ \"2603:1000:4:1::280/123\",\r\n \"2603:1000:4:1::300/121\",\r\n
+ \ \"2603:1000:4:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthCentralUS\",\r\n \"id\":
+ \"AzureMonitor.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.65.96.175/32\",\r\n
+ \ \"13.65.206.67/32\",\r\n \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n
+ \ \"13.66.37.172/32\",\r\n \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n
+ \ \"13.84.149.186/32\",\r\n \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n
+ \ \"13.84.225.10/32\",\r\n \"13.85.70.142/32\",\r\n \"20.45.122.152/29\",\r\n
+ \ \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n \"20.45.125.224/28\",\r\n
+ \ \"20.49.91.32/28\",\r\n \"20.49.93.192/26\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.102.181.197/32\",\r\n \"40.74.249.98/32\",\r\n
+ \ \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n \"40.84.189.107/32\",\r\n
+ \ \"40.84.192.116/32\",\r\n \"40.119.4.128/32\",\r\n \"40.119.8.72/31\",\r\n
+ \ \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"104.44.140.84/32\",\r\n \"104.214.70.219/32\",\r\n \"104.214.104.109/32\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"157.55.177.6/32\",\r\n \"2603:1030:800:5::bfee:a418/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a429/128\",\r\n \"2603:1030:800:5::bfee:a42a/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a435/128\",\r\n \"2603:1030:807::60/123\",\r\n
+ \ \"2603:1030:807::1c0/122\",\r\n \"2603:1030:807::300/123\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:1::280/122\",\r\n \"2603:1030:807:402::500/121\",\r\n
+ \ \"2a01:111:f100:4002::9d37:c0bd/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SoutheastAsia\",\r\n \"id\":
+ \"AzureMonitor.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.67.9.192/28\",\r\n
+ \ \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n \"13.67.15.0/32\",\r\n
+ \ \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n \"13.76.85.243/32\",\r\n
+ \ \"13.76.87.86/32\",\r\n \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n
+ \ \"20.44.192.217/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"40.78.234.56/29\",\r\n \"40.78.234.144/28\",\r\n \"52.163.94.131/32\",\r\n
+ \ \"52.163.122.20/32\",\r\n \"111.221.88.173/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"138.91.32.98/32\",\r\n \"138.91.37.93/32\",\r\n
+ \ \"168.63.174.169/32\",\r\n \"168.63.242.221/32\",\r\n \"207.46.224.101/32\",\r\n
+ \ \"207.46.236.191/32\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:7000::6fdd:5343/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SouthIndia\",\r\n \"id\":
+ \"AzureMonitor.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.41.208.32/27\",\r\n
+ \ \"40.78.195.16/28\",\r\n \"40.78.196.48/29\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureMonitor.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.242.0/27\",\r\n \"2603:1020:a04::60/123\",\r\n
+ \ \"2603:1020:a04::1c0/122\",\r\n \"2603:1020:a04::300/123\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:1::280/122\",\r\n \"2603:1020:a04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureMonitor.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n
+ \ \"51.107.148.0/28\",\r\n \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n
+ \ \"51.107.156.48/29\",\r\n \"51.107.192.160/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"2603:1020:b04::780/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAECentral\",\r\n
+ \ \"id\": \"AzureMonitor.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.71.0/27\",\r\n \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"2603:1040:b00:2::b/128\",\r\n
+ \ \"2603:1040:b04::780/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAENorth\",\r\n
+ \ \"id\": \"AzureMonitor.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.0/27\",\r\n
+ \ \"20.38.143.44/30\",\r\n \"20.38.152.32/27\",\r\n \"40.120.75.32/28\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.UKSouth\",\r\n \"id\": \"AzureMonitor.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.140.6.23/32\",\r\n \"51.140.54.208/32\",\r\n
+ \ \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n \"51.140.148.48/28\",\r\n
+ \ \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n \"51.140.163.207/32\",\r\n
+ \ \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n \"51.143.165.22/32\",\r\n
+ \ \"51.143.209.96/27\",\r\n \"51.145.44.242/32\",\r\n \"2603:1020:705::60/123\",\r\n
+ \ \"2603:1020:705::1c0/122\",\r\n \"2603:1020:705::300/123\",\r\n
+ \ \"2603:1020:705::360/123\",\r\n \"2603:1020:705::500/121\",\r\n
+ \ \"2603:1020:705:1::280/122\",\r\n \"2603:1020:705:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UKWest\",\r\n
+ \ \"id\": \"AzureMonitor.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.58.66.96/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.211.160/28\",\r\n
+ \ \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n \"2603:1020:605::780/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.WestCentralUS\",\r\n \"id\":
+ \"AzureMonitor.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n
+ \ \"52.150.154.24/29\",\r\n \"52.150.154.32/28\",\r\n \"52.161.8.76/32\",\r\n
+ \ \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestEurope\",\r\n
+ \ \"id\": \"AzureMonitor.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.51.175/32\",\r\n \"13.69.51.218/32\",\r\n
+ \ \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n \"13.69.67.60/30\",\r\n
+ \ \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n \"13.69.106.208/28\",\r\n
+ \ \"13.69.109.224/27\",\r\n \"13.80.134.255/32\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"23.101.69.223/32\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.74.24.68/31\",\r\n \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"51.105.248.23/32\",\r\n \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.232.35.33/32\",\r\n
+ \ \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n \"52.236.186.88/29\",\r\n
+ \ \"52.236.186.208/28\",\r\n \"104.40.222.36/32\",\r\n \"137.117.144.33/32\",\r\n
+ \ \"2603:1020:206::60/123\",\r\n \"2603:1020:206::1c0/122\",\r\n
+ \ \"2603:1020:206::300/123\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:1::280/122\",\r\n
+ \ \"2603:1020:206:402::500/121\",\r\n \"2a01:111:f100:9001::1761:91e4/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:958a/128\",\r\n \"2a01:111:f100:9001::1761:9696/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestIndia\",\r\n
+ \ \"id\": \"AzureMonitor.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"52.136.53.96/27\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"2603:1040:806::780/121\",\r\n \"2603:1040:806:1::280/123\",\r\n
+ \ \"2603:1040:806:1::300/121\",\r\n \"2603:1040:806:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestUS\",\r\n
+ \ \"id\": \"AzureMonitor.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.224/28\",\r\n
+ \ \"13.86.218.248/29\",\r\n \"13.86.223.128/26\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"20.49.120.64/28\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.189.172.0/25\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.118.129.58/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.122.208/32\",\r\n \"104.42.40.28/32\",\r\n \"104.45.230.69/32\",\r\n
+ \ \"104.45.232.72/32\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.WestUS2\",\r\n \"id\":
+ \"AzureMonitor.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.77.150.166/32\",\r\n \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.51.9.0/26\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"40.64.132.128/28\",\r\n \"40.64.132.240/28\",\r\n
+ \ \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n \"40.64.134.138/32\",\r\n
+ \ \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n \"40.78.253.192/26\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"52.151.11.176/32\",\r\n \"52.175.198.74/32\",\r\n
+ \ \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n \"52.183.41.109/32\",\r\n
+ \ \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n \"52.183.95.86/32\",\r\n
+ \ \"52.183.127.155/32\",\r\n \"52.191.170.253/32\",\r\n \"52.229.25.130/32\",\r\n
+ \ \"52.229.37.75/32\",\r\n \"52.247.202.90/32\",\r\n \"2603:1030:c02:2::4e1/128\",\r\n
+ \ \"2603:1030:c06:1::280/122\",\r\n \"2603:1030:c06:2::80/121\",\r\n
+ \ \"2603:1030:c06:2::240/123\",\r\n \"2603:1030:c06:2::300/121\",\r\n
+ \ \"2603:1030:c06:400::d00/121\",\r\n \"2603:1030:d00::1d/128\",\r\n
+ \ \"2603:1030:d00::48/128\",\r\n \"2603:1030:d00::5a/128\",\r\n
+ \ \"2603:1030:d00::82/128\",\r\n \"2603:1030:d00::84/128\",\r\n
+ \ \"2603:1030:d00::9a/128\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets\",\r\n \"id\": \"AzureOpenDatasets\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.32/28\",\r\n \"20.36.120.192/28\",\r\n
+ \ \"20.37.64.192/28\",\r\n \"20.37.156.224/28\",\r\n \"20.37.195.32/28\",\r\n
+ \ \"20.37.224.192/28\",\r\n \"20.38.84.112/28\",\r\n \"20.38.136.192/28\",\r\n
+ \ \"20.39.11.32/28\",\r\n \"20.41.4.192/28\",\r\n \"20.41.65.160/28\",\r\n
+ \ \"20.41.193.128/28\",\r\n \"20.42.4.224/28\",\r\n \"20.42.131.0/28\",\r\n
+ \ \"20.42.227.0/28\",\r\n \"20.43.41.160/28\",\r\n \"20.43.65.160/28\",\r\n
+ \ \"20.43.130.112/28\",\r\n \"20.45.112.192/28\",\r\n \"20.45.192.192/28\",\r\n
+ \ \"20.150.160.192/28\",\r\n \"20.189.106.208/28\",\r\n \"20.192.225.128/28\",\r\n
+ \ \"40.67.48.192/28\",\r\n \"40.74.30.112/28\",\r\n \"40.80.57.128/28\",\r\n
+ \ \"40.80.169.128/28\",\r\n \"40.80.188.32/28\",\r\n \"40.82.253.80/28\",\r\n
+ \ \"40.89.17.128/28\",\r\n \"51.12.41.32/28\",\r\n \"51.12.193.32/28\",\r\n
+ \ \"51.104.25.160/28\",\r\n \"51.105.80.192/28\",\r\n \"51.105.88.192/28\",\r\n
+ \ \"51.107.48.192/28\",\r\n \"51.107.144.192/28\",\r\n \"51.116.48.112/28\",\r\n
+ \ \"51.116.144.112/28\",\r\n \"51.120.40.192/28\",\r\n \"51.120.224.192/28\",\r\n
+ \ \"51.137.161.144/28\",\r\n \"51.143.192.192/28\",\r\n \"52.136.48.192/28\",\r\n
+ \ \"52.140.105.128/28\",\r\n \"52.150.139.80/28\",\r\n \"52.228.81.144/28\",\r\n
+ \ \"102.133.56.112/28\",\r\n \"102.133.216.112/28\",\r\n
+ \ \"191.235.225.160/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.AustraliaEast\",\r\n \"id\": \"AzureOpenDatasets.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.37.195.32/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.FranceSouth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.105.88.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.GermanyNorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.112/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAECentral\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.64.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAENorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.136.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UKWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.161.144/28\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets.WestEurope\",\r\n \"id\":
+ \"AzureOpenDatasets.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.30.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.WestUS2\",\r\n \"id\": \"AzureOpenDatasets.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.42.131.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal\",\r\n
+ \ \"id\": \"AzurePortal\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.35.35/32\",\r\n \"13.67.35.77/32\",\r\n \"13.68.130.251/32\",\r\n
+ \ \"13.68.235.98/32\",\r\n \"13.69.112.176/28\",\r\n \"13.69.126.92/32\",\r\n
+ \ \"13.71.190.228/32\",\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"13.77.1.236/32\",\r\n \"13.77.55.208/28\",\r\n
+ \ \"13.77.202.2/32\",\r\n \"13.78.49.187/32\",\r\n \"13.78.132.155/32\",\r\n
+ \ \"13.78.230.142/32\",\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"13.90.156.71/32\",\r\n \"13.92.138.76/32\",\r\n \"20.36.121.128/27\",\r\n
+ \ \"20.36.122.56/30\",\r\n \"20.36.125.104/29\",\r\n \"20.37.65.128/27\",\r\n
+ \ \"20.37.66.56/30\",\r\n \"20.37.70.96/29\",\r\n \"20.37.195.224/27\",\r\n
+ \ \"20.37.196.252/30\",\r\n \"20.37.198.64/27\",\r\n \"20.37.225.128/27\",\r\n
+ \ \"20.37.226.56/30\",\r\n \"20.37.229.152/29\",\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.38.137.160/27\",\r\n \"20.38.138.60/30\",\r\n
+ \ \"20.38.142.88/29\",\r\n \"20.38.149.208/28\",\r\n \"20.39.12.32/27\",\r\n
+ \ \"20.39.12.232/30\",\r\n \"20.40.200.0/27\",\r\n \"20.40.200.160/30\",\r\n
+ \ \"20.40.224.226/31\",\r\n \"20.40.225.32/29\",\r\n \"20.41.5.192/27\",\r\n
+ \ \"20.41.65.224/27\",\r\n \"20.41.67.88/30\",\r\n \"20.41.193.224/27\",\r\n
+ \ \"20.41.197.16/30\",\r\n \"20.42.6.192/27\",\r\n \"20.42.227.192/27\",\r\n
+ \ \"20.42.228.220/30\",\r\n \"20.42.228.224/27\",\r\n \"20.42.230.80/28\",\r\n
+ \ \"20.43.42.64/27\",\r\n \"20.43.43.164/30\",\r\n \"20.43.46.248/29\",\r\n
+ \ \"20.43.66.64/27\",\r\n \"20.43.67.92/30\",\r\n \"20.43.67.96/27\",\r\n
+ \ \"20.43.70.64/28\",\r\n \"20.43.123.160/28\",\r\n \"20.43.132.32/27\",\r\n
+ \ \"20.44.19.32/28\",\r\n \"20.45.112.124/30\",\r\n \"20.45.113.128/27\",\r\n
+ \ \"20.45.116.64/29\",\r\n \"20.45.125.240/28\",\r\n \"20.45.195.160/27\",\r\n
+ \ \"20.45.197.192/27\",\r\n \"20.45.197.228/30\",\r\n \"20.46.10.40/29\",\r\n
+ \ \"20.48.193.48/29\",\r\n \"20.49.99.16/28\",\r\n \"20.49.99.32/30\",\r\n
+ \ \"20.49.103.96/29\",\r\n \"20.49.109.36/30\",\r\n \"20.49.109.44/31\",\r\n
+ \ \"20.49.109.48/28\",\r\n \"20.49.115.184/29\",\r\n \"20.49.120.0/27\",\r\n
+ \ \"20.49.120.36/30\",\r\n \"20.49.126.156/30\",\r\n \"20.49.127.224/28\",\r\n
+ \ \"20.50.1.32/27\",\r\n \"20.50.1.160/27\",\r\n \"20.50.1.200/30\",\r\n
+ \ \"20.50.1.208/28\",\r\n \"20.50.65.72/30\",\r\n \"20.51.16.120/29\",\r\n
+ \ \"20.53.44.4/30\",\r\n \"20.53.44.64/29\",\r\n \"20.61.98.128/29\",\r\n
+ \ \"20.62.128.240/29\",\r\n \"20.72.20.96/27\",\r\n \"20.150.161.192/27\",\r\n
+ \ \"20.150.165.144/30\",\r\n \"20.150.166.160/29\",\r\n \"20.187.197.0/29\",\r\n
+ \ \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n \"20.189.109.160/27\",\r\n
+ \ \"20.189.224.208/29\",\r\n \"20.191.161.80/29\",\r\n \"20.192.161.192/27\",\r\n
+ \ \"20.192.164.180/30\",\r\n \"20.192.166.160/29\",\r\n \"20.192.228.128/27\",\r\n
+ \ \"20.192.230.0/30\",\r\n \"20.192.230.112/29\",\r\n \"20.194.72.56/29\",\r\n
+ \ \"23.98.104.80/28\",\r\n \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n
+ \ \"23.98.108.44/31\",\r\n \"23.98.108.168/29\",\r\n \"23.102.65.134/32\",\r\n
+ \ \"40.64.128.128/27\",\r\n \"40.64.132.88/30\",\r\n \"40.64.132.96/28\",\r\n
+ \ \"40.64.135.88/29\",\r\n \"40.65.114.234/32\",\r\n \"40.67.48.124/30\",\r\n
+ \ \"40.67.49.128/27\",\r\n \"40.67.50.192/27\",\r\n \"40.67.52.88/29\",\r\n
+ \ \"40.67.121.128/28\",\r\n \"40.71.15.144/28\",\r\n \"40.78.239.48/28\",\r\n
+ \ \"40.78.245.208/28\",\r\n \"40.79.189.96/28\",\r\n \"40.80.58.128/27\",\r\n
+ \ \"40.80.59.28/30\",\r\n \"40.80.59.32/27\",\r\n \"40.80.169.224/27\",\r\n
+ \ \"40.80.172.16/30\",\r\n \"40.80.173.192/29\",\r\n \"40.80.190.160/27\",\r\n
+ \ \"40.80.191.200/30\",\r\n \"40.82.253.224/27\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.89.18.160/27\",\r\n \"40.89.20.132/30\",\r\n
+ \ \"40.89.23.232/29\",\r\n \"40.113.117.57/32\",\r\n \"40.114.78.132/32\",\r\n
+ \ \"40.114.236.251/32\",\r\n \"40.117.86.243/32\",\r\n \"40.117.237.78/32\",\r\n
+ \ \"40.119.9.236/30\",\r\n \"51.12.41.20/30\",\r\n \"51.12.41.160/27\",\r\n
+ \ \"51.12.43.128/29\",\r\n \"51.12.193.20/30\",\r\n \"51.12.193.160/27\",\r\n
+ \ \"51.12.194.104/29\",\r\n \"51.13.136.8/29\",\r\n \"51.104.27.96/27\",\r\n
+ \ \"51.104.28.220/30\",\r\n \"51.104.28.224/28\",\r\n \"51.105.80.124/30\",\r\n
+ \ \"51.105.81.128/27\",\r\n \"51.105.89.160/27\",\r\n \"51.105.90.152/30\",\r\n
+ \ \"51.107.49.160/27\",\r\n \"51.107.50.60/30\",\r\n \"51.107.53.240/29\",\r\n
+ \ \"51.107.145.128/27\",\r\n \"51.107.146.56/30\",\r\n \"51.107.149.248/29\",\r\n
+ \ \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n \"51.116.51.160/29\",\r\n
+ \ \"51.116.144.192/27\",\r\n \"51.116.145.140/30\",\r\n \"51.116.148.104/29\",\r\n
+ \ \"51.120.41.160/27\",\r\n \"51.120.42.60/30\",\r\n \"51.120.225.128/27\",\r\n
+ \ \"51.120.226.56/30\",\r\n \"51.120.232.16/29\",\r\n \"51.137.162.160/27\",\r\n
+ \ \"51.137.164.80/30\",\r\n \"51.137.167.152/29\",\r\n \"51.140.69.25/32\",\r\n
+ \ \"51.140.138.84/32\",\r\n \"51.140.149.64/28\",\r\n \"51.143.192.124/30\",\r\n
+ \ \"51.143.193.128/27\",\r\n \"51.143.208.192/29\",\r\n \"51.145.3.27/32\",\r\n
+ \ \"51.145.21.195/32\",\r\n \"52.136.49.160/27\",\r\n \"52.136.51.72/30\",\r\n
+ \ \"52.136.52.232/29\",\r\n \"52.136.184.64/29\",\r\n \"52.140.105.224/27\",\r\n
+ \ \"52.140.107.112/28\",\r\n \"52.140.108.64/30\",\r\n \"52.140.111.96/29\",\r\n
+ \ \"52.146.132.80/29\",\r\n \"52.150.139.224/27\",\r\n \"52.150.140.216/30\",\r\n
+ \ \"52.150.152.16/28\",\r\n \"52.150.152.224/27\",\r\n \"52.150.156.232/29\",\r\n
+ \ \"52.161.101.86/32\",\r\n \"52.163.207.80/32\",\r\n \"52.172.112.152/29\",\r\n
+ \ \"52.172.181.227/32\",\r\n \"52.172.190.71/32\",\r\n \"52.172.191.4/32\",\r\n
+ \ \"52.172.215.87/32\",\r\n \"52.228.24.159/32\",\r\n \"52.228.83.160/27\",\r\n
+ \ \"52.228.84.84/30\",\r\n \"52.228.84.96/28\",\r\n \"52.233.66.46/32\",\r\n
+ \ \"52.243.76.246/32\",\r\n \"102.133.56.160/27\",\r\n \"102.133.58.192/30\",\r\n
+ \ \"102.133.61.176/29\",\r\n \"102.133.217.192/27\",\r\n
+ \ \"102.133.218.56/30\",\r\n \"102.133.221.0/29\",\r\n \"104.41.216.228/32\",\r\n
+ \ \"104.42.195.92/32\",\r\n \"104.46.178.96/29\",\r\n \"104.211.89.213/32\",\r\n
+ \ \"104.211.101.116/32\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"104.215.146.128/32\",\r\n
+ \ \"137.116.247.179/32\",\r\n \"191.233.10.96/27\",\r\n \"191.233.15.0/29\",\r\n
+ \ \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n \"191.234.139.144/29\",\r\n
+ \ \"191.235.227.160/27\",\r\n \"213.199.128.226/32\",\r\n
+ \ \"2603:1000:4::700/121\",\r\n \"2603:1000:104::200/121\",\r\n
+ \ \"2603:1000:104::400/121\",\r\n \"2603:1000:104:1::680/121\",\r\n
+ \ \"2603:1010:6::100/121\",\r\n \"2603:1010:6:1::680/121\",\r\n
+ \ \"2603:1010:101::700/121\",\r\n \"2603:1010:304::700/121\",\r\n
+ \ \"2603:1010:404::700/121\",\r\n \"2603:1020:5::100/121\",\r\n
+ \ \"2603:1020:5:1::680/121\",\r\n \"2603:1020:206::100/121\",\r\n
+ \ \"2603:1020:206:1::680/121\",\r\n \"2603:1020:305::700/121\",\r\n
+ \ \"2603:1020:405::700/121\",\r\n \"2603:1020:605::700/121\",\r\n
+ \ \"2603:1020:705::100/121\",\r\n \"2603:1020:705:1::680/121\",\r\n
+ \ \"2603:1020:805::100/121\",\r\n \"2603:1020:805:1::680/121\",\r\n
+ \ \"2603:1020:905::700/121\",\r\n \"2603:1020:a04::100/121\",\r\n
+ \ \"2603:1020:a04:1::680/121\",\r\n \"2603:1020:b04::700/121\",\r\n
+ \ \"2603:1020:c04::100/121\",\r\n \"2603:1020:c04:1::680/121\",\r\n
+ \ \"2603:1020:d04::700/121\",\r\n \"2603:1020:e04::100/121\",\r\n
+ \ \"2603:1020:e04:1::680/121\",\r\n \"2603:1020:f04::700/121\",\r\n
+ \ \"2603:1020:1004::680/121\",\r\n \"2603:1020:1004:1::100/121\",\r\n
+ \ \"2603:1020:1104::780/121\",\r\n \"2603:1030:f:1::700/121\",\r\n
+ \ \"2603:1030:10::100/121\",\r\n \"2603:1030:10:1::680/121\",\r\n
+ \ \"2603:1030:104::100/121\",\r\n \"2603:1030:104:1::680/121\",\r\n
+ \ \"2603:1030:107:1::/121\",\r\n \"2603:1030:210::100/121\",\r\n
+ \ \"2603:1030:210:1::680/121\",\r\n \"2603:1030:40b:1::680/121\",\r\n
+ \ \"2603:1030:40c::100/121\",\r\n \"2603:1030:40c:1::680/121\",\r\n
+ \ \"2603:1030:504::100/121\",\r\n \"2603:1030:504:1::680/121\",\r\n
+ \ \"2603:1030:608::700/121\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\",\r\n \"2603:1030:a07::700/121\",\r\n
+ \ \"2603:1030:b04::700/121\",\r\n \"2603:1030:c06:1::680/121\",\r\n
+ \ \"2603:1030:f05::100/121\",\r\n \"2603:1030:f05:1::680/121\",\r\n
+ \ \"2603:1030:1005::700/121\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\",\r\n \"2603:1040:207::700/121\",\r\n
+ \ \"2603:1040:407::100/121\",\r\n \"2603:1040:407:1::680/121\",\r\n
+ \ \"2603:1040:606::700/121\",\r\n \"2603:1040:806::700/121\",\r\n
+ \ \"2603:1040:904::100/121\",\r\n \"2603:1040:904:1::680/121\",\r\n
+ \ \"2603:1040:a06::200/121\",\r\n \"2603:1040:a06:1::680/121\",\r\n
+ \ \"2603:1040:b04::700/121\",\r\n \"2603:1040:c06::700/121\",\r\n
+ \ \"2603:1040:d04::680/121\",\r\n \"2603:1040:d04:1::100/121\",\r\n
+ \ \"2603:1040:f05::100/121\",\r\n \"2603:1040:f05:1::680/121\",\r\n
+ \ \"2603:1040:1104::780/121\",\r\n \"2603:1050:6::100/121\",\r\n
+ \ \"2603:1050:6:1::680/121\",\r\n \"2603:1050:403::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.AustraliaCentral\",\r\n
+ \ \"id\": \"AzurePortal.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.225.128/27\",\r\n \"20.37.226.56/30\",\r\n
+ \ \"20.37.229.152/29\",\r\n \"2603:1010:304::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.BrazilSouth\",\r\n
+ \ \"id\": \"AzurePortal.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n
+ \ \"191.234.139.144/29\",\r\n \"191.235.227.160/27\",\r\n
+ \ \"2603:1050:6::100/121\",\r\n \"2603:1050:6:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastAsia\",\r\n
+ \ \"id\": \"AzurePortal.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"20.187.197.0/29\",\r\n \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n
+ \ \"20.189.109.160/27\",\r\n \"2603:1040:207::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastUS2\",\r\n
+ \ \"id\": \"AzurePortal.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.192/27\",\r\n \"20.44.19.32/28\",\r\n \"20.49.99.16/28\",\r\n
+ \ \"20.49.99.32/30\",\r\n \"20.49.103.96/29\",\r\n \"2603:1030:40c::100/121\",\r\n
+ \ \"2603:1030:40c:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.FranceSouth\",\r\n \"id\": \"AzurePortal.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.160/27\",\r\n
+ \ \"51.105.90.152/30\",\r\n \"52.136.184.64/29\",\r\n \"2603:1020:905::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.GermanyNorth\",\r\n
+ \ \"id\": \"AzurePortal.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n
+ \ \"51.116.51.160/29\",\r\n \"2603:1020:d04::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.KoreaSouth\",\r\n
+ \ \"id\": \"AzurePortal.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.169.224/27\",\r\n \"40.80.172.16/30\",\r\n
+ \ \"40.80.173.192/29\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzurePortal.NorthEurope\",\r\n \"id\": \"AzurePortal.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.50.65.72/30\",\r\n \"52.146.132.80/29\",\r\n
+ \ \"104.41.216.228/32\",\r\n \"137.116.247.179/32\",\r\n
+ \ \"2603:1020:5::100/121\",\r\n \"2603:1020:5:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.SouthCentralUS\",\r\n
+ \ \"id\": \"AzurePortal.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"20.45.125.240/28\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.119.9.236/30\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.SoutheastAsia\",\r\n \"id\": \"AzurePortal.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"13.67.35.35/32\",\r\n
+ \ \"13.67.35.77/32\",\r\n \"20.43.132.32/27\",\r\n \"23.98.104.80/28\",\r\n
+ \ \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n \"23.98.108.44/31\",\r\n
+ \ \"23.98.108.168/29\",\r\n \"40.78.239.48/28\",\r\n \"52.163.207.80/32\",\r\n
+ \ \"104.215.146.128/32\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager\",\r\n \"id\": \"AzureResourceManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.176/28\",\r\n \"13.67.18.0/23\",\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"13.69.229.224/28\",\r\n \"13.69.234.0/23\",\r\n
+ \ \"13.70.74.64/28\",\r\n \"13.70.76.0/23\",\r\n \"13.71.173.192/28\",\r\n
+ \ \"13.71.196.80/28\",\r\n \"13.71.198.0/24\",\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"13.75.39.16/28\",\r\n \"13.77.53.32/28\",\r\n
+ \ \"13.77.55.0/25\",\r\n \"13.78.109.96/28\",\r\n \"13.86.219.80/28\",\r\n
+ \ \"13.86.222.0/24\",\r\n \"13.87.57.240/28\",\r\n \"13.87.60.0/23\",\r\n
+ \ \"13.87.123.240/28\",\r\n \"13.87.126.0/24\",\r\n \"13.89.180.0/23\",\r\n
+ \ \"20.36.108.48/28\",\r\n \"20.36.110.0/23\",\r\n \"20.36.115.144/28\",\r\n
+ \ \"20.36.118.0/23\",\r\n \"20.36.126.0/23\",\r\n \"20.37.76.48/28\",\r\n
+ \ \"20.37.78.0/23\",\r\n \"20.37.230.0/23\",\r\n \"20.38.128.32/28\",\r\n
+ \ \"20.38.130.0/23\",\r\n \"20.38.150.0/23\",\r\n \"20.40.206.240/28\",\r\n
+ \ \"20.40.226.0/23\",\r\n \"20.41.70.0/23\",\r\n \"20.43.120.224/28\",\r\n
+ \ \"20.43.124.0/23\",\r\n \"20.44.3.240/28\",\r\n \"20.44.6.0/23\",\r\n
+ \ \"20.44.8.16/28\",\r\n \"20.44.16.112/28\",\r\n \"20.44.20.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"20.45.88.0/23\",\r\n \"20.45.118.0/23\",\r\n
+ \ \"20.46.8.0/23\",\r\n \"20.48.194.0/23\",\r\n \"20.49.116.0/23\",\r\n
+ \ \"20.50.68.96/28\",\r\n \"20.51.10.0/23\",\r\n \"20.51.18.0/23\",\r\n
+ \ \"20.53.42.0/23\",\r\n \"20.58.64.0/23\",\r\n \"20.61.100.0/23\",\r\n
+ \ \"20.62.56.0/23\",\r\n \"20.62.130.0/23\",\r\n \"20.65.128.0/23\",\r\n
+ \ \"20.66.0.0/23\",\r\n \"20.72.28.64/26\",\r\n \"20.88.64.64/26\",\r\n
+ \ \"20.150.225.128/26\",\r\n \"20.150.242.0/23\",\r\n \"20.187.198.0/23\",\r\n
+ \ \"20.189.168.0/24\",\r\n \"20.189.226.0/23\",\r\n \"20.191.162.0/23\",\r\n
+ \ \"20.192.32.128/26\",\r\n \"20.192.40.0/23\",\r\n \"20.192.52.0/23\",\r\n
+ \ \"20.193.196.0/23\",\r\n \"20.193.204.0/26\",\r\n \"20.195.144.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.67.54.0/23\",\r\n \"40.67.59.208/28\",\r\n
+ \ \"40.67.62.0/23\",\r\n \"40.67.120.0/24\",\r\n \"40.69.108.32/28\",\r\n
+ \ \"40.69.112.0/22\",\r\n \"40.71.13.224/28\",\r\n \"40.74.102.0/28\",\r\n
+ \ \"40.75.35.32/28\",\r\n \"40.75.38.0/23\",\r\n \"40.78.196.32/28\",\r\n
+ \ \"40.78.198.0/23\",\r\n \"40.78.203.224/28\",\r\n \"40.78.206.0/23\",\r\n
+ \ \"40.78.234.176/28\",\r\n \"40.78.254.0/23\",\r\n \"40.79.131.240/28\",\r\n
+ \ \"40.79.134.0/23\",\r\n \"40.79.158.0/23\",\r\n \"40.79.180.0/28\",\r\n
+ \ \"40.79.182.0/23\",\r\n \"40.79.198.0/23\",\r\n \"40.80.174.0/23\",\r\n
+ \ \"40.80.178.0/23\",\r\n \"40.113.178.0/28\",\r\n \"40.120.80.0/23\",\r\n
+ \ \"51.11.64.0/24\",\r\n \"51.11.96.0/24\",\r\n \"51.12.44.0/23\",\r\n
+ \ \"51.12.101.64/26\",\r\n \"51.12.196.0/23\",\r\n \"51.12.205.0/26\",\r\n
+ \ \"51.104.8.224/28\",\r\n \"51.105.78.0/23\",\r\n \"51.105.94.0/23\",\r\n
+ \ \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n \"51.107.158.0/23\",\r\n
+ \ \"51.116.52.0/23\",\r\n \"51.116.60.32/28\",\r\n \"51.116.62.0/23\",\r\n
+ \ \"51.116.150.0/23\",\r\n \"51.116.156.32/28\",\r\n \"51.116.159.0/24\",\r\n
+ \ \"51.120.46.0/23\",\r\n \"51.120.100.32/28\",\r\n \"51.120.102.0/23\",\r\n
+ \ \"51.120.220.32/28\",\r\n \"51.120.222.0/23\",\r\n \"51.120.230.0/23\",\r\n
+ \ \"51.138.208.0/23\",\r\n \"51.140.212.16/28\",\r\n \"51.140.214.0/24\",\r\n
+ \ \"51.143.210.0/23\",\r\n \"52.136.54.0/23\",\r\n \"52.138.94.0/23\",\r\n
+ \ \"52.139.104.0/23\",\r\n \"52.146.134.0/23\",\r\n \"52.147.96.0/24\",\r\n
+ \ \"52.150.158.0/23\",\r\n \"52.162.110.224/28\",\r\n \"52.172.114.0/23\",\r\n
+ \ \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n \"52.231.148.64/28\",\r\n
+ \ \"52.231.150.0/24\",\r\n \"52.240.242.0/23\",\r\n \"65.52.252.48/28\",\r\n
+ \ \"65.52.254.0/23\",\r\n \"102.133.28.16/28\",\r\n \"102.133.30.0/23\",\r\n
+ \ \"102.133.62.0/23\",\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"104.46.160.0/24\",\r\n \"104.46.161.0/25\",\r\n
+ \ \"104.46.180.0/23\",\r\n \"104.214.162.0/23\",\r\n \"168.61.138.0/23\",\r\n
+ \ \"168.61.143.192/26\",\r\n \"191.233.52.0/23\",\r\n \"191.233.205.16/28\",\r\n
+ \ \"191.234.140.0/23\",\r\n \"191.234.158.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\",\r\n \"2603:1010:6::180/122\",\r\n
+ \ \"2603:1010:6:402::280/122\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\",\r\n \"2603:1010:304::6c0/122\",\r\n
+ \ \"2603:1010:304:402::280/122\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\",\r\n \"2603:1020:5::180/122\",\r\n
+ \ \"2603:1020:5:402::280/122\",\r\n \"2603:1020:206::180/122\",\r\n
+ \ \"2603:1020:206:402::280/122\",\r\n \"2603:1020:305::6c0/122\",\r\n
+ \ \"2603:1020:305:402::280/122\",\r\n \"2603:1020:405::6c0/122\",\r\n
+ \ \"2603:1020:405:402::280/122\",\r\n \"2603:1020:605::6c0/122\",\r\n
+ \ \"2603:1020:605:402::280/122\",\r\n \"2603:1020:705::180/122\",\r\n
+ \ \"2603:1020:705:402::280/122\",\r\n \"2603:1020:805::180/122\",\r\n
+ \ \"2603:1020:805:402::280/122\",\r\n \"2603:1020:905::6c0/122\",\r\n
+ \ \"2603:1020:905:402::280/122\",\r\n \"2603:1020:a04::180/122\",\r\n
+ \ \"2603:1020:a04:402::280/122\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\",\r\n \"2603:1020:c04::180/122\",\r\n
+ \ \"2603:1020:c04:402::280/122\",\r\n \"2603:1020:d04::6c0/122\",\r\n
+ \ \"2603:1020:d04:402::280/122\",\r\n \"2603:1020:e04::180/122\",\r\n
+ \ \"2603:1020:e04:3::300/120\",\r\n \"2603:1020:e04:402::280/122\",\r\n
+ \ \"2603:1020:f04::6c0/122\",\r\n \"2603:1020:f04:402::280/122\",\r\n
+ \ \"2603:1020:1004:1::400/120\",\r\n \"2603:1020:1004:400::180/122\",\r\n
+ \ \"2603:1020:1104:1::/120\",\r\n \"2603:1020:1104:400::280/122\",\r\n
+ \ \"2603:1030:f:1::6c0/122\",\r\n \"2603:1030:f:2::700/120\",\r\n
+ \ \"2603:1030:f:400::a80/122\",\r\n \"2603:1030:10::180/122\",\r\n
+ \ \"2603:1030:10:402::280/122\",\r\n \"2603:1030:104::180/122\",\r\n
+ \ \"2603:1030:104:402::280/122\",\r\n \"2603:1030:107:1::100/120\",\r\n
+ \ \"2603:1030:107:400::200/122\",\r\n \"2603:1030:210::180/122\",\r\n
+ \ \"2603:1030:210:402::280/122\",\r\n \"2603:1030:40b:2::40/122\",\r\n
+ \ \"2603:1030:40b:400::a80/122\",\r\n \"2603:1030:40c::180/122\",\r\n
+ \ \"2603:1030:40c:402::280/122\",\r\n \"2603:1030:504::400/120\",\r\n
+ \ \"2603:1030:504:402::180/122\",\r\n \"2603:1030:608::6c0/122\",\r\n
+ \ \"2603:1030:608:402::280/122\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\",\r\n \"2603:1030:a07::6c0/122\",\r\n
+ \ \"2603:1030:a07:402::900/122\",\r\n \"2603:1030:b04::6c0/122\",\r\n
+ \ \"2603:1030:b04:402::280/122\",\r\n \"2603:1030:c06:2::40/122\",\r\n
+ \ \"2603:1030:c06:400::a80/122\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\",\r\n \"2603:1030:1005::6c0/122\",\r\n
+ \ \"2603:1030:1005:402::280/122\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\",\r\n \"2603:1040:207::6c0/122\",\r\n
+ \ \"2603:1040:207:402::280/122\",\r\n \"2603:1040:407::180/122\",\r\n
+ \ \"2603:1040:407:402::280/122\",\r\n \"2603:1040:606::6c0/122\",\r\n
+ \ \"2603:1040:606:402::280/122\",\r\n \"2603:1040:806::6c0/122\",\r\n
+ \ \"2603:1040:806:402::280/122\",\r\n \"2603:1040:904::180/122\",\r\n
+ \ \"2603:1040:904:402::280/122\",\r\n \"2603:1040:a06::280/122\",\r\n
+ \ \"2603:1040:a06:402::280/122\",\r\n \"2603:1040:b04::6c0/122\",\r\n
+ \ \"2603:1040:b04:402::280/122\",\r\n \"2603:1040:c06::6c0/122\",\r\n
+ \ \"2603:1040:c06:402::280/122\",\r\n \"2603:1040:d04:1::400/120\",\r\n
+ \ \"2603:1040:d04:400::180/122\",\r\n \"2603:1040:f05::180/122\",\r\n
+ \ \"2603:1040:f05:2::100/120\",\r\n \"2603:1040:f05:402::280/122\",\r\n
+ \ \"2603:1040:1104:1::/120\",\r\n \"2603:1040:1104:400::280/122\",\r\n
+ \ \"2603:1050:6::180/122\",\r\n \"2603:1050:6:402::280/122\",\r\n
+ \ \"2603:1050:403:1::40/122\",\r\n \"2603:1050:403:400::440/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.115.144/28\",\r\n \"20.36.118.0/23\",\r\n
+ \ \"20.36.126.0/23\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.32/28\",\r\n \"13.77.55.0/25\",\r\n \"104.46.160.0/24\",\r\n
+ \ \"104.46.161.0/25\",\r\n \"104.46.180.0/23\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.CanadaCentral\",\r\n \"id\":
+ \"AzureResourceManager.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.71.173.192/28\",\r\n
+ \ \"20.38.150.0/23\",\r\n \"20.48.194.0/23\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.KoreaCentral\",\r\n \"id\":
+ \"AzureResourceManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.70.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n
+ \ \"2603:1040:f05::180/122\",\r\n \"2603:1040:f05:2::100/120\",\r\n
+ \ \"2603:1040:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaWest\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.28.16/28\",\r\n
+ \ \"102.133.30.0/23\",\r\n \"102.133.62.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthCentralUS\",\r\n \"id\":
+ \"AzureResourceManager.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"20.65.128.0/23\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SoutheastAsia\",\r\n \"id\":
+ \"AzureResourceManager.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.67.18.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.78.234.176/28\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureResourceManager.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"2603:1020:a04::180/122\",\r\n \"2603:1020:a04:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureResourceManager.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n
+ \ \"51.107.158.0/23\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.WestEurope\",\r\n \"id\":
+ \"AzureResourceManager.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"20.61.100.0/23\",\r\n \"40.113.178.0/28\",\r\n
+ \ \"2603:1020:206::180/122\",\r\n \"2603:1020:206:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR\",\r\n
+ \ \"id\": \"AzureSignalR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.145.0/26\",\r\n \"13.67.15.64/27\",\r\n \"13.69.113.0/24\",\r\n
+ \ \"13.69.232.128/25\",\r\n \"13.70.74.224/27\",\r\n \"13.71.199.32/27\",\r\n
+ \ \"13.73.244.64/27\",\r\n \"13.74.111.0/25\",\r\n \"13.78.109.224/27\",\r\n
+ \ \"13.89.175.128/26\",\r\n \"20.38.132.96/27\",\r\n \"20.38.143.192/27\",\r\n
+ \ \"20.38.149.224/27\",\r\n \"20.40.229.0/27\",\r\n \"20.42.64.128/25\",\r\n
+ \ \"20.42.72.0/25\",\r\n \"20.44.10.128/26\",\r\n \"20.44.17.128/26\",\r\n
+ \ \"20.45.123.192/27\",\r\n \"20.46.11.96/27\",\r\n \"20.48.196.192/27\",\r\n
+ \ \"20.49.91.192/27\",\r\n \"20.49.119.96/27\",\r\n \"20.51.12.32/27\",\r\n
+ \ \"20.51.17.224/27\",\r\n \"20.53.47.32/27\",\r\n \"20.61.102.64/27\",\r\n
+ \ \"20.62.59.32/27\",\r\n \"20.62.133.64/27\",\r\n \"20.65.132.224/27\",\r\n
+ \ \"20.66.3.224/27\",\r\n \"20.69.0.192/27\",\r\n \"20.135.13.160/27\",\r\n
+ \ \"20.150.174.160/27\",\r\n \"20.150.244.160/27\",\r\n \"20.189.170.0/24\",\r\n
+ \ \"20.191.166.64/27\",\r\n \"20.192.44.64/27\",\r\n \"20.194.73.192/27\",\r\n
+ \ \"20.195.65.192/27\",\r\n \"20.195.72.192/27\",\r\n \"23.98.86.64/27\",\r\n
+ \ \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n \"40.70.148.192/26\",\r\n
+ \ \"40.71.15.0/25\",\r\n \"40.78.204.96/27\",\r\n \"40.78.238.64/26\",\r\n
+ \ \"40.78.238.128/25\",\r\n \"40.78.245.64/26\",\r\n \"40.78.253.0/26\",\r\n
+ \ \"40.79.132.160/27\",\r\n \"40.79.139.96/27\",\r\n \"40.79.148.32/27\",\r\n
+ \ \"40.79.163.96/27\",\r\n \"40.79.171.192/27\",\r\n \"40.79.189.0/27\",\r\n
+ \ \"40.79.197.0/27\",\r\n \"40.80.53.32/27\",\r\n \"40.120.64.160/27\",\r\n
+ \ \"51.12.17.160/27\",\r\n \"51.12.46.192/27\",\r\n \"51.12.101.192/27\",\r\n
+ \ \"51.12.168.0/27\",\r\n \"51.104.9.64/27\",\r\n \"51.105.69.32/27\",\r\n
+ \ \"51.105.77.0/27\",\r\n \"51.107.128.128/27\",\r\n \"51.107.192.192/27\",\r\n
+ \ \"51.107.242.192/27\",\r\n \"51.107.250.192/27\",\r\n \"51.116.149.96/27\",\r\n
+ \ \"51.116.246.32/27\",\r\n \"51.120.213.96/27\",\r\n \"51.120.233.96/27\",\r\n
+ \ \"51.138.210.96/27\",\r\n \"51.143.212.128/27\",\r\n \"52.136.53.224/27\",\r\n
+ \ \"52.138.92.224/27\",\r\n \"52.138.229.128/25\",\r\n \"52.139.107.96/27\",\r\n
+ \ \"52.146.136.32/27\",\r\n \"52.167.109.0/26\",\r\n \"52.178.16.0/24\",\r\n
+ \ \"52.182.141.64/26\",\r\n \"52.231.20.96/27\",\r\n \"52.231.20.192/26\",\r\n
+ \ \"52.236.190.0/24\",\r\n \"102.37.160.32/27\",\r\n \"102.133.126.96/27\",\r\n
+ \ \"104.214.164.160/27\",\r\n \"191.233.207.128/27\",\r\n
+ \ \"191.238.72.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.AustraliaEast\",\r\n \"id\": \"AzureSignalR.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSignalR\",\r\n \"addressPrefixes\": [\r\n \"13.70.74.224/27\",\r\n
+ \ \"20.53.47.32/27\",\r\n \"40.79.163.96/27\",\r\n \"40.79.171.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.CanadaEast\",\r\n
+ \ \"id\": \"AzureSignalR.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n
+ \ \"52.139.107.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.EastUS\",\r\n \"id\": \"AzureSignalR.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSignalR\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.64.128/25\",\r\n \"20.42.72.0/25\",\r\n
+ \ \"20.62.133.64/27\",\r\n \"40.71.15.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.NorthEurope\",\r\n
+ \ \"id\": \"AzureSignalR.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.232.128/25\",\r\n \"13.74.111.0/25\",\r\n
+ \ \"52.138.229.128/25\",\r\n \"52.146.136.32/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSiteRecovery\",\r\n \"id\":
+ \"AzureSiteRecovery\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSiteRecovery\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.240/28\",\r\n \"13.67.10.96/28\",\r\n
+ \ \"13.69.67.80/28\",\r\n \"13.69.107.80/28\",\r\n \"13.69.230.16/28\",\r\n
+ \ \"13.70.74.96/28\",\r\n \"13.70.159.158/32\",\r\n \"13.71.173.224/28\",\r\n
+ \ \"13.71.196.144/28\",\r\n \"13.73.242.192/28\",\r\n \"13.74.108.144/28\",\r\n
+ \ \"13.75.39.80/28\",\r\n \"13.77.53.64/28\",\r\n \"13.78.109.128/28\",\r\n
+ \ \"13.82.88.226/32\",\r\n \"13.84.148.14/32\",\r\n \"13.86.219.176/28\",\r\n
+ \ \"13.87.37.4/32\",\r\n \"13.87.58.48/28\",\r\n \"13.87.124.48/28\",\r\n
+ \ \"13.89.174.144/28\",\r\n \"20.36.34.70/32\",\r\n \"20.36.69.62/32\",\r\n
+ \ \"20.36.108.96/28\",\r\n \"20.36.115.224/28\",\r\n \"20.36.120.80/28\",\r\n
+ \ \"20.37.64.80/28\",\r\n \"20.37.76.128/28\",\r\n \"20.37.156.96/28\",\r\n
+ \ \"20.37.192.112/28\",\r\n \"20.37.224.80/28\",\r\n \"20.38.80.112/28\",\r\n
+ \ \"20.38.128.80/28\",\r\n \"20.38.136.80/28\",\r\n \"20.38.147.160/28\",\r\n
+ \ \"20.39.8.80/28\",\r\n \"20.41.4.64/28\",\r\n \"20.41.64.96/28\",\r\n
+ \ \"20.41.192.80/28\",\r\n \"20.42.4.96/28\",\r\n \"20.42.129.128/28\",\r\n
+ \ \"20.42.224.80/28\",\r\n \"20.43.40.112/28\",\r\n \"20.43.64.112/28\",\r\n
+ \ \"20.43.121.16/28\",\r\n \"20.43.130.64/28\",\r\n \"20.44.4.80/28\",\r\n
+ \ \"20.44.8.176/28\",\r\n \"20.44.17.32/28\",\r\n \"20.44.27.192/28\",\r\n
+ \ \"20.45.75.232/32\",\r\n \"20.45.112.80/28\",\r\n \"20.45.123.96/28\",\r\n
+ \ \"20.45.192.80/28\",\r\n \"20.49.83.48/28\",\r\n \"20.49.91.48/28\",\r\n
+ \ \"20.72.16.0/28\",\r\n \"20.72.28.32/28\",\r\n \"20.150.160.80/28\",\r\n
+ \ \"20.150.172.48/28\",\r\n \"20.150.179.208/28\",\r\n \"20.150.187.208/28\",\r\n
+ \ \"20.189.106.96/28\",\r\n \"20.192.99.208/28\",\r\n \"20.192.160.0/28\",\r\n
+ \ \"20.192.225.0/28\",\r\n \"20.192.235.224/28\",\r\n \"20.193.203.208/28\",\r\n
+ \ \"20.194.67.48/28\",\r\n \"23.96.195.247/32\",\r\n \"23.98.83.80/28\",\r\n
+ \ \"40.67.48.80/28\",\r\n \"40.67.60.80/28\",\r\n \"40.69.108.64/28\",\r\n
+ \ \"40.69.144.231/32\",\r\n \"40.69.212.238/32\",\r\n \"40.70.148.96/28\",\r\n
+ \ \"40.71.14.0/28\",\r\n \"40.74.24.112/28\",\r\n \"40.74.147.176/28\",\r\n
+ \ \"40.75.35.80/28\",\r\n \"40.78.196.64/28\",\r\n \"40.78.204.16/28\",\r\n
+ \ \"40.78.229.48/28\",\r\n \"40.78.236.144/28\",\r\n \"40.78.243.160/28\",\r\n
+ \ \"40.78.251.96/28\",\r\n \"40.79.132.64/28\",\r\n \"40.79.139.0/28\",\r\n
+ \ \"40.79.146.192/28\",\r\n \"40.79.156.48/28\",\r\n \"40.79.163.16/28\",\r\n
+ \ \"40.79.171.96/28\",\r\n \"40.79.180.32/28\",\r\n \"40.79.187.176/28\",\r\n
+ \ \"40.79.195.160/28\",\r\n \"40.80.51.96/28\",\r\n \"40.80.56.80/28\",\r\n
+ \ \"40.80.168.80/28\",\r\n \"40.80.176.16/28\",\r\n \"40.80.184.96/28\",\r\n
+ \ \"40.82.248.96/28\",\r\n \"40.83.179.48/32\",\r\n \"40.89.16.80/28\",\r\n
+ \ \"40.119.9.192/28\",\r\n \"40.120.75.96/28\",\r\n \"40.123.219.238/32\",\r\n
+ \ \"51.12.47.0/28\",\r\n \"51.12.100.32/28\",\r\n \"51.12.198.112/28\",\r\n
+ \ \"51.12.204.32/28\",\r\n \"51.12.227.208/28\",\r\n \"51.12.235.208/28\",\r\n
+ \ \"51.104.9.0/28\",\r\n \"51.104.24.112/28\",\r\n \"51.105.67.192/28\",\r\n
+ \ \"51.105.75.160/28\",\r\n \"51.105.80.80/28\",\r\n \"51.105.88.80/28\",\r\n
+ \ \"51.107.48.80/28\",\r\n \"51.107.60.64/28\",\r\n \"51.107.68.31/32\",\r\n
+ \ \"51.107.144.80/28\",\r\n \"51.107.156.80/28\",\r\n \"51.107.231.223/32\",\r\n
+ \ \"51.116.48.80/28\",\r\n \"51.116.60.64/28\",\r\n \"51.116.144.80/28\",\r\n
+ \ \"51.116.156.176/28\",\r\n \"51.116.208.58/32\",\r\n \"51.116.243.128/28\",\r\n
+ \ \"51.116.251.48/28\",\r\n \"51.120.40.80/28\",\r\n \"51.120.100.64/28\",\r\n
+ \ \"51.120.107.208/28\",\r\n \"51.120.211.208/28\",\r\n \"51.120.220.64/28\",\r\n
+ \ \"51.120.224.80/28\",\r\n \"51.137.160.96/28\",\r\n \"51.140.43.158/32\",\r\n
+ \ \"51.140.212.80/28\",\r\n \"51.141.3.203/32\",\r\n \"51.142.209.167/32\",\r\n
+ \ \"51.143.192.80/28\",\r\n \"52.136.48.80/28\",\r\n \"52.136.139.227/32\",\r\n
+ \ \"52.138.92.64/28\",\r\n \"52.138.227.144/28\",\r\n \"52.140.104.80/28\",\r\n
+ \ \"52.143.138.106/32\",\r\n \"52.150.136.96/28\",\r\n \"52.161.20.168/32\",\r\n
+ \ \"52.162.111.0/28\",\r\n \"52.166.13.64/32\",\r\n \"52.167.107.80/28\",\r\n
+ \ \"52.172.46.220/32\",\r\n \"52.172.187.37/32\",\r\n \"52.175.17.132/32\",\r\n
+ \ \"52.175.146.69/32\",\r\n \"52.180.178.64/32\",\r\n \"52.182.139.192/28\",\r\n
+ \ \"52.183.45.166/32\",\r\n \"52.184.158.163/32\",\r\n \"52.185.150.140/32\",\r\n
+ \ \"52.187.58.193/32\",\r\n \"52.187.191.206/32\",\r\n \"52.225.188.170/32\",\r\n
+ \ \"52.228.36.192/32\",\r\n \"52.228.80.96/28\",\r\n \"52.229.125.98/32\",\r\n
+ \ \"52.231.20.16/28\",\r\n \"52.231.28.253/32\",\r\n \"52.231.148.96/28\",\r\n
+ \ \"52.231.198.185/32\",\r\n \"52.236.187.64/28\",\r\n \"52.246.155.160/28\",\r\n
+ \ \"65.52.252.192/28\",\r\n \"102.133.28.128/28\",\r\n \"102.133.59.160/28\",\r\n
+ \ \"102.133.72.51/32\",\r\n \"102.133.124.64/28\",\r\n \"102.133.156.96/28\",\r\n
+ \ \"102.133.160.44/32\",\r\n \"102.133.218.176/28\",\r\n
+ \ \"102.133.251.160/28\",\r\n \"104.210.113.114/32\",\r\n
+ \ \"104.211.177.6/32\",\r\n \"191.233.8.0/28\",\r\n \"191.233.51.192/28\",\r\n
+ \ \"191.233.205.80/28\",\r\n \"191.234.147.208/28\",\r\n
+ \ \"191.234.155.208/28\",\r\n \"191.234.185.172/32\",\r\n
+ \ \"191.235.224.112/28\",\r\n \"2603:1000:4::/123\",\r\n
+ \ \"2603:1000:4:402::2d0/125\",\r\n \"2603:1000:104:1::/123\",\r\n
+ \ \"2603:1000:104:402::2d0/125\",\r\n \"2603:1000:104:802::158/125\",\r\n
+ \ \"2603:1000:104:c02::158/125\",\r\n \"2603:1010:6:1::/123\",\r\n
+ \ \"2603:1010:6:402::2d0/125\",\r\n \"2603:1010:6:802::158/125\",\r\n
+ \ \"2603:1010:6:c02::158/125\",\r\n \"2603:1010:101::/123\",\r\n
+ \ \"2603:1010:101:402::2d0/125\",\r\n \"2603:1010:304::/123\",\r\n
+ \ \"2603:1010:304:402::2d0/125\",\r\n \"2603:1010:404::/123\",\r\n
+ \ \"2603:1010:404:402::2d0/125\",\r\n \"2603:1020:5:1::/123\",\r\n
+ \ \"2603:1020:5:402::2d0/125\",\r\n \"2603:1020:5:802::158/125\",\r\n
+ \ \"2603:1020:5:c02::158/125\",\r\n \"2603:1020:206:1::/123\",\r\n
+ \ \"2603:1020:206:402::2d0/125\",\r\n \"2603:1020:206:802::158/125\",\r\n
+ \ \"2603:1020:206:c02::158/125\",\r\n \"2603:1020:305::/123\",\r\n
+ \ \"2603:1020:305:402::2d0/125\",\r\n \"2603:1020:405::/123\",\r\n
+ \ \"2603:1020:405:402::2d0/125\",\r\n \"2603:1020:605::/123\",\r\n
+ \ \"2603:1020:605:402::2d0/125\",\r\n \"2603:1020:705:1::/123\",\r\n
+ \ \"2603:1020:705:402::2d0/125\",\r\n \"2603:1020:705:802::158/125\",\r\n
+ \ \"2603:1020:705:c02::158/125\",\r\n \"2603:1020:805:1::/123\",\r\n
+ \ \"2603:1020:805:402::2d0/125\",\r\n \"2603:1020:805:802::158/125\",\r\n
+ \ \"2603:1020:805:c02::158/125\",\r\n \"2603:1020:905::/123\",\r\n
+ \ \"2603:1020:905:402::2d0/125\",\r\n \"2603:1020:a04:1::/123\",\r\n
+ \ \"2603:1020:a04:402::2d0/125\",\r\n \"2603:1020:a04:802::158/125\",\r\n
+ \ \"2603:1020:a04:c02::158/125\",\r\n \"2603:1020:b04::/123\",\r\n
+ \ \"2603:1020:b04:402::2d0/125\",\r\n \"2603:1020:c04:1::/123\",\r\n
+ \ \"2603:1020:c04:402::2d0/125\",\r\n \"2603:1020:c04:802::158/125\",\r\n
+ \ \"2603:1020:c04:c02::158/125\",\r\n \"2603:1020:d04::/123\",\r\n
+ \ \"2603:1020:d04:402::2d0/125\",\r\n \"2603:1020:e04:1::/123\",\r\n
+ \ \"2603:1020:e04:402::2d0/125\",\r\n \"2603:1020:e04:802::158/125\",\r\n
+ \ \"2603:1020:e04:c02::158/125\",\r\n \"2603:1020:f04::/123\",\r\n
+ \ \"2603:1020:f04:402::2d0/125\",\r\n \"2603:1020:1004::/123\",\r\n
+ \ \"2603:1020:1004:400::1d0/125\",\r\n \"2603:1020:1004:400::2f0/125\",\r\n
+ \ \"2603:1020:1004:800::3e0/125\",\r\n \"2603:1020:1104::/123\",\r\n
+ \ \"2603:1020:1104:400::2d0/125\",\r\n \"2603:1030:f:1::/123\",\r\n
+ \ \"2603:1030:f:400::ad0/125\",\r\n \"2603:1030:10:1::/123\",\r\n
+ \ \"2603:1030:10:402::2d0/125\",\r\n \"2603:1030:10:802::158/125\",\r\n
+ \ \"2603:1030:10:c02::158/125\",\r\n \"2603:1030:104:1::/123\",\r\n
+ \ \"2603:1030:104:402::2d0/125\",\r\n \"2603:1030:107::/123\",\r\n
+ \ \"2603:1030:107:400::f8/125\",\r\n \"2603:1030:210:1::/123\",\r\n
+ \ \"2603:1030:210:402::2d0/125\",\r\n \"2603:1030:210:802::158/125\",\r\n
+ \ \"2603:1030:210:c02::158/125\",\r\n \"2603:1030:40b:1::/123\",\r\n
+ \ \"2603:1030:40b:400::ad0/125\",\r\n \"2603:1030:40b:800::158/125\",\r\n
+ \ \"2603:1030:40b:c00::158/125\",\r\n \"2603:1030:40c:1::/123\",\r\n
+ \ \"2603:1030:40c:402::2d0/125\",\r\n \"2603:1030:40c:802::158/125\",\r\n
+ \ \"2603:1030:40c:c02::158/125\",\r\n \"2603:1030:504:1::/123\",\r\n
+ \ \"2603:1030:504:402::1d0/125\",\r\n \"2603:1030:504:402::2f0/125\",\r\n
+ \ \"2603:1030:504:802::3e0/125\",\r\n \"2603:1030:504:c02::390/125\",\r\n
+ \ \"2603:1030:608::/123\",\r\n \"2603:1030:608:402::2d0/125\",\r\n
+ \ \"2603:1030:807:1::/123\",\r\n \"2603:1030:807:402::2d0/125\",\r\n
+ \ \"2603:1030:807:802::158/125\",\r\n \"2603:1030:807:c02::158/125\",\r\n
+ \ \"2603:1030:a07::/123\",\r\n \"2603:1030:a07:402::950/125\",\r\n
+ \ \"2603:1030:b04::/123\",\r\n \"2603:1030:b04:402::2d0/125\",\r\n
+ \ \"2603:1030:c06:1::/123\",\r\n \"2603:1030:c06:400::ad0/125\",\r\n
+ \ \"2603:1030:c06:802::158/125\",\r\n \"2603:1030:c06:c02::158/125\",\r\n
+ \ \"2603:1030:f05:1::/123\",\r\n \"2603:1030:f05:402::2d0/125\",\r\n
+ \ \"2603:1030:f05:802::158/125\",\r\n \"2603:1030:f05:c02::158/125\",\r\n
+ \ \"2603:1030:1005::/123\",\r\n \"2603:1030:1005:402::2d0/125\",\r\n
+ \ \"2603:1040:5:1::/123\",\r\n \"2603:1040:5:402::2d0/125\",\r\n
+ \ \"2603:1040:5:802::158/125\",\r\n \"2603:1040:5:c02::158/125\",\r\n
+ \ \"2603:1040:207::/123\",\r\n \"2603:1040:207:402::2d0/125\",\r\n
+ \ \"2603:1040:407:1::/123\",\r\n \"2603:1040:407:402::2d0/125\",\r\n
+ \ \"2603:1040:407:802::158/125\",\r\n \"2603:1040:407:c02::158/125\",\r\n
+ \ \"2603:1040:606::/123\",\r\n \"2603:1040:606:402::2d0/125\",\r\n
+ \ \"2603:1040:806::/123\",\r\n \"2603:1040:806:402::2d0/125\",\r\n
+ \ \"2603:1040:904:1::/123\",\r\n \"2603:1040:904:402::2d0/125\",\r\n
+ \ \"2603:1040:904:802::158/125\",\r\n \"2603:1040:904:c02::158/125\",\r\n
+ \ \"2603:1040:a06:1::/123\",\r\n \"2603:1040:a06:402::2d0/125\",\r\n
+ \ \"2603:1040:a06:802::158/125\",\r\n \"2603:1040:a06:c02::158/125\",\r\n
+ \ \"2603:1040:b04::/123\",\r\n \"2603:1040:b04:402::2d0/125\",\r\n
+ \ \"2603:1040:c06::/123\",\r\n \"2603:1040:c06:402::2d0/125\",\r\n
+ \ \"2603:1040:d04::/123\",\r\n \"2603:1040:d04:400::1d0/125\",\r\n
+ \ \"2603:1040:d04:400::2f0/125\",\r\n \"2603:1040:d04:800::3e0/125\",\r\n
+ \ \"2603:1040:f05:1::/123\",\r\n \"2603:1040:f05:402::2d0/125\",\r\n
+ \ \"2603:1040:f05:802::158/125\",\r\n \"2603:1040:f05:c02::158/125\",\r\n
+ \ \"2603:1040:1104::/123\",\r\n \"2603:1040:1104:400::2d0/125\",\r\n
+ \ \"2603:1050:6:1::/123\",\r\n \"2603:1050:6:402::2d0/125\",\r\n
+ \ \"2603:1050:6:802::158/125\",\r\n \"2603:1050:6:c02::158/125\",\r\n
+ \ \"2603:1050:403::/123\",\r\n \"2603:1050:403:400::1f0/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureTrafficManager\",\r\n
+ \ \"id\": \"AzureTrafficManager\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureTrafficManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.92.252/32\",\r\n \"13.65.95.152/32\",\r\n
+ \ \"13.75.124.254/32\",\r\n \"13.75.127.63/32\",\r\n \"13.75.152.253/32\",\r\n
+ \ \"13.75.153.124/32\",\r\n \"13.84.222.37/32\",\r\n \"23.96.236.252/32\",\r\n
+ \ \"23.101.191.199/32\",\r\n \"40.68.30.66/32\",\r\n \"40.68.31.178/32\",\r\n
+ \ \"40.78.67.110/32\",\r\n \"40.87.147.10/32\",\r\n \"40.87.151.34/32\",\r\n
+ \ \"40.114.5.197/32\",\r\n \"52.172.155.168/32\",\r\n \"52.172.158.37/32\",\r\n
+ \ \"52.173.90.107/32\",\r\n \"52.173.250.232/32\",\r\n \"52.240.144.45/32\",\r\n
+ \ \"52.240.151.125/32\",\r\n \"65.52.217.19/32\",\r\n \"104.41.187.209/32\",\r\n
+ \ \"104.41.190.203/32\",\r\n \"104.42.192.195/32\",\r\n \"104.45.149.110/32\",\r\n
+ \ \"104.215.91.84/32\",\r\n \"137.135.46.163/32\",\r\n \"137.135.47.215/32\",\r\n
+ \ \"137.135.80.149/32\",\r\n \"137.135.82.249/32\",\r\n \"191.232.208.52/32\",\r\n
+ \ \"191.232.214.62/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement\",\r\n \"id\": \"BatchNodeManagement\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.66.141.32/27\",\r\n \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n
+ \ \"13.66.227.193/32\",\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n
+ \ \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.70.73.0/27\",\r\n \"13.71.144.135/32\",\r\n \"13.71.172.96/27\",\r\n
+ \ \"13.71.195.160/27\",\r\n \"13.73.117.100/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.73.249.64/27\",\r\n \"13.74.107.128/27\",\r\n
+ \ \"13.75.36.96/27\",\r\n \"13.77.52.128/27\",\r\n \"13.77.80.138/32\",\r\n
+ \ \"13.78.108.128/27\",\r\n \"13.78.145.2/32\",\r\n \"13.78.145.73/32\",\r\n
+ \ \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n \"13.79.172.125/32\",\r\n
+ \ \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n \"13.81.59.254/32\",\r\n
+ \ \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.87.32.176/32\",\r\n \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n
+ \ \"13.87.57.96/27\",\r\n \"13.87.97.57/32\",\r\n \"13.87.97.82/32\",\r\n
+ \ \"13.87.100.219/32\",\r\n \"13.87.123.96/27\",\r\n \"13.89.55.147/32\",\r\n
+ \ \"13.89.171.224/27\",\r\n \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n
+ \ \"13.91.107.154/32\",\r\n \"13.92.114.103/32\",\r\n \"13.93.206.144/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.36.121.160/27\",\r\n
+ \ \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n \"20.37.196.128/27\",\r\n
+ \ \"20.37.225.160/27\",\r\n \"20.38.85.224/27\",\r\n \"20.38.137.192/27\",\r\n
+ \ \"20.38.146.224/27\",\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n
+ \ \"20.39.2.44/32\",\r\n \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n
+ \ \"20.39.3.186/32\",\r\n \"20.39.12.64/27\",\r\n \"20.40.137.186/32\",\r\n
+ \ \"20.40.149.165/32\",\r\n \"20.40.200.32/27\",\r\n \"20.41.5.224/27\",\r\n
+ \ \"20.41.66.128/27\",\r\n \"20.41.195.128/27\",\r\n \"20.42.6.224/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"20.43.42.96/27\",\r\n \"20.43.66.96/27\",\r\n
+ \ \"20.43.132.64/27\",\r\n \"20.44.4.112/29\",\r\n \"20.44.27.64/27\",\r\n
+ \ \"20.45.113.160/27\",\r\n \"20.45.122.224/27\",\r\n \"20.45.195.192/27\",\r\n
+ \ \"20.49.83.64/27\",\r\n \"20.49.91.64/27\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"20.72.17.64/27\",\r\n \"20.150.161.224/27\",\r\n \"20.150.172.0/27\",\r\n
+ \ \"20.150.179.96/27\",\r\n \"20.150.187.96/27\",\r\n \"20.189.109.0/27\",\r\n
+ \ \"20.192.99.96/27\",\r\n \"20.192.161.224/27\",\r\n \"20.192.228.160/27\",\r\n
+ \ \"20.192.235.192/27\",\r\n \"20.193.203.128/27\",\r\n \"23.96.12.112/32\",\r\n
+ \ \"23.96.101.73/32\",\r\n \"23.96.109.140/32\",\r\n \"23.96.232.67/32\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.97.97.29/32\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"23.98.82.160/27\",\r\n \"23.99.98.61/32\",\r\n
+ \ \"23.99.107.229/32\",\r\n \"23.99.195.236/32\",\r\n \"23.100.100.145/32\",\r\n
+ \ \"23.100.103.112/32\",\r\n \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n
+ \ \"23.102.185.64/32\",\r\n \"40.64.128.160/27\",\r\n \"40.67.49.160/27\",\r\n
+ \ \"40.67.60.0/27\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.69.107.128/27\",\r\n \"40.70.147.224/27\",\r\n
+ \ \"40.71.12.192/27\",\r\n \"40.74.101.0/27\",\r\n \"40.74.140.140/32\",\r\n
+ \ \"40.74.149.48/29\",\r\n \"40.74.177.177/32\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.77.18.99/32\",\r\n \"40.78.195.128/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"40.78.227.0/27\",\r\n \"40.78.234.96/27\",\r\n \"40.78.242.224/27\",\r\n
+ \ \"40.78.250.160/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"40.79.154.32/27\",\r\n \"40.79.162.96/27\",\r\n
+ \ \"40.79.170.192/27\",\r\n \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n
+ \ \"40.80.50.224/27\",\r\n \"40.80.58.160/27\",\r\n \"40.80.170.128/27\",\r\n
+ \ \"40.80.190.192/27\",\r\n \"40.82.255.64/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n
+ \ \"40.86.224.98/32\",\r\n \"40.86.224.104/32\",\r\n \"40.88.48.36/32\",\r\n
+ \ \"40.89.18.192/27\",\r\n \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n
+ \ \"40.89.67.77/32\",\r\n \"40.89.70.17/32\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.115.50.9/32\",\r\n \"40.118.208.127/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"51.12.41.192/27\",\r\n \"51.12.100.0/27\",\r\n \"51.12.193.192/27\",\r\n
+ \ \"51.12.204.0/27\",\r\n \"51.12.227.96/27\",\r\n \"51.12.235.96/27\",\r\n
+ \ \"51.104.28.0/27\",\r\n \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n
+ \ \"51.105.81.160/27\",\r\n \"51.105.89.192/27\",\r\n \"51.107.49.192/27\",\r\n
+ \ \"51.107.59.224/27\",\r\n \"51.107.145.160/27\",\r\n \"51.107.155.224/27\",\r\n
+ \ \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n \"51.116.144.224/27\",\r\n
+ \ \"51.116.154.32/27\",\r\n \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n
+ \ \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n \"51.120.107.96/27\",\r\n
+ \ \"51.120.211.96/27\",\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"51.137.162.192/27\",\r\n \"51.140.148.160/27\",\r\n \"51.140.184.59/32\",\r\n
+ \ \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n \"51.140.211.128/27\",\r\n
+ \ \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n \"51.141.8.64/32\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"52.136.49.192/27\",\r\n \"52.136.143.192/31\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.138.90.64/27\",\r\n \"52.138.226.128/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"52.148.148.46/32\",\r\n \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n
+ \ \"52.161.107.48/32\",\r\n \"52.162.110.32/27\",\r\n \"52.164.244.189/32\",\r\n
+ \ \"52.164.245.81/32\",\r\n \"52.165.44.224/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.167.106.128/27\",\r\n \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n
+ \ \"52.169.235.90/32\",\r\n \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n
+ \ \"52.174.35.218/32\",\r\n \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n
+ \ \"52.174.179.66/32\",\r\n \"52.174.180.164/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n
+ \ \"52.180.177.206/32\",\r\n \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n
+ \ \"52.180.181.239/32\",\r\n \"52.182.139.0/27\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"52.189.217.254/32\",\r\n \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n
+ \ \"52.225.185.38/32\",\r\n \"52.225.191.67/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.231.19.96/27\",\r\n \"52.231.32.70/31\",\r\n
+ \ \"52.231.32.82/32\",\r\n \"52.231.147.128/27\",\r\n \"52.231.200.112/31\",\r\n
+ \ \"52.231.200.126/32\",\r\n \"52.233.40.34/32\",\r\n \"52.233.157.9/32\",\r\n
+ \ \"52.233.157.78/32\",\r\n \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n
+ \ \"52.235.41.66/32\",\r\n \"52.236.186.128/26\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"52.246.154.224/27\",\r\n
+ \ \"52.249.60.22/32\",\r\n \"52.253.227.240/32\",\r\n \"65.52.199.156/32\",\r\n
+ \ \"65.52.199.188/32\",\r\n \"65.52.251.224/27\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"104.40.69.159/32\",\r\n \"104.40.183.25/32\",\r\n
+ \ \"104.41.2.182/32\",\r\n \"104.41.129.99/32\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.45.13.8/32\",\r\n
+ \ \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"104.47.149.96/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"104.208.144.128/27\",\r\n \"104.208.156.99/32\",\r\n
+ \ \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n \"104.210.115.52/32\",\r\n
+ \ \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n \"104.211.96.144/31\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"104.214.19.192/27\",\r\n
+ \ \"104.214.65.153/32\",\r\n \"111.221.104.48/32\",\r\n \"137.116.33.5/32\",\r\n
+ \ \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n \"137.116.37.146/32\",\r\n
+ \ \"137.116.46.180/32\",\r\n \"137.116.193.225/32\",\r\n
+ \ \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"138.91.1.114/32\",\r\n \"138.91.17.36/32\",\r\n \"157.55.167.71/32\",\r\n
+ \ \"157.55.210.88/32\",\r\n \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n
+ \ \"168.62.4.114/32\",\r\n \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n
+ \ \"168.63.5.53/32\",\r\n \"168.63.36.126/32\",\r\n \"168.63.133.23/32\",\r\n
+ \ \"168.63.208.148/32\",\r\n \"191.232.37.60/32\",\r\n \"191.233.10.0/27\",\r\n
+ \ \"191.233.76.85/32\",\r\n \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n
+ \ \"191.234.155.96/27\",\r\n \"191.235.227.192/27\",\r\n
+ \ \"191.236.37.239/32\",\r\n \"191.236.38.142/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"207.46.149.75/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1000:4::400/122\",\r\n \"2603:1000:104:1::340/122\",\r\n
+ \ \"2603:1010:6:1::340/122\",\r\n \"2603:1010:101::400/122\",\r\n
+ \ \"2603:1010:304::400/122\",\r\n \"2603:1010:404::400/122\",\r\n
+ \ \"2603:1020:5:1::340/122\",\r\n \"2603:1020:206:1::340/122\",\r\n
+ \ \"2603:1020:305::400/122\",\r\n \"2603:1020:405::400/122\",\r\n
+ \ \"2603:1020:605::400/122\",\r\n \"2603:1020:705:1::340/122\",\r\n
+ \ \"2603:1020:805:1::340/122\",\r\n \"2603:1020:905::400/122\",\r\n
+ \ \"2603:1020:a04:1::340/122\",\r\n \"2603:1020:b04::400/122\",\r\n
+ \ \"2603:1020:c04:1::340/122\",\r\n \"2603:1020:d04::400/122\",\r\n
+ \ \"2603:1020:e04:1::340/122\",\r\n \"2603:1020:f04::400/122\",\r\n
+ \ \"2603:1020:1004::340/122\",\r\n \"2603:1020:1104::300/122\",\r\n
+ \ \"2603:1030:f:1::400/122\",\r\n \"2603:1030:10:1::340/122\",\r\n
+ \ \"2603:1030:104:1::340/122\",\r\n \"2603:1030:107::300/122\",\r\n
+ \ \"2603:1030:210:1::340/122\",\r\n \"2603:1030:40b:1::340/122\",\r\n
+ \ \"2603:1030:40c:1::340/122\",\r\n \"2603:1030:504:1::340/122\",\r\n
+ \ \"2603:1030:608::400/122\",\r\n \"2603:1030:807:1::340/122\",\r\n
+ \ \"2603:1030:a07::400/122\",\r\n \"2603:1030:b04::400/122\",\r\n
+ \ \"2603:1030:c06:1::340/122\",\r\n \"2603:1030:f05:1::340/122\",\r\n
+ \ \"2603:1030:1005::400/122\",\r\n \"2603:1040:5:1::340/122\",\r\n
+ \ \"2603:1040:207::400/122\",\r\n \"2603:1040:407:1::340/122\",\r\n
+ \ \"2603:1040:606::400/122\",\r\n \"2603:1040:806::400/122\",\r\n
+ \ \"2603:1040:904:1::340/122\",\r\n \"2603:1040:a06:1::340/122\",\r\n
+ \ \"2603:1040:b04::400/122\",\r\n \"2603:1040:c06::400/122\",\r\n
+ \ \"2603:1040:d04::340/122\",\r\n \"2603:1040:f05:1::340/122\",\r\n
+ \ \"2603:1040:1104::300/122\",\r\n \"2603:1050:6:1::340/122\",\r\n
+ \ \"2603:1050:403::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaCentral\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.37.225.160/27\",\r\n
+ \ \"2603:1010:304::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaEast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.70.73.0/27\",\r\n
+ \ \"20.37.196.128/27\",\r\n \"40.79.162.96/27\",\r\n \"40.79.170.192/27\",\r\n
+ \ \"104.210.115.52/32\",\r\n \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n
+ \ \"2603:1010:6:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.117.100/32\",\r\n \"13.77.52.128/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"52.189.217.254/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"2603:1010:101::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.BrazilSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.97.29/32\",\r\n \"104.41.2.182/32\",\r\n \"191.232.37.60/32\",\r\n
+ \ \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n \"191.234.155.96/27\",\r\n
+ \ \"191.235.227.192/27\",\r\n \"2603:1050:6:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.96/27\",\r\n \"20.38.146.224/27\",\r\n
+ \ \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.233.40.34/32\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.246.154.224/27\",\r\n \"2603:1030:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.128/27\",\r\n \"40.86.224.98/32\",\r\n
+ \ \"40.86.224.104/32\",\r\n \"40.89.18.192/27\",\r\n \"52.235.41.66/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"2603:1030:1005::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralIndia\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.99.96/27\",\r\n \"40.80.50.224/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n
+ \ \"104.211.96.144/31\",\r\n \"2603:1040:a06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n
+ \ \"13.89.55.147/32\",\r\n \"13.89.171.224/27\",\r\n \"20.40.200.32/27\",\r\n
+ \ \"23.99.195.236/32\",\r\n \"40.77.18.99/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"52.165.44.224/32\",\r\n \"52.182.139.0/27\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n \"2603:1030:10:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.195.192/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n \"52.180.177.206/32\",\r\n
+ \ \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n \"52.180.181.239/32\",\r\n
+ \ \"2603:1030:f:1::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastAsia\",\r\n \"id\":
+ \"BatchNodeManagement.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.75.36.96/27\",\r\n
+ \ \"20.189.109.0/27\",\r\n \"23.99.98.61/32\",\r\n \"23.99.107.229/32\",\r\n
+ \ \"168.63.133.23/32\",\r\n \"168.63.208.148/32\",\r\n \"207.46.149.75/32\",\r\n
+ \ \"2603:1040:207::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastUS\",\r\n \"id\":
+ \"BatchNodeManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.92.114.103/32\",\r\n
+ \ \"20.42.6.224/27\",\r\n \"23.96.12.112/32\",\r\n \"23.96.101.73/32\",\r\n
+ \ \"23.96.109.140/32\",\r\n \"40.71.12.192/27\",\r\n \"40.78.227.0/27\",\r\n
+ \ \"40.79.154.32/27\",\r\n \"40.88.48.36/32\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"104.41.129.99/32\",\r\n \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n \"191.236.37.239/32\",\r\n
+ \ \"191.236.38.142/32\",\r\n \"2603:1030:210:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.77.80.138/32\",\r\n
+ \ \"20.41.5.224/27\",\r\n \"40.70.147.224/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"52.167.106.128/27\",\r\n \"104.208.144.128/27\",\r\n
+ \ \"104.208.156.99/32\",\r\n \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n
+ \ \"137.116.33.5/32\",\r\n \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n
+ \ \"137.116.37.146/32\",\r\n \"137.116.46.180/32\",\r\n \"2603:1030:40c:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n \"20.39.2.44/32\",\r\n
+ \ \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n \"20.39.3.186/32\",\r\n
+ \ \"20.39.12.64/27\",\r\n \"40.74.149.48/29\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n \"40.89.67.77/32\",\r\n
+ \ \"40.89.70.17/32\",\r\n \"52.138.90.64/27\",\r\n \"52.225.185.38/32\",\r\n
+ \ \"52.225.191.67/32\",\r\n \"52.253.227.240/32\",\r\n \"2603:1030:40b:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.FranceCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.40.137.186/32\",\r\n \"20.40.149.165/32\",\r\n
+ \ \"20.43.42.96/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"2603:1020:805:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.FranceSouth\",\r\n \"id\":
+ \"BatchNodeManagement.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.192/27\",\r\n
+ \ \"52.136.143.192/31\",\r\n \"2603:1020:905::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.GermanyNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n
+ \ \"2603:1020:d04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.GermanyWestCentral\",\r\n \"id\":
+ \"BatchNodeManagement.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.224/27\",\r\n \"51.116.154.32/27\",\r\n
+ \ \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n \"2603:1020:c04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.JapanEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.144.135/32\",\r\n \"13.78.108.128/27\",\r\n
+ \ \"20.43.66.96/27\",\r\n \"23.100.100.145/32\",\r\n \"23.100.103.112/32\",\r\n
+ \ \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n \"138.91.1.114/32\",\r\n
+ \ \"2603:1040:407:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.JapanWest\",\r\n \"id\":
+ \"BatchNodeManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.0/27\",\r\n
+ \ \"40.74.140.140/32\",\r\n \"40.80.58.160/27\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"138.91.17.36/32\",\r\n \"2603:1040:606::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.66.128/27\",\r\n \"20.44.27.64/27\",\r\n \"52.231.19.96/27\",\r\n
+ \ \"52.231.32.70/31\",\r\n \"52.231.32.82/32\",\r\n \"2603:1040:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.128/27\",\r\n \"52.231.147.128/27\",\r\n
+ \ \"52.231.200.112/31\",\r\n \"52.231.200.126/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorthCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.232.67/32\",\r\n \"40.80.190.192/27\",\r\n
+ \ \"52.162.110.32/27\",\r\n \"65.52.199.156/32\",\r\n \"65.52.199.188/32\",\r\n
+ \ \"157.55.167.71/32\",\r\n \"157.55.210.88/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"2603:1030:608::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.NorthEurope\",\r\n \"id\":
+ \"BatchNodeManagement.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.74.107.128/27\",\r\n \"13.79.172.125/32\",\r\n \"20.38.85.224/27\",\r\n
+ \ \"52.138.226.128/27\",\r\n \"52.164.244.189/32\",\r\n \"52.164.245.81/32\",\r\n
+ \ \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n \"52.169.235.90/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n
+ \ \"168.63.36.126/32\",\r\n \"2603:1020:5:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n
+ \ \"51.120.107.96/27\",\r\n \"51.120.211.96/27\",\r\n \"2603:1020:e04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"2603:1020:f04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"2603:1000:104:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n
+ \ \"2603:1000:4::400/122\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement.SouthCentralUS\",\r\n \"id\": \"BatchNodeManagement.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.73.249.64/27\",\r\n \"20.45.122.224/27\",\r\n \"20.49.91.64/27\",\r\n
+ \ \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n \"23.102.185.64/32\",\r\n
+ \ \"40.74.177.177/32\",\r\n \"52.249.60.22/32\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"104.214.19.192/27\",\r\n \"104.214.65.153/32\",\r\n \"2603:1030:807:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SoutheastAsia\",\r\n
+ \ \"id\": \"BatchNodeManagement.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n \"20.43.132.64/27\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.98.82.160/27\",\r\n
+ \ \"40.78.234.96/27\",\r\n \"111.221.104.48/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1040:5:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthIndia\",\r\n \"id\":
+ \"BatchNodeManagement.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.41.195.128/27\",\r\n
+ \ \"40.78.195.128/27\",\r\n \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"2603:1040:c06::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.49.192/27\",\r\n \"51.107.59.224/27\",\r\n
+ \ \"2603:1020:a04:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SwitzerlandWest\",\r\n \"id\":
+ \"BatchNodeManagement.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.107.145.160/27\",\r\n
+ \ \"51.107.155.224/27\",\r\n \"2603:1020:b04::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UAECentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n
+ \ \"2603:1040:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UAENorth\",\r\n \"id\":
+ \"BatchNodeManagement.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.38.137.192/27\",\r\n
+ \ \"65.52.251.224/27\",\r\n \"2603:1040:904:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.28.0/27\",\r\n
+ \ \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n \"51.140.148.160/27\",\r\n
+ \ \"51.140.184.59/32\",\r\n \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n
+ \ \"2603:1020:705:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UKSouth2\",\r\n \"id\":
+ \"BatchNodeManagement.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.32.176/32\",\r\n
+ \ \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n \"13.87.57.96/27\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"2603:1020:405::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.162.192/27\",\r\n
+ \ \"51.140.211.128/27\",\r\n \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n
+ \ \"51.141.8.64/32\",\r\n \"2603:1020:605::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.WestCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.160/27\",\r\n \"13.78.145.2/32\",\r\n
+ \ \"13.78.145.73/32\",\r\n \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n
+ \ \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n \"52.161.107.48/32\",\r\n
+ \ \"2603:1030:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestEurope\",\r\n \"id\":
+ \"BatchNodeManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n
+ \ \"13.81.59.254/32\",\r\n \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.115.50.9/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n \"52.174.35.218/32\",\r\n
+ \ \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n \"52.174.179.66/32\",\r\n
+ \ \"52.174.180.164/32\",\r\n \"52.233.157.9/32\",\r\n \"52.233.157.78/32\",\r\n
+ \ \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n \"52.236.186.128/26\",\r\n
+ \ \"104.40.183.25/32\",\r\n \"104.45.13.8/32\",\r\n \"104.47.149.96/32\",\r\n
+ \ \"137.116.193.225/32\",\r\n \"168.63.5.53/32\",\r\n \"191.233.76.85/32\",\r\n
+ \ \"2603:1020:206:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestIndia\",\r\n \"id\":
+ \"BatchNodeManagement.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"52.136.49.192/27\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"2603:1040:806::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n \"13.91.107.154/32\",\r\n
+ \ \"13.93.206.144/32\",\r\n \"40.82.255.64/27\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.118.208.127/32\",\r\n \"104.40.69.159/32\",\r\n \"168.62.4.114/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"2603:1030:a07::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS2\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.32/27\",\r\n
+ \ \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n \"13.66.227.193/32\",\r\n
+ \ \"40.64.128.160/27\",\r\n \"40.78.242.224/27\",\r\n \"40.78.250.160/27\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.148.148.46/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n \"2603:1030:c06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"CognitiveServicesManagement\",\r\n
+ \ \"id\": \"CognitiveServicesManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"5\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"CognitiveServicesManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.207/32\",\r\n \"13.65.241.39/32\",\r\n
+ \ \"13.66.56.76/32\",\r\n \"13.66.141.232/29\",\r\n \"13.66.142.0/26\",\r\n
+ \ \"13.67.10.80/29\",\r\n \"13.67.10.128/26\",\r\n \"13.68.82.4/32\",\r\n
+ \ \"13.68.211.223/32\",\r\n \"13.69.67.64/28\",\r\n \"13.69.67.128/26\",\r\n
+ \ \"13.69.230.0/29\",\r\n \"13.69.230.32/29\",\r\n \"13.70.74.88/29\",\r\n
+ \ \"13.70.74.120/29\",\r\n \"13.70.127.50/32\",\r\n \"13.70.149.125/32\",\r\n
+ \ \"13.71.173.216/29\",\r\n \"13.71.173.248/29\",\r\n \"13.71.196.136/29\",\r\n
+ \ \"13.71.196.168/29\",\r\n \"13.73.242.48/29\",\r\n \"13.73.242.128/26\",\r\n
+ \ \"13.73.249.0/27\",\r\n \"13.73.249.96/27\",\r\n \"13.73.249.128/28\",\r\n
+ \ \"13.73.253.122/31\",\r\n \"13.73.254.200/29\",\r\n \"13.73.254.208/29\",\r\n
+ \ \"13.73.254.216/30\",\r\n \"13.73.255.32/27\",\r\n \"13.74.139.192/32\",\r\n
+ \ \"13.75.39.64/29\",\r\n \"13.75.39.96/29\",\r\n \"13.75.92.220/32\",\r\n
+ \ \"13.75.137.81/32\",\r\n \"13.75.163.9/32\",\r\n \"13.75.168.111/32\",\r\n
+ \ \"13.77.55.152/29\",\r\n \"13.77.170.155/32\",\r\n \"13.78.17.188/32\",\r\n
+ \ \"13.78.70.7/32\",\r\n \"13.78.185.44/32\",\r\n \"13.78.187.168/32\",\r\n
+ \ \"13.83.68.180/32\",\r\n \"13.84.42.205/32\",\r\n \"13.86.178.10/32\",\r\n
+ \ \"13.86.184.142/32\",\r\n \"13.86.219.128/27\",\r\n \"13.86.219.160/29\",\r\n
+ \ \"13.87.216.38/32\",\r\n \"13.88.14.63/32\",\r\n \"13.88.26.200/32\",\r\n
+ \ \"13.91.58.176/32\",\r\n \"13.91.138.229/32\",\r\n \"13.92.179.108/32\",\r\n
+ \ \"13.93.122.1/32\",\r\n \"13.94.26.39/32\",\r\n \"20.36.120.224/27\",\r\n
+ \ \"20.36.121.192/27\",\r\n \"20.36.121.224/28\",\r\n \"20.36.125.128/26\",\r\n
+ \ \"20.37.64.224/27\",\r\n \"20.37.65.192/27\",\r\n \"20.37.65.224/28\",\r\n
+ \ \"20.37.68.36/30\",\r\n \"20.37.70.128/26\",\r\n \"20.37.70.224/27\",\r\n
+ \ \"20.37.71.208/28\",\r\n \"20.37.76.200/30\",\r\n \"20.37.156.204/30\",\r\n
+ \ \"20.37.157.96/27\",\r\n \"20.37.195.112/28\",\r\n \"20.37.195.192/27\",\r\n
+ \ \"20.37.196.160/27\",\r\n \"20.37.224.224/27\",\r\n \"20.37.225.192/27\",\r\n
+ \ \"20.37.225.224/28\",\r\n \"20.37.229.192/26\",\r\n \"20.38.84.108/30\",\r\n
+ \ \"20.38.85.160/27\",\r\n \"20.38.87.128/27\",\r\n \"20.38.87.160/28\",\r\n
+ \ \"20.38.136.240/28\",\r\n \"20.38.137.128/27\",\r\n \"20.38.137.224/27\",\r\n
+ \ \"20.38.141.12/30\",\r\n \"20.38.142.128/26\",\r\n \"20.38.142.224/27\",\r\n
+ \ \"20.38.143.240/28\",\r\n \"20.39.11.112/28\",\r\n \"20.39.12.0/27\",\r\n
+ \ \"20.39.12.96/27\",\r\n \"20.39.15.56/31\",\r\n \"20.39.15.60/30\",\r\n
+ \ \"20.40.125.208/32\",\r\n \"20.40.164.245/32\",\r\n \"20.40.170.73/32\",\r\n
+ \ \"20.40.187.210/32\",\r\n \"20.40.188.109/32\",\r\n \"20.40.190.135/32\",\r\n
+ \ \"20.40.190.225/32\",\r\n \"20.40.200.64/27\",\r\n \"20.40.200.96/28\",\r\n
+ \ \"20.40.207.152/29\",\r\n \"20.40.224.32/28\",\r\n \"20.40.224.48/30\",\r\n
+ \ \"20.40.224.56/29\",\r\n \"20.40.225.64/26\",\r\n \"20.40.225.192/26\",\r\n
+ \ \"20.40.229.64/28\",\r\n \"20.41.5.160/27\",\r\n \"20.41.65.192/27\",\r\n
+ \ \"20.41.66.160/27\",\r\n \"20.41.66.192/28\",\r\n \"20.41.69.40/29\",\r\n
+ \ \"20.41.69.56/30\",\r\n \"20.41.193.176/28\",\r\n \"20.41.193.192/27\",\r\n
+ \ \"20.41.195.160/27\",\r\n \"20.41.208.0/30\",\r\n \"20.42.4.204/30\",\r\n
+ \ \"20.42.6.144/28\",\r\n \"20.42.6.160/27\",\r\n \"20.42.7.128/27\",\r\n
+ \ \"20.42.131.240/28\",\r\n \"20.42.227.144/28\",\r\n \"20.42.227.160/27\",\r\n
+ \ \"20.42.228.128/27\",\r\n \"20.43.42.16/28\",\r\n \"20.43.42.32/27\",\r\n
+ \ \"20.43.43.0/27\",\r\n \"20.43.45.232/29\",\r\n \"20.43.45.244/30\",\r\n
+ \ \"20.43.47.0/26\",\r\n \"20.43.47.128/27\",\r\n \"20.43.66.16/28\",\r\n
+ \ \"20.43.66.32/27\",\r\n \"20.43.67.0/27\",\r\n \"20.43.88.240/32\",\r\n
+ \ \"20.43.121.0/29\",\r\n \"20.43.121.32/29\",\r\n \"20.43.131.48/28\",\r\n
+ \ \"20.43.132.0/27\",\r\n \"20.43.132.96/27\",\r\n \"20.44.8.160/29\",\r\n
+ \ \"20.44.8.192/29\",\r\n \"20.44.17.16/29\",\r\n \"20.44.17.48/29\",\r\n
+ \ \"20.44.27.120/29\",\r\n \"20.44.27.216/29\",\r\n \"20.45.67.213/32\",\r\n
+ \ \"20.45.112.224/27\",\r\n \"20.45.113.192/27\",\r\n \"20.45.113.224/28\",\r\n
+ \ \"20.45.116.128/26\",\r\n \"20.45.116.240/28\",\r\n \"20.45.192.126/31\",\r\n
+ \ \"20.45.195.128/27\",\r\n \"20.45.195.224/27\",\r\n \"20.45.196.0/28\",\r\n
+ \ \"20.45.198.88/29\",\r\n \"20.45.199.36/30\",\r\n \"20.46.10.128/26\",\r\n
+ \ \"20.46.10.192/27\",\r\n \"20.46.11.224/28\",\r\n \"20.48.192.64/29\",\r\n
+ \ \"20.48.192.80/30\",\r\n \"20.48.193.64/26\",\r\n \"20.48.193.192/27\",\r\n
+ \ \"20.48.196.240/28\",\r\n \"20.49.96.128/27\",\r\n \"20.49.96.160/28\",\r\n
+ \ \"20.49.102.56/29\",\r\n \"20.49.102.192/28\",\r\n \"20.49.102.208/30\",\r\n
+ \ \"20.49.102.216/29\",\r\n \"20.49.102.224/30\",\r\n \"20.49.103.128/26\",\r\n
+ \ \"20.49.114.160/29\",\r\n \"20.49.114.176/29\",\r\n \"20.49.114.184/30\",\r\n
+ \ \"20.49.114.224/27\",\r\n \"20.49.115.192/26\",\r\n \"20.49.118.64/27\",\r\n
+ \ \"20.49.119.208/28\",\r\n \"20.49.126.136/29\",\r\n \"20.49.126.144/29\",\r\n
+ \ \"20.49.126.152/30\",\r\n \"20.49.126.224/27\",\r\n \"20.50.1.16/28\",\r\n
+ \ \"20.50.68.126/31\",\r\n \"20.51.8.128/26\",\r\n \"20.51.8.224/27\",\r\n
+ \ \"20.51.12.192/27\",\r\n \"20.51.12.224/28\",\r\n \"20.51.16.192/26\",\r\n
+ \ \"20.51.17.32/27\",\r\n \"20.51.20.112/28\",\r\n \"20.52.64.16/29\",\r\n
+ \ \"20.52.72.48/29\",\r\n \"20.52.88.128/28\",\r\n \"20.53.41.32/29\",\r\n
+ \ \"20.53.41.40/30\",\r\n \"20.53.41.48/28\",\r\n \"20.53.44.0/30\",\r\n
+ \ \"20.53.44.128/26\",\r\n \"20.53.44.192/27\",\r\n \"20.53.47.80/28\",\r\n
+ \ \"20.53.48.176/28\",\r\n \"20.53.56.112/28\",\r\n \"20.58.66.64/27\",\r\n
+ \ \"20.58.67.32/28\",\r\n \"20.61.96.168/29\",\r\n \"20.61.96.176/29\",\r\n
+ \ \"20.61.96.188/30\",\r\n \"20.61.97.64/27\",\r\n \"20.61.98.64/31\",\r\n
+ \ \"20.61.98.192/26\",\r\n \"20.61.99.32/27\",\r\n \"20.61.103.80/28\",\r\n
+ \ \"20.62.58.0/26\",\r\n \"20.62.59.96/28\",\r\n \"20.62.128.144/30\",\r\n
+ \ \"20.62.129.64/26\",\r\n \"20.62.129.160/27\",\r\n \"20.62.134.80/28\",\r\n
+ \ \"20.65.130.0/26\",\r\n \"20.65.130.128/26\",\r\n \"20.65.133.96/28\",\r\n
+ \ \"20.66.2.64/26\",\r\n \"20.66.2.160/27\",\r\n \"20.66.4.240/28\",\r\n
+ \ \"20.69.0.240/28\",\r\n \"20.72.20.64/27\",\r\n \"20.72.20.128/26\",\r\n
+ \ \"20.72.21.8/29\",\r\n \"20.150.161.160/27\",\r\n \"20.150.164.128/27\",\r\n
+ \ \"20.150.164.160/28\",\r\n \"20.150.167.64/26\",\r\n \"20.150.174.136/29\",\r\n
+ \ \"20.150.241.80/29\",\r\n \"20.150.244.48/28\",\r\n \"20.150.244.128/27\",\r\n
+ \ \"20.184.58.62/32\",\r\n \"20.184.240.78/32\",\r\n \"20.184.241.66/32\",\r\n
+ \ \"20.184.241.238/32\",\r\n \"20.184.242.113/32\",\r\n \"20.184.242.115/32\",\r\n
+ \ \"20.184.242.189/32\",\r\n \"20.185.105.28/32\",\r\n \"20.187.195.152/29\",\r\n
+ \ \"20.187.196.192/30\",\r\n \"20.187.197.64/26\",\r\n \"20.187.197.160/27\",\r\n
+ \ \"20.189.108.64/27\",\r\n \"20.189.109.32/27\",\r\n \"20.189.109.64/28\",\r\n
+ \ \"20.189.111.200/30\",\r\n \"20.189.111.208/28\",\r\n \"20.189.225.0/26\",\r\n
+ \ \"20.189.225.96/27\",\r\n \"20.189.228.144/28\",\r\n \"20.191.160.8/29\",\r\n
+ \ \"20.191.160.20/30\",\r\n \"20.191.160.96/28\",\r\n \"20.191.160.112/30\",\r\n
+ \ \"20.191.161.128/26\",\r\n \"20.191.161.224/27\",\r\n \"20.191.166.96/28\",\r\n
+ \ \"20.192.44.96/28\",\r\n \"20.192.48.192/28\",\r\n \"20.192.50.80/28\",\r\n
+ \ \"20.192.50.208/29\",\r\n \"20.192.80.32/28\",\r\n \"20.192.161.144/28\",\r\n
+ \ \"20.192.161.160/27\",\r\n \"20.192.164.128/27\",\r\n \"20.192.167.64/26\",\r\n
+ \ \"20.192.184.84/30\",\r\n \"20.192.225.208/28\",\r\n \"20.192.225.224/27\",\r\n
+ \ \"20.192.228.192/27\",\r\n \"20.192.231.128/26\",\r\n \"20.193.194.0/28\",\r\n
+ \ \"20.193.194.48/29\",\r\n \"20.193.194.64/28\",\r\n \"20.194.72.64/26\",\r\n
+ \ \"20.194.72.192/27\",\r\n \"20.194.74.64/28\",\r\n \"20.195.65.240/29\",\r\n
+ \ \"20.195.72.240/28\",\r\n \"20.195.146.80/28\",\r\n \"23.96.13.121/32\",\r\n
+ \ \"23.96.229.148/32\",\r\n \"23.98.107.28/30\",\r\n \"23.98.107.200/29\",\r\n
+ \ \"23.98.107.208/28\",\r\n \"23.98.108.36/30\",\r\n \"23.98.108.40/31\",\r\n
+ \ \"23.98.108.192/26\",\r\n \"23.98.109.32/29\",\r\n \"23.100.0.32/32\",\r\n
+ \ \"23.100.57.171/32\",\r\n \"23.100.59.49/32\",\r\n \"40.64.128.192/27\",\r\n
+ \ \"40.64.134.140/30\",\r\n \"40.64.134.168/29\",\r\n \"40.64.134.176/28\",\r\n
+ \ \"40.64.135.80/29\",\r\n \"40.67.48.224/27\",\r\n \"40.67.49.192/27\",\r\n
+ \ \"40.67.49.224/28\",\r\n \"40.67.52.128/26\",\r\n \"40.67.53.160/28\",\r\n
+ \ \"40.69.73.194/32\",\r\n \"40.69.104.32/30\",\r\n \"40.69.111.36/30\",\r\n
+ \ \"40.70.47.165/32\",\r\n \"40.70.241.203/32\",\r\n \"40.74.30.108/30\",\r\n
+ \ \"40.74.31.64/26\",\r\n \"40.74.64.203/32\",\r\n \"40.78.20.224/32\",\r\n
+ \ \"40.78.204.0/29\",\r\n \"40.78.204.32/29\",\r\n \"40.79.132.48/29\",\r\n
+ \ \"40.79.132.80/29\",\r\n \"40.79.156.64/27\",\r\n \"40.79.176.32/30\",\r\n
+ \ \"40.79.187.168/29\",\r\n \"40.79.187.200/29\",\r\n \"40.80.57.208/28\",\r\n
+ \ \"40.80.57.224/27\",\r\n \"40.80.58.192/27\",\r\n \"40.80.63.152/30\",\r\n
+ \ \"40.80.63.224/28\",\r\n \"40.80.63.240/30\",\r\n \"40.80.169.192/27\",\r\n
+ \ \"40.80.170.160/27\",\r\n \"40.80.170.192/28\",\r\n \"40.80.172.28/30\",\r\n
+ \ \"40.80.176.0/28\",\r\n \"40.80.188.112/28\",\r\n \"40.80.190.128/27\",\r\n
+ \ \"40.80.190.224/27\",\r\n \"40.82.253.200/30\",\r\n \"40.82.253.208/28\",\r\n
+ \ \"40.82.255.0/26\",\r\n \"40.82.255.96/27\",\r\n \"40.85.230.100/32\",\r\n
+ \ \"40.86.227.247/32\",\r\n \"40.87.48.184/32\",\r\n \"40.88.22.25/32\",\r\n
+ \ \"40.89.17.240/28\",\r\n \"40.89.18.128/27\",\r\n \"40.89.18.224/27\",\r\n
+ \ \"40.89.23.36/30\",\r\n \"40.89.133.209/32\",\r\n \"40.89.134.214/32\",\r\n
+ \ \"40.90.138.4/32\",\r\n \"40.90.139.2/32\",\r\n \"40.90.139.36/32\",\r\n
+ \ \"40.90.139.163/32\",\r\n \"40.90.141.99/32\",\r\n \"40.112.254.71/32\",\r\n
+ \ \"40.113.124.208/32\",\r\n \"40.113.226.173/32\",\r\n \"40.115.248.103/32\",\r\n
+ \ \"40.117.154.42/32\",\r\n \"40.117.232.90/32\",\r\n \"40.119.2.134/32\",\r\n
+ \ \"40.119.11.216/29\",\r\n \"40.120.8.48/30\",\r\n \"40.121.217.232/32\",\r\n
+ \ \"40.122.42.111/32\",\r\n \"40.123.205.29/32\",\r\n \"40.123.210.248/32\",\r\n
+ \ \"40.123.214.182/32\",\r\n \"40.123.214.251/32\",\r\n \"40.123.218.49/32\",\r\n
+ \ \"40.127.76.4/32\",\r\n \"40.127.76.10/32\",\r\n \"40.127.165.113/32\",\r\n
+ \ \"51.11.97.80/29\",\r\n \"51.12.17.32/28\",\r\n \"51.12.17.136/29\",\r\n
+ \ \"51.12.17.144/28\",\r\n \"51.12.25.32/28\",\r\n \"51.12.25.208/29\",\r\n
+ \ \"51.12.41.48/28\",\r\n \"51.12.41.128/27\",\r\n \"51.12.41.224/27\",\r\n
+ \ \"51.12.43.192/26\",\r\n \"51.12.46.240/28\",\r\n \"51.12.193.48/28\",\r\n
+ \ \"51.12.193.128/27\",\r\n \"51.12.193.224/27\",\r\n \"51.12.195.128/26\",\r\n
+ \ \"51.13.1.0/29\",\r\n \"51.13.128.72/29\",\r\n \"51.13.136.64/26\",\r\n
+ \ \"51.13.137.192/28\",\r\n \"51.13.137.224/27\",\r\n \"51.104.25.240/28\",\r\n
+ \ \"51.104.27.64/27\",\r\n \"51.104.28.32/27\",\r\n \"51.104.31.160/29\",\r\n
+ \ \"51.104.31.168/30\",\r\n \"51.104.31.176/28\",\r\n \"51.105.67.176/29\",\r\n
+ \ \"51.105.67.208/29\",\r\n \"51.105.80.224/27\",\r\n \"51.105.81.192/27\",\r\n
+ \ \"51.105.81.224/28\",\r\n \"51.105.89.128/27\",\r\n \"51.105.89.224/27\",\r\n
+ \ \"51.105.90.0/28\",\r\n \"51.105.92.52/30\",\r\n \"51.105.170.64/32\",\r\n
+ \ \"51.107.48.240/28\",\r\n \"51.107.49.128/27\",\r\n \"51.107.49.224/27\",\r\n
+ \ \"51.107.52.216/29\",\r\n \"51.107.53.36/30\",\r\n \"51.107.53.40/29\",\r\n
+ \ \"51.107.84.104/32\",\r\n \"51.107.128.24/29\",\r\n \"51.107.144.224/27\",\r\n
+ \ \"51.107.145.192/27\",\r\n \"51.107.145.224/28\",\r\n \"51.107.148.20/30\",\r\n
+ \ \"51.107.148.64/28\",\r\n \"51.107.192.72/29\",\r\n \"51.107.241.0/26\",\r\n
+ \ \"51.107.241.128/27\",\r\n \"51.107.242.224/28\",\r\n \"51.107.249.0/26\",\r\n
+ \ \"51.107.249.128/27\",\r\n \"51.107.250.240/28\",\r\n \"51.116.48.144/28\",\r\n
+ \ \"51.116.48.160/27\",\r\n \"51.116.49.0/27\",\r\n \"51.116.51.192/26\",\r\n
+ \ \"51.116.54.176/28\",\r\n \"51.116.55.64/28\",\r\n \"51.116.144.144/28\",\r\n
+ \ \"51.116.144.160/27\",\r\n \"51.116.145.0/27\",\r\n \"51.116.148.128/26\",\r\n
+ \ \"51.116.149.208/28\",\r\n \"51.120.40.240/28\",\r\n \"51.120.41.128/27\",\r\n
+ \ \"51.120.41.224/27\",\r\n \"51.120.109.192/29\",\r\n \"51.120.224.224/27\",\r\n
+ \ \"51.120.225.192/27\",\r\n \"51.120.225.224/28\",\r\n \"51.120.232.64/26\",\r\n
+ \ \"51.120.233.144/28\",\r\n \"51.120.233.160/27\",\r\n \"51.120.237.0/29\",\r\n
+ \ \"51.124.95.46/32\",\r\n \"51.124.140.143/32\",\r\n \"51.137.162.128/27\",\r\n
+ \ \"51.137.162.224/27\",\r\n \"51.137.163.0/28\",\r\n \"51.137.166.28/30\",\r\n
+ \ \"51.137.166.44/30\",\r\n \"51.137.166.48/28\",\r\n \"51.137.167.192/26\",\r\n
+ \ \"51.138.40.194/32\",\r\n \"51.138.41.75/32\",\r\n \"51.138.160.4/30\",\r\n
+ \ \"51.138.210.144/28\",\r\n \"51.140.5.56/32\",\r\n \"51.140.105.165/32\",\r\n
+ \ \"51.140.202.0/32\",\r\n \"51.143.192.224/27\",\r\n \"51.143.193.192/27\",\r\n
+ \ \"51.143.193.224/28\",\r\n \"51.143.208.128/30\",\r\n \"51.143.209.0/26\",\r\n
+ \ \"51.143.209.64/27\",\r\n \"51.143.212.160/28\",\r\n \"51.144.83.210/32\",\r\n
+ \ \"52.136.48.240/28\",\r\n \"52.136.49.128/27\",\r\n \"52.136.49.224/27\",\r\n
+ \ \"52.136.53.0/26\",\r\n \"52.136.184.128/26\",\r\n \"52.136.184.192/27\",\r\n
+ \ \"52.136.185.160/28\",\r\n \"52.138.41.171/32\",\r\n \"52.138.92.172/30\",\r\n
+ \ \"52.139.106.0/26\",\r\n \"52.139.106.128/27\",\r\n \"52.139.107.192/28\",\r\n
+ \ \"52.140.105.192/27\",\r\n \"52.140.106.160/27\",\r\n \"52.140.106.192/28\",\r\n
+ \ \"52.140.110.96/29\",\r\n \"52.140.110.104/30\",\r\n \"52.140.110.112/28\",\r\n
+ \ \"52.140.110.160/30\",\r\n \"52.140.111.128/26\",\r\n \"52.140.111.224/27\",\r\n
+ \ \"52.142.81.236/32\",\r\n \"52.142.83.87/32\",\r\n \"52.142.84.66/32\",\r\n
+ \ \"52.142.85.51/32\",\r\n \"52.143.91.192/28\",\r\n \"52.146.79.144/28\",\r\n
+ \ \"52.146.79.224/27\",\r\n \"52.146.131.32/28\",\r\n \"52.146.131.48/30\",\r\n
+ \ \"52.146.131.96/27\",\r\n \"52.146.132.128/26\",\r\n \"52.146.133.0/27\",\r\n
+ \ \"52.146.137.16/28\",\r\n \"52.147.43.145/32\",\r\n \"52.147.44.12/32\",\r\n
+ \ \"52.147.97.4/30\",\r\n \"52.147.112.0/26\",\r\n \"52.147.112.64/27\",\r\n
+ \ \"52.147.112.208/28\",\r\n \"52.149.31.64/28\",\r\n \"52.150.139.192/27\",\r\n
+ \ \"52.150.140.160/27\",\r\n \"52.150.140.192/28\",\r\n \"52.150.154.200/29\",\r\n
+ \ \"52.150.154.208/28\",\r\n \"52.150.156.32/30\",\r\n \"52.150.156.40/30\",\r\n
+ \ \"52.150.157.64/26\",\r\n \"52.150.157.128/27\",\r\n \"52.152.207.160/28\",\r\n
+ \ \"52.152.207.192/28\",\r\n \"52.155.218.251/32\",\r\n \"52.156.93.240/28\",\r\n
+ \ \"52.156.103.64/27\",\r\n \"52.156.103.96/28\",\r\n \"52.161.16.73/32\",\r\n
+ \ \"52.162.110.248/29\",\r\n \"52.162.111.24/29\",\r\n \"52.163.56.146/32\",\r\n
+ \ \"52.168.112.0/26\",\r\n \"52.171.134.140/32\",\r\n \"52.172.112.0/28\",\r\n
+ \ \"52.172.112.16/29\",\r\n \"52.172.112.192/26\",\r\n \"52.172.113.32/27\",\r\n
+ \ \"52.172.116.16/28\",\r\n \"52.172.187.21/32\",\r\n \"52.173.240.242/32\",\r\n
+ \ \"52.174.60.141/32\",\r\n \"52.174.146.221/32\",\r\n \"52.175.18.186/32\",\r\n
+ \ \"52.175.35.166/32\",\r\n \"52.179.13.227/32\",\r\n \"52.179.14.109/32\",\r\n
+ \ \"52.179.113.96/27\",\r\n \"52.179.113.128/28\",\r\n \"52.180.162.194/32\",\r\n
+ \ \"52.180.166.172/32\",\r\n \"52.180.178.146/32\",\r\n \"52.180.179.119/32\",\r\n
+ \ \"52.183.33.203/32\",\r\n \"52.186.33.48/28\",\r\n \"52.186.91.216/32\",\r\n
+ \ \"52.187.20.181/32\",\r\n \"52.187.39.99/32\",\r\n \"52.190.33.56/32\",\r\n
+ \ \"52.190.33.61/32\",\r\n \"52.190.33.154/32\",\r\n \"52.191.160.229/32\",\r\n
+ \ \"52.191.173.81/32\",\r\n \"52.224.200.129/32\",\r\n \"52.225.176.80/32\",\r\n
+ \ \"52.228.83.128/27\",\r\n \"52.228.83.224/27\",\r\n \"52.228.84.0/28\",\r\n
+ \ \"52.229.16.14/32\",\r\n \"52.231.74.63/32\",\r\n \"52.231.79.142/32\",\r\n
+ \ \"52.231.148.200/30\",\r\n \"52.231.159.35/32\",\r\n \"52.233.163.218/32\",\r\n
+ \ \"52.237.137.4/32\",\r\n \"52.249.207.163/32\",\r\n \"52.255.83.208/28\",\r\n
+ \ \"52.255.84.176/28\",\r\n \"52.255.84.192/28\",\r\n \"52.255.124.16/28\",\r\n
+ \ \"52.255.124.80/28\",\r\n \"52.255.124.96/28\",\r\n \"65.52.205.19/32\",\r\n
+ \ \"65.52.252.208/28\",\r\n \"102.37.81.64/28\",\r\n \"102.37.160.144/28\",\r\n
+ \ \"102.133.28.72/29\",\r\n \"102.133.28.104/29\",\r\n \"102.133.56.144/28\",\r\n
+ \ \"102.133.56.224/27\",\r\n \"102.133.61.192/26\",\r\n \"102.133.75.174/32\",\r\n
+ \ \"102.133.123.248/29\",\r\n \"102.133.124.24/29\",\r\n
+ \ \"102.133.124.88/29\",\r\n \"102.133.124.96/29\",\r\n \"102.133.156.128/29\",\r\n
+ \ \"102.133.161.242/32\",\r\n \"102.133.162.109/32\",\r\n
+ \ \"102.133.162.196/32\",\r\n \"102.133.162.221/32\",\r\n
+ \ \"102.133.163.185/32\",\r\n \"102.133.217.80/28\",\r\n
+ \ \"102.133.217.96/27\",\r\n \"102.133.218.0/27\",\r\n \"102.133.220.192/30\",\r\n
+ \ \"102.133.221.64/26\",\r\n \"102.133.221.128/27\",\r\n
+ \ \"102.133.236.198/32\",\r\n \"104.42.100.80/32\",\r\n \"104.42.194.173/32\",\r\n
+ \ \"104.42.239.93/32\",\r\n \"104.44.89.44/32\",\r\n \"104.46.112.239/32\",\r\n
+ \ \"104.46.176.164/30\",\r\n \"104.46.176.176/28\",\r\n \"104.46.178.4/30\",\r\n
+ \ \"104.46.178.192/26\",\r\n \"104.46.179.0/27\",\r\n \"104.46.183.128/28\",\r\n
+ \ \"104.46.239.137/32\",\r\n \"104.211.88.173/32\",\r\n \"104.211.222.193/32\",\r\n
+ \ \"104.214.49.162/32\",\r\n \"104.214.233.86/32\",\r\n \"104.215.9.217/32\",\r\n
+ \ \"137.117.70.195/32\",\r\n \"137.135.45.32/32\",\r\n \"168.61.158.107/32\",\r\n
+ \ \"168.61.165.229/32\",\r\n \"168.63.20.177/32\",\r\n \"191.232.39.30/32\",\r\n
+ \ \"191.232.162.204/32\",\r\n \"191.233.10.48/28\",\r\n \"191.233.10.64/27\",\r\n
+ \ \"191.233.10.128/27\",\r\n \"191.233.15.64/26\",\r\n \"191.233.205.72/29\",\r\n
+ \ \"191.233.205.104/29\",\r\n \"191.234.138.136/29\",\r\n
+ \ \"191.234.138.148/30\",\r\n \"191.234.139.192/26\",\r\n
+ \ \"191.234.142.32/27\",\r\n \"191.235.227.128/27\",\r\n
+ \ \"191.235.227.224/27\",\r\n \"191.235.228.0/28\",\r\n \"191.238.72.80/28\",\r\n
+ \ \"2603:1000:4::680/122\",\r\n \"2603:1000:104::180/122\",\r\n
+ \ \"2603:1000:104::380/122\",\r\n \"2603:1000:104:1::640/122\",\r\n
+ \ \"2603:1010:6::80/122\",\r\n \"2603:1010:6:1::640/122\",\r\n
+ \ \"2603:1010:101::680/122\",\r\n \"2603:1010:304::680/122\",\r\n
+ \ \"2603:1010:404::680/122\",\r\n \"2603:1020:5::80/122\",\r\n
+ \ \"2603:1020:5:1::640/122\",\r\n \"2603:1020:206::80/122\",\r\n
+ \ \"2603:1020:206:1::640/122\",\r\n \"2603:1020:305::680/122\",\r\n
+ \ \"2603:1020:405::680/122\",\r\n \"2603:1020:605::680/122\",\r\n
+ \ \"2603:1020:705::80/122\",\r\n \"2603:1020:705:1::640/122\",\r\n
+ \ \"2603:1020:805::80/122\",\r\n \"2603:1020:805:1::640/122\",\r\n
+ \ \"2603:1020:905::680/122\",\r\n \"2603:1020:a04::80/122\",\r\n
+ \ \"2603:1020:a04:1::640/122\",\r\n \"2603:1020:b04::680/122\",\r\n
+ \ \"2603:1020:c04::80/122\",\r\n \"2603:1020:c04:1::640/122\",\r\n
+ \ \"2603:1020:d04::680/122\",\r\n \"2603:1020:e04::80/122\",\r\n
+ \ \"2603:1020:e04::358/125\",\r\n \"2603:1020:e04:1::640/122\",\r\n
+ \ \"2603:1020:e04:2::/122\",\r\n \"2603:1020:e04:3::280/122\",\r\n
+ \ \"2603:1020:f04::680/122\",\r\n \"2603:1020:f04:2::/122\",\r\n
+ \ \"2603:1020:1004::640/122\",\r\n \"2603:1020:1004:1::80/122\",\r\n
+ \ \"2603:1020:1004:1::1f0/125\",\r\n \"2603:1020:1004:1::300/122\",\r\n
+ \ \"2603:1020:1004:1::740/122\",\r\n \"2603:1020:1104::700/121\",\r\n
+ \ \"2603:1020:1104:1::150/125\",\r\n \"2603:1020:1104:1::480/122\",\r\n
+ \ \"2603:1030:f:1::2b8/125\",\r\n \"2603:1030:f:1::680/122\",\r\n
+ \ \"2603:1030:f:2::600/121\",\r\n \"2603:1030:10::80/122\",\r\n
+ \ \"2603:1030:10:1::640/122\",\r\n \"2603:1030:104::80/122\",\r\n
+ \ \"2603:1030:104:1::640/122\",\r\n \"2603:1030:107::730/125\",\r\n
+ \ \"2603:1030:107::740/122\",\r\n \"2603:1030:107::780/122\",\r\n
+ \ \"2603:1030:210::80/122\",\r\n \"2603:1030:210:1::640/122\",\r\n
+ \ \"2603:1030:40b:1::640/122\",\r\n \"2603:1030:40c::80/122\",\r\n
+ \ \"2603:1030:40c:1::640/122\",\r\n \"2603:1030:504::80/122\",\r\n
+ \ \"2603:1030:504::1f0/125\",\r\n \"2603:1030:504::300/122\",\r\n
+ \ \"2603:1030:504:1::640/122\",\r\n \"2603:1030:504:2::200/122\",\r\n
+ \ \"2603:1030:608::680/122\",\r\n \"2603:1030:807::80/122\",\r\n
+ \ \"2603:1030:807:1::640/122\",\r\n \"2603:1030:a07::680/122\",\r\n
+ \ \"2603:1030:b04::680/122\",\r\n \"2603:1030:c06:1::640/122\",\r\n
+ \ \"2603:1030:f05::80/122\",\r\n \"2603:1030:f05:1::640/122\",\r\n
+ \ \"2603:1030:1005::680/122\",\r\n \"2603:1040:5::180/122\",\r\n
+ \ \"2603:1040:5:1::640/122\",\r\n \"2603:1040:207::680/122\",\r\n
+ \ \"2603:1040:407::80/122\",\r\n \"2603:1040:407:1::640/122\",\r\n
+ \ \"2603:1040:606::680/122\",\r\n \"2603:1040:806::680/122\",\r\n
+ \ \"2603:1040:904::80/122\",\r\n \"2603:1040:904:1::640/122\",\r\n
+ \ \"2603:1040:a06::180/122\",\r\n \"2603:1040:a06:1::640/122\",\r\n
+ \ \"2603:1040:b04::680/122\",\r\n \"2603:1040:c06::680/122\",\r\n
+ \ \"2603:1040:d04::640/122\",\r\n \"2603:1040:d04:1::80/122\",\r\n
+ \ \"2603:1040:d04:1::1f0/125\",\r\n \"2603:1040:d04:1::300/122\",\r\n
+ \ \"2603:1040:d04:1::740/122\",\r\n \"2603:1040:f05::80/122\",\r\n
+ \ \"2603:1040:f05::358/125\",\r\n \"2603:1040:f05:1::640/122\",\r\n
+ \ \"2603:1040:f05:2::80/121\",\r\n \"2603:1040:1104::700/121\",\r\n
+ \ \"2603:1040:1104:1::150/125\",\r\n \"2603:1040:1104:1::500/122\",\r\n
+ \ \"2603:1050:6::80/122\",\r\n \"2603:1050:6:1::640/122\",\r\n
+ \ \"2603:1050:403::640/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory\",\r\n \"id\": \"DataFactory\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"13.67.10.208/28\",\r\n
+ \ \"13.69.67.192/28\",\r\n \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n
+ \ \"13.69.230.96/28\",\r\n \"13.70.74.144/28\",\r\n \"13.71.175.80/28\",\r\n
+ \ \"13.71.199.0/28\",\r\n \"13.73.244.32/28\",\r\n \"13.73.253.96/29\",\r\n
+ \ \"13.74.108.224/28\",\r\n \"13.75.39.112/28\",\r\n \"13.77.53.160/28\",\r\n
+ \ \"13.78.109.192/28\",\r\n \"13.86.219.208/28\",\r\n \"13.89.174.192/28\",\r\n
+ \ \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n \"13.104.252.224/28\",\r\n
+ \ \"13.104.253.48/28\",\r\n \"13.104.254.128/28\",\r\n \"20.36.117.208/28\",\r\n
+ \ \"20.36.124.32/28\",\r\n \"20.36.124.128/25\",\r\n \"20.36.125.0/26\",\r\n
+ \ \"20.37.68.144/28\",\r\n \"20.37.69.128/25\",\r\n \"20.37.70.0/26\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.37.193.0/25\",\r\n
+ \ \"20.37.193.128/26\",\r\n \"20.37.198.224/29\",\r\n \"20.37.228.16/28\",\r\n
+ \ \"20.37.228.192/26\",\r\n \"20.37.229.0/25\",\r\n \"20.38.80.192/26\",\r\n
+ \ \"20.38.82.0/23\",\r\n \"20.38.141.16/28\",\r\n \"20.38.141.128/25\",\r\n
+ \ \"20.38.142.0/26\",\r\n \"20.38.147.224/28\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"20.40.206.224/29\",\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n
+ \ \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n \"20.41.197.112/29\",\r\n
+ \ \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n \"20.42.2.0/23\",\r\n
+ \ \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n
+ \ \"20.43.44.208/29\",\r\n \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n
+ \ \"20.43.70.120/29\",\r\n \"20.43.121.48/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.44.10.64/28\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.45.123.160/28\",\r\n \"20.49.83.224/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"20.49.111.0/29\",\r\n \"20.49.114.24/29\",\r\n
+ \ \"20.49.118.128/25\",\r\n \"20.50.68.56/29\",\r\n \"20.52.64.0/28\",\r\n
+ \ \"20.53.0.48/28\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n \"20.72.22.0/23\",\r\n
+ \ \"20.72.28.48/28\",\r\n \"20.150.162.0/23\",\r\n \"20.150.173.16/28\",\r\n
+ \ \"20.150.181.112/28\",\r\n \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n
+ \ \"20.189.109.232/29\",\r\n \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n
+ \ \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n \"20.192.162.0/23\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"20.192.226.0/23\",\r\n \"20.192.238.96/28\",\r\n
+ \ \"20.193.205.144/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n \"23.98.106.128/29\",\r\n
+ \ \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n \"40.64.132.232/29\",\r\n
+ \ \"40.69.108.160/28\",\r\n \"40.69.111.48/28\",\r\n \"40.70.148.160/28\",\r\n
+ \ \"40.71.14.32/28\",\r\n \"40.74.24.192/26\",\r\n \"40.74.26.0/23\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"40.78.196.128/28\",\r\n
+ \ \"40.78.229.96/28\",\r\n \"40.78.236.176/28\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n
+ \ \"40.79.146.240/28\",\r\n \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n
+ \ \"40.79.187.208/28\",\r\n \"40.79.195.224/28\",\r\n \"40.80.51.160/28\",\r\n
+ \ \"40.80.56.128/25\",\r\n \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n
+ \ \"40.80.168.128/25\",\r\n \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n
+ \ \"40.80.176.96/28\",\r\n \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n
+ \ \"40.82.249.64/26\",\r\n \"40.82.250.0/23\",\r\n \"40.89.16.128/25\",\r\n
+ \ \"40.89.17.0/26\",\r\n \"40.89.20.224/29\",\r\n \"40.113.176.232/29\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"40.120.8.56/29\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"40.122.0.16/28\",\r\n
+ \ \"51.12.18.0/23\",\r\n \"51.12.26.0/23\",\r\n \"51.12.101.176/28\",\r\n
+ \ \"51.12.206.16/28\",\r\n \"51.12.229.64/28\",\r\n \"51.12.237.64/28\",\r\n
+ \ \"51.13.128.0/28\",\r\n \"51.104.9.32/28\",\r\n \"51.104.24.128/25\",\r\n
+ \ \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n \"51.105.67.240/28\",\r\n
+ \ \"51.105.75.240/28\",\r\n \"51.105.92.176/28\",\r\n \"51.105.93.64/26\",\r\n
+ \ \"51.105.93.128/25\",\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n
+ \ \"51.107.52.128/26\",\r\n \"51.107.128.0/28\",\r\n \"51.107.148.80/28\",\r\n
+ \ \"51.107.149.0/25\",\r\n \"51.107.149.128/26\",\r\n \"51.107.192.80/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"51.120.44.208/28\",\r\n \"51.120.45.64/26\",\r\n
+ \ \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n \"51.120.109.96/28\",\r\n
+ \ \"51.120.213.32/28\",\r\n \"51.120.228.224/27\",\r\n \"51.120.229.64/26\",\r\n
+ \ \"51.120.229.128/25\",\r\n \"51.120.238.0/23\",\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.138.160.16/28\",\r\n
+ \ \"51.140.212.112/28\",\r\n \"52.138.92.128/28\",\r\n \"52.138.229.32/28\",\r\n
+ \ \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n \"52.140.108.208/29\",\r\n
+ \ \"52.150.136.192/26\",\r\n \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n
+ \ \"52.150.155.0/24\",\r\n \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n
+ \ \"52.162.111.48/28\",\r\n \"52.167.107.224/28\",\r\n \"52.176.232.16/28\",\r\n
+ \ \"52.182.141.16/28\",\r\n \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n
+ \ \"52.228.86.144/29\",\r\n \"52.231.20.64/28\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\",\r\n \"52.236.187.112/28\",\r\n \"52.246.155.224/28\",\r\n
+ \ \"52.250.228.0/29\",\r\n \"102.37.64.96/28\",\r\n \"102.133.60.48/28\",\r\n
+ \ \"102.133.60.192/26\",\r\n \"102.133.61.0/25\",\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n \"191.233.12.0/23\",\r\n
+ \ \"191.233.54.224/28\",\r\n \"191.233.205.160/28\",\r\n
+ \ \"191.234.137.32/29\",\r\n \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n
+ \ \"191.234.149.0/28\",\r\n \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n
+ \ \"191.235.225.0/26\",\r\n \"2603:1000:4::440/122\",\r\n
+ \ \"2603:1000:4::500/121\",\r\n \"2603:1000:4:402::330/124\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\",\r\n \"2603:1010:304::440/122\",\r\n
+ \ \"2603:1010:304::500/121\",\r\n \"2603:1010:304:402::330/124\",\r\n
+ \ \"2603:1010:404::440/122\",\r\n \"2603:1010:404::500/121\",\r\n
+ \ \"2603:1010:404:402::330/124\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\",\r\n \"2603:1020:305::440/122\",\r\n
+ \ \"2603:1020:305::500/121\",\r\n \"2603:1020:305:402::330/124\",\r\n
+ \ \"2603:1020:405::440/122\",\r\n \"2603:1020:405::500/121\",\r\n
+ \ \"2603:1020:405:402::330/124\",\r\n \"2603:1020:605::440/122\",\r\n
+ \ \"2603:1020:605::500/121\",\r\n \"2603:1020:605:402::330/124\",\r\n
+ \ \"2603:1020:705:1::480/121\",\r\n \"2603:1020:705:1::500/122\",\r\n
+ \ \"2603:1020:705:1::700/121\",\r\n \"2603:1020:705:1::780/122\",\r\n
+ \ \"2603:1020:705:402::330/124\",\r\n \"2603:1020:705:802::210/124\",\r\n
+ \ \"2603:1020:705:c02::210/124\",\r\n \"2603:1020:805:1::480/121\",\r\n
+ \ \"2603:1020:805:1::500/122\",\r\n \"2603:1020:805:1::700/121\",\r\n
+ \ \"2603:1020:805:1::780/122\",\r\n \"2603:1020:805:402::330/124\",\r\n
+ \ \"2603:1020:805:802::210/124\",\r\n \"2603:1020:805:c02::210/124\",\r\n
+ \ \"2603:1020:905::440/122\",\r\n \"2603:1020:905::500/121\",\r\n
+ \ \"2603:1020:905:402::330/124\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\",\r\n
+ \ \"2603:1020:b04::440/122\",\r\n \"2603:1020:b04::500/121\",\r\n
+ \ \"2603:1020:b04:402::330/124\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\",\r\n
+ \ \"2603:1020:d04::440/122\",\r\n \"2603:1020:d04::500/121\",\r\n
+ \ \"2603:1020:d04:402::330/124\",\r\n \"2603:1020:e04:1::480/121\",\r\n
+ \ \"2603:1020:e04:1::500/122\",\r\n \"2603:1020:e04:1::700/121\",\r\n
+ \ \"2603:1020:e04:1::780/122\",\r\n \"2603:1020:e04:402::330/124\",\r\n
+ \ \"2603:1020:e04:802::210/124\",\r\n \"2603:1020:e04:c02::210/124\",\r\n
+ \ \"2603:1020:f04::440/122\",\r\n \"2603:1020:f04::500/121\",\r\n
+ \ \"2603:1020:f04:402::330/124\",\r\n \"2603:1020:1004::480/121\",\r\n
+ \ \"2603:1020:1004::500/122\",\r\n \"2603:1020:1004::700/121\",\r\n
+ \ \"2603:1020:1004::780/122\",\r\n \"2603:1020:1004:400::240/124\",\r\n
+ \ \"2603:1020:1004:800::340/124\",\r\n \"2603:1020:1004:c02::380/124\",\r\n
+ \ \"2603:1020:1104::600/121\",\r\n \"2603:1020:1104:400::500/124\",\r\n
+ \ \"2603:1030:f:1::440/122\",\r\n \"2603:1030:f:1::500/121\",\r\n
+ \ \"2603:1030:f:400::b30/124\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\",\r\n
+ \ \"2603:1030:104:1::480/121\",\r\n \"2603:1030:104:1::500/122\",\r\n
+ \ \"2603:1030:104:1::700/121\",\r\n \"2603:1030:104:1::780/122\",\r\n
+ \ \"2603:1030:104:402::330/124\",\r\n \"2603:1030:107::600/121\",\r\n
+ \ \"2603:1030:107:400::380/124\",\r\n \"2603:1030:210:1::480/121\",\r\n
+ \ \"2603:1030:210:1::500/122\",\r\n \"2603:1030:210:1::700/121\",\r\n
+ \ \"2603:1030:210:1::780/122\",\r\n \"2603:1030:210:402::330/124\",\r\n
+ \ \"2603:1030:210:802::210/124\",\r\n \"2603:1030:210:c02::210/124\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\",\r\n \"2603:1030:40c:1::480/121\",\r\n
+ \ \"2603:1030:40c:1::500/122\",\r\n \"2603:1030:40c:1::700/121\",\r\n
+ \ \"2603:1030:40c:1::780/122\",\r\n \"2603:1030:40c:402::330/124\",\r\n
+ \ \"2603:1030:40c:802::210/124\",\r\n \"2603:1030:40c:c02::210/124\",\r\n
+ \ \"2603:1030:504:1::480/121\",\r\n \"2603:1030:504:1::500/122\",\r\n
+ \ \"2603:1030:504:1::700/121\",\r\n \"2603:1030:504:1::780/122\",\r\n
+ \ \"2603:1030:504:402::240/124\",\r\n \"2603:1030:504:802::340/124\",\r\n
+ \ \"2603:1030:504:c02::380/124\",\r\n \"2603:1030:608::440/122\",\r\n
+ \ \"2603:1030:608::500/121\",\r\n \"2603:1030:608:402::330/124\",\r\n
+ \ \"2603:1030:807:1::480/121\",\r\n \"2603:1030:807:1::500/122\",\r\n
+ \ \"2603:1030:807:1::700/121\",\r\n \"2603:1030:807:1::780/122\",\r\n
+ \ \"2603:1030:807:402::330/124\",\r\n \"2603:1030:807:802::210/124\",\r\n
+ \ \"2603:1030:807:c02::210/124\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\",\r\n
+ \ \"2603:1030:b04::440/122\",\r\n \"2603:1030:b04::500/121\",\r\n
+ \ \"2603:1030:b04:402::330/124\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\",\r\n
+ \ \"2603:1030:f05:1::480/121\",\r\n \"2603:1030:f05:1::500/122\",\r\n
+ \ \"2603:1030:f05:1::700/121\",\r\n \"2603:1030:f05:1::780/122\",\r\n
+ \ \"2603:1030:f05:402::330/124\",\r\n \"2603:1030:f05:802::210/124\",\r\n
+ \ \"2603:1030:f05:c02::210/124\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\",\r\n
+ \ \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\",\r\n \"2603:1040:207::440/122\",\r\n
+ \ \"2603:1040:207::500/121\",\r\n \"2603:1040:207:402::330/124\",\r\n
+ \ \"2603:1040:407:1::480/121\",\r\n \"2603:1040:407:1::500/122\",\r\n
+ \ \"2603:1040:407:1::700/121\",\r\n \"2603:1040:407:1::780/122\",\r\n
+ \ \"2603:1040:407:402::330/124\",\r\n \"2603:1040:407:802::210/124\",\r\n
+ \ \"2603:1040:407:c02::210/124\",\r\n \"2603:1040:606::440/122\",\r\n
+ \ \"2603:1040:606::500/121\",\r\n \"2603:1040:606:402::330/124\",\r\n
+ \ \"2603:1040:806::440/122\",\r\n \"2603:1040:806::500/121\",\r\n
+ \ \"2603:1040:806:402::330/124\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\",\r\n
+ \ \"2603:1040:a06::/121\",\r\n \"2603:1040:a06::80/122\",\r\n
+ \ \"2603:1040:a06:1::480/121\",\r\n \"2603:1040:a06:1::500/122\",\r\n
+ \ \"2603:1040:a06:1::700/121\",\r\n \"2603:1040:a06:1::780/122\",\r\n
+ \ \"2603:1040:a06:402::330/124\",\r\n \"2603:1040:a06:802::210/124\",\r\n
+ \ \"2603:1040:a06:c02::210/124\",\r\n \"2603:1040:b04::440/122\",\r\n
+ \ \"2603:1040:b04::500/121\",\r\n \"2603:1040:b04:402::330/124\",\r\n
+ \ \"2603:1040:c06::440/122\",\r\n \"2603:1040:c06::500/121\",\r\n
+ \ \"2603:1040:c06:402::330/124\",\r\n \"2603:1040:d04::480/121\",\r\n
+ \ \"2603:1040:d04::500/122\",\r\n \"2603:1040:d04::700/121\",\r\n
+ \ \"2603:1040:d04::780/122\",\r\n \"2603:1040:d04:400::240/124\",\r\n
+ \ \"2603:1040:d04:800::340/124\",\r\n \"2603:1040:d04:c02::380/124\",\r\n
+ \ \"2603:1040:f05:1::480/121\",\r\n \"2603:1040:f05:1::500/122\",\r\n
+ \ \"2603:1040:f05:1::700/121\",\r\n \"2603:1040:f05:1::780/122\",\r\n
+ \ \"2603:1040:f05:402::330/124\",\r\n \"2603:1040:f05:802::210/124\",\r\n
+ \ \"2603:1040:f05:c02::210/124\",\r\n \"2603:1040:1104::600/121\",\r\n
+ \ \"2603:1040:1104:400::500/124\",\r\n \"2603:1050:6:1::480/121\",\r\n
+ \ \"2603:1050:6:1::500/122\",\r\n \"2603:1050:6:1::700/121\",\r\n
+ \ \"2603:1050:6:1::780/122\",\r\n \"2603:1050:6:402::330/124\",\r\n
+ \ \"2603:1050:6:802::210/124\",\r\n \"2603:1050:6:c02::210/124\",\r\n
+ \ \"2603:1050:403::480/121\",\r\n \"2603:1050:403::500/122\",\r\n
+ \ \"2603:1050:403:400::240/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.AustraliaEast\",\r\n \"id\": \"DataFactory.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.144/28\",\r\n \"20.37.193.0/25\",\r\n \"20.37.193.128/26\",\r\n
+ \ \"20.37.198.224/29\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.AustraliaSoutheast\",\r\n
+ \ \"id\": \"DataFactory.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.160/28\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.BrazilSouth\",\r\n \"id\": \"DataFactory.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.205.160/28\",\r\n \"191.234.137.32/29\",\r\n
+ \ \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n \"191.234.149.0/28\",\r\n
+ \ \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n \"191.235.225.0/26\",\r\n
+ \ \"2603:1050:6:1::480/121\",\r\n \"2603:1050:6:1::500/122\",\r\n
+ \ \"2603:1050:6:1::700/121\",\r\n \"2603:1050:6:1::780/122\",\r\n
+ \ \"2603:1050:6:402::330/124\",\r\n \"2603:1050:6:802::210/124\",\r\n
+ \ \"2603:1050:6:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.CanadaCentral\",\r\n \"id\": \"DataFactory.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.175.80/28\",\r\n \"20.38.147.224/28\",\r\n
+ \ \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n \"52.228.86.144/29\",\r\n
+ \ \"52.246.155.224/28\",\r\n \"2603:1030:f05:1::480/121\",\r\n
+ \ \"2603:1030:f05:1::500/122\",\r\n \"2603:1030:f05:1::700/121\",\r\n
+ \ \"2603:1030:f05:1::780/122\",\r\n \"2603:1030:f05:402::330/124\",\r\n
+ \ \"2603:1030:f05:802::210/124\",\r\n \"2603:1030:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CanadaEast\",\r\n
+ \ \"id\": \"DataFactory.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.160/28\",\r\n
+ \ \"40.69.111.48/28\",\r\n \"40.89.16.128/25\",\r\n \"40.89.17.0/26\",\r\n
+ \ \"40.89.20.224/29\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralIndia\",\r\n
+ \ \"id\": \"DataFactory.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.121.48/28\",\r\n \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n
+ \ \"40.80.51.160/28\",\r\n \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n
+ \ \"52.140.108.208/29\",\r\n \"2603:1040:a06::/121\",\r\n
+ \ \"2603:1040:a06::80/122\",\r\n \"2603:1040:a06:1::480/121\",\r\n
+ \ \"2603:1040:a06:1::500/122\",\r\n \"2603:1040:a06:1::700/121\",\r\n
+ \ \"2603:1040:a06:1::780/122\",\r\n \"2603:1040:a06:402::330/124\",\r\n
+ \ \"2603:1040:a06:802::210/124\",\r\n \"2603:1040:a06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralUS\",\r\n
+ \ \"id\": \"DataFactory.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.89.174.192/28\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.40.206.224/29\",\r\n
+ \ \"20.44.10.64/28\",\r\n \"52.182.141.16/28\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.EastAsia\",\r\n
+ \ \"id\": \"DataFactory.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.75.39.112/28\",\r\n
+ \ \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n \"20.189.109.232/29\",\r\n
+ \ \"2603:1040:207::440/122\",\r\n \"2603:1040:207::500/121\",\r\n
+ \ \"2603:1040:207:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS\",\r\n \"id\": \"DataFactory.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.2.0/23\",\r\n \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n
+ \ \"20.49.111.0/29\",\r\n \"40.71.14.32/28\",\r\n \"40.78.229.96/28\",\r\n
+ \ \"2603:1030:210:1::480/121\",\r\n \"2603:1030:210:1::500/122\",\r\n
+ \ \"2603:1030:210:1::700/121\",\r\n \"2603:1030:210:1::780/122\",\r\n
+ \ \"2603:1030:210:402::330/124\",\r\n \"2603:1030:210:802::210/124\",\r\n
+ \ \"2603:1030:210:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2\",\r\n \"id\": \"DataFactory.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"40.70.148.160/28\",\r\n \"52.167.107.224/28\",\r\n
+ \ \"2603:1030:40c:1::480/121\",\r\n \"2603:1030:40c:1::500/122\",\r\n
+ \ \"2603:1030:40c:1::700/121\",\r\n \"2603:1030:40c:1::780/122\",\r\n
+ \ \"2603:1030:40c:402::330/124\",\r\n \"2603:1030:40c:802::210/124\",\r\n
+ \ \"2603:1030:40c:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2EUAP\",\r\n \"id\": \"DataFactory.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"52.138.92.128/28\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.FranceCentral\",\r\n \"id\": \"DataFactory.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n \"20.43.44.208/29\",\r\n
+ \ \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n \"40.79.146.240/28\",\r\n
+ \ \"2603:1020:805:1::480/121\",\r\n \"2603:1020:805:1::500/122\",\r\n
+ \ \"2603:1020:805:1::700/121\",\r\n \"2603:1020:805:1::780/122\",\r\n
+ \ \"2603:1020:805:402::330/124\",\r\n \"2603:1020:805:802::210/124\",\r\n
+ \ \"2603:1020:805:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.GermanyWestCentral\",\r\n \"id\":
+ \"DataFactory.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.0/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanEast\",\r\n
+ \ \"id\": \"DataFactory.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.78.109.192/28\",\r\n
+ \ \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n \"20.43.70.120/29\",\r\n
+ \ \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n \"40.79.187.208/28\",\r\n
+ \ \"40.79.195.224/28\",\r\n \"2603:1040:407:1::480/121\",\r\n
+ \ \"2603:1040:407:1::500/122\",\r\n \"2603:1040:407:1::700/121\",\r\n
+ \ \"2603:1040:407:1::780/122\",\r\n \"2603:1040:407:402::330/124\",\r\n
+ \ \"2603:1040:407:802::210/124\",\r\n \"2603:1040:407:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanWest\",\r\n
+ \ \"id\": \"DataFactory.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.56.128/25\",\r\n
+ \ \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n \"40.80.176.96/28\",\r\n
+ \ \"2603:1040:606::440/122\",\r\n \"2603:1040:606::500/121\",\r\n
+ \ \"2603:1040:606:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.KoreaCentral\",\r\n \"id\": \"DataFactory.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"52.231.20.64/28\",\r\n \"2603:1040:f05:1::480/121\",\r\n
+ \ \"2603:1040:f05:1::500/122\",\r\n \"2603:1040:f05:1::700/121\",\r\n
+ \ \"2603:1040:f05:1::780/122\",\r\n \"2603:1040:f05:402::330/124\",\r\n
+ \ \"2603:1040:f05:802::210/124\",\r\n \"2603:1040:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.KoreaSouth\",\r\n
+ \ \"id\": \"DataFactory.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.168.128/25\",\r\n
+ \ \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"DataFactory.NorthCentralUS\",\r\n \"id\": \"DataFactory.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.24/29\",\r\n \"20.49.118.128/25\",\r\n
+ \ \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n \"52.162.111.48/28\",\r\n
+ \ \"2603:1030:608::440/122\",\r\n \"2603:1030:608::500/121\",\r\n
+ \ \"2603:1030:608:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.NorthEurope\",\r\n \"id\": \"DataFactory.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.230.96/28\",\r\n \"13.74.108.224/28\",\r\n
+ \ \"20.38.80.192/26\",\r\n \"20.38.82.0/23\",\r\n \"20.50.68.56/29\",\r\n
+ \ \"52.138.229.32/28\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.NorwayEast\",\r\n
+ \ \"id\": \"DataFactory.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.208/28\",\r\n
+ \ \"51.120.45.64/26\",\r\n \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n
+ \ \"51.120.109.96/28\",\r\n \"51.120.213.32/28\",\r\n \"51.120.238.0/23\",\r\n
+ \ \"2603:1020:e04:1::480/121\",\r\n \"2603:1020:e04:1::500/122\",\r\n
+ \ \"2603:1020:e04:1::700/121\",\r\n \"2603:1020:e04:1::780/122\",\r\n
+ \ \"2603:1020:e04:402::330/124\",\r\n \"2603:1020:e04:802::210/124\",\r\n
+ \ \"2603:1020:e04:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthAfricaNorth\",\r\n \"id\":
+ \"DataFactory.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthCentralUS\",\r\n \"id\":
+ \"DataFactory.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.32/28\",\r\n
+ \ \"13.73.253.96/29\",\r\n \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n
+ \ \"20.45.123.160/28\",\r\n \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"2603:1030:807:1::480/121\",\r\n
+ \ \"2603:1030:807:1::500/122\",\r\n \"2603:1030:807:1::700/121\",\r\n
+ \ \"2603:1030:807:1::780/122\",\r\n \"2603:1030:807:402::330/124\",\r\n
+ \ \"2603:1030:807:802::210/124\",\r\n \"2603:1030:807:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SoutheastAsia\",\r\n
+ \ \"id\": \"DataFactory.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.10.208/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n
+ \ \"23.98.106.128/29\",\r\n \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n
+ \ \"40.78.236.176/28\",\r\n \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthIndia\",\r\n \"id\": \"DataFactory.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n
+ \ \"20.41.197.112/29\",\r\n \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"40.78.196.128/28\",\r\n \"2603:1040:c06::440/122\",\r\n
+ \ \"2603:1040:c06::500/121\",\r\n \"2603:1040:c06:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SwitzerlandNorth\",\r\n
+ \ \"id\": \"DataFactory.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n \"51.107.52.128/26\",\r\n
+ \ \"51.107.128.0/28\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UAENorth\",\r\n
+ \ \"id\": \"DataFactory.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.38.141.16/28\",\r\n
+ \ \"20.38.141.128/25\",\r\n \"20.38.142.0/26\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKSouth\",\r\n
+ \ \"id\": \"DataFactory.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.32/28\",\r\n
+ \ \"51.104.24.128/25\",\r\n \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n
+ \ \"51.105.67.240/28\",\r\n \"51.105.75.240/28\",\r\n \"2603:1020:705:1::480/121\",\r\n
+ \ \"2603:1020:705:1::500/122\",\r\n \"2603:1020:705:1::700/121\",\r\n
+ \ \"2603:1020:705:1::780/122\",\r\n \"2603:1020:705:402::330/124\",\r\n
+ \ \"2603:1020:705:802::210/124\",\r\n \"2603:1020:705:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKWest\",\r\n
+ \ \"id\": \"DataFactory.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.140.212.112/28\",\r\n
+ \ \"2603:1020:605::440/122\",\r\n \"2603:1020:605::500/121\",\r\n
+ \ \"2603:1020:605:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestCentralUS\",\r\n \"id\": \"DataFactory.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.199.0/28\",\r\n \"52.150.136.192/26\",\r\n
+ \ \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n \"52.150.155.0/24\",\r\n
+ \ \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n \"2603:1030:b04::440/122\",\r\n
+ \ \"2603:1030:b04::500/121\",\r\n \"2603:1030:b04:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestEurope\",\r\n
+ \ \"id\": \"DataFactory.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.192/28\",\r\n
+ \ \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n \"40.74.24.192/26\",\r\n
+ \ \"40.74.26.0/23\",\r\n \"40.113.176.232/29\",\r\n \"52.236.187.112/28\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestUS\",\r\n \"id\": \"DataFactory.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.219.208/28\",\r\n \"40.82.249.64/26\",\r\n
+ \ \"40.82.250.0/23\",\r\n \"52.250.228.0/29\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestUS2\",\r\n
+ \ \"id\": \"DataFactory.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"40.64.132.232/29\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n
+ \ \"13.69.226.128/25\",\r\n \"13.71.171.0/24\",\r\n \"13.74.106.128/25\",\r\n
+ \ \"13.75.35.0/24\",\r\n \"13.77.51.0/24\",\r\n \"13.78.107.0/24\",\r\n
+ \ \"40.78.242.0/25\",\r\n \"40.79.138.192/26\",\r\n \"40.120.64.224/27\",\r\n
+ \ \"51.107.129.64/27\",\r\n \"51.140.147.0/24\",\r\n \"65.52.252.128/27\",\r\n
+ \ \"102.133.251.96/27\",\r\n \"104.211.80.0/24\",\r\n \"191.233.202.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.51.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.202.0/24\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.171.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.80.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.35.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.138.192/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.107.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.128/25\",\r\n \"13.74.106.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.251.96/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.224/27\",\r\n \"65.52.252.128/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.147.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n \"40.78.242.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub\",\r\n
+ \ \"id\": \"EventHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureEventHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.195.117/32\",\r\n \"13.65.209.24/32\",\r\n
+ \ \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n \"13.66.149.0/26\",\r\n
+ \ \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n
+ \ \"13.69.111.128/26\",\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n
+ \ \"13.69.253.135/32\",\r\n \"13.69.255.140/32\",\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.71.30.214/32\",\r\n
+ \ \"13.71.123.78/32\",\r\n \"13.71.154.11/32\",\r\n \"13.71.170.16/28\",\r\n
+ \ \"13.71.177.128/26\",\r\n \"13.71.194.64/27\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"13.74.107.0/26\",\r\n \"13.75.34.64/26\",\r\n \"13.76.179.223/32\",\r\n
+ \ \"13.76.216.217/32\",\r\n \"13.77.50.32/27\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"13.78.149.209/32\",\r\n \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n
+ \ \"13.84.145.196/32\",\r\n \"13.87.34.139/32\",\r\n \"13.87.34.243/32\",\r\n
+ \ \"13.87.56.32/27\",\r\n \"13.87.102.63/32\",\r\n \"13.87.102.68/32\",\r\n
+ \ \"13.87.122.32/27\",\r\n \"13.88.20.117/32\",\r\n \"13.88.26.28/32\",\r\n
+ \ \"13.89.58.37/32\",\r\n \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n
+ \ \"13.89.178.112/28\",\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n
+ \ \"13.91.61.11/32\",\r\n \"13.92.124.151/32\",\r\n \"13.92.180.208/32\",\r\n
+ \ \"13.92.190.184/32\",\r\n \"13.93.226.138/32\",\r\n \"13.94.47.61/32\",\r\n
+ \ \"20.36.46.142/32\",\r\n \"20.36.74.130/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"20.36.114.32/27\",\r\n \"20.36.144.64/26\",\r\n \"20.37.74.0/27\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.42.68.64/26\",\r\n \"20.42.74.0/26\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.43.126.64/26\",\r\n
+ \ \"20.44.2.128/26\",\r\n \"20.44.13.64/26\",\r\n \"20.44.26.64/26\",\r\n
+ \ \"20.44.31.128/26\",\r\n \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n
+ \ \"20.47.216.64/26\",\r\n \"20.49.93.64/27\",\r\n \"20.49.93.128/27\",\r\n
+ \ \"20.49.95.128/26\",\r\n \"20.50.72.64/26\",\r\n \"20.50.80.64/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"20.52.64.128/26\",\r\n \"20.72.27.192/26\",\r\n
+ \ \"20.83.192.0/26\",\r\n \"20.89.0.64/26\",\r\n \"20.150.160.224/27\",\r\n
+ \ \"20.150.170.160/27\",\r\n \"20.150.175.64/26\",\r\n \"20.150.178.64/26\",\r\n
+ \ \"20.150.182.0/27\",\r\n \"20.150.186.64/26\",\r\n \"20.150.189.128/26\",\r\n
+ \ \"20.151.32.64/26\",\r\n \"20.192.33.64/26\",\r\n \"20.192.98.64/26\",\r\n
+ \ \"20.192.102.0/26\",\r\n \"20.192.161.64/27\",\r\n \"20.192.225.160/27\",\r\n
+ \ \"20.192.234.32/27\",\r\n \"20.193.202.32/27\",\r\n \"20.193.204.192/26\",\r\n
+ \ \"20.194.68.192/26\",\r\n \"20.194.80.0/26\",\r\n \"20.194.128.192/26\",\r\n
+ \ \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n \"23.96.214.181/32\",\r\n
+ \ \"23.96.253.236/32\",\r\n \"23.97.67.90/32\",\r\n \"23.97.97.36/32\",\r\n
+ \ \"23.97.103.3/32\",\r\n \"23.97.120.51/32\",\r\n \"23.97.226.21/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"23.99.7.105/32\",\r\n
+ \ \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n \"23.99.80.186/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"23.100.14.185/32\",\r\n \"23.100.100.84/32\",\r\n \"23.101.3.68/32\",\r\n
+ \ \"23.101.8.229/32\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"23.102.128.15/32\",\r\n \"23.102.160.39/32\",\r\n
+ \ \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n \"23.102.165.127/32\",\r\n
+ \ \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n \"23.102.234.49/32\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.67.58.128/26\",\r\n \"40.67.72.64/26\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"40.69.29.216/32\",\r\n
+ \ \"40.69.106.32/27\",\r\n \"40.69.217.246/32\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n \"40.74.146.16/28\",\r\n
+ \ \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n \"40.76.29.197/32\",\r\n
+ \ \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n \"40.78.110.196/32\",\r\n
+ \ \"40.78.194.32/27\",\r\n \"40.78.202.32/27\",\r\n \"40.78.226.128/26\",\r\n
+ \ \"40.78.234.0/27\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"40.79.44.59/32\",\r\n
+ \ \"40.79.74.86/32\",\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n
+ \ \"40.79.142.0/26\",\r\n \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n
+ \ \"40.79.155.0/26\",\r\n \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n
+ \ \"40.79.170.32/28\",\r\n \"40.79.174.128/26\",\r\n \"40.79.178.32/27\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"40.80.50.64/26\",\r\n
+ \ \"40.83.191.202/32\",\r\n \"40.83.222.100/32\",\r\n \"40.84.150.241/32\",\r\n
+ \ \"40.84.185.67/32\",\r\n \"40.85.226.62/32\",\r\n \"40.85.229.32/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.86.176.23/32\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"40.89.122.0/26\",\r\n
+ \ \"40.112.185.115/32\",\r\n \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.117.88.66/32\",\r\n \"40.120.75.64/27\",\r\n
+ \ \"40.120.78.0/26\",\r\n \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n
+ \ \"40.121.148.193/32\",\r\n \"40.122.173.108/32\",\r\n \"40.122.213.155/32\",\r\n
+ \ \"40.124.65.64/26\",\r\n \"40.127.83.123/32\",\r\n \"40.127.132.254/32\",\r\n
+ \ \"51.11.192.128/26\",\r\n \"51.12.98.160/27\",\r\n \"51.12.102.64/26\",\r\n
+ \ \"51.12.202.160/27\",\r\n \"51.12.206.64/26\",\r\n \"51.12.226.64/26\",\r\n
+ \ \"51.12.234.64/26\",\r\n \"51.13.0.192/26\",\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.107.58.128/27\",\r\n
+ \ \"51.107.129.0/26\",\r\n \"51.107.154.128/27\",\r\n \"51.116.58.128/27\",\r\n
+ \ \"51.116.154.192/27\",\r\n \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n
+ \ \"51.116.246.192/26\",\r\n \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n
+ \ \"51.120.98.128/27\",\r\n \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n
+ \ \"51.120.218.160/27\",\r\n \"51.132.192.192/26\",\r\n \"51.140.80.99/32\",\r\n
+ \ \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n \"51.140.146.32/28\",\r\n
+ \ \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n \"51.140.189.108/32\",\r\n
+ \ \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n \"51.141.14.168/32\",\r\n
+ \ \"51.141.50.179/32\",\r\n \"51.144.238.23/32\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"52.138.90.0/28\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"52.151.58.121/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"52.162.106.64/26\",\r\n \"52.165.34.144/32\",\r\n
+ \ \"52.165.179.109/32\",\r\n \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.169.18.8/32\",\r\n
+ \ \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.175.35.235/32\",\r\n \"52.176.47.198/32\",\r\n
+ \ \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n \"52.178.211.227/32\",\r\n
+ \ \"52.179.6.240/32\",\r\n \"52.179.8.35/32\",\r\n \"52.179.157.59/32\",\r\n
+ \ \"52.180.180.228/32\",\r\n \"52.180.182.75/32\",\r\n \"52.182.138.128/26\",\r\n
+ \ \"52.182.143.64/26\",\r\n \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"52.191.213.188/32\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"52.226.36.235/32\",\r\n \"52.231.18.16/28\",\r\n
+ \ \"52.231.29.105/32\",\r\n \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n
+ \ \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n \"52.231.200.153/32\",\r\n
+ \ \"52.231.207.155/32\",\r\n \"52.232.27.189/32\",\r\n \"52.233.30.41/32\",\r\n
+ \ \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n \"52.236.186.0/26\",\r\n
+ \ \"52.237.33.36/32\",\r\n \"52.237.33.104/32\",\r\n \"52.237.143.176/32\",\r\n
+ \ \"52.242.20.204/32\",\r\n \"52.243.36.161/32\",\r\n \"52.246.154.64/26\",\r\n
+ \ \"52.246.159.0/26\",\r\n \"65.52.129.16/32\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"102.37.65.0/26\",\r\n \"102.37.72.64/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"102.133.122.64/26\",\r\n \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n
+ \ \"102.133.250.64/26\",\r\n \"102.133.254.0/26\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.40.150.139/32\",\r\n \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n
+ \ \"104.41.63.213/32\",\r\n \"104.41.201.10/32\",\r\n \"104.42.97.95/32\",\r\n
+ \ \"104.43.18.219/32\",\r\n \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n
+ \ \"104.43.192.222/32\",\r\n \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.16.0/26\",\r\n \"104.208.144.0/26\",\r\n
+ \ \"104.208.237.147/32\",\r\n \"104.209.186.70/32\",\r\n
+ \ \"104.210.14.49/32\",\r\n \"104.210.106.31/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"104.211.224.190/32\",\r\n
+ \ \"104.211.224.238/32\",\r\n \"104.214.18.128/27\",\r\n
+ \ \"104.214.70.229/32\",\r\n \"137.116.48.46/32\",\r\n \"137.116.77.157/32\",\r\n
+ \ \"137.116.91.178/32\",\r\n \"137.116.157.26/32\",\r\n \"137.116.158.30/32\",\r\n
+ \ \"137.117.85.236/32\",\r\n \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n
+ \ \"137.135.102.226/32\",\r\n \"138.91.1.105/32\",\r\n \"138.91.17.38/32\",\r\n
+ \ \"138.91.17.85/32\",\r\n \"138.91.193.184/32\",\r\n \"168.61.92.197/32\",\r\n
+ \ \"168.61.143.128/26\",\r\n \"168.61.148.205/32\",\r\n \"168.62.52.235/32\",\r\n
+ \ \"168.62.234.250/32\",\r\n \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n
+ \ \"168.63.141.27/32\",\r\n \"191.233.9.64/27\",\r\n \"191.233.73.228/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"191.237.47.93/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"191.237.224.0/26\",\r\n \"191.238.99.131/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"191.239.64.142/32\",\r\n \"191.239.64.144/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"207.46.153.127/32\",\r\n
+ \ \"207.46.154.16/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1000:4::240/122\",\r\n
+ \ \"2603:1000:4:402::1c0/123\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\",\r\n \"2603:1010:304::240/122\",\r\n
+ \ \"2603:1010:304:402::1c0/123\",\r\n \"2603:1010:404::240/122\",\r\n
+ \ \"2603:1010:404:402::1c0/123\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\",\r\n \"2603:1020:305::240/122\",\r\n
+ \ \"2603:1020:305:402::1c0/123\",\r\n \"2603:1020:405::240/122\",\r\n
+ \ \"2603:1020:405:402::1c0/123\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\",\r\n \"2603:1020:905::240/122\",\r\n
+ \ \"2603:1020:905:402::1c0/123\",\r\n \"2603:1020:a04:1::240/122\",\r\n
+ \ \"2603:1020:a04:402::1c0/123\",\r\n \"2603:1020:a04:802::160/123\",\r\n
+ \ \"2603:1020:a04:c02::160/123\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\",\r\n \"2603:1020:d04::240/122\",\r\n
+ \ \"2603:1020:d04:402::1c0/123\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\",\r\n \"2603:1020:1004::240/122\",\r\n
+ \ \"2603:1020:1004:400::2c0/123\",\r\n \"2603:1020:1004:c02::c0/123\",\r\n
+ \ \"2603:1020:1104:400::1c0/123\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\",\r\n \"2603:1030:104:1::240/122\",\r\n
+ \ \"2603:1030:104:402::1c0/123\",\r\n \"2603:1030:107:400::140/123\",\r\n
+ \ \"2603:1030:210:1::240/122\",\r\n \"2603:1030:210:402::1c0/123\",\r\n
+ \ \"2603:1030:210:802::160/123\",\r\n \"2603:1030:210:c02::160/123\",\r\n
+ \ \"2603:1030:40b:1::240/122\",\r\n \"2603:1030:40b:400::9c0/123\",\r\n
+ \ \"2603:1030:40b:800::160/123\",\r\n \"2603:1030:40b:c00::160/123\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\",\r\n
+ \ \"2603:1030:504:1::240/122\",\r\n \"2603:1030:504:402::2c0/123\",\r\n
+ \ \"2603:1030:504:802::240/123\",\r\n \"2603:1030:504:c02::c0/123\",\r\n
+ \ \"2603:1030:608::240/122\",\r\n \"2603:1030:608:402::1c0/123\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\",\r\n
+ \ \"2603:1030:a07::240/122\",\r\n \"2603:1030:a07:402::140/123\",\r\n
+ \ \"2603:1030:b04::240/122\",\r\n \"2603:1030:b04:402::1c0/123\",\r\n
+ \ \"2603:1030:c06:1::240/122\",\r\n \"2603:1030:c06:400::9c0/123\",\r\n
+ \ \"2603:1030:c06:802::160/123\",\r\n \"2603:1030:c06:c02::160/123\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\",\r\n
+ \ \"2603:1040:5:1::240/122\",\r\n \"2603:1040:5:402::1c0/123\",\r\n
+ \ \"2603:1040:5:802::160/123\",\r\n \"2603:1040:5:c02::160/123\",\r\n
+ \ \"2603:1040:207::240/122\",\r\n \"2603:1040:207:402::1c0/123\",\r\n
+ \ \"2603:1040:407:1::240/122\",\r\n \"2603:1040:407:402::1c0/123\",\r\n
+ \ \"2603:1040:407:802::160/123\",\r\n \"2603:1040:407:c02::160/123\",\r\n
+ \ \"2603:1040:606::240/122\",\r\n \"2603:1040:606:402::1c0/123\",\r\n
+ \ \"2603:1040:806::240/122\",\r\n \"2603:1040:806:402::1c0/123\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\",\r\n
+ \ \"2603:1040:b04::240/122\",\r\n \"2603:1040:b04:402::1c0/123\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\",\r\n
+ \ \"2603:1040:d04::240/122\",\r\n \"2603:1040:d04:400::2c0/123\",\r\n
+ \ \"2603:1040:d04:c02::c0/123\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\",\r\n \"2603:1040:1104:400::1c0/123\",\r\n
+ \ \"2603:1050:6:1::240/122\",\r\n \"2603:1050:6:402::1c0/123\",\r\n
+ \ \"2603:1050:6:802::160/123\",\r\n \"2603:1050:6:c02::160/123\",\r\n
+ \ \"2603:1050:403::240/122\",\r\n \"2603:1050:403:400::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.46.142/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"2603:1010:304::240/122\",\r\n \"2603:1010:304:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral2\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.130/32\",\r\n \"20.36.114.32/27\",\r\n
+ \ \"2603:1010:404::240/122\",\r\n \"2603:1010:404:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaEast\",\r\n
+ \ \"id\": \"EventHub.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n \"40.79.170.32/28\",\r\n
+ \ \"40.79.174.128/26\",\r\n \"104.210.106.31/32\",\r\n \"191.239.64.142/32\",\r\n
+ \ \"191.239.64.144/32\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.AustraliaSoutheast\",\r\n \"id\":
+ \"EventHub.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.77.50.32/27\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.127.83.123/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.BrazilSouth\",\r\n \"id\": \"EventHub.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n
+ \ \"23.97.97.36/32\",\r\n \"23.97.103.3/32\",\r\n \"104.41.63.213/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"2603:1050:6:1::240/122\",\r\n
+ \ \"2603:1050:6:402::1c0/123\",\r\n \"2603:1050:6:802::160/123\",\r\n
+ \ \"2603:1050:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CanadaCentral\",\r\n \"id\": \"EventHub.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.16/28\",\r\n \"13.71.177.128/26\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.151.32.64/26\",\r\n \"40.85.226.62/32\",\r\n
+ \ \"40.85.229.32/32\",\r\n \"52.233.30.41/32\",\r\n \"52.237.33.36/32\",\r\n
+ \ \"52.237.33.104/32\",\r\n \"52.246.154.64/26\",\r\n \"52.246.159.0/26\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CanadaEast\",\r\n
+ \ \"id\": \"EventHub.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.32/27\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"52.242.20.204/32\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralIndia\",\r\n
+ \ \"id\": \"EventHub.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.30.214/32\",\r\n
+ \ \"20.43.126.64/26\",\r\n \"20.192.98.64/26\",\r\n \"20.192.102.0/26\",\r\n
+ \ \"40.80.50.64/26\",\r\n \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralUS\",\r\n
+ \ \"id\": \"EventHub.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.89.58.37/32\",\r\n
+ \ \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n \"13.89.178.112/28\",\r\n
+ \ \"20.44.13.64/26\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.122.173.108/32\",\r\n
+ \ \"40.122.213.155/32\",\r\n \"52.165.34.144/32\",\r\n \"52.165.179.109/32\",\r\n
+ \ \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.176.47.198/32\",\r\n \"52.182.138.128/26\",\r\n \"52.182.143.64/26\",\r\n
+ \ \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n \"104.43.192.222/32\",\r\n
+ \ \"104.208.16.0/26\",\r\n \"168.61.148.205/32\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CentralUSEUAP\",\r\n \"id\": \"EventHub.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.32/27\",\r\n \"52.180.180.228/32\",\r\n
+ \ \"52.180.182.75/32\",\r\n \"168.61.143.128/26\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastAsia\",\r\n \"id\": \"EventHub.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.64/26\",\r\n \"13.94.47.61/32\",\r\n \"23.97.67.90/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.101.3.68/32\",\r\n \"23.101.8.229/32\",\r\n
+ \ \"23.102.234.49/32\",\r\n \"52.175.35.235/32\",\r\n \"168.63.141.27/32\",\r\n
+ \ \"207.46.153.127/32\",\r\n \"207.46.154.16/32\",\r\n \"2603:1040:207::240/122\",\r\n
+ \ \"2603:1040:207:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS\",\r\n \"id\": \"EventHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n \"13.92.124.151/32\",\r\n
+ \ \"13.92.180.208/32\",\r\n \"13.92.190.184/32\",\r\n \"20.42.68.64/26\",\r\n
+ \ \"20.42.74.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.76.29.197/32\",\r\n \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n
+ \ \"40.78.226.128/26\",\r\n \"40.79.155.0/26\",\r\n \"40.117.88.66/32\",\r\n
+ \ \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n \"40.121.148.193/32\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.179.6.240/32\",\r\n
+ \ \"52.179.8.35/32\",\r\n \"52.191.213.188/32\",\r\n \"52.226.36.235/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"137.117.85.236/32\",\r\n
+ \ \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n \"137.135.102.226/32\",\r\n
+ \ \"168.62.52.235/32\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.237.47.93/32\",\r\n \"2603:1030:210:1::240/122\",\r\n
+ \ \"2603:1030:210:402::1c0/123\",\r\n \"2603:1030:210:802::160/123\",\r\n
+ \ \"2603:1030:210:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS2\",\r\n \"id\": \"EventHub.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"20.36.144.64/26\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.79.44.59/32\",\r\n \"40.79.74.86/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.179.157.59/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.144.0/26\",\r\n \"104.208.237.147/32\",\r\n
+ \ \"104.209.186.70/32\",\r\n \"104.210.14.49/32\",\r\n \"137.116.48.46/32\",\r\n
+ \ \"137.116.77.157/32\",\r\n \"137.116.91.178/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"EventHub.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"20.47.216.64/26\",\r\n
+ \ \"40.74.146.16/28\",\r\n \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n
+ \ \"40.89.122.0/26\",\r\n \"52.138.90.0/28\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"2603:1030:40b:1::240/122\",\r\n
+ \ \"2603:1030:40b:400::9c0/123\",\r\n \"2603:1030:40b:800::160/123\",\r\n
+ \ \"2603:1030:40b:c00::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceCentral\",\r\n \"id\": \"EventHub.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n \"40.79.142.0/26\",\r\n
+ \ \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n \"51.11.192.128/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceSouth\",\r\n \"id\": \"EventHub.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.32/27\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"2603:1020:905::240/122\",\r\n \"2603:1020:905:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyNorth\",\r\n
+ \ \"id\": \"EventHub.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.116.58.128/27\",\r\n
+ \ \"2603:1020:d04::240/122\",\r\n \"2603:1020:d04:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyWestCentral\",\r\n
+ \ \"id\": \"EventHub.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.64.128/26\",\r\n \"51.116.154.192/27\",\r\n
+ \ \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n \"51.116.246.192/26\",\r\n
+ \ \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanEast\",\r\n \"id\": \"EventHub.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.154.11/32\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"20.89.0.64/26\",\r\n \"20.194.128.192/26\",\r\n \"23.100.100.84/32\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"52.243.36.161/32\",\r\n
+ \ \"138.91.1.105/32\",\r\n \"2603:1040:407:1::240/122\",\r\n
+ \ \"2603:1040:407:402::1c0/123\",\r\n \"2603:1040:407:802::160/123\",\r\n
+ \ \"2603:1040:407:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanWest\",\r\n \"id\": \"EventHub.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n
+ \ \"138.91.17.38/32\",\r\n \"138.91.17.85/32\",\r\n \"2603:1040:606::240/122\",\r\n
+ \ \"2603:1040:606:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaCentral\",\r\n \"id\": \"EventHub.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.64/26\",\r\n \"20.44.31.128/26\",\r\n \"20.194.68.192/26\",\r\n
+ \ \"20.194.80.0/26\",\r\n \"52.231.18.16/28\",\r\n \"52.231.29.105/32\",\r\n
+ \ \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaSouth\",\r\n \"id\": \"EventHub.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n
+ \ \"52.231.200.153/32\",\r\n \"52.231.207.155/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"EventHub.NorthCentralUS\",\r\n
+ \ \"id\": \"EventHub.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.214.181/32\",\r\n \"23.96.253.236/32\",\r\n
+ \ \"52.162.106.64/26\",\r\n \"52.237.143.176/32\",\r\n \"168.62.234.250/32\",\r\n
+ \ \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"2603:1030:608::240/122\",\r\n
+ \ \"2603:1030:608:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorthEurope\",\r\n \"id\": \"EventHub.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n \"13.69.253.135/32\",\r\n
+ \ \"13.69.255.140/32\",\r\n \"13.74.107.0/26\",\r\n \"20.50.72.64/26\",\r\n
+ \ \"20.50.80.64/26\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"40.69.29.216/32\",\r\n \"40.69.217.246/32\",\r\n
+ \ \"40.127.132.254/32\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.169.18.8/32\",\r\n \"52.178.211.227/32\",\r\n \"104.41.201.10/32\",\r\n
+ \ \"168.61.92.197/32\",\r\n \"191.238.99.131/32\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayEast\",\r\n \"id\": \"EventHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.192/26\",\r\n \"51.120.98.128/27\",\r\n
+ \ \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayWest\",\r\n \"id\": \"EventHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.160/27\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaNorth\",\r\n \"id\": \"EventHub.SouthAfricaNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricanorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.64/26\",\r\n \"102.133.122.64/26\",\r\n
+ \ \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n \"102.133.250.64/26\",\r\n
+ \ \"102.133.254.0/26\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaWest\",\r\n \"id\": \"EventHub.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.0/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"2603:1000:4::240/122\",\r\n \"2603:1000:4:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SouthCentralUS\",\r\n
+ \ \"id\": \"EventHub.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.209.24/32\",\r\n \"13.84.145.196/32\",\r\n
+ \ \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n \"20.49.93.64/27\",\r\n
+ \ \"20.49.93.128/27\",\r\n \"20.49.95.128/26\",\r\n \"23.102.128.15/32\",\r\n
+ \ \"23.102.160.39/32\",\r\n \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n
+ \ \"23.102.165.127/32\",\r\n \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n
+ \ \"40.84.150.241/32\",\r\n \"40.84.185.67/32\",\r\n \"40.124.65.64/26\",\r\n
+ \ \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.214.18.128/27\",\r\n \"104.214.70.229/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SoutheastAsia\",\r\n
+ \ \"id\": \"EventHub.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.76.179.223/32\",\r\n \"13.76.216.217/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"40.78.234.0/27\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"104.43.18.219/32\",\r\n \"137.116.157.26/32\",\r\n
+ \ \"137.116.158.30/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1040:5:1::240/122\",\r\n
+ \ \"2603:1040:5:402::1c0/123\",\r\n \"2603:1040:5:802::160/123\",\r\n
+ \ \"2603:1040:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthIndia\",\r\n \"id\": \"EventHub.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.123.78/32\",\r\n \"40.78.194.32/27\",\r\n
+ \ \"104.211.224.190/32\",\r\n \"104.211.224.238/32\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandNorth\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.128/27\",\r\n \"51.107.129.0/26\",\r\n
+ \ \"2603:1020:a04:1::240/122\",\r\n \"2603:1020:a04:402::1c0/123\",\r\n
+ \ \"2603:1020:a04:802::160/123\",\r\n \"2603:1020:a04:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.128/27\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAECentral\",\r\n \"id\": \"EventHub.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.0/27\",\r\n \"2603:1040:b04::240/122\",\r\n
+ \ \"2603:1040:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAENorth\",\r\n \"id\": \"EventHub.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.75.64/27\",\r\n \"40.120.78.0/26\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.UKSouth\",\r\n
+ \ \"id\": \"EventHub.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.132.192.192/26\",\r\n
+ \ \"51.140.80.99/32\",\r\n \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n
+ \ \"51.140.146.32/28\",\r\n \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n
+ \ \"51.140.189.108/32\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UKWest\",\r\n \"id\": \"EventHub.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n
+ \ \"51.141.14.168/32\",\r\n \"51.141.50.179/32\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestCentralUS\",\r\n \"id\": \"EventHub.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.64/27\",\r\n \"13.78.149.209/32\",\r\n
+ \ \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"2603:1030:b04::240/122\",\r\n
+ \ \"2603:1030:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestEurope\",\r\n \"id\": \"EventHub.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n \"13.69.111.128/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"23.97.226.21/32\",\r\n \"23.100.14.185/32\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"51.144.238.23/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n
+ \ \"52.232.27.189/32\",\r\n \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n
+ \ \"52.236.186.0/26\",\r\n \"65.52.129.16/32\",\r\n \"104.40.150.139/32\",\r\n
+ \ \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"191.233.73.228/32\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestIndia\",\r\n \"id\": \"EventHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"2603:1040:806::240/122\",\r\n
+ \ \"2603:1040:806:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS\",\r\n \"id\": \"EventHub.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.195.117/32\",\r\n \"13.88.20.117/32\",\r\n
+ \ \"13.88.26.28/32\",\r\n \"13.91.61.11/32\",\r\n \"13.93.226.138/32\",\r\n
+ \ \"23.99.7.105/32\",\r\n \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n
+ \ \"23.99.80.186/32\",\r\n \"40.78.110.196/32\",\r\n \"40.83.191.202/32\",\r\n
+ \ \"40.83.222.100/32\",\r\n \"40.86.176.23/32\",\r\n \"40.112.185.115/32\",\r\n
+ \ \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.42.97.95/32\",\r\n \"138.91.193.184/32\",\r\n \"2603:1030:a07::240/122\",\r\n
+ \ \"2603:1030:a07:402::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS2\",\r\n \"id\": \"EventHub.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n
+ \ \"13.66.149.0/26\",\r\n \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.83.192.0/26\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"52.151.58.121/32\",\r\n
+ \ \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n \"2603:1030:c06:1::240/122\",\r\n
+ \ \"2603:1030:c06:400::9c0/123\",\r\n \"2603:1030:c06:802::160/123\",\r\n
+ \ \"2603:1030:c06:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager\",\r\n \"id\": \"GatewayManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.66.140.144/29\",\r\n
+ \ \"13.67.9.128/29\",\r\n \"13.69.64.224/29\",\r\n \"13.69.227.224/29\",\r\n
+ \ \"13.70.72.208/29\",\r\n \"13.70.185.130/32\",\r\n \"13.71.170.240/29\",\r\n
+ \ \"13.71.194.232/29\",\r\n \"13.75.36.8/29\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"13.78.108.16/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"13.85.74.21/32\",\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"13.87.122.104/29\",\r\n \"13.89.171.96/29\",\r\n
+ \ \"13.91.249.235/32\",\r\n \"13.91.254.232/32\",\r\n \"13.92.84.128/32\",\r\n
+ \ \"13.93.112.146/32\",\r\n \"13.93.117.26/32\",\r\n \"20.36.42.151/32\",\r\n
+ \ \"20.36.42.152/32\",\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.36.114.24/29\",\r\n \"20.36.120.72/29\",\r\n
+ \ \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n \"20.37.64.72/29\",\r\n
+ \ \"20.37.74.88/29\",\r\n \"20.37.152.72/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"20.38.80.72/29\",\r\n \"20.38.136.72/29\",\r\n
+ \ \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"20.40.173.147/32\",\r\n
+ \ \"20.41.0.72/29\",\r\n \"20.41.64.72/29\",\r\n \"20.41.192.72/29\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"20.42.128.72/29\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"20.43.40.72/29\",\r\n \"20.43.64.72/29\",\r\n \"20.43.128.72/29\",\r\n
+ \ \"20.44.3.16/29\",\r\n \"20.45.112.72/29\",\r\n \"20.45.192.72/29\",\r\n
+ \ \"20.46.13.128/26\",\r\n \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n
+ \ \"20.72.16.64/26\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"20.150.160.64/29\",\r\n \"20.150.161.0/26\",\r\n \"20.150.171.64/29\",\r\n
+ \ \"20.189.104.72/29\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"20.192.160.64/26\",\r\n \"20.192.224.192/26\",\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"20.194.75.128/26\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.67.48.72/29\",\r\n \"40.67.59.64/29\",\r\n
+ \ \"40.69.106.88/29\",\r\n \"40.70.146.224/29\",\r\n \"40.71.11.96/29\",\r\n
+ \ \"40.74.24.72/29\",\r\n \"40.74.100.168/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"40.79.130.224/29\",\r\n \"40.79.178.88/29\",\r\n
+ \ \"40.80.56.72/29\",\r\n \"40.80.168.72/29\",\r\n \"40.80.184.72/29\",\r\n
+ \ \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n \"40.81.180.83/32\",\r\n
+ \ \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n \"40.81.189.42/32\",\r\n
+ \ \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n \"40.82.248.240/29\",\r\n
+ \ \"40.88.222.179/32\",\r\n \"40.88.223.53/32\",\r\n \"40.89.16.72/29\",\r\n
+ \ \"40.89.217.100/32\",\r\n \"40.89.217.109/32\",\r\n \"40.90.186.21/32\",\r\n
+ \ \"40.90.186.91/32\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"40.112.242.168/29\",\r\n \"40.115.248.200/32\",\r\n \"40.115.254.17/32\",\r\n
+ \ \"40.119.8.64/29\",\r\n \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n
+ \ \"51.12.40.192/26\",\r\n \"51.12.192.192/26\",\r\n \"51.104.24.72/29\",\r\n
+ \ \"51.105.80.72/29\",\r\n \"51.105.88.72/29\",\r\n \"51.107.48.72/29\",\r\n
+ \ \"51.107.59.32/29\",\r\n \"51.107.144.72/29\",\r\n \"51.107.155.32/29\",\r\n
+ \ \"51.116.48.72/29\",\r\n \"51.116.59.32/29\",\r\n \"51.116.144.72/29\",\r\n
+ \ \"51.116.155.96/29\",\r\n \"51.120.40.72/29\",\r\n \"51.120.98.168/29\",\r\n
+ \ \"51.120.219.64/29\",\r\n \"51.120.224.72/29\",\r\n \"51.120.235.128/26\",\r\n
+ \ \"51.137.160.72/29\",\r\n \"51.140.63.41/32\",\r\n \"51.140.114.209/32\",\r\n
+ \ \"51.140.148.16/29\",\r\n \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n
+ \ \"51.141.29.178/32\",\r\n \"51.142.209.124/32\",\r\n \"51.142.210.184/32\",\r\n
+ \ \"51.143.192.72/29\",\r\n \"52.136.48.72/29\",\r\n \"52.136.137.15/32\",\r\n
+ \ \"52.136.137.16/32\",\r\n \"52.138.70.115/32\",\r\n \"52.138.71.153/32\",\r\n
+ \ \"52.138.90.40/29\",\r\n \"52.139.87.129/32\",\r\n \"52.139.87.150/32\",\r\n
+ \ \"52.140.104.72/29\",\r\n \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n
+ \ \"52.143.136.58/31\",\r\n \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"52.148.30.6/32\",\r\n \"52.149.24.100/32\",\r\n
+ \ \"52.149.26.14/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"52.162.106.168/29\",\r\n \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n
+ \ \"52.165.221.72/32\",\r\n \"52.169.225.171/32\",\r\n \"52.169.231.163/32\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"52.173.250.124/32\",\r\n \"52.177.204.204/32\",\r\n
+ \ \"52.177.207.219/32\",\r\n \"52.179.10.142/32\",\r\n \"52.180.178.35/32\",\r\n
+ \ \"52.180.178.191/32\",\r\n \"52.180.182.210/32\",\r\n \"52.184.255.23/32\",\r\n
+ \ \"52.191.140.123/32\",\r\n \"52.191.170.38/32\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.229.161.220/32\",\r\n \"52.229.166.101/32\",\r\n \"52.231.18.224/29\",\r\n
+ \ \"52.231.24.186/32\",\r\n \"52.231.35.84/32\",\r\n \"52.231.146.200/29\",\r\n
+ \ \"52.231.203.87/32\",\r\n \"52.231.204.175/32\",\r\n \"52.237.24.145/32\",\r\n
+ \ \"52.237.30.255/32\",\r\n \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n
+ \ \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n \"52.251.12.161/32\",\r\n
+ \ \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n \"52.253.232.235/32\",\r\n
+ \ \"52.253.239.162/32\",\r\n \"65.52.250.24/29\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"102.133.27.16/29\",\r\n \"102.133.56.72/29\",\r\n
+ \ \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n \"104.211.81.208/29\",\r\n
+ \ \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n \"104.211.191.94/32\",\r\n
+ \ \"104.214.19.64/29\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"168.62.208.162/32\",\r\n \"168.62.209.95/32\",\r\n
+ \ \"191.233.8.64/26\",\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1000:4::40/122\",\r\n
+ \ \"2603:1000:104:1::40/122\",\r\n \"2603:1010:6:1::40/122\",\r\n
+ \ \"2603:1010:101::40/122\",\r\n \"2603:1010:304::40/122\",\r\n
+ \ \"2603:1010:404::40/122\",\r\n \"2603:1020:5:1::40/122\",\r\n
+ \ \"2603:1020:206:1::40/122\",\r\n \"2603:1020:305::40/122\",\r\n
+ \ \"2603:1020:405::40/122\",\r\n \"2603:1020:605::40/122\",\r\n
+ \ \"2603:1020:705:1::40/122\",\r\n \"2603:1020:805:1::40/122\",\r\n
+ \ \"2603:1020:905::40/122\",\r\n \"2603:1020:a04:1::40/122\",\r\n
+ \ \"2603:1020:b04::40/122\",\r\n \"2603:1020:c04:1::40/122\",\r\n
+ \ \"2603:1020:d04::40/122\",\r\n \"2603:1020:e04:1::40/122\",\r\n
+ \ \"2603:1020:f04::40/122\",\r\n \"2603:1020:1004::40/122\",\r\n
+ \ \"2603:1020:1104::40/122\",\r\n \"2603:1030:f:1::40/122\",\r\n
+ \ \"2603:1030:10:1::40/122\",\r\n \"2603:1030:104:1::40/122\",\r\n
+ \ \"2603:1030:107::40/122\",\r\n \"2603:1030:210:1::40/122\",\r\n
+ \ \"2603:1030:40b:1::40/122\",\r\n \"2603:1030:40c:1::40/122\",\r\n
+ \ \"2603:1030:504:1::40/122\",\r\n \"2603:1030:608::40/122\",\r\n
+ \ \"2603:1030:807:1::40/122\",\r\n \"2603:1030:a07::40/122\",\r\n
+ \ \"2603:1030:b04::40/122\",\r\n \"2603:1030:c06:1::40/122\",\r\n
+ \ \"2603:1030:f05:1::40/122\",\r\n \"2603:1030:1005::40/122\",\r\n
+ \ \"2603:1040:5:1::40/122\",\r\n \"2603:1040:207::40/122\",\r\n
+ \ \"2603:1040:407:1::40/122\",\r\n \"2603:1040:606::40/122\",\r\n
+ \ \"2603:1040:806::40/122\",\r\n \"2603:1040:904:1::40/122\",\r\n
+ \ \"2603:1040:a06:1::40/122\",\r\n \"2603:1040:b04::40/122\",\r\n
+ \ \"2603:1040:c06::40/122\",\r\n \"2603:1040:d04::40/122\",\r\n
+ \ \"2603:1040:f05:1::40/122\",\r\n \"2603:1040:1104::40/122\",\r\n
+ \ \"2603:1050:6:1::40/122\",\r\n \"2603:1050:403::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.151/32\",\r\n \"20.36.42.152/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"2603:1010:304::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n \"20.36.114.24/29\",\r\n
+ \ \"20.36.120.72/29\",\r\n \"2603:1010:404::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaEast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.208/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n \"2603:1010:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.185.130/32\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"20.40.173.147/32\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"2603:1010:101::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.BrazilSouth\",\r\n
+ \ \"id\": \"GatewayManager.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1050:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaCentral\",\r\n
+ \ \"id\": \"GatewayManager.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.240/29\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.237.24.145/32\",\r\n \"52.237.30.255/32\",\r\n \"2603:1030:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaEast\",\r\n
+ \ \"id\": \"GatewayManager.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.88/29\",\r\n \"40.89.16.72/29\",\r\n \"52.139.87.129/32\",\r\n
+ \ \"52.139.87.150/32\",\r\n \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n
+ \ \"2603:1030:1005::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.CentralIndia\",\r\n \"id\":
+ \"GatewayManager.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"52.140.104.72/29\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"104.211.81.208/29\",\r\n \"2603:1040:a06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUS\",\r\n
+ \ \"id\": \"GatewayManager.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.96/29\",\r\n \"20.37.152.72/29\",\r\n
+ \ \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n \"52.165.221.72/32\",\r\n
+ \ \"52.173.250.124/32\",\r\n \"2603:1030:10:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUSEUAP\",\r\n
+ \ \"id\": \"GatewayManager.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.72/29\",\r\n \"20.46.13.128/26\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"52.180.178.35/32\",\r\n \"52.180.178.191/32\",\r\n
+ \ \"52.180.182.210/32\",\r\n \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n
+ \ \"52.253.232.235/32\",\r\n \"52.253.239.162/32\",\r\n \"2603:1030:f:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastAsia\",\r\n
+ \ \"id\": \"GatewayManager.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.8/29\",\r\n \"20.189.104.72/29\",\r\n \"52.229.161.220/32\",\r\n
+ \ \"52.229.166.101/32\",\r\n \"2603:1040:207::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS\",\r\n
+ \ \"id\": \"GatewayManager.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.92.84.128/32\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"40.71.11.96/29\",\r\n \"40.88.222.179/32\",\r\n
+ \ \"40.88.223.53/32\",\r\n \"52.179.10.142/32\",\r\n \"2603:1030:210:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.0.72/29\",\r\n
+ \ \"40.70.146.224/29\",\r\n \"52.177.204.204/32\",\r\n \"52.177.207.219/32\",\r\n
+ \ \"52.184.255.23/32\",\r\n \"52.251.12.161/32\",\r\n \"2603:1030:40c:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2EUAP\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"52.138.70.115/32\",\r\n
+ \ \"52.138.71.153/32\",\r\n \"52.138.90.40/29\",\r\n \"2603:1030:40b:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceCentral\",\r\n
+ \ \"id\": \"GatewayManager.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.72/29\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"40.79.130.224/29\",\r\n \"52.143.136.58/31\",\r\n \"2603:1020:805:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceSouth\",\r\n
+ \ \"id\": \"GatewayManager.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.88/29\",\r\n \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n
+ \ \"51.105.88.72/29\",\r\n \"52.136.137.15/32\",\r\n \"52.136.137.16/32\",\r\n
+ \ \"2603:1020:905::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.GermanyNorth\",\r\n \"id\":
+ \"GatewayManager.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.116.48.72/29\",\r\n
+ \ \"51.116.59.32/29\",\r\n \"2603:1020:d04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.GermanyWestCentral\",\r\n
+ \ \"id\": \"GatewayManager.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.72/29\",\r\n \"51.116.155.96/29\",\r\n
+ \ \"2603:1020:c04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.JapanEast\",\r\n \"id\": \"GatewayManager.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.108.16/29\",\r\n \"20.43.64.72/29\",\r\n \"40.115.248.200/32\",\r\n
+ \ \"40.115.254.17/32\",\r\n \"2603:1040:407:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.JapanWest\",\r\n
+ \ \"id\": \"GatewayManager.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.168/29\",\r\n \"40.80.56.72/29\",\r\n
+ \ \"40.81.180.83/32\",\r\n \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n
+ \ \"40.81.189.42/32\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"2603:1040:606::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.KoreaCentral\",\r\n \"id\":
+ \"GatewayManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.64.72/29\",\r\n
+ \ \"20.194.75.128/26\",\r\n \"52.231.18.224/29\",\r\n \"52.231.24.186/32\",\r\n
+ \ \"52.231.35.84/32\",\r\n \"2603:1040:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.KoreaSouth\",\r\n
+ \ \"id\": \"GatewayManager.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.168.72/29\",\r\n \"40.89.217.100/32\",\r\n
+ \ \"40.89.217.109/32\",\r\n \"52.231.146.200/29\",\r\n \"52.231.203.87/32\",\r\n
+ \ \"52.231.204.175/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"GatewayManager.NorthCentralUS\",\r\n \"id\": \"GatewayManager.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.80.184.72/29\",\r\n \"52.162.106.168/29\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"2603:1030:608::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorthEurope\",\r\n
+ \ \"id\": \"GatewayManager.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.224/29\",\r\n \"20.38.80.72/29\",\r\n
+ \ \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n \"52.169.225.171/32\",\r\n
+ \ \"52.169.231.163/32\",\r\n \"2603:1020:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayEast\",\r\n
+ \ \"id\": \"GatewayManager.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.72/29\",\r\n
+ \ \"51.120.98.168/29\",\r\n \"51.120.235.128/26\",\r\n \"2603:1020:e04:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayWest\",\r\n
+ \ \"id\": \"GatewayManager.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.219.64/29\",\r\n
+ \ \"51.120.224.72/29\",\r\n \"2603:1020:f04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthAfricaNorth\",\r\n
+ \ \"id\": \"GatewayManager.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n
+ \ \"2603:1000:104:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SouthAfricaWest\",\r\n \"id\":
+ \"GatewayManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.27.16/29\",\r\n
+ \ \"102.133.56.72/29\",\r\n \"2603:1000:4::40/122\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.85.74.21/32\",\r\n \"40.119.8.64/29\",\r\n
+ \ \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"104.214.19.64/29\",\r\n \"2603:1030:807:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SoutheastAsia\",\r\n
+ \ \"id\": \"GatewayManager.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.128/29\",\r\n \"20.43.128.72/29\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"40.90.186.21/32\",\r\n \"40.90.186.91/32\",\r\n
+ \ \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n \"2603:1040:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthIndia\",\r\n
+ \ \"id\": \"GatewayManager.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.72/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"2603:1040:c06::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SwitzerlandNorth\",\r\n
+ \ \"id\": \"GatewayManager.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.48.72/29\",\r\n \"51.107.59.32/29\",\r\n
+ \ \"2603:1020:a04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SwitzerlandWest\",\r\n \"id\":
+ \"GatewayManager.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.107.144.72/29\",\r\n
+ \ \"51.107.155.32/29\",\r\n \"2603:1020:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAECentral\",\r\n
+ \ \"id\": \"GatewayManager.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.64.72/29\",\r\n \"20.37.74.88/29\",\r\n \"2603:1040:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAENorth\",\r\n
+ \ \"id\": \"GatewayManager.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.136.72/29\",\r\n \"65.52.250.24/29\",\r\n
+ \ \"2603:1040:904:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.UKSouth\",\r\n \"id\": \"GatewayManager.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.24.72/29\",\r\n \"51.140.63.41/32\",\r\n
+ \ \"51.140.114.209/32\",\r\n \"51.140.148.16/29\",\r\n \"2603:1020:705:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKSouth2\",\r\n
+ \ \"id\": \"GatewayManager.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"51.143.192.72/29\",\r\n \"2603:1020:405::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKWest\",\r\n
+ \ \"id\": \"GatewayManager.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.72/29\",\r\n
+ \ \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n \"51.141.29.178/32\",\r\n
+ \ \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n \"2603:1020:605::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.232/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"52.148.30.6/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"2603:1030:b04::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.WestEurope\",\r\n \"id\": \"GatewayManager.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.224/29\",\r\n \"13.93.112.146/32\",\r\n
+ \ \"13.93.117.26/32\",\r\n \"40.74.24.72/29\",\r\n \"2603:1020:206:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestIndia\",\r\n
+ \ \"id\": \"GatewayManager.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n
+ \ \"52.136.48.72/29\",\r\n \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n
+ \ \"104.211.191.94/32\",\r\n \"2603:1040:806::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS\",\r\n
+ \ \"id\": \"GatewayManager.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.91.249.235/32\",\r\n
+ \ \"13.91.254.232/32\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"40.82.248.240/29\",\r\n \"40.112.242.168/29\",\r\n \"168.62.208.162/32\",\r\n
+ \ \"168.62.209.95/32\",\r\n \"2603:1030:a07::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS2\",\r\n
+ \ \"id\": \"GatewayManager.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.144/29\",\r\n
+ \ \"20.42.128.72/29\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"52.149.24.100/32\",\r\n \"52.149.26.14/32\",\r\n \"52.191.140.123/32\",\r\n
+ \ \"52.191.170.38/32\",\r\n \"2603:1030:c06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement\",\r\n
+ \ \"id\": \"GuestAndHybridManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAutomation\",\r\n \"addressPrefixes\": [\r\n \"13.65.24.129/32\",\r\n
+ \ \"13.66.138.94/31\",\r\n \"13.66.141.224/29\",\r\n \"13.66.145.80/28\",\r\n
+ \ \"13.67.8.110/31\",\r\n \"13.67.10.72/29\",\r\n \"13.69.64.78/31\",\r\n
+ \ \"13.69.67.48/29\",\r\n \"13.69.107.64/29\",\r\n \"13.69.109.128/31\",\r\n
+ \ \"13.69.109.176/28\",\r\n \"13.69.227.78/31\",\r\n \"13.69.229.248/29\",\r\n
+ \ \"13.70.72.30/31\",\r\n \"13.70.74.80/29\",\r\n \"13.70.123.166/32\",\r\n
+ \ \"13.71.170.46/31\",\r\n \"13.71.173.208/29\",\r\n \"13.71.175.144/28\",\r\n
+ \ \"13.71.194.118/31\",\r\n \"13.71.196.128/29\",\r\n \"13.71.199.176/28\",\r\n
+ \ \"13.73.242.40/29\",\r\n \"13.73.242.210/31\",\r\n \"13.73.244.208/28\",\r\n
+ \ \"13.74.107.92/31\",\r\n \"13.74.108.136/29\",\r\n \"13.75.34.150/31\",\r\n
+ \ \"13.75.39.104/29\",\r\n \"13.77.1.26/32\",\r\n \"13.77.1.212/32\",\r\n
+ \ \"13.77.50.70/31\",\r\n \"13.77.53.56/29\",\r\n \"13.77.55.192/28\",\r\n
+ \ \"13.78.59.184/32\",\r\n \"13.78.106.94/31\",\r\n \"13.78.109.120/29\",\r\n
+ \ \"13.78.111.208/28\",\r\n \"13.86.219.200/29\",\r\n \"13.86.221.216/31\",\r\n
+ \ \"13.86.223.64/28\",\r\n \"13.87.56.86/31\",\r\n \"13.87.58.72/29\",\r\n
+ \ \"13.87.122.86/31\",\r\n \"13.87.124.72/29\",\r\n \"13.88.240.74/32\",\r\n
+ \ \"13.88.244.195/32\",\r\n \"13.89.170.206/31\",\r\n \"13.89.174.136/29\",\r\n
+ \ \"13.89.178.96/28\",\r\n \"13.94.240.75/32\",\r\n \"20.36.39.150/32\",\r\n
+ \ \"20.36.106.70/31\",\r\n \"20.36.108.128/29\",\r\n \"20.36.108.240/28\",\r\n
+ \ \"20.36.114.22/31\",\r\n \"20.36.117.32/29\",\r\n \"20.36.117.144/28\",\r\n
+ \ \"20.37.74.226/31\",\r\n \"20.37.76.120/29\",\r\n \"20.38.128.104/29\",\r\n
+ \ \"20.38.128.168/31\",\r\n \"20.38.132.0/28\",\r\n \"20.38.147.152/29\",\r\n
+ \ \"20.38.149.128/31\",\r\n \"20.42.64.32/31\",\r\n \"20.42.72.128/31\",\r\n
+ \ \"20.42.72.144/28\",\r\n \"20.43.120.248/29\",\r\n \"20.43.121.120/31\",\r\n
+ \ \"20.43.123.48/28\",\r\n \"20.44.2.6/31\",\r\n \"20.44.4.104/29\",\r\n
+ \ \"20.44.8.200/29\",\r\n \"20.44.10.120/31\",\r\n \"20.44.17.8/29\",\r\n
+ \ \"20.44.17.216/31\",\r\n \"20.44.19.16/28\",\r\n \"20.44.27.112/29\",\r\n
+ \ \"20.44.29.48/31\",\r\n \"20.44.29.96/28\",\r\n \"20.45.123.88/29\",\r\n
+ \ \"20.45.123.232/31\",\r\n \"20.49.82.24/29\",\r\n \"20.49.90.24/29\",\r\n
+ \ \"20.72.27.176/29\",\r\n \"20.150.171.216/29\",\r\n \"20.150.172.224/31\",\r\n
+ \ \"20.150.179.192/29\",\r\n \"20.150.181.24/31\",\r\n \"20.150.181.176/28\",\r\n
+ \ \"20.150.187.192/29\",\r\n \"20.150.189.24/31\",\r\n \"20.192.99.192/29\",\r\n
+ \ \"20.192.101.24/31\",\r\n \"20.192.184.64/28\",\r\n \"20.192.234.176/28\",\r\n
+ \ \"20.192.235.8/29\",\r\n \"20.192.238.120/31\",\r\n \"20.193.202.176/28\",\r\n
+ \ \"20.193.203.192/29\",\r\n \"20.194.66.24/29\",\r\n \"23.96.225.107/32\",\r\n
+ \ \"23.96.225.182/32\",\r\n \"23.98.83.64/29\",\r\n \"23.98.86.56/31\",\r\n
+ \ \"40.67.60.96/29\",\r\n \"40.67.60.108/31\",\r\n \"40.69.106.70/31\",\r\n
+ \ \"40.69.108.88/29\",\r\n \"40.69.110.240/28\",\r\n \"40.70.146.78/31\",\r\n
+ \ \"40.70.148.48/29\",\r\n \"40.71.10.206/31\",\r\n \"40.71.13.240/29\",\r\n
+ \ \"40.71.30.252/32\",\r\n \"40.74.146.82/31\",\r\n \"40.74.149.32/29\",\r\n
+ \ \"40.74.150.16/28\",\r\n \"40.75.35.128/29\",\r\n \"40.75.35.216/31\",\r\n
+ \ \"40.78.194.70/31\",\r\n \"40.78.196.88/29\",\r\n \"40.78.202.130/31\",\r\n
+ \ \"40.78.203.248/29\",\r\n \"40.78.229.40/29\",\r\n \"40.78.236.128/29\",\r\n
+ \ \"40.78.238.56/31\",\r\n \"40.78.239.32/28\",\r\n \"40.78.242.172/31\",\r\n
+ \ \"40.78.243.24/29\",\r\n \"40.78.250.108/31\",\r\n \"40.78.250.216/29\",\r\n
+ \ \"40.79.130.46/31\",\r\n \"40.79.132.40/29\",\r\n \"40.79.138.44/31\",\r\n
+ \ \"40.79.138.152/29\",\r\n \"40.79.139.208/28\",\r\n \"40.79.146.44/31\",\r\n
+ \ \"40.79.146.152/29\",\r\n \"40.79.156.40/29\",\r\n \"40.79.163.8/29\",\r\n
+ \ \"40.79.163.152/31\",\r\n \"40.79.170.248/29\",\r\n \"40.79.171.224/31\",\r\n
+ \ \"40.79.173.16/28\",\r\n \"40.79.178.70/31\",\r\n \"40.79.180.56/29\",\r\n
+ \ \"40.79.180.208/28\",\r\n \"40.79.187.160/29\",\r\n \"40.79.189.56/31\",\r\n
+ \ \"40.79.194.120/29\",\r\n \"40.79.197.32/31\",\r\n \"40.80.51.88/29\",\r\n
+ \ \"40.80.53.0/31\",\r\n \"40.80.176.48/29\",\r\n \"40.80.180.0/31\",\r\n
+ \ \"40.80.180.96/28\",\r\n \"40.85.168.201/32\",\r\n \"40.89.129.151/32\",\r\n
+ \ \"40.89.132.62/32\",\r\n \"40.89.137.16/32\",\r\n \"40.89.157.7/32\",\r\n
+ \ \"40.114.77.89/32\",\r\n \"40.114.85.4/32\",\r\n \"40.118.103.191/32\",\r\n
+ \ \"40.120.8.32/28\",\r\n \"40.120.64.48/28\",\r\n \"40.120.75.48/29\",\r\n
+ \ \"51.11.97.0/31\",\r\n \"51.11.97.64/28\",\r\n \"51.12.99.208/29\",\r\n
+ \ \"51.12.203.72/29\",\r\n \"51.12.227.192/29\",\r\n \"51.12.235.192/29\",\r\n
+ \ \"51.104.8.240/29\",\r\n \"51.104.9.96/31\",\r\n \"51.105.67.168/29\",\r\n
+ \ \"51.105.69.80/31\",\r\n \"51.105.75.152/29\",\r\n \"51.105.77.48/31\",\r\n
+ \ \"51.105.77.80/28\",\r\n \"51.107.60.80/29\",\r\n \"51.107.60.92/31\",\r\n
+ \ \"51.107.60.208/28\",\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"51.116.60.80/29\",\r\n \"51.116.60.224/28\",\r\n
+ \ \"51.116.156.160/29\",\r\n \"51.116.158.56/31\",\r\n \"51.116.158.80/28\",\r\n
+ \ \"51.116.243.144/29\",\r\n \"51.116.243.216/31\",\r\n \"51.116.251.32/29\",\r\n
+ \ \"51.116.251.184/31\",\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"51.120.220.80/29\",\r\n
+ \ \"51.120.220.92/31\",\r\n \"51.120.220.176/28\",\r\n \"51.140.6.15/32\",\r\n
+ \ \"51.140.51.174/32\",\r\n \"51.140.212.104/29\",\r\n \"52.138.90.52/31\",\r\n
+ \ \"52.138.92.80/29\",\r\n \"52.138.227.136/29\",\r\n \"52.138.229.64/31\",\r\n
+ \ \"52.138.229.80/28\",\r\n \"52.147.97.0/31\",\r\n \"52.151.62.99/32\",\r\n
+ \ \"52.161.14.192/32\",\r\n \"52.161.28.108/32\",\r\n \"52.162.110.240/29\",\r\n
+ \ \"52.162.111.128/31\",\r\n \"52.163.228.23/32\",\r\n \"52.167.107.72/29\",\r\n
+ \ \"52.167.109.64/31\",\r\n \"52.169.105.82/32\",\r\n \"52.172.153.216/32\",\r\n
+ \ \"52.172.155.142/32\",\r\n \"52.178.223.62/32\",\r\n \"52.180.166.238/32\",\r\n
+ \ \"52.180.179.25/32\",\r\n \"52.182.139.56/29\",\r\n \"52.182.141.12/31\",\r\n
+ \ \"52.182.141.144/28\",\r\n \"52.183.5.195/32\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"52.231.148.120/29\",\r\n \"52.231.148.208/28\",\r\n \"52.236.186.240/29\",\r\n
+ \ \"52.236.189.72/31\",\r\n \"52.240.241.64/28\",\r\n \"52.246.155.152/29\",\r\n
+ \ \"52.246.157.0/31\",\r\n \"65.52.250.6/31\",\r\n \"65.52.252.120/29\",\r\n
+ \ \"102.37.64.32/28\",\r\n \"102.133.26.6/31\",\r\n \"102.133.28.144/29\",\r\n
+ \ \"102.133.124.16/29\",\r\n \"102.133.156.112/29\",\r\n
+ \ \"102.133.251.176/29\",\r\n \"102.133.253.32/28\",\r\n
+ \ \"104.41.9.106/32\",\r\n \"104.41.178.182/32\",\r\n \"104.208.163.218/32\",\r\n
+ \ \"104.209.137.89/32\",\r\n \"104.210.80.208/32\",\r\n \"104.210.158.71/32\",\r\n
+ \ \"104.214.164.32/28\",\r\n \"104.215.254.56/32\",\r\n \"168.61.140.48/28\",\r\n
+ \ \"191.232.170.251/32\",\r\n \"191.233.51.144/29\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1000:4:402::2c0/124\",\r\n \"2603:1000:104:402::2c0/124\",\r\n
+ \ \"2603:1000:104:802::200/124\",\r\n \"2603:1000:104:c02::200/124\",\r\n
+ \ \"2603:1010:6:402::2c0/124\",\r\n \"2603:1010:6:802::200/124\",\r\n
+ \ \"2603:1010:6:c02::200/124\",\r\n \"2603:1010:101:402::2c0/124\",\r\n
+ \ \"2603:1010:304:402::2c0/124\",\r\n \"2603:1010:404:402::2c0/124\",\r\n
+ \ \"2603:1020:5:402::2c0/124\",\r\n \"2603:1020:5:802::200/124\",\r\n
+ \ \"2603:1020:5:c02::200/124\",\r\n \"2603:1020:206:402::2c0/124\",\r\n
+ \ \"2603:1020:206:802::200/124\",\r\n \"2603:1020:206:c02::200/124\",\r\n
+ \ \"2603:1020:305:402::2c0/124\",\r\n \"2603:1020:405:402::2c0/124\",\r\n
+ \ \"2603:1020:605:402::2c0/124\",\r\n \"2603:1020:705:402::2c0/124\",\r\n
+ \ \"2603:1020:705:802::200/124\",\r\n \"2603:1020:705:c02::200/124\",\r\n
+ \ \"2603:1020:805:402::2c0/124\",\r\n \"2603:1020:805:802::200/124\",\r\n
+ \ \"2603:1020:805:c02::200/124\",\r\n \"2603:1020:905:402::2c0/124\",\r\n
+ \ \"2603:1020:a04:402::2c0/124\",\r\n \"2603:1020:a04:802::200/124\",\r\n
+ \ \"2603:1020:a04:c02::200/124\",\r\n \"2603:1020:b04:402::2c0/124\",\r\n
+ \ \"2603:1020:c04:402::2c0/124\",\r\n \"2603:1020:c04:802::200/124\",\r\n
+ \ \"2603:1020:c04:c02::200/124\",\r\n \"2603:1020:d04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:402::2c0/124\",\r\n \"2603:1020:e04:802::200/124\",\r\n
+ \ \"2603:1020:e04:c02::200/124\",\r\n \"2603:1020:f04:402::2c0/124\",\r\n
+ \ \"2603:1020:1004:400::1c0/124\",\r\n \"2603:1020:1004:400::2e0/124\",\r\n
+ \ \"2603:1020:1004:400::3a0/124\",\r\n \"2603:1020:1004:800::3d0/124\",\r\n
+ \ \"2603:1020:1004:800::3f0/124\",\r\n \"2603:1020:1104:400::2c0/124\",\r\n
+ \ \"2603:1030:f:400::ac0/124\",\r\n \"2603:1030:10:402::2c0/124\",\r\n
+ \ \"2603:1030:10:802::200/124\",\r\n \"2603:1030:10:c02::200/124\",\r\n
+ \ \"2603:1030:104:402::2c0/124\",\r\n \"2603:1030:107:400::240/124\",\r\n
+ \ \"2603:1030:210:402::2c0/124\",\r\n \"2603:1030:210:802::200/124\",\r\n
+ \ \"2603:1030:210:c02::200/124\",\r\n \"2603:1030:40b:400::ac0/124\",\r\n
+ \ \"2603:1030:40b:800::200/124\",\r\n \"2603:1030:40b:c00::200/124\",\r\n
+ \ \"2603:1030:40c:402::2c0/124\",\r\n \"2603:1030:40c:802::200/124\",\r\n
+ \ \"2603:1030:40c:c02::200/124\",\r\n \"2603:1030:504:402::1c0/124\",\r\n
+ \ \"2603:1030:504:402::2e0/124\",\r\n \"2603:1030:504:402::3a0/124\",\r\n
+ \ \"2603:1030:504:402::440/124\",\r\n \"2603:1030:504:802::3c0/123\",\r\n
+ \ \"2603:1030:504:802::3f0/124\",\r\n \"2603:1030:608:402::2c0/124\",\r\n
+ \ \"2603:1030:807:402::2c0/124\",\r\n \"2603:1030:807:802::200/124\",\r\n
+ \ \"2603:1030:807:c02::200/124\",\r\n \"2603:1030:a07:402::940/124\",\r\n
+ \ \"2603:1030:b04:402::2c0/124\",\r\n \"2603:1030:c06:400::ac0/124\",\r\n
+ \ \"2603:1030:c06:802::200/124\",\r\n \"2603:1030:c06:c02::200/124\",\r\n
+ \ \"2603:1030:f05:402::2c0/124\",\r\n \"2603:1030:f05:802::200/124\",\r\n
+ \ \"2603:1030:f05:c02::200/124\",\r\n \"2603:1030:1005:402::2c0/124\",\r\n
+ \ \"2603:1040:5:402::2c0/124\",\r\n \"2603:1040:5:802::200/124\",\r\n
+ \ \"2603:1040:5:c02::200/124\",\r\n \"2603:1040:207:402::2c0/124\",\r\n
+ \ \"2603:1040:407:402::2c0/124\",\r\n \"2603:1040:407:802::200/124\",\r\n
+ \ \"2603:1040:407:c02::200/124\",\r\n \"2603:1040:606:402::2c0/124\",\r\n
+ \ \"2603:1040:806:402::2c0/124\",\r\n \"2603:1040:904:402::2c0/124\",\r\n
+ \ \"2603:1040:904:802::200/124\",\r\n \"2603:1040:904:c02::200/124\",\r\n
+ \ \"2603:1040:a06:402::2c0/124\",\r\n \"2603:1040:a06:802::200/124\",\r\n
+ \ \"2603:1040:a06:c02::200/124\",\r\n \"2603:1040:b04:402::2c0/124\",\r\n
+ \ \"2603:1040:c06:402::2c0/124\",\r\n \"2603:1040:d04:400::1c0/124\",\r\n
+ \ \"2603:1040:d04:400::2e0/124\",\r\n \"2603:1040:d04:400::3a0/124\",\r\n
+ \ \"2603:1040:d04:800::3d0/124\",\r\n \"2603:1040:d04:800::3f0/124\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\",\r\n \"2603:1040:1104:400::2c0/124\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\",\r\n \"2603:1050:403:400::1e0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.BrazilSouth\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"104.41.9.106/32\",\r\n \"191.232.170.251/32\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.KoreaCentral\",\r\n \"id\":
+ \"GuestAndHybridManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.27.112/29\",\r\n \"20.44.29.48/31\",\r\n
+ \ \"20.44.29.96/28\",\r\n \"20.194.66.24/29\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.NorwayEast\",\r\n \"id\":
+ \"GuestAndHybridManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAutomation\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"2603:1020:e04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:802::200/124\",\r\n \"2603:1020:e04:c02::200/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.NorwayWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.220.80/29\",\r\n \"51.120.220.92/31\",\r\n
+ \ \"51.120.220.176/28\",\r\n \"2603:1020:f04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"2603:1020:b04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n
+ \ \"id\": \"HDInsight\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.66.141.144/29\",\r\n
+ \ \"13.67.9.152/29\",\r\n \"13.69.65.8/29\",\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.70.73.96/29\",\r\n \"13.71.172.240/29\",\r\n \"13.71.196.48/29\",\r\n
+ \ \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n \"13.74.153.132/32\",\r\n
+ \ \"13.75.38.112/29\",\r\n \"13.75.152.195/32\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n
+ \ \"13.77.52.8/29\",\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n
+ \ \"13.82.225.233/32\",\r\n \"13.86.218.240/29\",\r\n \"13.87.58.32/29\",\r\n
+ \ \"13.87.124.32/29\",\r\n \"13.89.171.120/29\",\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.36.123.88/29\",\r\n \"20.37.68.40/29\",\r\n
+ \ \"20.37.76.96/29\",\r\n \"20.37.228.0/29\",\r\n \"20.38.139.88/29\",\r\n
+ \ \"20.39.15.48/29\",\r\n \"20.40.207.144/29\",\r\n \"20.41.69.32/29\",\r\n
+ \ \"20.41.197.120/29\",\r\n \"20.43.45.224/29\",\r\n \"20.43.120.8/29\",\r\n
+ \ \"20.44.4.64/29\",\r\n \"20.44.16.8/29\",\r\n \"20.44.26.240/29\",\r\n
+ \ \"20.45.115.128/29\",\r\n \"20.45.198.80/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"20.49.114.56/29\",\r\n \"20.49.126.128/29\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"20.61.96.160/29\",\r\n \"20.72.20.40/29\",\r\n
+ \ \"20.150.167.176/29\",\r\n \"20.150.172.232/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"20.189.111.192/29\",\r\n \"20.191.160.0/29\",\r\n \"20.192.48.216/29\",\r\n
+ \ \"20.192.235.248/29\",\r\n \"20.193.194.16/29\",\r\n \"20.193.203.200/29\",\r\n
+ \ \"23.98.107.192/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"40.64.134.160/29\",\r\n \"40.67.50.248/29\",\r\n
+ \ \"40.67.60.64/29\",\r\n \"40.69.107.8/29\",\r\n \"40.71.13.160/29\",\r\n
+ \ \"40.71.175.99/32\",\r\n \"40.74.101.192/29\",\r\n \"40.74.125.69/32\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.78.195.8/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.79.180.16/29\",\r\n \"40.79.187.0/29\",\r\n
+ \ \"40.80.63.144/29\",\r\n \"40.80.172.120/29\",\r\n \"40.89.22.88/29\",\r\n
+ \ \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n \"40.89.157.135/32\",\r\n
+ \ \"51.12.17.48/29\",\r\n \"51.12.25.48/29\",\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.105.92.56/29\",\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"51.116.49.168/29\",\r\n \"51.116.60.48/29\",\r\n \"51.116.145.168/29\",\r\n
+ \ \"51.116.156.48/29\",\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"51.120.220.48/29\",\r\n \"51.120.228.40/29\",\r\n \"51.137.166.32/29\",\r\n
+ \ \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"52.136.52.40/29\",\r\n
+ \ \"52.140.108.248/29\",\r\n \"52.146.79.136/29\",\r\n \"52.146.130.184/29\",\r\n
+ \ \"52.150.154.192/29\",\r\n \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n
+ \ \"52.162.110.160/29\",\r\n \"52.164.210.96/32\",\r\n \"52.166.243.90/32\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"52.175.38.134/32\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"52.228.37.66/32\",\r\n
+ \ \"52.228.45.222/32\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"52.231.36.209/32\",\r\n \"52.231.39.142/32\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\",\r\n \"65.52.252.96/29\",\r\n
+ \ \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n \"102.133.124.0/29\",\r\n
+ \ \"102.133.219.176/29\",\r\n \"104.46.176.168/29\",\r\n
+ \ \"104.210.84.115/32\",\r\n \"104.211.216.210/32\",\r\n
+ \ \"104.211.223.67/32\",\r\n \"138.91.29.150/32\",\r\n \"138.91.141.162/32\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"168.61.48.131/32\",\r\n
+ \ \"168.61.49.99/32\",\r\n \"191.233.10.184/29\",\r\n \"191.233.51.152/29\",\r\n
+ \ \"191.233.204.240/29\",\r\n \"191.234.138.128/29\",\r\n
+ \ \"191.235.84.104/32\",\r\n \"191.235.87.113/32\",\r\n \"2603:1000:4:402::320/124\",\r\n
+ \ \"2603:1000:104:402::320/124\",\r\n \"2603:1010:6:402::320/124\",\r\n
+ \ \"2603:1010:101:402::320/124\",\r\n \"2603:1010:304:402::320/124\",\r\n
+ \ \"2603:1010:404:402::320/124\",\r\n \"2603:1020:5:402::320/124\",\r\n
+ \ \"2603:1020:206:402::320/124\",\r\n \"2603:1020:305:402::320/124\",\r\n
+ \ \"2603:1020:405:402::320/124\",\r\n \"2603:1020:605:402::320/124\",\r\n
+ \ \"2603:1020:705:402::320/124\",\r\n \"2603:1020:805:402::320/124\",\r\n
+ \ \"2603:1020:905:402::320/124\",\r\n \"2603:1020:a04:402::320/124\",\r\n
+ \ \"2603:1020:b04:402::320/124\",\r\n \"2603:1020:c04:402::320/124\",\r\n
+ \ \"2603:1020:d04:402::320/124\",\r\n \"2603:1020:e04::790/124\",\r\n
+ \ \"2603:1020:e04:402::320/124\",\r\n \"2603:1020:f04:402::320/124\",\r\n
+ \ \"2603:1020:1004:1::1e0/124\",\r\n \"2603:1020:1104:1::140/124\",\r\n
+ \ \"2603:1030:f:2::4b0/124\",\r\n \"2603:1030:f:400::b20/124\",\r\n
+ \ \"2603:1030:10:402::320/124\",\r\n \"2603:1030:104:402::320/124\",\r\n
+ \ \"2603:1030:107::720/124\",\r\n \"2603:1030:210:402::320/124\",\r\n
+ \ \"2603:1030:40b:400::b20/124\",\r\n \"2603:1030:40c:402::320/124\",\r\n
+ \ \"2603:1030:504::1e0/124\",\r\n \"2603:1030:608:402::320/124\",\r\n
+ \ \"2603:1030:807:402::320/124\",\r\n \"2603:1030:a07:402::9a0/124\",\r\n
+ \ \"2603:1030:b04:402::320/124\",\r\n \"2603:1030:c06:400::b20/124\",\r\n
+ \ \"2603:1030:f05:402::320/124\",\r\n \"2603:1030:1005:402::320/124\",\r\n
+ \ \"2603:1040:5:402::320/124\",\r\n \"2603:1040:207:402::320/124\",\r\n
+ \ \"2603:1040:407:402::320/124\",\r\n \"2603:1040:606:402::320/124\",\r\n
+ \ \"2603:1040:806:402::320/124\",\r\n \"2603:1040:904:402::320/124\",\r\n
+ \ \"2603:1040:a06:402::320/124\",\r\n \"2603:1040:b04:402::320/124\",\r\n
+ \ \"2603:1040:c06:402::320/124\",\r\n \"2603:1040:d04:1::1e0/124\",\r\n
+ \ \"2603:1040:f05::790/124\",\r\n \"2603:1040:f05:402::320/124\",\r\n
+ \ \"2603:1040:1104:1::140/124\",\r\n \"2603:1050:6:402::320/124\",\r\n
+ \ \"2603:1050:403:400::420/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.AustraliaCentral\",\r\n \"id\":
+ \"HDInsight.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.37.228.0/29\",\r\n \"2603:1010:304:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaEast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.73.96/29\",\r\n \"13.75.152.195/32\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"104.210.84.115/32\",\r\n \"2603:1010:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaSoutheast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n \"13.77.52.8/29\",\r\n
+ \ \"104.46.176.168/29\",\r\n \"2603:1010:101:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.BrazilSouth\",\r\n
+ \ \"id\": \"HDInsight.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"191.233.204.240/29\",\r\n
+ \ \"191.234.138.128/29\",\r\n \"191.235.84.104/32\",\r\n
+ \ \"191.235.87.113/32\",\r\n \"2603:1050:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaCentral\",\r\n
+ \ \"id\": \"HDInsight.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.240/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"52.228.37.66/32\",\r\n \"52.228.45.222/32\",\r\n \"2603:1030:f05:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaEast\",\r\n
+ \ \"id\": \"HDInsight.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.69.107.8/29\",\r\n
+ \ \"40.89.22.88/29\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"2603:1030:1005:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.CentralIndia\",\r\n \"id\": \"HDInsight.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.8/29\",\r\n \"52.140.108.248/29\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"2603:1040:a06:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUS\",\r\n
+ \ \"id\": \"HDInsight.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.120/29\",\r\n
+ \ \"20.40.207.144/29\",\r\n \"2603:1030:10:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUSEUAP\",\r\n
+ \ \"id\": \"HDInsight.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.80/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"2603:1030:f:2::4b0/124\",\r\n
+ \ \"2603:1030:f:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.EastAsia\",\r\n \"id\": \"HDInsight.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.38.112/29\",\r\n \"20.189.111.192/29\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"52.175.38.134/32\",\r\n \"2603:1040:207:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS\",\r\n
+ \ \"id\": \"HDInsight.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.82.225.233/32\",\r\n
+ \ \"40.71.13.160/29\",\r\n \"40.71.175.99/32\",\r\n \"52.146.79.136/29\",\r\n
+ \ \"168.61.48.131/32\",\r\n \"168.61.49.99/32\",\r\n \"2603:1030:210:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2\",\r\n
+ \ \"id\": \"HDInsight.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.44.16.8/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"2603:1030:40c:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2EUAP\",\r\n
+ \ \"id\": \"HDInsight.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.39.15.48/29\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n
+ \ \"2603:1030:40b:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.FranceCentral\",\r\n \"id\": \"HDInsight.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.45.224/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.89.157.135/32\",\r\n \"2603:1020:805:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.FranceSouth\",\r\n
+ \ \"id\": \"HDInsight.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.79.180.16/29\",\r\n
+ \ \"51.105.92.56/29\",\r\n \"2603:1020:905:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyNorth\",\r\n
+ \ \"id\": \"HDInsight.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.116.49.168/29\",\r\n
+ \ \"51.116.60.48/29\",\r\n \"2603:1020:d04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyWestCentral\",\r\n
+ \ \"id\": \"HDInsight.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.168/29\",\r\n \"51.116.156.48/29\",\r\n
+ \ \"2603:1020:c04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.JapanEast\",\r\n \"id\": \"HDInsight.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n \"20.191.160.0/29\",\r\n
+ \ \"40.79.187.0/29\",\r\n \"2603:1040:407:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.JapanWest\",\r\n
+ \ \"id\": \"HDInsight.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.192/29\",\r\n
+ \ \"40.74.125.69/32\",\r\n \"40.80.63.144/29\",\r\n \"138.91.29.150/32\",\r\n
+ \ \"2603:1040:606:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaCentral\",\r\n \"id\": \"HDInsight.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.32/29\",\r\n \"20.44.26.240/29\",\r\n \"52.231.36.209/32\",\r\n
+ \ \"52.231.39.142/32\",\r\n \"2603:1040:f05::790/124\",\r\n
+ \ \"2603:1040:f05:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaSouth\",\r\n \"id\": \"HDInsight.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.172.120/29\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthCentralUS\",\r\n
+ \ \"id\": \"HDInsight.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.56/29\",\r\n \"52.162.110.160/29\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"2603:1030:608:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthEurope\",\r\n
+ \ \"id\": \"HDInsight.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.74.153.132/32\",\r\n \"52.146.130.184/29\",\r\n \"52.164.210.96/32\",\r\n
+ \ \"2603:1020:5:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.NorwayEast\",\r\n \"id\": \"HDInsight.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"2603:1020:e04::790/124\",\r\n \"2603:1020:e04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorwayWest\",\r\n
+ \ \"id\": \"HDInsight.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.120.220.48/29\",\r\n
+ \ \"51.120.228.40/29\",\r\n \"2603:1020:f04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthAfricaNorth\",\r\n
+ \ \"id\": \"HDInsight.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.124.0/29\",\r\n \"102.133.219.176/29\",\r\n
+ \ \"2603:1000:104:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthAfricaWest\",\r\n \"id\": \"HDInsight.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n
+ \ \"2603:1000:4:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthCentralUS\",\r\n \"id\": \"HDInsight.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n
+ \ \"2603:1030:807:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SoutheastAsia\",\r\n \"id\": \"HDInsight.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.152/29\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"23.98.107.192/29\",\r\n \"2603:1040:5:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthIndia\",\r\n
+ \ \"id\": \"HDInsight.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.41.197.120/29\",\r\n
+ \ \"40.78.195.8/29\",\r\n \"104.211.216.210/32\",\r\n \"104.211.223.67/32\",\r\n
+ \ \"2603:1040:c06:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SwitzerlandNorth\",\r\n \"id\":
+ \"HDInsight.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"2603:1020:a04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SwitzerlandWest\",\r\n
+ \ \"id\": \"HDInsight.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"2603:1020:b04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UAECentral\",\r\n \"id\": \"HDInsight.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.40/29\",\r\n \"20.37.76.96/29\",\r\n \"2603:1040:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UAENorth\",\r\n
+ \ \"id\": \"HDInsight.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.88/29\",\r\n
+ \ \"65.52.252.96/29\",\r\n \"2603:1040:904:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UKNorth\",\r\n
+ \ \"id\": \"HDInsight.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.87.124.32/29\",\r\n
+ \ \"2603:1020:305:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKSouth\",\r\n \"id\": \"HDInsight.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n
+ \ \"2603:1020:705:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKWest\",\r\n \"id\": \"HDInsight.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.166.32/29\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"2603:1020:605:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestCentralUS\",\r\n
+ \ \"id\": \"HDInsight.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.48/29\",\r\n \"52.150.154.192/29\",\r\n
+ \ \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n \"2603:1030:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestEurope\",\r\n
+ \ \"id\": \"HDInsight.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.8/29\",\r\n
+ \ \"20.61.96.160/29\",\r\n \"52.166.243.90/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"2603:1020:206:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.WestUS\",\r\n \"id\": \"HDInsight.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.86.218.240/29\",\r\n
+ \ \"20.49.126.128/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"138.91.141.162/32\",\r\n \"2603:1030:a07:402::9a0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestUS2\",\r\n
+ \ \"id\": \"HDInsight.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.144/29\",\r\n
+ \ \"40.64.134.160/29\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"2603:1030:c06:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps\",\r\n \"id\": \"LogicApps\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.82.17/32\",\r\n \"13.65.82.190/32\",\r\n
+ \ \"13.65.86.56/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.52.232/32\",\r\n
+ \ \"13.66.128.68/32\",\r\n \"13.66.201.169/32\",\r\n \"13.66.210.167/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.66.246.219/32\",\r\n \"13.67.13.224/27\",\r\n
+ \ \"13.67.91.135/32\",\r\n \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n
+ \ \"13.67.236.76/32\",\r\n \"13.67.236.125/32\",\r\n \"13.69.71.160/27\",\r\n
+ \ \"13.69.109.144/28\",\r\n \"13.69.231.160/27\",\r\n \"13.69.233.16/28\",\r\n
+ \ \"13.70.78.192/27\",\r\n \"13.70.159.205/32\",\r\n \"13.71.146.140/32\",\r\n
+ \ \"13.71.158.3/32\",\r\n \"13.71.158.120/32\",\r\n \"13.71.184.150/32\",\r\n
+ \ \"13.71.186.1/32\",\r\n \"13.71.199.128/27\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.4.207/32\",\r\n \"13.73.114.207/32\",\r\n \"13.73.115.153/32\",\r\n
+ \ \"13.73.244.144/28\",\r\n \"13.73.244.160/27\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.94.173/32\",\r\n \"13.75.149.4/32\",\r\n \"13.75.153.66/32\",\r\n
+ \ \"13.76.4.194/32\",\r\n \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n
+ \ \"13.77.3.139/32\",\r\n \"13.77.53.224/27\",\r\n \"13.77.55.128/28\",\r\n
+ \ \"13.77.56.167/32\",\r\n \"13.77.58.136/32\",\r\n \"13.77.149.159/32\",\r\n
+ \ \"13.77.152.21/32\",\r\n \"13.78.18.168/32\",\r\n \"13.78.20.232/32\",\r\n
+ \ \"13.78.21.155/32\",\r\n \"13.78.35.229/32\",\r\n \"13.78.42.223/32\",\r\n
+ \ \"13.78.43.164/32\",\r\n \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n
+ \ \"13.78.111.160/27\",\r\n \"13.78.129.20/32\",\r\n \"13.78.137.179/32\",\r\n
+ \ \"13.78.137.247/32\",\r\n \"13.78.141.75/32\",\r\n \"13.78.148.140/32\",\r\n
+ \ \"13.78.151.161/32\",\r\n \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n
+ \ \"13.84.43.45/32\",\r\n \"13.84.159.168/32\",\r\n \"13.85.79.155/32\",\r\n
+ \ \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.58.160/27\",\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n \"13.91.252.184/32\",\r\n
+ \ \"13.92.98.111/32\",\r\n \"13.95.147.65/32\",\r\n \"13.95.155.53/32\",\r\n
+ \ \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n \"20.36.117.96/27\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.37.76.224/27\",\r\n
+ \ \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n \"20.38.149.144/28\",\r\n
+ \ \"20.38.149.160/27\",\r\n \"20.42.64.48/28\",\r\n \"20.42.72.160/27\",\r\n
+ \ \"20.43.121.192/27\",\r\n \"20.43.121.224/28\",\r\n \"20.44.4.176/28\",\r\n
+ \ \"20.44.4.192/27\",\r\n \"20.44.17.224/27\",\r\n \"20.45.64.29/32\",\r\n
+ \ \"20.45.64.87/32\",\r\n \"20.45.67.134/31\",\r\n \"20.45.67.170/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.72.54/32\",\r\n \"20.45.72.72/32\",\r\n
+ \ \"20.45.75.193/32\",\r\n \"20.45.75.200/32\",\r\n \"20.45.75.236/32\",\r\n
+ \ \"20.45.79.239/32\",\r\n \"20.72.30.160/28\",\r\n \"20.72.30.192/27\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.150.173.192/27\",\r\n \"20.150.181.32/27\",\r\n
+ \ \"20.188.33.169/32\",\r\n \"20.188.39.105/32\",\r\n \"20.192.184.0/27\",\r\n
+ \ \"20.192.238.128/27\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"20.193.206.128/27\",\r\n \"23.96.200.77/32\",\r\n \"23.96.200.227/32\",\r\n
+ \ \"23.96.203.46/32\",\r\n \"23.96.210.49/32\",\r\n \"23.96.212.28/32\",\r\n
+ \ \"23.96.253.219/32\",\r\n \"23.97.68.172/32\",\r\n \"23.97.210.126/32\",\r\n
+ \ \"23.97.211.179/32\",\r\n \"23.97.218.130/32\",\r\n \"23.99.125.99/32\",\r\n
+ \ \"23.100.29.190/32\",\r\n \"23.100.82.16/32\",\r\n \"23.100.86.139/32\",\r\n
+ \ \"23.100.87.24/32\",\r\n \"23.100.87.56/32\",\r\n \"23.100.124.84/32\",\r\n
+ \ \"23.100.127.172/32\",\r\n \"23.101.132.208/32\",\r\n \"23.101.136.201/32\",\r\n
+ \ \"23.101.139.153/32\",\r\n \"23.101.183.225/32\",\r\n \"23.101.191.106/32\",\r\n
+ \ \"23.102.70.174/32\",\r\n \"40.67.60.176/28\",\r\n \"40.67.60.192/27\",\r\n
+ \ \"40.68.209.23/32\",\r\n \"40.68.222.65/32\",\r\n \"40.69.110.192/27\",\r\n
+ \ \"40.69.110.224/28\",\r\n \"40.70.26.154/32\",\r\n \"40.70.27.236/32\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.70.29.214/32\",\r\n \"40.70.131.151/32\",\r\n
+ \ \"40.74.64.207/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.68.85/32\",\r\n
+ \ \"40.74.74.21/32\",\r\n \"40.74.76.213/32\",\r\n \"40.74.77.205/32\",\r\n
+ \ \"40.74.81.13/32\",\r\n \"40.74.85.215/32\",\r\n \"40.74.131.151/32\",\r\n
+ \ \"40.74.132.29/32\",\r\n \"40.74.136.23/32\",\r\n \"40.74.140.4/32\",\r\n
+ \ \"40.74.140.162/32\",\r\n \"40.74.140.173/32\",\r\n \"40.74.142.133/32\",\r\n
+ \ \"40.74.143.215/32\",\r\n \"40.74.149.96/27\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.204.224/27\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"40.78.245.144/28\",\r\n \"40.78.245.160/27\",\r\n \"40.79.44.7/32\",\r\n
+ \ \"40.79.139.144/28\",\r\n \"40.79.139.160/27\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.160/27\",\r\n \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n
+ \ \"40.80.180.16/28\",\r\n \"40.80.180.32/27\",\r\n \"40.83.73.39/32\",\r\n
+ \ \"40.83.75.165/32\",\r\n \"40.83.77.208/32\",\r\n \"40.83.98.194/32\",\r\n
+ \ \"40.83.100.69/32\",\r\n \"40.83.127.19/32\",\r\n \"40.83.164.80/32\",\r\n
+ \ \"40.84.25.234/32\",\r\n \"40.84.30.147/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n
+ \ \"40.85.250.212/32\",\r\n \"40.85.252.47/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.86.203.228/32\",\r\n \"40.86.216.241/32\",\r\n \"40.86.217.241/32\",\r\n
+ \ \"40.86.226.149/32\",\r\n \"40.86.228.93/32\",\r\n \"40.89.186.28/32\",\r\n
+ \ \"40.89.186.30/32\",\r\n \"40.89.188.169/32\",\r\n \"40.89.190.104/32\",\r\n
+ \ \"40.89.191.161/32\",\r\n \"40.112.90.39/32\",\r\n \"40.112.92.104/32\",\r\n
+ \ \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n \"40.113.3.202/32\",\r\n
+ \ \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n \"40.113.11.17/32\",\r\n
+ \ \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n \"40.113.20.202/32\",\r\n
+ \ \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n \"40.113.218.230/32\",\r\n
+ \ \"40.114.8.21/32\",\r\n \"40.114.12.31/32\",\r\n \"40.114.13.216/32\",\r\n
+ \ \"40.114.14.143/32\",\r\n \"40.114.40.186/32\",\r\n \"40.114.51.5/32\",\r\n
+ \ \"40.114.82.191/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"40.120.64.0/27\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"40.121.91.41/32\",\r\n \"40.122.41.236/32\",\r\n \"40.122.46.197/32\",\r\n
+ \ \"40.122.170.198/32\",\r\n \"40.126.227.199/32\",\r\n \"40.126.240.14/32\",\r\n
+ \ \"40.126.249.73/32\",\r\n \"40.126.252.33/32\",\r\n \"40.126.252.85/32\",\r\n
+ \ \"40.126.252.107/32\",\r\n \"40.127.80.231/32\",\r\n \"40.127.83.170/32\",\r\n
+ \ \"40.127.84.38/32\",\r\n \"40.127.86.12/32\",\r\n \"40.127.91.18/32\",\r\n
+ \ \"40.127.93.92/32\",\r\n \"51.11.97.16/28\",\r\n \"51.11.97.32/27\",\r\n
+ \ \"51.12.100.112/28\",\r\n \"51.12.102.160/27\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.12.204.192/27\",\r\n \"51.12.229.32/27\",\r\n \"51.104.9.112/28\",\r\n
+ \ \"51.105.69.96/27\",\r\n \"51.107.60.160/27\",\r\n \"51.107.60.192/28\",\r\n
+ \ \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.104/32\",\r\n
+ \ \"51.116.168.222/32\",\r\n \"51.116.171.49/32\",\r\n \"51.116.171.209/32\",\r\n
+ \ \"51.116.175.0/32\",\r\n \"51.116.175.17/32\",\r\n \"51.116.175.51/32\",\r\n
+ \ \"51.116.233.22/32\",\r\n \"51.116.233.33/32\",\r\n \"51.116.233.35/32\",\r\n
+ \ \"51.116.233.40/32\",\r\n \"51.116.233.87/32\",\r\n \"51.116.243.224/27\",\r\n
+ \ \"51.120.100.160/27\",\r\n \"51.120.109.32/28\",\r\n \"51.120.220.128/27\",\r\n
+ \ \"51.120.220.160/28\",\r\n \"51.140.28.225/32\",\r\n \"51.140.73.85/32\",\r\n
+ \ \"51.140.74.14/32\",\r\n \"51.140.78.44/32\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.137.190/32\",\r\n
+ \ \"51.140.142.28/32\",\r\n \"51.140.153.135/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.140.158.24/32\",\r\n \"51.141.45.238/32\",\r\n \"51.141.47.136/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.54.185/32\",\r\n \"51.141.112.112/32\",\r\n \"51.141.113.36/32\",\r\n
+ \ \"51.141.114.77/32\",\r\n \"51.141.118.119/32\",\r\n \"51.141.119.63/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"51.144.182.201/32\",\r\n
+ \ \"52.143.156.55/32\",\r\n \"52.143.158.203/32\",\r\n \"52.143.162.83/32\",\r\n
+ \ \"52.143.164.15/32\",\r\n \"52.143.164.80/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.147.97.32/27\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"52.161.8.128/32\",\r\n \"52.161.9.108/32\",\r\n \"52.161.18.218/32\",\r\n
+ \ \"52.161.19.82/32\",\r\n \"52.161.26.172/32\",\r\n \"52.161.27.190/32\",\r\n
+ \ \"52.162.111.144/28\",\r\n \"52.162.111.160/27\",\r\n \"52.162.208.216/32\",\r\n
+ \ \"52.162.213.231/32\",\r\n \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n
+ \ \"52.163.230.166/32\",\r\n \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n
+ \ \"52.169.220.174/32\",\r\n \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n
+ \ \"52.172.50.24/32\",\r\n \"52.172.51.140/32\",\r\n \"52.172.52.0/32\",\r\n
+ \ \"52.172.55.231/32\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n
+ \ \"52.175.33.254/32\",\r\n \"52.175.198.132/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"52.182.141.160/27\",\r\n \"52.183.29.132/32\",\r\n
+ \ \"52.183.30.10/32\",\r\n \"52.183.30.169/32\",\r\n \"52.183.39.67/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"52.187.226.96/32\",\r\n
+ \ \"52.187.226.139/32\",\r\n \"52.187.227.245/32\",\r\n \"52.187.229.130/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.187.231.184/32\",\r\n \"52.189.214.42/32\",\r\n
+ \ \"52.189.216.28/32\",\r\n \"52.189.220.75/32\",\r\n \"52.189.222.77/32\",\r\n
+ \ \"52.228.39.244/32\",\r\n \"52.229.120.45/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.229.126.25/32\",\r\n \"52.231.23.16/28\",\r\n \"52.231.23.32/27\",\r\n
+ \ \"52.232.128.155/32\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n
+ \ \"65.52.8.225/32\",\r\n \"65.52.9.64/32\",\r\n \"65.52.9.96/32\",\r\n
+ \ \"65.52.10.183/32\",\r\n \"65.52.60.5/32\",\r\n \"65.52.175.34/32\",\r\n
+ \ \"65.52.185.96/32\",\r\n \"65.52.185.218/32\",\r\n \"65.52.186.153/32\",\r\n
+ \ \"65.52.186.190/32\",\r\n \"65.52.186.225/32\",\r\n \"65.52.211.164/32\",\r\n
+ \ \"70.37.50.6/32\",\r\n \"70.37.54.122/32\",\r\n \"102.133.28.208/28\",\r\n
+ \ \"102.133.28.224/27\",\r\n \"102.133.72.37/32\",\r\n \"102.133.72.98/32\",\r\n
+ \ \"102.133.72.113/32\",\r\n \"102.133.72.132/32\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.179/32\",\r\n \"102.133.72.183/32\",\r\n
+ \ \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n \"102.133.75.169/32\",\r\n
+ \ \"102.133.75.191/32\",\r\n \"102.133.156.176/28\",\r\n
+ \ \"102.133.224.125/32\",\r\n \"102.133.226.199/32\",\r\n
+ \ \"102.133.227.103/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.6/32\",\r\n
+ \ \"102.133.228.9/32\",\r\n \"102.133.230.4/32\",\r\n \"102.133.230.82/32\",\r\n
+ \ \"102.133.231.9/32\",\r\n \"102.133.231.51/32\",\r\n \"102.133.231.117/32\",\r\n
+ \ \"102.133.231.188/32\",\r\n \"102.133.251.224/27\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.40.218.37/32\",\r\n
+ \ \"104.41.0.115/32\",\r\n \"104.41.33.103/32\",\r\n \"104.41.162.245/32\",\r\n
+ \ \"104.41.163.102/32\",\r\n \"104.41.168.76/32\",\r\n \"104.41.173.132/32\",\r\n
+ \ \"104.41.179.165/32\",\r\n \"104.41.181.59/32\",\r\n \"104.41.182.232/32\",\r\n
+ \ \"104.42.38.32/32\",\r\n \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n
+ \ \"104.42.236.93/32\",\r\n \"104.43.166.135/32\",\r\n \"104.43.243.39/32\",\r\n
+ \ \"104.45.9.52/32\",\r\n \"104.45.153.81/32\",\r\n \"104.46.32.99/32\",\r\n
+ \ \"104.46.34.93/32\",\r\n \"104.46.34.208/32\",\r\n \"104.46.39.63/32\",\r\n
+ \ \"104.46.42.167/32\",\r\n \"104.46.98.208/32\",\r\n \"104.46.106.158/32\",\r\n
+ \ \"104.47.138.214/32\",\r\n \"104.208.25.27/32\",\r\n \"104.208.140.40/32\",\r\n
+ \ \"104.208.155.200/32\",\r\n \"104.208.158.174/32\",\r\n
+ \ \"104.209.131.77/32\",\r\n \"104.209.133.254/32\",\r\n
+ \ \"104.209.134.133/32\",\r\n \"104.210.89.222/32\",\r\n
+ \ \"104.210.89.244/32\",\r\n \"104.210.90.241/32\",\r\n \"104.210.91.55/32\",\r\n
+ \ \"104.210.144.48/32\",\r\n \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n
+ \ \"104.211.74.145/32\",\r\n \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n
+ \ \"104.211.101.108/32\",\r\n \"104.211.102.62/32\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"104.211.225.152/32\",\r\n \"104.211.227.229/32\",\r\n
+ \ \"104.211.229.115/32\",\r\n \"104.211.230.126/32\",\r\n
+ \ \"104.211.230.129/32\",\r\n \"104.211.231.39/32\",\r\n
+ \ \"104.214.137.243/32\",\r\n \"104.214.161.64/27\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.88.156/32\",\r\n \"104.215.89.144/32\",\r\n
+ \ \"104.215.90.86/32\",\r\n \"104.215.90.189/32\",\r\n \"104.215.90.203/32\",\r\n
+ \ \"104.215.93.125/32\",\r\n \"104.215.176.31/32\",\r\n \"104.215.176.81/32\",\r\n
+ \ \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n \"104.215.179.133/32\",\r\n
+ \ \"104.215.180.203/32\",\r\n \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n
+ \ \"111.221.85.74/32\",\r\n \"137.116.44.82/32\",\r\n \"137.116.80.70/32\",\r\n
+ \ \"137.116.85.245/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.117.72.32/32\",\r\n \"137.135.106.54/32\",\r\n \"138.91.17.47/32\",\r\n
+ \ \"138.91.25.99/32\",\r\n \"138.91.26.45/32\",\r\n \"138.91.188.137/32\",\r\n
+ \ \"157.55.210.61/32\",\r\n \"157.55.212.238/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n \"157.56.167.147/32\",\r\n
+ \ \"168.61.86.120/32\",\r\n \"168.61.152.201/32\",\r\n \"168.61.172.83/32\",\r\n
+ \ \"168.61.172.225/32\",\r\n \"168.61.173.172/32\",\r\n \"168.61.217.177/32\",\r\n
+ \ \"168.62.109.110/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"168.62.248.37/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.136.37/32\",\r\n
+ \ \"168.63.200.173/32\",\r\n \"191.232.32.19/32\",\r\n \"191.232.32.100/32\",\r\n
+ \ \"191.232.34.78/32\",\r\n \"191.232.34.249/32\",\r\n \"191.232.35.177/32\",\r\n
+ \ \"191.232.36.213/32\",\r\n \"191.233.54.240/28\",\r\n \"191.233.68.51/32\",\r\n
+ \ \"191.233.207.0/28\",\r\n \"191.233.207.32/27\",\r\n \"191.234.161.28/32\",\r\n
+ \ \"191.234.161.168/32\",\r\n \"191.234.162.131/32\",\r\n
+ \ \"191.234.162.178/32\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.234.182.26/32\",\r\n \"191.235.82.221/32\",\r\n \"191.235.86.199/32\",\r\n
+ \ \"191.235.91.7/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"191.235.180.188/32\",\r\n \"191.237.255.116/32\",\r\n
+ \ \"191.238.41.107/32\",\r\n \"191.238.161.62/32\",\r\n \"191.238.163.65/32\",\r\n
+ \ \"191.239.67.132/32\",\r\n \"191.239.82.62/32\",\r\n \"191.239.161.74/32\",\r\n
+ \ \"191.239.177.86/32\",\r\n \"207.46.148.176/32\",\r\n \"2603:1000:4:402::3c0/124\",\r\n
+ \ \"2603:1000:4:402::3e0/123\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1000:104:402::3e0/123\",\r\n \"2603:1010:6:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3e0/123\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:101:402::3e0/123\",\r\n \"2603:1010:304:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3e0/123\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1010:404:402::3e0/123\",\r\n \"2603:1020:5:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3e0/123\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:206:402::3e0/123\",\r\n \"2603:1020:305:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3e0/123\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:405:402::3e0/123\",\r\n \"2603:1020:605:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3e0/123\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:705:402::3e0/123\",\r\n \"2603:1020:805:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3e0/123\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:905:402::3e0/123\",\r\n \"2603:1020:a04:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3e0/123\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:b04:402::3e0/123\",\r\n \"2603:1020:c04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3e0/123\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\",\r\n \"2603:1020:e04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3e0/123\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:f04:402::3e0/123\",\r\n \"2603:1020:1004:400::250/124\",\r\n
+ \ \"2603:1020:1004:400::260/123\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1020:1104:400::520/123\",\r\n \"2603:1030:f:400::bc0/124\",\r\n
+ \ \"2603:1030:f:400::be0/123\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:10:402::3e0/123\",\r\n \"2603:1030:104:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3e0/123\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:107:400::3a0/123\",\r\n \"2603:1030:210:402::3c0/124\",\r\n
+ \ \"2603:1030:210:402::3e0/123\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40b:400::be0/123\",\r\n \"2603:1030:40c:402::3c0/124\",\r\n
+ \ \"2603:1030:40c:402::3e0/123\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:504:402::260/123\",\r\n \"2603:1030:608:402::3c0/124\",\r\n
+ \ \"2603:1030:608:402::3e0/123\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:807:402::3e0/123\",\r\n \"2603:1030:a07:402::340/124\",\r\n
+ \ \"2603:1030:a07:402::360/123\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:b04:402::3e0/123\",\r\n \"2603:1030:c06:400::bc0/124\",\r\n
+ \ \"2603:1030:c06:400::be0/123\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\",\r\n \"2603:1030:1005:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3e0/123\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:5:402::3e0/123\",\r\n \"2603:1040:207:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3e0/123\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:407:402::3e0/123\",\r\n \"2603:1040:606:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3e0/123\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:806:402::3e0/123\",\r\n \"2603:1040:904:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3e0/123\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\",\r\n \"2603:1040:b04:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3e0/123\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:c06:402::3e0/123\",\r\n \"2603:1040:d04:400::250/124\",\r\n
+ \ \"2603:1040:d04:400::260/123\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:f05:402::3e0/123\",\r\n \"2603:1040:1104:400::510/124\",\r\n
+ \ \"2603:1040:1104:400::520/123\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:6:402::3e0/123\",\r\n \"2603:1050:403:400::180/123\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.AustraliaCentral\",\r\n \"id\":
+ \"LogicApps.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:304:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.CanadaCentral\",\r\n
+ \ \"id\": \"LogicApps.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.184.150/32\",\r\n \"13.71.186.1/32\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"20.38.149.144/28\",\r\n \"20.38.149.160/27\",\r\n
+ \ \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n \"40.85.250.212/32\",\r\n
+ \ \"40.85.252.47/32\",\r\n \"52.228.39.244/32\",\r\n \"52.233.29.79/32\",\r\n
+ \ \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.CentralIndia\",\r\n \"id\": \"LogicApps.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.192/27\",\r\n
+ \ \"20.43.121.224/28\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.74.145/32\",\r\n
+ \ \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n \"104.211.101.108/32\",\r\n
+ \ \"104.211.102.62/32\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.GermanyNorth\",\r\n \"id\": \"LogicApps.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.NorthEurope\",\r\n \"id\": \"LogicApps.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"13.69.231.160/27\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.79.173.49/32\",\r\n \"40.112.90.39/32\",\r\n
+ \ \"40.112.92.104/32\",\r\n \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n
+ \ \"40.113.3.202/32\",\r\n \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n
+ \ \"40.113.11.17/32\",\r\n \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n
+ \ \"40.113.20.202/32\",\r\n \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n
+ \ \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"168.61.86.120/32\",\r\n \"191.235.180.188/32\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SoutheastAsia\",\r\n
+ \ \"id\": \"LogicApps.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.13.224/27\",\r\n \"13.67.91.135/32\",\r\n
+ \ \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n \"13.76.4.194/32\",\r\n
+ \ \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n \"52.163.230.166/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"104.215.176.31/32\",\r\n
+ \ \"104.215.176.81/32\",\r\n \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n
+ \ \"104.215.179.133/32\",\r\n \"104.215.180.203/32\",\r\n
+ \ \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n \"111.221.85.74/32\",\r\n
+ \ \"2603:1040:5:402::3c0/124\",\r\n \"2603:1040:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SwitzerlandWest\",\r\n
+ \ \"id\": \"LogicApps.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"2603:1020:b04:402::3c0/124\",\r\n \"2603:1020:b04:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKNorth\",\r\n
+ \ \"id\": \"LogicApps.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:305:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKSouth2\",\r\n
+ \ \"id\": \"LogicApps.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.58.144/28\",\r\n \"13.87.58.160/27\",\r\n
+ \ \"2603:1020:405:402::3c0/124\",\r\n \"2603:1020:405:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestIndia\",\r\n
+ \ \"id\": \"LogicApps.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"2603:1040:806:402::3c0/124\",\r\n \"2603:1040:806:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestUS\",\r\n
+ \ \"id\": \"LogicApps.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"40.83.164.80/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.42.38.32/32\",\r\n
+ \ \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n \"104.42.236.93/32\",\r\n
+ \ \"138.91.188.137/32\",\r\n \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n
+ \ \"157.56.167.147/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:a07:402::360/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicAppsManagement\",\r\n
+ \ \"id\": \"LogicAppsManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.128.68/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.67.236.76/32\",\r\n \"13.69.109.144/28\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.71.146.140/32\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.115.153/32\",\r\n \"13.73.244.144/28\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.153.66/32\",\r\n \"13.77.55.128/28\",\r\n \"13.78.43.164/32\",\r\n
+ \ \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n \"13.78.137.247/32\",\r\n
+ \ \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n \"13.84.43.45/32\",\r\n
+ \ \"13.85.79.155/32\",\r\n \"13.86.221.240/28\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.124.144/28\",\r\n \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"13.95.155.53/32\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.38.128.176/28\",\r\n
+ \ \"20.38.149.144/28\",\r\n \"20.42.64.48/28\",\r\n \"20.43.121.224/28\",\r\n
+ \ \"20.44.4.176/28\",\r\n \"20.45.64.29/32\",\r\n \"20.45.64.87/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.75.193/32\",\r\n \"20.72.30.160/28\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"23.97.68.172/32\",\r\n \"40.67.60.176/28\",\r\n \"40.69.110.224/28\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.81.13/32\",\r\n
+ \ \"40.74.85.215/32\",\r\n \"40.74.140.173/32\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.239.16/28\",\r\n \"40.78.245.144/28\",\r\n
+ \ \"40.79.44.7/32\",\r\n \"40.79.139.144/28\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n \"40.80.180.16/28\",\r\n
+ \ \"40.83.98.194/32\",\r\n \"40.84.25.234/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.112.90.39/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"51.11.97.16/28\",\r\n \"51.12.100.112/28\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.104.9.112/28\",\r\n \"51.107.60.192/28\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"51.116.60.144/28\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.222/32\",\r\n
+ \ \"51.116.171.209/32\",\r\n \"51.116.175.0/32\",\r\n \"51.116.233.40/32\",\r\n
+ \ \"51.120.109.32/28\",\r\n \"51.120.220.160/28\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.160.90.237/32\",\r\n \"52.161.8.128/32\",\r\n \"52.161.19.82/32\",\r\n
+ \ \"52.161.26.172/32\",\r\n \"52.162.111.144/28\",\r\n \"52.163.93.214/32\",\r\n
+ \ \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n
+ \ \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n \"52.172.51.140/32\",\r\n
+ \ \"52.172.157.194/32\",\r\n \"52.172.184.192/32\",\r\n \"52.172.191.194/32\",\r\n
+ \ \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n \"52.183.30.10/32\",\r\n
+ \ \"52.183.39.67/32\",\r\n \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.189.216.28/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.231.23.16/28\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.30.218/32\",\r\n \"65.52.9.64/32\",\r\n
+ \ \"65.52.211.164/32\",\r\n \"102.133.28.208/28\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n
+ \ \"102.133.156.176/28\",\r\n \"102.133.224.125/32\",\r\n
+ \ \"102.133.226.199/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.9/32\",\r\n
+ \ \"104.43.243.39/32\",\r\n \"104.210.89.222/32\",\r\n \"104.210.89.244/32\",\r\n
+ \ \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.157.237/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.165.81/32\",\r\n \"104.211.225.152/32\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.181.6/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.135.106.54/32\",\r\n \"138.91.188.137/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.200.173/32\",\r\n
+ \ \"191.233.54.240/28\",\r\n \"191.233.207.0/28\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.235.86.199/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"2603:1000:4:402::3c0/124\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3c0/124\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3c0/124\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3c0/124\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3c0/124\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3c0/124\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3c0/124\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:1004:400::250/124\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1030:f:400::bc0/124\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3c0/124\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:210:402::3c0/124\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40c:402::3c0/124\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:608:402::3c0/124\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:c06:400::bc0/124\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3c0/124\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3c0/124\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3c0/124\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3c0/124\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3c0/124\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:d04:400::250/124\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:1104:400::510/124\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftCloudAppSecurity\",\r\n \"id\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.26.88/32\",\r\n \"13.64.28.87/32\",\r\n
+ \ \"13.64.29.32/32\",\r\n \"13.64.29.161/32\",\r\n \"13.64.30.76/32\",\r\n
+ \ \"13.64.30.117/32\",\r\n \"13.64.30.118/32\",\r\n \"13.64.31.116/32\",\r\n
+ \ \"13.64.196.27/32\",\r\n \"13.64.198.19/32\",\r\n \"13.64.198.97/32\",\r\n
+ \ \"13.64.199.41/32\",\r\n \"13.64.252.115/32\",\r\n \"13.66.134.18/32\",\r\n
+ \ \"13.66.142.80/28\",\r\n \"13.66.158.8/32\",\r\n \"13.66.168.209/32\",\r\n
+ \ \"13.66.173.192/32\",\r\n \"13.66.210.205/32\",\r\n \"13.67.10.192/28\",\r\n
+ \ \"13.67.48.221/32\",\r\n \"13.69.67.96/28\",\r\n \"13.69.107.96/28\",\r\n
+ \ \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n \"13.70.74.160/27\",\r\n
+ \ \"13.71.175.0/27\",\r\n \"13.71.196.192/27\",\r\n \"13.73.242.224/27\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"13.75.39.128/27\",\r\n
+ \ \"13.76.43.73/32\",\r\n \"13.76.129.255/32\",\r\n \"13.77.53.96/27\",\r\n
+ \ \"13.77.80.28/32\",\r\n \"13.77.136.80/32\",\r\n \"13.77.148.229/32\",\r\n
+ \ \"13.77.160.162/32\",\r\n \"13.77.163.148/32\",\r\n \"13.77.165.61/32\",\r\n
+ \ \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n \"13.80.125.22/32\",\r\n
+ \ \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n \"13.81.212.71/32\",\r\n
+ \ \"13.86.176.189/32\",\r\n \"13.86.176.211/32\",\r\n \"13.86.219.224/27\",\r\n
+ \ \"13.86.235.202/32\",\r\n \"13.86.239.236/32\",\r\n \"13.88.224.38/32\",\r\n
+ \ \"13.88.224.211/32\",\r\n \"13.88.224.222/32\",\r\n \"13.88.226.74/32\",\r\n
+ \ \"13.88.227.7/32\",\r\n \"13.89.178.0/28\",\r\n \"13.91.61.249/32\",\r\n
+ \ \"13.91.91.243/32\",\r\n \"13.91.98.185/32\",\r\n \"13.93.32.114/32\",\r\n
+ \ \"13.93.113.192/32\",\r\n \"13.93.196.52/32\",\r\n \"13.93.216.68/32\",\r\n
+ \ \"13.93.233.42/32\",\r\n \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n
+ \ \"13.95.30.46/32\",\r\n \"20.36.220.93/32\",\r\n \"20.36.222.59/32\",\r\n
+ \ \"20.36.222.60/32\",\r\n \"20.36.240.76/32\",\r\n \"20.36.244.208/32\",\r\n
+ \ \"20.36.245.0/32\",\r\n \"20.36.245.182/32\",\r\n \"20.36.245.235/32\",\r\n
+ \ \"20.36.246.188/32\",\r\n \"20.36.248.40/32\",\r\n \"20.40.106.50/31\",\r\n
+ \ \"20.40.107.84/32\",\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"20.40.160.184/32\",\r\n \"20.40.161.119/32\",\r\n
+ \ \"20.40.161.131/32\",\r\n \"20.40.161.132/32\",\r\n \"20.40.161.135/32\",\r\n
+ \ \"20.40.161.140/30\",\r\n \"20.40.161.160/31\",\r\n \"20.40.162.86/32\",\r\n
+ \ \"20.40.162.200/32\",\r\n \"20.40.163.88/32\",\r\n \"20.40.163.96/31\",\r\n
+ \ \"20.40.163.130/32\",\r\n \"20.40.163.133/32\",\r\n \"20.40.163.178/31\",\r\n
+ \ \"20.42.29.162/32\",\r\n \"20.42.31.48/32\",\r\n \"20.42.31.251/32\",\r\n
+ \ \"20.44.8.208/28\",\r\n \"20.44.17.64/28\",\r\n \"20.44.72.173/32\",\r\n
+ \ \"20.44.72.217/32\",\r\n \"20.44.73.253/32\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.184.57.4/32\",\r\n \"20.184.57.218/32\",\r\n \"20.184.58.46/32\",\r\n
+ \ \"20.184.58.110/32\",\r\n \"20.184.60.77/32\",\r\n \"20.184.61.67/32\",\r\n
+ \ \"20.184.61.253/32\",\r\n \"20.184.63.158/32\",\r\n \"20.184.63.216/32\",\r\n
+ \ \"20.184.63.232/32\",\r\n \"20.188.72.248/32\",\r\n \"23.97.54.160/32\",\r\n
+ \ \"23.97.55.165/32\",\r\n \"23.98.83.96/28\",\r\n \"23.100.67.153/32\",\r\n
+ \ \"40.65.169.46/32\",\r\n \"40.65.169.97/32\",\r\n \"40.65.169.196/32\",\r\n
+ \ \"40.65.169.236/32\",\r\n \"40.65.170.17/32\",\r\n \"40.65.170.26/32\",\r\n
+ \ \"40.65.170.80/30\",\r\n \"40.65.170.112/31\",\r\n \"40.65.170.123/32\",\r\n
+ \ \"40.65.170.125/32\",\r\n \"40.65.170.128/32\",\r\n \"40.65.170.133/32\",\r\n
+ \ \"40.65.170.137/32\",\r\n \"40.65.233.253/32\",\r\n \"40.65.235.54/32\",\r\n
+ \ \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n \"40.66.57.203/32\",\r\n
+ \ \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n \"40.66.59.195/32\",\r\n
+ \ \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n \"40.66.60.101/32\",\r\n
+ \ \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n \"40.66.60.185/32\",\r\n
+ \ \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n \"40.66.60.208/31\",\r\n
+ \ \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n \"40.66.60.216/31\",\r\n
+ \ \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n \"40.66.60.222/32\",\r\n
+ \ \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n \"40.66.60.232/32\",\r\n
+ \ \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n \"40.66.61.193/32\",\r\n
+ \ \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n \"40.66.62.9/32\",\r\n
+ \ \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n \"40.66.62.154/32\",\r\n
+ \ \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n \"40.66.63.255/32\",\r\n
+ \ \"40.67.152.91/32\",\r\n \"40.67.152.227/32\",\r\n \"40.67.154.160/32\",\r\n
+ \ \"40.67.155.146/32\",\r\n \"40.67.159.55/32\",\r\n \"40.67.216.253/32\",\r\n
+ \ \"40.67.219.133/32\",\r\n \"40.67.251.0/32\",\r\n \"40.67.254.233/32\",\r\n
+ \ \"40.68.245.184/32\",\r\n \"40.69.108.96/27\",\r\n \"40.70.0.255/32\",\r\n
+ \ \"40.70.29.49/32\",\r\n \"40.70.29.200/32\",\r\n \"40.70.148.112/28\",\r\n
+ \ \"40.70.184.90/32\",\r\n \"40.71.14.16/28\",\r\n \"40.74.1.235/32\",\r\n
+ \ \"40.74.6.204/32\",\r\n \"40.76.78.217/32\",\r\n \"40.78.23.204/32\",\r\n
+ \ \"40.78.56.129/32\",\r\n \"40.78.229.64/28\",\r\n \"40.78.236.160/28\",\r\n
+ \ \"40.78.245.0/28\",\r\n \"40.78.251.128/28\",\r\n \"40.79.132.96/28\",\r\n
+ \ \"40.79.139.16/28\",\r\n \"40.79.146.224/28\",\r\n \"40.79.156.112/28\",\r\n
+ \ \"40.79.180.64/27\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.81.56.80/32\",\r\n \"40.81.57.138/32\",\r\n
+ \ \"40.81.57.141/32\",\r\n \"40.81.57.144/32\",\r\n \"40.81.57.157/32\",\r\n
+ \ \"40.81.57.164/32\",\r\n \"40.81.57.169/32\",\r\n \"40.81.58.180/32\",\r\n
+ \ \"40.81.58.184/32\",\r\n \"40.81.58.193/32\",\r\n \"40.81.59.4/32\",\r\n
+ \ \"40.81.59.90/32\",\r\n \"40.81.59.93/32\",\r\n \"40.81.62.162/32\",\r\n
+ \ \"40.81.62.179/32\",\r\n \"40.81.62.193/32\",\r\n \"40.81.62.199/32\",\r\n
+ \ \"40.81.62.206/32\",\r\n \"40.81.62.209/32\",\r\n \"40.81.62.212/32\",\r\n
+ \ \"40.81.62.220/30\",\r\n \"40.81.62.224/32\",\r\n \"40.81.62.255/32\",\r\n
+ \ \"40.81.63.1/32\",\r\n \"40.81.63.2/32\",\r\n \"40.81.63.4/31\",\r\n
+ \ \"40.81.63.7/32\",\r\n \"40.81.63.8/32\",\r\n \"40.81.63.235/32\",\r\n
+ \ \"40.81.63.245/32\",\r\n \"40.81.63.248/32\",\r\n \"40.81.120.13/32\",\r\n
+ \ \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n \"40.81.120.187/32\",\r\n
+ \ \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n \"40.81.121.66/32\",\r\n
+ \ \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n \"40.81.121.107/32\",\r\n
+ \ \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n \"40.81.121.127/32\",\r\n
+ \ \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n \"40.81.121.175/32\",\r\n
+ \ \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n \"40.81.122.76/32\",\r\n
+ \ \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n \"40.81.123.157/32\",\r\n
+ \ \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n \"40.81.127.25/32\",\r\n
+ \ \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n \"40.81.127.229/32\",\r\n
+ \ \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n \"40.81.152.126/32\",\r\n
+ \ \"40.81.152.171/32\",\r\n \"40.81.152.172/32\",\r\n \"40.81.156.153/32\",\r\n
+ \ \"40.81.156.154/31\",\r\n \"40.81.156.156/32\",\r\n \"40.81.159.35/32\",\r\n
+ \ \"40.81.159.77/32\",\r\n \"40.82.184.80/32\",\r\n \"40.82.185.36/32\",\r\n
+ \ \"40.82.185.117/32\",\r\n \"40.82.185.229/32\",\r\n \"40.82.186.166/32\",\r\n
+ \ \"40.82.186.168/31\",\r\n \"40.82.186.176/31\",\r\n \"40.82.186.180/32\",\r\n
+ \ \"40.82.186.182/32\",\r\n \"40.82.186.185/32\",\r\n \"40.82.186.214/32\",\r\n
+ \ \"40.82.186.231/32\",\r\n \"40.82.187.161/32\",\r\n \"40.82.187.162/31\",\r\n
+ \ \"40.82.187.164/32\",\r\n \"40.82.187.177/32\",\r\n \"40.82.187.178/31\",\r\n
+ \ \"40.82.187.199/32\",\r\n \"40.82.187.200/32\",\r\n \"40.82.187.202/32\",\r\n
+ \ \"40.82.187.204/30\",\r\n \"40.82.187.208/30\",\r\n \"40.82.187.212/31\",\r\n
+ \ \"40.82.187.218/32\",\r\n \"40.82.187.223/32\",\r\n \"40.82.190.163/32\",\r\n
+ \ \"40.82.191.58/32\",\r\n \"40.84.2.83/32\",\r\n \"40.84.4.93/32\",\r\n
+ \ \"40.84.4.119/32\",\r\n \"40.84.5.28/32\",\r\n \"40.84.49.16/32\",\r\n
+ \ \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n \"40.89.142.184/32\",\r\n
+ \ \"40.89.143.43/32\",\r\n \"40.90.184.197/32\",\r\n \"40.90.185.64/32\",\r\n
+ \ \"40.90.191.153/32\",\r\n \"40.90.218.196/31\",\r\n \"40.90.218.198/32\",\r\n
+ \ \"40.90.218.203/32\",\r\n \"40.90.219.121/32\",\r\n \"40.90.219.184/32\",\r\n
+ \ \"40.90.220.37/32\",\r\n \"40.90.220.190/32\",\r\n \"40.90.220.196/32\",\r\n
+ \ \"40.90.222.64/32\",\r\n \"40.91.74.37/32\",\r\n \"40.91.78.105/32\",\r\n
+ \ \"40.91.114.40/29\",\r\n \"40.91.114.48/31\",\r\n \"40.91.122.25/32\",\r\n
+ \ \"40.91.122.38/32\",\r\n \"40.91.126.157/32\",\r\n \"40.91.127.44/32\",\r\n
+ \ \"40.91.198.19/32\",\r\n \"40.113.121.176/32\",\r\n \"40.114.112.147/32\",\r\n
+ \ \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n \"40.115.25.50/32\",\r\n
+ \ \"40.115.71.111/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.118.211.172/32\",\r\n \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n
+ \ \"40.119.154.72/32\",\r\n \"40.119.203.98/31\",\r\n \"40.119.203.158/31\",\r\n
+ \ \"40.119.203.208/31\",\r\n \"40.119.207.131/32\",\r\n \"40.119.207.144/32\",\r\n
+ \ \"40.119.207.164/32\",\r\n \"40.119.207.166/32\",\r\n \"40.119.207.174/32\",\r\n
+ \ \"40.119.207.182/32\",\r\n \"40.119.207.193/32\",\r\n \"40.119.207.200/32\",\r\n
+ \ \"40.119.215.167/32\",\r\n \"40.121.134.1/32\",\r\n \"40.124.53.69/32\",\r\n
+ \ \"51.11.26.92/32\",\r\n \"51.11.26.95/32\",\r\n \"51.104.9.16/28\",\r\n
+ \ \"51.105.37.244/32\",\r\n \"51.105.67.224/28\",\r\n \"51.105.75.176/28\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.1.10/32\",\r\n
+ \ \"51.140.8.108/32\",\r\n \"51.140.8.180/32\",\r\n \"51.140.35.95/32\",\r\n
+ \ \"51.140.52.106/32\",\r\n \"51.140.78.213/32\",\r\n \"51.140.105.124/32\",\r\n
+ \ \"51.140.125.227/32\",\r\n \"51.140.164.179/32\",\r\n \"51.140.191.146/32\",\r\n
+ \ \"51.140.212.128/27\",\r\n \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n
+ \ \"51.141.2.189/32\",\r\n \"51.141.7.11/32\",\r\n \"51.143.58.207/32\",\r\n
+ \ \"51.143.111.58/32\",\r\n \"51.143.120.236/32\",\r\n \"51.143.120.242/32\",\r\n
+ \ \"51.143.122.59/32\",\r\n \"51.143.122.60/32\",\r\n \"51.144.56.60/32\",\r\n
+ \ \"51.145.108.227/32\",\r\n \"51.145.108.250/32\",\r\n \"51.145.181.195/32\",\r\n
+ \ \"51.145.181.214/32\",\r\n \"52.137.56.200/32\",\r\n \"52.137.89.147/32\",\r\n
+ \ \"52.138.227.160/28\",\r\n \"52.139.1.70/32\",\r\n \"52.139.1.156/32\",\r\n
+ \ \"52.139.1.158/31\",\r\n \"52.139.1.200/32\",\r\n \"52.139.1.218/32\",\r\n
+ \ \"52.139.2.0/32\",\r\n \"52.139.16.105/32\",\r\n \"52.139.18.234/32\",\r\n
+ \ \"52.139.18.236/32\",\r\n \"52.139.19.71/32\",\r\n \"52.139.19.187/32\",\r\n
+ \ \"52.139.19.215/32\",\r\n \"52.139.19.247/32\",\r\n \"52.139.20.31/32\",\r\n
+ \ \"52.139.20.118/32\",\r\n \"52.139.21.70/32\",\r\n \"52.139.245.1/32\",\r\n
+ \ \"52.139.245.21/32\",\r\n \"52.139.245.40/32\",\r\n \"52.139.245.48/32\",\r\n
+ \ \"52.139.251.219/32\",\r\n \"52.139.252.105/32\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.143.73.88/32\",\r\n \"52.143.74.31/32\",\r\n \"52.148.115.188/32\",\r\n
+ \ \"52.148.115.194/32\",\r\n \"52.148.115.238/32\",\r\n \"52.148.116.37/32\",\r\n
+ \ \"52.148.161.45/32\",\r\n \"52.148.161.53/32\",\r\n \"52.151.237.243/32\",\r\n
+ \ \"52.151.238.5/32\",\r\n \"52.151.244.65/32\",\r\n \"52.151.247.27/32\",\r\n
+ \ \"52.153.240.107/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.157.19.228/32\",\r\n \"52.157.20.142/32\",\r\n \"52.157.218.219/32\",\r\n
+ \ \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n \"52.157.232.147/32\",\r\n
+ \ \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n \"52.157.233.133/32\",\r\n
+ \ \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n \"52.157.234.222/32\",\r\n
+ \ \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n \"52.157.236.195/32\",\r\n
+ \ \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n \"52.157.237.255/32\",\r\n
+ \ \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n \"52.157.239.132/32\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.167.107.96/28\",\r\n \"52.169.192.237/32\",\r\n
+ \ \"52.174.56.180/32\",\r\n \"52.177.85.43/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.179.155.177/32\",\r\n \"52.179.194.73/32\",\r\n
+ \ \"52.179.198.41/32\",\r\n \"52.182.139.208/28\",\r\n \"52.183.24.254/32\",\r\n
+ \ \"52.183.30.204/32\",\r\n \"52.183.75.62/32\",\r\n \"52.184.165.82/32\",\r\n
+ \ \"52.188.217.236/32\",\r\n \"52.189.208.36/32\",\r\n \"52.189.213.36/32\",\r\n
+ \ \"52.189.213.124/32\",\r\n \"52.189.218.253/32\",\r\n \"52.190.26.220/32\",\r\n
+ \ \"52.190.31.62/32\",\r\n \"52.191.129.65/32\",\r\n \"52.191.237.188/32\",\r\n
+ \ \"52.191.238.65/32\",\r\n \"52.224.188.157/32\",\r\n \"52.224.188.168/32\",\r\n
+ \ \"52.224.190.225/32\",\r\n \"52.224.191.62/32\",\r\n \"52.224.201.216/32\",\r\n
+ \ \"52.224.201.223/32\",\r\n \"52.224.202.86/32\",\r\n \"52.224.202.91/32\",\r\n
+ \ \"52.225.225.218/32\",\r\n \"52.225.231.232/32\",\r\n \"52.232.224.227/32\",\r\n
+ \ \"52.232.225.84/32\",\r\n \"52.232.228.217/32\",\r\n \"52.232.245.96/32\",\r\n
+ \ \"52.236.187.80/28\",\r\n \"52.249.25.160/32\",\r\n \"52.249.25.165/32\",\r\n
+ \ \"65.52.138.123/32\",\r\n \"65.52.229.200/32\",\r\n \"104.40.28.202/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.42.15.41/32\",\r\n \"104.42.34.58/32\",\r\n
+ \ \"104.42.38.254/32\",\r\n \"104.42.54.24/32\",\r\n \"104.42.75.120/32\",\r\n
+ \ \"104.42.211.215/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.45.168.103/32\",\r\n \"104.45.168.104/32\",\r\n \"104.45.168.106/32\",\r\n
+ \ \"104.45.168.108/32\",\r\n \"104.45.168.111/32\",\r\n \"104.45.168.114/32\",\r\n
+ \ \"104.45.170.70/32\",\r\n \"104.45.170.127/32\",\r\n \"104.45.170.161/32\",\r\n
+ \ \"104.45.170.173/32\",\r\n \"104.45.170.174/31\",\r\n \"104.45.170.176/32\",\r\n
+ \ \"104.45.170.178/32\",\r\n \"104.45.170.180/32\",\r\n \"104.45.170.182/31\",\r\n
+ \ \"104.45.170.184/31\",\r\n \"104.45.170.186/32\",\r\n \"104.45.170.188/32\",\r\n
+ \ \"104.45.170.191/32\",\r\n \"104.45.170.194/32\",\r\n \"104.45.170.196/32\",\r\n
+ \ \"104.46.116.211/32\",\r\n \"104.46.121.72/32\",\r\n \"104.46.122.189/32\",\r\n
+ \ \"104.208.216.221/32\",\r\n \"104.209.35.177/32\",\r\n
+ \ \"104.209.168.251/32\",\r\n \"104.210.0.32/32\",\r\n \"104.211.9.226/32\",\r\n
+ \ \"104.214.225.33/32\",\r\n \"137.116.52.31/32\",\r\n \"138.91.147.71/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.96/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.128/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n
+ \ \"40.66.57.203/32\",\r\n \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n
+ \ \"40.66.59.195/32\",\r\n \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n
+ \ \"40.66.60.101/32\",\r\n \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n
+ \ \"40.66.60.185/32\",\r\n \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n
+ \ \"40.66.60.208/31\",\r\n \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n
+ \ \"40.66.60.216/31\",\r\n \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n
+ \ \"40.66.60.222/32\",\r\n \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n
+ \ \"40.66.60.232/32\",\r\n \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n
+ \ \"40.66.61.193/32\",\r\n \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n
+ \ \"40.66.62.9/32\",\r\n \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n
+ \ \"40.66.62.154/32\",\r\n \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n
+ \ \"40.66.63.255/32\",\r\n \"40.79.132.96/28\",\r\n \"40.79.139.16/28\",\r\n
+ \ \"40.79.146.224/28\",\r\n \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n
+ \ \"40.89.142.184/32\",\r\n \"40.89.143.43/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"40.67.251.0/32\",\r\n
+ \ \"40.67.254.233/32\",\r\n \"52.138.227.160/28\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.169.192.237/32\",\r\n \"65.52.229.200/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.242.224/27\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.188.72.248/32\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.124.53.69/32\",\r\n \"52.153.240.107/32\",\r\n
+ \ \"52.249.25.160/32\",\r\n \"52.249.25.165/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.106.50/31\",\r\n \"20.40.107.84/32\",\r\n
+ \ \"40.81.120.13/32\",\r\n \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n
+ \ \"40.81.120.187/32\",\r\n \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n
+ \ \"40.81.121.66/32\",\r\n \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n
+ \ \"40.81.121.107/32\",\r\n \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n
+ \ \"40.81.121.127/32\",\r\n \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n
+ \ \"40.81.121.175/32\",\r\n \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n
+ \ \"40.81.122.76/32\",\r\n \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n
+ \ \"40.81.123.157/32\",\r\n \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n
+ \ \"40.81.127.25/32\",\r\n \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n
+ \ \"40.81.127.229/32\",\r\n \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.212.128/27\",\r\n
+ \ \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n \"51.141.2.189/32\",\r\n
+ \ \"51.141.7.11/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.96/28\",\r\n
+ \ \"13.69.107.96/28\",\r\n \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n
+ \ \"13.80.125.22/32\",\r\n \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n
+ \ \"13.81.212.71/32\",\r\n \"13.93.32.114/32\",\r\n \"13.93.113.192/32\",\r\n
+ \ \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n \"13.95.30.46/32\",\r\n
+ \ \"40.67.216.253/32\",\r\n \"40.67.219.133/32\",\r\n \"40.68.245.184/32\",\r\n
+ \ \"40.74.1.235/32\",\r\n \"40.74.6.204/32\",\r\n \"40.91.198.19/32\",\r\n
+ \ \"40.113.121.176/32\",\r\n \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n
+ \ \"40.115.25.50/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n \"40.119.154.72/32\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.144.56.60/32\",\r\n \"51.145.181.195/32\",\r\n \"51.145.181.214/32\",\r\n
+ \ \"52.137.56.200/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.157.218.219/32\",\r\n \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n
+ \ \"52.157.232.147/32\",\r\n \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n
+ \ \"52.157.233.133/32\",\r\n \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n
+ \ \"52.157.234.222/32\",\r\n \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n
+ \ \"52.157.236.195/32\",\r\n \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n
+ \ \"52.157.237.255/32\",\r\n \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n
+ \ \"52.157.239.132/32\",\r\n \"52.174.56.180/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.236.187.80/28\",\r\n \"65.52.138.123/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.214.225.33/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftContainerRegistry\",\r\n \"id\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n \"13.67.8.112/29\",\r\n
+ \ \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"13.69.227.80/29\",\r\n
+ \ \"13.70.72.128/29\",\r\n \"13.71.170.48/29\",\r\n \"13.71.194.120/29\",\r\n
+ \ \"13.74.107.72/29\",\r\n \"13.75.34.152/29\",\r\n \"13.77.50.72/29\",\r\n
+ \ \"13.78.106.192/29\",\r\n \"13.87.56.88/29\",\r\n \"13.87.122.88/29\",\r\n
+ \ \"13.89.170.208/29\",\r\n \"20.37.74.64/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"20.44.2.16/29\",\r\n \"20.44.26.136/29\",\r\n \"20.45.122.136/29\",\r\n
+ \ \"20.49.82.8/29\",\r\n \"20.49.90.8/29\",\r\n \"20.72.26.8/29\",\r\n
+ \ \"20.150.170.16/29\",\r\n \"20.150.178.136/29\",\r\n \"20.150.186.136/29\",\r\n
+ \ \"20.192.98.136/29\",\r\n \"20.192.234.16/29\",\r\n \"20.193.202.8/29\",\r\n
+ \ \"20.194.66.8/29\",\r\n \"23.98.82.104/29\",\r\n \"40.67.58.16/29\",\r\n
+ \ \"40.69.106.72/29\",\r\n \"40.70.146.80/29\",\r\n \"40.71.10.208/29\",\r\n
+ \ \"40.74.100.56/29\",\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n
+ \ \"40.78.194.72/29\",\r\n \"40.78.202.64/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.78.234.40/29\",\r\n \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n
+ \ \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n \"40.79.146.24/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"40.79.162.24/29\",\r\n \"40.79.170.8/29\",\r\n
+ \ \"40.79.178.72/29\",\r\n \"40.79.186.0/29\",\r\n \"40.79.194.88/29\",\r\n
+ \ \"40.80.50.136/29\",\r\n \"40.112.242.152/29\",\r\n \"40.120.74.8/29\",\r\n
+ \ \"51.12.98.16/29\",\r\n \"51.12.202.16/29\",\r\n \"51.12.226.136/29\",\r\n
+ \ \"51.12.234.136/29\",\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.107.58.16/29\",\r\n \"51.107.154.16/29\",\r\n \"51.116.58.16/29\",\r\n
+ \ \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n \"51.116.250.136/29\",\r\n
+ \ \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n \"51.120.210.136/29\",\r\n
+ \ \"51.120.218.16/29\",\r\n \"51.140.146.192/29\",\r\n \"51.140.210.88/29\",\r\n
+ \ \"52.138.90.24/29\",\r\n \"52.138.226.72/29\",\r\n \"52.162.106.152/29\",\r\n
+ \ \"52.167.106.72/29\",\r\n \"52.182.138.200/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"52.231.146.88/29\",\r\n \"52.236.186.72/29\",\r\n \"52.246.154.136/29\",\r\n
+ \ \"65.52.250.8/29\",\r\n \"102.133.26.16/29\",\r\n \"102.133.122.136/29\",\r\n
+ \ \"102.133.154.16/29\",\r\n \"102.133.250.136/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"104.208.144.72/29\",\r\n \"104.211.81.128/29\",\r\n
+ \ \"104.211.146.72/29\",\r\n \"104.214.18.176/29\",\r\n \"191.233.50.8/29\",\r\n
+ \ \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1000:4:402::88/125\",\r\n
+ \ \"2603:1000:104:402::88/125\",\r\n \"2603:1000:104:802::88/125\",\r\n
+ \ \"2603:1000:104:c02::88/125\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\",\r\n
+ \ \"2603:1010:101:402::88/125\",\r\n \"2603:1010:304:402::88/125\",\r\n
+ \ \"2603:1010:404:402::88/125\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\",\r\n \"2603:1020:305:402::88/125\",\r\n
+ \ \"2603:1020:405:402::88/125\",\r\n \"2603:1020:605:402::88/125\",\r\n
+ \ \"2603:1020:705:402::88/125\",\r\n \"2603:1020:705:802::88/125\",\r\n
+ \ \"2603:1020:705:c02::88/125\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\",\r\n
+ \ \"2603:1020:905:402::88/125\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\",\r\n
+ \ \"2603:1020:b04:402::88/125\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\",\r\n
+ \ \"2603:1020:d04:402::88/125\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\",\r\n
+ \ \"2603:1020:f04:402::88/125\",\r\n \"2603:1020:1004:400::88/125\",\r\n
+ \ \"2603:1020:1004:400::3b0/125\",\r\n \"2603:1020:1004:800::148/125\",\r\n
+ \ \"2603:1020:1104:400::88/125\",\r\n \"2603:1030:f:400::888/125\",\r\n
+ \ \"2603:1030:10:402::88/125\",\r\n \"2603:1030:10:802::88/125\",\r\n
+ \ \"2603:1030:10:c02::88/125\",\r\n \"2603:1030:104:402::88/125\",\r\n
+ \ \"2603:1030:107:400::8/125\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\",\r\n
+ \ \"2603:1030:504:402::88/125\",\r\n \"2603:1030:504:402::3b0/125\",\r\n
+ \ \"2603:1030:504:802::148/125\",\r\n \"2603:1030:504:802::3e8/125\",\r\n
+ \ \"2603:1030:608:402::88/125\",\r\n \"2603:1030:807:402::88/125\",\r\n
+ \ \"2603:1030:807:802::88/125\",\r\n \"2603:1030:807:c02::88/125\",\r\n
+ \ \"2603:1030:a07:402::88/125\",\r\n \"2603:1030:b04:402::88/125\",\r\n
+ \ \"2603:1030:c06:400::888/125\",\r\n \"2603:1030:c06:802::88/125\",\r\n
+ \ \"2603:1030:c06:c02::88/125\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\",\r\n
+ \ \"2603:1030:1005:402::88/125\",\r\n \"2603:1040:5:402::88/125\",\r\n
+ \ \"2603:1040:5:802::88/125\",\r\n \"2603:1040:5:c02::88/125\",\r\n
+ \ \"2603:1040:207:402::88/125\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\",\r\n
+ \ \"2603:1040:606:402::88/125\",\r\n \"2603:1040:806:402::88/125\",\r\n
+ \ \"2603:1040:904:402::88/125\",\r\n \"2603:1040:904:802::88/125\",\r\n
+ \ \"2603:1040:904:c02::88/125\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\",\r\n
+ \ \"2603:1040:b04:402::88/125\",\r\n \"2603:1040:c06:402::88/125\",\r\n
+ \ \"2603:1040:d04:400::88/125\",\r\n \"2603:1040:d04:400::3b0/125\",\r\n
+ \ \"2603:1040:d04:800::148/125\",\r\n \"2603:1040:f05:402::88/125\",\r\n
+ \ \"2603:1040:f05:802::88/125\",\r\n \"2603:1040:f05:c02::88/125\",\r\n
+ \ \"2603:1040:1104:400::88/125\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\",\r\n
+ \ \"2603:1050:403:400::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.128/29\",\r\n \"40.79.162.24/29\",\r\n
+ \ \"40.79.170.8/29\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.72/29\",\r\n \"2603:1010:101:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.48/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"52.246.154.136/29\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.72/29\",\r\n \"2603:1030:1005:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.192.98.136/29\",\r\n \"40.80.50.136/29\",\r\n
+ \ \"104.211.81.128/29\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.208/29\",\r\n \"52.182.138.200/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"2603:1030:10:402::88/125\",\r\n
+ \ \"2603:1030:10:802::88/125\",\r\n \"2603:1030:10:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.64/29\",\r\n \"2603:1030:f:400::888/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.152/29\",\r\n \"2603:1040:207:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.71.10.208/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.70.146.80/29\",\r\n \"52.167.106.72/29\",\r\n
+ \ \"104.208.144.72/29\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n \"52.138.90.24/29\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n
+ \ \"40.79.146.24/29\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.72/29\",\r\n \"2603:1020:905:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.16/29\",\r\n \"2603:1020:d04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n
+ \ \"51.116.250.136/29\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.192/29\",\r\n \"40.79.186.0/29\",\r\n
+ \ \"40.79.194.88/29\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.56/29\",\r\n \"2603:1040:606:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.136/29\",\r\n \"20.194.66.8/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"2603:1040:f05:402::88/125\",\r\n \"2603:1040:f05:802::88/125\",\r\n
+ \ \"2603:1040:f05:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.88/29\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.152/29\",\r\n \"2603:1030:608:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.80/29\",\r\n \"13.74.107.72/29\",\r\n
+ \ \"52.138.226.72/29\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n
+ \ \"51.120.210.136/29\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.16/29\",\r\n \"2603:1020:f04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.136/29\",\r\n \"102.133.154.16/29\",\r\n
+ \ \"102.133.250.136/29\",\r\n \"2603:1000:104:402::88/125\",\r\n
+ \ \"2603:1000:104:802::88/125\",\r\n \"2603:1000:104:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.16/29\",\r\n \"2603:1000:4:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.122.136/29\",\r\n \"20.49.90.8/29\",\r\n \"104.214.18.176/29\",\r\n
+ \ \"2603:1030:807:402::88/125\",\r\n \"2603:1030:807:802::88/125\",\r\n
+ \ \"2603:1030:807:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.112/29\",\r\n \"23.98.82.104/29\",\r\n \"40.78.234.40/29\",\r\n
+ \ \"2603:1040:5:402::88/125\",\r\n \"2603:1040:5:802::88/125\",\r\n
+ \ \"2603:1040:5:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.72/29\",\r\n \"2603:1040:c06:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.16/29\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.16/29\",\r\n \"2603:1020:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.64/29\",\r\n \"2603:1040:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.8/29\",\r\n \"65.52.250.8/29\",\r\n \"2603:1040:904:402::88/125\",\r\n
+ \ \"2603:1040:904:802::88/125\",\r\n \"2603:1040:904:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.140.146.192/29\",\r\n \"2603:1020:705:402::88/125\",\r\n
+ \ \"2603:1020:705:802::88/125\",\r\n \"2603:1020:705:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.56.88/29\",\r\n \"2603:1020:405:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.88/29\",\r\n \"2603:1020:605:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.194.120/29\",\r\n \"2603:1030:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"52.236.186.72/29\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"104.211.146.72/29\",\r\n
+ \ \"2603:1040:806:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.112.242.152/29\",\r\n
+ \ \"2603:1030:a07:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS2\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n
+ \ \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n \"2603:1030:c06:400::888/125\",\r\n
+ \ \"2603:1030:c06:802::88/125\",\r\n \"2603:1030:c06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerBI\",\r\n
+ \ \"id\": \"PowerBI\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerBI\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.4/31\",\r\n \"13.73.248.48/28\",\r\n \"13.73.248.64/27\",\r\n
+ \ \"20.36.120.122/31\",\r\n \"20.36.120.124/30\",\r\n \"20.36.120.208/29\",\r\n
+ \ \"20.37.64.122/31\",\r\n \"20.37.64.124/30\",\r\n \"20.37.64.208/29\",\r\n
+ \ \"20.37.156.200/30\",\r\n \"20.37.156.240/28\",\r\n \"20.37.157.0/29\",\r\n
+ \ \"20.37.157.16/28\",\r\n \"20.37.157.32/27\",\r\n \"20.37.195.24/31\",\r\n
+ \ \"20.37.195.48/29\",\r\n \"20.37.195.64/28\",\r\n \"20.37.195.128/26\",\r\n
+ \ \"20.37.224.122/31\",\r\n \"20.37.224.124/30\",\r\n \"20.37.224.208/29\",\r\n
+ \ \"20.38.84.104/31\",\r\n \"20.38.84.128/25\",\r\n \"20.38.85.0/25\",\r\n
+ \ \"20.38.86.0/24\",\r\n \"20.38.136.70/31\",\r\n \"20.38.136.208/30\",\r\n
+ \ \"20.38.136.216/29\",\r\n \"20.39.11.26/31\",\r\n \"20.39.11.28/30\",\r\n
+ \ \"20.39.11.48/28\",\r\n \"20.41.4.104/31\",\r\n \"20.41.4.108/30\",\r\n
+ \ \"20.41.4.208/28\",\r\n \"20.41.4.224/27\",\r\n \"20.41.5.0/25\",\r\n
+ \ \"20.41.65.146/31\",\r\n \"20.41.65.148/30\",\r\n \"20.41.65.152/29\",\r\n
+ \ \"20.41.192.122/31\",\r\n \"20.41.192.124/30\",\r\n \"20.41.193.144/29\",\r\n
+ \ \"20.42.0.70/31\",\r\n \"20.42.4.240/29\",\r\n \"20.42.6.0/27\",\r\n
+ \ \"20.42.6.64/26\",\r\n \"20.42.131.32/31\",\r\n \"20.42.131.40/29\",\r\n
+ \ \"20.42.131.48/29\",\r\n \"20.42.131.128/26\",\r\n \"20.42.224.122/31\",\r\n
+ \ \"20.42.227.16/28\",\r\n \"20.42.227.32/29\",\r\n \"20.42.227.64/26\",\r\n
+ \ \"20.43.41.176/31\",\r\n \"20.43.41.184/29\",\r\n \"20.43.41.192/26\",\r\n
+ \ \"20.43.65.152/31\",\r\n \"20.43.65.176/29\",\r\n \"20.43.65.192/28\",\r\n
+ \ \"20.43.65.224/27\",\r\n \"20.43.130.192/31\",\r\n \"20.43.130.196/30\",\r\n
+ \ \"20.43.130.200/29\",\r\n \"20.43.130.208/28\",\r\n \"20.43.130.224/28\",\r\n
+ \ \"20.43.131.0/27\",\r\n \"20.43.131.64/26\",\r\n \"20.45.192.122/31\",\r\n
+ \ \"20.45.192.124/31\",\r\n \"20.45.192.208/30\",\r\n \"20.45.192.216/29\",\r\n
+ \ \"20.45.192.224/28\",\r\n \"20.48.196.232/29\",\r\n \"20.50.0.0/24\",\r\n
+ \ \"20.51.21.160/30\",\r\n \"20.65.133.80/29\",\r\n \"20.72.16.22/31\",\r\n
+ \ \"20.72.16.44/30\",\r\n \"20.72.20.32/29\",\r\n \"20.150.160.110/31\",\r\n
+ \ \"20.150.160.124/30\",\r\n \"20.150.161.144/29\",\r\n \"20.189.104.70/31\",\r\n
+ \ \"20.189.106.224/27\",\r\n \"20.189.108.0/27\",\r\n \"20.192.160.22/31\",\r\n
+ \ \"20.192.161.112/30\",\r\n \"20.192.161.120/29\",\r\n \"20.192.225.34/31\",\r\n
+ \ \"20.192.225.36/30\",\r\n \"20.192.225.192/29\",\r\n \"40.74.24.70/31\",\r\n
+ \ \"40.74.30.128/29\",\r\n \"40.74.30.160/27\",\r\n \"40.74.30.192/26\",\r\n
+ \ \"40.74.31.0/26\",\r\n \"40.80.56.122/31\",\r\n \"40.80.57.144/29\",\r\n
+ \ \"40.80.57.160/28\",\r\n \"40.80.168.122/31\",\r\n \"40.80.168.124/30\",\r\n
+ \ \"40.80.169.144/29\",\r\n \"40.80.184.70/31\",\r\n \"40.80.188.48/28\",\r\n
+ \ \"40.80.188.64/27\",\r\n \"40.80.188.128/25\",\r\n \"40.80.189.0/24\",\r\n
+ \ \"40.82.248.68/31\",\r\n \"40.82.253.96/28\",\r\n \"40.82.253.128/26\",\r\n
+ \ \"40.82.254.0/25\",\r\n \"40.89.16.122/31\",\r\n \"40.89.17.144/28\",\r\n
+ \ \"40.89.17.160/27\",\r\n \"40.119.8.76/30\",\r\n \"40.119.11.64/26\",\r\n
+ \ \"51.12.17.16/30\",\r\n \"51.12.17.24/29\",\r\n \"51.12.25.8/29\",\r\n
+ \ \"51.12.46.230/31\",\r\n \"51.12.47.28/30\",\r\n \"51.12.198.210/31\",\r\n
+ \ \"51.104.25.140/31\",\r\n \"51.104.25.152/30\",\r\n \"51.104.25.176/28\",\r\n
+ \ \"51.104.25.192/29\",\r\n \"51.104.27.0/26\",\r\n \"51.105.88.122/31\",\r\n
+ \ \"51.105.88.124/30\",\r\n \"51.105.88.208/28\",\r\n \"51.107.48.124/31\",\r\n
+ \ \"51.107.48.208/30\",\r\n \"51.107.48.216/29\",\r\n \"51.107.144.122/31\",\r\n
+ \ \"51.107.144.124/30\",\r\n \"51.107.144.208/29\",\r\n \"51.116.48.68/31\",\r\n
+ \ \"51.116.48.128/30\",\r\n \"51.116.48.136/29\",\r\n \"51.116.144.68/31\",\r\n
+ \ \"51.116.144.128/30\",\r\n \"51.116.144.136/29\",\r\n \"51.116.149.232/29\",\r\n
+ \ \"51.120.40.124/31\",\r\n \"51.120.40.208/30\",\r\n \"51.120.40.216/29\",\r\n
+ \ \"51.120.224.122/31\",\r\n \"51.120.224.124/30\",\r\n \"51.120.224.208/29\",\r\n
+ \ \"51.137.160.70/31\",\r\n \"51.137.161.160/27\",\r\n \"51.137.161.192/27\",\r\n
+ \ \"52.136.48.120/31\",\r\n \"52.136.48.124/30\",\r\n \"52.136.48.208/29\",\r\n
+ \ \"52.136.48.224/28\",\r\n \"52.140.105.144/28\",\r\n \"52.140.105.160/28\",\r\n
+ \ \"52.150.139.76/31\",\r\n \"52.150.139.96/30\",\r\n \"52.150.139.112/28\",\r\n
+ \ \"52.150.139.128/28\",\r\n \"52.150.139.160/27\",\r\n \"52.228.81.160/31\",\r\n
+ \ \"52.228.81.168/29\",\r\n \"52.228.81.176/28\",\r\n \"52.228.81.192/27\",\r\n
+ \ \"102.37.160.160/29\",\r\n \"102.133.56.98/31\",\r\n \"102.133.56.100/30\",\r\n
+ \ \"102.133.56.104/29\",\r\n \"102.133.216.104/31\",\r\n
+ \ \"102.133.216.108/30\",\r\n \"102.133.217.64/29\",\r\n
+ \ \"191.233.8.22/31\",\r\n \"191.233.10.32/30\",\r\n \"191.233.10.40/29\",\r\n
+ \ \"191.235.225.152/31\",\r\n \"191.235.225.156/30\",\r\n
+ \ \"191.235.225.176/28\",\r\n \"191.235.225.192/28\",\r\n
+ \ \"191.235.225.224/27\",\r\n \"191.238.72.128/28\",\r\n
+ \ \"2603:1000:4::620/123\",\r\n \"2603:1000:4::640/122\",\r\n
+ \ \"2603:1000:104::100/122\",\r\n \"2603:1000:104::140/123\",\r\n
+ \ \"2603:1000:104::320/123\",\r\n \"2603:1000:104::340/122\",\r\n
+ \ \"2603:1000:104:1::5e0/123\",\r\n \"2603:1000:104:1::600/122\",\r\n
+ \ \"2603:1010:6::/122\",\r\n \"2603:1010:6::40/123\",\r\n
+ \ \"2603:1010:6:1::5e0/123\",\r\n \"2603:1010:6:1::600/122\",\r\n
+ \ \"2603:1010:101::620/123\",\r\n \"2603:1010:101::640/122\",\r\n
+ \ \"2603:1010:304::620/123\",\r\n \"2603:1010:304::640/122\",\r\n
+ \ \"2603:1010:404::620/123\",\r\n \"2603:1010:404::640/122\",\r\n
+ \ \"2603:1020:5::/122\",\r\n \"2603:1020:5::40/123\",\r\n
+ \ \"2603:1020:5:1::5e0/123\",\r\n \"2603:1020:5:1::600/122\",\r\n
+ \ \"2603:1020:206::/122\",\r\n \"2603:1020:206::40/123\",\r\n
+ \ \"2603:1020:206:1::5e0/123\",\r\n \"2603:1020:206:1::600/122\",\r\n
+ \ \"2603:1020:305::620/123\",\r\n \"2603:1020:305::640/122\",\r\n
+ \ \"2603:1020:405::620/123\",\r\n \"2603:1020:405::640/122\",\r\n
+ \ \"2603:1020:605::620/123\",\r\n \"2603:1020:605::640/122\",\r\n
+ \ \"2603:1020:705::/122\",\r\n \"2603:1020:705::40/123\",\r\n
+ \ \"2603:1020:705:1::5e0/123\",\r\n \"2603:1020:705:1::600/122\",\r\n
+ \ \"2603:1020:805::/122\",\r\n \"2603:1020:805::40/123\",\r\n
+ \ \"2603:1020:805:1::5e0/123\",\r\n \"2603:1020:805:1::600/122\",\r\n
+ \ \"2603:1020:905::620/123\",\r\n \"2603:1020:905::640/122\",\r\n
+ \ \"2603:1020:a04::/122\",\r\n \"2603:1020:a04::40/123\",\r\n
+ \ \"2603:1020:a04:1::5e0/123\",\r\n \"2603:1020:a04:1::600/122\",\r\n
+ \ \"2603:1020:b04::620/123\",\r\n \"2603:1020:b04::640/122\",\r\n
+ \ \"2603:1020:c04::/122\",\r\n \"2603:1020:c04::40/123\",\r\n
+ \ \"2603:1020:c04:1::5e0/123\",\r\n \"2603:1020:c04:1::600/122\",\r\n
+ \ \"2603:1020:d04::620/123\",\r\n \"2603:1020:d04::640/122\",\r\n
+ \ \"2603:1020:e04::/122\",\r\n \"2603:1020:e04::40/123\",\r\n
+ \ \"2603:1020:e04:1::5e0/123\",\r\n \"2603:1020:e04:1::600/122\",\r\n
+ \ \"2603:1020:f04::620/123\",\r\n \"2603:1020:f04::640/122\",\r\n
+ \ \"2603:1020:1004::5e0/123\",\r\n \"2603:1020:1004::600/122\",\r\n
+ \ \"2603:1020:1004:1::/122\",\r\n \"2603:1020:1004:1::40/123\",\r\n
+ \ \"2603:1020:1104::6a0/123\",\r\n \"2603:1020:1104::6c0/122\",\r\n
+ \ \"2603:1030:f:1::620/123\",\r\n \"2603:1030:f:1::640/122\",\r\n
+ \ \"2603:1030:10::/122\",\r\n \"2603:1030:10::40/123\",\r\n
+ \ \"2603:1030:10:1::5e0/123\",\r\n \"2603:1030:10:1::600/122\",\r\n
+ \ \"2603:1030:104::/122\",\r\n \"2603:1030:104::40/123\",\r\n
+ \ \"2603:1030:104:1::5e0/123\",\r\n \"2603:1030:104:1::600/122\",\r\n
+ \ \"2603:1030:107::6c0/122\",\r\n \"2603:1030:107::700/123\",\r\n
+ \ \"2603:1030:210::/122\",\r\n \"2603:1030:210::40/123\",\r\n
+ \ \"2603:1030:210:1::5e0/123\",\r\n \"2603:1030:210:1::600/122\",\r\n
+ \ \"2603:1030:40b:1::5e0/123\",\r\n \"2603:1030:40b:1::600/122\",\r\n
+ \ \"2603:1030:40c::/122\",\r\n \"2603:1030:40c::40/123\",\r\n
+ \ \"2603:1030:40c:1::5e0/123\",\r\n \"2603:1030:40c:1::600/122\",\r\n
+ \ \"2603:1030:504::/122\",\r\n \"2603:1030:504::40/123\",\r\n
+ \ \"2603:1030:504:1::5e0/123\",\r\n \"2603:1030:504:1::600/122\",\r\n
+ \ \"2603:1030:608::620/123\",\r\n \"2603:1030:608::640/122\",\r\n
+ \ \"2603:1030:807::/122\",\r\n \"2603:1030:807::40/123\",\r\n
+ \ \"2603:1030:807:1::5e0/123\",\r\n \"2603:1030:807:1::600/122\",\r\n
+ \ \"2603:1030:a07::620/123\",\r\n \"2603:1030:a07::640/122\",\r\n
+ \ \"2603:1030:b04::620/123\",\r\n \"2603:1030:b04::640/122\",\r\n
+ \ \"2603:1030:c06:1::5e0/123\",\r\n \"2603:1030:c06:1::600/122\",\r\n
+ \ \"2603:1030:f05::/122\",\r\n \"2603:1030:f05::40/123\",\r\n
+ \ \"2603:1030:f05:1::5e0/123\",\r\n \"2603:1030:f05:1::600/122\",\r\n
+ \ \"2603:1030:1005::620/123\",\r\n \"2603:1030:1005::640/122\",\r\n
+ \ \"2603:1040:5::100/122\",\r\n \"2603:1040:5::140/123\",\r\n
+ \ \"2603:1040:5:1::5e0/123\",\r\n \"2603:1040:5:1::600/122\",\r\n
+ \ \"2603:1040:207::620/123\",\r\n \"2603:1040:207::640/122\",\r\n
+ \ \"2603:1040:407::/122\",\r\n \"2603:1040:407::40/123\",\r\n
+ \ \"2603:1040:407:1::5e0/123\",\r\n \"2603:1040:407:1::600/122\",\r\n
+ \ \"2603:1040:606::620/123\",\r\n \"2603:1040:606::640/122\",\r\n
+ \ \"2603:1040:806::620/123\",\r\n \"2603:1040:806::640/122\",\r\n
+ \ \"2603:1040:904::/122\",\r\n \"2603:1040:904::40/123\",\r\n
+ \ \"2603:1040:904:1::5e0/123\",\r\n \"2603:1040:904:1::600/122\",\r\n
+ \ \"2603:1040:a06::100/122\",\r\n \"2603:1040:a06::140/123\",\r\n
+ \ \"2603:1040:a06:1::5e0/123\",\r\n \"2603:1040:a06:1::600/122\",\r\n
+ \ \"2603:1040:b04::620/123\",\r\n \"2603:1040:b04::640/122\",\r\n
+ \ \"2603:1040:c06::620/123\",\r\n \"2603:1040:c06::640/122\",\r\n
+ \ \"2603:1040:d04::5e0/123\",\r\n \"2603:1040:d04::600/122\",\r\n
+ \ \"2603:1040:d04:1::/122\",\r\n \"2603:1040:d04:1::40/123\",\r\n
+ \ \"2603:1040:f05::/122\",\r\n \"2603:1040:f05::40/123\",\r\n
+ \ \"2603:1040:f05:1::5e0/123\",\r\n \"2603:1040:f05:1::600/122\",\r\n
+ \ \"2603:1040:1104::6a0/123\",\r\n \"2603:1040:1104::6c0/122\",\r\n
+ \ \"2603:1050:6::/122\",\r\n \"2603:1050:6::40/123\",\r\n
+ \ \"2603:1050:6:1::5e0/123\",\r\n \"2603:1050:6:1::600/122\",\r\n
+ \ \"2603:1050:403::5e0/123\",\r\n \"2603:1050:403::600/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline\",\r\n
+ \ \"id\": \"PowerQueryOnline\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.120.120/31\",\r\n \"20.37.64.120/31\",\r\n
+ \ \"20.37.152.70/31\",\r\n \"20.37.192.70/31\",\r\n \"20.37.224.120/31\",\r\n
+ \ \"20.38.80.70/31\",\r\n \"20.38.136.68/31\",\r\n \"20.39.11.24/31\",\r\n
+ \ \"20.41.0.68/30\",\r\n \"20.41.64.70/31\",\r\n \"20.41.65.144/31\",\r\n
+ \ \"20.41.192.120/31\",\r\n \"20.42.4.200/30\",\r\n \"20.42.128.70/31\",\r\n
+ \ \"20.42.129.184/29\",\r\n \"20.42.224.120/31\",\r\n \"20.43.40.70/31\",\r\n
+ \ \"20.43.64.70/31\",\r\n \"20.43.128.70/31\",\r\n \"20.45.112.120/31\",\r\n
+ \ \"20.45.192.120/31\",\r\n \"20.72.16.20/31\",\r\n \"20.150.160.108/31\",\r\n
+ \ \"20.189.104.68/31\",\r\n \"20.192.160.20/31\",\r\n \"20.192.225.32/31\",\r\n
+ \ \"40.67.48.120/31\",\r\n \"40.74.30.104/30\",\r\n \"40.80.56.120/31\",\r\n
+ \ \"40.80.168.120/31\",\r\n \"40.80.184.68/31\",\r\n \"40.82.253.72/29\",\r\n
+ \ \"40.89.16.120/31\",\r\n \"40.119.8.74/31\",\r\n \"51.12.46.228/31\",\r\n
+ \ \"51.12.198.208/31\",\r\n \"51.104.24.70/31\",\r\n \"51.105.80.120/31\",\r\n
+ \ \"51.105.88.120/31\",\r\n \"51.107.48.70/31\",\r\n \"51.107.144.120/31\",\r\n
+ \ \"51.116.48.70/31\",\r\n \"51.116.144.70/31\",\r\n \"51.120.40.70/31\",\r\n
+ \ \"51.120.224.120/31\",\r\n \"51.137.160.68/31\",\r\n \"51.143.192.120/31\",\r\n
+ \ \"52.140.104.70/31\",\r\n \"52.150.139.72/30\",\r\n \"52.228.80.70/31\",\r\n
+ \ \"102.133.56.96/31\",\r\n \"102.133.216.70/31\",\r\n \"191.233.8.20/31\",\r\n
+ \ \"191.235.224.70/31\",\r\n \"2603:1000:4::200/123\",\r\n
+ \ \"2603:1000:104:1::200/123\",\r\n \"2603:1010:6:1::200/123\",\r\n
+ \ \"2603:1010:101::200/123\",\r\n \"2603:1010:304::200/123\",\r\n
+ \ \"2603:1010:404::200/123\",\r\n \"2603:1020:5:1::200/123\",\r\n
+ \ \"2603:1020:206:1::200/123\",\r\n \"2603:1020:305::200/123\",\r\n
+ \ \"2603:1020:405::200/123\",\r\n \"2603:1020:605::200/123\",\r\n
+ \ \"2603:1020:705:1::200/123\",\r\n \"2603:1020:805:1::200/123\",\r\n
+ \ \"2603:1020:905::200/123\",\r\n \"2603:1020:a04:1::200/123\",\r\n
+ \ \"2603:1020:b04::200/123\",\r\n \"2603:1020:c04:1::200/123\",\r\n
+ \ \"2603:1020:d04::200/123\",\r\n \"2603:1020:e04:1::200/123\",\r\n
+ \ \"2603:1020:f04::200/123\",\r\n \"2603:1020:1004::200/123\",\r\n
+ \ \"2603:1020:1104::200/123\",\r\n \"2603:1030:f:1::200/123\",\r\n
+ \ \"2603:1030:10:1::200/123\",\r\n \"2603:1030:104:1::200/123\",\r\n
+ \ \"2603:1030:107::200/123\",\r\n \"2603:1030:210:1::200/123\",\r\n
+ \ \"2603:1030:40b:1::200/123\",\r\n \"2603:1030:40c:1::200/123\",\r\n
+ \ \"2603:1030:504:1::200/123\",\r\n \"2603:1030:608::200/123\",\r\n
+ \ \"2603:1030:807:1::200/123\",\r\n \"2603:1030:a07::200/123\",\r\n
+ \ \"2603:1030:b04::200/123\",\r\n \"2603:1030:c06:1::200/123\",\r\n
+ \ \"2603:1030:f05:1::200/123\",\r\n \"2603:1030:1005::200/123\",\r\n
+ \ \"2603:1040:5:1::200/123\",\r\n \"2603:1040:207::200/123\",\r\n
+ \ \"2603:1040:407:1::200/123\",\r\n \"2603:1040:606::200/123\",\r\n
+ \ \"2603:1040:806::200/123\",\r\n \"2603:1040:904:1::200/123\",\r\n
+ \ \"2603:1040:a06:1::200/123\",\r\n \"2603:1040:b04::200/123\",\r\n
+ \ \"2603:1040:c06::200/123\",\r\n \"2603:1040:d04::200/123\",\r\n
+ \ \"2603:1040:f05:1::200/123\",\r\n \"2603:1040:1104::200/123\",\r\n
+ \ \"2603:1050:6:1::200/123\",\r\n \"2603:1050:403::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.120/31\",\r\n \"2603:1010:304::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral2\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.120/31\",\r\n \"2603:1010:404::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.224.120/31\",\r\n \"2603:1010:101::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.CentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.152.70/31\",\r\n \"2603:1030:10:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.EastUS2\",\r\n
+ \ \"id\": \"PowerQueryOnline.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.0.68/30\",\r\n \"2603:1030:40c:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.FranceCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.40.70/31\",\r\n \"2603:1020:805:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.JapanWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.56.120/31\",\r\n \"2603:1040:606::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.KoreaSouth\",\r\n
+ \ \"id\": \"PowerQueryOnline.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.168.120/31\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.NorwayEast\",\r\n
+ \ \"id\": \"PowerQueryOnline.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.70/31\",\r\n \"2603:1020:e04:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SouthCentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.119.8.74/31\",\r\n \"2603:1030:807:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SwitzerlandWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.120/31\",\r\n \"2603:1020:b04::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.UKSouth2\",\r\n
+ \ \"id\": \"PowerQueryOnline.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.192.120/31\",\r\n \"2603:1020:405::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.WestUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"40.82.253.72/29\",\r\n \"2603:1030:a07::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus\",\r\n
+ \ \"id\": \"ServiceBus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.68.110.36/32\",\r\n
+ \ \"13.69.64.64/29\",\r\n \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n
+ \ \"13.69.227.64/29\",\r\n \"13.69.233.192/26\",\r\n \"13.70.72.16/29\",\r\n
+ \ \"13.70.114.0/26\",\r\n \"13.70.186.33/32\",\r\n \"13.71.114.157/32\",\r\n
+ \ \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n \"13.71.194.96/28\",\r\n
+ \ \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n \"13.75.34.128/28\",\r\n
+ \ \"13.76.141.36/32\",\r\n \"13.77.50.16/28\",\r\n \"13.78.94.187/32\",\r\n
+ \ \"13.78.106.80/29\",\r\n \"13.85.81.218/32\",\r\n \"13.87.35.8/32\",\r\n
+ \ \"13.87.56.64/28\",\r\n \"13.87.122.64/28\",\r\n \"13.88.10.93/32\",\r\n
+ \ \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n \"20.36.106.224/27\",\r\n
+ \ \"20.36.114.128/27\",\r\n \"20.36.144.0/26\",\r\n \"20.37.74.32/27\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.42.65.0/26\",\r\n \"20.42.68.0/26\",\r\n
+ \ \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n \"20.43.126.0/26\",\r\n
+ \ \"20.44.2.8/29\",\r\n \"20.44.13.0/26\",\r\n \"20.44.26.128/29\",\r\n
+ \ \"20.44.31.64/26\",\r\n \"20.45.122.128/29\",\r\n \"20.45.126.128/26\",\r\n
+ \ \"20.47.216.0/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n
+ \ \"20.50.201.0/26\",\r\n \"20.52.64.64/26\",\r\n \"20.72.27.144/29\",\r\n
+ \ \"20.72.27.160/28\",\r\n \"20.89.0.0/26\",\r\n \"20.150.160.216/29\",\r\n
+ \ \"20.150.170.8/29\",\r\n \"20.150.175.0/26\",\r\n \"20.150.178.128/29\",\r\n
+ \ \"20.150.182.64/28\",\r\n \"20.150.186.128/29\",\r\n \"20.150.189.48/28\",\r\n
+ \ \"20.150.189.64/26\",\r\n \"20.151.32.0/26\",\r\n \"20.192.32.240/28\",\r\n
+ \ \"20.192.98.128/29\",\r\n \"20.192.101.192/26\",\r\n \"20.192.160.40/29\",\r\n
+ \ \"20.192.225.56/29\",\r\n \"20.192.234.8/29\",\r\n \"20.193.204.104/29\",\r\n
+ \ \"20.193.204.112/28\",\r\n \"20.194.67.208/29\",\r\n \"20.194.68.128/28\",\r\n
+ \ \"20.194.128.128/26\",\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"23.97.120.37/32\",\r\n \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n
+ \ \"23.98.112.128/26\",\r\n \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n
+ \ \"40.67.58.8/29\",\r\n \"40.67.72.0/26\",\r\n \"40.68.127.68/32\",\r\n
+ \ \"40.69.106.16/28\",\r\n \"40.70.146.64/29\",\r\n \"40.70.151.128/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n \"40.75.34.16/29\",\r\n
+ \ \"40.78.194.16/28\",\r\n \"40.78.202.16/28\",\r\n \"40.78.226.192/29\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"40.78.242.144/29\",\r\n \"40.78.247.192/26\",\r\n
+ \ \"40.78.250.80/29\",\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"40.79.154.88/29\",\r\n \"40.79.162.16/29\",\r\n \"40.79.166.128/26\",\r\n
+ \ \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n \"40.79.178.16/28\",\r\n
+ \ \"40.79.186.64/27\",\r\n \"40.79.194.80/29\",\r\n \"40.80.50.128/29\",\r\n
+ \ \"40.86.91.130/32\",\r\n \"40.89.121.192/26\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"40.124.65.0/26\",\r\n \"51.11.192.64/26\",\r\n \"51.12.98.8/29\",\r\n
+ \ \"51.12.101.224/28\",\r\n \"51.12.202.8/29\",\r\n \"51.12.206.0/28\",\r\n
+ \ \"51.12.226.128/29\",\r\n \"51.12.234.128/29\",\r\n \"51.13.0.128/26\",\r\n
+ \ \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n \"51.105.74.128/29\",\r\n
+ \ \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n \"51.107.154.8/29\",\r\n
+ \ \"51.116.58.8/29\",\r\n \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n
+ \ \"51.116.246.128/26\",\r\n \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n
+ \ \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n \"51.120.109.208/28\",\r\n
+ \ \"51.120.210.128/29\",\r\n \"51.120.218.8/29\",\r\n \"51.132.192.128/26\",\r\n
+ \ \"51.140.43.12/32\",\r\n \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n
+ \ \"51.140.210.64/28\",\r\n \"51.141.1.129/32\",\r\n \"51.142.210.16/32\",\r\n
+ \ \"52.138.71.95/32\",\r\n \"52.138.90.16/29\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"52.161.17.198/32\",\r\n \"52.162.106.128/28\",\r\n \"52.167.106.64/29\",\r\n
+ \ \"52.167.109.128/26\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"52.172.220.188/32\",\r\n \"52.178.17.64/26\",\r\n
+ \ \"52.180.178.204/32\",\r\n \"52.182.138.192/29\",\r\n \"52.182.143.0/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"52.231.146.64/28\",\r\n \"52.232.119.191/32\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"52.242.36.0/32\",\r\n \"52.246.154.128/29\",\r\n
+ \ \"52.246.158.192/26\",\r\n \"65.52.219.186/32\",\r\n \"65.52.250.64/27\",\r\n
+ \ \"102.37.64.192/26\",\r\n \"102.37.72.0/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"104.208.16.64/29\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"104.211.81.16/29\",\r\n \"104.211.146.16/28\",\r\n
+ \ \"104.211.190.88/32\",\r\n \"104.214.18.160/29\",\r\n \"168.61.142.56/29\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.8.40/29\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"191.237.224.64/26\",\r\n
+ \ \"207.46.138.15/32\",\r\n \"2603:1000:4::220/123\",\r\n
+ \ \"2603:1000:4:402::170/125\",\r\n \"2603:1000:104:1::220/123\",\r\n
+ \ \"2603:1000:104:402::170/125\",\r\n \"2603:1000:104:802::150/125\",\r\n
+ \ \"2603:1000:104:c02::150/125\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\",\r\n \"2603:1010:404::220/123\",\r\n
+ \ \"2603:1010:404:402::170/125\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\",\r\n \"2603:1020:305::220/123\",\r\n
+ \ \"2603:1020:305:402::170/125\",\r\n \"2603:1020:405::220/123\",\r\n
+ \ \"2603:1020:405:402::170/125\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\",\r\n \"2603:1020:a04:1::220/123\",\r\n
+ \ \"2603:1020:a04:402::170/125\",\r\n \"2603:1020:a04:802::150/125\",\r\n
+ \ \"2603:1020:a04:c02::150/125\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\",\r\n \"2603:1020:1004::220/123\",\r\n
+ \ \"2603:1020:1004:800::e0/124\",\r\n \"2603:1020:1004:800::f0/125\",\r\n
+ \ \"2603:1020:1004:800::358/125\",\r\n \"2603:1020:1004:800::3c0/124\",\r\n
+ \ \"2603:1020:1004:800::3e8/125\",\r\n \"2603:1020:1004:c02::180/123\",\r\n
+ \ \"2603:1020:1004:c02::1a0/125\",\r\n \"2603:1020:1104:400::170/125\",\r\n
+ \ \"2603:1030:f:1::220/123\",\r\n \"2603:1030:f:400::970/125\",\r\n
+ \ \"2603:1030:10:1::220/123\",\r\n \"2603:1030:10:402::170/125\",\r\n
+ \ \"2603:1030:10:802::150/125\",\r\n \"2603:1030:10:c02::150/125\",\r\n
+ \ \"2603:1030:104:1::220/123\",\r\n \"2603:1030:104:402::170/125\",\r\n
+ \ \"2603:1030:107:400::d8/125\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\",\r\n \"2603:1030:504:1::220/123\",\r\n
+ \ \"2603:1030:504:802::e0/124\",\r\n \"2603:1030:504:802::f0/125\",\r\n
+ \ \"2603:1030:504:802::358/125\",\r\n \"2603:1030:608::220/123\",\r\n
+ \ \"2603:1030:608:402::170/125\",\r\n \"2603:1030:807:1::220/123\",\r\n
+ \ \"2603:1030:807:402::170/125\",\r\n \"2603:1030:807:802::150/125\",\r\n
+ \ \"2603:1030:807:c02::150/125\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\",\r\n \"2603:1030:b04::220/123\",\r\n
+ \ \"2603:1030:b04:402::170/125\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\",\r\n \"2603:1040:207::220/123\",\r\n
+ \ \"2603:1040:207:402::170/125\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\",\r\n \"2603:1040:606::220/123\",\r\n
+ \ \"2603:1040:606:402::170/125\",\r\n \"2603:1040:806::220/123\",\r\n
+ \ \"2603:1040:806:402::170/125\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\",\r\n \"2603:1040:c06::220/123\",\r\n
+ \ \"2603:1040:c06:402::170/125\",\r\n \"2603:1040:d04::220/123\",\r\n
+ \ \"2603:1040:d04:800::e0/124\",\r\n \"2603:1040:d04:800::f0/125\",\r\n
+ \ \"2603:1040:d04:800::358/125\",\r\n \"2603:1040:d04:800::3c0/125\",\r\n
+ \ \"2603:1040:d04:800::3e8/125\",\r\n \"2603:1040:f05:1::220/123\",\r\n
+ \ \"2603:1040:f05:402::170/125\",\r\n \"2603:1040:f05:802::150/125\",\r\n
+ \ \"2603:1040:f05:c02::150/125\",\r\n \"2603:1040:1104:400::170/125\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\",\r\n
+ \ \"2603:1050:403::220/123\",\r\n \"2603:1050:403:400::148/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaCentral\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.224/27\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaCentral2\",\r\n \"id\":
+ \"ServiceBus.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.36.114.128/27\",\r\n
+ \ \"2603:1010:404::220/123\",\r\n \"2603:1010:404:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaEast\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.16/29\",\r\n \"13.70.114.0/26\",\r\n \"40.79.162.16/29\",\r\n
+ \ \"40.79.166.128/26\",\r\n \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaSoutheast\",\r\n \"id\":
+ \"ServiceBus.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.70.186.33/32\",\r\n
+ \ \"13.77.50.16/28\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.BrazilSouth\",\r\n \"id\": \"ServiceBus.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.CanadaCentral\",\r\n
+ \ \"id\": \"ServiceBus.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.151.32.0/26\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.246.154.128/29\",\r\n \"52.246.158.192/26\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CanadaEast\",\r\n \"id\": \"ServiceBus.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.16/28\",\r\n \"52.242.36.0/32\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralIndia\",\r\n \"id\": \"ServiceBus.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.126.0/26\",\r\n \"20.192.98.128/29\",\r\n
+ \ \"20.192.101.192/26\",\r\n \"40.80.50.128/29\",\r\n \"52.172.220.188/32\",\r\n
+ \ \"104.211.81.16/29\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUS\",\r\n \"id\": \"ServiceBus.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n
+ \ \"20.44.13.0/26\",\r\n \"40.86.91.130/32\",\r\n \"52.182.138.192/29\",\r\n
+ \ \"52.182.143.0/26\",\r\n \"104.208.16.64/29\",\r\n \"2603:1030:10:1::220/123\",\r\n
+ \ \"2603:1030:10:402::170/125\",\r\n \"2603:1030:10:802::150/125\",\r\n
+ \ \"2603:1030:10:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUSEUAP\",\r\n \"id\": \"ServiceBus.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.16/28\",\r\n \"52.180.178.204/32\",\r\n
+ \ \"168.61.142.56/29\",\r\n \"2603:1030:f:1::220/123\",\r\n
+ \ \"2603:1030:f:400::970/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastAsia\",\r\n \"id\": \"ServiceBus.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.128/28\",\r\n \"207.46.138.15/32\",\r\n
+ \ \"2603:1040:207::220/123\",\r\n \"2603:1040:207:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.EastUS\",\r\n
+ \ \"id\": \"ServiceBus.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.0/26\",\r\n
+ \ \"20.42.68.0/26\",\r\n \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.78.226.192/29\",\r\n \"40.79.154.88/29\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2\",\r\n \"id\": \"ServiceBus.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.110.36/32\",\r\n \"20.36.144.0/26\",\r\n \"40.70.146.64/29\",\r\n
+ \ \"40.70.151.128/26\",\r\n \"52.167.106.64/29\",\r\n \"52.167.109.128/26\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2EUAP\",\r\n \"id\": \"ServiceBus.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.216.0/26\",\r\n \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n
+ \ \"40.75.34.16/29\",\r\n \"40.89.121.192/26\",\r\n \"52.138.71.95/32\",\r\n
+ \ \"52.138.90.16/29\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceCentral\",\r\n \"id\": \"ServiceBus.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"51.11.192.64/26\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceSouth\",\r\n \"id\": \"ServiceBus.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.16/28\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyNorth\",\r\n \"id\": \"ServiceBus.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.8/29\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyWestCentral\",\r\n \"id\":
+ \"ServiceBus.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.64/26\",\r\n
+ \ \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n \"51.116.246.128/26\",\r\n
+ \ \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanEast\",\r\n \"id\": \"ServiceBus.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.94.187/32\",\r\n \"13.78.106.80/29\",\r\n
+ \ \"20.89.0.0/26\",\r\n \"20.194.128.128/26\",\r\n \"40.79.186.64/27\",\r\n
+ \ \"40.79.194.80/29\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanWest\",\r\n \"id\": \"ServiceBus.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"2603:1040:606::220/123\",\r\n \"2603:1040:606:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaCentral\",\r\n
+ \ \"id\": \"ServiceBus.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.128/29\",\r\n \"20.44.31.64/26\",\r\n \"20.194.67.208/29\",\r\n
+ \ \"20.194.68.128/28\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"2603:1040:f05:1::220/123\",\r\n \"2603:1040:f05:402::170/125\",\r\n
+ \ \"2603:1040:f05:802::150/125\",\r\n \"2603:1040:f05:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaSouth\",\r\n
+ \ \"id\": \"ServiceBus.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"52.231.146.64/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.128/28\",\r\n \"65.52.219.186/32\",\r\n
+ \ \"2603:1030:608::220/123\",\r\n \"2603:1030:608:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthEurope\",\r\n
+ \ \"id\": \"ServiceBus.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.64/29\",\r\n
+ \ \"13.69.233.192/26\",\r\n \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n
+ \ \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayEast\",\r\n \"id\": \"ServiceBus.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.128/26\",\r\n \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n
+ \ \"51.120.109.208/28\",\r\n \"51.120.210.128/29\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayWest\",\r\n \"id\": \"ServiceBus.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.218.8/29\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthAfricaNorth\",\r\n \"id\":
+ \"ServiceBus.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"102.37.72.0/26\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"2603:1000:104:1::220/123\",\r\n \"2603:1000:104:402::170/125\",\r\n
+ \ \"2603:1000:104:802::150/125\",\r\n \"2603:1000:104:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthAfricaWest\",\r\n
+ \ \"id\": \"ServiceBus.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"102.37.64.192/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"2603:1000:4::220/123\",\r\n \"2603:1000:4:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.85.81.218/32\",\r\n \"20.45.122.128/29\",\r\n
+ \ \"20.45.126.128/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"40.124.65.0/26\",\r\n \"104.214.18.160/29\",\r\n
+ \ \"2603:1030:807:1::220/123\",\r\n \"2603:1030:807:402::170/125\",\r\n
+ \ \"2603:1030:807:802::150/125\",\r\n \"2603:1030:807:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SoutheastAsia\",\r\n
+ \ \"id\": \"ServiceBus.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.76.141.36/32\",\r\n
+ \ \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n \"23.98.112.128/26\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthIndia\",\r\n \"id\": \"ServiceBus.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.114.157/32\",\r\n \"40.78.194.16/28\",\r\n
+ \ \"2603:1040:c06::220/123\",\r\n \"2603:1040:c06:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n
+ \ \"2603:1020:a04:1::220/123\",\r\n \"2603:1020:a04:402::170/125\",\r\n
+ \ \"2603:1020:a04:802::150/125\",\r\n \"2603:1020:a04:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandWest\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.8/29\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAECentral\",\r\n \"id\": \"ServiceBus.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.32/27\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAENorth\",\r\n \"id\": \"ServiceBus.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"65.52.250.64/27\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth\",\r\n \"id\": \"ServiceBus.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n
+ \ \"51.105.74.128/29\",\r\n \"51.132.192.128/26\",\r\n \"51.140.43.12/32\",\r\n
+ \ \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth2\",\r\n \"id\": \"ServiceBus.UKSouth2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.35.8/32\",\r\n \"13.87.56.64/28\",\r\n
+ \ \"2603:1020:405::220/123\",\r\n \"2603:1020:405:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.UKWest\",\r\n
+ \ \"id\": \"ServiceBus.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.64/28\",\r\n
+ \ \"51.141.1.129/32\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestCentralUS\",\r\n \"id\": \"ServiceBus.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.96/28\",\r\n \"52.161.17.198/32\",\r\n
+ \ \"2603:1030:b04::220/123\",\r\n \"2603:1030:b04:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestEurope\",\r\n
+ \ \"id\": \"ServiceBus.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.64/29\",\r\n
+ \ \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n \"20.50.201.0/26\",\r\n
+ \ \"40.68.127.68/32\",\r\n \"52.178.17.64/26\",\r\n \"52.232.119.191/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestIndia\",\r\n \"id\": \"ServiceBus.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.16/28\",\r\n \"104.211.190.88/32\",\r\n
+ \ \"2603:1040:806::220/123\",\r\n \"2603:1040:806:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestUS\",\r\n
+ \ \"id\": \"ServiceBus.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.10.93/32\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestUS2\",\r\n \"id\": \"ServiceBus.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n \"40.78.242.144/29\",\r\n
+ \ \"40.78.247.192/26\",\r\n \"40.78.250.80/29\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric\",\r\n \"id\": \"ServiceFabric\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.152/29\",\r\n \"13.66.167.194/32\",\r\n
+ \ \"13.66.226.151/32\",\r\n \"13.67.9.136/29\",\r\n \"13.69.64.232/29\",\r\n
+ \ \"13.69.109.136/30\",\r\n \"13.69.227.232/29\",\r\n \"13.70.72.216/29\",\r\n
+ \ \"13.70.78.172/30\",\r\n \"13.71.170.224/29\",\r\n \"13.71.170.248/29\",\r\n
+ \ \"13.71.195.48/29\",\r\n \"13.74.80.74/32\",\r\n \"13.74.111.144/30\",\r\n
+ \ \"13.75.36.80/29\",\r\n \"13.75.41.166/32\",\r\n \"13.75.42.35/32\",\r\n
+ \ \"13.77.52.0/29\",\r\n \"13.78.108.24/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"13.87.32.204/32\",\r\n \"13.87.56.240/29\",\r\n
+ \ \"13.87.98.166/32\",\r\n \"13.87.122.240/29\",\r\n \"13.89.171.104/29\",\r\n
+ \ \"13.91.7.211/32\",\r\n \"13.91.252.58/32\",\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.36.40.70/32\",\r\n \"20.36.72.79/32\",\r\n \"20.36.107.16/29\",\r\n
+ \ \"20.36.114.192/29\",\r\n \"20.37.74.80/29\",\r\n \"20.38.149.192/30\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"20.44.3.24/29\",\r\n
+ \ \"20.44.10.124/30\",\r\n \"20.44.19.0/30\",\r\n \"20.44.29.52/30\",\r\n
+ \ \"20.45.79.240/32\",\r\n \"20.45.123.244/30\",\r\n \"20.49.82.4/30\",\r\n
+ \ \"20.49.90.4/30\",\r\n \"20.72.26.4/30\",\r\n \"20.150.171.72/29\",\r\n
+ \ \"20.150.181.160/30\",\r\n \"20.150.189.28/30\",\r\n \"20.150.225.4/30\",\r\n
+ \ \"20.184.2.84/32\",\r\n \"20.192.32.224/30\",\r\n \"20.192.101.28/30\",\r\n
+ \ \"20.192.235.0/29\",\r\n \"20.193.202.24/29\",\r\n \"20.193.204.100/30\",\r\n
+ \ \"20.194.66.4/30\",\r\n \"23.96.200.228/32\",\r\n \"23.96.210.6/32\",\r\n
+ \ \"23.96.214.100/32\",\r\n \"23.98.86.60/30\",\r\n \"23.99.11.219/32\",\r\n
+ \ \"23.100.199.230/32\",\r\n \"40.67.59.72/29\",\r\n \"40.69.107.0/29\",\r\n
+ \ \"40.69.166.6/32\",\r\n \"40.70.146.232/29\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.74.100.240/29\",\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"40.78.195.0/29\",\r\n
+ \ \"40.78.202.120/29\",\r\n \"40.78.238.60/30\",\r\n \"40.78.245.192/30\",\r\n
+ \ \"40.78.253.64/30\",\r\n \"40.79.114.102/32\",\r\n \"40.79.130.232/29\",\r\n
+ \ \"40.79.139.192/30\",\r\n \"40.79.148.80/30\",\r\n \"40.79.165.80/29\",\r\n
+ \ \"40.79.171.228/30\",\r\n \"40.79.173.0/30\",\r\n \"40.79.179.0/29\",\r\n
+ \ \"40.79.189.60/30\",\r\n \"40.79.197.36/30\",\r\n \"40.80.53.4/30\",\r\n
+ \ \"40.84.62.189/32\",\r\n \"40.84.133.64/32\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"40.86.230.174/32\",\r\n \"40.89.168.15/32\",\r\n \"40.112.243.176/29\",\r\n
+ \ \"40.113.23.157/32\",\r\n \"40.113.88.37/32\",\r\n \"40.115.64.123/32\",\r\n
+ \ \"40.115.113.228/32\",\r\n \"40.120.74.4/30\",\r\n \"40.123.204.26/32\",\r\n
+ \ \"51.12.99.64/29\",\r\n \"51.12.101.168/30\",\r\n \"51.12.203.64/29\",\r\n
+ \ \"51.12.204.240/30\",\r\n \"51.105.69.84/30\",\r\n \"51.105.77.52/30\",\r\n
+ \ \"51.107.59.40/29\",\r\n \"51.107.76.20/32\",\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"51.116.59.40/29\",\r\n \"51.116.155.104/29\",\r\n
+ \ \"51.116.208.26/32\",\r\n \"51.116.232.27/32\",\r\n \"51.116.245.160/30\",\r\n
+ \ \"51.116.253.128/30\",\r\n \"51.120.68.23/32\",\r\n \"51.120.98.240/29\",\r\n
+ \ \"51.120.109.28/30\",\r\n \"51.120.164.23/32\",\r\n \"51.120.219.72/29\",\r\n
+ \ \"51.140.148.24/29\",\r\n \"51.140.184.27/32\",\r\n \"51.140.211.16/29\",\r\n
+ \ \"51.141.8.30/32\",\r\n \"52.136.136.27/32\",\r\n \"52.138.70.82/32\",\r\n
+ \ \"52.138.92.168/30\",\r\n \"52.138.143.55/32\",\r\n \"52.138.229.68/30\",\r\n
+ \ \"52.143.136.15/32\",\r\n \"52.143.184.15/32\",\r\n \"52.151.38.144/32\",\r\n
+ \ \"52.158.236.247/32\",\r\n \"52.162.107.176/29\",\r\n \"52.163.90.165/32\",\r\n
+ \ \"52.163.94.113/32\",\r\n \"52.165.37.188/32\",\r\n \"52.167.0.27/32\",\r\n
+ \ \"52.167.109.68/30\",\r\n \"52.167.227.220/32\",\r\n \"52.174.163.204/32\",\r\n
+ \ \"52.174.164.254/32\",\r\n \"52.178.30.193/32\",\r\n \"52.180.176.84/32\",\r\n
+ \ \"52.182.141.56/30\",\r\n \"52.182.172.232/32\",\r\n \"52.225.184.94/32\",\r\n
+ \ \"52.225.185.159/32\",\r\n \"52.230.8.61/32\",\r\n \"52.231.18.232/29\",\r\n
+ \ \"52.231.32.81/32\",\r\n \"52.231.147.16/29\",\r\n \"52.231.200.124/32\",\r\n
+ \ \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n \"52.246.157.8/30\",\r\n
+ \ \"65.52.250.224/29\",\r\n \"102.37.48.12/32\",\r\n \"102.133.27.24/29\",\r\n
+ \ \"102.133.72.31/32\",\r\n \"102.133.155.24/29\",\r\n \"102.133.160.28/32\",\r\n
+ \ \"102.133.235.169/32\",\r\n \"102.133.251.216/30\",\r\n
+ \ \"104.41.9.53/32\",\r\n \"104.41.187.29/32\",\r\n \"104.42.181.121/32\",\r\n
+ \ \"104.43.213.84/32\",\r\n \"104.45.19.250/32\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"104.210.107.69/32\",\r\n \"104.211.81.216/29\",\r\n \"104.211.103.201/32\",\r\n
+ \ \"104.211.146.240/29\",\r\n \"104.211.164.163/32\",\r\n
+ \ \"104.211.228.68/32\",\r\n \"104.214.19.72/29\",\r\n \"104.215.78.146/32\",\r\n
+ \ \"137.116.252.9/32\",\r\n \"137.135.33.49/32\",\r\n \"168.61.142.48/30\",\r\n
+ \ \"191.233.50.24/29\",\r\n \"191.233.203.216/29\",\r\n \"191.234.149.32/30\",\r\n
+ \ \"191.234.157.128/30\",\r\n \"207.46.234.62/32\",\r\n \"2603:1000:4:402::98/125\",\r\n
+ \ \"2603:1000:104:402::98/125\",\r\n \"2603:1000:104:802::98/125\",\r\n
+ \ \"2603:1000:104:c02::98/125\",\r\n \"2603:1010:6:402::98/125\",\r\n
+ \ \"2603:1010:6:802::98/125\",\r\n \"2603:1010:6:c02::98/125\",\r\n
+ \ \"2603:1010:101:402::98/125\",\r\n \"2603:1010:304:402::98/125\",\r\n
+ \ \"2603:1010:404:402::98/125\",\r\n \"2603:1020:5:402::98/125\",\r\n
+ \ \"2603:1020:5:802::98/125\",\r\n \"2603:1020:5:c02::98/125\",\r\n
+ \ \"2603:1020:206:402::98/125\",\r\n \"2603:1020:206:802::98/125\",\r\n
+ \ \"2603:1020:206:c02::98/125\",\r\n \"2603:1020:305:402::98/125\",\r\n
+ \ \"2603:1020:405:402::98/125\",\r\n \"2603:1020:605:402::98/125\",\r\n
+ \ \"2603:1020:705:402::98/125\",\r\n \"2603:1020:705:802::98/125\",\r\n
+ \ \"2603:1020:705:c02::98/125\",\r\n \"2603:1020:805:402::98/125\",\r\n
+ \ \"2603:1020:805:802::98/125\",\r\n \"2603:1020:805:c02::98/125\",\r\n
+ \ \"2603:1020:905:402::98/125\",\r\n \"2603:1020:a04:402::98/125\",\r\n
+ \ \"2603:1020:a04:802::98/125\",\r\n \"2603:1020:a04:c02::98/125\",\r\n
+ \ \"2603:1020:b04:402::98/125\",\r\n \"2603:1020:c04:402::98/125\",\r\n
+ \ \"2603:1020:c04:802::98/125\",\r\n \"2603:1020:c04:c02::98/125\",\r\n
+ \ \"2603:1020:d04:402::98/125\",\r\n \"2603:1020:e04:402::98/125\",\r\n
+ \ \"2603:1020:e04:802::98/125\",\r\n \"2603:1020:e04:c02::98/125\",\r\n
+ \ \"2603:1020:f04:402::98/125\",\r\n \"2603:1020:1004:400::98/125\",\r\n
+ \ \"2603:1020:1004:800::158/125\",\r\n \"2603:1020:1004:800::350/125\",\r\n
+ \ \"2603:1020:1104:400::98/125\",\r\n \"2603:1030:f:400::898/125\",\r\n
+ \ \"2603:1030:10:402::98/125\",\r\n \"2603:1030:10:802::98/125\",\r\n
+ \ \"2603:1030:10:c02::98/125\",\r\n \"2603:1030:104:402::98/125\",\r\n
+ \ \"2603:1030:107:400::d0/125\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\",\r\n
+ \ \"2603:1030:40b:400::898/125\",\r\n \"2603:1030:40b:800::98/125\",\r\n
+ \ \"2603:1030:40b:c00::98/125\",\r\n \"2603:1030:40c:402::98/125\",\r\n
+ \ \"2603:1030:40c:802::98/125\",\r\n \"2603:1030:40c:c02::98/125\",\r\n
+ \ \"2603:1030:504:402::98/125\",\r\n \"2603:1030:504:802::c8/125\",\r\n
+ \ \"2603:1030:504:802::158/125\",\r\n \"2603:1030:504:802::350/125\",\r\n
+ \ \"2603:1030:608:402::98/125\",\r\n \"2603:1030:807:402::98/125\",\r\n
+ \ \"2603:1030:807:802::98/125\",\r\n \"2603:1030:807:c02::98/125\",\r\n
+ \ \"2603:1030:a07:402::98/125\",\r\n \"2603:1030:b04:402::98/125\",\r\n
+ \ \"2603:1030:c06:400::898/125\",\r\n \"2603:1030:c06:802::98/125\",\r\n
+ \ \"2603:1030:c06:c02::98/125\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\",\r\n
+ \ \"2603:1030:1005:402::98/125\",\r\n \"2603:1040:5:402::98/125\",\r\n
+ \ \"2603:1040:5:802::98/125\",\r\n \"2603:1040:5:c02::98/125\",\r\n
+ \ \"2603:1040:207:402::98/125\",\r\n \"2603:1040:407:402::98/125\",\r\n
+ \ \"2603:1040:407:802::98/125\",\r\n \"2603:1040:407:c02::98/125\",\r\n
+ \ \"2603:1040:606:402::98/125\",\r\n \"2603:1040:806:402::98/125\",\r\n
+ \ \"2603:1040:904:402::98/125\",\r\n \"2603:1040:904:802::98/125\",\r\n
+ \ \"2603:1040:904:c02::98/125\",\r\n \"2603:1040:a06:402::98/125\",\r\n
+ \ \"2603:1040:a06:802::98/125\",\r\n \"2603:1040:a06:c02::98/125\",\r\n
+ \ \"2603:1040:b04:402::98/125\",\r\n \"2603:1040:c06:402::98/125\",\r\n
+ \ \"2603:1040:d04:400::98/125\",\r\n \"2603:1040:d04:800::158/125\",\r\n
+ \ \"2603:1040:d04:800::350/125\",\r\n \"2603:1040:f05:402::98/125\",\r\n
+ \ \"2603:1040:f05:802::98/125\",\r\n \"2603:1040:f05:c02::98/125\",\r\n
+ \ \"2603:1040:1104:400::98/125\",\r\n \"2603:1050:6:402::98/125\",\r\n
+ \ \"2603:1050:6:802::98/125\",\r\n \"2603:1050:6:c02::98/125\",\r\n
+ \ \"2603:1050:403:400::140/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.CanadaCentral\",\r\n \"id\":
+ \"ServiceFabric.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.71.170.224/29\",\r\n
+ \ \"13.71.170.248/29\",\r\n \"20.38.149.192/30\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"52.246.157.8/30\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS2EUAP\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.79.114.102/32\",\r\n \"52.138.70.82/32\",\r\n \"52.138.92.168/30\",\r\n
+ \ \"52.225.184.94/32\",\r\n \"52.225.185.159/32\",\r\n \"2603:1030:40b:400::898/125\",\r\n
+ \ \"2603:1030:40b:800::98/125\",\r\n \"2603:1030:40b:c00::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.FranceSouth\",\r\n
+ \ \"id\": \"ServiceFabric.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.0/29\",\r\n \"52.136.136.27/32\",\r\n
+ \ \"2603:1020:905:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.JapanWest\",\r\n \"id\": \"ServiceFabric.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.240/29\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"2603:1040:606:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.SwitzerlandWest\",\r\n \"id\":
+ \"ServiceFabric.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"2603:1020:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.UAECentral\",\r\n
+ \ \"id\": \"ServiceFabric.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.80/29\",\r\n \"20.45.79.240/32\",\r\n \"2603:1040:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.WestCentralUS\",\r\n
+ \ \"id\": \"ServiceFabric.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.48/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"2603:1030:b04:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.WestEurope\",\r\n \"id\": \"ServiceFabric.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.64.232/29\",\r\n \"13.69.109.136/30\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"52.174.163.204/32\",\r\n \"52.174.164.254/32\",\r\n
+ \ \"52.178.30.193/32\",\r\n \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n
+ \ \"104.45.19.250/32\",\r\n \"2603:1020:206:402::98/125\",\r\n
+ \ \"2603:1020:206:802::98/125\",\r\n \"2603:1020:206:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql\",\r\n \"id\":
+ \"Sql\",\r\n \"properties\": {\r\n \"changeNumber\": \"3\",\r\n
+ \ \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.66.136.0/26\",\r\n \"13.66.136.192/29\",\r\n
+ \ \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n \"13.66.229.222/32\",\r\n
+ \ \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n \"13.66.230.64/32\",\r\n
+ \ \"13.66.230.103/32\",\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n
+ \ \"13.67.17.0/26\",\r\n \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n
+ \ \"13.67.59.217/32\",\r\n \"13.67.215.62/32\",\r\n \"13.68.22.44/32\",\r\n
+ \ \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.70.148.251/32\",\r\n \"13.70.155.163/32\",\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.73.109.251/32\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n
+ \ \"13.77.7.78/32\",\r\n \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n
+ \ \"13.77.49.32/29\",\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n
+ \ \"13.78.104.32/29\",\r\n \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n
+ \ \"13.78.144.57/32\",\r\n \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n
+ \ \"13.78.151.189/32\",\r\n \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n
+ \ \"13.78.178.151/32\",\r\n \"13.78.248.32/27\",\r\n \"13.84.223.76/32\",\r\n
+ \ \"13.85.65.48/32\",\r\n \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n
+ \ \"13.86.216.0/25\",\r\n \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n
+ \ \"13.86.217.0/25\",\r\n \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n
+ \ \"13.86.217.224/29\",\r\n \"13.87.16.64/27\",\r\n \"13.87.17.0/27\",\r\n
+ \ \"13.87.33.234/32\",\r\n \"13.87.34.7/32\",\r\n \"13.87.34.19/32\",\r\n
+ \ \"13.87.38.138/32\",\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"13.89.36.110/32\",\r\n \"13.89.37.61/32\",\r\n
+ \ \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n \"13.89.168.0/26\",\r\n
+ \ \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n
+ \ \"20.36.105.32/29\",\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n
+ \ \"20.36.113.32/29\",\r\n \"20.37.71.64/26\",\r\n \"20.37.71.128/26\",\r\n
+ \ \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n \"20.37.73.64/27\",\r\n
+ \ \"20.37.73.96/29\",\r\n \"20.38.143.64/26\",\r\n \"20.38.143.128/26\",\r\n
+ \ \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n \"20.38.145.0/27\",\r\n
+ \ \"20.38.152.24/29\",\r\n \"20.40.228.128/25\",\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.43.47.192/26\",\r\n \"20.44.0.0/27\",\r\n
+ \ \"20.44.1.0/27\",\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n
+ \ \"20.44.25.0/27\",\r\n \"20.45.120.0/27\",\r\n \"20.45.121.0/27\",\r\n
+ \ \"20.45.121.32/29\",\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n
+ \ \"20.46.11.128/26\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"20.49.80.0/27\",\r\n \"20.49.80.32/29\",\r\n
+ \ \"20.49.81.0/27\",\r\n \"20.49.88.0/27\",\r\n \"20.49.88.32/29\",\r\n
+ \ \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"20.51.17.160/27\",\r\n \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n
+ \ \"20.53.46.128/25\",\r\n \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n
+ \ \"20.53.48.192/26\",\r\n \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n
+ \ \"20.53.56.128/26\",\r\n \"20.58.66.128/25\",\r\n \"20.61.99.192/26\",\r\n
+ \ \"20.61.102.0/26\",\r\n \"20.62.58.128/25\",\r\n \"20.62.132.160/27\",\r\n
+ \ \"20.62.132.192/27\",\r\n \"20.62.133.0/26\",\r\n \"20.65.132.160/27\",\r\n
+ \ \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n \"20.66.3.64/26\",\r\n
+ \ \"20.66.3.128/26\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"20.72.21.224/27\",\r\n \"20.72.24.64/27\",\r\n
+ \ \"20.72.24.128/27\",\r\n \"20.72.25.128/27\",\r\n \"20.88.64.0/27\",\r\n
+ \ \"20.150.168.0/27\",\r\n \"20.150.168.32/29\",\r\n \"20.150.169.0/27\",\r\n
+ \ \"20.150.176.0/27\",\r\n \"20.150.176.32/29\",\r\n \"20.150.177.0/27\",\r\n
+ \ \"20.150.184.0/27\",\r\n \"20.150.184.32/29\",\r\n \"20.150.185.0/27\",\r\n
+ \ \"20.150.241.128/25\",\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"20.191.165.160/27\",\r\n \"20.191.165.192/27\",\r\n
+ \ \"20.191.166.0/26\",\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.48.32/27\",\r\n \"20.192.48.64/27\",\r\n
+ \ \"20.192.48.128/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"20.192.167.224/27\",\r\n \"20.192.232.0/27\",\r\n
+ \ \"20.192.233.0/27\",\r\n \"20.192.233.32/29\",\r\n \"20.193.192.0/27\",\r\n
+ \ \"20.193.192.64/26\",\r\n \"20.193.200.0/27\",\r\n \"20.193.200.32/29\",\r\n
+ \ \"20.193.201.0/27\",\r\n \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n
+ \ \"20.194.65.0/27\",\r\n \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n
+ \ \"20.195.65.32/27\",\r\n \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"20.195.146.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"23.96.178.199/32\",\r\n \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n
+ \ \"23.96.205.215/32\",\r\n \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n
+ \ \"23.96.247.75/32\",\r\n \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.98.55.75/32\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.98.162.75/32\",\r\n
+ \ \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n \"23.98.170.75/32\",\r\n
+ \ \"23.98.170.76/31\",\r\n \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n
+ \ \"23.99.10.185/32\",\r\n \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n
+ \ \"23.99.34.78/32\",\r\n \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n
+ \ \"23.99.57.14/32\",\r\n \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n
+ \ \"23.99.90.75/32\",\r\n \"23.99.91.130/32\",\r\n \"23.99.102.124/32\",\r\n
+ \ \"23.99.118.196/32\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"23.101.64.10/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"23.102.16.130/32\",\r\n \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n
+ \ \"23.102.52.155/32\",\r\n \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n
+ \ \"23.102.69.95/32\",\r\n \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n
+ \ \"23.102.172.251/32\",\r\n \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n
+ \ \"23.102.179.187/32\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.67.53.0/25\",\r\n \"40.67.56.0/27\",\r\n \"40.67.56.32/29\",\r\n
+ \ \"40.67.57.0/27\",\r\n \"40.68.37.158/32\",\r\n \"40.68.215.206/32\",\r\n
+ \ \"40.68.220.16/32\",\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n
+ \ \"40.69.105.32/29\",\r\n \"40.69.132.90/32\",\r\n \"40.69.143.202/32\",\r\n
+ \ \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n \"40.70.144.0/26\",\r\n
+ \ \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n \"40.71.8.0/26\",\r\n
+ \ \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n \"40.71.9.192/26\",\r\n
+ \ \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n \"40.71.211.227/32\",\r\n
+ \ \"40.71.226.18/32\",\r\n \"40.74.51.145/32\",\r\n \"40.74.53.36/32\",\r\n
+ \ \"40.74.60.91/32\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"40.74.144.0/27\",\r\n \"40.74.144.32/29\",\r\n
+ \ \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n \"40.74.254.156/32\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"40.76.2.172/32\",\r\n \"40.76.26.90/32\",\r\n
+ \ \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n \"40.76.66.9/32\",\r\n
+ \ \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n \"40.76.219.185/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.78.192.0/27\",\r\n
+ \ \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n \"40.78.193.32/29\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"40.78.224.0/26\",\r\n
+ \ \"40.78.224.128/26\",\r\n \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n
+ \ \"40.78.232.0/26\",\r\n \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"40.79.152.0/26\",\r\n \"40.79.152.192/26\",\r\n
+ \ \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.79.176.0/27\",\r\n
+ \ \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n \"40.79.177.32/29\",\r\n
+ \ \"40.79.184.0/27\",\r\n \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n
+ \ \"40.79.192.0/27\",\r\n \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n
+ \ \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n \"40.80.49.0/27\",\r\n
+ \ \"40.83.178.165/32\",\r\n \"40.83.186.249/32\",\r\n \"40.84.5.64/32\",\r\n
+ \ \"40.84.54.249/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n \"40.86.75.134/32\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"40.112.139.250/32\",\r\n
+ \ \"40.112.240.0/27\",\r\n \"40.112.246.0/27\",\r\n \"40.113.14.53/32\",\r\n
+ \ \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n \"40.113.20.38/32\",\r\n
+ \ \"40.113.93.91/32\",\r\n \"40.113.200.119/32\",\r\n \"40.114.40.118/32\",\r\n
+ \ \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n \"40.114.46.128/32\",\r\n
+ \ \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.118.12.208/32\",\r\n \"40.118.129.167/32\",\r\n
+ \ \"40.118.170.1/32\",\r\n \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n
+ \ \"40.118.249.123/32\",\r\n \"40.118.250.19/32\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"40.121.143.204/32\",\r\n
+ \ \"40.121.149.49/32\",\r\n \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"40.126.228.153/32\",\r\n \"40.126.230.223/32\",\r\n
+ \ \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n \"40.126.250.24/32\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"51.12.46.32/27\",\r\n
+ \ \"51.12.46.64/27\",\r\n \"51.12.46.128/26\",\r\n \"51.12.96.0/27\",\r\n
+ \ \"51.12.96.32/29\",\r\n \"51.12.97.0/27\",\r\n \"51.12.198.32/27\",\r\n
+ \ \"51.12.198.64/27\",\r\n \"51.12.198.128/26\",\r\n \"51.12.200.0/27\",\r\n
+ \ \"51.12.200.32/29\",\r\n \"51.12.201.0/27\",\r\n \"51.12.201.32/29\",\r\n
+ \ \"51.12.224.0/27\",\r\n \"51.12.224.32/29\",\r\n \"51.12.225.0/27\",\r\n
+ \ \"51.12.232.0/27\",\r\n \"51.12.232.32/29\",\r\n \"51.12.233.0/27\",\r\n
+ \ \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n \"51.13.137.64/26\",\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.152.0/27\",\r\n \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"51.107.250.64/26\",\r\n \"51.107.250.128/26\",\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"51.120.96.0/27\",\r\n
+ \ \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n \"51.120.104.0/27\",\r\n
+ \ \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n \"51.120.208.0/27\",\r\n
+ \ \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n \"51.120.216.0/27\",\r\n
+ \ \"51.120.217.0/27\",\r\n \"51.120.217.32/29\",\r\n \"51.120.232.192/26\",\r\n
+ \ \"51.120.233.0/26\",\r\n \"51.138.210.0/26\",\r\n \"51.140.77.9/32\",\r\n
+ \ \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n \"51.140.144.0/27\",\r\n
+ \ \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n \"51.140.180.9/32\",\r\n
+ \ \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n \"51.140.184.12/32\",\r\n
+ \ \"51.140.208.64/27\",\r\n \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n
+ \ \"51.140.209.32/29\",\r\n \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n
+ \ \"51.141.15.53/32\",\r\n \"51.141.25.212/32\",\r\n \"51.142.211.129/32\",\r\n
+ \ \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n \"51.143.212.64/26\",\r\n
+ \ \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n \"52.136.185.0/25\",\r\n
+ \ \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n \"52.138.89.0/27\",\r\n
+ \ \"52.138.89.32/29\",\r\n \"52.138.224.0/26\",\r\n \"52.138.224.128/26\",\r\n
+ \ \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n \"52.138.229.72/29\",\r\n
+ \ \"52.139.106.192/26\",\r\n \"52.139.107.0/26\",\r\n \"52.146.133.128/25\",\r\n
+ \ \"52.147.112.160/27\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"52.162.104.0/26\",\r\n
+ \ \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n \"52.162.125.1/32\",\r\n
+ \ \"52.162.241.250/32\",\r\n \"52.165.184.67/32\",\r\n \"52.166.76.0/32\",\r\n
+ \ \"52.166.131.195/32\",\r\n \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n
+ \ \"52.167.105.0/26\",\r\n \"52.167.117.226/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.171.56.10/32\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n \"52.173.205.59/32\",\r\n
+ \ \"52.175.33.150/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.177.185.181/32\",\r\n
+ \ \"52.177.197.103/32\",\r\n \"52.177.200.215/32\",\r\n \"52.179.16.95/32\",\r\n
+ \ \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n \"52.179.167.70/32\",\r\n
+ \ \"52.179.178.184/32\",\r\n \"52.180.176.154/31\",\r\n \"52.180.183.226/32\",\r\n
+ \ \"52.182.136.0/26\",\r\n \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n
+ \ \"52.183.250.62/32\",\r\n \"52.184.192.175/32\",\r\n \"52.184.231.0/32\",\r\n
+ \ \"52.185.152.149/32\",\r\n \"52.187.15.214/32\",\r\n \"52.187.76.130/32\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.225.188.46/32\",\r\n \"52.225.188.113/32\",\r\n
+ \ \"52.225.222.124/32\",\r\n \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n
+ \ \"52.228.39.117/32\",\r\n \"52.229.17.93/32\",\r\n \"52.229.122.195/32\",\r\n
+ \ \"52.229.123.147/32\",\r\n \"52.229.124.23/32\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"52.231.144.0/27\",\r\n \"52.231.145.0/27\",\r\n
+ \ \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n \"52.231.206.133/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"52.237.28.86/32\",\r\n
+ \ \"52.237.219.227/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"52.243.32.19/32\",\r\n
+ \ \"52.243.43.186/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"52.246.251.248/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"65.52.208.91/32\",\r\n \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n
+ \ \"65.52.218.82/32\",\r\n \"65.52.225.245/32\",\r\n \"65.52.226.209/32\",\r\n
+ \ \"65.52.248.0/27\",\r\n \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n
+ \ \"102.37.80.96/27\",\r\n \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n
+ \ \"102.37.160.0/27\",\r\n \"102.37.160.64/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"102.133.120.0/27\",\r\n
+ \ \"102.133.120.32/29\",\r\n \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n
+ \ \"102.133.152.32/29\",\r\n \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n
+ \ \"102.133.248.0/27\",\r\n \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n
+ \ \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n \"104.40.54.130/32\",\r\n
+ \ \"104.40.82.151/32\",\r\n \"104.40.155.247/32\",\r\n \"104.40.168.64/26\",\r\n
+ \ \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n \"104.40.169.32/29\",\r\n
+ \ \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n \"104.40.220.28/32\",\r\n
+ \ \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n \"104.40.237.111/32\",\r\n
+ \ \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n \"104.41.13.233/32\",\r\n
+ \ \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n \"104.41.57.82/32\",\r\n
+ \ \"104.41.59.170/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.41.168.103/32\",\r\n \"104.41.169.34/32\",\r\n \"104.41.202.30/32\",\r\n
+ \ \"104.41.205.195/32\",\r\n \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n
+ \ \"104.41.211.98/32\",\r\n \"104.42.120.235/32\",\r\n \"104.42.127.95/32\",\r\n
+ \ \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n \"104.42.192.190/32\",\r\n
+ \ \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n \"104.42.237.198/32\",\r\n
+ \ \"104.42.238.205/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.43.164.21/32\",\r\n \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n
+ \ \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n \"104.45.158.30/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n
+ \ \"104.46.183.0/26\",\r\n \"104.47.157.97/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"104.210.32.128/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"104.211.144.0/27\",\r\n
+ \ \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n \"104.211.145.32/29\",\r\n
+ \ \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n \"104.211.190.46/32\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n
+ \ \"104.214.17.0/26\",\r\n \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n
+ \ \"104.214.73.137/32\",\r\n \"104.214.78.242/32\",\r\n \"104.214.148.156/32\",\r\n
+ \ \"104.214.150.17/32\",\r\n \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n
+ \ \"111.221.106.161/32\",\r\n \"137.116.31.224/27\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"137.116.203.91/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"137.135.109.63/32\",\r\n \"137.135.186.126/32\",\r\n
+ \ \"137.135.189.158/32\",\r\n \"137.135.205.85/32\",\r\n
+ \ \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n \"138.91.58.227/32\",\r\n
+ \ \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n \"138.91.240.14/32\",\r\n
+ \ \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n \"138.91.251.139/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"168.62.115.112/28\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"168.63.13.214/32\",\r\n
+ \ \"168.63.98.91/32\",\r\n \"168.63.175.68/32\",\r\n \"191.233.15.160/27\",\r\n
+ \ \"191.233.15.192/27\",\r\n \"191.233.48.0/27\",\r\n \"191.233.48.32/29\",\r\n
+ \ \"191.233.49.0/27\",\r\n \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n
+ \ \"191.233.200.0/27\",\r\n \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"191.234.142.160/27\",\r\n \"191.234.142.192/27\",\r\n
+ \ \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n \"191.234.145.0/27\",\r\n
+ \ \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n \"191.235.170.58/32\",\r\n
+ \ \"191.235.193.75/32\",\r\n \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n
+ \ \"191.235.193.139/32\",\r\n \"191.235.193.140/31\",\r\n
+ \ \"191.235.209.79/32\",\r\n \"191.236.119.31/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.237.219.202/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"191.237.240.43/32\",\r\n
+ \ \"191.237.240.44/32\",\r\n \"191.237.240.46/32\",\r\n \"191.238.6.43/32\",\r\n
+ \ \"191.238.6.44/31\",\r\n \"191.238.6.46/32\",\r\n \"191.238.68.11/32\",\r\n
+ \ \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"191.239.12.154/32\",\r\n \"191.239.189.48/32\",\r\n
+ \ \"191.239.192.109/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1000:4::280/123\",\r\n \"2603:1000:4:1::200/121\",\r\n
+ \ \"2603:1000:4:400::/123\",\r\n \"2603:1000:4:401::/123\",\r\n
+ \ \"2603:1000:104::640/123\",\r\n \"2603:1000:104::680/121\",\r\n
+ \ \"2603:1000:104:400::/123\",\r\n \"2603:1000:104:401::/123\",\r\n
+ \ \"2603:1000:104:800::/123\",\r\n \"2603:1000:104:801::/123\",\r\n
+ \ \"2603:1000:104:c00::/123\",\r\n \"2603:1000:104:c01::/123\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\",\r\n \"2603:1010:304::280/123\",\r\n
+ \ \"2603:1010:304:1::200/121\",\r\n \"2603:1010:304:400::/123\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\",\r\n
+ \ \"2603:1020:705::320/123\",\r\n \"2603:1020:705::380/121\",\r\n
+ \ \"2603:1020:705:400::/123\",\r\n \"2603:1020:705:401::/123\",\r\n
+ \ \"2603:1020:705:800::/123\",\r\n \"2603:1020:705:801::/123\",\r\n
+ \ \"2603:1020:705:c00::/123\",\r\n \"2603:1020:705:c01::/123\",\r\n
+ \ \"2603:1020:805::320/123\",\r\n \"2603:1020:805::380/121\",\r\n
+ \ \"2603:1020:805:400::/123\",\r\n \"2603:1020:805:401::/123\",\r\n
+ \ \"2603:1020:805:800::/123\",\r\n \"2603:1020:805:801::/123\",\r\n
+ \ \"2603:1020:805:c00::/123\",\r\n \"2603:1020:805:c01::/123\",\r\n
+ \ \"2603:1020:905::280/123\",\r\n \"2603:1020:905:1::200/121\",\r\n
+ \ \"2603:1020:905:400::/123\",\r\n \"2603:1020:a04::320/123\",\r\n
+ \ \"2603:1020:a04::380/121\",\r\n \"2603:1020:a04:400::/123\",\r\n
+ \ \"2603:1020:a04:401::/123\",\r\n \"2603:1020:a04:800::/123\",\r\n
+ \ \"2603:1020:a04:801::/123\",\r\n \"2603:1020:a04:c00::/123\",\r\n
+ \ \"2603:1020:a04:c01::/123\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\",\r\n
+ \ \"2603:1020:c04::320/123\",\r\n \"2603:1020:c04::380/121\",\r\n
+ \ \"2603:1020:c04:400::/123\",\r\n \"2603:1020:c04:401::/123\",\r\n
+ \ \"2603:1020:c04:800::/123\",\r\n \"2603:1020:c04:801::/123\",\r\n
+ \ \"2603:1020:c04:c00::/123\",\r\n \"2603:1020:c04:c01::/123\",\r\n
+ \ \"2603:1020:d04::280/123\",\r\n \"2603:1020:d04:1::200/121\",\r\n
+ \ \"2603:1020:d04:400::/123\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\",\r\n
+ \ \"2603:1020:1004:1::520/123\",\r\n \"2603:1020:1004:1::580/121\",\r\n
+ \ \"2603:1020:1004:400::400/123\",\r\n \"2603:1020:1004:402::/123\",\r\n
+ \ \"2603:1020:1004:403::/123\",\r\n \"2603:1020:1004:802::/123\",\r\n
+ \ \"2603:1020:1004:803::/123\",\r\n \"2603:1020:1004:c03::/123\",\r\n
+ \ \"2603:1020:1004:c04::/123\",\r\n \"2603:1020:1104::500/123\",\r\n
+ \ \"2603:1020:1104:1::300/121\",\r\n \"2603:1020:1104:400::420/123\",\r\n
+ \ \"2603:1020:1104:402::/123\",\r\n \"2603:1030:f:1::280/123\",\r\n
+ \ \"2603:1030:f:2::200/121\",\r\n \"2603:1030:f:402::/122\",\r\n
+ \ \"2603:1030:f:403::/122\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\",\r\n \"2603:1030:104::320/123\",\r\n
+ \ \"2603:1030:104::380/121\",\r\n \"2603:1030:104:400::/123\",\r\n
+ \ \"2603:1030:104:401::/123\",\r\n \"2603:1030:107:1::380/123\",\r\n
+ \ \"2603:1030:107:401::40/122\",\r\n \"2603:1030:107:402::40/123\",\r\n
+ \ \"2603:1030:210::320/123\",\r\n \"2603:1030:210::380/121\",\r\n
+ \ \"2603:1030:210:400::/123\",\r\n \"2603:1030:210:401::/123\",\r\n
+ \ \"2603:1030:210:800::/123\",\r\n \"2603:1030:210:801::/123\",\r\n
+ \ \"2603:1030:210:c00::/123\",\r\n \"2603:1030:210:c01::/123\",\r\n
+ \ \"2603:1030:40b:2::200/123\",\r\n \"2603:1030:40b:2::280/121\",\r\n
+ \ \"2603:1030:40b:402::/122\",\r\n \"2603:1030:40b:403::/122\",\r\n
+ \ \"2603:1030:40b:802::/122\",\r\n \"2603:1030:40b:803::/122\",\r\n
+ \ \"2603:1030:40b:c02::/122\",\r\n \"2603:1030:40b:c03::/122\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\",\r\n
+ \ \"2603:1030:504::520/123\",\r\n \"2603:1030:504::580/121\",\r\n
+ \ \"2603:1030:504:400::/123\",\r\n \"2603:1030:504:401::/123\",\r\n
+ \ \"2603:1030:504:800::/123\",\r\n \"2603:1030:504:801::/123\",\r\n
+ \ \"2603:1030:504:c00::/123\",\r\n \"2603:1030:504:c01::/123\",\r\n
+ \ \"2603:1030:608::280/123\",\r\n \"2603:1030:608:1::200/121\",\r\n
+ \ \"2603:1030:608:400::/123\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\",\r\n \"2603:1030:a07::280/123\",\r\n
+ \ \"2603:1030:a07:1::200/121\",\r\n \"2603:1030:a07:400::/123\",\r\n
+ \ \"2603:1030:b04::280/123\",\r\n \"2603:1030:b04:1::200/121\",\r\n
+ \ \"2603:1030:b04:400::/123\",\r\n \"2603:1030:c06:2::200/123\",\r\n
+ \ \"2603:1030:c06:2::280/121\",\r\n \"2603:1030:c06:401::/123\",\r\n
+ \ \"2603:1030:c06:402::/123\",\r\n \"2603:1030:c06:800::/123\",\r\n
+ \ \"2603:1030:c06:801::/123\",\r\n \"2603:1030:c06:c00::/123\",\r\n
+ \ \"2603:1030:c06:c01::/123\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\",\r\n
+ \ \"2603:1040:5::420/123\",\r\n \"2603:1040:5::480/121\",\r\n
+ \ \"2603:1040:5:400::/123\",\r\n \"2603:1040:5:401::/123\",\r\n
+ \ \"2603:1040:5:800::/123\",\r\n \"2603:1040:5:801::/123\",\r\n
+ \ \"2603:1040:5:c00::/123\",\r\n \"2603:1040:5:c01::/123\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\",\r\n
+ \ \"2603:1040:407::320/123\",\r\n \"2603:1040:407::380/121\",\r\n
+ \ \"2603:1040:407:400::/123\",\r\n \"2603:1040:407:401::/123\",\r\n
+ \ \"2603:1040:407:800::/123\",\r\n \"2603:1040:407:801::/123\",\r\n
+ \ \"2603:1040:407:c00::/123\",\r\n \"2603:1040:407:c01::/123\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\",\r\n
+ \ \"2603:1040:904::320/123\",\r\n \"2603:1040:904::380/121\",\r\n
+ \ \"2603:1040:904:400::/123\",\r\n \"2603:1040:904:401::/123\",\r\n
+ \ \"2603:1040:904:800::/123\",\r\n \"2603:1040:904:801::/123\",\r\n
+ \ \"2603:1040:904:c00::/123\",\r\n \"2603:1040:904:c01::/123\",\r\n
+ \ \"2603:1040:a06::420/123\",\r\n \"2603:1040:a06::480/121\",\r\n
+ \ \"2603:1040:a06:400::/123\",\r\n \"2603:1040:a06:401::/123\",\r\n
+ \ \"2603:1040:a06:800::/123\",\r\n \"2603:1040:a06:801::/123\",\r\n
+ \ \"2603:1040:a06:c00::/123\",\r\n \"2603:1040:a06:c01::/123\",\r\n
+ \ \"2603:1040:b04::280/123\",\r\n \"2603:1040:b04:1::200/121\",\r\n
+ \ \"2603:1040:b04:400::/123\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\",\r\n \"2603:1040:d04:1::520/123\",\r\n
+ \ \"2603:1040:d04:1::580/121\",\r\n \"2603:1040:d04:400::400/123\",\r\n
+ \ \"2603:1040:d04:402::/123\",\r\n \"2603:1040:d04:403::/123\",\r\n
+ \ \"2603:1040:d04:802::/123\",\r\n \"2603:1040:d04:803::/123\",\r\n
+ \ \"2603:1040:d04:c03::/123\",\r\n \"2603:1040:d04:c04::/123\",\r\n
+ \ \"2603:1040:e05::/123\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\",\r\n \"2603:1040:1104::500/123\",\r\n
+ \ \"2603:1040:1104:1::300/121\",\r\n \"2603:1040:1104:400::440/123\",\r\n
+ \ \"2603:1040:1104:402::/123\",\r\n \"2603:1050:6::320/123\",\r\n
+ \ \"2603:1050:6::380/121\",\r\n \"2603:1050:6:400::/123\",\r\n
+ \ \"2603:1050:6:401::/123\",\r\n \"2603:1050:6:800::/123\",\r\n
+ \ \"2603:1050:6:801::/123\",\r\n \"2603:1050:6:c00::/122\",\r\n
+ \ \"2603:1050:6:c01::/122\",\r\n \"2603:1050:403:1::200/123\",\r\n
+ \ \"2603:1050:403:1::280/121\",\r\n \"2603:1050:403:402::/123\",\r\n
+ \ \"2603:1050:403:403::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral\",\r\n \"id\": \"Sql.AustraliaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n \"20.36.105.32/29\",\r\n
+ \ \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n \"20.53.48.192/26\",\r\n
+ \ \"2603:1010:304::280/123\",\r\n \"2603:1010:304:1::200/121\",\r\n
+ \ \"2603:1010:304:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral2\",\r\n \"id\": \"Sql.AustraliaCentral2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n \"20.36.113.32/29\",\r\n
+ \ \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n \"20.53.56.128/26\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaEast\",\r\n \"id\": \"Sql.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"20.53.46.128/25\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.126.228.153/32\",\r\n
+ \ \"40.126.230.223/32\",\r\n \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n
+ \ \"40.126.250.24/32\",\r\n \"52.237.219.227/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Sql.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.70.148.251/32\",\r\n
+ \ \"13.70.155.163/32\",\r\n \"13.73.109.251/32\",\r\n \"13.77.7.78/32\",\r\n
+ \ \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n \"13.77.49.32/29\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n \"104.46.183.0/26\",\r\n
+ \ \"191.239.189.48/32\",\r\n \"191.239.192.109/32\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.BrazilSouth\",\r\n \"id\": \"Sql.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n
+ \ \"104.41.13.233/32\",\r\n \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n
+ \ \"104.41.57.82/32\",\r\n \"104.41.59.170/32\",\r\n \"191.233.200.0/27\",\r\n
+ \ \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n \"191.234.142.160/27\",\r\n
+ \ \"191.234.142.192/27\",\r\n \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n
+ \ \"191.234.145.0/27\",\r\n \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n
+ \ \"2603:1050:6::320/123\",\r\n \"2603:1050:6::380/121\",\r\n
+ \ \"2603:1050:6:400::/123\",\r\n \"2603:1050:6:401::/123\",\r\n
+ \ \"2603:1050:6:800::/123\",\r\n \"2603:1050:6:801::/123\",\r\n
+ \ \"2603:1050:6:c00::/122\",\r\n \"2603:1050:6:c01::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CanadaCentral\",\r\n
+ \ \"id\": \"Sql.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n
+ \ \"20.38.145.0/27\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n
+ \ \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n \"52.228.39.117/32\",\r\n
+ \ \"52.237.28.86/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CanadaEast\",\r\n \"id\": \"Sql.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n \"40.69.105.32/29\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"52.139.106.192/26\",\r\n
+ \ \"52.139.107.0/26\",\r\n \"52.229.122.195/32\",\r\n \"52.229.123.147/32\",\r\n
+ \ \"52.229.124.23/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CentralIndia\",\r\n
+ \ \"id\": \"Sql.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n
+ \ \"40.80.49.0/27\",\r\n \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"2603:1040:a06::420/123\",\r\n
+ \ \"2603:1040:a06::480/121\",\r\n \"2603:1040:a06:400::/123\",\r\n
+ \ \"2603:1040:a06:401::/123\",\r\n \"2603:1040:a06:800::/123\",\r\n
+ \ \"2603:1040:a06:801::/123\",\r\n \"2603:1040:a06:c00::/123\",\r\n
+ \ \"2603:1040:a06:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUS\",\r\n \"id\": \"Sql.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.215.62/32\",\r\n \"13.89.36.110/32\",\r\n
+ \ \"13.89.37.61/32\",\r\n \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n
+ \ \"13.89.168.0/26\",\r\n \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n
+ \ \"20.40.228.128/25\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"40.69.132.90/32\",\r\n
+ \ \"40.69.143.202/32\",\r\n \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.86.75.134/32\",\r\n \"40.113.200.119/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"52.165.184.67/32\",\r\n
+ \ \"52.173.205.59/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.182.136.0/26\",\r\n
+ \ \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n \"104.43.164.21/32\",\r\n
+ \ \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUSEUAP\",\r\n \"id\": \"Sql.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n \"20.46.11.128/26\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"52.180.176.154/31\",\r\n
+ \ \"52.180.183.226/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"2603:1030:f:1::280/123\",\r\n \"2603:1030:f:2::200/121\",\r\n
+ \ \"2603:1030:f:402::/122\",\r\n \"2603:1030:f:403::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastAsia\",\r\n
+ \ \"id\": \"Sql.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.99.102.124/32\",\r\n \"23.99.118.196/32\",\r\n \"52.175.33.150/32\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS\",\r\n
+ \ \"id\": \"Sql.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.62.132.160/27\",\r\n \"20.62.132.192/27\",\r\n
+ \ \"20.62.133.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"40.71.8.0/26\",\r\n \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n
+ \ \"40.71.9.192/26\",\r\n \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n
+ \ \"40.71.211.227/32\",\r\n \"40.71.226.18/32\",\r\n \"40.76.2.172/32\",\r\n
+ \ \"40.76.26.90/32\",\r\n \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n
+ \ \"40.76.66.9/32\",\r\n \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n
+ \ \"40.76.219.185/32\",\r\n \"40.78.224.0/26\",\r\n \"40.78.224.128/26\",\r\n
+ \ \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n \"40.79.152.0/26\",\r\n
+ \ \"40.79.152.192/26\",\r\n \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n
+ \ \"40.114.40.118/32\",\r\n \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n
+ \ \"40.114.46.128/32\",\r\n \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.121.143.204/32\",\r\n \"40.121.149.49/32\",\r\n
+ \ \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.179.16.95/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.45.158.30/32\",\r\n \"137.135.109.63/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.238.6.43/32\",\r\n \"191.238.6.44/31\",\r\n
+ \ \"191.238.6.46/32\",\r\n \"2603:1030:210::320/123\",\r\n
+ \ \"2603:1030:210::380/121\",\r\n \"2603:1030:210:400::/123\",\r\n
+ \ \"2603:1030:210:401::/123\",\r\n \"2603:1030:210:800::/123\",\r\n
+ \ \"2603:1030:210:801::/123\",\r\n \"2603:1030:210:c00::/123\",\r\n
+ \ \"2603:1030:210:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2\",\r\n \"id\": \"Sql.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.22.44/32\",\r\n \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n
+ \ \"20.62.58.128/25\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.70.144.0/26\",\r\n \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.84.5.64/32\",\r\n \"40.84.54.249/32\",\r\n
+ \ \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n \"52.167.105.0/26\",\r\n
+ \ \"52.167.117.226/32\",\r\n \"52.177.185.181/32\",\r\n \"52.177.197.103/32\",\r\n
+ \ \"52.177.200.215/32\",\r\n \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n
+ \ \"52.179.167.70/32\",\r\n \"52.179.178.184/32\",\r\n \"52.184.192.175/32\",\r\n
+ \ \"52.184.231.0/32\",\r\n \"52.225.222.124/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS2EUAP\",\r\n
+ \ \"id\": \"Sql.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.51.17.160/27\",\r\n
+ \ \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n \"40.74.144.0/27\",\r\n
+ \ \"40.74.144.32/29\",\r\n \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n
+ \ \"52.138.89.0/27\",\r\n \"52.138.89.32/29\",\r\n \"52.225.188.46/32\",\r\n
+ \ \"52.225.188.113/32\",\r\n \"2603:1030:40b:2::200/123\",\r\n
+ \ \"2603:1030:40b:2::280/121\",\r\n \"2603:1030:40b:402::/122\",\r\n
+ \ \"2603:1030:40b:403::/122\",\r\n \"2603:1030:40b:802::/122\",\r\n
+ \ \"2603:1030:40b:803::/122\",\r\n \"2603:1030:40b:c02::/122\",\r\n
+ \ \"2603:1030:40b:c03::/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2Stage\",\r\n \"id\": \"Sql.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.31.224/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceCentral\",\r\n \"id\": \"Sql.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.47.192/26\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"51.138.210.0/26\",\r\n \"2603:1020:805::320/123\",\r\n
+ \ \"2603:1020:805::380/121\",\r\n \"2603:1020:805:400::/123\",\r\n
+ \ \"2603:1020:805:401::/123\",\r\n \"2603:1020:805:800::/123\",\r\n
+ \ \"2603:1020:805:801::/123\",\r\n \"2603:1020:805:c00::/123\",\r\n
+ \ \"2603:1020:805:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceSouth\",\r\n \"id\": \"Sql.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.176.0/27\",\r\n \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n
+ \ \"40.79.177.32/29\",\r\n \"52.136.185.0/25\",\r\n \"2603:1020:905::280/123\",\r\n
+ \ \"2603:1020:905:1::200/121\",\r\n \"2603:1020:905:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyNorth\",\r\n
+ \ \"id\": \"Sql.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"2603:1020:d04::280/123\",\r\n
+ \ \"2603:1020:d04:1::200/121\",\r\n \"2603:1020:d04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyWestCentral\",\r\n
+ \ \"id\": \"Sql.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"2603:1020:c04::320/123\",\r\n
+ \ \"2603:1020:c04::380/121\",\r\n \"2603:1020:c04:400::/123\",\r\n
+ \ \"2603:1020:c04:401::/123\",\r\n \"2603:1020:c04:800::/123\",\r\n
+ \ \"2603:1020:c04:801::/123\",\r\n \"2603:1020:c04:c00::/123\",\r\n
+ \ \"2603:1020:c04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanEast\",\r\n \"id\": \"Sql.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n \"13.78.104.32/29\",\r\n
+ \ \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n \"20.191.165.160/27\",\r\n
+ \ \"20.191.165.192/27\",\r\n \"20.191.166.0/26\",\r\n \"23.102.69.95/32\",\r\n
+ \ \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n \"40.79.184.0/27\",\r\n
+ \ \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n \"40.79.192.0/27\",\r\n
+ \ \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n \"52.185.152.149/32\",\r\n
+ \ \"52.243.32.19/32\",\r\n \"52.243.43.186/32\",\r\n \"104.41.168.103/32\",\r\n
+ \ \"104.41.169.34/32\",\r\n \"191.237.240.43/32\",\r\n \"191.237.240.44/32\",\r\n
+ \ \"191.237.240.46/32\",\r\n \"2603:1040:407::320/123\",\r\n
+ \ \"2603:1040:407::380/121\",\r\n \"2603:1040:407:400::/123\",\r\n
+ \ \"2603:1040:407:401::/123\",\r\n \"2603:1040:407:800::/123\",\r\n
+ \ \"2603:1040:407:801::/123\",\r\n \"2603:1040:407:c00::/123\",\r\n
+ \ \"2603:1040:407:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanWest\",\r\n \"id\": \"Sql.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"104.214.148.156/32\",\r\n \"104.214.150.17/32\",\r\n
+ \ \"191.238.68.11/32\",\r\n \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaCentral\",\r\n \"id\": \"Sql.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n \"20.44.25.0/27\",\r\n
+ \ \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n \"20.194.65.0/27\",\r\n
+ \ \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaSouth\",\r\n \"id\": \"Sql.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.112.160/27\",\r\n \"52.231.144.0/27\",\r\n
+ \ \"52.231.145.0/27\",\r\n \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n
+ \ \"52.231.206.133/32\",\r\n \"2603:1040:e05::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUS\",\r\n
+ \ \"id\": \"Sql.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"23.96.178.199/32\",\r\n
+ \ \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n \"23.96.205.215/32\",\r\n
+ \ \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n \"23.96.247.75/32\",\r\n
+ \ \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n \"23.98.55.75/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"52.162.104.0/26\",\r\n \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n
+ \ \"52.162.125.1/32\",\r\n \"52.162.241.250/32\",\r\n \"65.52.208.91/32\",\r\n
+ \ \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n \"65.52.218.82/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"2603:1030:608::280/123\",\r\n
+ \ \"2603:1030:608:1::200/121\",\r\n \"2603:1030:608:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUSStage\",\r\n
+ \ \"id\": \"Sql.NorthCentralUSStage\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"168.62.115.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.NorthEurope\",\r\n \"id\": \"Sql.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"23.102.16.130/32\",\r\n
+ \ \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n \"23.102.52.155/32\",\r\n
+ \ \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.113.14.53/32\",\r\n \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n
+ \ \"40.113.20.38/32\",\r\n \"40.113.93.91/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"52.138.224.0/26\",\r\n
+ \ \"52.138.224.128/26\",\r\n \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n
+ \ \"52.138.229.72/29\",\r\n \"52.146.133.128/25\",\r\n \"65.52.225.245/32\",\r\n
+ \ \"65.52.226.209/32\",\r\n \"104.41.202.30/32\",\r\n \"104.41.205.195/32\",\r\n
+ \ \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n \"104.41.211.98/32\",\r\n
+ \ \"137.135.186.126/32\",\r\n \"137.135.189.158/32\",\r\n
+ \ \"137.135.205.85/32\",\r\n \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n
+ \ \"138.91.58.227/32\",\r\n \"191.235.170.58/32\",\r\n \"191.235.193.75/32\",\r\n
+ \ \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n \"191.235.193.139/32\",\r\n
+ \ \"191.235.193.140/31\",\r\n \"191.235.209.79/32\",\r\n
+ \ \"191.237.219.202/32\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayEast\",\r\n \"id\": \"Sql.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.96.0/27\",\r\n \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n
+ \ \"51.120.104.0/27\",\r\n \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n
+ \ \"51.120.208.0/27\",\r\n \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n
+ \ \"51.120.232.192/26\",\r\n \"51.120.233.0/26\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayWest\",\r\n \"id\": \"Sql.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n
+ \ \"51.13.137.64/26\",\r\n \"51.120.216.0/27\",\r\n \"51.120.217.0/27\",\r\n
+ \ \"51.120.217.32/29\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Sql.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.0/27\",\r\n
+ \ \"102.37.160.64/26\",\r\n \"102.133.120.0/27\",\r\n \"102.133.120.32/29\",\r\n
+ \ \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n \"102.133.152.32/29\",\r\n
+ \ \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n \"102.133.248.0/27\",\r\n
+ \ \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n \"2603:1000:104::640/123\",\r\n
+ \ \"2603:1000:104::680/121\",\r\n \"2603:1000:104:400::/123\",\r\n
+ \ \"2603:1000:104:401::/123\",\r\n \"2603:1000:104:800::/123\",\r\n
+ \ \"2603:1000:104:801::/123\",\r\n \"2603:1000:104:c00::/123\",\r\n
+ \ \"2603:1000:104:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthAfricaWest\",\r\n \"id\": \"Sql.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.80.96/27\",\r\n
+ \ \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"2603:1000:4::280/123\",\r\n
+ \ \"2603:1000:4:1::200/121\",\r\n \"2603:1000:4:400::/123\",\r\n
+ \ \"2603:1000:4:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthCentralUS\",\r\n \"id\": \"Sql.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.84.223.76/32\",\r\n \"13.85.65.48/32\",\r\n
+ \ \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n \"20.45.120.0/27\",\r\n
+ \ \"20.45.121.0/27\",\r\n \"20.45.121.32/29\",\r\n \"20.49.88.0/27\",\r\n
+ \ \"20.49.88.32/29\",\r\n \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n
+ \ \"20.65.132.160/27\",\r\n \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n
+ \ \"23.98.162.75/32\",\r\n \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n
+ \ \"23.98.170.75/32\",\r\n \"23.98.170.76/31\",\r\n \"23.102.172.251/32\",\r\n
+ \ \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n \"23.102.179.187/32\",\r\n
+ \ \"40.74.254.156/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"52.171.56.10/32\",\r\n \"52.183.250.62/32\",\r\n
+ \ \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n \"104.214.17.0/26\",\r\n
+ \ \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n \"104.214.73.137/32\",\r\n
+ \ \"104.214.78.242/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SoutheastAsia\",\r\n \"id\": \"Sql.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n \"13.67.17.0/26\",\r\n
+ \ \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n \"13.67.59.217/32\",\r\n
+ \ \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n \"20.195.65.32/27\",\r\n
+ \ \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"40.78.232.0/26\",\r\n
+ \ \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n \"52.187.15.214/32\",\r\n
+ \ \"52.187.76.130/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n \"111.221.106.161/32\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"168.63.175.68/32\",\r\n \"2603:1040:5::420/123\",\r\n
+ \ \"2603:1040:5::480/121\",\r\n \"2603:1040:5:400::/123\",\r\n
+ \ \"2603:1040:5:401::/123\",\r\n \"2603:1040:5:800::/123\",\r\n
+ \ \"2603:1040:5:801::/123\",\r\n \"2603:1040:5:c00::/123\",\r\n
+ \ \"2603:1040:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthIndia\",\r\n \"id\": \"Sql.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.192.0/27\",\r\n \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n
+ \ \"40.78.193.32/29\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SwitzerlandNorth\",\r\n \"id\": \"Sql.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"2603:1020:a04::320/123\",\r\n \"2603:1020:a04::380/121\",\r\n
+ \ \"2603:1020:a04:400::/123\",\r\n \"2603:1020:a04:401::/123\",\r\n
+ \ \"2603:1020:a04:800::/123\",\r\n \"2603:1020:a04:801::/123\",\r\n
+ \ \"2603:1020:a04:c00::/123\",\r\n \"2603:1020:a04:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SwitzerlandWest\",\r\n
+ \ \"id\": \"Sql.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.107.152.0/27\",\r\n
+ \ \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n \"51.107.250.64/26\",\r\n
+ \ \"51.107.250.128/26\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAECentral\",\r\n
+ \ \"id\": \"Sql.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.37.71.64/26\",\r\n
+ \ \"20.37.71.128/26\",\r\n \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n
+ \ \"20.37.73.64/27\",\r\n \"20.37.73.96/29\",\r\n \"2603:1040:b04::280/123\",\r\n
+ \ \"2603:1040:b04:1::200/121\",\r\n \"2603:1040:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAENorth\",\r\n
+ \ \"id\": \"Sql.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.64/26\",\r\n
+ \ \"20.38.143.128/26\",\r\n \"20.38.152.24/29\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"65.52.248.0/27\",\r\n
+ \ \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n \"2603:1040:904::320/123\",\r\n
+ \ \"2603:1040:904::380/121\",\r\n \"2603:1040:904:400::/123\",\r\n
+ \ \"2603:1040:904:401::/123\",\r\n \"2603:1040:904:800::/123\",\r\n
+ \ \"2603:1040:904:801::/123\",\r\n \"2603:1040:904:c00::/123\",\r\n
+ \ \"2603:1040:904:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKNorth\",\r\n \"id\": \"Sql.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"51.142.211.129/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.UKSouth\",\r\n \"id\": \"Sql.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.140.77.9/32\",\r\n \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n
+ \ \"51.140.144.0/27\",\r\n \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n
+ \ \"51.140.180.9/32\",\r\n \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n
+ \ \"51.140.184.12/32\",\r\n \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n
+ \ \"51.143.212.64/26\",\r\n \"2603:1020:705::320/123\",\r\n
+ \ \"2603:1020:705::380/121\",\r\n \"2603:1020:705:400::/123\",\r\n
+ \ \"2603:1020:705:401::/123\",\r\n \"2603:1020:705:800::/123\",\r\n
+ \ \"2603:1020:705:801::/123\",\r\n \"2603:1020:705:c00::/123\",\r\n
+ \ \"2603:1020:705:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKWest\",\r\n \"id\": \"Sql.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.58.66.128/25\",\r\n \"51.140.208.64/27\",\r\n
+ \ \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n \"51.140.209.32/29\",\r\n
+ \ \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n \"51.141.15.53/32\",\r\n
+ \ \"51.141.25.212/32\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestCentralUS\",\r\n
+ \ \"id\": \"Sql.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.78.144.57/32\",\r\n
+ \ \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n \"13.78.151.189/32\",\r\n
+ \ \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n \"13.78.178.151/32\",\r\n
+ \ \"13.78.248.32/27\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"2603:1030:b04::280/123\",\r\n
+ \ \"2603:1030:b04:1::200/121\",\r\n \"2603:1030:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestEurope\",\r\n
+ \ \"id\": \"Sql.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"20.61.99.192/26\",\r\n \"20.61.102.0/26\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.101.64.10/32\",\r\n \"40.68.37.158/32\",\r\n
+ \ \"40.68.215.206/32\",\r\n \"40.68.220.16/32\",\r\n \"40.74.51.145/32\",\r\n
+ \ \"40.74.53.36/32\",\r\n \"40.74.60.91/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.118.12.208/32\",\r\n \"52.166.76.0/32\",\r\n \"52.166.131.195/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"104.40.155.247/32\",\r\n
+ \ \"104.40.168.64/26\",\r\n \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n
+ \ \"104.40.169.32/29\",\r\n \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n
+ \ \"104.40.220.28/32\",\r\n \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n
+ \ \"104.40.237.111/32\",\r\n \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.47.157.97/32\",\r\n
+ \ \"137.116.203.91/32\",\r\n \"168.63.13.214/32\",\r\n \"168.63.98.91/32\",\r\n
+ \ \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestIndia\",\r\n \"id\": \"Sql.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n
+ \ \"104.211.144.0/27\",\r\n \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n
+ \ \"104.211.145.32/29\",\r\n \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n
+ \ \"104.211.190.46/32\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestUS\",\r\n
+ \ \"id\": \"Sql.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.86.216.0/25\",\r\n
+ \ \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n \"13.86.217.0/25\",\r\n
+ \ \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n \"13.86.217.224/29\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.66.3.64/26\",\r\n \"20.66.3.128/26\",\r\n
+ \ \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n \"23.99.10.185/32\",\r\n
+ \ \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n \"23.99.34.78/32\",\r\n
+ \ \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n \"23.99.57.14/32\",\r\n
+ \ \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n \"23.99.90.75/32\",\r\n
+ \ \"23.99.91.130/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.83.178.165/32\",\r\n
+ \ \"40.83.186.249/32\",\r\n \"40.112.139.250/32\",\r\n \"40.112.240.0/27\",\r\n
+ \ \"40.112.246.0/27\",\r\n \"40.118.129.167/32\",\r\n \"40.118.170.1/32\",\r\n
+ \ \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n \"40.118.249.123/32\",\r\n
+ \ \"40.118.250.19/32\",\r\n \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n
+ \ \"104.40.54.130/32\",\r\n \"104.40.82.151/32\",\r\n \"104.42.120.235/32\",\r\n
+ \ \"104.42.127.95/32\",\r\n \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n
+ \ \"104.42.192.190/32\",\r\n \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n
+ \ \"104.42.237.198/32\",\r\n \"104.42.238.205/32\",\r\n \"104.210.32.128/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n
+ \ \"138.91.240.14/32\",\r\n \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n
+ \ \"138.91.251.139/32\",\r\n \"191.236.119.31/32\",\r\n \"191.239.12.154/32\",\r\n
+ \ \"2603:1030:a07::280/123\",\r\n \"2603:1030:a07:1::200/121\",\r\n
+ \ \"2603:1030:a07:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestUS2\",\r\n \"id\": \"Sql.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.66.136.0/26\",\r\n
+ \ \"13.66.136.192/29\",\r\n \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n
+ \ \"13.66.229.222/32\",\r\n \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n
+ \ \"13.66.230.64/32\",\r\n \"13.66.230.103/32\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.229.17.93/32\",\r\n \"52.246.251.248/32\",\r\n
+ \ \"2603:1030:c06:2::200/123\",\r\n \"2603:1030:c06:2::280/121\",\r\n
+ \ \"2603:1030:c06:401::/123\",\r\n \"2603:1030:c06:402::/123\",\r\n
+ \ \"2603:1030:c06:800::/123\",\r\n \"2603:1030:c06:801::/123\",\r\n
+ \ \"2603:1030:c06:c00::/123\",\r\n \"2603:1030:c06:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"SqlManagement\",\r\n
+ \ \"id\": \"SqlManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"SqlManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.155.40/32\",\r\n \"13.66.140.96/27\",\r\n
+ \ \"13.66.141.192/27\",\r\n \"13.67.8.192/27\",\r\n \"13.67.10.32/27\",\r\n
+ \ \"13.69.64.96/27\",\r\n \"13.69.67.0/27\",\r\n \"13.69.106.96/27\",\r\n
+ \ \"13.69.107.32/27\",\r\n \"13.69.227.96/27\",\r\n \"13.69.229.192/27\",\r\n
+ \ \"13.70.72.160/27\",\r\n \"13.70.73.224/27\",\r\n \"13.71.119.167/32\",\r\n
+ \ \"13.71.123.234/32\",\r\n \"13.71.170.160/27\",\r\n \"13.71.173.96/27\",\r\n
+ \ \"13.71.195.0/27\",\r\n \"13.71.196.96/27\",\r\n \"13.73.240.192/27\",\r\n
+ \ \"13.73.242.0/27\",\r\n \"13.73.249.176/28\",\r\n \"13.74.107.96/27\",\r\n
+ \ \"13.74.107.224/27\",\r\n \"13.75.36.32/27\",\r\n \"13.75.39.32/27\",\r\n
+ \ \"13.77.50.192/27\",\r\n \"13.77.53.0/27\",\r\n \"13.78.106.224/27\",\r\n
+ \ \"13.78.109.64/27\",\r\n \"13.78.181.246/32\",\r\n \"13.78.182.82/32\",\r\n
+ \ \"13.84.52.76/32\",\r\n \"13.86.219.96/27\",\r\n \"13.87.39.133/32\",\r\n
+ \ \"13.87.39.173/32\",\r\n \"13.87.56.192/27\",\r\n \"13.87.58.0/27\",\r\n
+ \ \"13.87.122.192/27\",\r\n \"13.87.124.0/27\",\r\n \"13.89.170.224/27\",\r\n
+ \ \"13.89.174.96/27\",\r\n \"13.92.242.41/32\",\r\n \"13.94.47.38/32\",\r\n
+ \ \"13.104.248.32/27\",\r\n \"13.104.248.96/27\",\r\n \"20.36.46.202/32\",\r\n
+ \ \"20.36.46.220/32\",\r\n \"20.36.75.75/32\",\r\n \"20.36.75.114/32\",\r\n
+ \ \"20.36.108.0/27\",\r\n \"20.36.108.64/27\",\r\n \"20.36.115.160/27\",\r\n
+ \ \"20.36.115.192/27\",\r\n \"20.36.123.0/28\",\r\n \"20.37.67.64/28\",\r\n
+ \ \"20.37.76.0/27\",\r\n \"20.37.76.64/27\",\r\n \"20.37.198.96/28\",\r\n
+ \ \"20.37.227.0/28\",\r\n \"20.38.87.208/28\",\r\n \"20.38.128.0/27\",\r\n
+ \ \"20.38.139.64/28\",\r\n \"20.38.146.192/27\",\r\n \"20.38.147.32/27\",\r\n
+ \ \"20.39.12.240/28\",\r\n \"20.40.200.176/28\",\r\n \"20.41.67.96/28\",\r\n
+ \ \"20.41.197.32/28\",\r\n \"20.42.131.34/31\",\r\n \"20.42.230.96/28\",\r\n
+ \ \"20.43.43.176/28\",\r\n \"20.43.70.80/28\",\r\n \"20.43.120.192/27\",\r\n
+ \ \"20.44.4.0/26\",\r\n \"20.44.8.128/27\",\r\n \"20.44.16.160/27\",\r\n
+ \ \"20.44.26.192/27\",\r\n \"20.44.27.160/27\",\r\n \"20.45.75.228/32\",\r\n
+ \ \"20.45.75.230/32\",\r\n \"20.45.114.208/28\",\r\n \"20.45.122.192/27\",\r\n
+ \ \"20.45.126.32/27\",\r\n \"20.45.197.240/28\",\r\n \"20.49.83.160/27\",\r\n
+ \ \"20.49.83.192/27\",\r\n \"20.49.91.160/27\",\r\n \"20.49.93.96/27\",\r\n
+ \ \"20.49.99.48/28\",\r\n \"20.49.109.64/28\",\r\n \"20.49.113.16/28\",\r\n
+ \ \"20.49.120.48/28\",\r\n \"20.50.1.224/28\",\r\n \"20.72.21.16/28\",\r\n
+ \ \"20.72.28.224/27\",\r\n \"20.72.30.128/27\",\r\n \"20.150.165.160/28\",\r\n
+ \ \"20.150.170.32/27\",\r\n \"20.150.170.128/27\",\r\n \"20.150.172.96/27\",\r\n
+ \ \"20.150.178.192/26\",\r\n \"20.150.186.192/26\",\r\n \"20.187.194.208/28\",\r\n
+ \ \"20.192.98.192/26\",\r\n \"20.192.165.192/28\",\r\n \"20.192.230.16/28\",\r\n
+ \ \"20.192.238.32/27\",\r\n \"20.192.238.64/27\",\r\n \"20.193.205.160/27\",\r\n
+ \ \"20.193.205.192/27\",\r\n \"20.194.67.128/26\",\r\n \"23.96.185.63/32\",\r\n
+ \ \"23.96.243.93/32\",\r\n \"23.97.120.24/32\",\r\n \"23.98.82.128/27\",\r\n
+ \ \"23.98.83.32/27\",\r\n \"23.98.104.144/28\",\r\n \"23.99.97.255/32\",\r\n
+ \ \"40.64.132.112/28\",\r\n \"40.65.124.161/32\",\r\n \"40.67.50.224/28\",\r\n
+ \ \"40.67.58.32/27\",\r\n \"40.67.60.32/27\",\r\n \"40.69.106.192/27\",\r\n
+ \ \"40.69.108.0/27\",\r\n \"40.69.161.215/32\",\r\n \"40.70.72.228/32\",\r\n
+ \ \"40.70.146.96/27\",\r\n \"40.70.148.64/27\",\r\n \"40.71.10.224/27\",\r\n
+ \ \"40.71.13.192/27\",\r\n \"40.71.215.148/32\",\r\n \"40.74.100.192/27\",\r\n
+ \ \"40.74.101.224/27\",\r\n \"40.74.147.0/27\",\r\n \"40.74.147.96/27\",\r\n
+ \ \"40.74.147.128/27\",\r\n \"40.74.254.227/32\",\r\n \"40.75.34.64/27\",\r\n
+ \ \"40.75.35.0/27\",\r\n \"40.78.194.192/27\",\r\n \"40.78.196.0/27\",\r\n
+ \ \"40.78.203.128/27\",\r\n \"40.78.203.192/27\",\r\n \"40.78.226.224/27\",\r\n
+ \ \"40.78.229.0/27\",\r\n \"40.78.234.64/27\",\r\n \"40.78.234.224/27\",\r\n
+ \ \"40.78.242.192/27\",\r\n \"40.78.243.128/27\",\r\n \"40.78.250.128/27\",\r\n
+ \ \"40.78.251.64/27\",\r\n \"40.79.32.162/32\",\r\n \"40.79.130.160/27\",\r\n
+ \ \"40.79.132.0/27\",\r\n \"40.79.138.64/27\",\r\n \"40.79.138.160/27\",\r\n
+ \ \"40.79.146.64/27\",\r\n \"40.79.146.160/27\",\r\n \"40.79.154.0/27\",\r\n
+ \ \"40.79.154.224/27\",\r\n \"40.79.156.0/27\",\r\n \"40.79.162.64/27\",\r\n
+ \ \"40.79.162.160/27\",\r\n \"40.79.170.160/27\",\r\n \"40.79.171.0/27\",\r\n
+ \ \"40.79.178.192/27\",\r\n \"40.79.179.224/27\",\r\n \"40.79.186.96/27\",\r\n
+ \ \"40.79.187.128/27\",\r\n \"40.79.194.0/27\",\r\n \"40.79.195.128/27\",\r\n
+ \ \"40.80.50.192/27\",\r\n \"40.80.51.32/27\",\r\n \"40.80.62.0/28\",\r\n
+ \ \"40.80.172.32/28\",\r\n \"40.89.20.144/28\",\r\n \"40.112.243.128/27\",\r\n
+ \ \"40.120.75.192/26\",\r\n \"40.123.207.224/32\",\r\n \"40.123.219.239/32\",\r\n
+ \ \"40.126.238.47/32\",\r\n \"40.127.3.232/32\",\r\n \"51.12.42.0/28\",\r\n
+ \ \"51.12.98.32/27\",\r\n \"51.12.98.128/27\",\r\n \"51.12.194.0/28\",\r\n
+ \ \"51.12.202.32/27\",\r\n \"51.12.202.128/27\",\r\n \"51.12.226.192/26\",\r\n
+ \ \"51.12.234.192/26\",\r\n \"51.104.8.192/27\",\r\n \"51.104.28.240/28\",\r\n
+ \ \"51.105.66.192/27\",\r\n \"51.105.67.128/27\",\r\n \"51.105.74.192/27\",\r\n
+ \ \"51.105.75.32/27\",\r\n \"51.105.83.0/28\",\r\n \"51.105.90.160/28\",\r\n
+ \ \"51.107.51.0/28\",\r\n \"51.107.58.32/27\",\r\n \"51.107.60.0/27\",\r\n
+ \ \"51.107.147.0/28\",\r\n \"51.107.154.32/27\",\r\n \"51.107.156.0/27\",\r\n
+ \ \"51.116.49.144/28\",\r\n \"51.116.58.32/27\",\r\n \"51.116.60.0/27\",\r\n
+ \ \"51.116.145.144/28\",\r\n \"51.116.154.96/27\",\r\n \"51.116.156.0/27\",\r\n
+ \ \"51.116.242.192/26\",\r\n \"51.116.243.32/27\",\r\n \"51.116.250.192/27\",\r\n
+ \ \"51.116.253.96/27\",\r\n \"51.120.43.64/28\",\r\n \"51.120.98.32/27\",\r\n
+ \ \"51.120.100.0/27\",\r\n \"51.120.106.192/26\",\r\n \"51.120.210.192/26\",\r\n
+ \ \"51.120.218.32/27\",\r\n \"51.120.218.128/27\",\r\n \"51.120.227.64/28\",\r\n
+ \ \"51.137.164.96/28\",\r\n \"51.140.121.92/32\",\r\n \"51.140.127.51/32\",\r\n
+ \ \"51.140.146.224/27\",\r\n \"51.140.210.224/27\",\r\n \"51.140.212.32/27\",\r\n
+ \ \"51.141.38.88/32\",\r\n \"51.141.39.175/32\",\r\n \"51.142.213.97/32\",\r\n
+ \ \"51.142.215.251/32\",\r\n \"51.143.195.0/28\",\r\n \"52.136.51.80/28\",\r\n
+ \ \"52.136.139.224/32\",\r\n \"52.136.140.157/32\",\r\n \"52.138.90.96/27\",\r\n
+ \ \"52.138.226.96/27\",\r\n \"52.138.226.224/27\",\r\n \"52.140.108.80/28\",\r\n
+ \ \"52.143.136.162/32\",\r\n \"52.143.139.82/32\",\r\n \"52.150.139.78/31\",\r\n
+ \ \"52.150.152.32/28\",\r\n \"52.162.107.128/27\",\r\n \"52.162.110.192/27\",\r\n
+ \ \"52.164.200.174/32\",\r\n \"52.165.237.178/32\",\r\n \"52.166.50.138/32\",\r\n
+ \ \"52.167.106.96/27\",\r\n \"52.167.106.224/27\",\r\n \"52.169.6.70/32\",\r\n
+ \ \"52.172.193.99/32\",\r\n \"52.172.204.185/32\",\r\n \"52.173.243.204/32\",\r\n
+ \ \"52.175.156.251/32\",\r\n \"52.182.138.224/27\",\r\n \"52.182.139.96/27\",\r\n
+ \ \"52.183.64.43/32\",\r\n \"52.185.145.40/32\",\r\n \"52.185.154.136/32\",\r\n
+ \ \"52.187.185.17/32\",\r\n \"52.225.130.171/32\",\r\n \"52.228.84.112/28\",\r\n
+ \ \"52.230.122.197/32\",\r\n \"52.231.18.160/27\",\r\n \"52.231.19.224/27\",\r\n
+ \ \"52.231.30.200/32\",\r\n \"52.231.34.21/32\",\r\n \"52.231.146.224/27\",\r\n
+ \ \"52.231.148.32/27\",\r\n \"52.231.202.76/32\",\r\n \"52.231.206.187/32\",\r\n
+ \ \"52.233.30.2/32\",\r\n \"52.233.38.82/32\",\r\n \"52.233.130.100/32\",\r\n
+ \ \"52.235.36.131/32\",\r\n \"52.236.186.96/27\",\r\n \"52.236.187.32/27\",\r\n
+ \ \"52.237.244.169/32\",\r\n \"52.242.36.170/32\",\r\n \"52.243.87.200/32\",\r\n
+ \ \"52.246.154.192/27\",\r\n \"52.246.155.32/27\",\r\n \"52.255.51.21/32\",\r\n
+ \ \"65.52.252.0/27\",\r\n \"65.52.252.64/27\",\r\n \"102.133.27.224/27\",\r\n
+ \ \"102.133.28.32/27\",\r\n \"102.133.58.208/28\",\r\n \"102.133.72.35/32\",\r\n
+ \ \"102.133.72.42/32\",\r\n \"102.133.122.192/27\",\r\n \"102.133.123.192/27\",\r\n
+ \ \"102.133.155.224/27\",\r\n \"102.133.156.32/27\",\r\n
+ \ \"102.133.160.35/32\",\r\n \"102.133.218.128/28\",\r\n
+ \ \"102.133.250.192/27\",\r\n \"102.133.251.32/27\",\r\n
+ \ \"104.42.96.175/32\",\r\n \"104.208.16.96/27\",\r\n \"104.208.144.96/27\",\r\n
+ \ \"104.211.81.160/27\",\r\n \"104.211.146.192/27\",\r\n
+ \ \"104.211.187.232/32\",\r\n \"104.214.19.0/27\",\r\n \"104.214.108.80/32\",\r\n
+ \ \"104.215.17.87/32\",\r\n \"191.232.163.58/32\",\r\n \"191.233.11.128/28\",\r\n
+ \ \"191.233.54.32/27\",\r\n \"191.233.54.192/27\",\r\n \"191.233.203.160/27\",\r\n
+ \ \"191.233.205.32/27\",\r\n \"191.234.136.64/28\",\r\n \"191.234.146.192/26\",\r\n
+ \ \"191.234.154.192/26\",\r\n \"2603:1000:4:402::380/122\",\r\n
+ \ \"2603:1000:104:402::380/122\",\r\n \"2603:1000:104:802::260/123\",\r\n
+ \ \"2603:1000:104:802::280/123\",\r\n \"2603:1000:104:c02::260/123\",\r\n
+ \ \"2603:1000:104:c02::280/123\",\r\n \"2603:1010:6:402::380/122\",\r\n
+ \ \"2603:1010:6:802::260/123\",\r\n \"2603:1010:6:802::280/123\",\r\n
+ \ \"2603:1010:6:c02::260/123\",\r\n \"2603:1010:6:c02::280/123\",\r\n
+ \ \"2603:1010:101:402::380/122\",\r\n \"2603:1010:304:402::380/122\",\r\n
+ \ \"2603:1010:404:402::380/122\",\r\n \"2603:1020:5:402::380/122\",\r\n
+ \ \"2603:1020:5:802::260/123\",\r\n \"2603:1020:5:802::280/123\",\r\n
+ \ \"2603:1020:5:c02::260/123\",\r\n \"2603:1020:5:c02::280/123\",\r\n
+ \ \"2603:1020:206:402::380/122\",\r\n \"2603:1020:206:802::260/123\",\r\n
+ \ \"2603:1020:206:802::280/123\",\r\n \"2603:1020:206:c02::260/123\",\r\n
+ \ \"2603:1020:206:c02::280/123\",\r\n \"2603:1020:305:402::380/122\",\r\n
+ \ \"2603:1020:405:402::380/122\",\r\n \"2603:1020:605:402::380/122\",\r\n
+ \ \"2603:1020:705:402::380/122\",\r\n \"2603:1020:705:802::260/123\",\r\n
+ \ \"2603:1020:705:802::280/123\",\r\n \"2603:1020:705:c02::260/123\",\r\n
+ \ \"2603:1020:705:c02::280/123\",\r\n \"2603:1020:805:402::380/122\",\r\n
+ \ \"2603:1020:805:802::260/123\",\r\n \"2603:1020:805:802::280/123\",\r\n
+ \ \"2603:1020:805:c02::260/123\",\r\n \"2603:1020:805:c02::280/123\",\r\n
+ \ \"2603:1020:905:402::380/122\",\r\n \"2603:1020:a04:402::380/122\",\r\n
+ \ \"2603:1020:a04:802::260/123\",\r\n \"2603:1020:a04:802::280/123\",\r\n
+ \ \"2603:1020:a04:c02::260/123\",\r\n \"2603:1020:a04:c02::280/123\",\r\n
+ \ \"2603:1020:b04:402::380/122\",\r\n \"2603:1020:c04:402::380/122\",\r\n
+ \ \"2603:1020:c04:802::260/123\",\r\n \"2603:1020:c04:802::280/123\",\r\n
+ \ \"2603:1020:c04:c02::260/123\",\r\n \"2603:1020:c04:c02::280/123\",\r\n
+ \ \"2603:1020:d04:402::380/122\",\r\n \"2603:1020:e04:3::400/123\",\r\n
+ \ \"2603:1020:e04:402::380/122\",\r\n \"2603:1020:e04:802::260/123\",\r\n
+ \ \"2603:1020:e04:802::280/123\",\r\n \"2603:1020:e04:c02::260/123\",\r\n
+ \ \"2603:1020:e04:c02::280/123\",\r\n \"2603:1020:f04:402::380/122\",\r\n
+ \ \"2603:1020:1004:1::500/123\",\r\n \"2603:1020:1004:400::200/122\",\r\n
+ \ \"2603:1020:1004:800::300/122\",\r\n \"2603:1020:1004:c02::2c0/122\",\r\n
+ \ \"2603:1020:1104:1::1e0/123\",\r\n \"2603:1020:1104:400::340/122\",\r\n
+ \ \"2603:1030:f:2::6e0/123\",\r\n \"2603:1030:f:400::b80/122\",\r\n
+ \ \"2603:1030:10:402::380/122\",\r\n \"2603:1030:10:802::260/123\",\r\n
+ \ \"2603:1030:10:802::280/123\",\r\n \"2603:1030:10:c02::260/123\",\r\n
+ \ \"2603:1030:10:c02::280/123\",\r\n \"2603:1030:104:402::380/122\",\r\n
+ \ \"2603:1030:107:1::220/123\",\r\n \"2603:1030:107:400::2c0/122\",\r\n
+ \ \"2603:1030:210:402::380/122\",\r\n \"2603:1030:210:802::260/123\",\r\n
+ \ \"2603:1030:210:802::280/123\",\r\n \"2603:1030:210:c02::260/123\",\r\n
+ \ \"2603:1030:210:c02::280/123\",\r\n \"2603:1030:40b:400::b80/122\",\r\n
+ \ \"2603:1030:40b:800::260/123\",\r\n \"2603:1030:40b:800::280/123\",\r\n
+ \ \"2603:1030:40b:c00::260/123\",\r\n \"2603:1030:40b:c00::280/123\",\r\n
+ \ \"2603:1030:40c:402::380/122\",\r\n \"2603:1030:40c:802::260/123\",\r\n
+ \ \"2603:1030:40c:802::280/123\",\r\n \"2603:1030:40c:c02::260/123\",\r\n
+ \ \"2603:1030:40c:c02::280/123\",\r\n \"2603:1030:504::500/123\",\r\n
+ \ \"2603:1030:504:402::200/122\",\r\n \"2603:1030:504:802::300/122\",\r\n
+ \ \"2603:1030:504:c02::2c0/122\",\r\n \"2603:1030:608:402::380/122\",\r\n
+ \ \"2603:1030:807:402::380/122\",\r\n \"2603:1030:807:802::260/123\",\r\n
+ \ \"2603:1030:807:802::280/123\",\r\n \"2603:1030:807:c02::260/123\",\r\n
+ \ \"2603:1030:807:c02::280/123\",\r\n \"2603:1030:a07:402::300/122\",\r\n
+ \ \"2603:1030:b04:402::380/122\",\r\n \"2603:1030:c06:400::b80/122\",\r\n
+ \ \"2603:1030:c06:802::260/123\",\r\n \"2603:1030:c06:802::280/123\",\r\n
+ \ \"2603:1030:c06:c02::260/123\",\r\n \"2603:1030:c06:c02::280/123\",\r\n
+ \ \"2603:1030:f05:402::380/122\",\r\n \"2603:1030:f05:802::260/123\",\r\n
+ \ \"2603:1030:f05:802::280/123\",\r\n \"2603:1030:f05:c02::260/123\",\r\n
+ \ \"2603:1030:f05:c02::280/123\",\r\n \"2603:1030:1005:402::380/122\",\r\n
+ \ \"2603:1040:5:402::380/122\",\r\n \"2603:1040:5:802::260/123\",\r\n
+ \ \"2603:1040:5:802::280/123\",\r\n \"2603:1040:5:c02::260/123\",\r\n
+ \ \"2603:1040:5:c02::280/123\",\r\n \"2603:1040:207:402::380/122\",\r\n
+ \ \"2603:1040:407:402::380/122\",\r\n \"2603:1040:407:802::260/123\",\r\n
+ \ \"2603:1040:407:802::280/123\",\r\n \"2603:1040:407:c02::260/123\",\r\n
+ \ \"2603:1040:407:c02::280/123\",\r\n \"2603:1040:606:402::380/122\",\r\n
+ \ \"2603:1040:806:402::380/122\",\r\n \"2603:1040:904:402::380/122\",\r\n
+ \ \"2603:1040:904:802::260/123\",\r\n \"2603:1040:904:802::280/123\",\r\n
+ \ \"2603:1040:904:c02::260/123\",\r\n \"2603:1040:904:c02::280/123\",\r\n
+ \ \"2603:1040:a06:402::380/122\",\r\n \"2603:1040:a06:802::260/123\",\r\n
+ \ \"2603:1040:a06:802::280/123\",\r\n \"2603:1040:a06:c02::260/123\",\r\n
+ \ \"2603:1040:a06:c02::280/123\",\r\n \"2603:1040:b04:402::380/122\",\r\n
+ \ \"2603:1040:c06:402::380/122\",\r\n \"2603:1040:d04:1::500/123\",\r\n
+ \ \"2603:1040:d04:400::200/122\",\r\n \"2603:1040:d04:800::300/122\",\r\n
+ \ \"2603:1040:d04:c02::2c0/122\",\r\n \"2603:1040:f05:2::240/123\",\r\n
+ \ \"2603:1040:f05:402::380/122\",\r\n \"2603:1040:f05:802::260/123\",\r\n
+ \ \"2603:1040:f05:802::280/123\",\r\n \"2603:1040:f05:c02::260/123\",\r\n
+ \ \"2603:1040:f05:c02::280/123\",\r\n \"2603:1040:1104:1::1e0/123\",\r\n
+ \ \"2603:1040:1104:400::340/122\",\r\n \"2603:1050:6:402::380/122\",\r\n
+ \ \"2603:1050:6:802::260/123\",\r\n \"2603:1050:6:802::280/123\",\r\n
+ \ \"2603:1050:6:c02::260/123\",\r\n \"2603:1050:6:c02::280/123\",\r\n
+ \ \"2603:1050:403:400::260/123\",\r\n \"2603:1050:403:400::280/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage\",\r\n
+ \ \"id\": \"Storage\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureStorage\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n \"13.65.160.16/28\",\r\n
+ \ \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.67.155.16/28\",\r\n
+ \ \"13.68.120.64/28\",\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.69.40.16/28\",\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.71.200.64/28\",\r\n \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n
+ \ \"13.71.202.16/28\",\r\n \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n
+ \ \"13.72.235.64/28\",\r\n \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n
+ \ \"13.72.237.48/28\",\r\n \"13.72.237.64/28\",\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n
+ \ \"13.74.208.144/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"13.76.104.16/28\",\r\n \"13.77.8.16/28\",\r\n
+ \ \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n \"13.77.8.96/28\",\r\n
+ \ \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n \"13.77.8.192/27\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"13.77.184.64/28\",\r\n \"13.78.152.64/28\",\r\n \"13.78.240.16/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n \"13.82.152.48/28\",\r\n
+ \ \"13.82.152.80/28\",\r\n \"13.83.72.16/28\",\r\n \"13.84.56.16/28\",\r\n
+ \ \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n \"13.87.40.64/28\",\r\n
+ \ \"13.87.40.96/28\",\r\n \"13.87.104.64/28\",\r\n \"13.87.104.96/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"13.95.96.176/28\",\r\n
+ \ \"13.95.240.16/28\",\r\n \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n
+ \ \"20.38.96.0/19\",\r\n \"20.47.0.0/18\",\r\n \"20.60.0.0/16\",\r\n
+ \ \"20.150.0.0/17\",\r\n \"20.157.32.0/19\",\r\n \"20.157.128.0/19\",\r\n
+ \ \"23.96.64.64/26\",\r\n \"23.97.112.64/26\",\r\n \"23.98.49.0/26\",\r\n
+ \ \"23.98.49.192/26\",\r\n \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n
+ \ \"23.98.55.144/28\",\r\n \"23.98.56.0/26\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.98.160.64/26\",\r\n \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n
+ \ \"23.98.192.64/26\",\r\n \"23.98.255.64/26\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"23.99.160.64/26\",\r\n \"23.99.160.192/28\",\r\n \"23.102.206.0/28\",\r\n
+ \ \"23.102.206.128/28\",\r\n \"23.102.206.192/28\",\r\n \"40.68.176.16/28\",\r\n
+ \ \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n \"40.68.232.48/28\",\r\n
+ \ \"40.69.176.16/28\",\r\n \"40.70.88.0/28\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.78.72.16/28\",\r\n
+ \ \"40.78.112.64/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.79.88.16/28\",\r\n \"40.83.24.16/28\",\r\n \"40.83.24.80/28\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.104.176/28\",\r\n \"40.83.104.208/28\",\r\n
+ \ \"40.83.225.32/28\",\r\n \"40.83.227.16/28\",\r\n \"40.84.8.32/28\",\r\n
+ \ \"40.84.11.80/28\",\r\n \"40.85.105.32/28\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"40.86.232.64/28\",\r\n
+ \ \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n \"40.86.232.176/28\",\r\n
+ \ \"40.86.232.192/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"40.113.27.176/28\",\r\n \"40.114.152.16/28\",\r\n
+ \ \"40.114.152.48/28\",\r\n \"40.115.169.32/28\",\r\n \"40.115.175.16/28\",\r\n
+ \ \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n \"40.115.229.16/28\",\r\n
+ \ \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n \"40.115.231.112/28\",\r\n
+ \ \"40.115.231.128/28\",\r\n \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n
+ \ \"40.116.232.48/28\",\r\n \"40.116.232.96/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"40.118.72.176/28\",\r\n
+ \ \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n \"40.118.73.208/28\",\r\n
+ \ \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"51.140.16.16/28\",\r\n \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n
+ \ \"51.140.168.112/28\",\r\n \"51.140.168.128/28\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/23\",\r\n \"51.141.130.0/25\",\r\n \"52.161.112.16/28\",\r\n
+ \ \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n \"52.161.168.32/28\",\r\n
+ \ \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n \"52.162.56.64/27\",\r\n
+ \ \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n \"52.163.176.16/28\",\r\n
+ \ \"52.163.232.16/28\",\r\n \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n
+ \ \"52.164.232.32/28\",\r\n \"52.164.232.64/28\",\r\n \"52.165.104.16/28\",\r\n
+ \ \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n \"52.165.104.112/28\",\r\n
+ \ \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n \"52.165.136.32/28\",\r\n
+ \ \"52.165.240.64/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n
+ \ \"52.167.240.16/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.171.144.32/27\",\r\n
+ \ \"52.171.144.80/28\",\r\n \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n
+ \ \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n \"52.174.224.32/28\",\r\n
+ \ \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n \"52.174.224.128/28\",\r\n
+ \ \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.177.208.80/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.179.24.16/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n \"52.182.176.32/28\",\r\n
+ \ \"52.182.176.64/27\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n
+ \ \"52.184.168.32/28\",\r\n \"52.184.168.96/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.80/28\",\r\n
+ \ \"52.185.112.112/28\",\r\n \"52.185.233.0/24\",\r\n \"52.186.112.32/27\",\r\n
+ \ \"52.187.141.32/27\",\r\n \"52.189.177.0/24\",\r\n \"52.190.240.16/28\",\r\n
+ \ \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n \"52.190.240.112/28\",\r\n
+ \ \"52.190.240.128/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.225.40.32/27\",\r\n \"52.225.136.16/28\",\r\n \"52.225.136.32/28\",\r\n
+ \ \"52.225.240.0/28\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.228.232.0/28\",\r\n
+ \ \"52.229.80.64/27\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n
+ \ \"52.231.80.128/28\",\r\n \"52.231.80.160/27\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.232.232.16/28\",\r\n \"52.232.232.32/28\",\r\n
+ \ \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n \"52.232.232.128/27\",\r\n
+ \ \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.236.40.16/28\",\r\n
+ \ \"52.236.40.32/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.238.56.16/28\",\r\n
+ \ \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n \"52.238.56.112/28\",\r\n
+ \ \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n \"52.238.200.32/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.128.0/20\",\r\n
+ \ \"52.239.144.0/22\",\r\n \"52.239.148.0/27\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.152.0/21\",\r\n \"52.239.160.0/22\",\r\n \"52.239.164.0/24\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/21\",\r\n \"52.239.176.128/25\",\r\n
+ \ \"52.239.177.0/24\",\r\n \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n
+ \ \"52.239.184.0/22\",\r\n \"52.239.188.0/23\",\r\n \"52.239.190.0/24\",\r\n
+ \ \"52.239.191.0/28\",\r\n \"52.239.192.0/21\",\r\n \"52.239.200.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.206.0/23\",\r\n \"52.239.208.0/20\",\r\n
+ \ \"52.239.224.0/19\",\r\n \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n
+ \ \"52.240.60.16/28\",\r\n \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n
+ \ \"52.241.88.16/28\",\r\n \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n
+ \ \"52.245.40.0/24\",\r\n \"104.41.232.16/28\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.46.31.16/28\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n
+ \ \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n \"104.211.104.128/28\",\r\n
+ \ \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n \"104.211.109.80/28\",\r\n
+ \ \"104.211.109.96/28\",\r\n \"104.211.168.16/28\",\r\n \"104.211.232.16/28\",\r\n
+ \ \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n \"104.211.232.176/28\",\r\n
+ \ \"104.214.40.16/28\",\r\n \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n
+ \ \"104.215.32.64/27\",\r\n \"104.215.35.32/27\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/25\",\r\n \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n
+ \ \"137.116.96.0/25\",\r\n \"137.116.96.128/26\",\r\n \"137.135.192.64/26\",\r\n
+ \ \"137.135.192.192/26\",\r\n \"137.135.193.192/26\",\r\n
+ \ \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.61.120.32/27\",\r\n
+ \ \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.62.0.0/26\",\r\n \"168.62.1.128/26\",\r\n \"168.62.32.0/26\",\r\n
+ \ \"168.62.32.192/26\",\r\n \"168.62.33.128/26\",\r\n \"168.62.96.128/25\",\r\n
+ \ \"168.62.128.128/26\",\r\n \"168.63.0.0/26\",\r\n \"168.63.2.64/26\",\r\n
+ \ \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n \"168.63.32.0/26\",\r\n
+ \ \"168.63.33.192/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"168.63.128.0/26\",\r\n
+ \ \"168.63.128.128/25\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n
+ \ \"168.63.130.128/26\",\r\n \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n
+ \ \"168.63.156.192/26\",\r\n \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n
+ \ \"168.63.161.64/26\",\r\n \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n
+ \ \"168.63.162.32/27\",\r\n \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n
+ \ \"168.63.162.192/26\",\r\n \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n
+ \ \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n \"191.232.221.32/28\",\r\n
+ \ \"191.233.128.0/24\",\r\n \"191.235.192.192/26\",\r\n \"191.235.193.32/28\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.192/26\",\r\n
+ \ \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n \"191.237.32.240/28\",\r\n
+ \ \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.237.232.32/28\",\r\n \"191.237.232.128/28\",\r\n
+ \ \"191.237.238.32/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\",\r\n
+ \ \"191.238.64.64/26\",\r\n \"191.238.64.192/28\",\r\n \"191.238.66.0/26\",\r\n
+ \ \"191.239.192.0/26\",\r\n \"191.239.203.0/28\",\r\n \"191.239.224.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.35.0/24\",\r\n \"20.150.124.0/24\",\r\n \"52.239.216.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral2\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.36.0/24\",\r\n \"20.150.103.0/24\",\r\n \"52.239.218.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaEast\",\r\n
+ \ \"id\": \"Storage.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.72.235.64/28\",\r\n
+ \ \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n \"13.72.237.48/28\",\r\n
+ \ \"13.72.237.64/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"20.38.112.0/23\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.150.66.0/24\",\r\n
+ \ \"20.150.92.0/24\",\r\n \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n \"104.46.31.16/28\",\r\n
+ \ \"191.238.66.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.AustraliaSoutheast\",\r\n \"id\": \"Storage.AustraliaSoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.8.16/28\",\r\n \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n
+ \ \"13.77.8.96/28\",\r\n \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n
+ \ \"13.77.8.192/27\",\r\n \"20.47.38.0/24\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n \"191.239.192.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.BrazilSouth\",\r\n
+ \ \"id\": \"Storage.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.60.36.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"23.97.112.64/26\",\r\n \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n
+ \ \"191.232.221.32/28\",\r\n \"191.233.128.0/24\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaCentral\",\r\n \"id\": \"Storage.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.0/25\",\r\n \"20.47.40.0/24\",\r\n \"20.60.42.0/23\",\r\n
+ \ \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.100.0/24\",\r\n \"20.157.52.0/24\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaEast\",\r\n \"id\": \"Storage.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.60.142.0/23\",\r\n
+ \ \"20.150.1.0/25\",\r\n \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"40.86.232.64/28\",\r\n \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n
+ \ \"40.86.232.176/28\",\r\n \"40.86.232.192/28\",\r\n \"52.229.80.64/27\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralIndia\",\r\n
+ \ \"id\": \"Storage.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.150.114.0/24\",\r\n \"52.239.135.64/26\",\r\n
+ \ \"52.239.202.0/24\",\r\n \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n
+ \ \"104.211.104.128/28\",\r\n \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n
+ \ \"104.211.109.80/28\",\r\n \"104.211.109.96/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUS\",\r\n \"id\":
+ \"Storage.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.67.155.16/28\",\r\n
+ \ \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n \"20.47.58.0/23\",\r\n
+ \ \"20.60.18.0/24\",\r\n \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n
+ \ \"20.60.194.0/23\",\r\n \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n
+ \ \"20.150.63.0/24\",\r\n \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.95.0/24\",\r\n \"20.157.34.0/23\",\r\n \"23.99.160.64/26\",\r\n
+ \ \"23.99.160.192/28\",\r\n \"40.69.176.16/28\",\r\n \"40.83.24.16/28\",\r\n
+ \ \"40.83.24.80/28\",\r\n \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n
+ \ \"52.165.104.16/28\",\r\n \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n
+ \ \"52.165.104.112/28\",\r\n \"52.165.136.32/28\",\r\n \"52.165.240.64/28\",\r\n
+ \ \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n
+ \ \"52.182.176.32/28\",\r\n \"52.182.176.64/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.112/28\",\r\n
+ \ \"52.228.232.0/28\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.238.200.32/27\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.177.32/27\",\r\n \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.234.0/23\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUSEUAP\",\r\n
+ \ \"id\": \"Storage.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.150.23.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n
+ \ \"52.185.112.80/28\",\r\n \"52.239.177.0/27\",\r\n \"52.239.238.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastAsia\",\r\n
+ \ \"id\": \"Storage.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.43.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"40.83.104.176/28\",\r\n
+ \ \"40.83.104.208/28\",\r\n \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n
+ \ \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n \"52.239.128.0/24\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"168.63.128.0/26\",\r\n \"168.63.128.128/25\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n \"168.63.130.128/26\",\r\n
+ \ \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n \"168.63.156.192/26\",\r\n
+ \ \"191.237.238.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS\",\r\n \"id\": \"Storage.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n
+ \ \"13.82.152.48/28\",\r\n \"13.82.152.80/28\",\r\n \"20.38.98.0/24\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.60.0.0/24\",\r\n \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.60.0/22\",\r\n \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.146.0/23\",\r\n \"20.150.32.0/23\",\r\n \"20.150.90.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"23.96.64.64/26\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"52.179.24.16/28\",\r\n
+ \ \"52.186.112.32/27\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.239.152.0/22\",\r\n
+ \ \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n \"52.239.214.0/23\",\r\n
+ \ \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.252.0/24\",\r\n
+ \ \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n \"52.240.60.16/28\",\r\n
+ \ \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"168.62.32.0/26\",\r\n \"168.62.32.192/26\",\r\n
+ \ \"168.62.33.128/26\",\r\n \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n
+ \ \"191.237.32.240/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastUS2\",\r\n
+ \ \"id\": \"Storage.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.68.120.64/28\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"20.38.100.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.60.56.0/22\",\r\n
+ \ \"20.60.132.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.150.29.0/24\",\r\n
+ \ \"20.150.36.0/24\",\r\n \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n
+ \ \"20.150.82.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n
+ \ \"20.157.48.0/23\",\r\n \"23.102.206.0/28\",\r\n \"23.102.206.128/28\",\r\n
+ \ \"23.102.206.192/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.84.8.32/28\",\r\n \"40.84.11.80/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n \"52.167.240.16/28\",\r\n
+ \ \"52.177.208.80/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.184.168.96/27\",\r\n \"52.225.136.16/28\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.240.0/28\",\r\n \"52.232.232.16/28\",\r\n
+ \ \"52.232.232.32/28\",\r\n \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n
+ \ \"52.232.232.128/27\",\r\n \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n
+ \ \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n
+ \ \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n \"52.239.184.0/25\",\r\n
+ \ \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.185.32/27\",\r\n
+ \ \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n \"52.239.192.96/27\",\r\n
+ \ \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n \"52.239.198.0/25\",\r\n
+ \ \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n \"52.239.207.32/28\",\r\n
+ \ \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/26\",\r\n \"137.116.2.96/29\",\r\n \"137.116.2.104/30\",\r\n
+ \ \"137.116.2.108/32\",\r\n \"137.116.2.110/31\",\r\n \"137.116.2.112/32\",\r\n
+ \ \"137.116.2.114/32\",\r\n \"137.116.2.116/30\",\r\n \"137.116.2.120/29\",\r\n
+ \ \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n \"137.116.96.0/25\",\r\n
+ \ \"137.116.96.128/26\",\r\n \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.239.224.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2EUAP\",\r\n \"id\": \"Storage.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.6.0/24\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.150.108.0/24\",\r\n \"40.70.88.0/30\",\r\n \"40.70.88.4/31\",\r\n
+ \ \"40.70.88.6/32\",\r\n \"40.70.88.8/31\",\r\n \"40.70.88.10/32\",\r\n
+ \ \"40.70.88.12/32\",\r\n \"40.70.88.14/31\",\r\n \"40.79.88.16/30\",\r\n
+ \ \"40.79.88.20/31\",\r\n \"40.79.88.22/32\",\r\n \"40.79.88.24/31\",\r\n
+ \ \"40.79.88.26/32\",\r\n \"40.79.88.28/32\",\r\n \"40.79.88.30/31\",\r\n
+ \ \"52.184.168.32/30\",\r\n \"52.184.168.36/31\",\r\n \"52.184.168.38/32\",\r\n
+ \ \"52.184.168.40/31\",\r\n \"52.184.168.42/32\",\r\n \"52.184.168.44/32\",\r\n
+ \ \"52.184.168.46/31\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2Stage\",\r\n \"id\": \"Storage.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.2.64/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceCentral\",\r\n \"id\": \"Storage.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.44.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"52.239.134.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.241.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceSouth\",\r\n \"id\": \"Storage.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.28.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.150.19.0/24\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyNorth\",\r\n
+ \ \"id\": \"Storage.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.115.0/24\",\r\n
+ \ \"20.47.45.0/24\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyWestCentral\",\r\n
+ \ \"id\": \"Storage.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.118.0/24\",\r\n \"20.47.27.0/24\",\r\n \"20.60.22.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.JapanEast\",\r\n \"id\":
+ \"Storage.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"20.38.116.0/23\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n
+ \ \"20.157.38.0/24\",\r\n \"23.98.57.64/26\",\r\n \"40.115.169.32/28\",\r\n
+ \ \"40.115.175.16/28\",\r\n \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n
+ \ \"40.115.229.16/28\",\r\n \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n
+ \ \"40.115.231.112/28\",\r\n \"40.115.231.128/28\",\r\n \"52.239.144.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.JapanWest\",\r\n
+ \ \"id\": \"Storage.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.10.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.157.56.0/24\",\r\n \"23.98.56.0/26\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n \"104.215.32.64/27\",\r\n
+ \ \"104.215.35.32/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaCentral\",\r\n \"id\": \"Storage.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.46.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n \"52.231.80.128/28\",\r\n
+ \ \"52.231.80.160/27\",\r\n \"52.239.148.0/27\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.190.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaSouth\",\r\n \"id\": \"Storage.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.47.0/24\",\r\n \"20.150.14.0/23\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n
+ \ \"52.239.190.192/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUS\",\r\n \"id\": \"Storage.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"23.98.49.0/26\",\r\n \"23.98.49.192/26\",\r\n
+ \ \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n \"23.98.55.144/28\",\r\n
+ \ \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n \"40.116.232.48/28\",\r\n
+ \ \"40.116.232.96/28\",\r\n \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n
+ \ \"52.162.56.64/27\",\r\n \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.62.96.128/26\",\r\n \"168.62.96.210/32\",\r\n
+ \ \"168.62.96.224/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUSStage\",\r\n \"id\": \"Storage.NorthCentralUSStage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"168.62.96.192/29\",\r\n \"168.62.96.200/30\",\r\n
+ \ \"168.62.96.204/32\",\r\n \"168.62.96.206/31\",\r\n \"168.62.96.208/32\",\r\n
+ \ \"168.62.96.212/30\",\r\n \"168.62.96.216/29\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorthEurope\",\r\n
+ \ \"id\": \"Storage.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n \"13.74.208.144/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.144.0/23\",\r\n \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n
+ \ \"20.150.48.0/24\",\r\n \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"40.85.105.32/28\",\r\n \"40.113.27.176/28\",\r\n
+ \ \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n \"52.164.232.32/28\",\r\n
+ \ \"52.164.232.64/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.236.40.16/28\",\r\n \"52.236.40.32/28\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/24\",\r\n
+ \ \"104.41.232.16/28\",\r\n \"137.135.192.64/26\",\r\n \"137.135.192.192/26\",\r\n
+ \ \"137.135.193.192/26\",\r\n \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n
+ \ \"168.61.120.32/27\",\r\n \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n
+ \ \"168.63.32.0/26\",\r\n \"168.63.33.192/26\",\r\n \"191.235.192.192/26\",\r\n
+ \ \"191.235.193.32/28\",\r\n \"191.235.255.192/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayEast\",\r\n
+ \ \"id\": \"Storage.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.120.0/24\",\r\n
+ \ \"20.47.48.0/24\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayWest\",\r\n
+ \ \"id\": \"Storage.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.150.0.0/24\",\r\n \"20.150.56.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Storage.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.128/25\",\r\n \"20.47.50.0/24\",\r\n \"20.60.190.0/23\",\r\n
+ \ \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.101.0/24\",\r\n
+ \ \"52.239.232.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthAfricaWest\",\r\n \"id\": \"Storage.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.0/25\",\r\n \"20.47.51.0/24\",\r\n \"20.60.8.0/24\",\r\n
+ \ \"20.150.20.0/25\",\r\n \"52.239.232.128/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.SouthCentralUS\",\r\n
+ \ \"id\": \"Storage.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n
+ \ \"13.65.160.16/28\",\r\n \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n
+ \ \"13.84.56.16/28\",\r\n \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n
+ \ \"20.38.104.0/23\",\r\n \"20.47.0.0/27\",\r\n \"20.47.24.0/23\",\r\n
+ \ \"20.47.29.0/24\",\r\n \"20.60.48.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n \"20.150.70.0/24\",\r\n
+ \ \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n \"23.98.160.64/26\",\r\n
+ \ \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n \"23.98.192.64/26\",\r\n
+ \ \"23.98.255.64/26\",\r\n \"52.171.144.32/27\",\r\n \"52.171.144.80/28\",\r\n
+ \ \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n \"52.185.233.0/24\",\r\n
+ \ \"52.189.177.0/24\",\r\n \"52.239.158.0/23\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n \"104.214.40.16/28\",\r\n
+ \ \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"168.62.128.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SoutheastAsia\",\r\n \"id\": \"Storage.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.76.104.16/28\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.150.17.128/25\",\r\n
+ \ \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n \"20.150.127.0/24\",\r\n
+ \ \"52.163.176.16/28\",\r\n \"52.163.232.16/28\",\r\n \"52.187.141.32/27\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.197.0/24\",\r\n \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n
+ \ \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n \"168.63.161.64/26\",\r\n
+ \ \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n \"168.63.162.32/27\",\r\n
+ \ \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n \"168.63.162.192/26\",\r\n
+ \ \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n \"191.238.64.64/26\",\r\n
+ \ \"191.238.64.192/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthIndia\",\r\n \"id\": \"Storage.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.52.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.150.24.0/24\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.239.135.128/26\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"104.211.232.16/28\",\r\n \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n
+ \ \"104.211.232.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandNorth\",\r\n \"id\": \"Storage.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.53.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n
+ \ \"52.239.251.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandWest\",\r\n \"id\": \"Storage.SwitzerlandWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.26.0/24\",\r\n \"20.60.176.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"52.239.250.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.UAECentral\",\r\n
+ \ \"id\": \"Storage.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"52.239.233.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UAENorth\",\r\n
+ \ \"id\": \"Storage.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.60.21.0/24\",\r\n \"52.239.233.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKSouth\",\r\n
+ \ \"id\": \"Storage.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.60.17.0/24\",\r\n
+ \ \"20.60.166.0/23\",\r\n \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.69.0/24\",\r\n \"51.140.16.16/28\",\r\n
+ \ \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n \"51.140.168.112/28\",\r\n
+ \ \"51.140.168.128/28\",\r\n \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"52.239.187.0/25\",\r\n \"52.239.231.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKWest\",\r\n
+ \ \"id\": \"Storage.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.56.0/24\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n
+ \ \"20.150.110.0/24\",\r\n \"20.157.46.0/24\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n \"51.141.128.128/25\",\r\n
+ \ \"51.141.129.128/26\",\r\n \"52.239.240.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestCentralUS\",\r\n
+ \ \"id\": \"Storage.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.71.200.64/28\",\r\n
+ \ \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n \"13.71.202.16/28\",\r\n
+ \ \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n \"13.78.152.64/28\",\r\n
+ \ \"13.78.240.16/28\",\r\n \"20.47.4.0/24\",\r\n \"20.60.4.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"52.161.112.16/28\",\r\n \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n
+ \ \"52.161.168.32/28\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.WestEurope\",\r\n \"id\": \"Storage.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.40.16/28\",\r\n \"13.95.96.176/28\",\r\n \"13.95.240.16/28\",\r\n
+ \ \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.60.26.0/23\",\r\n \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n
+ \ \"20.60.196.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"40.68.176.16/28\",\r\n \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n
+ \ \"40.68.232.48/28\",\r\n \"40.114.152.16/28\",\r\n \"40.114.152.48/28\",\r\n
+ \ \"40.118.72.176/28\",\r\n \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n
+ \ \"40.118.73.208/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n
+ \ \"52.174.224.32/28\",\r\n \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n
+ \ \"52.174.224.128/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.63.0.0/26\",\r\n
+ \ \"168.63.2.64/26\",\r\n \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"191.237.232.32/28\",\r\n
+ \ \"191.237.232.128/28\",\r\n \"191.239.203.0/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestIndia\",\r\n \"id\":
+ \"Storage.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n \"104.211.168.16/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS\",\r\n
+ \ \"id\": \"Storage.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.83.72.16/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.22.0/23\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n
+ \ \"20.157.32.0/24\",\r\n \"20.157.57.0/24\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"40.78.72.16/28\",\r\n \"40.78.112.64/28\",\r\n \"40.83.225.32/28\",\r\n
+ \ \"40.83.227.16/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.190.240.16/28\",\r\n \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n
+ \ \"52.190.240.112/28\",\r\n \"52.190.240.128/28\",\r\n \"52.225.40.32/27\",\r\n
+ \ \"52.238.56.16/28\",\r\n \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n
+ \ \"52.238.56.112/28\",\r\n \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n \"52.241.88.16/28\",\r\n
+ \ \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n \"168.62.0.0/26\",\r\n
+ \ \"168.62.1.128/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS2\",\r\n
+ \ \"id\": \"Storage.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.77.184.64/28\",\r\n
+ \ \"20.38.99.0/24\",\r\n \"20.47.62.0/23\",\r\n \"20.60.20.0/24\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n
+ \ \"52.239.210.0/23\",\r\n \"52.239.236.0/23\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"StorageSyncService\",\r\n
+ \ \"id\": \"StorageSyncService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.176.196/32\",\r\n \"13.73.248.112/29\",\r\n
+ \ \"13.75.153.240/32\",\r\n \"13.76.81.46/32\",\r\n \"20.36.120.216/29\",\r\n
+ \ \"20.37.64.216/29\",\r\n \"20.37.157.80/29\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"20.37.224.216/29\",\r\n \"20.38.85.152/29\",\r\n \"20.38.136.224/29\",\r\n
+ \ \"20.39.11.96/29\",\r\n \"20.41.5.144/29\",\r\n \"20.41.65.184/29\",\r\n
+ \ \"20.41.193.160/29\",\r\n \"20.42.4.248/29\",\r\n \"20.42.131.224/29\",\r\n
+ \ \"20.42.227.128/29\",\r\n \"20.43.42.8/29\",\r\n \"20.43.66.0/29\",\r\n
+ \ \"20.43.131.40/29\",\r\n \"20.45.71.151/32\",\r\n \"20.45.112.216/29\",\r\n
+ \ \"20.45.192.248/29\",\r\n \"20.45.208.0/29\",\r\n \"20.50.1.0/29\",\r\n
+ \ \"20.72.27.184/29\",\r\n \"20.150.172.40/29\",\r\n \"20.189.108.56/29\",\r\n
+ \ \"20.192.32.232/29\",\r\n \"20.193.205.128/29\",\r\n \"23.100.106.151/32\",\r\n
+ \ \"23.102.225.54/32\",\r\n \"40.67.48.208/29\",\r\n \"40.80.57.192/29\",\r\n
+ \ \"40.80.169.176/29\",\r\n \"40.80.188.24/29\",\r\n \"40.82.253.192/29\",\r\n
+ \ \"40.89.17.232/29\",\r\n \"40.112.150.67/32\",\r\n \"40.113.94.67/32\",\r\n
+ \ \"40.123.47.110/32\",\r\n \"40.123.216.130/32\",\r\n \"51.12.101.240/29\",\r\n
+ \ \"51.12.204.248/29\",\r\n \"51.104.25.224/29\",\r\n \"51.105.80.208/29\",\r\n
+ \ \"51.105.88.248/29\",\r\n \"51.107.48.224/29\",\r\n \"51.107.144.216/29\",\r\n
+ \ \"51.116.60.244/30\",\r\n \"51.116.245.168/30\",\r\n \"51.120.40.224/29\",\r\n
+ \ \"51.120.224.216/29\",\r\n \"51.137.161.240/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"51.140.202.34/32\",\r\n \"51.143.192.208/29\",\r\n \"52.136.48.216/29\",\r\n
+ \ \"52.136.131.99/32\",\r\n \"52.140.105.184/29\",\r\n \"52.143.166.54/32\",\r\n
+ \ \"52.150.139.104/29\",\r\n \"52.161.25.233/32\",\r\n \"52.176.149.179/32\",\r\n
+ \ \"52.183.27.204/32\",\r\n \"52.225.171.85/32\",\r\n \"52.228.42.41/32\",\r\n
+ \ \"52.228.81.248/29\",\r\n \"52.231.67.75/32\",\r\n \"52.231.159.38/32\",\r\n
+ \ \"52.235.36.119/32\",\r\n \"65.52.62.167/32\",\r\n \"102.133.56.128/29\",\r\n
+ \ \"102.133.75.173/32\",\r\n \"102.133.175.72/32\",\r\n \"104.40.191.8/32\",\r\n
+ \ \"104.41.148.238/32\",\r\n \"104.41.161.113/32\",\r\n \"104.208.61.223/32\",\r\n
+ \ \"104.210.219.252/32\",\r\n \"104.211.73.56/32\",\r\n \"104.211.231.18/32\",\r\n
+ \ \"191.233.9.96/29\",\r\n \"191.235.225.216/29\",\r\n \"191.237.253.115/32\",\r\n
+ \ \"2603:1000:4::340/123\",\r\n \"2603:1000:104:1::300/123\",\r\n
+ \ \"2603:1010:6:1::300/123\",\r\n \"2603:1010:101::340/123\",\r\n
+ \ \"2603:1010:304::340/123\",\r\n \"2603:1010:404::340/123\",\r\n
+ \ \"2603:1020:5:1::300/123\",\r\n \"2603:1020:206:1::300/123\",\r\n
+ \ \"2603:1020:305::340/123\",\r\n \"2603:1020:405::340/123\",\r\n
+ \ \"2603:1020:605::340/123\",\r\n \"2603:1020:705:1::300/123\",\r\n
+ \ \"2603:1020:805:1::300/123\",\r\n \"2603:1020:905::340/123\",\r\n
+ \ \"2603:1020:a04:1::300/123\",\r\n \"2603:1020:b04::340/123\",\r\n
+ \ \"2603:1020:c04:1::300/123\",\r\n \"2603:1020:d04::340/123\",\r\n
+ \ \"2603:1020:e04:1::300/123\",\r\n \"2603:1020:e04:802::2a0/123\",\r\n
+ \ \"2603:1020:f04::340/123\",\r\n \"2603:1020:1004::300/123\",\r\n
+ \ \"2603:1020:1004:800::120/123\",\r\n \"2603:1020:1104:400::320/123\",\r\n
+ \ \"2603:1030:f:1::340/123\",\r\n \"2603:1030:f:400::dc0/123\",\r\n
+ \ \"2603:1030:10:1::300/123\",\r\n \"2603:1030:104:1::300/123\",\r\n
+ \ \"2603:1030:107:400::2a0/123\",\r\n \"2603:1030:210:1::300/123\",\r\n
+ \ \"2603:1030:40b:1::300/123\",\r\n \"2603:1030:40c:1::300/123\",\r\n
+ \ \"2603:1030:504:1::300/123\",\r\n \"2603:1030:504:802::120/123\",\r\n
+ \ \"2603:1030:608::340/123\",\r\n \"2603:1030:807:1::300/123\",\r\n
+ \ \"2603:1030:a07::340/123\",\r\n \"2603:1030:b04::340/123\",\r\n
+ \ \"2603:1030:c06:1::300/123\",\r\n \"2603:1030:f05:1::300/123\",\r\n
+ \ \"2603:1030:1005::340/123\",\r\n \"2603:1040:5:1::300/123\",\r\n
+ \ \"2603:1040:207::340/123\",\r\n \"2603:1040:407:1::300/123\",\r\n
+ \ \"2603:1040:606::340/123\",\r\n \"2603:1040:806::340/123\",\r\n
+ \ \"2603:1040:904:1::300/123\",\r\n \"2603:1040:a06:1::300/123\",\r\n
+ \ \"2603:1040:b04::340/123\",\r\n \"2603:1040:c06::340/123\",\r\n
+ \ \"2603:1040:d04::300/123\",\r\n \"2603:1040:d04:800::120/123\",\r\n
+ \ \"2603:1040:f05:1::300/123\",\r\n \"2603:1040:f05:802::2a0/123\",\r\n
+ \ \"2603:1040:1104:400::320/123\",\r\n \"2603:1050:6:1::300/123\",\r\n
+ \ \"2603:1050:6:802::2a0/123\",\r\n \"2603:1050:403::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.216/29\",\r\n \"2603:1010:304::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral2\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.216/29\",\r\n \"2603:1010:404::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaEast\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.153.240/32\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"2603:1010:6:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.CanadaEast\",\r\n \"id\":
+ \"StorageSyncService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.89.17.232/29\",\r\n \"52.235.36.119/32\",\r\n
+ \ \"2603:1030:1005::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.EastUS2\",\r\n \"id\":
+ \"StorageSyncService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.144/29\",\r\n \"40.123.47.110/32\",\r\n
+ \ \"2603:1030:40c:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.FranceSouth\",\r\n \"id\":
+ \"StorageSyncService.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.88.248/29\",\r\n \"52.136.131.99/32\",\r\n
+ \ \"2603:1020:905::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.SouthAfricaWest\",\r\n \"id\":
+ \"StorageSyncService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.56.128/29\",\r\n \"102.133.75.173/32\",\r\n
+ \ \"2603:1000:4::340/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"StorageSyncService.SouthIndia\",\r\n \"id\": \"StorageSyncService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"StorageSyncService\",\r\n \"addressPrefixes\": [\r\n \"20.41.193.160/29\",\r\n
+ \ \"104.211.231.18/32\",\r\n \"2603:1040:c06::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.SwitzerlandWest\",\r\n
+ \ \"id\": \"StorageSyncService.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.216/29\",\r\n \"2603:1020:b04::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.UKSouth\",\r\n
+ \ \"id\": \"StorageSyncService.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.25.224/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"2603:1020:705:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"WindowsVirtualDesktop\",\r\n \"id\": \"WindowsVirtualDesktop\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.251.49/32\",\r\n \"13.67.68.78/32\",\r\n \"13.68.76.104/32\",\r\n
+ \ \"13.69.82.138/32\",\r\n \"13.69.156.85/32\",\r\n \"13.70.40.201/32\",\r\n
+ \ \"13.70.120.215/32\",\r\n \"13.71.5.20/32\",\r\n \"13.71.67.87/32\",\r\n
+ \ \"13.71.81.161/32\",\r\n \"13.71.113.6/32\",\r\n \"13.73.237.154/32\",\r\n
+ \ \"13.75.114.143/32\",\r\n \"13.75.171.61/32\",\r\n \"13.75.198.169/32\",\r\n
+ \ \"13.76.88.89/32\",\r\n \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n
+ \ \"13.77.45.213/32\",\r\n \"13.77.140.58/32\",\r\n \"13.79.243.194/32\",\r\n
+ \ \"13.88.221.28/32\",\r\n \"13.88.254.98/32\",\r\n \"20.36.33.29/32\",\r\n
+ \ \"20.36.33.170/32\",\r\n \"20.36.35.190/32\",\r\n \"20.36.38.195/32\",\r\n
+ \ \"20.36.39.50/32\",\r\n \"20.36.39.171/32\",\r\n \"20.36.41.74/32\",\r\n
+ \ \"20.41.77.252/32\",\r\n \"20.45.64.86/32\",\r\n \"20.45.67.112/32\",\r\n
+ \ \"20.45.67.185/32\",\r\n \"20.45.79.3/32\",\r\n \"20.45.79.24/32\",\r\n
+ \ \"20.45.79.91/32\",\r\n \"20.45.79.96/32\",\r\n \"20.45.79.168/32\",\r\n
+ \ \"20.46.45.161/32\",\r\n \"20.46.46.252/32\",\r\n \"20.188.3.1/32\",\r\n
+ \ \"20.188.39.108/32\",\r\n \"20.188.41.240/32\",\r\n \"20.188.45.82/32\",\r\n
+ \ \"20.190.43.99/32\",\r\n \"23.97.108.170/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"23.98.133.187/32\",\r\n \"23.99.141.138/32\",\r\n \"23.100.50.154/32\",\r\n
+ \ \"23.100.98.36/32\",\r\n \"23.101.5.54/32\",\r\n \"23.101.220.135/32\",\r\n
+ \ \"23.102.229.113/32\",\r\n \"40.65.122.222/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.69.31.73/32\",\r\n \"40.69.90.166/32\",\r\n \"40.69.102.46/32\",\r\n
+ \ \"40.69.149.151/32\",\r\n \"40.70.189.87/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"40.75.30.117/32\",\r\n \"40.80.80.48/32\",\r\n \"40.83.79.39/32\",\r\n
+ \ \"40.85.241.159/32\",\r\n \"40.86.204.245/32\",\r\n \"40.86.205.216/32\",\r\n
+ \ \"40.86.208.118/32\",\r\n \"40.86.222.183/32\",\r\n \"40.89.129.146/32\",\r\n
+ \ \"40.89.154.76/32\",\r\n \"40.113.199.138/32\",\r\n \"40.113.200.58/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"40.115.136.175/32\",\r\n \"40.119.163.43/32\",\r\n
+ \ \"40.119.167.95/32\",\r\n \"40.120.39.124/32\",\r\n \"40.122.28.196/32\",\r\n
+ \ \"40.122.212.20/32\",\r\n \"40.123.228.58/32\",\r\n \"40.123.230.81/32\",\r\n
+ \ \"40.123.230.179/32\",\r\n \"40.123.230.249/32\",\r\n \"40.127.3.207/32\",\r\n
+ \ \"51.11.13.248/32\",\r\n \"51.11.241.142/32\",\r\n \"51.104.49.88/32\",\r\n
+ \ \"51.105.54.123/32\",\r\n \"51.107.68.172/32\",\r\n \"51.107.69.35/32\",\r\n
+ \ \"51.107.78.168/32\",\r\n \"51.107.85.67/32\",\r\n \"51.107.85.110/32\",\r\n
+ \ \"51.107.86.7/32\",\r\n \"51.107.86.99/32\",\r\n \"51.116.171.102/32\",\r\n
+ \ \"51.116.182.248/32\",\r\n \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n
+ \ \"51.116.225.55/32\",\r\n \"51.116.236.74/32\",\r\n \"51.116.236.84/32\",\r\n
+ \ \"51.120.69.158/32\",\r\n \"51.120.70.135/32\",\r\n \"51.120.70.141/32\",\r\n
+ \ \"51.120.77.155/32\",\r\n \"51.120.78.142/32\",\r\n \"51.120.79.212/32\",\r\n
+ \ \"51.120.88.120/32\",\r\n \"51.132.29.107/32\",\r\n \"51.136.28.200/32\",\r\n
+ \ \"51.137.89.79/32\",\r\n \"51.140.57.159/32\",\r\n \"51.140.206.110/32\",\r\n
+ \ \"51.140.231.223/32\",\r\n \"51.140.255.55/32\",\r\n \"51.141.30.31/32\",\r\n
+ \ \"51.141.122.89/32\",\r\n \"51.141.173.236/32\",\r\n \"51.143.39.79/32\",\r\n
+ \ \"51.143.164.192/32\",\r\n \"51.143.169.107/32\",\r\n \"51.145.17.75/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"52.138.20.115/32\",\r\n \"52.138.28.23/32\",\r\n
+ \ \"52.141.37.201/32\",\r\n \"52.141.56.101/32\",\r\n \"52.142.161.0/32\",\r\n
+ \ \"52.142.162.226/32\",\r\n \"52.143.96.87/32\",\r\n \"52.143.182.208/32\",\r\n
+ \ \"52.147.3.93/32\",\r\n \"52.147.160.158/32\",\r\n \"52.151.53.196/32\",\r\n
+ \ \"52.155.111.124/32\",\r\n \"52.156.171.127/32\",\r\n \"52.163.209.255/32\",\r\n
+ \ \"52.164.126.124/32\",\r\n \"52.165.218.15/32\",\r\n \"52.167.163.135/32\",\r\n
+ \ \"52.167.171.53/32\",\r\n \"52.169.5.116/32\",\r\n \"52.171.36.33/32\",\r\n
+ \ \"52.172.34.74/32\",\r\n \"52.172.40.215/32\",\r\n \"52.172.133.5/32\",\r\n
+ \ \"52.172.194.109/32\",\r\n \"52.172.210.235/32\",\r\n \"52.172.217.34/32\",\r\n
+ \ \"52.172.223.46/32\",\r\n \"52.173.89.168/32\",\r\n \"52.175.144.120/32\",\r\n
+ \ \"52.175.253.156/32\",\r\n \"52.177.123.162/32\",\r\n \"52.177.172.247/32\",\r\n
+ \ \"52.183.19.64/32\",\r\n \"52.183.130.137/32\",\r\n \"52.185.202.152/32\",\r\n
+ \ \"52.187.127.152/32\",\r\n \"52.189.194.14/32\",\r\n \"52.189.215.151/32\",\r\n
+ \ \"52.189.233.158/32\",\r\n \"52.191.129.231/32\",\r\n \"52.228.29.164/32\",\r\n
+ \ \"52.229.117.254/32\",\r\n \"52.229.125.45/32\",\r\n \"52.229.207.180/32\",\r\n
+ \ \"52.231.13.193/32\",\r\n \"52.231.38.211/32\",\r\n \"52.231.93.224/32\",\r\n
+ \ \"52.231.98.58/32\",\r\n \"52.231.155.130/32\",\r\n \"52.231.156.19/32\",\r\n
+ \ \"52.231.164.163/32\",\r\n \"52.231.166.199/32\",\r\n \"52.231.195.7/32\",\r\n
+ \ \"52.231.197.195/32\",\r\n \"52.231.206.162/32\",\r\n \"52.233.16.198/32\",\r\n
+ \ \"52.237.20.14/32\",\r\n \"52.237.201.246/32\",\r\n \"52.237.253.245/32\",\r\n
+ \ \"52.242.86.101/32\",\r\n \"52.243.65.107/32\",\r\n \"52.243.74.213/32\",\r\n
+ \ \"52.246.165.140/32\",\r\n \"52.246.177.221/32\",\r\n \"52.246.191.98/32\",\r\n
+ \ \"52.247.122.225/32\",\r\n \"52.247.123.0/32\",\r\n \"52.255.40.105/32\",\r\n
+ \ \"52.255.61.145/32\",\r\n \"65.52.71.120/32\",\r\n \"65.52.158.177/32\",\r\n
+ \ \"70.37.83.67/32\",\r\n \"70.37.86.126/32\",\r\n \"70.37.99.24/32\",\r\n
+ \ \"102.37.42.159/32\",\r\n \"102.133.64.36/32\",\r\n \"102.133.64.68/32\",\r\n
+ \ \"102.133.64.91/32\",\r\n \"102.133.64.111/32\",\r\n \"102.133.72.250/32\",\r\n
+ \ \"102.133.75.8/32\",\r\n \"102.133.75.32/32\",\r\n \"102.133.75.35/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\",\r\n
+ \ \"104.40.156.194/32\",\r\n \"104.41.45.182/32\",\r\n \"104.41.166.159/32\",\r\n
+ \ \"104.43.169.4/32\",\r\n \"104.46.237.209/32\",\r\n \"104.208.28.82/32\",\r\n
+ \ \"104.209.233.222/32\",\r\n \"104.210.150.160/32\",\r\n
+ \ \"104.211.78.17/32\",\r\n \"104.211.114.61/32\",\r\n \"104.211.138.88/32\",\r\n
+ \ \"104.211.140.190/32\",\r\n \"104.211.155.114/32\",\r\n
+ \ \"104.211.165.123/32\",\r\n \"104.211.184.150/32\",\r\n
+ \ \"104.211.188.151/32\",\r\n \"104.211.211.213/32\",\r\n
+ \ \"104.211.216.230/32\",\r\n \"104.211.242.104/32\",\r\n
+ \ \"104.214.60.144/32\",\r\n \"104.214.237.23/32\",\r\n \"104.215.51.3/32\",\r\n
+ \ \"104.215.103.51/32\",\r\n \"104.215.112.85/32\",\r\n \"137.116.49.12/32\",\r\n
+ \ \"137.116.248.148/32\",\r\n \"137.117.171.26/32\",\r\n
+ \ \"137.135.243.65/32\",\r\n \"138.91.44.13/32\",\r\n \"168.61.167.193/32\",\r\n
+ \ \"168.63.31.54/32\",\r\n \"168.63.71.119/32\",\r\n \"168.63.137.213/32\",\r\n
+ \ \"191.232.49.74/32\",\r\n \"191.232.166.149/32\",\r\n \"191.232.235.70/32\",\r\n
+ \ \"191.232.238.73/32\",\r\n \"191.234.191.63/32\",\r\n \"191.235.65.127/32\",\r\n
+ \ \"191.235.73.211/32\",\r\n \"191.235.78.126/32\",\r\n \"191.239.248.16/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.171.102/32\",\r\n \"51.116.182.248/32\",\r\n
+ \ \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n \"51.116.225.55/32\",\r\n
+ \ \"51.116.236.74/32\",\r\n \"51.116.236.84/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.JapanWest\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.237.154/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"52.175.144.120/32\",\r\n \"104.46.237.209/32\",\r\n \"104.215.51.3/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.127.3.207/32\",\r\n \"102.37.42.159/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.68.78/32\",\r\n \"13.76.88.89/32\",\r\n
+ \ \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"52.163.209.255/32\",\r\n \"52.187.127.152/32\",\r\n \"138.91.44.13/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.WestEurope\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.82.138/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"51.136.28.200/32\",\r\n \"51.137.89.79/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"65.52.158.177/32\",\r\n \"104.40.156.194/32\",\r\n
+ \ \"104.214.237.23/32\",\r\n \"137.117.171.26/32\",\r\n \"168.63.31.54/32\"\r\n
+ \ ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1580866'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 08:56:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 570af75c-3bb9-44ce-8e0e-f96b4d8ec90f
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3727'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:56:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3727'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:56:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm",
+ "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx",
+ "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion":
+ "5.6", "pythonVersion": "", "nodeVersion": "", "powerShellVersion": "", "linuxFxVersion":
+ "", "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "httpLoggingEnabled":
+ false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled": false, "publishingUsername":
+ "$cli-webapp-nwr000002", "scmType": "None", "use32BitWorkerProcess": true, "webSocketsEnabled":
+ false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode": "Integrated",
+ "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot",
+ "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments":
+ {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "vnetRouteAllEnabled":
+ false, "vnetPrivatePortsCount": 0, "localMySqlEnabled": false, "ipSecurityRestrictions":
+ [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all",
+ "description": "Allow all access"}, {"ipAddress": "AzureFrontDoor.Backend",
+ "action": "Allow", "tag": "ServiceTag", "priority": 200, "name": "afd"}], "scmIpSecurityRestrictions":
+ [{"ipAddress": "Any", "action": "Allow", "priority": 1, "name": "Allow all",
+ "description": "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false,
+ "http20Enabled": true, "minTlsVersion": "1.2", "scmMinTlsVersion": "1.0", "ftpsState":
+ "AllAllowed", "preWarmedInstanceCount": 0}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1579'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"AzureFrontDoor.Backend","action":"Allow","tag":"ServiceTag","priority":200,"name":"afd"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3822'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:56:39 GMT
+ etag:
+ - '"1D7310C012CC9C0"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1186'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:56:38.93","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '6138'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:56:40 GMT
+ etag:
+ - '"1D7310C14D08F20"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/Japan%20West/serviceTags?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"Public\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/serviceTags/Public\",\r\n
+ \ \"type\": \"Microsoft.Network/serviceTags\",\r\n \"changeNumber\": \"70\",\r\n
+ \ \"cloud\": \"Public\",\r\n \"values\": [\r\n {\r\n \"name\": \"ActionGroup\",\r\n
+ \ \"id\": \"ActionGroup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.60.119/32\",\r\n \"13.66.143.220/30\",\r\n
+ \ \"13.66.202.14/32\",\r\n \"13.66.248.225/32\",\r\n \"13.66.249.211/32\",\r\n
+ \ \"13.67.10.124/30\",\r\n \"13.69.109.132/30\",\r\n \"13.71.199.112/30\",\r\n
+ \ \"13.77.53.216/30\",\r\n \"13.77.172.102/32\",\r\n \"13.77.183.209/32\",\r\n
+ \ \"13.78.109.156/30\",\r\n \"13.84.49.247/32\",\r\n \"13.84.51.172/32\",\r\n
+ \ \"13.84.52.58/32\",\r\n \"13.86.221.220/30\",\r\n \"13.106.38.142/32\",\r\n
+ \ \"13.106.38.148/32\",\r\n \"13.106.54.3/32\",\r\n \"13.106.54.19/32\",\r\n
+ \ \"13.106.57.181/32\",\r\n \"13.106.57.196/31\",\r\n \"20.38.149.132/30\",\r\n
+ \ \"20.42.64.36/30\",\r\n \"20.43.121.124/30\",\r\n \"20.44.17.220/30\",\r\n
+ \ \"20.45.123.236/30\",\r\n \"20.72.27.152/30\",\r\n \"20.150.172.228/30\",\r\n
+ \ \"20.192.238.124/30\",\r\n \"20.193.202.4/30\",\r\n \"40.68.195.137/32\",\r\n
+ \ \"40.68.201.58/32\",\r\n \"40.68.201.65/32\",\r\n \"40.68.201.206/32\",\r\n
+ \ \"40.68.201.211/32\",\r\n \"40.68.204.18/32\",\r\n \"40.115.37.106/32\",\r\n
+ \ \"40.121.219.215/32\",\r\n \"40.121.221.62/32\",\r\n \"40.121.222.201/32\",\r\n
+ \ \"40.121.223.186/32\",\r\n \"51.12.101.172/30\",\r\n \"51.12.204.244/30\",\r\n
+ \ \"51.104.9.100/30\",\r\n \"52.183.20.244/32\",\r\n \"52.183.31.0/32\",\r\n
+ \ \"52.183.94.59/32\",\r\n \"52.184.145.166/32\",\r\n \"168.61.142.52/30\",\r\n
+ \ \"191.233.50.4/30\",\r\n \"191.233.207.64/26\",\r\n \"2603:1000:4:402::178/125\",\r\n
+ \ \"2603:1000:104:402::178/125\",\r\n \"2603:1010:6:402::178/125\",\r\n
+ \ \"2603:1010:101:402::178/125\",\r\n \"2603:1010:304:402::178/125\",\r\n
+ \ \"2603:1010:404:402::178/125\",\r\n \"2603:1020:5:402::178/125\",\r\n
+ \ \"2603:1020:206:402::178/125\",\r\n \"2603:1020:305:402::178/125\",\r\n
+ \ \"2603:1020:405:402::178/125\",\r\n \"2603:1020:605:402::178/125\",\r\n
+ \ \"2603:1020:705:402::178/125\",\r\n \"2603:1020:805:402::178/125\",\r\n
+ \ \"2603:1020:905:402::178/125\",\r\n \"2603:1020:a04:402::178/125\",\r\n
+ \ \"2603:1020:b04:402::178/125\",\r\n \"2603:1020:c04:402::178/125\",\r\n
+ \ \"2603:1020:d04:402::178/125\",\r\n \"2603:1020:e04:402::178/125\",\r\n
+ \ \"2603:1020:f04:402::178/125\",\r\n \"2603:1020:1004:800::f8/125\",\r\n
+ \ \"2603:1020:1104:400::178/125\",\r\n \"2603:1030:f:400::978/125\",\r\n
+ \ \"2603:1030:10:402::178/125\",\r\n \"2603:1030:104:402::178/125\",\r\n
+ \ \"2603:1030:107:400::f0/125\",\r\n \"2603:1030:210:402::178/125\",\r\n
+ \ \"2603:1030:40b:400::978/125\",\r\n \"2603:1030:40c:402::178/125\",\r\n
+ \ \"2603:1030:504:802::f8/125\",\r\n \"2603:1030:608:402::178/125\",\r\n
+ \ \"2603:1030:807:402::178/125\",\r\n \"2603:1030:a07:402::8f8/125\",\r\n
+ \ \"2603:1030:b04:402::178/125\",\r\n \"2603:1030:c06:400::978/125\",\r\n
+ \ \"2603:1030:f05:402::178/125\",\r\n \"2603:1030:1005:402::178/125\",\r\n
+ \ \"2603:1040:5:402::178/125\",\r\n \"2603:1040:207:402::178/125\",\r\n
+ \ \"2603:1040:407:402::178/125\",\r\n \"2603:1040:606:402::178/125\",\r\n
+ \ \"2603:1040:806:402::178/125\",\r\n \"2603:1040:904:402::178/125\",\r\n
+ \ \"2603:1040:a06:402::178/125\",\r\n \"2603:1040:b04:402::178/125\",\r\n
+ \ \"2603:1040:c06:402::178/125\",\r\n \"2603:1040:d04:800::f8/125\",\r\n
+ \ \"2603:1040:f05:402::178/125\",\r\n \"2603:1040:1104:400::178/125\",\r\n
+ \ \"2603:1050:6:402::178/125\",\r\n \"2603:1050:403:400::1f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:304:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaCentral2\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:404:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.AustraliaEast\",\r\n
+ \ \"id\": \"ActionGroup.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1010:6:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CanadaEast\",\r\n
+ \ \"id\": \"ActionGroup.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:1005:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUS\",\r\n
+ \ \"id\": \"ActionGroup.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1030:10:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.CentralUSEUAP\",\r\n
+ \ \"id\": \"ActionGroup.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"168.61.142.52/30\",\r\n
+ \ \"2603:1030:f:400::978/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastAsia\",\r\n \"id\": \"ActionGroup.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1040:207:402::178/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.EastUS2\",\r\n \"id\":
+ \"ActionGroup.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.17.220/30\",\r\n \"52.184.145.166/32\",\r\n
+ \ \"2603:1030:40c:402::178/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ActionGroup.EastUS2EUAP\",\r\n \"id\": \"ActionGroup.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"ActionGroup\",\r\n \"addressPrefixes\":
+ [\r\n \"2603:1030:40b:400::978/125\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"ActionGroup.FranceCentral\",\r\n \"id\":
+ \"ActionGroup.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:805:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.FranceSouth\",\r\n
+ \ \"id\": \"ActionGroup.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:905:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyNorth\",\r\n
+ \ \"id\": \"ActionGroup.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.GermanyWestCentral\",\r\n
+ \ \"id\": \"ActionGroup.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:c04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.JapanWest\",\r\n
+ \ \"id\": \"ActionGroup.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:606:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.KoreaCentral\",\r\n
+ \ \"id\": \"ActionGroup.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1040:f05:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorthEurope\",\r\n
+ \ \"id\": \"ActionGroup.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:5:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayEast\",\r\n
+ \ \"id\": \"ActionGroup.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:e04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.NorwayWest\",\r\n
+ \ \"id\": \"ActionGroup.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:f04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaNorth\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:104:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthAfricaWest\",\r\n
+ \ \"id\": \"ActionGroup.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SouthIndia\",\r\n
+ \ \"id\": \"ActionGroup.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:c06:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:a04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.SwitzerlandWest\",\r\n
+ \ \"id\": \"ActionGroup.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ActionGroup\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAECentral\",\r\n
+ \ \"id\": \"ActionGroup.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:b04:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UAENorth\",\r\n
+ \ \"id\": \"ActionGroup.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:904:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKNorth\",\r\n
+ \ \"id\": \"ActionGroup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:305:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKSouth2\",\r\n
+ \ \"id\": \"ActionGroup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:405:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.UKWest\",\r\n
+ \ \"id\": \"ActionGroup.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1020:605:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestIndia\",\r\n
+ \ \"id\": \"ActionGroup.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"2603:1040:806:402::178/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ActionGroup.WestUS\",\r\n
+ \ \"id\": \"ActionGroup.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"ActionGroup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.221.220/30\",\r\n \"2603:1030:a07:402::8f8/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement\",\r\n
+ \ \"id\": \"ApiManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.39.16/32\",\r\n \"13.66.138.92/31\",\r\n \"13.66.140.176/28\",\r\n
+ \ \"13.67.8.108/31\",\r\n \"13.67.9.208/28\",\r\n \"13.69.64.76/31\",\r\n
+ \ \"13.69.66.144/28\",\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.71.49.1/32\",\r\n
+ \ \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n \"13.71.194.116/31\",\r\n
+ \ \"13.71.196.32/28\",\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n
+ \ \"13.75.217.184/32\",\r\n \"13.75.221.78/32\",\r\n \"13.77.50.68/31\",\r\n
+ \ \"13.77.52.224/28\",\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"13.86.102.66/32\",\r\n
+ \ \"13.87.56.84/31\",\r\n \"13.87.57.144/28\",\r\n \"13.87.122.84/31\",\r\n
+ \ \"13.87.123.144/28\",\r\n \"13.89.170.204/31\",\r\n \"13.89.174.64/28\",\r\n
+ \ \"20.36.106.68/31\",\r\n \"20.36.107.176/28\",\r\n \"20.36.114.20/31\",\r\n
+ \ \"20.36.115.128/28\",\r\n \"20.37.52.67/32\",\r\n \"20.37.74.224/31\",\r\n
+ \ \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n \"20.39.80.2/32\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"20.40.125.155/32\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"20.44.2.4/31\",\r\n \"20.44.3.224/28\",\r\n \"20.44.33.246/32\",\r\n
+ \ \"20.44.72.3/32\",\r\n \"20.46.13.224/28\",\r\n \"20.46.144.85/32\",\r\n
+ \ \"20.72.26.16/28\",\r\n \"20.150.167.160/28\",\r\n \"20.150.170.224/28\",\r\n
+ \ \"20.188.77.119/32\",\r\n \"20.192.50.64/28\",\r\n \"20.192.234.160/28\",\r\n
+ \ \"20.193.192.48/28\",\r\n \"20.193.202.160/28\",\r\n \"20.194.74.240/28\",\r\n
+ \ \"23.96.224.175/32\",\r\n \"23.101.67.140/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.66.60.111/32\",\r\n \"40.67.58.224/28\",\r\n \"40.69.106.68/31\",\r\n
+ \ \"40.69.107.224/28\",\r\n \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n
+ \ \"40.71.10.204/31\",\r\n \"40.71.13.128/28\",\r\n \"40.74.100.52/31\",\r\n
+ \ \"40.74.101.48/28\",\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"40.78.194.68/31\",\r\n \"40.78.195.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"40.79.130.44/31\",\r\n \"40.79.131.192/28\",\r\n
+ \ \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n \"40.80.232.185/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"40.81.89.24/32\",\r\n \"40.81.185.8/32\",\r\n
+ \ \"40.82.157.167/32\",\r\n \"40.90.185.46/32\",\r\n \"40.112.242.148/31\",\r\n
+ \ \"40.112.243.240/28\",\r\n \"51.12.17.0/28\",\r\n \"51.12.25.16/28\",\r\n
+ \ \"51.12.98.224/28\",\r\n \"51.12.202.224/28\",\r\n \"51.107.0.91/32\",\r\n
+ \ \"51.107.59.0/28\",\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n
+ \ \"51.116.0.0/32\",\r\n \"51.116.59.0/28\",\r\n \"51.116.96.0/32\",\r\n
+ \ \"51.116.155.64/28\",\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n \"51.120.234.240/28\",\r\n
+ \ \"51.137.136.0/32\",\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"51.143.127.203/32\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"51.145.179.78/32\",\r\n \"52.139.20.34/32\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"52.139.152.27/32\",\r\n \"52.140.238.179/32\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"52.224.186.99/32\",\r\n \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n
+ \ \"52.231.146.84/31\",\r\n \"52.231.147.176/28\",\r\n \"52.253.135.58/32\",\r\n
+ \ \"52.253.159.160/32\",\r\n \"52.253.229.253/32\",\r\n \"65.52.164.91/32\",\r\n
+ \ \"65.52.173.247/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n \"102.133.28.0/28\",\r\n
+ \ \"102.133.130.197/32\",\r\n \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n
+ \ \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n \"104.211.81.28/31\",\r\n
+ \ \"104.211.81.240/28\",\r\n \"104.211.146.68/31\",\r\n \"104.211.147.144/28\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"137.117.160.56/32\",\r\n
+ \ \"191.232.18.181/32\",\r\n \"191.233.24.179/32\",\r\n \"191.233.50.192/28\",\r\n
+ \ \"191.233.203.28/31\",\r\n \"191.233.203.240/28\",\r\n
+ \ \"191.238.241.97/32\",\r\n \"2603:1000:4:402::140/124\",\r\n
+ \ \"2603:1000:104:402::140/124\",\r\n \"2603:1010:6:402::140/124\",\r\n
+ \ \"2603:1010:101:402::140/124\",\r\n \"2603:1010:304:402::140/124\",\r\n
+ \ \"2603:1010:404:402::140/124\",\r\n \"2603:1020:5:402::140/124\",\r\n
+ \ \"2603:1020:206:402::140/124\",\r\n \"2603:1020:305:402::140/124\",\r\n
+ \ \"2603:1020:405:402::140/124\",\r\n \"2603:1020:605:402::140/124\",\r\n
+ \ \"2603:1020:705:402::140/124\",\r\n \"2603:1020:805:402::140/124\",\r\n
+ \ \"2603:1020:905:402::140/124\",\r\n \"2603:1020:a04:402::140/124\",\r\n
+ \ \"2603:1020:b04:402::140/124\",\r\n \"2603:1020:c04:402::140/124\",\r\n
+ \ \"2603:1020:d04:402::140/124\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\",\r\n \"2603:1020:f04:402::140/124\",\r\n
+ \ \"2603:1020:1004:1::700/124\",\r\n \"2603:1020:1004:800::c0/124\",\r\n
+ \ \"2603:1020:1104:1::3c0/124\",\r\n \"2603:1020:1104:400::140/124\",\r\n
+ \ \"2603:1030:f:2::490/124\",\r\n \"2603:1030:f:400::940/124\",\r\n
+ \ \"2603:1030:10:402::140/124\",\r\n \"2603:1030:104:402::140/124\",\r\n
+ \ \"2603:1030:107:400::c0/124\",\r\n \"2603:1030:210:402::140/124\",\r\n
+ \ \"2603:1030:40b:400::940/124\",\r\n \"2603:1030:40c:402::140/124\",\r\n
+ \ \"2603:1030:504:2::80/124\",\r\n \"2603:1030:608:402::140/124\",\r\n
+ \ \"2603:1030:807:402::140/124\",\r\n \"2603:1030:a07:402::8c0/124\",\r\n
+ \ \"2603:1030:b04:402::140/124\",\r\n \"2603:1030:c06:400::940/124\",\r\n
+ \ \"2603:1030:f05:402::140/124\",\r\n \"2603:1030:1005:402::140/124\",\r\n
+ \ \"2603:1040:5:402::140/124\",\r\n \"2603:1040:207:402::140/124\",\r\n
+ \ \"2603:1040:407:402::140/124\",\r\n \"2603:1040:606:402::140/124\",\r\n
+ \ \"2603:1040:806:402::140/124\",\r\n \"2603:1040:904:402::140/124\",\r\n
+ \ \"2603:1040:a06:402::140/124\",\r\n \"2603:1040:b04:402::140/124\",\r\n
+ \ \"2603:1040:c06:402::140/124\",\r\n \"2603:1040:d04:1::700/124\",\r\n
+ \ \"2603:1040:d04:800::c0/124\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\",\r\n \"2603:1040:1104:1::400/124\",\r\n
+ \ \"2603:1040:1104:400::140/124\",\r\n \"2603:1050:6:402::140/124\",\r\n
+ \ \"2603:1050:403:400::2a0/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.AustraliaCentral\",\r\n \"id\":
+ \"ApiManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.106.68/31\",\r\n
+ \ \"20.36.107.176/28\",\r\n \"20.37.52.67/32\",\r\n \"2603:1010:304:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.20/31\",\r\n \"20.36.115.128/28\",\r\n
+ \ \"20.39.99.81/32\",\r\n \"2603:1010:404:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaEast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.28/31\",\r\n \"13.70.72.240/28\",\r\n \"13.75.217.184/32\",\r\n
+ \ \"13.75.221.78/32\",\r\n \"20.40.125.155/32\",\r\n \"2603:1010:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"ApiManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.68/31\",\r\n \"13.77.52.224/28\",\r\n \"20.40.160.107/32\",\r\n
+ \ \"2603:1010:101:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.BrazilSouth\",\r\n \"id\": \"ApiManagement.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.24.179/32\",\r\n \"191.233.203.28/31\",\r\n
+ \ \"191.233.203.240/28\",\r\n \"2603:1050:6:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaCentral\",\r\n
+ \ \"id\": \"ApiManagement.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.44/31\",\r\n \"13.71.172.144/28\",\r\n
+ \ \"52.139.20.34/32\",\r\n \"2603:1030:f05:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CanadaEast\",\r\n
+ \ \"id\": \"ApiManagement.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.68/31\",\r\n \"40.69.107.224/28\",\r\n
+ \ \"52.139.80.117/32\",\r\n \"2603:1030:1005:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralIndia\",\r\n
+ \ \"id\": \"ApiManagement.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.49.1/32\",\r\n \"104.211.81.28/31\",\r\n \"104.211.81.240/28\",\r\n
+ \ \"2603:1040:a06:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.CentralUS\",\r\n \"id\": \"ApiManagement.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.102.66/32\",\r\n \"13.89.170.204/31\",\r\n
+ \ \"13.89.174.64/28\",\r\n \"2603:1030:10:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"ApiManagement.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.224/28\",\r\n \"40.78.202.128/31\",\r\n
+ \ \"40.78.203.160/28\",\r\n \"52.253.159.160/32\",\r\n \"2603:1030:f:2::490/124\",\r\n
+ \ \"2603:1030:f:400::940/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.EastAsia\",\r\n \"id\": \"ApiManagement.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.148/31\",\r\n \"13.75.38.16/28\",\r\n \"52.139.152.27/32\",\r\n
+ \ \"65.52.164.91/32\",\r\n \"65.52.173.247/32\",\r\n \"2603:1040:207:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS\",\r\n
+ \ \"id\": \"ApiManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.10.204/31\",\r\n
+ \ \"40.71.13.128/28\",\r\n \"52.224.186.99/32\",\r\n \"2603:1030:210:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.72.3/32\",\r\n
+ \ \"40.70.146.76/31\",\r\n \"40.70.148.16/28\",\r\n \"2603:1030:40c:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"ApiManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.80/31\",\r\n \"40.74.147.32/28\",\r\n
+ \ \"52.253.229.253/32\",\r\n \"2603:1030:40b:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceCentral\",\r\n
+ \ \"id\": \"ApiManagement.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.66.60.111/32\",\r\n \"40.79.130.44/31\",\r\n
+ \ \"40.79.131.192/28\",\r\n \"2603:1020:805:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.FranceSouth\",\r\n
+ \ \"id\": \"ApiManagement.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.80.2/32\",\r\n \"40.79.178.68/31\",\r\n \"40.79.179.192/28\",\r\n
+ \ \"2603:1020:905:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.GermanyNorth\",\r\n \"id\":
+ \"ApiManagement.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.116.0.0/32\",\r\n
+ \ \"51.116.59.0/28\",\r\n \"2603:1020:d04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"ApiManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.96.0/32\",\r\n \"51.116.155.64/28\",\r\n
+ \ \"2603:1020:c04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.JapanEast\",\r\n \"id\": \"ApiManagement.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.92/31\",\r\n \"13.78.108.176/28\",\r\n
+ \ \"52.140.238.179/32\",\r\n \"2603:1040:407:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.JapanWest\",\r\n
+ \ \"id\": \"ApiManagement.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.52/31\",\r\n \"40.74.101.48/28\",\r\n
+ \ \"40.81.185.8/32\",\r\n \"2603:1040:606:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.KoreaCentral\",\r\n
+ \ \"id\": \"ApiManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.74.240/28\",\r\n \"40.82.157.167/32\",\r\n
+ \ \"52.231.18.44/31\",\r\n \"52.231.19.192/28\",\r\n \"2603:1040:f05::6f0/124\",\r\n
+ \ \"2603:1040:f05:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.KoreaSouth\",\r\n \"id\": \"ApiManagement.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.232.185/32\",\r\n \"52.231.146.84/31\",\r\n
+ \ \"52.231.147.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"ApiManagement.NorthCentralUS\",\r\n \"id\": \"ApiManagement.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.224.175/32\",\r\n \"23.101.166.38/32\",\r\n
+ \ \"40.81.47.216/32\",\r\n \"52.162.106.148/31\",\r\n \"52.162.110.80/28\",\r\n
+ \ \"2603:1030:608:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorthEurope\",\r\n \"id\": \"ApiManagement.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.76/31\",\r\n \"13.69.229.80/28\",\r\n
+ \ \"52.142.95.35/32\",\r\n \"104.41.217.243/32\",\r\n \"104.41.218.160/32\",\r\n
+ \ \"2603:1020:5:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayEast\",\r\n \"id\": \"ApiManagement.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.2.185/32\",\r\n \"51.120.98.176/28\",\r\n
+ \ \"51.120.234.240/28\",\r\n \"2603:1020:e04::6f0/124\",\r\n
+ \ \"2603:1020:e04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.NorwayWest\",\r\n \"id\": \"ApiManagement.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.130.134/32\",\r\n \"51.120.218.224/28\",\r\n
+ \ \"2603:1020:f04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"ApiManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.130.197/32\",\r\n
+ \ \"102.133.154.4/31\",\r\n \"102.133.156.0/28\",\r\n \"2603:1000:104:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"ApiManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.0.79/32\",\r\n \"102.133.26.4/31\",\r\n
+ \ \"102.133.28.0/28\",\r\n \"2603:1000:4:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.84.189.17/32\",\r\n \"13.85.22.63/32\",\r\n \"20.188.77.119/32\",\r\n
+ \ \"104.214.18.172/31\",\r\n \"104.214.19.224/28\",\r\n \"191.238.241.97/32\",\r\n
+ \ \"2603:1030:807:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.SoutheastAsia\",\r\n \"id\":
+ \"ApiManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.108/31\",\r\n
+ \ \"13.67.9.208/28\",\r\n \"40.90.185.46/32\",\r\n \"2603:1040:5:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SouthIndia\",\r\n
+ \ \"id\": \"ApiManagement.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.33.246/32\",\r\n \"40.78.194.68/31\",\r\n
+ \ \"40.78.195.224/28\",\r\n \"2603:1040:c06:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.0.91/32\",\r\n \"51.107.59.0/28\",\r\n \"2603:1020:a04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"ApiManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.96.8/32\",\r\n \"51.107.155.0/28\",\r\n \"2603:1020:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UAECentral\",\r\n
+ \ \"id\": \"ApiManagement.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.224/31\",\r\n \"20.37.76.32/28\",\r\n \"20.37.81.41/32\",\r\n
+ \ \"2603:1040:b04:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UAENorth\",\r\n \"id\": \"ApiManagement.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.144.85/32\",\r\n \"65.52.250.4/31\",\r\n \"65.52.252.32/28\",\r\n
+ \ \"2603:1040:904:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKNorth\",\r\n \"id\": \"ApiManagement.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.84/31\",\r\n \"13.87.123.144/28\",\r\n
+ \ \"2603:1020:305:402::140/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApiManagement.UKSouth\",\r\n \"id\": \"ApiManagement.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.146.60/31\",\r\n \"51.140.149.0/28\",\r\n
+ \ \"51.145.56.125/32\",\r\n \"2603:1020:705:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.UKWest\",\r\n
+ \ \"id\": \"ApiManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.136.0/32\",\r\n
+ \ \"51.140.210.84/31\",\r\n \"51.140.211.176/28\",\r\n \"2603:1020:605:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestCentralUS\",\r\n
+ \ \"id\": \"ApiManagement.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.116/31\",\r\n \"13.71.196.32/28\",\r\n
+ \ \"52.253.135.58/32\",\r\n \"2603:1030:b04:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestEurope\",\r\n
+ \ \"id\": \"ApiManagement.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.76/31\",\r\n \"13.69.66.144/28\",\r\n \"23.101.67.140/32\",\r\n
+ \ \"51.145.179.78/32\",\r\n \"137.117.160.56/32\",\r\n \"2603:1020:206:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestIndia\",\r\n
+ \ \"id\": \"ApiManagement.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureApiManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.89.24/32\",\r\n \"104.211.146.68/31\",\r\n
+ \ \"104.211.147.144/28\",\r\n \"2603:1040:806:402::140/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS\",\r\n
+ \ \"id\": \"ApiManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.39.16/32\",\r\n
+ \ \"40.112.242.148/31\",\r\n \"40.112.243.240/28\",\r\n \"2603:1030:a07:402::8c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApiManagement.WestUS2\",\r\n
+ \ \"id\": \"ApiManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureApiManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.92/31\",\r\n
+ \ \"13.66.140.176/28\",\r\n \"51.143.127.203/32\",\r\n \"2603:1030:c06:400::940/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppConfiguration\",\r\n
+ \ \"id\": \"AppConfiguration\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppConfiguration\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.72/29\",\r\n \"13.66.143.192/28\",\r\n
+ \ \"13.66.143.208/29\",\r\n \"13.67.10.112/29\",\r\n \"13.67.13.192/28\",\r\n
+ \ \"13.67.13.208/29\",\r\n \"13.69.67.112/29\",\r\n \"13.69.67.240/28\",\r\n
+ \ \"13.69.71.128/29\",\r\n \"13.69.107.72/29\",\r\n \"13.69.112.144/28\",\r\n
+ \ \"13.69.112.160/29\",\r\n \"13.69.230.8/29\",\r\n \"13.69.230.40/29\",\r\n
+ \ \"13.69.231.144/28\",\r\n \"13.70.74.128/29\",\r\n \"13.70.78.144/28\",\r\n
+ \ \"13.70.78.160/29\",\r\n \"13.71.175.64/28\",\r\n \"13.71.175.96/28\",\r\n
+ \ \"13.71.196.176/28\",\r\n \"13.71.199.80/28\",\r\n \"13.73.242.56/29\",\r\n
+ \ \"13.73.244.96/28\",\r\n \"13.73.244.112/29\",\r\n \"13.73.255.128/26\",\r\n
+ \ \"13.74.108.160/28\",\r\n \"13.74.108.240/28\",\r\n \"13.77.53.88/29\",\r\n
+ \ \"13.77.53.192/28\",\r\n \"13.77.53.208/29\",\r\n \"13.78.109.144/29\",\r\n
+ \ \"13.78.109.208/28\",\r\n \"13.78.111.128/29\",\r\n \"13.86.219.192/29\",\r\n
+ \ \"13.86.221.192/28\",\r\n \"13.86.221.208/29\",\r\n \"13.87.58.64/29\",\r\n
+ \ \"13.87.58.80/28\",\r\n \"13.87.58.128/29\",\r\n \"13.87.124.64/29\",\r\n
+ \ \"13.87.124.80/28\",\r\n \"13.87.124.128/29\",\r\n \"13.89.175.208/28\",\r\n
+ \ \"13.89.178.16/29\",\r\n \"13.89.178.32/29\",\r\n \"20.36.108.120/29\",\r\n
+ \ \"20.36.108.136/29\",\r\n \"20.36.108.144/28\",\r\n \"20.36.115.248/29\",\r\n
+ \ \"20.36.117.40/29\",\r\n \"20.36.117.48/28\",\r\n \"20.36.123.16/28\",\r\n
+ \ \"20.36.124.64/26\",\r\n \"20.37.67.96/28\",\r\n \"20.37.69.64/26\",\r\n
+ \ \"20.37.76.112/29\",\r\n \"20.37.76.144/28\",\r\n \"20.37.76.192/29\",\r\n
+ \ \"20.37.198.144/28\",\r\n \"20.37.227.32/28\",\r\n \"20.37.228.128/26\",\r\n
+ \ \"20.38.128.96/29\",\r\n \"20.38.128.112/28\",\r\n \"20.38.128.160/29\",\r\n
+ \ \"20.38.139.96/28\",\r\n \"20.38.141.64/26\",\r\n \"20.38.147.176/28\",\r\n
+ \ \"20.38.147.240/28\",\r\n \"20.39.14.16/28\",\r\n \"20.40.206.144/28\",\r\n
+ \ \"20.40.206.160/28\",\r\n \"20.40.224.128/26\",\r\n \"20.41.68.64/28\",\r\n
+ \ \"20.41.69.192/26\",\r\n \"20.41.197.48/28\",\r\n \"20.42.64.16/28\",\r\n
+ \ \"20.42.230.144/28\",\r\n \"20.43.44.144/28\",\r\n \"20.43.46.128/26\",\r\n
+ \ \"20.43.70.128/28\",\r\n \"20.43.121.40/29\",\r\n \"20.43.121.96/28\",\r\n
+ \ \"20.43.121.112/29\",\r\n \"20.44.4.96/29\",\r\n \"20.44.4.120/29\",\r\n
+ \ \"20.44.4.160/28\",\r\n \"20.44.8.168/29\",\r\n \"20.44.10.96/28\",\r\n
+ \ \"20.44.10.112/29\",\r\n \"20.44.17.56/29\",\r\n \"20.44.17.192/28\",\r\n
+ \ \"20.44.17.208/29\",\r\n \"20.44.27.224/28\",\r\n \"20.44.29.32/28\",\r\n
+ \ \"20.45.116.0/26\",\r\n \"20.45.123.120/29\",\r\n \"20.45.123.176/28\",\r\n
+ \ \"20.45.123.224/29\",\r\n \"20.45.126.0/27\",\r\n \"20.45.198.0/27\",\r\n
+ \ \"20.45.199.64/26\",\r\n \"20.48.192.192/26\",\r\n \"20.49.83.96/27\",\r\n
+ \ \"20.49.91.96/27\",\r\n \"20.49.99.80/28\",\r\n \"20.49.103.0/26\",\r\n
+ \ \"20.49.109.96/28\",\r\n \"20.49.115.64/26\",\r\n \"20.49.120.80/28\",\r\n
+ \ \"20.49.127.64/26\",\r\n \"20.50.1.240/28\",\r\n \"20.50.65.96/28\",\r\n
+ \ \"20.51.8.0/26\",\r\n \"20.51.16.0/26\",\r\n \"20.53.41.192/26\",\r\n
+ \ \"20.61.98.0/26\",\r\n \"20.62.128.64/26\",\r\n \"20.72.20.192/26\",\r\n
+ \ \"20.72.28.128/27\",\r\n \"20.150.165.176/28\",\r\n \"20.150.167.0/26\",\r\n
+ \ \"20.150.172.64/27\",\r\n \"20.150.173.32/27\",\r\n \"20.150.179.200/29\",\r\n
+ \ \"20.150.181.0/28\",\r\n \"20.150.181.16/29\",\r\n \"20.150.181.128/27\",\r\n
+ \ \"20.150.187.200/29\",\r\n \"20.150.189.0/28\",\r\n \"20.150.189.16/29\",\r\n
+ \ \"20.150.190.32/27\",\r\n \"20.187.194.224/28\",\r\n \"20.187.196.128/26\",\r\n
+ \ \"20.189.224.64/26\",\r\n \"20.191.160.192/26\",\r\n \"20.192.99.200/29\",\r\n
+ \ \"20.192.101.0/28\",\r\n \"20.192.101.16/29\",\r\n \"20.192.167.0/26\",\r\n
+ \ \"20.192.231.64/26\",\r\n \"20.192.235.240/29\",\r\n \"20.192.238.112/29\",\r\n
+ \ \"20.192.238.192/27\",\r\n \"20.193.203.224/27\",\r\n \"20.194.67.64/27\",\r\n
+ \ \"23.98.83.72/29\",\r\n \"23.98.86.32/28\",\r\n \"23.98.86.48/29\",\r\n
+ \ \"23.98.104.176/28\",\r\n \"23.98.108.64/26\",\r\n \"40.64.132.144/28\",\r\n
+ \ \"40.67.52.0/26\",\r\n \"40.67.60.72/29\",\r\n \"40.67.60.112/28\",\r\n
+ \ \"40.67.60.160/29\",\r\n \"40.69.108.80/29\",\r\n \"40.69.108.176/28\",\r\n
+ \ \"40.69.110.160/29\",\r\n \"40.70.148.56/29\",\r\n \"40.70.151.48/28\",\r\n
+ \ \"40.70.151.64/29\",\r\n \"40.71.13.248/29\",\r\n \"40.71.14.120/29\",\r\n
+ \ \"40.71.15.128/28\",\r\n \"40.74.149.40/29\",\r\n \"40.74.149.56/29\",\r\n
+ \ \"40.74.149.80/28\",\r\n \"40.75.35.72/29\",\r\n \"40.75.35.192/28\",\r\n
+ \ \"40.75.35.208/29\",\r\n \"40.78.196.80/29\",\r\n \"40.78.196.144/28\",\r\n
+ \ \"40.78.196.160/29\",\r\n \"40.78.204.8/29\",\r\n \"40.78.204.144/28\",\r\n
+ \ \"40.78.204.192/29\",\r\n \"40.78.229.80/28\",\r\n \"40.78.229.112/28\",\r\n
+ \ \"40.78.236.136/29\",\r\n \"40.78.238.32/28\",\r\n \"40.78.238.48/29\",\r\n
+ \ \"40.78.243.176/28\",\r\n \"40.78.245.128/28\",\r\n \"40.78.251.144/28\",\r\n
+ \ \"40.78.251.208/28\",\r\n \"40.79.132.88/29\",\r\n \"40.79.139.64/28\",\r\n
+ \ \"40.79.139.128/28\",\r\n \"40.79.146.208/28\",\r\n \"40.79.148.64/28\",\r\n
+ \ \"40.79.156.96/28\",\r\n \"40.79.163.64/29\",\r\n \"40.79.163.128/28\",\r\n
+ \ \"40.79.163.144/29\",\r\n \"40.79.165.96/27\",\r\n \"40.79.171.112/28\",\r\n
+ \ \"40.79.171.176/28\",\r\n \"40.79.180.48/29\",\r\n \"40.79.180.128/28\",\r\n
+ \ \"40.79.180.144/29\",\r\n \"40.79.187.192/29\",\r\n \"40.79.189.32/28\",\r\n
+ \ \"40.79.189.48/29\",\r\n \"40.79.195.176/28\",\r\n \"40.79.195.240/28\",\r\n
+ \ \"40.80.51.112/28\",\r\n \"40.80.51.176/28\",\r\n \"40.80.62.32/28\",\r\n
+ \ \"40.80.172.48/28\",\r\n \"40.80.173.64/26\",\r\n \"40.80.176.40/29\",\r\n
+ \ \"40.80.176.56/29\",\r\n \"40.80.176.112/28\",\r\n \"40.80.191.240/28\",\r\n
+ \ \"40.89.20.160/28\",\r\n \"40.89.23.128/26\",\r\n \"40.119.11.192/28\",\r\n
+ \ \"40.120.75.128/27\",\r\n \"51.11.192.0/28\",\r\n \"51.11.192.16/29\",\r\n
+ \ \"51.12.43.64/26\",\r\n \"51.12.99.216/29\",\r\n \"51.12.100.48/28\",\r\n
+ \ \"51.12.100.96/29\",\r\n \"51.12.102.128/27\",\r\n \"51.12.195.64/26\",\r\n
+ \ \"51.12.204.48/28\",\r\n \"51.12.204.96/28\",\r\n \"51.12.206.32/27\",\r\n
+ \ \"51.12.227.200/29\",\r\n \"51.12.229.0/28\",\r\n \"51.12.229.16/29\",\r\n
+ \ \"51.12.235.200/29\",\r\n \"51.12.237.0/28\",\r\n \"51.12.237.16/29\",\r\n
+ \ \"51.104.9.48/28\",\r\n \"51.104.29.224/28\",\r\n \"51.105.67.184/29\",\r\n
+ \ \"51.105.67.216/29\",\r\n \"51.105.69.64/28\",\r\n \"51.105.75.224/28\",\r\n
+ \ \"51.105.77.32/28\",\r\n \"51.105.83.64/26\",\r\n \"51.105.90.176/28\",\r\n
+ \ \"51.105.93.0/26\",\r\n \"51.107.51.48/28\",\r\n \"51.107.53.128/26\",\r\n
+ \ \"51.107.60.56/29\",\r\n \"51.107.60.128/28\",\r\n \"51.107.60.144/29\",\r\n
+ \ \"51.107.147.48/28\",\r\n \"51.107.148.192/26\",\r\n \"51.107.156.64/29\",\r\n
+ \ \"51.107.156.136/29\",\r\n \"51.107.156.144/28\",\r\n \"51.116.49.192/28\",\r\n
+ \ \"51.116.51.64/26\",\r\n \"51.116.60.56/29\",\r\n \"51.116.60.88/29\",\r\n
+ \ \"51.116.60.128/28\",\r\n \"51.116.145.176/28\",\r\n \"51.116.148.0/26\",\r\n
+ \ \"51.116.156.56/29\",\r\n \"51.116.156.168/29\",\r\n \"51.116.158.32/28\",\r\n
+ \ \"51.116.158.48/29\",\r\n \"51.116.243.152/29\",\r\n \"51.116.243.192/28\",\r\n
+ \ \"51.116.243.208/29\",\r\n \"51.116.245.128/27\",\r\n \"51.116.251.40/29\",\r\n
+ \ \"51.116.251.160/28\",\r\n \"51.116.251.176/29\",\r\n \"51.116.253.64/27\",\r\n
+ \ \"51.120.43.96/28\",\r\n \"51.120.45.0/26\",\r\n \"51.120.100.56/29\",\r\n
+ \ \"51.120.100.128/28\",\r\n \"51.120.100.144/29\",\r\n \"51.120.107.200/29\",\r\n
+ \ \"51.120.109.0/28\",\r\n \"51.120.109.16/29\",\r\n \"51.120.110.160/27\",\r\n
+ \ \"51.120.211.200/29\",\r\n \"51.120.213.0/28\",\r\n \"51.120.213.16/29\",\r\n
+ \ \"51.120.220.56/29\",\r\n \"51.120.220.96/28\",\r\n \"51.120.220.112/29\",\r\n
+ \ \"51.120.227.96/28\",\r\n \"51.120.229.0/26\",\r\n \"51.137.164.128/28\",\r\n
+ \ \"51.137.167.0/26\",\r\n \"51.140.148.40/29\",\r\n \"51.140.149.16/29\",\r\n
+ \ \"51.140.212.96/29\",\r\n \"51.140.212.192/28\",\r\n \"51.140.212.208/29\",\r\n
+ \ \"51.143.195.64/26\",\r\n \"51.143.208.64/26\",\r\n \"52.136.51.96/28\",\r\n
+ \ \"52.136.52.128/26\",\r\n \"52.138.92.88/29\",\r\n \"52.138.92.144/28\",\r\n
+ \ \"52.138.92.160/29\",\r\n \"52.138.227.176/28\",\r\n \"52.138.229.48/28\",\r\n
+ \ \"52.140.108.112/28\",\r\n \"52.140.108.128/28\",\r\n \"52.140.111.0/26\",\r\n
+ \ \"52.146.131.192/26\",\r\n \"52.150.152.64/28\",\r\n \"52.150.156.128/26\",\r\n
+ \ \"52.162.111.32/28\",\r\n \"52.162.111.112/28\",\r\n \"52.167.107.112/28\",\r\n
+ \ \"52.167.107.240/28\",\r\n \"52.172.112.64/26\",\r\n \"52.182.141.0/29\",\r\n
+ \ \"52.182.141.32/28\",\r\n \"52.182.141.48/29\",\r\n \"52.228.85.208/28\",\r\n
+ \ \"52.231.20.8/29\",\r\n \"52.231.20.80/28\",\r\n \"52.231.23.0/29\",\r\n
+ \ \"52.231.148.112/29\",\r\n \"52.231.148.176/28\",\r\n \"52.231.148.192/29\",\r\n
+ \ \"52.236.186.248/29\",\r\n \"52.236.187.96/28\",\r\n \"52.236.189.64/29\",\r\n
+ \ \"52.246.155.176/28\",\r\n \"52.246.155.240/28\",\r\n \"52.246.157.32/27\",\r\n
+ \ \"65.52.252.112/29\",\r\n \"65.52.252.224/28\",\r\n \"65.52.252.240/29\",\r\n
+ \ \"102.133.28.96/29\",\r\n \"102.133.28.152/29\",\r\n \"102.133.28.192/28\",\r\n
+ \ \"102.133.58.240/28\",\r\n \"102.133.60.128/26\",\r\n \"102.133.124.80/29\",\r\n
+ \ \"102.133.124.112/28\",\r\n \"102.133.124.128/29\",\r\n
+ \ \"102.133.156.120/29\",\r\n \"102.133.156.152/29\",\r\n
+ \ \"102.133.156.160/28\",\r\n \"102.133.218.160/28\",\r\n
+ \ \"102.133.220.128/26\",\r\n \"102.133.251.88/29\",\r\n
+ \ \"102.133.251.192/28\",\r\n \"102.133.251.208/29\",\r\n
+ \ \"104.46.177.192/26\",\r\n \"104.214.161.0/29\",\r\n \"104.214.161.16/28\",\r\n
+ \ \"104.214.161.32/29\",\r\n \"168.61.142.96/27\",\r\n \"191.233.11.144/28\",\r\n
+ \ \"191.233.14.128/26\",\r\n \"191.233.51.224/27\",\r\n \"191.233.205.112/28\",\r\n
+ \ \"191.233.205.176/28\",\r\n \"191.234.136.96/28\",\r\n
+ \ \"191.234.139.64/26\",\r\n \"191.234.147.200/29\",\r\n
+ \ \"191.234.149.16/28\",\r\n \"191.234.149.128/29\",\r\n
+ \ \"191.234.149.192/27\",\r\n \"191.234.155.200/29\",\r\n
+ \ \"191.234.157.16/28\",\r\n \"191.234.157.32/29\",\r\n \"191.234.157.96/27\",\r\n
+ \ \"2603:1000:4:402::2e0/123\",\r\n \"2603:1000:104:402::2e0/123\",\r\n
+ \ \"2603:1000:104:802::220/123\",\r\n \"2603:1000:104:c02::220/123\",\r\n
+ \ \"2603:1010:6:402::2e0/123\",\r\n \"2603:1010:6:802::220/123\",\r\n
+ \ \"2603:1010:6:c02::220/123\",\r\n \"2603:1010:101:402::2e0/123\",\r\n
+ \ \"2603:1010:304:402::2e0/123\",\r\n \"2603:1010:404:402::2e0/123\",\r\n
+ \ \"2603:1020:5:402::2e0/123\",\r\n \"2603:1020:5:802::220/123\",\r\n
+ \ \"2603:1020:5:c02::220/123\",\r\n \"2603:1020:206:402::2e0/123\",\r\n
+ \ \"2603:1020:206:802::220/123\",\r\n \"2603:1020:206:c02::220/123\",\r\n
+ \ \"2603:1020:305:402::2e0/123\",\r\n \"2603:1020:405:402::2e0/123\",\r\n
+ \ \"2603:1020:605:402::2e0/123\",\r\n \"2603:1020:705:402::2e0/123\",\r\n
+ \ \"2603:1020:705:802::220/123\",\r\n \"2603:1020:705:c02::220/123\",\r\n
+ \ \"2603:1020:805:402::2e0/123\",\r\n \"2603:1020:805:802::220/123\",\r\n
+ \ \"2603:1020:805:c02::220/123\",\r\n \"2603:1020:905:402::2e0/123\",\r\n
+ \ \"2603:1020:a04:402::2e0/123\",\r\n \"2603:1020:a04:802::220/123\",\r\n
+ \ \"2603:1020:a04:c02::220/123\",\r\n \"2603:1020:b04:402::2e0/123\",\r\n
+ \ \"2603:1020:c04:402::2e0/123\",\r\n \"2603:1020:c04:802::220/123\",\r\n
+ \ \"2603:1020:c04:c02::220/123\",\r\n \"2603:1020:d04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:3::2c0/122\",\r\n \"2603:1020:e04:402::2e0/123\",\r\n
+ \ \"2603:1020:e04:802::220/123\",\r\n \"2603:1020:e04:c02::220/123\",\r\n
+ \ \"2603:1020:f04:402::2e0/123\",\r\n \"2603:1020:1004:1::340/122\",\r\n
+ \ \"2603:1020:1004:400::1e0/123\",\r\n \"2603:1020:1004:400::380/123\",\r\n
+ \ \"2603:1020:1004:c02::280/123\",\r\n \"2603:1020:1104:1::100/122\",\r\n
+ \ \"2603:1020:1104:400::2e0/123\",\r\n \"2603:1030:f:2::680/122\",\r\n
+ \ \"2603:1030:f:400::ae0/123\",\r\n \"2603:1030:10:402::2e0/123\",\r\n
+ \ \"2603:1030:10:802::220/123\",\r\n \"2603:1030:10:c02::220/123\",\r\n
+ \ \"2603:1030:104:402::2e0/123\",\r\n \"2603:1030:107::7c0/122\",\r\n
+ \ \"2603:1030:107:400::260/123\",\r\n \"2603:1030:210:402::2e0/123\",\r\n
+ \ \"2603:1030:210:802::220/123\",\r\n \"2603:1030:210:c02::220/123\",\r\n
+ \ \"2603:1030:40b:400::ae0/123\",\r\n \"2603:1030:40b:800::220/123\",\r\n
+ \ \"2603:1030:40b:c00::220/123\",\r\n \"2603:1030:40c:402::2e0/123\",\r\n
+ \ \"2603:1030:40c:802::220/123\",\r\n \"2603:1030:40c:c02::220/123\",\r\n
+ \ \"2603:1030:504::340/122\",\r\n \"2603:1030:504:402::1e0/123\",\r\n
+ \ \"2603:1030:504:402::380/123\",\r\n \"2603:1030:504:802::260/123\",\r\n
+ \ \"2603:1030:504:c02::280/123\",\r\n \"2603:1030:608:402::2e0/123\",\r\n
+ \ \"2603:1030:807:402::2e0/123\",\r\n \"2603:1030:807:802::220/123\",\r\n
+ \ \"2603:1030:807:c02::220/123\",\r\n \"2603:1030:a07:402::960/123\",\r\n
+ \ \"2603:1030:b04:402::2e0/123\",\r\n \"2603:1030:c06:400::ae0/123\",\r\n
+ \ \"2603:1030:c06:802::220/123\",\r\n \"2603:1030:c06:c02::220/123\",\r\n
+ \ \"2603:1030:f05:402::2e0/123\",\r\n \"2603:1030:f05:802::220/123\",\r\n
+ \ \"2603:1030:f05:c02::220/123\",\r\n \"2603:1030:1005:402::2e0/123\",\r\n
+ \ \"2603:1040:5:402::2e0/123\",\r\n \"2603:1040:5:802::220/123\",\r\n
+ \ \"2603:1040:5:c02::220/123\",\r\n \"2603:1040:207:402::2e0/123\",\r\n
+ \ \"2603:1040:407:402::2e0/123\",\r\n \"2603:1040:407:802::220/123\",\r\n
+ \ \"2603:1040:407:c02::220/123\",\r\n \"2603:1040:606:402::2e0/123\",\r\n
+ \ \"2603:1040:806:402::2e0/123\",\r\n \"2603:1040:904:402::2e0/123\",\r\n
+ \ \"2603:1040:904:802::220/123\",\r\n \"2603:1040:904:c02::220/123\",\r\n
+ \ \"2603:1040:a06:402::2e0/123\",\r\n \"2603:1040:a06:802::220/123\",\r\n
+ \ \"2603:1040:a06:c02::220/123\",\r\n \"2603:1040:b04:402::2e0/123\",\r\n
+ \ \"2603:1040:c06:402::2e0/123\",\r\n \"2603:1040:d04:1::340/122\",\r\n
+ \ \"2603:1040:d04:400::1e0/123\",\r\n \"2603:1040:d04:400::380/123\",\r\n
+ \ \"2603:1040:d04:c02::280/123\",\r\n \"2603:1040:f05:2::200/122\",\r\n
+ \ \"2603:1040:f05:402::2e0/123\",\r\n \"2603:1040:f05:802::220/123\",\r\n
+ \ \"2603:1040:f05:c02::220/123\",\r\n \"2603:1040:1104:1::100/122\",\r\n
+ \ \"2603:1040:1104:400::2e0/123\",\r\n \"2603:1050:6:402::2e0/123\",\r\n
+ \ \"2603:1050:6:802::220/123\",\r\n \"2603:1050:6:c02::220/123\",\r\n
+ \ \"2603:1050:403:400::200/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ApplicationInsightsAvailability\",\r\n \"id\":
+ \"ApplicationInsightsAvailability\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ApplicationInsightsAvailability\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.86.97.224/27\",\r\n \"13.86.98.0/27\",\r\n
+ \ \"13.86.98.48/28\",\r\n \"13.86.98.64/28\",\r\n \"20.37.156.64/27\",\r\n
+ \ \"20.37.192.80/29\",\r\n \"20.38.80.80/28\",\r\n \"20.40.104.96/27\",\r\n
+ \ \"20.40.104.128/27\",\r\n \"20.40.124.176/28\",\r\n \"20.40.124.240/28\",\r\n
+ \ \"20.40.125.80/28\",\r\n \"20.40.129.32/27\",\r\n \"20.40.129.64/26\",\r\n
+ \ \"20.40.129.128/27\",\r\n \"20.42.4.64/27\",\r\n \"20.42.35.32/28\",\r\n
+ \ \"20.42.35.64/26\",\r\n \"20.42.35.128/28\",\r\n \"20.42.129.32/27\",\r\n
+ \ \"20.43.40.80/28\",\r\n \"20.43.64.80/29\",\r\n \"20.43.128.96/29\",\r\n
+ \ \"20.45.5.160/27\",\r\n \"20.45.5.192/26\",\r\n \"20.189.106.64/29\",\r\n
+ \ \"23.100.224.16/28\",\r\n \"23.100.224.32/27\",\r\n \"23.100.224.64/26\",\r\n
+ \ \"23.100.225.0/28\",\r\n \"40.74.24.80/28\",\r\n \"40.80.186.128/26\",\r\n
+ \ \"40.91.82.48/28\",\r\n \"40.91.82.64/26\",\r\n \"40.91.82.128/28\",\r\n
+ \ \"40.119.8.96/27\",\r\n \"51.104.24.80/29\",\r\n \"51.105.9.128/27\",\r\n
+ \ \"51.105.9.160/28\",\r\n \"51.137.160.80/29\",\r\n \"51.144.56.96/27\",\r\n
+ \ \"51.144.56.128/26\",\r\n \"52.139.250.96/27\",\r\n \"52.139.250.128/27\",\r\n
+ \ \"52.140.232.160/27\",\r\n \"52.140.232.192/28\",\r\n \"52.158.28.64/26\",\r\n
+ \ \"52.229.216.48/28\",\r\n \"52.229.216.64/27\",\r\n \"191.233.26.64/28\",\r\n
+ \ \"191.233.26.128/28\",\r\n \"191.233.26.176/28\",\r\n \"191.235.224.80/29\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ApplicationInsightsAvailability.JapanEast\",\r\n
+ \ \"id\": \"ApplicationInsightsAvailability.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"ApplicationInsightsAvailability\",\r\n \"addressPrefixes\": [\r\n
+ \ \"20.43.64.80/29\",\r\n \"52.140.232.160/27\",\r\n \"52.140.232.192/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService\",\r\n
+ \ \"id\": \"AppService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.110/32\",\r\n \"13.65.30.245/32\",\r\n
+ \ \"13.65.37.122/32\",\r\n \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n
+ \ \"13.65.42.183/32\",\r\n \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n
+ \ \"13.65.89.91/32\",\r\n \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n
+ \ \"13.65.95.109/32\",\r\n \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n
+ \ \"13.65.210.166/32\",\r\n \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n
+ \ \"13.65.243.110/32\",\r\n \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n
+ \ \"13.66.39.88/32\",\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.67.9.0/25\",\r\n
+ \ \"13.67.56.225/32\",\r\n \"13.67.63.90/32\",\r\n \"13.67.129.26/32\",\r\n
+ \ \"13.67.141.98/32\",\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.69.68.0/23\",\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n \"13.71.122.35/32\",\r\n
+ \ \"13.71.123.138/32\",\r\n \"13.71.149.151/32\",\r\n \"13.71.170.128/27\",\r\n
+ \ \"13.71.194.192/27\",\r\n \"13.73.1.134/32\",\r\n \"13.73.26.73/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.74.41.233/32\",\r\n
+ \ \"13.74.147.218/32\",\r\n \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n
+ \ \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n \"13.75.47.15/32\",\r\n
+ \ \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n \"13.75.115.40/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"13.77.7.175/32\",\r\n \"13.77.50.96/27\",\r\n \"13.77.82.141/32\",\r\n
+ \ \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"13.78.59.237/32\",\r\n
+ \ \"13.78.106.96/27\",\r\n \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n
+ \ \"13.78.150.96/32\",\r\n \"13.78.184.89/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n \"13.82.175.96/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"13.89.57.7/32\",\r\n
+ \ \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n \"13.90.143.69/32\",\r\n
+ \ \"13.90.213.204/32\",\r\n \"13.91.40.166/32\",\r\n \"13.91.242.166/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n \"13.93.220.109/32\",\r\n
+ \ \"13.93.231.75/32\",\r\n \"13.94.47.87/32\",\r\n \"13.94.143.57/32\",\r\n
+ \ \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n \"13.95.82.181/32\",\r\n
+ \ \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n \"13.95.238.192/32\",\r\n
+ \ \"20.36.43.207/32\",\r\n \"20.36.72.230/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n \"20.37.66.0/27\",\r\n
+ \ \"20.37.74.96/27\",\r\n \"20.37.196.192/27\",\r\n \"20.37.226.0/27\",\r\n
+ \ \"20.38.138.0/27\",\r\n \"20.38.146.160/27\",\r\n \"20.39.11.104/29\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"20.41.66.224/27\",\r\n \"20.41.195.192/27\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.42.128.96/27\",\r\n \"20.42.228.160/27\",\r\n
+ \ \"20.43.43.32/27\",\r\n \"20.43.67.32/27\",\r\n \"20.43.132.128/25\",\r\n
+ \ \"20.44.2.32/27\",\r\n \"20.44.26.160/27\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.45.196.16/29\",\r\n \"20.49.82.32/27\",\r\n \"20.49.90.32/27\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"20.49.104.0/25\",\r\n \"20.50.2.0/23\",\r\n
+ \ \"20.50.64.0/25\",\r\n \"20.72.26.32/27\",\r\n \"20.150.170.192/27\",\r\n
+ \ \"20.150.178.160/27\",\r\n \"20.150.186.160/27\",\r\n \"20.188.98.74/32\",\r\n
+ \ \"20.189.104.96/27\",\r\n \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n
+ \ \"20.192.98.160/27\",\r\n \"20.192.234.128/27\",\r\n \"20.193.202.128/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"23.96.0.52/32\",\r\n \"23.96.1.109/32\",\r\n
+ \ \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n \"23.96.96.142/32\",\r\n
+ \ \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n \"23.96.113.128/32\",\r\n
+ \ \"23.96.124.25/32\",\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n
+ \ \"23.96.207.177/32\",\r\n \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n
+ \ \"23.97.56.169/32\",\r\n \"23.97.79.119/32\",\r\n \"23.97.96.32/32\",\r\n
+ \ \"23.97.160.56/32\",\r\n \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n
+ \ \"23.97.195.129/32\",\r\n \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n
+ \ \"23.97.216.47/32\",\r\n \"23.97.224.11/32\",\r\n \"23.98.64.36/32\",\r\n
+ \ \"23.98.64.158/32\",\r\n \"23.99.0.12/32\",\r\n \"23.99.65.65/32\",\r\n
+ \ \"23.99.91.55/32\",\r\n \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n
+ \ \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n \"23.99.192.132/32\",\r\n
+ \ \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n \"23.99.224.56/32\",\r\n
+ \ \"23.100.1.29/32\",\r\n \"23.100.46.198/32\",\r\n \"23.100.48.106/32\",\r\n
+ \ \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n \"23.100.56.27/32\",\r\n
+ \ \"23.100.72.240/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"23.101.27.182/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.101.67.245/32\",\r\n \"23.101.118.145/32\",\r\n \"23.101.119.44/32\",\r\n
+ \ \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n \"23.101.125.65/32\",\r\n
+ \ \"23.101.147.117/32\",\r\n \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n
+ \ \"23.101.172.244/32\",\r\n \"23.101.180.75/32\",\r\n \"23.101.203.117/32\",\r\n
+ \ \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"23.101.224.24/32\",\r\n \"23.101.230.162/32\",\r\n \"23.102.12.43/32\",\r\n
+ \ \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n \"23.102.25.149/32\",\r\n
+ \ \"23.102.28.178/32\",\r\n \"23.102.154.38/32\",\r\n \"23.102.161.217/32\",\r\n
+ \ \"23.102.191.170/32\",\r\n \"40.64.128.224/27\",\r\n \"40.67.58.192/27\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.106.96/27\",\r\n \"40.69.190.41/32\",\r\n
+ \ \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n \"40.69.218.150/32\",\r\n
+ \ \"40.70.27.35/32\",\r\n \"40.70.147.0/25\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.74.100.128/27\",\r\n
+ \ \"40.74.133.20/32\",\r\n \"40.74.245.188/32\",\r\n \"40.74.253.108/32\",\r\n
+ \ \"40.74.255.112/32\",\r\n \"40.76.5.137/32\",\r\n \"40.76.192.15/32\",\r\n
+ \ \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n \"40.76.223.101/32\",\r\n
+ \ \"40.77.56.174/32\",\r\n \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n
+ \ \"40.78.48.219/32\",\r\n \"40.78.194.96/27\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"40.79.65.200/32\",\r\n \"40.79.130.128/27\",\r\n \"40.79.154.192/27\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.79.178.96/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.80.50.160/27\",\r\n \"40.80.58.224/27\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.80.170.224/27\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"40.82.191.84/32\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.82.255.128/25\",\r\n \"40.83.16.172/32\",\r\n \"40.83.72.59/32\",\r\n
+ \ \"40.83.124.73/32\",\r\n \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n
+ \ \"40.83.182.206/32\",\r\n \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n
+ \ \"40.84.54.203/32\",\r\n \"40.84.59.174/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.85.74.227/32\",\r\n
+ \ \"40.85.92.115/32\",\r\n \"40.85.96.208/32\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n \"40.86.86.144/32\",\r\n
+ \ \"40.86.91.212/32\",\r\n \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n
+ \ \"40.86.225.89/32\",\r\n \"40.86.230.96/32\",\r\n \"40.87.65.131/32\",\r\n
+ \ \"40.87.70.95/32\",\r\n \"40.89.19.0/27\",\r\n \"40.89.131.148/32\",\r\n
+ \ \"40.89.141.103/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.112.142.148/32\",\r\n \"40.112.143.134/32\",\r\n
+ \ \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n \"40.112.165.44/32\",\r\n
+ \ \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n \"40.112.192.69/32\",\r\n
+ \ \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n \"40.113.2.52/32\",\r\n
+ \ \"40.113.65.9/32\",\r\n \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n
+ \ \"40.113.90.202/32\",\r\n \"40.113.126.251/32\",\r\n \"40.113.131.37/32\",\r\n
+ \ \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n
+ \ \"40.114.228.161/32\",\r\n \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n
+ \ \"40.115.55.251/32\",\r\n \"40.115.98.85/32\",\r\n \"40.115.179.121/32\",\r\n
+ \ \"40.115.251.148/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n
+ \ \"40.118.96.231/32\",\r\n \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n
+ \ \"40.118.102.46/32\",\r\n \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n
+ \ \"40.118.246.51/32\",\r\n \"40.118.255.59/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.120.74.32/27\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n \"40.124.12.75/32\",\r\n
+ \ \"40.124.13.58/32\",\r\n \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n
+ \ \"40.126.242.59/32\",\r\n \"40.126.245.169/32\",\r\n \"40.127.132.204/32\",\r\n
+ \ \"40.127.139.252/32\",\r\n \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n
+ \ \"51.12.98.192/27\",\r\n \"51.12.202.192/27\",\r\n \"51.12.226.160/27\",\r\n
+ \ \"51.12.234.160/27\",\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.105.90.32/27\",\r\n \"51.105.172.25/32\",\r\n
+ \ \"51.107.50.0/27\",\r\n \"51.107.58.160/27\",\r\n \"51.107.146.0/27\",\r\n
+ \ \"51.107.154.160/27\",\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n \"51.116.242.160/27\",\r\n
+ \ \"51.116.250.160/27\",\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"51.120.218.192/27\",\r\n
+ \ \"51.120.226.0/27\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.137.163.32/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.140.210.96/27\",\r\n \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n
+ \ \"51.141.12.112/32\",\r\n \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n
+ \ \"51.141.45.207/32\",\r\n \"51.141.90.252/32\",\r\n \"51.143.102.21/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n
+ \ \"51.144.116.43/32\",\r\n \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n
+ \ \"52.136.50.0/27\",\r\n \"52.136.138.55/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.140.106.224/27\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"52.150.140.224/27\",\r\n \"52.151.62.51/32\",\r\n \"52.160.40.218/32\",\r\n
+ \ \"52.161.96.193/32\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"52.172.54.225/32\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"52.173.28.95/32\",\r\n \"52.173.36.83/32\",\r\n
+ \ \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n \"52.173.83.49/32\",\r\n
+ \ \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n \"52.173.94.173/32\",\r\n
+ \ \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n \"52.173.139.125/32\",\r\n
+ \ \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n \"52.173.184.147/32\",\r\n
+ \ \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.175.158.219/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.176.2.229/32\",\r\n
+ \ \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n \"52.176.6.37/32\",\r\n
+ \ \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n \"52.176.149.197/32\",\r\n
+ \ \"52.176.165.69/32\",\r\n \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n
+ \ \"52.177.206.73/32\",\r\n \"52.178.29.39/32\",\r\n \"52.178.37.244/32\",\r\n
+ \ \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n \"52.178.46.181/32\",\r\n
+ \ \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n \"52.178.89.129/32\",\r\n
+ \ \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n \"52.178.105.179/32\",\r\n
+ \ \"52.178.114.226/32\",\r\n \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n
+ \ \"52.178.179.169/32\",\r\n \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n
+ \ \"52.178.208.12/32\",\r\n \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n
+ \ \"52.179.97.15/32\",\r\n \"52.179.188.206/32\",\r\n \"52.180.178.6/32\",\r\n
+ \ \"52.180.183.66/32\",\r\n \"52.183.82.125/32\",\r\n \"52.184.162.135/32\",\r\n
+ \ \"52.184.193.103/32\",\r\n \"52.184.193.104/32\",\r\n \"52.187.17.126/32\",\r\n
+ \ \"52.187.36.104/32\",\r\n \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n
+ \ \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n \"52.189.213.49/32\",\r\n
+ \ \"52.225.179.39/32\",\r\n \"52.225.190.65/32\",\r\n \"52.226.134.64/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"52.229.115.84/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n \"52.231.38.95/32\",\r\n
+ \ \"52.231.77.58/32\",\r\n \"52.231.146.96/27\",\r\n \"52.231.200.101/32\",\r\n
+ \ \"52.231.200.179/32\",\r\n \"52.232.19.237/32\",\r\n \"52.232.26.228/32\",\r\n
+ \ \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n \"52.232.127.196/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"52.234.209.94/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n
+ \ \"52.237.246.162/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"52.243.39.89/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"52.252.160.21/32\",\r\n \"52.253.224.223/32\",\r\n
+ \ \"52.255.35.249/32\",\r\n \"52.255.54.134/32\",\r\n \"65.52.24.41/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"65.52.213.73/32\",\r\n \"65.52.217.59/32\",\r\n
+ \ \"65.52.218.253/32\",\r\n \"65.52.250.96/27\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n \"102.133.122.160/27\",\r\n
+ \ \"102.133.154.32/27\",\r\n \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"104.40.3.53/32\",\r\n \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n
+ \ \"104.40.53.219/32\",\r\n \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n
+ \ \"104.40.92.107/32\",\r\n \"104.40.129.89/32\",\r\n \"104.40.147.180/32\",\r\n
+ \ \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n \"104.40.179.243/32\",\r\n
+ \ \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n \"104.40.187.26/32\",\r\n
+ \ \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n \"104.40.215.219/32\",\r\n
+ \ \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n \"104.41.9.139/32\",\r\n
+ \ \"104.41.13.179/32\",\r\n \"104.41.63.108/32\",\r\n \"104.41.186.103/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.42.53.248/32\",\r\n
+ \ \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n \"104.42.148.55/32\",\r\n
+ \ \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n \"104.42.188.146/32\",\r\n
+ \ \"104.42.231.5/32\",\r\n \"104.43.129.105/32\",\r\n \"104.43.140.101/32\",\r\n
+ \ \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n \"104.43.246.71/32\",\r\n
+ \ \"104.43.254.102/32\",\r\n \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"104.45.129.178/32\",\r\n \"104.45.141.247/32\",\r\n
+ \ \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n \"104.45.154.200/32\",\r\n
+ \ \"104.45.226.98/32\",\r\n \"104.45.231.79/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.46.101.59/32\",\r\n
+ \ \"104.47.137.62/32\",\r\n \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n
+ \ \"104.47.164.119/32\",\r\n \"104.208.48.107/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"104.210.38.149/32\",\r\n \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n
+ \ \"104.210.145.181/32\",\r\n \"104.210.147.57/32\",\r\n
+ \ \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.211.26.212/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"104.211.146.96/27\",\r\n \"104.211.160.159/32\",\r\n
+ \ \"104.211.179.11/32\",\r\n \"104.211.184.197/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"104.215.11.176/32\",\r\n
+ \ \"104.215.58.230/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n
+ \ \"111.221.95.27/32\",\r\n \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"137.117.9.212/32\",\r\n \"137.117.17.70/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.117.166.35/32\",\r\n \"137.117.175.14/32\",\r\n
+ \ \"137.117.203.130/32\",\r\n \"137.117.211.244/32\",\r\n
+ \ \"137.117.218.101/32\",\r\n \"137.117.224.218/32\",\r\n
+ \ \"137.117.225.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"138.91.0.30/32\",\r\n \"138.91.16.18/32\",\r\n \"138.91.224.84/32\",\r\n
+ \ \"138.91.225.40/32\",\r\n \"138.91.240.81/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.61.152.29/32\",\r\n \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n
+ \ \"168.61.218.125/32\",\r\n \"168.62.20.37/32\",\r\n \"168.62.48.183/32\",\r\n
+ \ \"168.62.180.173/32\",\r\n \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.53.239/32\",\r\n \"168.63.107.5/32\",\r\n
+ \ \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n \"191.233.50.32/27\",\r\n
+ \ \"191.233.82.44/32\",\r\n \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.16.188/32\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n \"191.235.177.30/32\",\r\n
+ \ \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"191.236.16.12/32\",\r\n \"191.236.59.67/32\",\r\n
+ \ \"191.236.80.12/32\",\r\n \"191.236.106.123/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"191.236.192.121/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n
+ \ \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"191.239.58.162/32\",\r\n \"191.239.188.11/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1000:4:402::a0/123\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\",\r\n
+ \ \"2603:1010:101:402::a0/123\",\r\n \"2603:1010:304:402::a0/123\",\r\n
+ \ \"2603:1010:404:402::a0/123\",\r\n \"2603:1020:5:402::a0/123\",\r\n
+ \ \"2603:1020:5:802::a0/123\",\r\n \"2603:1020:5:c02::a0/123\",\r\n
+ \ \"2603:1020:206:402::a0/123\",\r\n \"2603:1020:206:802::a0/123\",\r\n
+ \ \"2603:1020:206:c02::a0/123\",\r\n \"2603:1020:305:402::a0/123\",\r\n
+ \ \"2603:1020:405:402::a0/123\",\r\n \"2603:1020:605:402::a0/123\",\r\n
+ \ \"2603:1020:705:402::a0/123\",\r\n \"2603:1020:705:802::a0/123\",\r\n
+ \ \"2603:1020:705:c02::a0/123\",\r\n \"2603:1020:805:402::a0/123\",\r\n
+ \ \"2603:1020:805:802::a0/123\",\r\n \"2603:1020:805:c02::a0/123\",\r\n
+ \ \"2603:1020:905:402::a0/123\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\",\r\n
+ \ \"2603:1020:b04:402::a0/123\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\",\r\n
+ \ \"2603:1020:d04:402::a0/123\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\",\r\n
+ \ \"2603:1020:f04:402::a0/123\",\r\n \"2603:1020:1004:400::a0/123\",\r\n
+ \ \"2603:1020:1004:800::160/123\",\r\n \"2603:1020:1004:800::360/123\",\r\n
+ \ \"2603:1020:1104:400::a0/123\",\r\n \"2603:1030:f:400::8a0/123\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\",\r\n \"2603:1030:104:402::a0/123\",\r\n
+ \ \"2603:1030:107:400::20/123\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\",\r\n
+ \ \"2603:1030:40b:400::8a0/123\",\r\n \"2603:1030:40b:800::a0/123\",\r\n
+ \ \"2603:1030:40b:c00::a0/123\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\",\r\n
+ \ \"2603:1030:504:402::a0/123\",\r\n \"2603:1030:504:802::160/123\",\r\n
+ \ \"2603:1030:504:802::360/123\",\r\n \"2603:1030:504:c02::3a0/123\",\r\n
+ \ \"2603:1030:608:402::a0/123\",\r\n \"2603:1030:807:402::a0/123\",\r\n
+ \ \"2603:1030:807:802::a0/123\",\r\n \"2603:1030:807:c02::a0/123\",\r\n
+ \ \"2603:1030:a07:402::a0/123\",\r\n \"2603:1030:b04:402::a0/123\",\r\n
+ \ \"2603:1030:c06:400::8a0/123\",\r\n \"2603:1030:c06:802::a0/123\",\r\n
+ \ \"2603:1030:c06:c02::a0/123\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\",\r\n
+ \ \"2603:1030:1005:402::a0/123\",\r\n \"2603:1040:5:402::a0/123\",\r\n
+ \ \"2603:1040:5:802::a0/123\",\r\n \"2603:1040:5:c02::a0/123\",\r\n
+ \ \"2603:1040:207:402::a0/123\",\r\n \"2603:1040:407:402::a0/123\",\r\n
+ \ \"2603:1040:407:802::a0/123\",\r\n \"2603:1040:407:c02::a0/123\",\r\n
+ \ \"2603:1040:606:402::a0/123\",\r\n \"2603:1040:806:402::a0/123\",\r\n
+ \ \"2603:1040:904:402::a0/123\",\r\n \"2603:1040:904:802::a0/123\",\r\n
+ \ \"2603:1040:904:c02::a0/123\",\r\n \"2603:1040:a06:402::a0/123\",\r\n
+ \ \"2603:1040:a06:802::a0/123\",\r\n \"2603:1040:a06:c02::a0/123\",\r\n
+ \ \"2603:1040:b04:402::a0/123\",\r\n \"2603:1040:c06:402::a0/123\",\r\n
+ \ \"2603:1040:d04:400::a0/123\",\r\n \"2603:1040:d04:800::160/123\",\r\n
+ \ \"2603:1040:d04:800::360/123\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\",\r\n
+ \ \"2603:1040:1104:400::a0/123\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\",\r\n
+ \ \"2603:1050:403:400::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaCentral\",\r\n \"id\":
+ \"AppService.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.43.207/32\",\r\n \"20.36.106.96/27\",\r\n
+ \ \"20.37.226.0/27\",\r\n \"2603:1010:304:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppService.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.230/32\",\r\n \"20.36.117.0/27\",\r\n \"20.36.122.0/27\",\r\n
+ \ \"2603:1010:404:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.AustraliaEast\",\r\n \"id\": \"AppService.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.70.72.32/27\",\r\n \"13.70.123.149/32\",\r\n
+ \ \"13.75.138.224/32\",\r\n \"13.75.147.143/32\",\r\n \"13.75.147.201/32\",\r\n
+ \ \"13.75.218.45/32\",\r\n \"20.37.196.192/27\",\r\n \"23.101.208.52/32\",\r\n
+ \ \"40.79.163.160/27\",\r\n \"40.79.171.64/27\",\r\n \"40.82.217.93/32\",\r\n
+ \ \"40.126.227.158/32\",\r\n \"40.126.236.22/32\",\r\n \"40.126.242.59/32\",\r\n
+ \ \"40.126.245.169/32\",\r\n \"52.187.206.243/32\",\r\n \"52.187.229.23/32\",\r\n
+ \ \"52.237.205.163/32\",\r\n \"52.237.214.221/32\",\r\n \"52.237.246.162/32\",\r\n
+ \ \"104.210.69.241/32\",\r\n \"104.210.92.71/32\",\r\n \"2603:1010:6:402::a0/123\",\r\n
+ \ \"2603:1010:6:802::a0/123\",\r\n \"2603:1010:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppService.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.146.110/32\",\r\n \"13.70.147.206/32\",\r\n
+ \ \"13.73.116.45/32\",\r\n \"13.73.118.104/32\",\r\n \"13.77.7.175/32\",\r\n
+ \ \"13.77.50.96/27\",\r\n \"20.42.228.160/27\",\r\n \"23.101.224.24/32\",\r\n
+ \ \"23.101.230.162/32\",\r\n \"52.189.213.49/32\",\r\n \"52.255.35.249/32\",\r\n
+ \ \"52.255.54.134/32\",\r\n \"191.239.188.11/32\",\r\n \"2603:1010:101:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.BrazilSouth\",\r\n
+ \ \"id\": \"AppService.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.96.32/32\",\r\n \"104.41.9.139/32\",\r\n \"104.41.13.179/32\",\r\n
+ \ \"104.41.63.108/32\",\r\n \"191.232.38.77/32\",\r\n \"191.232.176.16/32\",\r\n
+ \ \"191.233.203.32/27\",\r\n \"191.234.146.160/27\",\r\n
+ \ \"191.234.154.160/27\",\r\n \"191.235.81.73/32\",\r\n \"191.235.90.70/32\",\r\n
+ \ \"191.235.228.32/27\",\r\n \"2603:1050:6:402::a0/123\",\r\n
+ \ \"2603:1050:6:802::a0/123\",\r\n \"2603:1050:6:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaCentral\",\r\n
+ \ \"id\": \"AppService.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.128/27\",\r\n \"20.38.146.160/27\",\r\n
+ \ \"40.82.191.84/32\",\r\n \"40.85.212.173/32\",\r\n \"40.85.230.182/32\",\r\n
+ \ \"52.228.42.76/32\",\r\n \"52.228.84.32/27\",\r\n \"52.228.121.123/32\",\r\n
+ \ \"52.233.38.143/32\",\r\n \"52.237.18.220/32\",\r\n \"52.237.22.139/32\",\r\n
+ \ \"52.246.154.160/27\",\r\n \"2603:1030:f05:402::a0/123\",\r\n
+ \ \"2603:1030:f05:802::a0/123\",\r\n \"2603:1030:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CanadaEast\",\r\n
+ \ \"id\": \"AppService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.96/27\",\r\n \"40.86.225.89/32\",\r\n
+ \ \"40.86.230.96/32\",\r\n \"40.89.19.0/27\",\r\n \"52.229.115.84/32\",\r\n
+ \ \"52.242.22.213/32\",\r\n \"52.242.27.213/32\",\r\n \"2603:1030:1005:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.CentralIndia\",\r\n
+ \ \"id\": \"AppService.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.98.160/27\",\r\n \"40.80.50.160/27\",\r\n
+ \ \"52.140.106.224/27\",\r\n \"52.172.195.80/32\",\r\n \"52.172.204.196/32\",\r\n
+ \ \"52.172.219.121/32\",\r\n \"104.211.81.32/27\",\r\n \"104.211.97.138/32\",\r\n
+ \ \"2603:1040:a06:402::a0/123\",\r\n \"2603:1040:a06:802::a0/123\",\r\n
+ \ \"2603:1040:a06:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUS\",\r\n \"id\": \"AppService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.129.26/32\",\r\n \"13.67.141.98/32\",\r\n
+ \ \"13.89.57.7/32\",\r\n \"13.89.172.0/23\",\r\n \"13.89.238.239/32\",\r\n
+ \ \"20.40.202.0/23\",\r\n \"23.99.128.52/32\",\r\n \"23.99.183.149/32\",\r\n
+ \ \"23.99.192.132/32\",\r\n \"23.99.196.180/32\",\r\n \"23.99.206.151/32\",\r\n
+ \ \"23.99.224.56/32\",\r\n \"23.100.82.11/32\",\r\n \"23.101.118.145/32\",\r\n
+ \ \"23.101.119.44/32\",\r\n \"23.101.119.163/32\",\r\n \"23.101.120.195/32\",\r\n
+ \ \"23.101.125.65/32\",\r\n \"40.69.190.41/32\",\r\n \"40.77.56.174/32\",\r\n
+ \ \"40.83.16.172/32\",\r\n \"40.86.86.144/32\",\r\n \"40.86.91.212/32\",\r\n
+ \ \"40.86.96.177/32\",\r\n \"40.86.99.202/32\",\r\n \"40.113.204.88/32\",\r\n
+ \ \"40.113.232.243/32\",\r\n \"40.113.236.45/32\",\r\n \"40.122.36.65/32\",\r\n
+ \ \"40.122.65.162/32\",\r\n \"40.122.110.154/32\",\r\n \"40.122.114.229/32\",\r\n
+ \ \"52.165.129.203/32\",\r\n \"52.165.135.234/32\",\r\n \"52.165.155.12/32\",\r\n
+ \ \"52.165.155.237/32\",\r\n \"52.165.163.223/32\",\r\n \"52.165.168.40/32\",\r\n
+ \ \"52.165.174.123/32\",\r\n \"52.165.184.170/32\",\r\n \"52.165.220.33/32\",\r\n
+ \ \"52.165.224.81/32\",\r\n \"52.165.237.15/32\",\r\n \"52.173.28.95/32\",\r\n
+ \ \"52.173.36.83/32\",\r\n \"52.173.76.33/32\",\r\n \"52.173.77.140/32\",\r\n
+ \ \"52.173.83.49/32\",\r\n \"52.173.84.157/32\",\r\n \"52.173.87.130/32\",\r\n
+ \ \"52.173.94.173/32\",\r\n \"52.173.134.115/32\",\r\n \"52.173.139.99/32\",\r\n
+ \ \"52.173.139.125/32\",\r\n \"52.173.149.254/32\",\r\n \"52.173.151.229/32\",\r\n
+ \ \"52.173.184.147/32\",\r\n \"52.173.245.249/32\",\r\n \"52.173.249.137/32\",\r\n
+ \ \"52.176.2.229/32\",\r\n \"52.176.5.241/32\",\r\n \"52.176.6.0/32\",\r\n
+ \ \"52.176.6.37/32\",\r\n \"52.176.61.128/32\",\r\n \"52.176.104.120/32\",\r\n
+ \ \"52.176.149.197/32\",\r\n \"52.176.165.69/32\",\r\n \"104.43.129.105/32\",\r\n
+ \ \"104.43.140.101/32\",\r\n \"104.43.142.33/32\",\r\n \"104.43.221.31/32\",\r\n
+ \ \"104.43.246.71/32\",\r\n \"104.43.254.102/32\",\r\n \"168.61.152.29/32\",\r\n
+ \ \"168.61.159.114/32\",\r\n \"168.61.217.214/32\",\r\n \"168.61.218.125/32\",\r\n
+ \ \"2603:1030:10:402::a0/123\",\r\n \"2603:1030:10:802::a0/123\",\r\n
+ \ \"2603:1030:10:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.CentralUSEUAP\",\r\n \"id\": \"AppService.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.196.16/29\",\r\n \"40.78.204.160/27\",\r\n
+ \ \"52.180.178.6/32\",\r\n \"52.180.183.66/32\",\r\n \"104.208.48.107/32\",\r\n
+ \ \"2603:1030:f:400::8a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.EastAsia\",\r\n \"id\": \"AppService.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.34.160/27\",\r\n \"13.75.46.26/32\",\r\n
+ \ \"13.75.47.15/32\",\r\n \"13.75.89.224/32\",\r\n \"13.75.112.108/32\",\r\n
+ \ \"13.75.115.40/32\",\r\n \"13.94.47.87/32\",\r\n \"20.189.104.96/27\",\r\n
+ \ \"20.189.109.96/27\",\r\n \"20.189.112.66/32\",\r\n \"23.97.79.119/32\",\r\n
+ \ \"23.99.110.192/32\",\r\n \"23.99.116.70/32\",\r\n \"23.101.10.141/32\",\r\n
+ \ \"40.83.72.59/32\",\r\n \"40.83.124.73/32\",\r\n \"65.52.160.119/32\",\r\n
+ \ \"65.52.168.70/32\",\r\n \"191.234.16.188/32\",\r\n \"207.46.144.49/32\",\r\n
+ \ \"207.46.147.148/32\",\r\n \"2603:1040:207:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS\",\r\n
+ \ \"id\": \"AppService.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.93.245/32\",\r\n \"13.82.101.179/32\",\r\n
+ \ \"13.82.175.96/32\",\r\n \"13.90.143.69/32\",\r\n \"13.90.213.204/32\",\r\n
+ \ \"13.92.139.214/32\",\r\n \"13.92.193.110/32\",\r\n \"13.92.237.218/32\",\r\n
+ \ \"20.42.26.252/32\",\r\n \"20.49.104.0/25\",\r\n \"23.96.0.52/32\",\r\n
+ \ \"23.96.1.109/32\",\r\n \"23.96.13.243/32\",\r\n \"23.96.32.128/32\",\r\n
+ \ \"23.96.96.142/32\",\r\n \"23.96.103.159/32\",\r\n \"23.96.112.53/32\",\r\n
+ \ \"23.96.113.128/32\",\r\n \"23.96.124.25/32\",\r\n \"40.71.0.179/32\",\r\n
+ \ \"40.71.11.128/25\",\r\n \"40.71.177.34/32\",\r\n \"40.71.199.117/32\",\r\n
+ \ \"40.71.234.254/32\",\r\n \"40.71.250.191/32\",\r\n \"40.76.5.137/32\",\r\n
+ \ \"40.76.192.15/32\",\r\n \"40.76.210.54/32\",\r\n \"40.76.218.33/32\",\r\n
+ \ \"40.76.223.101/32\",\r\n \"40.79.154.192/27\",\r\n \"40.85.190.10/32\",\r\n
+ \ \"40.87.65.131/32\",\r\n \"40.87.70.95/32\",\r\n \"40.114.13.25/32\",\r\n
+ \ \"40.114.41.245/32\",\r\n \"40.114.51.68/32\",\r\n \"40.114.68.21/32\",\r\n
+ \ \"40.114.106.25/32\",\r\n \"40.117.154.240/32\",\r\n \"40.117.188.126/32\",\r\n
+ \ \"40.117.190.72/32\",\r\n \"40.121.8.241/32\",\r\n \"40.121.16.193/32\",\r\n
+ \ \"40.121.32.232/32\",\r\n \"40.121.35.221/32\",\r\n \"40.121.91.199/32\",\r\n
+ \ \"40.121.212.165/32\",\r\n \"40.121.221.52/32\",\r\n \"52.168.125.188/32\",\r\n
+ \ \"52.170.7.25/32\",\r\n \"52.170.46.174/32\",\r\n \"52.179.97.15/32\",\r\n
+ \ \"52.226.134.64/32\",\r\n \"52.234.209.94/32\",\r\n \"104.45.129.178/32\",\r\n
+ \ \"104.45.141.247/32\",\r\n \"104.45.152.13/32\",\r\n \"104.45.152.60/32\",\r\n
+ \ \"104.45.154.200/32\",\r\n \"104.211.26.212/32\",\r\n \"137.117.58.204/32\",\r\n
+ \ \"137.117.66.167/32\",\r\n \"137.117.84.54/32\",\r\n \"137.117.90.63/32\",\r\n
+ \ \"137.117.93.87/32\",\r\n \"137.135.91.176/32\",\r\n \"137.135.107.235/32\",\r\n
+ \ \"168.62.48.183/32\",\r\n \"168.62.180.173/32\",\r\n \"191.236.16.12/32\",\r\n
+ \ \"191.236.59.67/32\",\r\n \"191.237.24.89/32\",\r\n \"191.237.27.74/32\",\r\n
+ \ \"191.238.8.26/32\",\r\n \"191.238.33.50/32\",\r\n \"2603:1030:210:402::a0/123\",\r\n
+ \ \"2603:1030:210:802::a0/123\",\r\n \"2603:1030:210:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2\",\r\n
+ \ \"id\": \"AppService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.29.136/32\",\r\n \"13.68.101.62/32\",\r\n
+ \ \"13.77.82.141/32\",\r\n \"13.77.83.246/32\",\r\n \"13.77.96.119/32\",\r\n
+ \ \"20.49.97.0/25\",\r\n \"23.101.147.117/32\",\r\n \"40.70.27.35/32\",\r\n
+ \ \"40.70.147.0/25\",\r\n \"40.79.65.200/32\",\r\n \"40.84.54.203/32\",\r\n
+ \ \"40.84.59.174/32\",\r\n \"40.123.45.47/32\",\r\n \"40.123.47.58/32\",\r\n
+ \ \"52.177.169.150/32\",\r\n \"52.177.189.138/32\",\r\n \"52.177.206.73/32\",\r\n
+ \ \"52.179.188.206/32\",\r\n \"52.184.162.135/32\",\r\n \"52.184.193.103/32\",\r\n
+ \ \"52.184.193.104/32\",\r\n \"104.46.101.59/32\",\r\n \"104.209.178.67/32\",\r\n
+ \ \"104.209.192.206/32\",\r\n \"104.209.197.87/32\",\r\n
+ \ \"137.116.78.243/32\",\r\n \"137.116.88.213/32\",\r\n \"191.236.192.121/32\",\r\n
+ \ \"191.237.128.238/32\",\r\n \"2603:1030:40c:402::a0/123\",\r\n
+ \ \"2603:1030:40c:802::a0/123\",\r\n \"2603:1030:40c:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.EastUS2EUAP\",\r\n
+ \ \"id\": \"AppService.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.11.104/29\",\r\n \"52.225.179.39/32\",\r\n
+ \ \"52.225.190.65/32\",\r\n \"52.253.224.223/32\",\r\n \"2603:1030:40b:400::8a0/123\",\r\n
+ \ \"2603:1030:40b:800::a0/123\",\r\n \"2603:1030:40b:c00::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.FranceCentral\",\r\n
+ \ \"id\": \"AppService.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.43.32/27\",\r\n \"40.79.130.128/27\",\r\n
+ \ \"40.89.131.148/32\",\r\n \"40.89.141.103/32\",\r\n \"52.143.137.150/32\",\r\n
+ \ \"2603:1020:805:402::a0/123\",\r\n \"2603:1020:805:802::a0/123\",\r\n
+ \ \"2603:1020:805:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.FranceSouth\",\r\n \"id\": \"AppService.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.79.178.96/27\",\r\n \"51.105.90.32/27\",\r\n
+ \ \"52.136.138.55/32\",\r\n \"2603:1020:905:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.GermanyNorth\",\r\n
+ \ \"id\": \"AppService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"VSE\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.49.32/27\",\r\n \"51.116.58.160/27\",\r\n
+ \ \"2603:1020:d04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.GermanyWestCentral\",\r\n \"id\":
+ \"AppService.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.32/27\",\r\n \"51.116.154.224/27\",\r\n
+ \ \"51.116.242.160/27\",\r\n \"51.116.250.160/27\",\r\n \"2603:1020:c04:402::a0/123\",\r\n
+ \ \"2603:1020:c04:802::a0/123\",\r\n \"2603:1020:c04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.JapanEast\",\r\n
+ \ \"id\": \"AppService.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.149.151/32\",\r\n \"13.73.1.134/32\",\r\n
+ \ \"13.73.26.73/32\",\r\n \"13.78.59.237/32\",\r\n \"13.78.106.96/27\",\r\n
+ \ \"13.78.117.86/32\",\r\n \"13.78.123.87/32\",\r\n \"20.43.67.32/27\",\r\n
+ \ \"40.79.195.0/27\",\r\n \"40.115.179.121/32\",\r\n \"40.115.251.148/32\",\r\n
+ \ \"52.243.39.89/32\",\r\n \"104.41.186.103/32\",\r\n \"138.91.0.30/32\",\r\n
+ \ \"2603:1040:407:402::a0/123\",\r\n \"2603:1040:407:802::a0/123\",\r\n
+ \ \"2603:1040:407:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.JapanWest\",\r\n \"id\": \"AppService.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.128/27\",\r\n \"40.74.133.20/32\",\r\n
+ \ \"40.80.58.224/27\",\r\n \"52.175.158.219/32\",\r\n \"104.214.137.236/32\",\r\n
+ \ \"104.215.11.176/32\",\r\n \"104.215.58.230/32\",\r\n \"138.91.16.18/32\",\r\n
+ \ \"2603:1040:606:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.KoreaCentral\",\r\n \"id\": \"AppService.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.66.224/27\",\r\n \"20.44.26.160/27\",\r\n
+ \ \"20.194.66.32/27\",\r\n \"52.231.18.128/27\",\r\n \"52.231.32.120/32\",\r\n
+ \ \"52.231.38.95/32\",\r\n \"52.231.77.58/32\",\r\n \"2603:1040:f05:402::a0/123\",\r\n
+ \ \"2603:1040:f05:802::a0/123\",\r\n \"2603:1040:f05:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.KoreaSouth\",\r\n
+ \ \"id\": \"AppService.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.224/27\",\r\n \"52.231.146.96/27\",\r\n
+ \ \"52.231.200.101/32\",\r\n \"52.231.200.179/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AppService.NorthCentralUS\",\r\n
+ \ \"id\": \"AppService.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.187.5/32\",\r\n \"23.96.201.21/32\",\r\n \"23.96.207.177/32\",\r\n
+ \ \"23.96.209.155/32\",\r\n \"23.96.220.116/32\",\r\n \"23.100.72.240/32\",\r\n
+ \ \"23.101.169.175/32\",\r\n \"23.101.171.94/32\",\r\n \"23.101.172.244/32\",\r\n
+ \ \"40.80.191.0/25\",\r\n \"52.162.107.0/25\",\r\n \"52.162.208.73/32\",\r\n
+ \ \"52.237.130.0/32\",\r\n \"52.240.149.243/32\",\r\n \"52.240.155.58/32\",\r\n
+ \ \"52.252.160.21/32\",\r\n \"65.52.24.41/32\",\r\n \"65.52.213.73/32\",\r\n
+ \ \"65.52.217.59/32\",\r\n \"65.52.218.253/32\",\r\n \"157.56.13.114/32\",\r\n
+ \ \"168.62.224.13/32\",\r\n \"168.62.225.23/32\",\r\n \"191.236.148.9/32\",\r\n
+ \ \"2603:1030:608:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorthEurope\",\r\n \"id\": \"AppService.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.186.152/32\",\r\n \"13.69.228.0/25\",\r\n
+ \ \"13.69.253.145/32\",\r\n \"13.74.41.233/32\",\r\n \"13.74.147.218/32\",\r\n
+ \ \"13.74.158.5/32\",\r\n \"13.74.252.44/32\",\r\n \"13.79.2.71/32\",\r\n
+ \ \"13.79.38.229/32\",\r\n \"13.79.172.40/32\",\r\n \"20.50.64.0/25\",\r\n
+ \ \"23.100.48.106/32\",\r\n \"23.100.50.51/32\",\r\n \"23.100.52.22/32\",\r\n
+ \ \"23.100.56.27/32\",\r\n \"23.101.54.230/32\",\r\n \"23.101.63.214/32\",\r\n
+ \ \"23.102.12.43/32\",\r\n \"23.102.21.198/32\",\r\n \"23.102.21.212/32\",\r\n
+ \ \"23.102.25.149/32\",\r\n \"23.102.28.178/32\",\r\n \"40.69.43.225/32\",\r\n
+ \ \"40.69.88.149/32\",\r\n \"40.69.200.124/32\",\r\n \"40.69.210.172/32\",\r\n
+ \ \"40.69.218.150/32\",\r\n \"40.85.74.227/32\",\r\n \"40.85.92.115/32\",\r\n
+ \ \"40.85.96.208/32\",\r\n \"40.112.69.156/32\",\r\n \"40.112.90.244/32\",\r\n
+ \ \"40.112.93.201/32\",\r\n \"40.113.2.52/32\",\r\n \"40.113.65.9/32\",\r\n
+ \ \"40.113.71.148/32\",\r\n \"40.113.81.82/32\",\r\n \"40.113.90.202/32\",\r\n
+ \ \"40.115.98.85/32\",\r\n \"40.127.132.204/32\",\r\n \"40.127.139.252/32\",\r\n
+ \ \"40.127.192.244/32\",\r\n \"40.127.196.56/32\",\r\n \"52.138.196.70/32\",\r\n
+ \ \"52.138.218.121/32\",\r\n \"52.164.201.186/32\",\r\n \"52.164.250.133/32\",\r\n
+ \ \"52.169.73.236/32\",\r\n \"52.169.78.163/32\",\r\n \"52.169.180.223/32\",\r\n
+ \ \"52.169.184.163/32\",\r\n \"52.169.188.236/32\",\r\n \"52.169.191.40/32\",\r\n
+ \ \"52.178.158.175/32\",\r\n \"52.178.164.235/32\",\r\n \"52.178.179.169/32\",\r\n
+ \ \"52.178.190.191/32\",\r\n \"52.178.201.147/32\",\r\n \"52.178.208.12/32\",\r\n
+ \ \"52.178.212.17/32\",\r\n \"52.178.214.89/32\",\r\n \"94.245.104.73/32\",\r\n
+ \ \"104.41.216.137/32\",\r\n \"104.41.229.199/32\",\r\n \"104.45.81.79/32\",\r\n
+ \ \"104.45.95.61/32\",\r\n \"137.135.129.175/32\",\r\n \"137.135.133.221/32\",\r\n
+ \ \"168.63.53.239/32\",\r\n \"191.235.160.13/32\",\r\n \"191.235.176.12/32\",\r\n
+ \ \"191.235.177.30/32\",\r\n \"191.235.208.12/32\",\r\n \"191.235.215.184/32\",\r\n
+ \ \"2603:1020:5:402::a0/123\",\r\n \"2603:1020:5:802::a0/123\",\r\n
+ \ \"2603:1020:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.NorwayEast\",\r\n \"id\": \"AppService.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.42.0/27\",\r\n \"51.120.98.192/27\",\r\n
+ \ \"51.120.106.160/27\",\r\n \"51.120.210.160/27\",\r\n \"2603:1020:e04:402::a0/123\",\r\n
+ \ \"2603:1020:e04:802::a0/123\",\r\n \"2603:1020:e04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.NorwayWest\",\r\n
+ \ \"id\": \"AppService.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.192/27\",\r\n \"51.120.226.0/27\",\r\n
+ \ \"2603:1020:f04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaNorth\",\r\n \"id\":
+ \"AppService.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.160/27\",\r\n \"102.133.154.32/27\",\r\n
+ \ \"102.133.218.32/28\",\r\n \"102.133.250.160/27\",\r\n
+ \ \"2603:1000:104:402::a0/123\",\r\n \"2603:1000:104:802::a0/123\",\r\n
+ \ \"2603:1000:104:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthAfricaWest\",\r\n \"id\":
+ \"AppService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.32/27\",\r\n \"102.133.57.128/27\",\r\n
+ \ \"2603:1000:4:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthCentralUS\",\r\n \"id\": \"AppService.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.30.245/32\",\r\n \"13.65.37.122/32\",\r\n
+ \ \"13.65.39.165/32\",\r\n \"13.65.42.35/32\",\r\n \"13.65.42.183/32\",\r\n
+ \ \"13.65.45.30/32\",\r\n \"13.65.85.146/32\",\r\n \"13.65.89.91/32\",\r\n
+ \ \"13.65.92.72/32\",\r\n \"13.65.94.204/32\",\r\n \"13.65.95.109/32\",\r\n
+ \ \"13.65.97.243/32\",\r\n \"13.65.193.29/32\",\r\n \"13.65.210.166/32\",\r\n
+ \ \"13.65.212.252/32\",\r\n \"13.65.241.130/32\",\r\n \"13.65.243.110/32\",\r\n
+ \ \"13.66.16.101/32\",\r\n \"13.66.38.99/32\",\r\n \"13.66.39.88/32\",\r\n
+ \ \"13.84.36.2/32\",\r\n \"13.84.40.227/32\",\r\n \"13.84.42.35/32\",\r\n
+ \ \"13.84.46.29/32\",\r\n \"13.84.55.137/32\",\r\n \"13.84.146.60/32\",\r\n
+ \ \"13.84.180.32/32\",\r\n \"13.84.181.47/32\",\r\n \"13.84.188.162/32\",\r\n
+ \ \"13.84.189.137/32\",\r\n \"13.84.227.164/32\",\r\n \"13.85.15.194/32\",\r\n
+ \ \"13.85.16.224/32\",\r\n \"13.85.20.144/32\",\r\n \"13.85.24.220/32\",\r\n
+ \ \"13.85.27.14/32\",\r\n \"13.85.31.243/32\",\r\n \"13.85.72.129/32\",\r\n
+ \ \"13.85.77.179/32\",\r\n \"13.85.82.0/32\",\r\n \"20.45.122.160/27\",\r\n
+ \ \"20.49.90.32/27\",\r\n \"23.101.180.75/32\",\r\n \"23.102.154.38/32\",\r\n
+ \ \"23.102.161.217/32\",\r\n \"23.102.191.170/32\",\r\n \"40.74.245.188/32\",\r\n
+ \ \"40.74.253.108/32\",\r\n \"40.74.255.112/32\",\r\n \"40.84.148.247/32\",\r\n
+ \ \"40.84.159.58/32\",\r\n \"40.84.194.106/32\",\r\n \"40.84.226.176/32\",\r\n
+ \ \"40.84.227.180/32\",\r\n \"40.84.232.28/32\",\r\n \"40.119.12.0/23\",\r\n
+ \ \"40.124.12.75/32\",\r\n \"40.124.13.58/32\",\r\n \"52.171.56.101/32\",\r\n
+ \ \"52.171.56.110/32\",\r\n \"52.171.136.200/32\",\r\n \"52.171.140.237/32\",\r\n
+ \ \"52.171.218.239/32\",\r\n \"52.171.221.170/32\",\r\n \"52.171.222.247/32\",\r\n
+ \ \"104.44.128.13/32\",\r\n \"104.44.130.38/32\",\r\n \"104.210.145.181/32\",\r\n
+ \ \"104.210.147.57/32\",\r\n \"104.210.152.76/32\",\r\n \"104.210.152.122/32\",\r\n
+ \ \"104.210.153.116/32\",\r\n \"104.210.158.20/32\",\r\n
+ \ \"104.214.20.0/23\",\r\n \"104.214.29.203/32\",\r\n \"104.214.64.238/32\",\r\n
+ \ \"104.214.74.110/32\",\r\n \"104.214.77.221/32\",\r\n \"104.214.110.60/32\",\r\n
+ \ \"104.214.110.226/32\",\r\n \"104.214.118.174/32\",\r\n
+ \ \"104.214.119.36/32\",\r\n \"104.215.73.236/32\",\r\n \"104.215.78.13/32\",\r\n
+ \ \"104.215.89.22/32\",\r\n \"191.238.176.139/32\",\r\n \"191.238.240.12/32\",\r\n
+ \ \"2603:1030:807:402::a0/123\",\r\n \"2603:1030:807:802::a0/123\",\r\n
+ \ \"2603:1030:807:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SoutheastAsia\",\r\n \"id\": \"AppService.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.9.0/25\",\r\n \"13.67.56.225/32\",\r\n
+ \ \"13.67.63.90/32\",\r\n \"13.76.44.139/32\",\r\n \"13.76.245.96/32\",\r\n
+ \ \"20.43.132.128/25\",\r\n \"20.188.98.74/32\",\r\n \"23.97.56.169/32\",\r\n
+ \ \"23.98.64.36/32\",\r\n \"23.98.64.158/32\",\r\n \"23.101.27.182/32\",\r\n
+ \ \"52.163.122.160/32\",\r\n \"52.187.17.126/32\",\r\n \"52.187.36.104/32\",\r\n
+ \ \"52.187.52.94/32\",\r\n \"52.187.135.79/32\",\r\n \"52.230.1.186/32\",\r\n
+ \ \"104.215.147.45/32\",\r\n \"104.215.155.1/32\",\r\n \"111.221.95.27/32\",\r\n
+ \ \"137.116.128.188/32\",\r\n \"137.116.153.238/32\",\r\n
+ \ \"2603:1040:5:402::a0/123\",\r\n \"2603:1040:5:802::a0/123\",\r\n
+ \ \"2603:1040:5:c02::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SouthIndia\",\r\n \"id\": \"AppService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.122.35/32\",\r\n \"13.71.123.138/32\",\r\n
+ \ \"20.41.195.192/27\",\r\n \"40.78.194.96/27\",\r\n \"52.172.54.225/32\",\r\n
+ \ \"104.211.224.252/32\",\r\n \"104.211.225.167/32\",\r\n
+ \ \"2603:1040:c06:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.SwitzerlandNorth\",\r\n \"id\":
+ \"AppService.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"51.107.50.0/27\",\r\n
+ \ \"51.107.58.160/27\",\r\n \"2603:1020:a04:402::a0/123\",\r\n
+ \ \"2603:1020:a04:802::a0/123\",\r\n \"2603:1020:a04:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppService.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.146.0/27\",\r\n \"51.107.154.160/27\",\r\n
+ \ \"2603:1020:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAECentral\",\r\n \"id\": \"AppService.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.66.0/27\",\r\n \"20.37.74.96/27\",\r\n
+ \ \"2603:1040:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.UAENorth\",\r\n \"id\": \"AppService.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.138.0/27\",\r\n \"40.120.74.32/27\",\r\n
+ \ \"65.52.250.96/27\",\r\n \"2603:1040:904:402::a0/123\",\r\n
+ \ \"2603:1040:904:802::a0/123\",\r\n \"2603:1040:904:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKNorth\",\r\n
+ \ \"id\": \"AppService.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:305:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth\",\r\n
+ \ \"id\": \"AppService.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.28.64/26\",\r\n \"51.105.66.160/27\",\r\n
+ \ \"51.105.74.160/27\",\r\n \"51.140.37.241/32\",\r\n \"51.140.57.176/32\",\r\n
+ \ \"51.140.59.233/32\",\r\n \"51.140.75.147/32\",\r\n \"51.140.84.145/32\",\r\n
+ \ \"51.140.85.106/32\",\r\n \"51.140.87.39/32\",\r\n \"51.140.122.226/32\",\r\n
+ \ \"51.140.146.128/26\",\r\n \"51.140.152.154/32\",\r\n \"51.140.153.150/32\",\r\n
+ \ \"51.140.180.76/32\",\r\n \"51.140.185.151/32\",\r\n \"51.140.191.223/32\",\r\n
+ \ \"51.143.191.44/32\",\r\n \"2603:1020:705:402::a0/123\",\r\n
+ \ \"2603:1020:705:802::a0/123\",\r\n \"2603:1020:705:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKSouth2\",\r\n
+ \ \"id\": \"AppService.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"VSE\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppService\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:405:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.UKWest\",\r\n
+ \ \"id\": \"AppService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.163.32/27\",\r\n \"51.140.210.96/27\",\r\n
+ \ \"51.140.244.162/32\",\r\n \"51.140.245.89/32\",\r\n \"51.141.12.112/32\",\r\n
+ \ \"51.141.37.245/32\",\r\n \"51.141.44.139/32\",\r\n \"51.141.45.207/32\",\r\n
+ \ \"51.141.90.252/32\",\r\n \"2603:1020:605:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestCentralUS\",\r\n
+ \ \"id\": \"AppService.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.192/27\",\r\n \"13.78.150.96/32\",\r\n
+ \ \"13.78.184.89/32\",\r\n \"52.150.140.224/27\",\r\n \"52.161.96.193/32\",\r\n
+ \ \"2603:1030:b04:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestEurope\",\r\n \"id\": \"AppService.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.68.0/23\",\r\n \"13.80.19.74/32\",\r\n
+ \ \"13.81.7.21/32\",\r\n \"13.81.108.99/32\",\r\n \"13.81.215.235/32\",\r\n
+ \ \"13.94.143.57/32\",\r\n \"13.94.192.98/32\",\r\n \"13.94.211.38/32\",\r\n
+ \ \"13.95.82.181/32\",\r\n \"13.95.93.152/32\",\r\n \"13.95.150.128/32\",\r\n
+ \ \"13.95.238.192/32\",\r\n \"20.50.2.0/23\",\r\n \"23.97.160.56/32\",\r\n
+ \ \"23.97.160.74/32\",\r\n \"23.97.162.202/32\",\r\n \"23.97.195.129/32\",\r\n
+ \ \"23.97.208.18/32\",\r\n \"23.97.214.177/32\",\r\n \"23.97.216.47/32\",\r\n
+ \ \"23.97.224.11/32\",\r\n \"23.100.1.29/32\",\r\n \"23.101.67.245/32\",\r\n
+ \ \"40.68.40.55/32\",\r\n \"40.68.205.178/32\",\r\n \"40.68.208.131/32\",\r\n
+ \ \"40.68.210.104/32\",\r\n \"40.68.214.185/32\",\r\n \"40.113.126.251/32\",\r\n
+ \ \"40.113.131.37/32\",\r\n \"40.113.136.240/32\",\r\n \"40.113.142.219/32\",\r\n
+ \ \"40.114.194.188/32\",\r\n \"40.114.210.78/32\",\r\n \"40.114.228.161/32\",\r\n
+ \ \"40.114.237.65/32\",\r\n \"40.114.243.70/32\",\r\n \"40.115.55.251/32\",\r\n
+ \ \"40.118.29.72/32\",\r\n \"40.118.71.240/32\",\r\n \"40.118.96.231/32\",\r\n
+ \ \"40.118.100.127/32\",\r\n \"40.118.101.67/32\",\r\n \"40.118.102.46/32\",\r\n
+ \ \"51.105.172.25/32\",\r\n \"51.136.14.31/32\",\r\n \"51.137.106.13/32\",\r\n
+ \ \"51.144.7.192/32\",\r\n \"51.144.107.53/32\",\r\n \"51.144.116.43/32\",\r\n
+ \ \"51.144.164.215/32\",\r\n \"51.144.182.8/32\",\r\n \"52.166.78.97/32\",\r\n
+ \ \"52.166.113.188/32\",\r\n \"52.166.119.99/32\",\r\n \"52.166.178.208/32\",\r\n
+ \ \"52.166.181.85/32\",\r\n \"52.166.198.163/32\",\r\n \"52.174.3.80/32\",\r\n
+ \ \"52.174.7.133/32\",\r\n \"52.174.35.5/32\",\r\n \"52.174.106.15/32\",\r\n
+ \ \"52.174.150.25/32\",\r\n \"52.174.181.178/32\",\r\n \"52.174.184.18/32\",\r\n
+ \ \"52.174.193.210/32\",\r\n \"52.174.235.29/32\",\r\n \"52.178.29.39/32\",\r\n
+ \ \"52.178.37.244/32\",\r\n \"52.178.43.209/32\",\r\n \"52.178.45.139/32\",\r\n
+ \ \"52.178.46.181/32\",\r\n \"52.178.75.200/32\",\r\n \"52.178.79.163/32\",\r\n
+ \ \"52.178.89.129/32\",\r\n \"52.178.90.230/32\",\r\n \"52.178.92.96/32\",\r\n
+ \ \"52.178.105.179/32\",\r\n \"52.178.114.226/32\",\r\n \"52.232.19.237/32\",\r\n
+ \ \"52.232.26.228/32\",\r\n \"52.232.33.202/32\",\r\n \"52.232.56.79/32\",\r\n
+ \ \"52.232.127.196/32\",\r\n \"52.233.128.61/32\",\r\n \"52.233.133.18/32\",\r\n
+ \ \"52.233.133.121/32\",\r\n \"52.233.155.168/32\",\r\n \"52.233.164.195/32\",\r\n
+ \ \"52.233.175.59/32\",\r\n \"52.233.184.181/32\",\r\n \"52.233.198.206/32\",\r\n
+ \ \"65.52.128.33/32\",\r\n \"65.52.130.1/32\",\r\n \"104.40.129.89/32\",\r\n
+ \ \"104.40.147.180/32\",\r\n \"104.40.147.216/32\",\r\n \"104.40.158.55/32\",\r\n
+ \ \"104.40.179.243/32\",\r\n \"104.40.183.236/32\",\r\n \"104.40.185.192/32\",\r\n
+ \ \"104.40.187.26/32\",\r\n \"104.40.191.174/32\",\r\n \"104.40.210.25/32\",\r\n
+ \ \"104.40.215.219/32\",\r\n \"104.40.222.81/32\",\r\n \"104.40.250.100/32\",\r\n
+ \ \"104.45.1.117/32\",\r\n \"104.45.14.249/32\",\r\n \"104.46.38.245/32\",\r\n
+ \ \"104.46.44.78/32\",\r\n \"104.46.61.116/32\",\r\n \"104.47.137.62/32\",\r\n
+ \ \"104.47.151.115/32\",\r\n \"104.47.160.14/32\",\r\n \"104.47.164.119/32\",\r\n
+ \ \"104.214.231.110/32\",\r\n \"104.214.236.47/32\",\r\n
+ \ \"104.214.237.135/32\",\r\n \"137.117.166.35/32\",\r\n
+ \ \"137.117.175.14/32\",\r\n \"137.117.203.130/32\",\r\n
+ \ \"137.117.211.244/32\",\r\n \"137.117.218.101/32\",\r\n
+ \ \"137.117.224.218/32\",\r\n \"137.117.225.87/32\",\r\n
+ \ \"168.63.5.231/32\",\r\n \"168.63.107.5/32\",\r\n \"191.233.82.44/32\",\r\n
+ \ \"191.233.85.165/32\",\r\n \"191.233.87.194/32\",\r\n \"2603:1020:206:402::a0/123\",\r\n
+ \ \"2603:1020:206:802::a0/123\",\r\n \"2603:1020:206:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestIndia\",\r\n
+ \ \"id\": \"AppService.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.50.0/27\",\r\n \"104.211.146.96/27\",\r\n
+ \ \"104.211.160.159/32\",\r\n \"104.211.179.11/32\",\r\n
+ \ \"104.211.184.197/32\",\r\n \"2603:1040:806:402::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppService.WestUS\",\r\n
+ \ \"id\": \"AppService.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.73.110/32\",\r\n \"13.91.40.166/32\",\r\n
+ \ \"13.91.242.166/32\",\r\n \"13.93.141.10/32\",\r\n \"13.93.158.16/32\",\r\n
+ \ \"13.93.220.109/32\",\r\n \"13.93.231.75/32\",\r\n \"23.99.0.12/32\",\r\n
+ \ \"23.99.65.65/32\",\r\n \"23.99.91.55/32\",\r\n \"23.100.46.198/32\",\r\n
+ \ \"23.101.203.117/32\",\r\n \"23.101.203.214/32\",\r\n \"23.101.207.250/32\",\r\n
+ \ \"40.78.18.232/32\",\r\n \"40.78.25.157/32\",\r\n \"40.78.48.219/32\",\r\n
+ \ \"40.80.155.102/32\",\r\n \"40.80.156.205/32\",\r\n \"40.82.255.128/25\",\r\n
+ \ \"40.83.145.50/32\",\r\n \"40.83.150.233/32\",\r\n \"40.83.182.206/32\",\r\n
+ \ \"40.83.183.236/32\",\r\n \"40.83.184.25/32\",\r\n \"40.112.142.148/32\",\r\n
+ \ \"40.112.143.134/32\",\r\n \"40.112.143.140/32\",\r\n \"40.112.143.214/32\",\r\n
+ \ \"40.112.165.44/32\",\r\n \"40.112.166.161/32\",\r\n \"40.112.191.159/32\",\r\n
+ \ \"40.112.192.69/32\",\r\n \"40.112.216.189/32\",\r\n \"40.112.243.0/25\",\r\n
+ \ \"40.118.185.161/32\",\r\n \"40.118.235.113/32\",\r\n \"40.118.246.51/32\",\r\n
+ \ \"40.118.255.59/32\",\r\n \"52.160.40.218/32\",\r\n \"104.40.3.53/32\",\r\n
+ \ \"104.40.11.192/32\",\r\n \"104.40.28.133/32\",\r\n \"104.40.53.219/32\",\r\n
+ \ \"104.40.63.98/32\",\r\n \"104.40.84.133/32\",\r\n \"104.40.92.107/32\",\r\n
+ \ \"104.42.53.248/32\",\r\n \"104.42.78.153/32\",\r\n \"104.42.128.171/32\",\r\n
+ \ \"104.42.148.55/32\",\r\n \"104.42.152.64/32\",\r\n \"104.42.154.105/32\",\r\n
+ \ \"104.42.188.146/32\",\r\n \"104.42.231.5/32\",\r\n \"104.45.226.98/32\",\r\n
+ \ \"104.45.231.79/32\",\r\n \"104.210.38.149/32\",\r\n \"137.117.9.212/32\",\r\n
+ \ \"137.117.17.70/32\",\r\n \"138.91.224.84/32\",\r\n \"138.91.225.40/32\",\r\n
+ \ \"138.91.240.81/32\",\r\n \"168.62.20.37/32\",\r\n \"191.236.80.12/32\",\r\n
+ \ \"191.236.106.123/32\",\r\n \"191.239.58.162/32\",\r\n
+ \ \"2603:1030:a07:402::a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppService.WestUS2\",\r\n \"id\": \"AppService.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAppService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.96/27\",\r\n \"13.66.209.135/32\",\r\n
+ \ \"13.66.212.205/32\",\r\n \"13.66.226.80/32\",\r\n \"13.66.231.217/32\",\r\n
+ \ \"13.66.241.134/32\",\r\n \"13.66.244.249/32\",\r\n \"13.77.157.133/32\",\r\n
+ \ \"13.77.160.237/32\",\r\n \"13.77.182.13/32\",\r\n \"20.42.128.96/27\",\r\n
+ \ \"40.64.128.224/27\",\r\n \"51.143.102.21/32\",\r\n \"52.151.62.51/32\",\r\n
+ \ \"52.175.202.25/32\",\r\n \"52.175.254.10/32\",\r\n \"52.183.82.125/32\",\r\n
+ \ \"52.229.30.210/32\",\r\n \"2603:1030:c06:400::8a0/123\",\r\n
+ \ \"2603:1030:c06:802::a0/123\",\r\n \"2603:1030:c06:c02::a0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement\",\r\n
+ \ \"id\": \"AppServiceManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAppServiceManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n \"13.66.140.0/26\",\r\n
+ \ \"13.67.8.128/26\",\r\n \"13.69.64.128/26\",\r\n \"13.69.227.128/26\",\r\n
+ \ \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"13.71.170.64/26\",\r\n
+ \ \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n \"13.71.194.128/26\",\r\n
+ \ \"13.73.240.128/26\",\r\n \"13.73.242.64/26\",\r\n \"13.75.34.192/26\",\r\n
+ \ \"13.75.127.117/32\",\r\n \"13.77.50.128/26\",\r\n \"13.78.106.128/26\",\r\n
+ \ \"13.78.109.0/26\",\r\n \"13.87.56.128/26\",\r\n \"13.87.122.128/26\",\r\n
+ \ \"13.89.171.0/26\",\r\n \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n
+ \ \"13.94.149.179/32\",\r\n \"20.36.106.128/26\",\r\n \"20.36.114.64/26\",\r\n
+ \ \"20.37.74.128/26\",\r\n \"20.43.120.128/26\",\r\n \"20.44.2.192/26\",\r\n
+ \ \"20.44.27.0/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.82.128/26\",\r\n
+ \ \"20.49.90.128/26\",\r\n \"20.72.26.192/26\",\r\n \"20.150.171.0/26\",\r\n
+ \ \"20.150.179.0/26\",\r\n \"20.150.187.0/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"20.192.234.192/26\",\r\n \"20.193.202.192/26\",\r\n \"20.194.66.128/26\",\r\n
+ \ \"23.96.195.3/32\",\r\n \"23.100.226.236/32\",\r\n \"23.102.188.65/32\",\r\n
+ \ \"40.67.59.0/26\",\r\n \"40.69.106.128/26\",\r\n \"40.70.146.128/26\",\r\n
+ \ \"40.71.11.0/26\",\r\n \"40.71.13.64/26\",\r\n \"40.74.100.64/26\",\r\n
+ \ \"40.78.194.128/26\",\r\n \"40.79.130.64/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"40.79.178.128/26\",\r\n \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n
+ \ \"40.83.125.161/32\",\r\n \"40.90.240.166/32\",\r\n \"40.91.126.196/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"40.119.4.111/32\",\r\n \"40.120.74.128/26\",\r\n
+ \ \"40.124.47.188/32\",\r\n \"51.12.99.0/26\",\r\n \"51.12.203.0/26\",\r\n
+ \ \"51.12.227.0/26\",\r\n \"51.12.235.0/26\",\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.107.58.192/26\",\r\n \"51.107.154.192/26\",\r\n
+ \ \"51.116.58.192/26\",\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"51.120.219.0/26\",\r\n
+ \ \"51.140.146.64/26\",\r\n \"51.140.210.128/26\",\r\n \"52.151.25.45/32\",\r\n
+ \ \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"52.178.177.147/32\",\r\n \"52.178.184.149/32\",\r\n
+ \ \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n \"52.187.56.50/32\",\r\n
+ \ \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n \"52.187.63.37/32\",\r\n
+ \ \"52.224.105.172/32\",\r\n \"52.225.177.15/32\",\r\n \"52.225.177.153/32\",\r\n
+ \ \"52.231.18.64/26\",\r\n \"52.231.146.128/26\",\r\n \"52.246.157.64/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.172.237/32\",\r\n \"65.52.193.203/32\",\r\n
+ \ \"65.52.250.128/26\",\r\n \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n
+ \ \"102.133.26.192/26\",\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"104.43.242.137/32\",\r\n
+ \ \"104.44.129.141/32\",\r\n \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n
+ \ \"104.44.134.255/32\",\r\n \"104.208.54.11/32\",\r\n \"104.211.81.64/26\",\r\n
+ \ \"104.211.146.128/26\",\r\n \"104.214.18.192/26\",\r\n
+ \ \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"168.61.143.0/26\",\r\n \"191.233.50.128/26\",\r\n \"191.233.203.64/26\",\r\n
+ \ \"191.234.147.0/26\",\r\n \"191.234.155.0/26\",\r\n \"191.236.154.88/32\",\r\n
+ \ \"2603:1000:4:402::100/122\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\",\r\n \"2603:1010:101:402::100/122\",\r\n
+ \ \"2603:1010:304:402::100/122\",\r\n \"2603:1010:404:402::100/122\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\",\r\n
+ \ \"2603:1020:305:402::100/122\",\r\n \"2603:1020:405:402::100/122\",\r\n
+ \ \"2603:1020:605:402::100/122\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\",\r\n
+ \ \"2603:1020:805:402::100/122\",\r\n \"2603:1020:805:802::100/122\",\r\n
+ \ \"2603:1020:805:c02::100/122\",\r\n \"2603:1020:905:402::100/122\",\r\n
+ \ \"2603:1020:a04:402::100/122\",\r\n \"2603:1020:a04:802::100/122\",\r\n
+ \ \"2603:1020:a04:c02::100/122\",\r\n \"2603:1020:b04:402::100/122\",\r\n
+ \ \"2603:1020:c04:402::100/122\",\r\n \"2603:1020:c04:802::100/122\",\r\n
+ \ \"2603:1020:c04:c02::100/122\",\r\n \"2603:1020:d04:402::100/122\",\r\n
+ \ \"2603:1020:e04:402::100/122\",\r\n \"2603:1020:e04:802::100/122\",\r\n
+ \ \"2603:1020:e04:c02::100/122\",\r\n \"2603:1020:f04:402::100/122\",\r\n
+ \ \"2603:1020:1004:400::440/122\",\r\n \"2603:1020:1004:800::80/122\",\r\n
+ \ \"2603:1020:1004:800::200/122\",\r\n \"2603:1020:1004:800::380/122\",\r\n
+ \ \"2603:1020:1104:400::100/122\",\r\n \"2603:1030:f:400::900/122\",\r\n
+ \ \"2603:1030:10:402::100/122\",\r\n \"2603:1030:10:802::100/122\",\r\n
+ \ \"2603:1030:10:c02::100/122\",\r\n \"2603:1030:104:402::100/122\",\r\n
+ \ \"2603:1030:107:400::80/122\",\r\n \"2603:1030:210:402::100/122\",\r\n
+ \ \"2603:1030:210:802::100/122\",\r\n \"2603:1030:210:c02::100/122\",\r\n
+ \ \"2603:1030:40b:400::900/122\",\r\n \"2603:1030:40b:800::100/122\",\r\n
+ \ \"2603:1030:40b:c00::100/122\",\r\n \"2603:1030:40c:402::100/122\",\r\n
+ \ \"2603:1030:40c:802::100/122\",\r\n \"2603:1030:40c:c02::100/122\",\r\n
+ \ \"2603:1030:504:402::400/122\",\r\n \"2603:1030:504:802::80/122\",\r\n
+ \ \"2603:1030:504:802::380/122\",\r\n \"2603:1030:608:402::100/122\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\",\r\n \"2603:1030:a07:402::880/122\",\r\n
+ \ \"2603:1030:b04:402::100/122\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\",\r\n
+ \ \"2603:1030:f05:402::100/122\",\r\n \"2603:1030:f05:802::100/122\",\r\n
+ \ \"2603:1030:f05:c02::100/122\",\r\n \"2603:1030:1005:402::100/122\",\r\n
+ \ \"2603:1040:5:402::100/122\",\r\n \"2603:1040:5:802::100/122\",\r\n
+ \ \"2603:1040:5:c02::100/122\",\r\n \"2603:1040:207:402::100/122\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\",\r\n \"2603:1040:606:402::100/122\",\r\n
+ \ \"2603:1040:806:402::100/122\",\r\n \"2603:1040:904:402::100/122\",\r\n
+ \ \"2603:1040:904:802::100/122\",\r\n \"2603:1040:904:c02::100/122\",\r\n
+ \ \"2603:1040:a06:402::100/122\",\r\n \"2603:1040:a06:802::100/122\",\r\n
+ \ \"2603:1040:a06:c02::100/122\",\r\n \"2603:1040:b04:402::100/122\",\r\n
+ \ \"2603:1040:c06:402::100/122\",\r\n \"2603:1040:d04:400::440/122\",\r\n
+ \ \"2603:1040:d04:800::80/122\",\r\n \"2603:1040:d04:800::200/122\",\r\n
+ \ \"2603:1040:d04:800::380/122\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\",\r\n
+ \ \"2603:1040:1104:400::100/122\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\",\r\n
+ \ \"2603:1050:403:400::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaCentral\",\r\n \"id\":
+ \"AppServiceManagement.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.128/26\",\r\n \"2603:1010:304:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaCentral2\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.64/26\",\r\n \"2603:1010:404:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.AustraliaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.64/26\",\r\n \"13.70.73.128/26\",\r\n \"40.79.165.0/26\",\r\n
+ \ \"2603:1010:6:402::100/122\",\r\n \"2603:1010:6:802::100/122\",\r\n
+ \ \"2603:1010:6:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AppServiceManagement.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.128/26\",\r\n \"2603:1010:101:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.BrazilSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.64/26\",\r\n \"191.234.147.0/26\",\r\n
+ \ \"191.234.155.0/26\",\r\n \"2603:1050:6:402::100/122\",\r\n
+ \ \"2603:1050:6:802::100/122\",\r\n \"2603:1050:6:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.64/26\",\r\n \"13.71.173.0/26\",\r\n \"13.71.173.128/26\",\r\n
+ \ \"52.246.157.64/26\",\r\n \"2603:1030:f05:402::100/122\",\r\n
+ \ \"2603:1030:f05:802::100/122\",\r\n \"2603:1030:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CanadaEast\",\r\n
+ \ \"id\": \"AppServiceManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.128/26\",\r\n \"2603:1030:1005:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.128/26\",\r\n \"20.192.99.0/26\",\r\n
+ \ \"104.211.81.64/26\",\r\n \"2603:1040:a06:402::100/122\",\r\n
+ \ \"2603:1040:a06:802::100/122\",\r\n \"2603:1040:a06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.CentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.0/26\",\r\n \"52.165.152.214/32\",\r\n
+ \ \"52.165.153.122/32\",\r\n \"52.165.154.193/32\",\r\n \"52.165.158.140/32\",\r\n
+ \ \"104.43.242.137/32\",\r\n \"2603:1030:10:402::100/122\",\r\n
+ \ \"2603:1030:10:802::100/122\",\r\n \"2603:1030:10:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastAsia\",\r\n
+ \ \"id\": \"AppServiceManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.192/26\",\r\n \"13.75.127.117/32\",\r\n
+ \ \"40.83.120.64/32\",\r\n \"40.83.121.56/32\",\r\n \"40.83.125.161/32\",\r\n
+ \ \"65.52.172.237/32\",\r\n \"2603:1040:207:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.EastUS\",\r\n
+ \ \"id\": \"AppServiceManagement.EastUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.0/26\",\r\n
+ \ \"40.71.13.64/26\",\r\n \"40.90.240.166/32\",\r\n \"52.224.105.172/32\",\r\n
+ \ \"2603:1030:210:402::100/122\",\r\n \"2603:1030:210:802::100/122\",\r\n
+ \ \"2603:1030:210:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.128/26\",\r\n
+ \ \"2603:1030:40c:402::100/122\",\r\n \"2603:1030:40c:802::100/122\",\r\n
+ \ \"2603:1030:40c:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.EastUS2EUAP\",\r\n \"id\":
+ \"AppServiceManagement.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"52.225.177.15/32\",\r\n
+ \ \"52.225.177.153/32\",\r\n \"2603:1030:40b:400::900/122\",\r\n
+ \ \"2603:1030:40b:800::100/122\",\r\n \"2603:1030:40b:c00::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.64/26\",\r\n \"2603:1020:805:402::100/122\",\r\n
+ \ \"2603:1020:805:802::100/122\",\r\n \"2603:1020:805:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.FranceSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.128/26\",\r\n \"2603:1020:905:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.192/26\",\r\n \"2603:1020:d04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AppServiceManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.0/26\",\r\n \"51.116.156.64/26\",\r\n
+ \ \"51.116.243.64/26\",\r\n \"51.116.251.192/26\",\r\n \"2603:1020:c04:402::100/122\",\r\n
+ \ \"2603:1020:c04:802::100/122\",\r\n \"2603:1020:c04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.JapanEast\",\r\n
+ \ \"id\": \"AppServiceManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.128/26\",\r\n \"13.78.109.0/26\",\r\n
+ \ \"2603:1040:407:402::100/122\",\r\n \"2603:1040:407:802::100/122\",\r\n
+ \ \"2603:1040:407:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.JapanWest\",\r\n \"id\":
+ \"AppServiceManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.100.64/26\",\r\n
+ \ \"2603:1040:606:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.KoreaCentral\",\r\n \"id\":
+ \"AppServiceManagement.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.0/26\",\r\n
+ \ \"20.194.66.128/26\",\r\n \"52.231.18.64/26\",\r\n \"2603:1040:f05:402::100/122\",\r\n
+ \ \"2603:1040:f05:802::100/122\",\r\n \"2603:1040:f05:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.KoreaSouth\",\r\n
+ \ \"id\": \"AppServiceManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.128/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorthCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"23.96.195.3/32\",\r\n
+ \ \"23.100.226.236/32\",\r\n \"52.162.80.89/32\",\r\n \"52.162.106.192/26\",\r\n
+ \ \"65.52.14.230/32\",\r\n \"65.52.193.203/32\",\r\n \"157.55.208.185/32\",\r\n
+ \ \"191.236.154.88/32\",\r\n \"2603:1030:608:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorthEurope\",\r\n
+ \ \"id\": \"AppServiceManagement.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.128/26\",\r\n \"52.178.177.147/32\",\r\n
+ \ \"52.178.184.149/32\",\r\n \"52.178.190.65/32\",\r\n \"52.178.195.197/32\",\r\n
+ \ \"2603:1020:5:402::100/122\",\r\n \"2603:1020:5:802::100/122\",\r\n
+ \ \"2603:1020:5:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.NorwayEast\",\r\n \"id\":
+ \"AppServiceManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.120.99.0/26\",\r\n
+ \ \"51.120.107.0/26\",\r\n \"51.120.211.0/26\",\r\n \"2603:1020:e04:402::100/122\",\r\n
+ \ \"2603:1020:e04:802::100/122\",\r\n \"2603:1020:e04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.NorwayWest\",\r\n
+ \ \"id\": \"AppServiceManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.219.0/26\",\r\n \"2603:1020:f04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.0/26\",\r\n \"102.133.123.128/26\",\r\n
+ \ \"102.133.154.192/26\",\r\n \"2603:1000:104:402::100/122\",\r\n
+ \ \"2603:1000:104:802::100/122\",\r\n \"2603:1000:104:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.192/26\",\r\n \"2603:1000:4:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthCentralUS\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.128/26\",\r\n
+ \ \"13.73.242.64/26\",\r\n \"20.45.125.128/26\",\r\n \"20.49.90.128/26\",\r\n
+ \ \"23.102.188.65/32\",\r\n \"40.119.4.111/32\",\r\n \"40.124.47.188/32\",\r\n
+ \ \"70.37.57.58/32\",\r\n \"70.37.89.222/32\",\r\n \"104.44.129.141/32\",\r\n
+ \ \"104.44.129.243/32\",\r\n \"104.44.129.255/32\",\r\n \"104.44.134.255/32\",\r\n
+ \ \"104.214.18.192/26\",\r\n \"104.214.49.0/32\",\r\n \"157.55.176.93/32\",\r\n
+ \ \"2603:1030:807:402::100/122\",\r\n \"2603:1030:807:802::100/122\",\r\n
+ \ \"2603:1030:807:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.SoutheastAsia\",\r\n \"id\":
+ \"AppServiceManagement.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.128/26\",\r\n
+ \ \"52.187.56.50/32\",\r\n \"52.187.59.251/32\",\r\n \"52.187.63.19/32\",\r\n
+ \ \"52.187.63.37/32\",\r\n \"2603:1040:5:402::100/122\",\r\n
+ \ \"2603:1040:5:802::100/122\",\r\n \"2603:1040:5:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SouthIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.128/26\",\r\n \"2603:1040:c06:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.192/26\",\r\n \"2603:1020:a04:402::100/122\",\r\n
+ \ \"2603:1020:a04:802::100/122\",\r\n \"2603:1020:a04:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"AppServiceManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.192/26\",\r\n \"2603:1020:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAECentral\",\r\n
+ \ \"id\": \"AppServiceManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.128/26\",\r\n \"2603:1040:b04:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UAENorth\",\r\n
+ \ \"id\": \"AppServiceManagement.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.128/26\",\r\n \"65.52.250.128/26\",\r\n
+ \ \"2603:1040:904:402::100/122\",\r\n \"2603:1040:904:802::100/122\",\r\n
+ \ \"2603:1040:904:c02::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKSouth\",\r\n \"id\":
+ \"AppServiceManagement.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.0/26\",\r\n
+ \ \"51.104.8.128/26\",\r\n \"51.140.146.64/26\",\r\n \"2603:1020:705:402::100/122\",\r\n
+ \ \"2603:1020:705:802::100/122\",\r\n \"2603:1020:705:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.UKSouth2\",\r\n
+ \ \"id\": \"AppServiceManagement.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.56.128/26\",\r\n
+ \ \"2603:1020:405:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.UKWest\",\r\n \"id\":
+ \"AppServiceManagement.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.128/26\",\r\n
+ \ \"2603:1020:605:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestCentralUS\",\r\n \"id\":
+ \"AppServiceManagement.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.128/26\",\r\n
+ \ \"2603:1030:b04:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AppServiceManagement.WestEurope\",\r\n \"id\":
+ \"AppServiceManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.128/26\",\r\n
+ \ \"13.94.141.115/32\",\r\n \"13.94.143.126/32\",\r\n \"13.94.149.179/32\",\r\n
+ \ \"52.174.22.21/32\",\r\n \"2603:1020:206:402::100/122\",\r\n
+ \ \"2603:1020:206:802::100/122\",\r\n \"2603:1020:206:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestIndia\",\r\n
+ \ \"id\": \"AppServiceManagement.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureAppServiceManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.128/26\",\r\n \"2603:1040:806:402::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.64.115.203/32\",\r\n
+ \ \"40.112.242.192/26\",\r\n \"2603:1030:a07:402::880/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AppServiceManagement.WestUS2\",\r\n
+ \ \"id\": \"AppServiceManagement.WestUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAppServiceManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.0/26\",\r\n
+ \ \"40.91.126.196/32\",\r\n \"52.151.25.45/32\",\r\n \"2603:1030:c06:400::900/122\",\r\n
+ \ \"2603:1030:c06:802::100/122\",\r\n \"2603:1030:c06:c02::100/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectory\",\r\n
+ \ \"id\": \"AzureActiveDirectory\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureAD\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n \"13.66.141.64/27\",\r\n
+ \ \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n \"13.69.229.96/27\",\r\n
+ \ \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n \"13.71.195.224/27\",\r\n
+ \ \"13.71.201.64/26\",\r\n \"13.73.240.32/27\",\r\n \"13.74.104.0/26\",\r\n
+ \ \"13.74.249.156/32\",\r\n \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n
+ \ \"13.77.52.160/27\",\r\n \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n
+ \ \"13.79.37.247/32\",\r\n \"13.86.219.0/27\",\r\n \"13.87.16.0/26\",\r\n
+ \ \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n \"13.89.174.0/27\",\r\n
+ \ \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n \"20.37.75.96/27\",\r\n
+ \ \"20.40.228.64/28\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.9.80/28\",\r\n
+ \ \"20.51.16.128/27\",\r\n \"20.61.98.160/27\",\r\n \"20.61.99.128/28\",\r\n
+ \ \"20.62.58.80/28\",\r\n \"20.62.129.0/27\",\r\n \"20.62.129.240/28\",\r\n
+ \ \"20.65.132.96/28\",\r\n \"20.66.2.32/27\",\r\n \"20.66.3.16/28\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.187.197.240/28\",\r\n \"20.190.128.0/18\",\r\n
+ \ \"20.194.73.0/28\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"20.195.64.240/28\",\r\n \"23.101.0.70/32\",\r\n
+ \ \"23.101.6.190/32\",\r\n \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n
+ \ \"40.71.13.0/27\",\r\n \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n
+ \ \"40.78.195.160/27\",\r\n \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n
+ \ \"40.79.179.128/27\",\r\n \"40.83.144.56/32\",\r\n \"40.126.0.0/18\",\r\n
+ \ \"51.140.148.192/27\",\r\n \"51.140.208.0/26\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.146.133.80/28\",\r\n \"52.150.157.0/27\",\r\n \"52.159.175.31/32\",\r\n
+ \ \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n \"52.161.110.169/32\",\r\n
+ \ \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n \"52.169.218.0/32\",\r\n
+ \ \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n \"52.178.27.112/32\",\r\n
+ \ \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n \"52.180.177.87/32\",\r\n
+ \ \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n \"52.180.183.8/32\",\r\n
+ \ \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n \"52.187.117.83/32\",\r\n
+ \ \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n \"52.225.188.89/32\",\r\n
+ \ \"52.226.169.40/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.40.168.0/26\",\r\n \"104.41.159.212/32\",\r\n
+ \ \"104.45.138.161/32\",\r\n \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\",\r\n \"2603:1006:2000::/48\",\r\n
+ \ \"2603:1007:200::/48\",\r\n \"2603:1016:1400::/48\",\r\n
+ \ \"2603:1017::/48\",\r\n \"2603:1026:3000::/48\",\r\n \"2603:1027:1::/48\",\r\n
+ \ \"2603:1036:3000::/48\",\r\n \"2603:1037:1::/48\",\r\n
+ \ \"2603:1046:2000::/48\",\r\n \"2603:1047:1::/48\",\r\n
+ \ \"2603:1056:2000::/48\",\r\n \"2603:1057:2::/48\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureActiveDirectoryDomainServices\",\r\n
+ \ \"id\": \"AzureActiveDirectoryDomainServices\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureIdentity\",\r\n \"addressPrefixes\": [\r\n \"13.64.151.161/32\",\r\n
+ \ \"13.66.141.64/27\",\r\n \"13.67.9.224/27\",\r\n \"13.69.66.160/27\",\r\n
+ \ \"13.69.229.96/27\",\r\n \"13.70.73.32/27\",\r\n \"13.71.172.160/27\",\r\n
+ \ \"13.71.195.224/27\",\r\n \"13.73.240.32/27\",\r\n \"13.74.249.156/32\",\r\n
+ \ \"13.75.38.32/27\",\r\n \"13.75.105.168/32\",\r\n \"13.77.52.160/27\",\r\n
+ \ \"13.78.108.192/27\",\r\n \"13.78.172.246/32\",\r\n \"13.79.37.247/32\",\r\n
+ \ \"13.86.219.0/27\",\r\n \"13.87.57.160/27\",\r\n \"13.87.123.160/27\",\r\n
+ \ \"13.89.174.0/27\",\r\n \"20.36.107.192/27\",\r\n \"20.36.115.64/27\",\r\n
+ \ \"20.37.75.96/27\",\r\n \"20.43.120.32/27\",\r\n \"20.44.3.160/27\",\r\n
+ \ \"20.44.16.32/27\",\r\n \"20.46.10.64/27\",\r\n \"20.51.16.128/27\",\r\n
+ \ \"20.61.98.160/27\",\r\n \"20.62.129.0/27\",\r\n \"20.66.2.32/27\",\r\n
+ \ \"20.187.197.32/27\",\r\n \"20.195.56.102/32\",\r\n \"20.195.57.118/32\",\r\n
+ \ \"20.195.64.192/27\",\r\n \"23.101.0.70/32\",\r\n \"23.101.6.190/32\",\r\n
+ \ \"40.68.160.142/32\",\r\n \"40.69.107.160/27\",\r\n \"40.71.13.0/27\",\r\n
+ \ \"40.74.101.64/27\",\r\n \"40.74.146.192/27\",\r\n \"40.78.195.160/27\",\r\n
+ \ \"40.78.203.64/27\",\r\n \"40.79.131.128/27\",\r\n \"40.79.179.128/27\",\r\n
+ \ \"40.83.144.56/32\",\r\n \"51.140.148.192/27\",\r\n \"51.140.211.192/27\",\r\n
+ \ \"52.138.65.157/32\",\r\n \"52.138.68.41/32\",\r\n \"52.146.132.96/27\",\r\n
+ \ \"52.150.157.0/27\",\r\n \"52.161.13.71/32\",\r\n \"52.161.13.95/32\",\r\n
+ \ \"52.161.110.169/32\",\r\n \"52.162.110.96/27\",\r\n \"52.169.125.119/32\",\r\n
+ \ \"52.169.218.0/32\",\r\n \"52.174.189.149/32\",\r\n \"52.175.18.134/32\",\r\n
+ \ \"52.178.27.112/32\",\r\n \"52.179.122.218/32\",\r\n \"52.179.126.223/32\",\r\n
+ \ \"52.180.177.87/32\",\r\n \"52.180.179.108/32\",\r\n \"52.180.181.61/32\",\r\n
+ \ \"52.180.183.8/32\",\r\n \"52.187.19.1/32\",\r\n \"52.187.113.48/32\",\r\n
+ \ \"52.187.117.83/32\",\r\n \"52.187.120.237/32\",\r\n \"52.225.184.198/32\",\r\n
+ \ \"52.225.188.89/32\",\r\n \"52.231.19.128/27\",\r\n \"52.231.147.192/27\",\r\n
+ \ \"65.52.251.96/27\",\r\n \"104.40.84.19/32\",\r\n \"104.40.87.209/32\",\r\n
+ \ \"104.40.156.18/32\",\r\n \"104.41.159.212/32\",\r\n \"104.45.138.161/32\",\r\n
+ \ \"104.46.178.128/27\",\r\n \"104.211.147.160/27\",\r\n
+ \ \"191.233.204.160/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureAdvancedThreatProtection\",\r\n \"id\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAdvancedThreatProtection\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.72.105.31/32\",\r\n \"13.72.105.76/32\",\r\n
+ \ \"13.93.176.195/32\",\r\n \"13.93.176.215/32\",\r\n \"20.36.120.112/29\",\r\n
+ \ \"20.37.64.112/29\",\r\n \"20.37.156.192/29\",\r\n \"20.37.195.8/29\",\r\n
+ \ \"20.37.224.112/29\",\r\n \"20.38.84.96/29\",\r\n \"20.38.136.112/29\",\r\n
+ \ \"20.39.11.16/29\",\r\n \"20.41.4.96/29\",\r\n \"20.41.65.128/29\",\r\n
+ \ \"20.41.192.112/29\",\r\n \"20.42.4.192/29\",\r\n \"20.42.129.176/29\",\r\n
+ \ \"20.42.224.112/29\",\r\n \"20.43.41.144/29\",\r\n \"20.43.65.136/29\",\r\n
+ \ \"20.43.130.88/29\",\r\n \"20.45.112.112/29\",\r\n \"20.45.192.112/29\",\r\n
+ \ \"20.72.16.24/29\",\r\n \"20.150.160.112/29\",\r\n \"20.184.13.55/32\",\r\n
+ \ \"20.184.14.129/32\",\r\n \"20.189.106.120/29\",\r\n \"20.192.160.24/29\",\r\n
+ \ \"20.192.225.16/29\",\r\n \"40.65.107.78/32\",\r\n \"40.65.111.206/32\",\r\n
+ \ \"40.67.48.112/29\",\r\n \"40.74.30.96/29\",\r\n \"40.80.56.112/29\",\r\n
+ \ \"40.80.168.112/29\",\r\n \"40.80.188.16/29\",\r\n \"40.82.253.64/29\",\r\n
+ \ \"40.85.133.119/32\",\r\n \"40.85.133.178/32\",\r\n \"40.87.44.77/32\",\r\n
+ \ \"40.87.45.222/32\",\r\n \"40.89.16.112/29\",\r\n \"40.119.9.224/29\",\r\n
+ \ \"51.12.46.232/29\",\r\n \"51.12.198.192/29\",\r\n \"51.104.25.144/29\",\r\n
+ \ \"51.105.80.112/29\",\r\n \"51.105.88.112/29\",\r\n \"51.107.48.112/29\",\r\n
+ \ \"51.107.144.112/29\",\r\n \"51.120.40.112/29\",\r\n \"51.120.224.112/29\",\r\n
+ \ \"51.137.161.128/29\",\r\n \"51.143.183.3/32\",\r\n \"51.143.183.52/32\",\r\n
+ \ \"51.143.192.112/29\",\r\n \"52.136.48.112/29\",\r\n \"52.140.104.112/29\",\r\n
+ \ \"52.150.139.64/29\",\r\n \"52.170.0.116/32\",\r\n \"52.170.1.228/32\",\r\n
+ \ \"52.170.249.197/32\",\r\n \"52.174.66.179/32\",\r\n \"52.174.66.180/32\",\r\n
+ \ \"52.225.176.98/32\",\r\n \"52.225.181.34/32\",\r\n \"52.225.183.206/32\",\r\n
+ \ \"52.228.81.128/29\",\r\n \"104.42.25.10/32\",\r\n \"104.42.29.8/32\",\r\n
+ \ \"168.63.46.233/32\",\r\n \"168.63.46.241/32\",\r\n \"191.233.8.24/29\",\r\n
+ \ \"191.235.225.136/29\",\r\n \"2603:1000:4::140/123\",\r\n
+ \ \"2603:1000:104:1::140/123\",\r\n \"2603:1010:6:1::140/123\",\r\n
+ \ \"2603:1010:101::140/123\",\r\n \"2603:1010:304::140/123\",\r\n
+ \ \"2603:1010:404::140/123\",\r\n \"2603:1020:5:1::140/123\",\r\n
+ \ \"2603:1020:206:1::140/123\",\r\n \"2603:1020:305::140/123\",\r\n
+ \ \"2603:1020:405::140/123\",\r\n \"2603:1020:605::140/123\",\r\n
+ \ \"2603:1020:705:1::140/123\",\r\n \"2603:1020:805:1::140/123\",\r\n
+ \ \"2603:1020:905::140/123\",\r\n \"2603:1020:a04:1::140/123\",\r\n
+ \ \"2603:1020:b04::140/123\",\r\n \"2603:1020:c04:1::140/123\",\r\n
+ \ \"2603:1020:d04::140/123\",\r\n \"2603:1020:e04:1::140/123\",\r\n
+ \ \"2603:1020:f04::140/123\",\r\n \"2603:1020:1004::140/123\",\r\n
+ \ \"2603:1020:1104::140/123\",\r\n \"2603:1030:f:1::140/123\",\r\n
+ \ \"2603:1030:10:1::140/123\",\r\n \"2603:1030:104:1::140/123\",\r\n
+ \ \"2603:1030:107::140/123\",\r\n \"2603:1030:210:1::140/123\",\r\n
+ \ \"2603:1030:40b:1::140/123\",\r\n \"2603:1030:40c:1::140/123\",\r\n
+ \ \"2603:1030:504:1::140/123\",\r\n \"2603:1030:608::140/123\",\r\n
+ \ \"2603:1030:807:1::140/123\",\r\n \"2603:1030:a07::140/123\",\r\n
+ \ \"2603:1030:b04::140/123\",\r\n \"2603:1030:c06:1::140/123\",\r\n
+ \ \"2603:1030:f05:1::140/123\",\r\n \"2603:1030:1005::140/123\",\r\n
+ \ \"2603:1040:5:1::140/123\",\r\n \"2603:1040:207::140/123\",\r\n
+ \ \"2603:1040:407:1::140/123\",\r\n \"2603:1040:606::140/123\",\r\n
+ \ \"2603:1040:806::140/123\",\r\n \"2603:1040:904:1::140/123\",\r\n
+ \ \"2603:1040:a06:1::140/123\",\r\n \"2603:1040:b04::140/123\",\r\n
+ \ \"2603:1040:c06::140/123\",\r\n \"2603:1040:d04::140/123\",\r\n
+ \ \"2603:1040:f05:1::140/123\",\r\n \"2603:1040:1104::140/123\",\r\n
+ \ \"2603:1050:6:1::140/123\",\r\n \"2603:1050:403::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"40.89.16.112/29\",\r\n
+ \ \"2603:1030:1005::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1020:d04::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureAdvancedThreatProtection.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAdvancedThreatProtection\",\r\n \"addressPrefixes\": [\r\n \"2603:1000:4::140/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR\",\r\n
+ \ \"id\": \"AzureAPIForFHIR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"13.69.233.32/31\",\r\n
+ \ \"13.70.78.170/31\",\r\n \"13.71.175.130/31\",\r\n \"13.71.199.118/31\",\r\n
+ \ \"13.73.244.194/31\",\r\n \"13.73.254.220/30\",\r\n \"13.78.111.194/31\",\r\n
+ \ \"13.80.124.132/32\",\r\n \"13.82.180.206/32\",\r\n \"13.86.221.218/31\",\r\n
+ \ \"13.87.58.136/31\",\r\n \"13.87.124.136/31\",\r\n \"20.36.117.192/31\",\r\n
+ \ \"20.36.123.84/30\",\r\n \"20.37.68.224/30\",\r\n \"20.37.76.204/31\",\r\n
+ \ \"20.37.198.142/31\",\r\n \"20.37.227.102/31\",\r\n \"20.37.228.12/31\",\r\n
+ \ \"20.38.128.170/31\",\r\n \"20.38.141.6/31\",\r\n \"20.38.142.104/31\",\r\n
+ \ \"20.39.15.58/31\",\r\n \"20.40.224.224/31\",\r\n \"20.40.224.228/31\",\r\n
+ \ \"20.40.230.128/28\",\r\n \"20.41.69.50/31\",\r\n \"20.41.69.60/31\",\r\n
+ \ \"20.42.230.234/31\",\r\n \"20.43.45.248/30\",\r\n \"20.43.121.122/31\",\r\n
+ \ \"20.44.4.232/31\",\r\n \"20.44.19.4/31\",\r\n \"20.45.90.96/28\",\r\n
+ \ \"20.45.112.122/31\",\r\n \"20.45.114.204/31\",\r\n \"20.45.117.48/28\",\r\n
+ \ \"20.45.199.40/30\",\r\n \"20.46.12.208/28\",\r\n \"20.46.15.0/27\",\r\n
+ \ \"20.48.192.84/30\",\r\n \"20.48.197.160/28\",\r\n \"20.49.99.46/31\",\r\n
+ \ \"20.49.102.228/31\",\r\n \"20.49.114.188/30\",\r\n \"20.49.127.240/31\",\r\n
+ \ \"20.51.0.208/28\",\r\n \"20.51.13.80/28\",\r\n \"20.51.16.168/31\",\r\n
+ \ \"20.51.21.80/28\",\r\n \"20.52.88.224/28\",\r\n \"20.53.0.32/31\",\r\n
+ \ \"20.53.44.80/31\",\r\n \"20.53.47.208/28\",\r\n \"20.53.49.112/28\",\r\n
+ \ \"20.53.57.64/28\",\r\n \"20.58.67.96/28\",\r\n \"20.61.98.66/31\",\r\n
+ \ \"20.61.98.68/31\",\r\n \"20.61.103.240/28\",\r\n \"20.62.60.112/28\",\r\n
+ \ \"20.62.128.148/30\",\r\n \"20.62.134.240/28\",\r\n \"20.65.134.80/28\",\r\n
+ \ \"20.66.5.144/28\",\r\n \"20.69.1.160/28\",\r\n \"20.72.21.208/28\",\r\n
+ \ \"20.150.165.156/30\",\r\n \"20.150.225.0/31\",\r\n \"20.150.245.64/28\",\r\n
+ \ \"20.150.245.160/27\",\r\n \"20.187.196.196/30\",\r\n \"20.189.228.224/28\",\r\n
+ \ \"20.191.160.26/31\",\r\n \"20.191.160.116/31\",\r\n \"20.191.167.144/28\",\r\n
+ \ \"20.192.45.0/28\",\r\n \"20.192.50.96/27\",\r\n \"20.192.50.240/28\",\r\n
+ \ \"20.192.80.192/28\",\r\n \"20.192.164.188/30\",\r\n \"20.192.184.80/31\",\r\n
+ \ \"20.192.225.200/30\",\r\n \"20.192.238.122/31\",\r\n \"20.193.194.128/27\",\r\n
+ \ \"20.193.194.160/28\",\r\n \"20.193.206.36/31\",\r\n \"20.194.74.160/28\",\r\n
+ \ \"20.194.75.192/27\",\r\n \"20.195.67.208/28\",\r\n \"20.195.74.224/28\",\r\n
+ \ \"20.195.146.208/28\",\r\n \"23.96.205.55/32\",\r\n \"23.98.108.42/31\",\r\n
+ \ \"23.98.108.46/31\",\r\n \"40.64.135.76/30\",\r\n \"40.67.48.122/31\",\r\n
+ \ \"40.67.50.244/31\",\r\n \"40.67.53.240/28\",\r\n \"40.67.60.110/31\",\r\n
+ \ \"40.69.111.32/31\",\r\n \"40.71.15.192/31\",\r\n \"40.75.35.218/31\",\r\n
+ \ \"40.78.204.44/31\",\r\n \"40.78.238.58/31\",\r\n \"40.78.250.110/31\",\r\n
+ \ \"40.79.116.45/32\",\r\n \"40.80.63.158/31\",\r\n \"40.80.63.244/31\",\r\n
+ \ \"40.80.173.128/30\",\r\n \"40.80.180.2/31\",\r\n \"40.82.248.70/31\",\r\n
+ \ \"40.89.23.40/31\",\r\n \"40.113.78.45/32\",\r\n \"40.120.82.160/28\",\r\n
+ \ \"40.126.239.114/32\",\r\n \"51.11.192.32/31\",\r\n \"51.12.20.32/28\",\r\n
+ \ \"51.12.20.64/27\",\r\n \"51.12.28.64/27\",\r\n \"51.12.28.96/28\",\r\n
+ \ \"51.12.42.64/30\",\r\n \"51.12.100.104/31\",\r\n \"51.12.193.28/30\",\r\n
+ \ \"51.12.204.224/31\",\r\n \"51.13.136.56/31\",\r\n \"51.13.138.32/28\",\r\n
+ \ \"51.104.9.98/31\",\r\n \"51.104.30.170/31\",\r\n \"51.107.53.48/30\",\r\n
+ \ \"51.107.60.94/31\",\r\n \"51.107.148.18/31\",\r\n \"51.107.156.134/31\",\r\n
+ \ \"51.107.243.128/28\",\r\n \"51.107.249.72/31\",\r\n \"51.107.251.112/28\",\r\n
+ \ \"51.116.51.32/30\",\r\n \"51.116.55.128/28\",\r\n \"51.116.60.240/31\",\r\n
+ \ \"51.116.146.216/30\",\r\n \"51.116.158.58/31\",\r\n \"51.120.40.126/31\",\r\n
+ \ \"51.120.100.94/31\",\r\n \"51.120.220.94/31\",\r\n \"51.120.228.36/31\",\r\n
+ \ \"51.120.232.32/31\",\r\n \"51.120.234.144/28\",\r\n \"51.120.235.192/27\",\r\n
+ \ \"51.137.164.94/31\",\r\n \"51.137.167.168/31\",\r\n \"51.138.160.0/31\",\r\n
+ \ \"51.138.211.16/28\",\r\n \"51.140.40.89/32\",\r\n \"51.140.210.86/31\",\r\n
+ \ \"51.140.224.110/32\",\r\n \"51.143.208.132/31\",\r\n \"51.143.213.208/28\",\r\n
+ \ \"52.136.48.122/31\",\r\n \"52.136.52.36/31\",\r\n \"52.136.184.0/30\",\r\n
+ \ \"52.136.186.32/28\",\r\n \"52.139.106.72/31\",\r\n \"52.139.108.32/28\",\r\n
+ \ \"52.140.110.164/30\",\r\n \"52.146.131.52/30\",\r\n \"52.146.137.176/28\",\r\n
+ \ \"52.147.113.96/28\",\r\n \"52.150.156.44/30\",\r\n \"52.161.13.30/32\",\r\n
+ \ \"52.162.111.130/31\",\r\n \"52.167.239.195/32\",\r\n \"52.172.112.24/30\",\r\n
+ \ \"52.172.116.144/28\",\r\n \"52.178.17.0/31\",\r\n \"52.182.141.14/31\",\r\n
+ \ \"52.231.23.8/31\",\r\n \"52.231.146.86/31\",\r\n \"52.231.152.94/32\",\r\n
+ \ \"52.247.220.99/32\",\r\n \"65.52.252.248/31\",\r\n \"102.37.64.48/31\",\r\n
+ \ \"102.37.81.144/28\",\r\n \"102.37.161.64/28\",\r\n \"102.133.58.204/30\",\r\n
+ \ \"102.133.124.12/31\",\r\n \"102.133.220.196/30\",\r\n
+ \ \"104.46.162.0/31\",\r\n \"104.46.178.112/31\",\r\n \"104.46.183.192/28\",\r\n
+ \ \"104.210.152.157/32\",\r\n \"104.214.161.14/31\",\r\n
+ \ \"191.233.14.192/30\",\r\n \"191.233.51.212/31\",\r\n \"191.233.207.24/31\",\r\n
+ \ \"191.234.139.160/31\",\r\n \"191.235.225.154/31\",\r\n
+ \ \"191.238.72.224/28\",\r\n \"2603:1020:e04::7c0/123\",\r\n
+ \ \"2603:1020:1004:2::c0/123\",\r\n \"2603:1020:1104:1::4e0/123\",\r\n
+ \ \"2603:1030:f:2::4e0/123\",\r\n \"2603:1030:504:2::c0/123\",\r\n
+ \ \"2603:1040:d04:2::20/123\",\r\n \"2603:1040:f05::7c0/123\",\r\n
+ \ \"2603:1040:1104:1::440/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"id\":
+ \"AzureAPIForFHIR.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.40.183/32\",\r\n \"20.195.67.208/28\",\r\n
+ \ \"23.98.108.42/31\",\r\n \"23.98.108.46/31\",\r\n \"40.78.238.58/31\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureAPIForFHIR.UKNorth\",\r\n
+ \ \"id\": \"AzureAPIForFHIR.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAPIForFHIR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.136/31\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureArcInfrastructure\",\r\n \"id\": \"AzureArcInfrastructure\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureArcInfrastructure\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.219/32\",\r\n \"13.70.79.64/32\",\r\n
+ \ \"13.71.175.129/32\",\r\n \"13.71.199.117/32\",\r\n \"13.73.244.196/32\",\r\n
+ \ \"13.73.253.124/30\",\r\n \"13.74.107.94/32\",\r\n \"13.77.53.221/32\",\r\n
+ \ \"13.78.111.193/32\",\r\n \"13.81.244.155/32\",\r\n \"13.86.223.80/32\",\r\n
+ \ \"13.90.194.180/32\",\r\n \"20.36.122.52/30\",\r\n \"20.37.66.52/30\",\r\n
+ \ \"20.37.196.248/30\",\r\n \"20.37.226.52/30\",\r\n \"20.37.228.8/30\",\r\n
+ \ \"20.38.87.188/30\",\r\n \"20.38.138.56/30\",\r\n \"20.38.141.8/30\",\r\n
+ \ \"20.39.12.228/30\",\r\n \"20.39.14.84/30\",\r\n \"20.40.200.152/29\",\r\n
+ \ \"20.40.224.52/30\",\r\n \"20.41.67.84/30\",\r\n \"20.41.69.52/30\",\r\n
+ \ \"20.41.195.252/30\",\r\n \"20.42.228.216/30\",\r\n \"20.43.43.160/30\",\r\n
+ \ \"20.43.45.240/30\",\r\n \"20.43.67.88/30\",\r\n \"20.43.121.252/32\",\r\n
+ \ \"20.44.19.6/32\",\r\n \"20.45.197.224/30\",\r\n \"20.45.199.32/30\",\r\n
+ \ \"20.48.192.76/30\",\r\n \"20.49.99.12/30\",\r\n \"20.49.102.212/30\",\r\n
+ \ \"20.49.109.32/30\",\r\n \"20.49.113.12/30\",\r\n \"20.49.114.52/30\",\r\n
+ \ \"20.49.120.32/30\",\r\n \"20.49.125.188/30\",\r\n \"20.50.1.196/30\",\r\n
+ \ \"20.53.0.34/32\",\r\n \"20.53.41.44/30\",\r\n \"20.61.96.184/30\",\r\n
+ \ \"20.150.165.140/30\",\r\n \"20.187.194.204/30\",\r\n \"20.189.111.204/30\",\r\n
+ \ \"20.191.160.28/30\",\r\n \"20.192.164.176/30\",\r\n \"20.192.228.252/30\",\r\n
+ \ \"23.98.104.12/30\",\r\n \"23.98.108.32/30\",\r\n \"40.64.132.84/30\",\r\n
+ \ \"40.64.135.72/30\",\r\n \"40.69.111.34/32\",\r\n \"40.71.15.194/32\",\r\n
+ \ \"40.78.204.46/32\",\r\n \"40.78.239.96/32\",\r\n \"40.79.138.46/32\",\r\n
+ \ \"40.80.59.24/30\",\r\n \"40.80.172.12/30\",\r\n \"40.89.20.128/30\",\r\n
+ \ \"40.89.23.32/30\",\r\n \"40.119.9.232/30\",\r\n \"51.104.28.216/30\",\r\n
+ \ \"51.104.31.172/30\",\r\n \"51.105.77.50/32\",\r\n \"51.105.90.148/30\",\r\n
+ \ \"51.107.50.56/30\",\r\n \"51.107.53.32/30\",\r\n \"51.107.60.152/32\",\r\n
+ \ \"51.107.146.52/30\",\r\n \"51.116.49.136/30\",\r\n \"51.116.145.136/30\",\r\n
+ \ \"51.116.146.212/30\",\r\n \"51.116.158.60/32\",\r\n \"51.120.42.56/30\",\r\n
+ \ \"51.120.44.196/30\",\r\n \"51.120.100.156/32\",\r\n \"51.120.226.52/30\",\r\n
+ \ \"51.137.164.76/30\",\r\n \"51.137.166.40/30\",\r\n \"51.140.212.216/32\",\r\n
+ \ \"52.136.51.68/30\",\r\n \"52.138.90.54/32\",\r\n \"52.140.107.92/30\",\r\n
+ \ \"52.140.110.108/30\",\r\n \"52.146.79.132/30\",\r\n \"52.146.130.180/30\",\r\n
+ \ \"52.150.152.204/30\",\r\n \"52.150.156.36/30\",\r\n \"52.162.111.132/32\",\r\n
+ \ \"52.182.141.60/32\",\r\n \"52.228.84.80/30\",\r\n \"52.231.23.10/32\",\r\n
+ \ \"52.236.189.74/32\",\r\n \"65.52.252.250/32\",\r\n \"102.133.57.188/30\",\r\n
+ \ \"102.133.154.6/32\",\r\n \"102.133.218.52/30\",\r\n \"102.133.219.188/30\",\r\n
+ \ \"104.46.178.0/30\",\r\n \"104.214.164.48/32\",\r\n \"137.135.98.137/32\",\r\n
+ \ \"191.233.207.26/32\",\r\n \"191.234.136.44/30\",\r\n \"191.234.138.144/30\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup\",\r\n
+ \ \"id\": \"AzureBackup\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"13.67.12.0/24\",\r\n \"13.67.13.0/25\",\r\n \"13.69.65.32/27\",\r\n
+ \ \"13.69.65.128/25\",\r\n \"13.69.107.0/27\",\r\n \"13.69.107.128/25\",\r\n
+ \ \"13.69.228.128/25\",\r\n \"13.69.229.0/27\",\r\n \"13.70.73.192/27\",\r\n
+ \ \"13.70.74.0/26\",\r\n \"13.71.172.0/26\",\r\n \"13.71.172.64/27\",\r\n
+ \ \"13.71.195.64/26\",\r\n \"13.71.195.128/27\",\r\n \"13.74.107.192/27\",\r\n
+ \ \"13.74.108.0/25\",\r\n \"13.75.36.128/25\",\r\n \"13.75.37.0/24\",\r\n
+ \ \"13.77.52.32/27\",\r\n \"13.77.52.64/26\",\r\n \"13.78.108.32/27\",\r\n
+ \ \"13.78.108.64/26\",\r\n \"13.86.218.0/25\",\r\n \"13.86.218.128/26\",\r\n
+ \ \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"13.87.123.0/26\",\r\n
+ \ \"13.87.123.64/27\",\r\n \"13.89.171.128/26\",\r\n \"13.89.171.192/27\",\r\n
+ \ \"20.36.107.32/27\",\r\n \"20.36.107.64/26\",\r\n \"20.36.114.224/27\",\r\n
+ \ \"20.36.115.0/26\",\r\n \"20.37.75.0/26\",\r\n \"20.37.75.64/27\",\r\n
+ \ \"20.38.147.0/27\",\r\n \"20.38.147.64/26\",\r\n \"20.40.229.128/25\",\r\n
+ \ \"20.44.3.64/26\",\r\n \"20.44.3.128/27\",\r\n \"20.44.8.32/27\",\r\n
+ \ \"20.44.8.64/26\",\r\n \"20.44.16.128/27\",\r\n \"20.44.16.192/26\",\r\n
+ \ \"20.44.27.128/27\",\r\n \"20.45.90.0/26\",\r\n \"20.45.123.0/26\",\r\n
+ \ \"20.45.123.64/28\",\r\n \"20.45.125.192/27\",\r\n \"20.46.12.0/25\",\r\n
+ \ \"20.48.197.0/26\",\r\n \"20.49.82.192/26\",\r\n \"20.49.83.0/27\",\r\n
+ \ \"20.49.90.192/26\",\r\n \"20.49.91.0/27\",\r\n \"20.51.0.0/26\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"20.51.20.128/25\",\r\n \"20.52.88.0/26\",\r\n
+ \ \"20.53.47.128/26\",\r\n \"20.53.49.0/26\",\r\n \"20.53.56.192/26\",\r\n
+ \ \"20.58.67.128/25\",\r\n \"20.61.102.128/25\",\r\n \"20.61.103.0/26\",\r\n
+ \ \"20.62.59.128/25\",\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"20.65.133.128/26\",\r\n \"20.66.4.0/25\",\r\n \"20.66.4.128/26\",\r\n
+ \ \"20.69.1.0/26\",\r\n \"20.72.27.64/26\",\r\n \"20.150.171.96/27\",\r\n
+ \ \"20.150.171.128/26\",\r\n \"20.150.179.80/28\",\r\n \"20.150.179.128/26\",\r\n
+ \ \"20.150.181.64/27\",\r\n \"20.150.187.80/28\",\r\n \"20.150.187.128/26\",\r\n
+ \ \"20.150.190.0/27\",\r\n \"20.150.244.64/26\",\r\n \"20.189.228.64/26\",\r\n
+ \ \"20.191.166.128/26\",\r\n \"20.192.44.128/26\",\r\n \"20.192.50.128/26\",\r\n
+ \ \"20.192.80.64/26\",\r\n \"20.192.99.80/28\",\r\n \"20.192.99.128/26\",\r\n
+ \ \"20.192.235.32/27\",\r\n \"20.192.235.64/26\",\r\n \"20.193.192.192/26\",\r\n
+ \ \"20.193.203.0/26\",\r\n \"20.193.203.64/27\",\r\n \"20.194.66.192/26\",\r\n
+ \ \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n \"20.195.66.0/24\",\r\n
+ \ \"20.195.67.0/25\",\r\n \"20.195.73.0/24\",\r\n \"20.195.74.0/25\",\r\n
+ \ \"20.195.146.128/26\",\r\n \"23.98.83.0/27\",\r\n \"23.98.83.128/25\",\r\n
+ \ \"23.98.84.0/24\",\r\n \"40.67.59.96/27\",\r\n \"40.67.59.128/26\",\r\n
+ \ \"40.69.107.32/27\",\r\n \"40.69.107.64/26\",\r\n \"40.70.147.128/26\",\r\n
+ \ \"40.70.147.192/27\",\r\n \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n
+ \ \"40.74.98.64/26\",\r\n \"40.74.98.128/27\",\r\n \"40.74.146.96/27\",\r\n
+ \ \"40.74.146.128/26\",\r\n \"40.75.34.96/27\",\r\n \"40.75.34.192/26\",\r\n
+ \ \"40.78.195.32/27\",\r\n \"40.78.195.64/26\",\r\n \"40.78.202.160/27\",\r\n
+ \ \"40.78.202.192/26\",\r\n \"40.78.227.64/26\",\r\n \"40.78.227.128/25\",\r\n
+ \ \"40.78.234.192/27\",\r\n \"40.78.235.0/24\",\r\n \"40.78.236.0/25\",\r\n
+ \ \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n \"40.78.250.224/27\",\r\n
+ \ \"40.78.251.0/26\",\r\n \"40.79.131.0/26\",\r\n \"40.79.131.64/27\",\r\n
+ \ \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n \"40.79.162.128/27\",\r\n
+ \ \"40.79.162.192/26\",\r\n \"40.79.170.64/26\",\r\n \"40.79.170.128/27\",\r\n
+ \ \"40.79.171.32/27\",\r\n \"40.79.179.32/27\",\r\n \"40.79.179.64/26\",\r\n
+ \ \"40.79.187.32/27\",\r\n \"40.79.187.64/26\",\r\n \"40.79.195.32/27\",\r\n
+ \ \"40.79.195.64/26\",\r\n \"40.80.51.0/27\",\r\n \"40.120.74.192/26\",\r\n
+ \ \"40.120.75.0/27\",\r\n \"40.120.82.0/26\",\r\n \"51.12.17.64/26\",\r\n
+ \ \"51.12.25.128/26\",\r\n \"51.12.99.96/27\",\r\n \"51.12.99.128/26\",\r\n
+ \ \"51.12.203.96/27\",\r\n \"51.12.203.128/26\",\r\n \"51.12.227.80/28\",\r\n
+ \ \"51.12.227.128/26\",\r\n \"51.12.235.80/28\",\r\n \"51.12.235.128/26\",\r\n
+ \ \"51.13.137.128/26\",\r\n \"51.105.67.32/27\",\r\n \"51.105.67.64/26\",\r\n
+ \ \"51.105.75.0/27\",\r\n \"51.105.75.64/26\",\r\n \"51.107.59.64/26\",\r\n
+ \ \"51.107.59.128/27\",\r\n \"51.107.155.64/26\",\r\n \"51.107.155.128/27\",\r\n
+ \ \"51.107.243.0/26\",\r\n \"51.107.251.0/26\",\r\n \"51.116.55.0/26\",\r\n
+ \ \"51.116.59.64/26\",\r\n \"51.116.59.128/27\",\r\n \"51.116.155.128/26\",\r\n
+ \ \"51.116.155.192/27\",\r\n \"51.116.156.144/28\",\r\n \"51.116.156.192/26\",\r\n
+ \ \"51.116.245.0/26\",\r\n \"51.116.245.64/27\",\r\n \"51.116.250.240/28\",\r\n
+ \ \"51.116.251.64/26\",\r\n \"51.116.253.0/27\",\r\n \"51.120.99.96/27\",\r\n
+ \ \"51.120.99.128/26\",\r\n \"51.120.107.80/28\",\r\n \"51.120.107.128/26\",\r\n
+ \ \"51.120.110.128/27\",\r\n \"51.120.211.80/28\",\r\n \"51.120.211.128/26\",\r\n
+ \ \"51.120.219.96/27\",\r\n \"51.120.219.128/26\",\r\n \"51.120.233.192/26\",\r\n
+ \ \"51.138.210.192/26\",\r\n \"51.140.148.64/26\",\r\n \"51.140.148.128/27\",\r\n
+ \ \"51.140.211.32/27\",\r\n \"51.140.211.64/26\",\r\n \"51.143.212.192/26\",\r\n
+ \ \"51.143.213.0/25\",\r\n \"52.136.185.192/26\",\r\n \"52.138.90.160/27\",\r\n
+ \ \"52.138.90.192/26\",\r\n \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n
+ \ \"52.139.107.128/26\",\r\n \"52.146.136.64/26\",\r\n \"52.146.136.128/25\",\r\n
+ \ \"52.147.113.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"52.167.106.192/27\",\r\n \"52.167.107.0/26\",\r\n \"52.172.116.64/26\",\r\n
+ \ \"52.182.139.64/27\",\r\n \"52.182.139.128/26\",\r\n \"52.231.19.0/26\",\r\n
+ \ \"52.231.19.64/27\",\r\n \"52.231.147.32/27\",\r\n \"52.231.147.64/26\",\r\n
+ \ \"52.236.187.0/27\",\r\n \"52.236.187.128/25\",\r\n \"52.246.155.0/27\",\r\n
+ \ \"52.246.155.64/26\",\r\n \"65.52.251.0/26\",\r\n \"65.52.251.64/27\",\r\n
+ \ \"102.37.81.0/26\",\r\n \"102.37.160.192/26\",\r\n \"102.133.27.64/26\",\r\n
+ \ \"102.133.27.128/27\",\r\n \"102.133.123.96/27\",\r\n \"102.133.155.64/26\",\r\n
+ \ \"102.133.155.128/27\",\r\n \"102.133.251.0/27\",\r\n \"104.46.183.64/26\",\r\n
+ \ \"104.211.82.0/26\",\r\n \"104.211.82.64/27\",\r\n \"104.211.147.0/26\",\r\n
+ \ \"104.211.147.64/27\",\r\n \"104.214.19.96/27\",\r\n \"104.214.19.128/26\",\r\n
+ \ \"191.233.50.224/27\",\r\n \"191.233.51.64/26\",\r\n \"191.233.204.0/26\",\r\n
+ \ \"191.233.204.64/27\",\r\n \"191.234.147.80/28\",\r\n \"191.234.147.128/26\",\r\n
+ \ \"191.234.149.160/27\",\r\n \"191.234.155.80/28\",\r\n
+ \ \"191.234.155.128/26\",\r\n \"191.234.157.64/27\",\r\n
+ \ \"191.238.72.0/26\",\r\n \"2603:1000:4:402::200/121\",\r\n
+ \ \"2603:1000:104:402::200/121\",\r\n \"2603:1000:104:802::180/121\",\r\n
+ \ \"2603:1000:104:c02::180/121\",\r\n \"2603:1010:6:402::200/121\",\r\n
+ \ \"2603:1010:6:802::180/121\",\r\n \"2603:1010:6:c02::180/121\",\r\n
+ \ \"2603:1010:101:402::200/121\",\r\n \"2603:1010:304:402::200/121\",\r\n
+ \ \"2603:1010:404:402::200/121\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\",\r\n
+ \ \"2603:1020:206:402::200/121\",\r\n \"2603:1020:206:802::180/121\",\r\n
+ \ \"2603:1020:206:c02::180/121\",\r\n \"2603:1020:305:402::200/121\",\r\n
+ \ \"2603:1020:405:402::200/121\",\r\n \"2603:1020:605:402::200/121\",\r\n
+ \ \"2603:1020:705:402::200/121\",\r\n \"2603:1020:705:802::180/121\",\r\n
+ \ \"2603:1020:705:c02::180/121\",\r\n \"2603:1020:805:402::200/121\",\r\n
+ \ \"2603:1020:805:802::180/121\",\r\n \"2603:1020:805:c02::180/121\",\r\n
+ \ \"2603:1020:905:402::200/121\",\r\n \"2603:1020:a04:402::200/121\",\r\n
+ \ \"2603:1020:a04:802::180/121\",\r\n \"2603:1020:a04:c02::180/121\",\r\n
+ \ \"2603:1020:b04:402::200/121\",\r\n \"2603:1020:c04:402::200/121\",\r\n
+ \ \"2603:1020:c04:802::180/121\",\r\n \"2603:1020:c04:c02::180/121\",\r\n
+ \ \"2603:1020:d04:402::200/121\",\r\n \"2603:1020:e04:3::200/121\",\r\n
+ \ \"2603:1020:e04:402::200/121\",\r\n \"2603:1020:e04:802::180/121\",\r\n
+ \ \"2603:1020:e04:c02::180/121\",\r\n \"2603:1020:f04:402::200/121\",\r\n
+ \ \"2603:1020:1004:1::780/121\",\r\n \"2603:1020:1004:400::100/121\",\r\n
+ \ \"2603:1020:1004:400::300/121\",\r\n \"2603:1020:1004:c02::200/121\",\r\n
+ \ \"2603:1020:1104:1::400/121\",\r\n \"2603:1020:1104:400::200/121\",\r\n
+ \ \"2603:1030:f:2::580/121\",\r\n \"2603:1030:f:400::a00/121\",\r\n
+ \ \"2603:1030:10:402::200/121\",\r\n \"2603:1030:10:802::180/121\",\r\n
+ \ \"2603:1030:10:c02::180/121\",\r\n \"2603:1030:104:402::200/121\",\r\n
+ \ \"2603:1030:107:400::180/121\",\r\n \"2603:1030:210:402::200/121\",\r\n
+ \ \"2603:1030:210:802::180/121\",\r\n \"2603:1030:210:c02::180/121\",\r\n
+ \ \"2603:1030:40b:400::a00/121\",\r\n \"2603:1030:40b:800::180/121\",\r\n
+ \ \"2603:1030:40b:c00::180/121\",\r\n \"2603:1030:40c:402::200/121\",\r\n
+ \ \"2603:1030:40c:802::180/121\",\r\n \"2603:1030:40c:c02::180/121\",\r\n
+ \ \"2603:1030:504:2::100/121\",\r\n \"2603:1030:504:402::100/121\",\r\n
+ \ \"2603:1030:504:402::300/121\",\r\n \"2603:1030:504:802::280/121\",\r\n
+ \ \"2603:1030:504:c02::200/121\",\r\n \"2603:1030:608:402::200/121\",\r\n
+ \ \"2603:1030:807:402::200/121\",\r\n \"2603:1030:807:802::180/121\",\r\n
+ \ \"2603:1030:807:c02::180/121\",\r\n \"2603:1030:a07:402::180/121\",\r\n
+ \ \"2603:1030:b04:402::200/121\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\",\r\n
+ \ \"2603:1030:f05:402::200/121\",\r\n \"2603:1030:f05:802::180/121\",\r\n
+ \ \"2603:1030:f05:c02::180/121\",\r\n \"2603:1030:1005:402::200/121\",\r\n
+ \ \"2603:1040:5:402::200/121\",\r\n \"2603:1040:5:802::180/121\",\r\n
+ \ \"2603:1040:5:c02::180/121\",\r\n \"2603:1040:207:402::200/121\",\r\n
+ \ \"2603:1040:407:402::200/121\",\r\n \"2603:1040:407:802::180/121\",\r\n
+ \ \"2603:1040:407:c02::180/121\",\r\n \"2603:1040:606:402::200/121\",\r\n
+ \ \"2603:1040:806:402::200/121\",\r\n \"2603:1040:904:402::200/121\",\r\n
+ \ \"2603:1040:904:802::180/121\",\r\n \"2603:1040:904:c02::180/121\",\r\n
+ \ \"2603:1040:a06:402::200/121\",\r\n \"2603:1040:a06:802::180/121\",\r\n
+ \ \"2603:1040:a06:c02::180/121\",\r\n \"2603:1040:b04:402::200/121\",\r\n
+ \ \"2603:1040:c06:402::200/121\",\r\n \"2603:1040:d04:1::780/121\",\r\n
+ \ \"2603:1040:d04:400::100/121\",\r\n \"2603:1040:d04:400::300/121\",\r\n
+ \ \"2603:1040:d04:c02::200/121\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\",\r\n \"2603:1040:1104:1::480/121\",\r\n
+ \ \"2603:1040:1104:400::200/121\",\r\n \"2603:1050:6:402::200/121\",\r\n
+ \ \"2603:1050:6:802::180/121\",\r\n \"2603:1050:6:c02::180/121\",\r\n
+ \ \"2603:1050:403:400::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.AustraliaCentral2\",\r\n \"id\":
+ \"AzureBackup.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.224/27\",\r\n \"20.36.115.0/26\",\r\n
+ \ \"20.53.56.192/26\",\r\n \"2603:1010:404:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.BrazilSoutheast\",\r\n
+ \ \"id\": \"AzureBackup.BrazilSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilse\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBackup\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.195.146.128/26\",\r\n \"191.233.50.224/27\",\r\n
+ \ \"191.233.51.64/26\",\r\n \"2603:1050:403:400::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.EastUS\",\r\n
+ \ \"id\": \"AzureBackup.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.62.133.128/25\",\r\n \"20.62.134.0/26\",\r\n
+ \ \"40.71.12.0/25\",\r\n \"40.71.12.128/26\",\r\n \"40.78.227.64/26\",\r\n
+ \ \"40.78.227.128/25\",\r\n \"40.79.155.64/26\",\r\n \"40.79.155.128/25\",\r\n
+ \ \"2603:1030:210:402::200/121\",\r\n \"2603:1030:210:802::180/121\",\r\n
+ \ \"2603:1030:210:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.KoreaCentral\",\r\n \"id\": \"AzureBackup.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"20.44.27.128/27\",\r\n
+ \ \"20.194.66.192/26\",\r\n \"20.194.67.0/27\",\r\n \"20.194.74.0/26\",\r\n
+ \ \"52.231.19.0/26\",\r\n \"52.231.19.64/27\",\r\n \"2603:1040:f05:2::/121\",\r\n
+ \ \"2603:1040:f05:402::200/121\",\r\n \"2603:1040:f05:802::180/121\",\r\n
+ \ \"2603:1040:f05:c02::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthCentralUS\",\r\n \"id\":
+ \"AzureBackup.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.0.0/26\",\r\n \"52.162.107.192/26\",\r\n \"52.162.110.0/27\",\r\n
+ \ \"2603:1030:608:402::200/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBackup.NorthEurope\",\r\n \"id\": \"AzureBackup.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBackup\",\r\n \"addressPrefixes\": [\r\n \"13.69.228.128/25\",\r\n
+ \ \"13.69.229.0/27\",\r\n \"13.74.107.192/27\",\r\n \"13.74.108.0/25\",\r\n
+ \ \"52.138.226.192/27\",\r\n \"52.138.227.0/25\",\r\n \"52.146.136.64/26\",\r\n
+ \ \"52.146.136.128/25\",\r\n \"2603:1020:5:402::200/121\",\r\n
+ \ \"2603:1020:5:802::180/121\",\r\n \"2603:1020:5:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKNorth\",\r\n
+ \ \"id\": \"AzureBackup.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.123.0/26\",\r\n \"13.87.123.64/27\",\r\n \"2603:1020:305:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.UKSouth2\",\r\n
+ \ \"id\": \"AzureBackup.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.57.0/26\",\r\n \"13.87.57.64/27\",\r\n \"2603:1020:405:402::200/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBackup.WestUS2\",\r\n
+ \ \"id\": \"AzureBackup.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBackup\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.192/26\",\r\n \"13.66.141.0/27\",\r\n
+ \ \"20.51.12.128/26\",\r\n \"40.78.243.32/27\",\r\n \"40.78.243.64/26\",\r\n
+ \ \"40.78.250.224/27\",\r\n \"40.78.251.0/26\",\r\n \"2603:1030:c06:400::a00/121\",\r\n
+ \ \"2603:1030:c06:802::180/121\",\r\n \"2603:1030:c06:c02::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService\",\r\n
+ \ \"id\": \"AzureBotService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.64/30\",\r\n \"13.67.10.88/30\",\r\n \"13.69.67.56/30\",\r\n
+ \ \"13.69.227.252/30\",\r\n \"13.70.74.112/30\",\r\n \"13.71.173.240/30\",\r\n
+ \ \"13.71.196.160/30\",\r\n \"13.73.248.0/30\",\r\n \"13.75.39.72/30\",\r\n
+ \ \"13.77.53.80/30\",\r\n \"13.78.108.172/30\",\r\n \"13.86.219.168/30\",\r\n
+ \ \"13.87.58.40/30\",\r\n \"13.87.124.40/30\",\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.36.108.112/30\",\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"20.37.64.64/30\",\r\n \"20.37.76.104/30\",\r\n \"20.37.152.64/30\",\r\n
+ \ \"20.37.192.64/30\",\r\n \"20.37.224.64/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"20.38.128.72/30\",\r\n \"20.38.136.64/30\",\r\n \"20.39.8.64/30\",\r\n
+ \ \"20.41.0.64/30\",\r\n \"20.41.64.64/30\",\r\n \"20.41.192.64/30\",\r\n
+ \ \"20.42.0.64/30\",\r\n \"20.42.128.64/30\",\r\n \"20.42.224.64/30\",\r\n
+ \ \"20.43.40.64/30\",\r\n \"20.43.64.64/30\",\r\n \"20.43.121.8/30\",\r\n
+ \ \"20.43.128.64/30\",\r\n \"20.44.4.72/30\",\r\n \"20.44.17.24/30\",\r\n
+ \ \"20.44.27.208/30\",\r\n \"20.45.112.64/30\",\r\n \"20.45.123.112/30\",\r\n
+ \ \"20.45.192.64/30\",\r\n \"20.72.16.16/30\",\r\n \"20.150.160.120/30\",\r\n
+ \ \"20.189.104.64/30\",\r\n \"20.192.160.16/30\",\r\n \"20.192.224.64/26\",\r\n
+ \ \"40.67.48.64/30\",\r\n \"40.67.58.4/30\",\r\n \"40.69.108.56/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"40.74.24.64/30\",\r\n \"40.74.147.168/30\",\r\n
+ \ \"40.78.196.56/30\",\r\n \"40.78.202.132/30\",\r\n \"40.79.132.56/30\",\r\n
+ \ \"40.79.180.24/30\",\r\n \"40.80.56.64/30\",\r\n \"40.80.168.64/30\",\r\n
+ \ \"40.80.176.32/30\",\r\n \"40.80.184.64/30\",\r\n \"40.82.248.64/30\",\r\n
+ \ \"40.89.16.64/30\",\r\n \"51.12.40.64/26\",\r\n \"51.12.192.64/26\",\r\n
+ \ \"51.104.8.248/30\",\r\n \"51.104.24.64/30\",\r\n \"51.105.80.64/30\",\r\n
+ \ \"51.105.88.64/30\",\r\n \"51.107.48.64/30\",\r\n \"51.107.58.4/30\",\r\n
+ \ \"51.107.144.64/30\",\r\n \"51.107.154.4/30\",\r\n \"51.116.48.64/30\",\r\n
+ \ \"51.116.144.64/30\",\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"51.120.218.4/30\",\r\n \"51.120.224.64/30\",\r\n \"51.137.160.64/30\",\r\n
+ \ \"51.140.212.72/30\",\r\n \"51.143.192.64/30\",\r\n \"52.136.48.64/30\",\r\n
+ \ \"52.140.104.64/30\",\r\n \"52.150.136.64/30\",\r\n \"52.162.111.16/30\",\r\n
+ \ \"52.228.80.64/30\",\r\n \"52.231.148.88/30\",\r\n \"65.52.252.104/30\",\r\n
+ \ \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n \"102.133.124.8/30\",\r\n
+ \ \"102.133.216.64/30\",\r\n \"191.233.8.16/30\",\r\n \"191.233.205.96/30\",\r\n
+ \ \"191.235.224.64/30\",\r\n \"2603:1000:4::20/123\",\r\n
+ \ \"2603:1000:104:1::20/123\",\r\n \"2603:1010:6:1::20/123\",\r\n
+ \ \"2603:1010:101::20/123\",\r\n \"2603:1010:304::20/123\",\r\n
+ \ \"2603:1010:404::20/123\",\r\n \"2603:1020:5:1::20/123\",\r\n
+ \ \"2603:1020:206:1::20/123\",\r\n \"2603:1020:305::20/123\",\r\n
+ \ \"2603:1020:405::20/123\",\r\n \"2603:1020:605::20/123\",\r\n
+ \ \"2603:1020:705:1::20/123\",\r\n \"2603:1020:805:1::20/123\",\r\n
+ \ \"2603:1020:905::20/123\",\r\n \"2603:1020:a04:1::20/123\",\r\n
+ \ \"2603:1020:b04::20/123\",\r\n \"2603:1020:c04:1::20/123\",\r\n
+ \ \"2603:1020:d04::20/123\",\r\n \"2603:1020:e04:1::20/123\",\r\n
+ \ \"2603:1020:f04::20/123\",\r\n \"2603:1020:1004::20/123\",\r\n
+ \ \"2603:1020:1104::20/123\",\r\n \"2603:1030:f:1::20/123\",\r\n
+ \ \"2603:1030:10:1::20/123\",\r\n \"2603:1030:104:1::20/123\",\r\n
+ \ \"2603:1030:107::20/123\",\r\n \"2603:1030:210:1::20/123\",\r\n
+ \ \"2603:1030:40b:1::20/123\",\r\n \"2603:1030:40c:1::20/123\",\r\n
+ \ \"2603:1030:504:1::20/123\",\r\n \"2603:1030:608::20/123\",\r\n
+ \ \"2603:1030:807:1::20/123\",\r\n \"2603:1030:a07::20/123\",\r\n
+ \ \"2603:1030:b04::20/123\",\r\n \"2603:1030:c06:1::20/123\",\r\n
+ \ \"2603:1030:f05:1::20/123\",\r\n \"2603:1030:1005::20/123\",\r\n
+ \ \"2603:1040:5:1::20/123\",\r\n \"2603:1040:207::20/123\",\r\n
+ \ \"2603:1040:407:1::20/123\",\r\n \"2603:1040:606::20/123\",\r\n
+ \ \"2603:1040:806::20/123\",\r\n \"2603:1040:904:1::20/123\",\r\n
+ \ \"2603:1040:a06:1::20/123\",\r\n \"2603:1040:b04::20/123\",\r\n
+ \ \"2603:1040:c06::20/123\",\r\n \"2603:1040:d04::20/123\",\r\n
+ \ \"2603:1040:f05:1::20/123\",\r\n \"2603:1040:1104::20/123\",\r\n
+ \ \"2603:1050:6:1::20/123\",\r\n \"2603:1050:403::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureBotService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.115.240/30\",\r\n \"20.36.120.64/30\",\r\n
+ \ \"2603:1010:404::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.CentralUS\",\r\n \"id\": \"AzureBotService.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.116/30\",\r\n
+ \ \"20.37.152.64/30\",\r\n \"2603:1030:10:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureBotService.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.45.192.64/30\",\r\n \"40.78.202.132/30\",\r\n
+ \ \"2603:1030:f:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.EastUS\",\r\n \"id\": \"AzureBotService.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"20.42.0.64/30\",\r\n
+ \ \"40.71.12.244/30\",\r\n \"2603:1030:210:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.GermanyNorth\",\r\n
+ \ \"id\": \"AzureBotService.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.64/30\",\r\n \"2603:1020:d04::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.NorthEurope\",\r\n
+ \ \"id\": \"AzureBotService.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureBotService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.227.252/30\",\r\n \"20.38.80.64/30\",\r\n
+ \ \"2603:1020:5:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.NorwayEast\",\r\n \"id\":
+ \"AzureBotService.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.64/30\",\r\n \"51.120.98.12/30\",\r\n
+ \ \"2603:1020:e04:1::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.SouthAfricaWest\",\r\n \"id\":
+ \"AzureBotService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.88/30\",\r\n \"102.133.56.64/30\",\r\n
+ \ \"2603:1000:4::20/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureBotService.UKSouth\",\r\n \"id\": \"AzureBotService.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureBotService\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.248/30\",\r\n
+ \ \"51.104.24.64/30\",\r\n \"2603:1020:705:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureBotService.UKWest\",\r\n
+ \ \"id\": \"AzureBotService.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.160.64/30\",\r\n \"51.140.212.72/30\",\r\n
+ \ \"2603:1020:605::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestCentralUS\",\r\n \"id\":
+ \"AzureBotService.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.160/30\",\r\n \"52.150.136.64/30\",\r\n
+ \ \"2603:1030:b04::20/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureBotService.WestEurope\",\r\n \"id\":
+ \"AzureBotService.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureBotService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.67.56/30\",\r\n \"40.74.24.64/30\",\r\n \"2603:1020:206:1::20/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud\",\r\n
+ \ \"id\": \"AzureCloud\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.65.0.0/16\",\r\n \"13.66.0.0/17\",\r\n \"13.66.128.0/17\",\r\n
+ \ \"13.67.0.0/17\",\r\n \"13.67.128.0/20\",\r\n \"13.67.144.0/21\",\r\n
+ \ \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n
+ \ \"13.67.160.0/19\",\r\n \"13.67.192.0/18\",\r\n \"13.68.0.0/17\",\r\n
+ \ \"13.68.128.0/17\",\r\n \"13.69.0.0/17\",\r\n \"13.69.128.0/17\",\r\n
+ \ \"13.70.0.0/18\",\r\n \"13.70.64.0/18\",\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.70.192.0/18\",\r\n \"13.71.0.0/18\",\r\n \"13.71.64.0/18\",\r\n
+ \ \"13.71.128.0/19\",\r\n \"13.71.160.0/19\",\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.72.64.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.72.224.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.73.32.0/19\",\r\n \"13.73.96.0/19\",\r\n
+ \ \"13.73.128.0/18\",\r\n \"13.73.192.0/20\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.73.232.0/21\",\r\n \"13.73.240.0/20\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.75.0.0/17\",\r\n \"13.75.128.0/17\",\r\n \"13.76.0.0/16\",\r\n
+ \ \"13.77.0.0/18\",\r\n \"13.77.64.0/18\",\r\n \"13.77.128.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.78.128.0/17\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.80.0.0/15\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.83.0.0/16\",\r\n \"13.84.0.0/15\",\r\n \"13.86.0.0/17\",\r\n
+ \ \"13.86.128.0/17\",\r\n \"13.87.0.0/18\",\r\n \"13.87.64.0/18\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.88.200.0/21\",\r\n \"13.88.208.0/20\",\r\n \"13.88.224.0/19\",\r\n
+ \ \"13.89.0.0/16\",\r\n \"13.90.0.0/16\",\r\n \"13.91.0.0/16\",\r\n
+ \ \"13.92.0.0/16\",\r\n \"13.93.0.0/17\",\r\n \"13.93.128.0/17\",\r\n
+ \ \"13.94.0.0/18\",\r\n \"13.94.64.0/18\",\r\n \"13.94.128.0/17\",\r\n
+ \ \"13.95.0.0/16\",\r\n \"13.104.129.0/26\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.129.128/26\",\r\n \"13.104.129.192/26\",\r\n \"13.104.144.0/27\",\r\n
+ \ \"13.104.144.32/27\",\r\n \"13.104.144.64/27\",\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.144.128/27\",\r\n \"13.104.144.160/27\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.144.224/27\",\r\n \"13.104.145.0/26\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.145.128/27\",\r\n \"13.104.145.160/27\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.64/26\",\r\n \"13.104.146.128/25\",\r\n
+ \ \"13.104.147.0/25\",\r\n \"13.104.147.128/25\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.148.128/25\",\r\n \"13.104.149.0/26\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.150.128/26\",\r\n
+ \ \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n \"13.104.151.64/26\",\r\n
+ \ \"13.104.151.128/26\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.153.0/27\",\r\n \"13.104.153.32/28\",\r\n
+ \ \"13.104.153.48/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.153.128/26\",\r\n \"13.104.153.192/26\",\r\n \"13.104.154.0/25\",\r\n
+ \ \"13.104.154.128/25\",\r\n \"13.104.155.0/27\",\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.155.64/26\",\r\n \"13.104.155.128/26\",\r\n \"13.104.155.192/26\",\r\n
+ \ \"13.104.156.0/24\",\r\n \"13.104.157.0/25\",\r\n \"13.104.157.128/25\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.16/28\",\r\n \"13.104.158.32/27\",\r\n
+ \ \"13.104.158.64/26\",\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.176/28\",\r\n \"13.104.158.192/27\",\r\n \"13.104.158.224/27\",\r\n
+ \ \"13.104.159.0/25\",\r\n \"13.104.159.128/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.192.0/21\",\r\n \"13.104.208.0/26\",\r\n \"13.104.208.64/27\",\r\n
+ \ \"13.104.208.96/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.208.192/26\",\r\n \"13.104.209.0/24\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.104.211.0/25\",\r\n \"13.104.211.128/26\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"13.104.212.0/26\",\r\n \"13.104.212.64/26\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.104.212.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.213.128/25\",\r\n \"13.104.214.0/25\",\r\n \"13.104.214.128/25\",\r\n
+ \ \"13.104.215.0/25\",\r\n \"13.104.215.128/25\",\r\n \"13.104.216.0/24\",\r\n
+ \ \"13.104.217.0/25\",\r\n \"13.104.217.128/25\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.104.218.128/25\",\r\n \"13.104.219.0/25\",\r\n \"13.104.219.128/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.104.220.128/25\",\r\n \"13.104.221.0/24\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.104.223.192/26\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.17.0/26\",\r\n \"13.105.17.64/26\",\r\n \"13.105.17.128/26\",\r\n
+ \ \"13.105.17.192/26\",\r\n \"13.105.18.0/26\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.19.0/25\",\r\n
+ \ \"13.105.19.128/25\",\r\n \"13.105.20.0/25\",\r\n \"13.105.20.128/26\",\r\n
+ \ \"13.105.20.192/26\",\r\n \"13.105.21.0/24\",\r\n \"13.105.22.0/24\",\r\n
+ \ \"13.105.23.0/26\",\r\n \"13.105.23.64/26\",\r\n \"13.105.23.128/25\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.25.0/24\",\r\n \"13.105.26.0/24\",\r\n
+ \ \"13.105.27.0/25\",\r\n \"13.105.27.128/27\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.27.224/27\",\r\n \"13.105.28.0/28\",\r\n
+ \ \"13.105.28.16/28\",\r\n \"13.105.28.32/28\",\r\n \"13.105.28.48/28\",\r\n
+ \ \"13.105.28.128/25\",\r\n \"13.105.29.0/25\",\r\n \"13.105.29.128/25\",\r\n
+ \ \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.96/27\",\r\n \"13.105.36.128/26\",\r\n
+ \ \"13.105.36.192/26\",\r\n \"13.105.37.0/26\",\r\n \"13.105.37.64/26\",\r\n
+ \ \"13.105.37.128/26\",\r\n \"13.105.37.192/26\",\r\n \"13.105.52.0/27\",\r\n
+ \ \"13.105.52.32/27\",\r\n \"13.105.52.64/28\",\r\n \"13.105.52.80/28\",\r\n
+ \ \"13.105.52.96/27\",\r\n \"13.105.52.128/26\",\r\n \"13.105.52.192/26\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.53.128/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n \"13.105.60.48/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.60.96/27\",\r\n \"13.105.60.128/27\",\r\n
+ \ \"13.105.60.160/27\",\r\n \"13.105.60.192/26\",\r\n \"13.105.61.0/28\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.32/27\",\r\n \"13.105.61.64/26\",\r\n
+ \ \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"13.105.66.144/28\",\r\n \"13.105.66.192/26\",\r\n \"13.105.67.0/25\",\r\n
+ \ \"13.105.67.128/25\",\r\n \"13.105.74.48/28\",\r\n \"13.105.74.96/27\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.74.192/26\",\r\n \"13.105.75.0/27\",\r\n
+ \ \"13.105.75.32/28\",\r\n \"13.105.75.64/27\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.96.112/28\",\r\n \"13.105.96.128/25\",\r\n
+ \ \"13.105.97.0/27\",\r\n \"13.105.97.32/27\",\r\n \"13.105.97.64/27\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.36.32.0/19\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.96.0/21\",\r\n \"20.36.104.0/21\",\r\n \"20.36.112.0/20\",\r\n
+ \ \"20.36.128.0/17\",\r\n \"20.37.0.0/18\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.37.128.0/18\",\r\n \"20.37.192.0/19\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.64.0/19\",\r\n \"20.38.96.0/23\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.38.99.0/24\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.38.104.0/23\",\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.38.108.0/23\",\r\n \"20.38.112.0/23\",\r\n \"20.38.114.0/25\",\r\n
+ \ \"20.38.114.128/25\",\r\n \"20.38.115.0/24\",\r\n \"20.38.116.0/23\",\r\n
+ \ \"20.38.118.0/24\",\r\n \"20.38.120.0/24\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.38.122.0/23\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.126.0/23\",\r\n \"20.38.128.0/21\",\r\n \"20.38.136.0/21\",\r\n
+ \ \"20.38.144.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.38.184.0/22\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.38.196.0/22\",\r\n \"20.38.200.0/22\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.39.0.0/19\",\r\n \"20.39.32.0/19\",\r\n
+ \ \"20.39.64.0/21\",\r\n \"20.39.72.0/21\",\r\n \"20.39.80.0/20\",\r\n
+ \ \"20.39.96.0/19\",\r\n \"20.39.128.0/20\",\r\n \"20.39.144.0/20\",\r\n
+ \ \"20.39.160.0/21\",\r\n \"20.39.168.0/21\",\r\n \"20.39.176.0/21\",\r\n
+ \ \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n \"20.39.208.0/20\",\r\n
+ \ \"20.39.224.0/21\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.40.16.0/21\",\r\n
+ \ \"20.40.32.0/21\",\r\n \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n
+ \ \"20.40.64.0/20\",\r\n \"20.40.80.0/21\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.40.104.0/21\",\r\n \"20.40.112.0/21\",\r\n
+ \ \"20.40.120.0/21\",\r\n \"20.40.128.0/19\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.40.176.0/20\",\r\n \"20.40.192.0/18\",\r\n \"20.41.0.0/18\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.41.128.0/18\",\r\n \"20.41.192.0/18\",\r\n
+ \ \"20.42.0.0/17\",\r\n \"20.42.128.0/18\",\r\n \"20.42.192.0/19\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.43.0.0/19\",\r\n \"20.43.32.0/19\",\r\n
+ \ \"20.43.64.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.43.128.0/18\",\r\n \"20.43.192.0/18\",\r\n \"20.44.8.0/21\",\r\n
+ \ \"20.44.16.0/21\",\r\n \"20.44.24.0/21\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.44.128.0/18\",\r\n \"20.44.192.0/18\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.64.0/19\",\r\n \"20.45.120.0/21\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.45.136.0/21\",\r\n \"20.45.144.0/20\",\r\n
+ \ \"20.45.160.0/19\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.46.32.0/19\",\r\n \"20.46.96.0/20\",\r\n \"20.46.112.0/20\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.46.192.0/21\",\r\n
+ \ \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.0.0/24\",\r\n \"20.47.1.0/24\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.3.0/24\",\r\n \"20.47.4.0/24\",\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.7.0/24\",\r\n \"20.47.8.0/24\",\r\n
+ \ \"20.47.9.0/24\",\r\n \"20.47.10.0/24\",\r\n \"20.47.11.0/24\",\r\n
+ \ \"20.47.12.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.47.16.0/23\",\r\n
+ \ \"20.47.18.0/23\",\r\n \"20.47.20.0/23\",\r\n \"20.47.22.0/23\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.26.0/24\",\r\n \"20.47.27.0/24\",\r\n
+ \ \"20.47.28.0/24\",\r\n \"20.47.29.0/24\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.47.31.0/24\",\r\n \"20.47.32.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.34.0/24\",\r\n \"20.47.35.0/24\",\r\n \"20.47.36.0/24\",\r\n
+ \ \"20.47.37.0/24\",\r\n \"20.47.38.0/24\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.40.0/24\",\r\n \"20.47.41.0/24\",\r\n \"20.47.42.0/24\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.44.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.46.0/24\",\r\n \"20.47.47.0/24\",\r\n \"20.47.48.0/24\",\r\n
+ \ \"20.47.49.0/24\",\r\n \"20.47.50.0/24\",\r\n \"20.47.51.0/24\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.53.0/24\",\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.47.56.0/24\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.47.62.0/23\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.67.0/24\",\r\n \"20.47.68.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.71.0/24\",\r\n \"20.47.72.0/23\",\r\n
+ \ \"20.47.74.0/23\",\r\n \"20.47.76.0/23\",\r\n \"20.47.78.0/23\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.47.82.0/23\",\r\n \"20.47.84.0/23\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.47.87.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.47.89.0/24\",\r\n \"20.47.90.0/24\",\r\n \"20.47.91.0/24\",\r\n
+ \ \"20.47.92.0/24\",\r\n \"20.47.93.0/24\",\r\n \"20.47.94.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.98.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.47.100.0/24\",\r\n \"20.47.101.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.47.103.0/24\",\r\n \"20.47.104.0/24\",\r\n
+ \ \"20.47.105.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.107.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.110.0/24\",\r\n \"20.47.111.0/24\",\r\n
+ \ \"20.47.112.0/24\",\r\n \"20.47.113.0/24\",\r\n \"20.47.114.0/24\",\r\n
+ \ \"20.47.115.0/24\",\r\n \"20.47.116.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.47.120.0/23\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.47.124.0/23\",\r\n \"20.47.126.0/23\",\r\n
+ \ \"20.47.128.0/17\",\r\n \"20.48.0.0/17\",\r\n \"20.48.128.0/18\",\r\n
+ \ \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n \"20.49.0.0/18\",\r\n
+ \ \"20.49.88.0/21\",\r\n \"20.49.96.0/21\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.49.112.0/21\",\r\n \"20.49.120.0/21\",\r\n \"20.49.128.0/17\",\r\n
+ \ \"20.50.0.0/18\",\r\n \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n
+ \ \"20.50.96.0/19\",\r\n \"20.50.128.0/17\",\r\n \"20.51.0.0/21\",\r\n
+ \ \"20.51.8.0/21\",\r\n \"20.51.16.0/21\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.51.32.0/19\",\r\n \"20.51.64.0/18\",\r\n \"20.51.128.0/17\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.72.0/21\",\r\n
+ \ \"20.52.80.0/27\",\r\n \"20.52.80.32/27\",\r\n \"20.52.80.64/27\",\r\n
+ \ \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n \"20.52.128.0/17\",\r\n
+ \ \"20.53.0.0/19\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.48.0/21\",\r\n \"20.53.56.0/21\",\r\n \"20.53.64.0/18\",\r\n
+ \ \"20.53.128.0/17\",\r\n \"20.54.0.0/17\",\r\n \"20.54.128.0/17\",\r\n
+ \ \"20.55.0.0/17\",\r\n \"20.55.128.0/18\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.56.0.0/16\",\r\n \"20.57.0.0/17\",\r\n \"20.57.128.0/18\",\r\n
+ \ \"20.57.192.0/19\",\r\n \"20.57.224.0/19\",\r\n \"20.58.0.0/18\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.58.128.0/18\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.59.0.0/18\",\r\n \"20.59.64.0/18\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.59.192.0/18\",\r\n \"20.60.0.0/24\",\r\n \"20.60.1.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.4.0/24\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.60.11.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.15.0/24\",\r\n
+ \ \"20.60.16.0/24\",\r\n \"20.60.17.0/24\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.20.0/24\",\r\n \"20.60.21.0/24\",\r\n
+ \ \"20.60.22.0/23\",\r\n \"20.60.24.0/23\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.28.0/23\",\r\n \"20.60.30.0/23\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.60.34.0/23\",\r\n \"20.60.36.0/23\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.60.48.0/22\",\r\n \"20.60.52.0/23\",\r\n
+ \ \"20.60.56.0/22\",\r\n \"20.60.60.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.72.0/22\",\r\n \"20.60.80.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.60.128.0/23\",\r\n \"20.60.130.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.60.132.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.60.140.0/23\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.60.144.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.60.148.0/23\",\r\n \"20.60.150.0/23\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.60.154.0/23\",\r\n \"20.60.156.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.60.166.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.60.174.0/23\",\r\n \"20.60.176.0/23\",\r\n
+ \ \"20.60.178.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.60.182.0/23\",\r\n
+ \ \"20.60.184.0/23\",\r\n \"20.60.186.0/23\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.60.194.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.62.0.0/17\",\r\n \"20.62.128.0/17\",\r\n
+ \ \"20.63.0.0/17\",\r\n \"20.63.128.0/18\",\r\n \"20.63.192.0/18\",\r\n
+ \ \"20.64.0.0/17\",\r\n \"20.64.128.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.65.128.0/17\",\r\n \"20.66.0.0/17\",\r\n \"20.66.128.0/17\",\r\n
+ \ \"20.67.0.0/17\",\r\n \"20.67.128.0/17\",\r\n \"20.68.0.0/18\",\r\n
+ \ \"20.68.64.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.69.0.0/18\",\r\n
+ \ \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n \"20.69.192.0/18\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.70.64.0/18\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.71.0.0/16\",\r\n \"20.72.32.0/19\",\r\n \"20.72.64.0/18\",\r\n
+ \ \"20.72.128.0/18\",\r\n \"20.72.192.0/18\",\r\n \"20.73.0.0/16\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.74.128.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.75.128.0/17\",\r\n \"20.76.0.0/16\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.77.192.0/18\",\r\n \"20.78.0.0/17\",\r\n
+ \ \"20.78.128.0/18\",\r\n \"20.78.192.0/18\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.80.0.0/18\",\r\n \"20.80.64.0/18\",\r\n
+ \ \"20.80.128.0/18\",\r\n \"20.80.192.0/18\",\r\n \"20.81.0.0/17\",\r\n
+ \ \"20.81.128.0/17\",\r\n \"20.82.0.0/17\",\r\n \"20.82.128.0/17\",\r\n
+ \ \"20.83.0.0/18\",\r\n \"20.83.64.0/18\",\r\n \"20.83.128.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.84.0.0/17\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.85.0.0/17\",\r\n \"20.85.128.0/17\",\r\n \"20.86.0.0/17\",\r\n
+ \ \"20.87.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.88.96.0/19\",\r\n
+ \ \"20.88.128.0/18\",\r\n \"20.88.192.0/18\",\r\n \"20.89.0.0/17\",\r\n
+ \ \"20.90.0.0/18\",\r\n \"20.92.0.0/18\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.4.0/22\",\r\n \"20.135.8.0/22\",\r\n
+ \ \"20.135.12.0/22\",\r\n \"20.135.16.0/23\",\r\n \"20.135.18.0/23\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.24.0/23\",\r\n \"20.135.26.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.135.30.0/23\",\r\n \"20.135.32.0/23\",\r\n
+ \ \"20.135.36.0/23\",\r\n \"20.135.40.0/23\",\r\n \"20.135.42.0/23\",\r\n
+ \ \"20.135.44.0/23\",\r\n \"20.135.48.0/23\",\r\n \"20.135.50.0/23\",\r\n
+ \ \"20.135.52.0/23\",\r\n \"20.135.54.0/23\",\r\n \"20.135.56.0/23\",\r\n
+ \ \"20.135.58.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.135.66.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.135.70.0/23\",\r\n
+ \ \"20.135.72.0/23\",\r\n \"20.135.74.0/23\",\r\n \"20.135.76.0/23\",\r\n
+ \ \"20.135.78.0/23\",\r\n \"20.135.80.0/22\",\r\n \"20.135.84.0/22\",\r\n
+ \ \"20.135.88.0/23\",\r\n \"20.135.90.0/23\",\r\n \"20.135.92.0/22\",\r\n
+ \ \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.135.128.0/22\",\r\n \"20.135.132.0/23\",\r\n
+ \ \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n
+ \ \"20.135.216.0/22\",\r\n \"20.135.220.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.0.0/24\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.1.128/25\",\r\n \"20.150.2.0/23\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.14.0/23\",\r\n \"20.150.16.0/24\",\r\n
+ \ \"20.150.17.0/25\",\r\n \"20.150.17.128/25\",\r\n \"20.150.18.0/25\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.19.0/24\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.21.0/24\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.23.0/24\",\r\n \"20.150.24.0/24\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.27.0/24\",\r\n \"20.150.28.0/24\",\r\n
+ \ \"20.150.29.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.36.0/24\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.38.0/23\",\r\n \"20.150.40.0/25\",\r\n \"20.150.40.128/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.42.0/24\",\r\n \"20.150.43.0/25\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.46.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n \"20.150.49.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.53.0/24\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.55.0/24\",\r\n \"20.150.56.0/24\",\r\n
+ \ \"20.150.58.0/24\",\r\n \"20.150.59.0/24\",\r\n \"20.150.60.0/24\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.66.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.150.70.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.72.0/24\",\r\n \"20.150.73.0/24\",\r\n \"20.150.74.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.76.0/24\",\r\n \"20.150.77.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.82.0/24\",\r\n \"20.150.83.0/24\",\r\n
+ \ \"20.150.84.0/24\",\r\n \"20.150.85.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.150.91.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.150.100.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.150.103.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"20.150.107.0/24\",\r\n \"20.150.108.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.150.111.0/24\",\r\n \"20.150.112.0/24\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"20.150.114.0/24\",\r\n \"20.150.115.0/24\",\r\n \"20.150.116.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.150.121.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.150.123.0/24\",\r\n
+ \ \"20.150.124.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.151.0.0/17\",\r\n \"20.151.128.0/18\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.157.2.0/24\",\r\n
+ \ \"20.157.3.0/24\",\r\n \"20.157.32.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.157.36.0/23\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"20.157.41.0/24\",\r\n \"20.157.42.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.157.47.0/24\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"20.157.52.0/24\",\r\n \"20.157.53.0/24\",\r\n
+ \ \"20.157.54.0/24\",\r\n \"20.157.55.0/24\",\r\n \"20.157.56.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.157.96.0/24\",\r\n \"20.184.0.0/18\",\r\n
+ \ \"20.184.64.0/18\",\r\n \"20.184.128.0/17\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.187.64.0/18\",\r\n \"20.187.128.0/18\",\r\n
+ \ \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n \"20.188.0.0/19\",\r\n
+ \ \"20.188.32.0/19\",\r\n \"20.188.64.0/19\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.188.128.0/17\",\r\n \"20.189.0.0/18\",\r\n \"20.189.64.0/18\",\r\n
+ \ \"20.189.128.0/18\",\r\n \"20.189.192.0/18\",\r\n \"20.190.0.0/18\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.96.0/19\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.130.0/24\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.133.0/24\",\r\n \"20.190.134.0/24\",\r\n
+ \ \"20.190.135.0/24\",\r\n \"20.190.136.0/24\",\r\n \"20.190.137.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.138.128/25\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.139.128/25\",\r\n \"20.190.140.0/25\",\r\n \"20.190.140.128/25\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.141.128/25\",\r\n \"20.190.142.0/25\",\r\n
+ \ \"20.190.142.128/25\",\r\n \"20.190.143.0/25\",\r\n \"20.190.143.128/25\",\r\n
+ \ \"20.190.144.0/25\",\r\n \"20.190.144.128/25\",\r\n \"20.190.145.0/25\",\r\n
+ \ \"20.190.145.128/25\",\r\n \"20.190.146.0/25\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.147.0/25\",\r\n \"20.190.147.128/25\",\r\n \"20.190.148.0/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.149.0/24\",\r\n \"20.190.150.0/24\",\r\n
+ \ \"20.190.151.0/24\",\r\n \"20.190.152.0/24\",\r\n \"20.190.153.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.190.155.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"20.190.158.0/24\",\r\n \"20.190.159.0/24\",\r\n
+ \ \"20.190.160.0/24\",\r\n \"20.190.161.0/24\",\r\n \"20.190.162.0/24\",\r\n
+ \ \"20.190.163.0/24\",\r\n \"20.190.164.0/24\",\r\n \"20.190.165.0/24\",\r\n
+ \ \"20.190.166.0/24\",\r\n \"20.190.167.0/24\",\r\n \"20.190.168.0/24\",\r\n
+ \ \"20.190.169.0/24\",\r\n \"20.190.170.0/24\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"20.190.172.0/24\",\r\n \"20.190.173.0/24\",\r\n \"20.190.174.0/24\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.190.176.0/24\",\r\n \"20.190.177.0/24\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"20.190.179.0/24\",\r\n \"20.190.180.0/24\",\r\n
+ \ \"20.190.183.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.190.185.0/24\",\r\n
+ \ \"20.190.186.0/24\",\r\n \"20.190.187.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"20.190.189.64/26\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"20.190.190.0/26\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"20.190.192.0/18\",\r\n \"20.191.0.0/18\",\r\n \"20.191.64.0/18\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.191.160.0/19\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n \"20.192.64.0/19\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"20.193.96.0/19\",\r\n
+ \ \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.194.128.0/17\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n
+ \ \"20.195.128.0/22\",\r\n \"20.195.136.0/21\",\r\n \"20.195.144.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.197.64.0/18\",\r\n \"20.197.128.0/17\",\r\n
+ \ \"20.198.0.0/17\",\r\n \"20.198.128.0/17\",\r\n \"20.199.0.0/17\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"20.199.192.0/18\",\r\n \"20.200.0.0/18\",\r\n
+ \ \"20.200.64.0/18\",\r\n \"20.200.128.0/18\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"20.201.0.0/18\",\r\n \"23.96.0.0/17\",\r\n \"23.96.128.0/17\",\r\n
+ \ \"23.97.48.0/20\",\r\n \"23.97.64.0/19\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"23.97.112.192/27\",\r\n \"23.97.112.224/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"23.97.128.0/17\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.98.45.0/24\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.98.47.0/24\",\r\n \"23.98.48.0/21\",\r\n
+ \ \"23.98.56.0/24\",\r\n \"23.98.57.64/26\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.98.128.0/17\",\r\n \"23.99.0.0/18\",\r\n \"23.99.64.0/19\",\r\n
+ \ \"23.99.96.0/19\",\r\n \"23.99.128.0/17\",\r\n \"23.100.0.0/20\",\r\n
+ \ \"23.100.16.0/20\",\r\n \"23.100.32.0/20\",\r\n \"23.100.48.0/20\",\r\n
+ \ \"23.100.64.0/21\",\r\n \"23.100.72.0/21\",\r\n \"23.100.80.0/21\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.100.96.0/21\",\r\n \"23.100.104.0/21\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.100.120.0/21\",\r\n \"23.100.128.0/18\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.100.240.0/20\",\r\n \"23.101.0.0/20\",\r\n
+ \ \"23.101.16.0/20\",\r\n \"23.101.32.0/21\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.101.64.0/20\",\r\n \"23.101.80.0/21\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.101.128.0/20\",\r\n \"23.101.144.0/20\",\r\n \"23.101.160.0/20\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.101.192.0/20\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"23.101.224.0/19\",\r\n \"23.102.0.0/18\",\r\n \"23.102.64.0/19\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.128.0/18\",\r\n \"23.102.192.0/21\",\r\n
+ \ \"23.102.200.0/23\",\r\n \"23.102.202.0/24\",\r\n \"23.102.203.0/24\",\r\n
+ \ \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n \"23.102.224.0/19\",\r\n
+ \ \"23.103.64.32/27\",\r\n \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n
+ \ \"40.64.64.0/18\",\r\n \"40.64.128.0/21\",\r\n \"40.65.0.0/18\",\r\n
+ \ \"40.65.64.0/18\",\r\n \"40.65.128.0/18\",\r\n \"40.65.192.0/18\",\r\n
+ \ \"40.66.32.0/19\",\r\n \"40.66.120.0/21\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.67.128.0/19\",\r\n \"40.67.160.0/19\",\r\n \"40.67.192.0/19\",\r\n
+ \ \"40.67.224.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.96.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.69.192.0/19\",\r\n \"40.70.0.0/18\",\r\n \"40.70.64.0/20\",\r\n
+ \ \"40.70.80.0/21\",\r\n \"40.70.88.0/28\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.74.0.0/18\",\r\n \"40.74.64.0/18\",\r\n
+ \ \"40.74.128.0/20\",\r\n \"40.74.144.0/20\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.75.0.0/19\",\r\n \"40.75.32.0/21\",\r\n
+ \ \"40.75.64.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.76.0.0/16\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.128.0/25\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.130.128/26\",\r\n
+ \ \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n \"40.77.131.128/26\",\r\n
+ \ \"40.77.131.192/27\",\r\n \"40.77.131.224/28\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.132.0/24\",\r\n \"40.77.133.0/24\",\r\n \"40.77.134.0/24\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.0/28\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.48/28\",\r\n \"40.77.136.64/28\",\r\n
+ \ \"40.77.136.80/28\",\r\n \"40.77.136.96/28\",\r\n \"40.77.136.128/25\",\r\n
+ \ \"40.77.137.0/25\",\r\n \"40.77.137.128/26\",\r\n \"40.77.137.192/27\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.138.128/25\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n \"40.77.160.32/27\",\r\n
+ \ \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n \"40.77.161.0/26\",\r\n
+ \ \"40.77.161.64/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.162.0/24\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.166.0/25\",\r\n \"40.77.166.128/28\",\r\n \"40.77.166.160/27\",\r\n
+ \ \"40.77.166.192/26\",\r\n \"40.77.167.0/24\",\r\n \"40.77.168.0/24\",\r\n
+ \ \"40.77.169.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.171.0/24\",\r\n
+ \ \"40.77.172.0/24\",\r\n \"40.77.173.0/24\",\r\n \"40.77.174.0/24\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.175.32/27\",\r\n \"40.77.175.64/27\",\r\n
+ \ \"40.77.175.96/27\",\r\n \"40.77.175.128/27\",\r\n \"40.77.175.160/27\",\r\n
+ \ \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n \"40.77.176.0/24\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.180.0/23\",\r\n
+ \ \"40.77.182.0/28\",\r\n \"40.77.182.16/28\",\r\n \"40.77.182.32/27\",\r\n
+ \ \"40.77.182.64/27\",\r\n \"40.77.182.96/27\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.182.192/26\",\r\n \"40.77.183.0/24\",\r\n
+ \ \"40.77.184.0/25\",\r\n \"40.77.184.128/25\",\r\n \"40.77.185.0/25\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.188.0/22\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.196.0/24\",\r\n \"40.77.197.0/24\",\r\n
+ \ \"40.77.198.0/26\",\r\n \"40.77.198.64/26\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.0/25\",\r\n \"40.77.199.128/26\",\r\n \"40.77.199.192/26\",\r\n
+ \ \"40.77.200.0/25\",\r\n \"40.77.200.128/25\",\r\n \"40.77.201.0/24\",\r\n
+ \ \"40.77.202.0/24\",\r\n \"40.77.224.0/28\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.224.64/27\",\r\n \"40.77.224.96/27\",\r\n
+ \ \"40.77.224.128/25\",\r\n \"40.77.225.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.227.0/24\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.229.0/24\",\r\n \"40.77.230.0/24\",\r\n \"40.77.231.0/24\",\r\n
+ \ \"40.77.232.0/25\",\r\n \"40.77.232.128/25\",\r\n \"40.77.233.0/24\",\r\n
+ \ \"40.77.234.0/25\",\r\n \"40.77.234.128/27\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.234.192/27\",\r\n \"40.77.234.224/27\",\r\n \"40.77.235.0/24\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.32/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.236.96/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.236.160/28\",\r\n
+ \ \"40.77.236.176/28\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.237.128/25\",\r\n \"40.77.240.0/25\",\r\n
+ \ \"40.77.240.128/25\",\r\n \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n
+ \ \"40.77.245.0/24\",\r\n \"40.77.246.0/24\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.248.128/25\",\r\n \"40.77.249.0/24\",\r\n
+ \ \"40.77.250.0/24\",\r\n \"40.77.251.0/24\",\r\n \"40.77.252.0/23\",\r\n
+ \ \"40.77.254.0/26\",\r\n \"40.77.254.128/25\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.77.255.128/26\",\r\n \"40.77.255.192/26\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.128.0/18\",\r\n \"40.78.192.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.0/28\",\r\n \"40.78.208.16/28\",\r\n \"40.78.208.32/30\",\r\n
+ \ \"40.78.208.48/28\",\r\n \"40.78.208.64/28\",\r\n \"40.78.209.0/24\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.78.211.0/24\",\r\n \"40.78.212.0/24\",\r\n
+ \ \"40.78.214.0/24\",\r\n \"40.78.216.0/24\",\r\n \"40.78.217.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.78.219.0/24\",\r\n \"40.78.220.0/24\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.78.222.0/24\",\r\n \"40.78.223.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.78.232.0/21\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n \"40.79.8.32/28\",\r\n
+ \ \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n \"40.79.9.0/24\",\r\n
+ \ \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n \"40.79.48.0/27\",\r\n
+ \ \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n \"40.79.56.0/21\",\r\n
+ \ \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n \"40.79.88.0/27\",\r\n
+ \ \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n \"40.79.90.0/24\",\r\n
+ \ \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n \"40.79.93.0/28\",\r\n
+ \ \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n \"40.79.96.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.152.0/21\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.176.0/21\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.201.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.79.203.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.79.204.192/26\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n \"40.79.205.240/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.79.206.32/27\",\r\n \"40.79.206.64/27\",\r\n
+ \ \"40.79.206.96/27\",\r\n \"40.79.206.128/27\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.206.224/27\",\r\n \"40.79.207.0/27\",\r\n
+ \ \"40.79.207.32/27\",\r\n \"40.79.207.64/28\",\r\n \"40.79.207.80/28\",\r\n
+ \ \"40.79.207.96/27\",\r\n \"40.79.207.128/25\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.79.210.0/24\",\r\n \"40.79.211.0/24\",\r\n
+ \ \"40.79.212.0/24\",\r\n \"40.79.213.0/24\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.79.216.0/24\",\r\n \"40.79.217.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.79.219.0/24\",\r\n \"40.79.220.0/24\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.79.222.0/24\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.79.232.0/21\",\r\n \"40.79.240.0/20\",\r\n \"40.80.0.0/22\",\r\n
+ \ \"40.80.4.0/22\",\r\n \"40.80.12.0/22\",\r\n \"40.80.16.0/22\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.24.0/22\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.36.0/22\",\r\n \"40.80.40.0/22\",\r\n \"40.80.44.0/22\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.56.0/21\",\r\n \"40.80.64.0/19\",\r\n
+ \ \"40.80.96.0/20\",\r\n \"40.80.144.0/21\",\r\n \"40.80.152.0/21\",\r\n
+ \ \"40.80.160.0/24\",\r\n \"40.80.168.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.80.184.0/21\",\r\n \"40.80.192.0/19\",\r\n \"40.80.224.0/20\",\r\n
+ \ \"40.80.240.0/20\",\r\n \"40.81.0.0/20\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.81.48.0/20\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.81.96.0/20\",\r\n \"40.81.112.0/20\",\r\n
+ \ \"40.81.128.0/19\",\r\n \"40.81.160.0/20\",\r\n \"40.81.176.0/20\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.81.224.0/19\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.82.4.0/22\",\r\n \"40.82.8.0/22\",\r\n \"40.82.16.0/22\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.24.0/22\",\r\n \"40.82.28.0/22\",\r\n
+ \ \"40.82.32.0/22\",\r\n \"40.82.36.0/22\",\r\n \"40.82.44.0/22\",\r\n
+ \ \"40.82.48.0/22\",\r\n \"40.82.52.0/22\",\r\n \"40.82.60.0/22\",\r\n
+ \ \"40.82.64.0/22\",\r\n \"40.82.68.0/22\",\r\n \"40.82.72.0/22\",\r\n
+ \ \"40.82.84.0/22\",\r\n \"40.82.88.0/22\",\r\n \"40.82.92.0/22\",\r\n
+ \ \"40.82.96.0/22\",\r\n \"40.82.100.0/22\",\r\n \"40.82.116.0/22\",\r\n
+ \ \"40.82.120.0/22\",\r\n \"40.82.128.0/19\",\r\n \"40.82.160.0/19\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.82.224.0/20\",\r\n \"40.82.240.0/22\",\r\n
+ \ \"40.82.244.0/22\",\r\n \"40.82.248.0/21\",\r\n \"40.83.0.0/20\",\r\n
+ \ \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n \"40.83.24.64/27\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.83.64.0/18\",\r\n \"40.83.128.0/17\",\r\n \"40.84.0.0/17\",\r\n
+ \ \"40.84.128.0/17\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.85.144.0/20\",\r\n \"40.85.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.86.128.0/19\",\r\n \"40.86.160.0/19\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.87.0.0/17\",\r\n \"40.87.128.0/19\",\r\n
+ \ \"40.87.160.0/22\",\r\n \"40.87.164.0/22\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.4/30\",\r\n \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n
+ \ \"40.87.168.32/29\",\r\n \"40.87.168.40/29\",\r\n \"40.87.168.48/28\",\r\n
+ \ \"40.87.168.64/30\",\r\n \"40.87.168.68/31\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.208/31\",\r\n
+ \ \"40.87.168.210/31\",\r\n \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n
+ \ \"40.87.168.224/27\",\r\n \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n
+ \ \"40.87.169.40/30\",\r\n \"40.87.169.44/30\",\r\n \"40.87.169.48/29\",\r\n
+ \ \"40.87.169.56/31\",\r\n \"40.87.169.58/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.98/31\",\r\n
+ \ \"40.87.169.100/31\",\r\n \"40.87.169.102/31\",\r\n \"40.87.169.104/29\",\r\n
+ \ \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n \"40.87.169.136/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.144/28\",\r\n
+ \ \"40.87.169.160/27\",\r\n \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n
+ \ \"40.87.170.128/28\",\r\n \"40.87.170.144/31\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.188/30\",\r\n
+ \ \"40.87.170.192/31\",\r\n \"40.87.170.194/31\",\r\n \"40.87.170.196/30\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n \"40.87.170.220/30\",\r\n
+ \ \"40.87.170.224/30\",\r\n \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n
+ \ \"40.87.170.240/29\",\r\n \"40.87.170.248/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.32/30\",\r\n
+ \ \"40.87.171.36/30\",\r\n \"40.87.171.40/31\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n \"40.87.171.96/27\",\r\n
+ \ \"40.87.171.128/28\",\r\n \"40.87.172.0/22\",\r\n \"40.87.176.0/25\",\r\n
+ \ \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n \"40.87.176.174/31\",\r\n
+ \ \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n \"40.87.176.216/29\",\r\n
+ \ \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n \"40.87.176.240/28\",\r\n
+ \ \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n \"40.87.177.64/27\",\r\n
+ \ \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n \"40.87.177.120/31\",\r\n
+ \ \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n \"40.87.177.144/29\",\r\n
+ \ \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n \"40.87.177.160/27\",\r\n
+ \ \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n \"40.87.177.212/30\",\r\n
+ \ \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n \"40.87.178.0/26\",\r\n
+ \ \"40.87.178.64/29\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n \"40.87.180.12/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n \"40.87.180.28/30\",\r\n
+ \ \"40.87.180.32/29\",\r\n \"40.87.180.40/31\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n \"40.87.180.74/31\",\r\n
+ \ \"40.87.180.76/30\",\r\n \"40.87.182.0/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.24/29\",\r\n
+ \ \"40.87.182.32/28\",\r\n \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n
+ \ \"40.87.182.60/31\",\r\n \"40.87.182.62/31\",\r\n \"40.87.182.64/26\",\r\n
+ \ \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n \"40.87.183.16/29\",\r\n
+ \ \"40.87.183.24/30\",\r\n \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n
+ \ \"40.87.183.34/31\",\r\n \"40.87.183.36/30\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n \"40.87.183.48/30\",\r\n
+ \ \"40.87.183.52/31\",\r\n \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n
+ \ \"40.87.183.64/26\",\r\n \"40.87.183.128/28\",\r\n \"40.87.183.144/28\",\r\n
+ \ \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n \"40.87.183.224/29\",\r\n
+ \ \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n \"40.87.183.238/31\",\r\n
+ \ \"40.87.183.240/30\",\r\n \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n
+ \ \"40.87.184.0/22\",\r\n \"40.87.188.0/22\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.87.196.0/22\",\r\n \"40.87.200.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.87.208.0/22\",\r\n \"40.87.212.0/22\",\r\n \"40.87.216.0/22\",\r\n
+ \ \"40.87.220.0/22\",\r\n \"40.87.224.0/22\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.88.0.0/16\",\r\n \"40.89.0.0/19\",\r\n
+ \ \"40.89.32.0/19\",\r\n \"40.89.64.0/18\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.89.192.0/19\",\r\n \"40.89.224.0/19\",\r\n \"40.90.16.0/27\",\r\n
+ \ \"40.90.16.64/27\",\r\n \"40.90.16.96/27\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.16.192/26\",\r\n \"40.90.17.0/27\",\r\n
+ \ \"40.90.17.32/27\",\r\n \"40.90.17.64/27\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.17.128/28\",\r\n \"40.90.17.144/28\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.17.192/27\",\r\n \"40.90.17.224/27\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.18.64/26\",\r\n \"40.90.18.128/26\",\r\n
+ \ \"40.90.18.192/26\",\r\n \"40.90.19.0/27\",\r\n \"40.90.19.32/27\",\r\n
+ \ \"40.90.19.64/26\",\r\n \"40.90.19.128/25\",\r\n \"40.90.20.0/25\",\r\n
+ \ \"40.90.20.128/25\",\r\n \"40.90.21.0/25\",\r\n \"40.90.21.128/25\",\r\n
+ \ \"40.90.22.0/25\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.0/25\",\r\n \"40.90.24.128/25\",\r\n
+ \ \"40.90.25.0/26\",\r\n \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.26.0/26\",\r\n \"40.90.26.64/26\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.27.0/26\",\r\n \"40.90.27.64/26\",\r\n
+ \ \"40.90.27.128/26\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.28.192/26\",\r\n
+ \ \"40.90.29.0/26\",\r\n \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.30.0/25\",\r\n \"40.90.30.128/27\",\r\n
+ \ \"40.90.30.160/27\",\r\n \"40.90.30.192/26\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.31.96/27\",\r\n \"40.90.31.128/25\",\r\n \"40.90.128.0/28\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.128.48/28\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.128.80/28\",\r\n \"40.90.128.96/28\",\r\n \"40.90.128.112/28\",\r\n
+ \ \"40.90.128.128/28\",\r\n \"40.90.128.144/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.128.176/28\",\r\n \"40.90.128.192/28\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.128.240/28\",\r\n \"40.90.129.48/28\",\r\n
+ \ \"40.90.129.96/27\",\r\n \"40.90.129.128/26\",\r\n \"40.90.129.192/27\",\r\n
+ \ \"40.90.129.224/27\",\r\n \"40.90.130.0/27\",\r\n \"40.90.130.32/28\",\r\n
+ \ \"40.90.130.48/28\",\r\n \"40.90.130.64/28\",\r\n \"40.90.130.80/28\",\r\n
+ \ \"40.90.130.96/28\",\r\n \"40.90.130.112/28\",\r\n \"40.90.130.128/28\",\r\n
+ \ \"40.90.130.144/28\",\r\n \"40.90.130.160/27\",\r\n \"40.90.130.192/28\",\r\n
+ \ \"40.90.130.208/28\",\r\n \"40.90.130.224/28\",\r\n \"40.90.130.240/28\",\r\n
+ \ \"40.90.131.0/27\",\r\n \"40.90.131.32/27\",\r\n \"40.90.131.64/27\",\r\n
+ \ \"40.90.131.96/27\",\r\n \"40.90.131.128/27\",\r\n \"40.90.131.160/27\",\r\n
+ \ \"40.90.131.192/27\",\r\n \"40.90.131.224/27\",\r\n \"40.90.132.0/27\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.132.48/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.132.96/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.132.192/26\",\r\n \"40.90.133.0/27\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.133.96/28\",\r\n \"40.90.133.112/28\",\r\n
+ \ \"40.90.133.128/28\",\r\n \"40.90.133.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.133.192/26\",\r\n \"40.90.134.0/26\",\r\n \"40.90.134.64/26\",\r\n
+ \ \"40.90.134.128/26\",\r\n \"40.90.134.192/26\",\r\n \"40.90.135.0/26\",\r\n
+ \ \"40.90.135.64/26\",\r\n \"40.90.135.128/25\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.136.160/28\",\r\n \"40.90.136.176/28\",\r\n
+ \ \"40.90.136.192/27\",\r\n \"40.90.136.224/27\",\r\n \"40.90.137.0/27\",\r\n
+ \ \"40.90.137.32/27\",\r\n \"40.90.137.64/27\",\r\n \"40.90.137.96/27\",\r\n
+ \ \"40.90.137.128/27\",\r\n \"40.90.137.160/27\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.137.224/27\",\r\n \"40.90.138.0/27\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.138.96/27\",\r\n \"40.90.138.128/27\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.138.192/28\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.90.139.0/27\",\r\n \"40.90.139.32/27\",\r\n
+ \ \"40.90.139.64/27\",\r\n \"40.90.139.96/27\",\r\n \"40.90.139.128/27\",\r\n
+ \ \"40.90.139.160/27\",\r\n \"40.90.139.192/27\",\r\n \"40.90.139.224/27\",\r\n
+ \ \"40.90.140.0/27\",\r\n \"40.90.140.32/27\",\r\n \"40.90.140.64/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.128/27\",\r\n \"40.90.140.160/27\",\r\n
+ \ \"40.90.140.192/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.64/27\",\r\n \"40.90.141.96/27\",\r\n
+ \ \"40.90.141.128/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.32/27\",\r\n \"40.90.142.64/27\",\r\n
+ \ \"40.90.142.96/27\",\r\n \"40.90.142.128/27\",\r\n \"40.90.142.160/27\",\r\n
+ \ \"40.90.142.192/28\",\r\n \"40.90.142.208/28\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.142.240/28\",\r\n \"40.90.143.0/27\",\r\n \"40.90.143.32/27\",\r\n
+ \ \"40.90.143.64/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.143.128/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.143.192/26\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.32/27\",\r\n \"40.90.144.64/26\",\r\n \"40.90.144.128/26\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.144.224/27\",\r\n \"40.90.145.0/27\",\r\n
+ \ \"40.90.145.32/27\",\r\n \"40.90.145.64/27\",\r\n \"40.90.145.96/27\",\r\n
+ \ \"40.90.145.128/27\",\r\n \"40.90.145.160/27\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"40.90.145.224/27\",\r\n \"40.90.146.0/28\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.32/27\",\r\n \"40.90.146.64/26\",\r\n \"40.90.146.128/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.192/27\",\r\n \"40.90.146.224/27\",\r\n
+ \ \"40.90.147.0/27\",\r\n \"40.90.147.32/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.147.96/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.90.147.224/27\",\r\n \"40.90.148.0/26\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.148.96/27\",\r\n \"40.90.148.128/27\",\r\n \"40.90.148.160/28\",\r\n
+ \ \"40.90.148.176/28\",\r\n \"40.90.148.192/27\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.149.0/27\",\r\n \"40.90.149.32/27\",\r\n \"40.90.149.64/27\",\r\n
+ \ \"40.90.149.96/27\",\r\n \"40.90.149.128/25\",\r\n \"40.90.150.0/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.90.150.128/25\",\r\n \"40.90.151.0/26\",\r\n \"40.90.151.64/27\",\r\n
+ \ \"40.90.151.96/27\",\r\n \"40.90.151.128/28\",\r\n \"40.90.151.144/28\",\r\n
+ \ \"40.90.151.160/27\",\r\n \"40.90.151.224/27\",\r\n \"40.90.152.0/25\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.90.152.160/27\",\r\n \"40.90.152.192/27\",\r\n
+ \ \"40.90.152.224/27\",\r\n \"40.90.153.0/26\",\r\n \"40.90.153.64/27\",\r\n
+ \ \"40.90.153.96/27\",\r\n \"40.90.153.128/25\",\r\n \"40.90.154.0/26\",\r\n
+ \ \"40.90.154.64/26\",\r\n \"40.90.154.128/26\",\r\n \"40.90.154.192/26\",\r\n
+ \ \"40.90.155.0/26\",\r\n \"40.90.155.64/26\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.155.192/26\",\r\n \"40.90.156.0/26\",\r\n \"40.90.156.64/27\",\r\n
+ \ \"40.90.156.96/27\",\r\n \"40.90.156.128/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.157.0/27\",\r\n \"40.90.157.32/27\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.157.192/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.90.158.0/26\",\r\n \"40.90.158.64/26\",\r\n \"40.90.158.128/25\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.90.160.0/19\",\r\n \"40.90.192.0/19\",\r\n
+ \ \"40.90.224.0/19\",\r\n \"40.91.0.0/22\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.91.12.0/28\",\r\n \"40.91.12.16/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n
+ \ \"40.91.13.128/27\",\r\n \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n
+ \ \"40.91.16.0/22\",\r\n \"40.91.20.0/22\",\r\n \"40.91.24.0/22\",\r\n
+ \ \"40.91.28.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.91.64.0/18\",\r\n
+ \ \"40.91.160.0/19\",\r\n \"40.91.192.0/18\",\r\n \"40.93.0.0/23\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.3.0/24\",\r\n \"40.93.4.0/24\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.93.6.0/24\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.93.8.0/24\",\r\n \"40.96.46.0/24\",\r\n \"40.96.52.0/24\",\r\n
+ \ \"40.96.55.0/24\",\r\n \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.112.36.0/25\",\r\n \"40.112.36.128/25\",\r\n
+ \ \"40.112.37.0/26\",\r\n \"40.112.37.64/26\",\r\n \"40.112.37.128/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.112.38.192/26\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.112.48.0/20\",\r\n \"40.112.64.0/19\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.112.128.0/17\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.113.192.0/18\",\r\n \"40.114.0.0/17\",\r\n \"40.114.128.0/17\",\r\n
+ \ \"40.115.0.0/18\",\r\n \"40.115.64.0/19\",\r\n \"40.115.96.0/19\",\r\n
+ \ \"40.115.128.0/17\",\r\n \"40.116.0.0/16\",\r\n \"40.117.0.0/19\",\r\n
+ \ \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n \"40.117.128.0/17\",\r\n
+ \ \"40.118.0.0/17\",\r\n \"40.118.128.0/17\",\r\n \"40.119.0.0/18\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.119.68.0/22\",\r\n \"40.119.72.0/22\",\r\n
+ \ \"40.119.76.0/22\",\r\n \"40.119.80.0/22\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.119.92.0/22\",\r\n \"40.119.96.0/22\",\r\n \"40.119.104.0/22\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.119.128.0/19\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.119.192.0/18\",\r\n \"40.120.0.0/20\",\r\n \"40.120.16.0/20\",\r\n
+ \ \"40.120.32.0/19\",\r\n \"40.120.64.0/18\",\r\n \"40.121.0.0/16\",\r\n
+ \ \"40.122.0.0/20\",\r\n \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n
+ \ \"40.122.64.0/18\",\r\n \"40.122.128.0/17\",\r\n \"40.123.0.0/17\",\r\n
+ \ \"40.123.128.0/22\",\r\n \"40.123.132.0/22\",\r\n \"40.123.136.0/24\",\r\n
+ \ \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.124.0.0/16\",\r\n \"40.125.0.0/19\",\r\n \"40.125.32.0/19\",\r\n
+ \ \"40.125.64.0/18\",\r\n \"40.126.0.0/24\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.3.0/24\",\r\n \"40.126.4.0/24\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.6.0/24\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.8.0/24\",\r\n \"40.126.9.0/24\",\r\n \"40.126.10.0/25\",\r\n
+ \ \"40.126.10.128/25\",\r\n \"40.126.11.0/25\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.12.0/25\",\r\n \"40.126.12.128/25\",\r\n \"40.126.13.0/25\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.14.0/25\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.15.128/25\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.16.128/25\",\r\n \"40.126.17.0/25\",\r\n \"40.126.17.128/25\",\r\n
+ \ \"40.126.18.0/25\",\r\n \"40.126.18.128/25\",\r\n \"40.126.19.0/25\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.20.0/25\",\r\n \"40.126.20.128/25\",\r\n
+ \ \"40.126.21.0/24\",\r\n \"40.126.22.0/24\",\r\n \"40.126.23.0/24\",\r\n
+ \ \"40.126.24.0/24\",\r\n \"40.126.25.0/24\",\r\n \"40.126.26.0/24\",\r\n
+ \ \"40.126.27.0/24\",\r\n \"40.126.28.0/24\",\r\n \"40.126.29.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"40.126.31.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"40.126.34.0/24\",\r\n \"40.126.35.0/24\",\r\n
+ \ \"40.126.36.0/24\",\r\n \"40.126.37.0/24\",\r\n \"40.126.38.0/24\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.40.0/24\",\r\n \"40.126.41.0/24\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"40.126.43.0/24\",\r\n \"40.126.44.0/24\",\r\n
+ \ \"40.126.45.0/24\",\r\n \"40.126.46.0/24\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"40.126.48.0/24\",\r\n \"40.126.49.0/24\",\r\n \"40.126.50.0/24\",\r\n
+ \ \"40.126.51.0/24\",\r\n \"40.126.52.0/24\",\r\n \"40.126.55.0/24\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.57.0/24\",\r\n \"40.126.58.0/24\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.60.0/24\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.61.64/26\",\r\n \"40.126.61.128/26\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.126.62.64/26\",\r\n \"40.126.128.0/18\",\r\n
+ \ \"40.126.192.0/24\",\r\n \"40.126.193.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"40.126.195.0/24\",\r\n \"40.126.197.0/24\",\r\n \"40.126.198.0/24\",\r\n
+ \ \"40.126.200.0/24\",\r\n \"40.126.201.0/24\",\r\n \"40.126.207.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"40.126.224.0/19\",\r\n \"40.127.0.0/19\",\r\n
+ \ \"40.127.64.0/19\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.11.0.0/18\",\r\n \"51.11.64.0/19\",\r\n \"51.11.96.0/19\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.11.192.0/18\",\r\n \"51.13.0.0/17\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.103.0.0/17\",\r\n \"51.103.128.0/18\",\r\n
+ \ \"51.103.192.0/27\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.104.0.0/19\",\r\n \"51.104.32.0/19\",\r\n \"51.104.64.0/18\",\r\n
+ \ \"51.104.128.0/18\",\r\n \"51.104.192.0/18\",\r\n \"51.105.0.0/18\",\r\n
+ \ \"51.105.64.0/20\",\r\n \"51.105.80.0/21\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.107.0.0/18\",\r\n
+ \ \"51.107.64.0/19\",\r\n \"51.107.96.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n \"51.107.160.0/20\",\r\n
+ \ \"51.107.192.0/21\",\r\n \"51.107.200.0/21\",\r\n \"51.107.208.0/20\",\r\n
+ \ \"51.107.224.0/20\",\r\n \"51.107.240.0/21\",\r\n \"51.107.248.0/21\",\r\n
+ \ \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.200.0/21\",\r\n
+ \ \"51.116.208.0/20\",\r\n \"51.116.224.0/19\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n \"51.120.208.0/21\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"51.120.232.0/21\",\r\n
+ \ \"51.120.240.0/20\",\r\n \"51.124.0.0/17\",\r\n \"51.124.128.0/18\",\r\n
+ \ \"51.132.0.0/18\",\r\n \"51.132.64.0/18\",\r\n \"51.132.128.0/17\",\r\n
+ \ \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n \"51.137.128.0/18\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.138.128.0/19\",\r\n
+ \ \"51.138.160.0/21\",\r\n \"51.138.192.0/19\",\r\n \"51.140.0.0/17\",\r\n
+ \ \"51.140.128.0/18\",\r\n \"51.140.192.0/18\",\r\n \"51.141.0.0/17\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.32/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.32/27\",\r\n
+ \ \"51.141.129.64/26\",\r\n \"51.141.129.128/26\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"51.141.134.0/24\",\r\n \"51.141.135.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"51.141.156.0/22\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.141.192.0/18\",\r\n \"51.142.0.0/17\",\r\n \"51.142.128.0/17\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"51.143.128.0/18\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"51.143.208.0/20\",\r\n
+ \ \"51.143.224.0/19\",\r\n \"51.144.0.0/16\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.0.0/22\",\r\n
+ \ \"52.101.4.0/22\",\r\n \"52.101.8.0/24\",\r\n \"52.101.9.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.11.0/24\",\r\n \"52.101.12.0/22\",\r\n
+ \ \"52.101.16.0/22\",\r\n \"52.101.20.0/22\",\r\n \"52.101.24.0/22\",\r\n
+ \ \"52.101.28.0/22\",\r\n \"52.101.32.0/22\",\r\n \"52.101.36.0/22\",\r\n
+ \ \"52.101.40.0/24\",\r\n \"52.101.41.0/24\",\r\n \"52.101.42.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.129.0/24\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.102.131.0/24\",\r\n \"52.102.132.0/24\",\r\n \"52.102.133.0/24\",\r\n
+ \ \"52.102.134.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.102.159.0/24\",\r\n
+ \ \"52.103.0.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.2.0/24\",\r\n
+ \ \"52.103.3.0/24\",\r\n \"52.103.4.0/24\",\r\n \"52.103.5.0/24\",\r\n
+ \ \"52.103.6.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.128.0/24\",\r\n \"52.103.129.0/24\",\r\n \"52.103.130.0/24\",\r\n
+ \ \"52.103.131.0/24\",\r\n \"52.103.132.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.0.0/21\",\r\n \"52.108.16.0/21\",\r\n
+ \ \"52.108.24.0/21\",\r\n \"52.108.32.0/22\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.40.0/23\",\r\n \"52.108.42.0/23\",\r\n \"52.108.44.0/23\",\r\n
+ \ \"52.108.46.0/23\",\r\n \"52.108.48.0/23\",\r\n \"52.108.50.0/23\",\r\n
+ \ \"52.108.52.0/23\",\r\n \"52.108.54.0/23\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.68.0/23\",\r\n \"52.108.70.0/23\",\r\n \"52.108.72.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.74.0/24\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.76.0/24\",\r\n \"52.108.77.0/24\",\r\n \"52.108.78.0/24\",\r\n
+ \ \"52.108.79.0/24\",\r\n \"52.108.80.0/24\",\r\n \"52.108.81.0/24\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.83.0/24\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.108.85.0/24\",\r\n \"52.108.86.0/24\",\r\n \"52.108.87.0/24\",\r\n
+ \ \"52.108.88.0/24\",\r\n \"52.108.89.0/24\",\r\n \"52.108.90.0/24\",\r\n
+ \ \"52.108.91.0/24\",\r\n \"52.108.92.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.108.94.0/24\",\r\n \"52.108.95.0/24\",\r\n \"52.108.96.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.108.108.0/23\",\r\n
+ \ \"52.108.110.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.108.113.0/24\",\r\n \"52.108.116.0/24\",\r\n \"52.108.128.0/24\",\r\n
+ \ \"52.108.137.0/24\",\r\n \"52.108.138.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.177.0/24\",\r\n \"52.108.178.0/24\",\r\n
+ \ \"52.108.179.0/24\",\r\n \"52.108.180.0/24\",\r\n \"52.108.181.0/24\",\r\n
+ \ \"52.108.182.0/24\",\r\n \"52.108.183.0/24\",\r\n \"52.108.184.0/24\",\r\n
+ \ \"52.108.185.0/24\",\r\n \"52.108.186.0/24\",\r\n \"52.108.187.0/24\",\r\n
+ \ \"52.108.188.0/24\",\r\n \"52.108.189.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.191.0/24\",\r\n \"52.108.192.0/24\",\r\n \"52.108.193.0/24\",\r\n
+ \ \"52.108.194.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.196.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.198.0/24\",\r\n \"52.108.199.0/24\",\r\n
+ \ \"52.108.200.0/24\",\r\n \"52.108.201.0/24\",\r\n \"52.108.202.0/24\",\r\n
+ \ \"52.108.203.0/24\",\r\n \"52.108.204.0/23\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.208.0/21\",\r\n \"52.108.216.0/22\",\r\n \"52.108.220.0/23\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.108.224.0/23\",\r\n \"52.108.226.0/23\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.108.230.0/23\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.108.236.0/22\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.108.248.0/21\",\r\n \"52.109.0.0/22\",\r\n \"52.109.4.0/22\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.109.12.0/22\",\r\n \"52.109.16.0/22\",\r\n
+ \ \"52.109.20.0/22\",\r\n \"52.109.24.0/22\",\r\n \"52.109.28.0/22\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.109.36.0/22\",\r\n \"52.109.40.0/22\",\r\n
+ \ \"52.109.44.0/22\",\r\n \"52.109.48.0/22\",\r\n \"52.109.52.0/22\",\r\n
+ \ \"52.109.56.0/22\",\r\n \"52.109.60.0/22\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.109.72.0/22\",\r\n \"52.109.76.0/22\",\r\n
+ \ \"52.109.86.0/23\",\r\n \"52.109.88.0/22\",\r\n \"52.109.92.0/22\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.109.100.0/23\",\r\n \"52.109.102.0/23\",\r\n
+ \ \"52.109.104.0/23\",\r\n \"52.109.108.0/22\",\r\n \"52.109.112.0/22\",\r\n
+ \ \"52.109.116.0/22\",\r\n \"52.109.120.0/22\",\r\n \"52.109.124.0/22\",\r\n
+ \ \"52.109.128.0/22\",\r\n \"52.109.132.0/22\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.109.140.0/22\",\r\n \"52.109.144.0/23\",\r\n \"52.109.150.0/23\",\r\n
+ \ \"52.109.152.0/23\",\r\n \"52.109.156.0/23\",\r\n \"52.109.158.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.109.162.0/23\",\r\n \"52.109.164.0/24\",\r\n
+ \ \"52.111.194.0/24\",\r\n \"52.111.197.0/24\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.111.202.0/24\",\r\n \"52.111.203.0/24\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.111.205.0/24\",\r\n \"52.111.206.0/24\",\r\n \"52.111.207.0/24\",\r\n
+ \ \"52.111.224.0/24\",\r\n \"52.111.225.0/24\",\r\n \"52.111.226.0/24\",\r\n
+ \ \"52.111.227.0/24\",\r\n \"52.111.228.0/24\",\r\n \"52.111.229.0/24\",\r\n
+ \ \"52.111.230.0/24\",\r\n \"52.111.231.0/24\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.111.233.0/24\",\r\n \"52.111.234.0/24\",\r\n \"52.111.235.0/24\",\r\n
+ \ \"52.111.236.0/24\",\r\n \"52.111.237.0/24\",\r\n \"52.111.238.0/24\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.111.240.0/24\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.111.242.0/24\",\r\n \"52.111.243.0/24\",\r\n \"52.111.244.0/24\",\r\n
+ \ \"52.111.245.0/24\",\r\n \"52.111.246.0/24\",\r\n \"52.111.247.0/24\",\r\n
+ \ \"52.111.248.0/24\",\r\n \"52.111.249.0/24\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.111.251.0/24\",\r\n \"52.111.252.0/24\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.111.254.0/24\",\r\n \"52.111.255.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.24.0/21\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.83.0/24\",\r\n \"52.112.88.0/22\",\r\n
+ \ \"52.112.93.0/24\",\r\n \"52.112.94.0/24\",\r\n \"52.112.95.0/24\",\r\n
+ \ \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.105.0/24\",\r\n \"52.112.106.0/23\",\r\n \"52.112.108.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.110.0/23\",\r\n \"52.112.112.0/24\",\r\n
+ \ \"52.112.113.0/24\",\r\n \"52.112.114.0/24\",\r\n \"52.112.115.0/24\",\r\n
+ \ \"52.112.116.0/24\",\r\n \"52.112.117.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.112.144.0/20\",\r\n \"52.112.168.0/22\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.112.190.0/24\",\r\n
+ \ \"52.112.191.0/24\",\r\n \"52.112.197.0/24\",\r\n \"52.112.200.0/22\",\r\n
+ \ \"52.112.204.0/23\",\r\n \"52.112.206.0/24\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.229.0/24\",\r\n \"52.112.230.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.233.0/24\",\r\n
+ \ \"52.112.236.0/24\",\r\n \"52.112.237.0/24\",\r\n \"52.112.238.0/24\",\r\n
+ \ \"52.112.240.0/20\",\r\n \"52.113.9.0/24\",\r\n \"52.113.10.0/23\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.14.0/24\",\r\n \"52.113.15.0/24\",\r\n
+ \ \"52.113.16.0/20\",\r\n \"52.113.37.0/24\",\r\n \"52.113.40.0/21\",\r\n
+ \ \"52.113.48.0/20\",\r\n \"52.113.70.0/23\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.76.0/23\",\r\n \"52.113.78.0/23\",\r\n \"52.113.83.0/24\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.88.0/22\",\r\n \"52.113.92.0/22\",\r\n
+ \ \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.103.0/24\",\r\n \"52.113.104.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.113.107.0/24\",\r\n
+ \ \"52.113.108.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.110.0/23\",\r\n
+ \ \"52.113.112.0/20\",\r\n \"52.113.128.0/24\",\r\n \"52.113.129.0/24\",\r\n
+ \ \"52.113.130.0/24\",\r\n \"52.113.131.0/24\",\r\n \"52.113.132.0/24\",\r\n
+ \ \"52.113.133.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.113.136.0/21\",\r\n
+ \ \"52.113.144.0/21\",\r\n \"52.113.160.0/19\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.113.193.0/24\",\r\n \"52.113.198.0/24\",\r\n \"52.113.199.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.205.0/24\",\r\n
+ \ \"52.113.206.0/24\",\r\n \"52.113.207.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.113.224.0/19\",\r\n \"52.114.0.0/21\",\r\n \"52.114.8.0/21\",\r\n
+ \ \"52.114.16.0/22\",\r\n \"52.114.20.0/22\",\r\n \"52.114.24.0/22\",\r\n
+ \ \"52.114.28.0/22\",\r\n \"52.114.32.0/22\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.114.40.0/22\",\r\n \"52.114.44.0/22\",\r\n \"52.114.48.0/22\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.60.0/23\",\r\n \"52.114.64.0/21\",\r\n
+ \ \"52.114.72.0/22\",\r\n \"52.114.76.0/22\",\r\n \"52.114.80.0/22\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.88.0/22\",\r\n \"52.114.92.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.104.0/22\",\r\n \"52.114.108.0/22\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.116.0/22\",\r\n \"52.114.120.0/22\",\r\n
+ \ \"52.114.128.0/22\",\r\n \"52.114.132.0/22\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.144.0/22\",\r\n \"52.114.148.0/22\",\r\n \"52.114.152.0/21\",\r\n
+ \ \"52.114.160.0/22\",\r\n \"52.114.164.0/22\",\r\n \"52.114.168.0/22\",\r\n
+ \ \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n \"52.114.180.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.114.186.0/23\",\r\n \"52.114.192.0/23\",\r\n
+ \ \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n \"52.114.200.0/22\",\r\n
+ \ \"52.114.216.0/22\",\r\n \"52.114.224.0/24\",\r\n \"52.114.226.0/24\",\r\n
+ \ \"52.114.228.0/24\",\r\n \"52.114.230.0/24\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.232.0/24\",\r\n \"52.114.233.0/24\",\r\n \"52.114.234.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.114.238.0/24\",\r\n \"52.114.240.0/24\",\r\n
+ \ \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n \"52.114.244.0/24\",\r\n
+ \ \"52.114.248.0/22\",\r\n \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n
+ \ \"52.115.8.0/22\",\r\n \"52.115.16.0/21\",\r\n \"52.115.24.0/22\",\r\n
+ \ \"52.115.32.0/22\",\r\n \"52.115.36.0/23\",\r\n \"52.115.38.0/24\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.47.0/24\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.54.0/24\",\r\n \"52.115.55.0/24\",\r\n
+ \ \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.64.0/22\",\r\n \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n
+ \ \"52.115.76.0/22\",\r\n \"52.115.80.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.115.88.0/22\",\r\n \"52.115.96.0/24\",\r\n \"52.115.97.0/24\",\r\n
+ \ \"52.115.98.0/24\",\r\n \"52.115.99.0/24\",\r\n \"52.115.100.0/22\",\r\n
+ \ \"52.115.104.0/23\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n \"52.115.140.0/22\",\r\n
+ \ \"52.115.144.0/20\",\r\n \"52.115.160.0/19\",\r\n \"52.115.192.0/19\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.64.0/19\",\r\n
+ \ \"52.120.96.0/19\",\r\n \"52.120.128.0/21\",\r\n \"52.120.136.0/21\",\r\n
+ \ \"52.120.144.0/21\",\r\n \"52.120.152.0/22\",\r\n \"52.120.156.0/24\",\r\n
+ \ \"52.120.157.0/24\",\r\n \"52.120.158.0/23\",\r\n \"52.120.160.0/19\",\r\n
+ \ \"52.120.192.0/20\",\r\n \"52.120.208.0/20\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.120.240.0/20\",\r\n \"52.121.0.0/21\",\r\n \"52.121.16.0/21\",\r\n
+ \ \"52.121.24.0/21\",\r\n \"52.121.32.0/22\",\r\n \"52.121.36.0/22\",\r\n
+ \ \"52.121.40.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.121.64.0/20\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.121.100.0/22\",\r\n
+ \ \"52.121.104.0/23\",\r\n \"52.121.106.0/23\",\r\n \"52.121.108.0/22\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.121.116.0/22\",\r\n \"52.121.120.0/23\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.121.128.0/20\",\r\n
+ \ \"52.121.144.0/21\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.123.0.0/24\",\r\n
+ \ \"52.123.1.0/24\",\r\n \"52.123.2.0/24\",\r\n \"52.123.3.0/24\",\r\n
+ \ \"52.123.4.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.125.128.0/22\",\r\n
+ \ \"52.125.132.0/22\",\r\n \"52.125.136.0/24\",\r\n \"52.125.137.0/24\",\r\n
+ \ \"52.125.138.0/23\",\r\n \"52.125.140.0/23\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.16.0/24\",\r\n
+ \ \"52.136.17.0/24\",\r\n \"52.136.18.0/24\",\r\n \"52.136.19.0/24\",\r\n
+ \ \"52.136.20.0/24\",\r\n \"52.136.21.0/24\",\r\n \"52.136.22.0/24\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.24.0/24\",\r\n \"52.136.25.0/24\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.29.0/24\",\r\n \"52.136.30.0/24\",\r\n \"52.136.31.0/24\",\r\n
+ \ \"52.136.32.0/19\",\r\n \"52.136.64.0/18\",\r\n \"52.136.128.0/18\",\r\n
+ \ \"52.136.192.0/18\",\r\n \"52.137.0.0/18\",\r\n \"52.137.64.0/18\",\r\n
+ \ \"52.137.128.0/17\",\r\n \"52.138.0.0/18\",\r\n \"52.138.64.0/20\",\r\n
+ \ \"52.138.80.0/21\",\r\n \"52.138.88.0/21\",\r\n \"52.138.96.0/19\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.139.0.0/18\",\r\n \"52.139.64.0/18\",\r\n
+ \ \"52.139.128.0/18\",\r\n \"52.139.192.0/18\",\r\n \"52.140.0.0/18\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.140.128.0/18\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.141.0.0/18\",\r\n \"52.141.64.0/18\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.141.192.0/19\",\r\n \"52.141.224.0/20\",\r\n \"52.141.240.0/20\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.142.64.0/18\",\r\n \"52.142.128.0/18\",\r\n
+ \ \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n \"52.143.64.0/18\",\r\n
+ \ \"52.143.128.0/18\",\r\n \"52.143.192.0/24\",\r\n \"52.143.193.0/24\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.195.0/24\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.197.0/24\",\r\n \"52.143.198.0/24\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.143.202.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.143.207.0/24\",\r\n
+ \ \"52.143.208.0/24\",\r\n \"52.143.209.0/24\",\r\n \"52.143.210.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.143.212.0/23\",\r\n \"52.143.214.0/24\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.143.218.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.143.221.0/24\",\r\n \"52.143.222.0/23\",\r\n
+ \ \"52.143.224.0/19\",\r\n \"52.146.0.0/17\",\r\n \"52.146.128.0/17\",\r\n
+ \ \"52.147.0.0/19\",\r\n \"52.147.32.0/19\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.147.96.0/19\",\r\n \"52.147.128.0/19\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.148.0.0/18\",\r\n \"52.148.64.0/18\",\r\n
+ \ \"52.148.128.0/18\",\r\n \"52.148.192.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.151.0.0/18\",\r\n \"52.151.64.0/18\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.0.0/17\",\r\n \"52.152.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.153.64.0/18\",\r\n \"52.153.128.0/18\",\r\n
+ \ \"52.153.192.0/18\",\r\n \"52.154.0.0/18\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.154.128.0/17\",\r\n \"52.155.0.0/19\",\r\n \"52.155.32.0/19\",\r\n
+ \ \"52.155.64.0/19\",\r\n \"52.155.96.0/19\",\r\n \"52.155.128.0/17\",\r\n
+ \ \"52.156.0.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.156.64.0/18\",\r\n
+ \ \"52.156.128.0/19\",\r\n \"52.156.160.0/19\",\r\n \"52.156.192.0/18\",\r\n
+ \ \"52.157.0.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.158.0.0/17\",\r\n \"52.158.128.0/19\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.176.0/20\",\r\n \"52.158.192.0/19\",\r\n \"52.158.224.0/19\",\r\n
+ \ \"52.159.0.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.159.128.0/17\",\r\n
+ \ \"52.160.0.0/16\",\r\n \"52.161.0.0/16\",\r\n \"52.162.0.0/16\",\r\n
+ \ \"52.163.0.0/16\",\r\n \"52.164.0.0/16\",\r\n \"52.165.0.0/19\",\r\n
+ \ \"52.165.32.0/20\",\r\n \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n
+ \ \"52.165.56.0/21\",\r\n \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n
+ \ \"52.165.104.0/25\",\r\n \"52.165.104.128/26\",\r\n \"52.165.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.167.0.0/16\",\r\n \"52.168.0.0/16\",\r\n
+ \ \"52.169.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.171.0.0/16\",\r\n
+ \ \"52.172.0.0/17\",\r\n \"52.172.128.0/17\",\r\n \"52.173.0.0/16\",\r\n
+ \ \"52.174.0.0/16\",\r\n \"52.175.0.0/17\",\r\n \"52.175.128.0/18\",\r\n
+ \ \"52.175.192.0/18\",\r\n \"52.176.0.0/17\",\r\n \"52.176.128.0/19\",\r\n
+ \ \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n \"52.176.192.0/19\",\r\n
+ \ \"52.176.224.0/24\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.177.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.178.128.0/17\",\r\n \"52.179.0.0/17\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.180.0.0/17\",\r\n \"52.180.128.0/19\",\r\n \"52.180.160.0/20\",\r\n
+ \ \"52.180.176.0/21\",\r\n \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n
+ \ \"52.180.185.0/24\",\r\n \"52.182.128.0/17\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.183.192.0/18\",\r\n \"52.184.0.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n \"52.184.168.80/28\",\r\n
+ \ \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n \"52.184.169.0/24\",\r\n
+ \ \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n \"52.184.192.0/18\",\r\n
+ \ \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n \"52.185.48.0/21\",\r\n
+ \ \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n \"52.185.56.96/28\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.64/27\",\r\n \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n
+ \ \"52.185.128.0/18\",\r\n \"52.185.192.0/18\",\r\n \"52.186.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.187.192.0/18\",\r\n
+ \ \"52.188.0.0/16\",\r\n \"52.189.0.0/17\",\r\n \"52.189.128.0/18\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.190.0.0/17\",\r\n \"52.190.128.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.128.0/18\",\r\n \"52.191.192.0/18\",\r\n
+ \ \"52.224.0.0/16\",\r\n \"52.225.0.0/17\",\r\n \"52.225.128.0/21\",\r\n
+ \ \"52.225.136.0/27\",\r\n \"52.225.136.32/28\",\r\n \"52.225.136.48/28\",\r\n
+ \ \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n \"52.225.144.0/20\",\r\n
+ \ \"52.225.160.0/19\",\r\n \"52.225.192.0/18\",\r\n \"52.226.0.0/16\",\r\n
+ \ \"52.228.0.0/17\",\r\n \"52.228.128.0/17\",\r\n \"52.229.0.0/18\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.229.128.0/17\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.230.128.0/17\",\r\n \"52.231.0.0/17\",\r\n \"52.231.128.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.128.0/21\",\r\n \"52.232.136.0/21\",\r\n
+ \ \"52.232.144.0/24\",\r\n \"52.232.145.0/24\",\r\n \"52.232.146.0/24\",\r\n
+ \ \"52.232.147.0/24\",\r\n \"52.232.148.0/24\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.232.151.0/24\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.232.153.0/24\",\r\n \"52.232.154.0/24\",\r\n \"52.232.155.0/24\",\r\n
+ \ \"52.232.156.0/24\",\r\n \"52.232.157.0/24\",\r\n \"52.232.158.0/24\",\r\n
+ \ \"52.232.159.0/24\",\r\n \"52.232.160.0/19\",\r\n \"52.232.192.0/18\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.233.64.0/18\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.234.128.0/17\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.235.64.0/18\",\r\n \"52.236.0.0/17\",\r\n \"52.236.128.0/17\",\r\n
+ \ \"52.237.0.0/18\",\r\n \"52.237.64.0/18\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.238.0.0/18\",\r\n \"52.238.192.0/18\",\r\n
+ \ \"52.239.0.0/17\",\r\n \"52.239.128.0/24\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.132.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.135.0/26\",\r\n \"52.239.135.64/26\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.136.0/22\",\r\n \"52.239.140.0/22\",\r\n
+ \ \"52.239.144.0/23\",\r\n \"52.239.146.0/23\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.148.64/26\",\r\n \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n
+ \ \"52.239.150.0/23\",\r\n \"52.239.152.0/22\",\r\n \"52.239.156.0/24\",\r\n
+ \ \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n
+ \ \"52.239.157.224/27\",\r\n \"52.239.158.0/23\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.164.0/25\",\r\n \"52.239.164.128/26\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/22\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.177.0/27\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.184.224/27\",\r\n
+ \ \"52.239.185.0/28\",\r\n \"52.239.185.32/27\",\r\n \"52.239.186.0/24\",\r\n
+ \ \"52.239.187.0/25\",\r\n \"52.239.187.128/25\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.239.190.0/25\",\r\n \"52.239.190.128/26\",\r\n
+ \ \"52.239.190.192/26\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.128/27\",\r\n \"52.239.192.160/27\",\r\n
+ \ \"52.239.192.192/26\",\r\n \"52.239.193.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.196.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.128/27\",\r\n \"52.239.198.192/26\",\r\n
+ \ \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n \"52.239.202.0/24\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.205.0/24\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.207.192/26\",\r\n \"52.239.208.0/23\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.212.0/23\",\r\n \"52.239.214.0/23\",\r\n \"52.239.216.0/23\",\r\n
+ \ \"52.239.218.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"52.239.225.0/24\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.228.0/23\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.239.232.0/25\",\r\n \"52.239.232.128/25\",\r\n
+ \ \"52.239.233.0/25\",\r\n \"52.239.233.128/25\",\r\n \"52.239.234.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.239.238.0/24\",\r\n \"52.239.239.0/24\",\r\n
+ \ \"52.239.240.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.248.0/24\",\r\n
+ \ \"52.239.249.0/24\",\r\n \"52.239.250.0/24\",\r\n \"52.239.251.0/24\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.239.253.0/24\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.240.0.0/17\",\r\n \"52.240.128.0/17\",\r\n \"52.241.0.0/16\",\r\n
+ \ \"52.242.0.0/18\",\r\n \"52.242.64.0/18\",\r\n \"52.242.128.0/17\",\r\n
+ \ \"52.243.32.0/19\",\r\n \"52.243.64.0/18\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.12.0/22\",\r\n \"52.245.16.0/22\",\r\n \"52.245.20.0/22\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.245.28.0/22\",\r\n \"52.245.32.0/22\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.245.40.0/22\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.144/28\",\r\n
+ \ \"52.245.45.160/27\",\r\n \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n
+ \ \"52.245.46.32/28\",\r\n \"52.245.46.48/28\",\r\n \"52.245.46.64/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.245.46.112/28\",\r\n
+ \ \"52.245.46.128/28\",\r\n \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n
+ \ \"52.245.48.0/22\",\r\n \"52.245.52.0/22\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.245.60.0/22\",\r\n \"52.245.64.0/22\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.0/27\",\r\n \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n
+ \ \"52.245.69.96/28\",\r\n \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n
+ \ \"52.245.69.192/26\",\r\n \"52.245.70.0/23\",\r\n \"52.245.72.0/22\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.245.80.0/22\",\r\n \"52.245.84.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"52.245.92.0/22\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.245.100.0/22\",\r\n \"52.245.104.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.245.112.0/22\",\r\n \"52.245.116.0/22\",\r\n \"52.245.120.0/22\",\r\n
+ \ \"52.245.124.0/22\",\r\n \"52.246.0.0/17\",\r\n \"52.246.128.0/20\",\r\n
+ \ \"52.246.152.0/21\",\r\n \"52.246.160.0/19\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.0.0/17\",\r\n \"52.247.192.0/18\",\r\n \"52.248.0.0/17\",\r\n
+ \ \"52.248.128.0/17\",\r\n \"52.249.0.0/18\",\r\n \"52.249.64.0/19\",\r\n
+ \ \"52.249.128.0/17\",\r\n \"52.250.0.0/17\",\r\n \"52.250.128.0/18\",\r\n
+ \ \"52.250.192.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.252.128.0/17\",\r\n \"52.253.0.0/18\",\r\n \"52.253.64.0/20\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"52.253.96.0/19\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"52.253.148.0/23\",\r\n \"52.253.150.0/23\",\r\n \"52.253.152.0/23\",\r\n
+ \ \"52.253.154.0/23\",\r\n \"52.253.156.0/22\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"52.253.162.0/23\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.166.0/24\",\r\n \"52.253.167.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.169.0/24\",\r\n \"52.253.170.0/23\",\r\n \"52.253.172.0/24\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"52.253.175.0/24\",\r\n
+ \ \"52.253.176.0/24\",\r\n \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n
+ \ \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n \"52.253.181.0/24\",\r\n
+ \ \"52.253.185.0/24\",\r\n \"52.253.186.0/24\",\r\n \"52.253.191.0/24\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"52.253.197.0/24\",\r\n \"52.253.224.0/21\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n
+ \ \"52.254.96.0/20\",\r\n \"52.254.112.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"52.255.0.0/19\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"52.255.128.0/17\",\r\n \"64.4.8.0/24\",\r\n
+ \ \"64.4.54.0/24\",\r\n \"65.52.0.0/19\",\r\n \"65.52.32.0/21\",\r\n
+ \ \"65.52.48.0/20\",\r\n \"65.52.64.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.52.111.0/24\",\r\n \"65.52.112.0/20\",\r\n \"65.52.128.0/19\",\r\n
+ \ \"65.52.160.0/19\",\r\n \"65.52.192.0/19\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"65.52.232.0/21\",\r\n \"65.52.240.0/21\",\r\n \"65.52.248.0/21\",\r\n
+ \ \"65.54.19.128/27\",\r\n \"65.54.55.160/27\",\r\n \"65.54.55.224/27\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n
+ \ \"65.55.44.64/27\",\r\n \"65.55.44.96/28\",\r\n \"65.55.44.112/28\",\r\n
+ \ \"65.55.44.128/27\",\r\n \"65.55.51.0/24\",\r\n \"65.55.60.176/29\",\r\n
+ \ \"65.55.60.188/30\",\r\n \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.105.192/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.106.192/28\",\r\n \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n
+ \ \"65.55.106.240/28\",\r\n \"65.55.107.0/28\",\r\n \"65.55.107.48/28\",\r\n
+ \ \"65.55.107.64/27\",\r\n \"65.55.107.96/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.109.0/24\",\r\n \"65.55.110.0/24\",\r\n \"65.55.120.0/24\",\r\n
+ \ \"65.55.144.0/23\",\r\n \"65.55.146.0/24\",\r\n \"65.55.207.0/24\",\r\n
+ \ \"65.55.209.0/25\",\r\n \"65.55.209.128/26\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.211.0/27\",\r\n \"65.55.211.32/27\",\r\n
+ \ \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n \"65.55.213.0/27\",\r\n
+ \ \"65.55.213.64/26\",\r\n \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n
+ \ \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.64/26\",\r\n \"65.55.219.128/25\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.12.0/32\",\r\n \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n
+ \ \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n \"70.37.160.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"102.37.0.0/20\",\r\n
+ \ \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n \"102.37.26.0/27\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.72.0/21\",\r\n \"102.37.80.0/21\",\r\n \"102.37.96.0/19\",\r\n
+ \ \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n \"102.37.192.0/18\",\r\n
+ \ \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n \"102.133.96.0/20\",\r\n
+ \ \"102.133.112.0/28\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.40.128.0/17\",\r\n \"104.41.0.0/18\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.128.0/19\",\r\n \"104.41.160.0/19\",\r\n \"104.41.192.0/18\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.43.0.0/17\",\r\n \"104.43.128.0/17\",\r\n
+ \ \"104.44.88.0/27\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.64/27\",\r\n
+ \ \"104.44.88.96/27\",\r\n \"104.44.88.128/27\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.88.192/27\",\r\n \"104.44.88.224/27\",\r\n \"104.44.89.0/27\",\r\n
+ \ \"104.44.89.32/27\",\r\n \"104.44.89.64/27\",\r\n \"104.44.89.96/27\",\r\n
+ \ \"104.44.89.128/27\",\r\n \"104.44.89.160/27\",\r\n \"104.44.89.192/27\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"104.44.90.0/27\",\r\n \"104.44.90.32/27\",\r\n
+ \ \"104.44.90.64/26\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.90.224/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.91.64/27\",\r\n \"104.44.91.96/27\",\r\n
+ \ \"104.44.91.128/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.91.192/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.92.0/27\",\r\n \"104.44.92.32/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.92.96/27\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.92.160/27\",\r\n \"104.44.92.192/27\",\r\n \"104.44.92.224/27\",\r\n
+ \ \"104.44.93.0/27\",\r\n \"104.44.93.32/27\",\r\n \"104.44.93.64/27\",\r\n
+ \ \"104.44.93.96/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.93.160/27\",\r\n
+ \ \"104.44.93.192/27\",\r\n \"104.44.93.224/27\",\r\n \"104.44.94.0/28\",\r\n
+ \ \"104.44.94.16/28\",\r\n \"104.44.94.32/28\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.44.94.64/28\",\r\n \"104.44.94.80/28\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.44.94.112/28\",\r\n \"104.44.94.128/28\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.94.160/27\",\r\n \"104.44.94.192/28\",\r\n \"104.44.94.208/28\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"104.44.95.0/28\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"104.44.95.32/28\",\r\n \"104.44.95.48/28\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.44.95.112/28\",\r\n
+ \ \"104.44.95.128/27\",\r\n \"104.44.95.160/27\",\r\n \"104.44.95.192/28\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"104.44.95.224/28\",\r\n \"104.44.95.240/28\",\r\n
+ \ \"104.44.128.0/18\",\r\n \"104.45.0.0/18\",\r\n \"104.45.64.0/20\",\r\n
+ \ \"104.45.80.0/20\",\r\n \"104.45.96.0/19\",\r\n \"104.45.128.0/18\",\r\n
+ \ \"104.45.192.0/20\",\r\n \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.8.0/21\",\r\n \"104.46.24.0/22\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.46.32.0/19\",\r\n \"104.46.64.0/19\",\r\n \"104.46.96.0/19\",\r\n
+ \ \"104.46.160.0/19\",\r\n \"104.46.192.0/20\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.47.128.0/18\",\r\n \"104.47.200.0/21\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.47.210.0/23\",\r\n \"104.47.212.0/23\",\r\n
+ \ \"104.47.214.0/23\",\r\n \"104.47.216.64/26\",\r\n \"104.47.218.0/23\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"104.47.224.0/20\",\r\n \"104.208.0.0/19\",\r\n
+ \ \"104.208.32.0/20\",\r\n \"104.208.48.0/20\",\r\n \"104.208.64.0/18\",\r\n
+ \ \"104.208.128.0/17\",\r\n \"104.209.0.0/18\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.209.128.0/17\",\r\n \"104.210.0.0/20\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"104.210.64.0/18\",\r\n \"104.210.128.0/19\",\r\n
+ \ \"104.210.176.0/20\",\r\n \"104.210.192.0/19\",\r\n \"104.211.0.0/18\",\r\n
+ \ \"104.211.64.0/18\",\r\n \"104.211.128.0/18\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"104.214.0.0/17\",\r\n \"104.214.128.0/19\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"104.214.192.0/18\",\r\n \"104.215.0.0/18\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"104.215.128.0/17\",\r\n \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n
+ \ \"111.221.78.0/23\",\r\n \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n
+ \ \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n \"131.253.12.48/29\",\r\n
+ \ \"131.253.12.160/28\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.192/28\",\r\n
+ \ \"131.253.12.208/28\",\r\n \"131.253.12.224/30\",\r\n \"131.253.12.228/30\",\r\n
+ \ \"131.253.12.248/29\",\r\n \"131.253.13.0/28\",\r\n \"131.253.13.16/29\",\r\n
+ \ \"131.253.13.24/29\",\r\n \"131.253.13.32/28\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.96/30\",\r\n \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.32/27\",\r\n \"131.253.14.64/29\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.160/27\",\r\n
+ \ \"131.253.14.192/29\",\r\n \"131.253.14.208/28\",\r\n \"131.253.14.224/28\",\r\n
+ \ \"131.253.14.248/29\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.15.32/27\",\r\n \"131.253.15.192/28\",\r\n \"131.253.15.208/28\",\r\n
+ \ \"131.253.15.224/27\",\r\n \"131.253.24.0/28\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.24.192/26\",\r\n \"131.253.25.0/24\",\r\n \"131.253.27.0/24\",\r\n
+ \ \"131.253.34.224/27\",\r\n \"131.253.35.128/26\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"131.253.36.128/26\",\r\n \"131.253.36.224/27\",\r\n \"131.253.38.0/27\",\r\n
+ \ \"131.253.38.32/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.38.224/27\",\r\n
+ \ \"131.253.40.0/28\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.48/29\",\r\n \"131.253.40.64/28\",\r\n \"131.253.40.80/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.128/27\",\r\n \"131.253.40.160/28\",\r\n
+ \ \"131.253.40.192/26\",\r\n \"131.253.41.0/24\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"134.170.220.0/23\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n \"137.116.96.0/22\",\r\n
+ \ \"137.116.112.0/20\",\r\n \"137.116.128.0/19\",\r\n \"137.116.160.0/20\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"137.116.184.0/21\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.117.0.0/19\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.117.128.0/17\",\r\n \"137.135.0.0/18\",\r\n
+ \ \"137.135.64.0/18\",\r\n \"137.135.128.0/17\",\r\n \"138.91.0.0/20\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"138.91.32.0/20\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"138.91.64.0/19\",\r\n \"138.91.96.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.55.2.128/26\",\r\n \"157.55.3.0/24\",\r\n \"157.55.7.128/26\",\r\n
+ \ \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n \"157.55.10.160/29\",\r\n
+ \ \"157.55.10.176/28\",\r\n \"157.55.10.192/26\",\r\n \"157.55.11.128/25\",\r\n
+ \ \"157.55.12.64/26\",\r\n \"157.55.12.128/26\",\r\n \"157.55.13.64/26\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.24.0/21\",\r\n \"157.55.37.0/24\",\r\n
+ \ \"157.55.38.0/24\",\r\n \"157.55.39.0/24\",\r\n \"157.55.48.0/24\",\r\n
+ \ \"157.55.50.0/25\",\r\n \"157.55.51.224/28\",\r\n \"157.55.55.0/27\",\r\n
+ \ \"157.55.55.32/28\",\r\n \"157.55.55.100/30\",\r\n \"157.55.55.104/29\",\r\n
+ \ \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n
+ \ \"157.55.55.216/29\",\r\n \"157.55.55.228/30\",\r\n \"157.55.55.232/29\",\r\n
+ \ \"157.55.55.240/28\",\r\n \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n
+ \ \"157.55.80.0/21\",\r\n \"157.55.103.32/27\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"157.55.106.0/26\",\r\n \"157.55.106.128/25\",\r\n \"157.55.107.0/24\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n
+ \ \"157.55.136.0/21\",\r\n \"157.55.151.0/28\",\r\n \"157.55.153.224/28\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.55.160.0/20\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"157.55.204.128/25\",\r\n \"157.55.208.0/21\",\r\n \"157.55.248.0/21\",\r\n
+ \ \"157.56.2.0/25\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"157.56.3.128/25\",\r\n \"157.56.8.0/21\",\r\n \"157.56.19.224/27\",\r\n
+ \ \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.80.0/25\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"157.56.160.0/21\",\r\n \"157.56.176.0/21\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.0.0/19\",\r\n \"168.61.32.0/20\",\r\n
+ \ \"168.61.48.0/21\",\r\n \"168.61.56.0/21\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.61.128.0/25\",\r\n
+ \ \"168.61.128.128/28\",\r\n \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n
+ \ \"168.61.129.224/27\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.61.136.0/21\",\r\n \"168.61.144.0/20\",\r\n \"168.61.160.0/19\",\r\n
+ \ \"168.61.208.0/20\",\r\n \"168.62.0.0/19\",\r\n \"168.62.32.0/19\",\r\n
+ \ \"168.62.64.0/19\",\r\n \"168.62.96.0/19\",\r\n \"168.62.128.0/19\",\r\n
+ \ \"168.62.160.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.62.224.0/19\",\r\n
+ \ \"168.63.0.0/19\",\r\n \"168.63.32.0/19\",\r\n \"168.63.64.0/20\",\r\n
+ \ \"168.63.80.0/21\",\r\n \"168.63.88.0/23\",\r\n \"168.63.90.0/24\",\r\n
+ \ \"168.63.91.0/26\",\r\n \"168.63.92.0/22\",\r\n \"168.63.96.0/19\",\r\n
+ \ \"168.63.128.0/24\",\r\n \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n
+ \ \"168.63.129.64/26\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n
+ \ \"168.63.132.0/22\",\r\n \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n
+ \ \"168.63.152.0/22\",\r\n \"168.63.156.0/24\",\r\n \"168.63.160.0/19\",\r\n
+ \ \"168.63.192.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.232.16.0/21\",\r\n
+ \ \"191.232.32.0/19\",\r\n \"191.232.138.0/23\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.8.0/21\",\r\n \"191.233.16.0/20\",\r\n \"191.233.32.0/20\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.64.0/18\",\r\n \"191.233.128.0/20\",\r\n
+ \ \"191.233.144.0/20\",\r\n \"191.233.160.0/19\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.235.32.0/19\",\r\n \"191.235.64.0/18\",\r\n \"191.235.128.0/18\",\r\n
+ \ \"191.235.192.0/22\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.0/24\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.236.64.0/18\",\r\n \"191.236.128.0/18\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.237.128.0/18\",\r\n
+ \ \"191.237.192.0/23\",\r\n \"191.237.194.0/24\",\r\n \"191.237.195.0/24\",\r\n
+ \ \"191.237.196.0/24\",\r\n \"191.237.200.0/21\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"191.237.232.0/22\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.237.238.0/24\",\r\n \"191.237.240.0/23\",\r\n \"191.237.248.0/21\",\r\n
+ \ \"191.238.0.0/18\",\r\n \"191.238.64.0/23\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.70.0/23\",\r\n \"191.238.72.0/21\",\r\n
+ \ \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n \"191.238.92.0/23\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.238.128.0/21\",\r\n \"191.238.144.0/20\",\r\n
+ \ \"191.238.160.0/19\",\r\n \"191.238.192.0/19\",\r\n \"191.238.224.0/19\",\r\n
+ \ \"191.239.0.0/18\",\r\n \"191.239.64.0/19\",\r\n \"191.239.96.0/20\",\r\n
+ \ \"191.239.112.0/20\",\r\n \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"191.239.204.0/22\",\r\n \"191.239.208.0/20\",\r\n
+ \ \"191.239.224.0/20\",\r\n \"191.239.240.0/20\",\r\n \"193.149.64.0/21\",\r\n
+ \ \"193.149.72.0/21\",\r\n \"193.149.80.0/21\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"198.180.96.0/25\",\r\n \"198.180.97.0/24\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.24.0/23\",\r\n \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n
+ \ \"199.30.27.160/27\",\r\n \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n
+ \ \"199.30.29.0/24\",\r\n \"199.30.31.0/25\",\r\n \"199.30.31.192/26\",\r\n
+ \ \"204.79.180.0/24\",\r\n \"204.231.197.0/24\",\r\n \"207.46.13.0/24\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n
+ \ \"207.46.198.128/25\",\r\n \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n
+ \ \"207.46.202.128/28\",\r\n \"207.46.205.0/24\",\r\n \"207.46.224.0/20\",\r\n
+ \ \"207.68.174.40/29\",\r\n \"207.68.174.48/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"207.68.174.192/28\",\r\n \"207.68.174.208/28\",\r\n \"209.240.212.0/23\",\r\n
+ \ \"213.199.128.0/20\",\r\n \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n
+ \ \"213.199.180.192/27\",\r\n \"213.199.183.0/24\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200::/59\",\r\n \"2603:1007:200:20::/59\",\r\n
+ \ \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n \"2603:1010:6::/48\",\r\n
+ \ \"2603:1010:100::/40\",\r\n \"2603:1010:200::/47\",\r\n
+ \ \"2603:1010:202::/48\",\r\n \"2603:1010:204::/48\",\r\n
+ \ \"2603:1010:205::/48\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1010:400::/47\",\r\n \"2603:1010:403::/48\",\r\n
+ \ \"2603:1010:404::/48\",\r\n \"2603:1016:1400::/59\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:1400:40::/59\",\r\n
+ \ \"2603:1016:1400:60::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2401::/48\",\r\n \"2603:1016:2402::/48\",\r\n
+ \ \"2603:1016:2403::/48\",\r\n \"2603:1016:2500::/64\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1016:2500:8::/64\",\r\n
+ \ \"2603:1016:2500:c::/64\",\r\n \"2603:1017::/59\",\r\n
+ \ \"2603:1017:0:20::/59\",\r\n \"2603:1017:0:40::/59\",\r\n
+ \ \"2603:1017:0:60::/59\",\r\n \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n
+ \ \"2603:1020:4::/48\",\r\n \"2603:1020:5::/48\",\r\n \"2603:1020:200::/46\",\r\n
+ \ \"2603:1020:205::/48\",\r\n \"2603:1020:206::/48\",\r\n
+ \ \"2603:1020:300::/47\",\r\n \"2603:1020:302::/48\",\r\n
+ \ \"2603:1020:304::/48\",\r\n \"2603:1020:305::/48\",\r\n
+ \ \"2603:1020:400::/47\",\r\n \"2603:1020:402::/48\",\r\n
+ \ \"2603:1020:404::/48\",\r\n \"2603:1020:405::/48\",\r\n
+ \ \"2603:1020:500::/47\",\r\n \"2603:1020:503::/48\",\r\n
+ \ \"2603:1020:504::/48\",\r\n \"2603:1020:600::/47\",\r\n
+ \ \"2603:1020:602::/48\",\r\n \"2603:1020:604::/48\",\r\n
+ \ \"2603:1020:605::/48\",\r\n \"2603:1020:700::/47\",\r\n
+ \ \"2603:1020:702::/48\",\r\n \"2603:1020:704::/48\",\r\n
+ \ \"2603:1020:705::/48\",\r\n \"2603:1020:800::/47\",\r\n
+ \ \"2603:1020:802::/48\",\r\n \"2603:1020:804::/48\",\r\n
+ \ \"2603:1020:805::/48\",\r\n \"2603:1020:900::/47\",\r\n
+ \ \"2603:1020:902::/48\",\r\n \"2603:1020:904::/48\",\r\n
+ \ \"2603:1020:905::/48\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1020:b00::/47\",\r\n \"2603:1020:b03::/48\",\r\n
+ \ \"2603:1020:b04::/48\",\r\n \"2603:1020:c00::/47\",\r\n
+ \ \"2603:1020:c03::/48\",\r\n \"2603:1020:c04::/48\",\r\n
+ \ \"2603:1020:d00::/47\",\r\n \"2603:1020:d03::/48\",\r\n
+ \ \"2603:1020:d04::/48\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1020:f00::/47\",\r\n \"2603:1020:f03::/48\",\r\n
+ \ \"2603:1020:f04::/48\",\r\n \"2603:1026:2400::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2404::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2407::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:240c::/48\",\r\n
+ \ \"2603:1026:240d::/48\",\r\n \"2603:1026:240e::/48\",\r\n
+ \ \"2603:1026:240f::/48\",\r\n \"2603:1026:2411::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:2500:10::/64\",\r\n \"2603:1026:2500:14::/64\",\r\n
+ \ \"2603:1026:2500:18::/64\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:2500:20::/64\",\r\n \"2603:1026:2500:24::/64\",\r\n
+ \ \"2603:1026:2500:28::/64\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:40::/59\",\r\n \"2603:1026:3000:60::/59\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1026:3000:e0::/59\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1026:3000:120::/59\",\r\n
+ \ \"2603:1026:3000:140::/59\",\r\n \"2603:1026:3000:160::/59\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1026:3000:1a0::/59\",\r\n
+ \ \"2603:1026:3000:1c0::/59\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:40::/59\",\r\n
+ \ \"2603:1027:1:60::/59\",\r\n \"2603:1027:1:80::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2603:1027:1:e0::/59\",\r\n \"2603:1027:1:100::/59\",\r\n
+ \ \"2603:1027:1:120::/59\",\r\n \"2603:1027:1:140::/59\",\r\n
+ \ \"2603:1027:1:160::/59\",\r\n \"2603:1027:1:180::/59\",\r\n
+ \ \"2603:1027:1:1a0::/59\",\r\n \"2603:1027:1:1c0::/59\",\r\n
+ \ \"2603:1027:1:200::/59\",\r\n \"2603:1027:1:220::/59\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n
+ \ \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:17::/64\",\r\n \"2603:1030:9:18::/61\",\r\n
+ \ \"2603:1030:9:20::/59\",\r\n \"2603:1030:9:40::/58\",\r\n
+ \ \"2603:1030:9:80::/59\",\r\n \"2603:1030:9:a0::/60\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b3::/64\",\r\n \"2603:1030:9:b4::/63\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:10d::/64\",\r\n \"2603:1030:9:10e::/63\",\r\n
+ \ \"2603:1030:9:110::/64\",\r\n \"2603:1030:9:111::/64\",\r\n
+ \ \"2603:1030:9:112::/63\",\r\n \"2603:1030:9:114::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:118::/62\",\r\n \"2603:1030:9:11c::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12c::/63\",\r\n \"2603:1030:9:12e::/64\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1030:10::/48\",\r\n \"2603:1030:208::/47\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:20c::/47\",\r\n
+ \ \"2603:1030:20e::/48\",\r\n \"2603:1030:210::/47\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:2::/63\",\r\n \"2603:1030:401:4::/62\",\r\n
+ \ \"2603:1030:401:8::/61\",\r\n \"2603:1030:401:10::/62\",\r\n
+ \ \"2603:1030:401:14::/63\",\r\n \"2603:1030:401:16::/64\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:59::/64\",\r\n \"2603:1030:401:5a::/63\",\r\n
+ \ \"2603:1030:401:5c::/62\",\r\n \"2603:1030:401:60::/59\",\r\n
+ \ \"2603:1030:401:80::/62\",\r\n \"2603:1030:401:84::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:87::/64\",\r\n \"2603:1030:401:88::/62\",\r\n
+ \ \"2603:1030:401:8c::/63\",\r\n \"2603:1030:401:8e::/64\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:92::/63\",\r\n \"2603:1030:401:94::/62\",\r\n
+ \ \"2603:1030:401:98::/61\",\r\n \"2603:1030:401:a0::/62\",\r\n
+ \ \"2603:1030:401:a4::/63\",\r\n \"2603:1030:401:a6::/64\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:121::/64\",\r\n \"2603:1030:401:122::/63\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:136::/63\",\r\n \"2603:1030:401:138::/64\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:13c::/62\",\r\n \"2603:1030:401:140::/63\",\r\n
+ \ \"2603:1030:401:142::/64\",\r\n \"2603:1030:401:143::/64\",\r\n
+ \ \"2603:1030:401:144::/63\",\r\n \"2603:1030:401:146::/63\",\r\n
+ \ \"2603:1030:401:148::/63\",\r\n \"2603:1030:401:14a::/63\",\r\n
+ \ \"2603:1030:401:14c::/62\",\r\n \"2603:1030:401:150::/62\",\r\n
+ \ \"2603:1030:401:154::/63\",\r\n \"2603:1030:401:156::/63\",\r\n
+ \ \"2603:1030:401:158::/64\",\r\n \"2603:1030:401:159::/64\",\r\n
+ \ \"2603:1030:401:15a::/63\",\r\n \"2603:1030:401:15c::/62\",\r\n
+ \ \"2603:1030:401:160::/61\",\r\n \"2603:1030:401:168::/63\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:16d::/64\",\r\n \"2603:1030:401:16e::/63\",\r\n
+ \ \"2603:1030:401:170::/61\",\r\n \"2603:1030:401:178::/62\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:406::/47\",\r\n \"2603:1030:408::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:1::/64\",\r\n \"2603:1030:40a:2::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40c::/48\",\r\n \"2603:1030:40d::/60\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1030:600::/46\",\r\n
+ \ \"2603:1030:604::/47\",\r\n \"2603:1030:607::/48\",\r\n
+ \ \"2603:1030:608::/48\",\r\n \"2603:1030:800::/48\",\r\n
+ \ \"2603:1030:802::/47\",\r\n \"2603:1030:804::/58\",\r\n
+ \ \"2603:1030:804:40::/60\",\r\n \"2603:1030:804:53::/64\",\r\n
+ \ \"2603:1030:804:54::/64\",\r\n \"2603:1030:804:5b::/64\",\r\n
+ \ \"2603:1030:804:5c::/62\",\r\n \"2603:1030:804:60::/62\",\r\n
+ \ \"2603:1030:804:67::/64\",\r\n \"2603:1030:804:68::/61\",\r\n
+ \ \"2603:1030:804:70::/60\",\r\n \"2603:1030:804:80::/59\",\r\n
+ \ \"2603:1030:804:a0::/62\",\r\n \"2603:1030:804:a4::/64\",\r\n
+ \ \"2603:1030:804:a6::/63\",\r\n \"2603:1030:804:a8::/61\",\r\n
+ \ \"2603:1030:804:b0::/62\",\r\n \"2603:1030:804:b4::/64\",\r\n
+ \ \"2603:1030:804:b6::/63\",\r\n \"2603:1030:804:b8::/61\",\r\n
+ \ \"2603:1030:804:c0::/61\",\r\n \"2603:1030:804:c8::/62\",\r\n
+ \ \"2603:1030:804:cc::/63\",\r\n \"2603:1030:804:d2::/63\",\r\n
+ \ \"2603:1030:804:d4::/62\",\r\n \"2603:1030:804:d8::/61\",\r\n
+ \ \"2603:1030:804:e0::/59\",\r\n \"2603:1030:804:100::/61\",\r\n
+ \ \"2603:1030:804:108::/62\",\r\n \"2603:1030:805::/48\",\r\n
+ \ \"2603:1030:806::/48\",\r\n \"2603:1030:807::/48\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1030:b00::/47\",\r\n
+ \ \"2603:1030:b03::/48\",\r\n \"2603:1030:b04::/48\",\r\n
+ \ \"2603:1030:b05::/48\",\r\n \"2603:1030:c00::/48\",\r\n
+ \ \"2603:1030:c02::/47\",\r\n \"2603:1030:c04::/48\",\r\n
+ \ \"2603:1030:c05::/48\",\r\n \"2603:1030:c06::/48\",\r\n
+ \ \"2603:1030:c07::/48\",\r\n \"2603:1030:d00::/48\",\r\n
+ \ \"2603:1030:e01:2::/64\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:903::/64\",\r\n
+ \ \"2603:1036:903:1::/64\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:9ff:ffff::/64\",\r\n
+ \ \"2603:1036:d20::/64\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2400::/48\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2402::/48\",\r\n \"2603:1036:2403::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2408::/48\",\r\n \"2603:1036:2409::/48\",\r\n
+ \ \"2603:1036:240a::/48\",\r\n \"2603:1036:240d::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:2500:4::/64\",\r\n
+ \ \"2603:1036:2500:8::/64\",\r\n \"2603:1036:2500:10::/64\",\r\n
+ \ \"2603:1036:2500:14::/64\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:2500:24::/64\",\r\n
+ \ \"2603:1036:2500:2c::/64\",\r\n \"2603:1036:2500:30::/64\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1036:3000:20::/59\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1036:3000:100::/59\",\r\n
+ \ \"2603:1036:3000:120::/59\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1036:3000:1c0::/59\",\r\n \"2603:1037:1::/59\",\r\n
+ \ \"2603:1037:1:20::/59\",\r\n \"2603:1037:1:40::/59\",\r\n
+ \ \"2603:1037:1:60::/59\",\r\n \"2603:1037:1:80::/59\",\r\n
+ \ \"2603:1037:1:c0::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2603:1037:1:140::/59\",\r\n
+ \ \"2603:1037:1:160::/59\",\r\n \"2603:1037:1:180::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2603:1039:205::/48\",\r\n
+ \ \"2603:1040::/47\",\r\n \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n
+ \ \"2603:1040:5::/48\",\r\n \"2603:1040:200::/46\",\r\n \"2603:1040:204::/48\",\r\n
+ \ \"2603:1040:206::/48\",\r\n \"2603:1040:207::/48\",\r\n
+ \ \"2603:1040:400::/46\",\r\n \"2603:1040:404::/48\",\r\n
+ \ \"2603:1040:406::/48\",\r\n \"2603:1040:407::/48\",\r\n
+ \ \"2603:1040:600::/46\",\r\n \"2603:1040:605::/48\",\r\n
+ \ \"2603:1040:606::/48\",\r\n \"2603:1040:800::/46\",\r\n
+ \ \"2603:1040:805::/48\",\r\n \"2603:1040:806::/48\",\r\n
+ \ \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1040:a00::/46\",\r\n
+ \ \"2603:1040:a05::/48\",\r\n \"2603:1040:a06::/48\",\r\n
+ \ \"2603:1040:b00::/47\",\r\n \"2603:1040:b03::/48\",\r\n
+ \ \"2603:1040:b04::/48\",\r\n \"2603:1040:c00::/46\",\r\n
+ \ \"2603:1040:c05::/48\",\r\n \"2603:1040:c06::/48\",\r\n
+ \ \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1400::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1402::/48\",\r\n \"2603:1046:1403::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1405::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1408::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500::/64\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:1500:8::/64\",\r\n
+ \ \"2603:1046:1500:14::/64\",\r\n \"2603:1046:1500:18::/64\",\r\n
+ \ \"2603:1046:1500:1c::/64\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:20::/59\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1046:2000:60::/59\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1046:2000:c0::/59\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1046:2000:180::/59\",\r\n
+ \ \"2603:1047:1:20::/59\",\r\n \"2603:1047:1:40::/59\",\r\n
+ \ \"2603:1047:1:60::/59\",\r\n \"2603:1047:1:80::/59\",\r\n
+ \ \"2603:1047:1:a0::/59\",\r\n \"2603:1047:1:c0::/59\",\r\n
+ \ \"2603:1047:1:e0::/59\",\r\n \"2603:1047:1:100::/59\",\r\n
+ \ \"2603:1047:1:120::/59\",\r\n \"2603:1047:1:140::/59\",\r\n
+ \ \"2603:1047:1:160::/59\",\r\n \"2603:1047:1:180::/59\",\r\n
+ \ \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n \"2603:1050:5::/48\",\r\n
+ \ \"2603:1050:6::/48\",\r\n \"2603:1050:100::/40\",\r\n \"2603:1050:211::/48\",\r\n
+ \ \"2603:1050:300::/40\",\r\n \"2603:1050:400::/48\",\r\n
+ \ \"2603:1050:402::/48\",\r\n \"2603:1050:403::/48\",\r\n
+ \ \"2603:1056:1400::/48\",\r\n \"2603:1056:1401::/48\",\r\n
+ \ \"2603:1056:1402::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:1500:4::/64\",\r\n
+ \ \"2603:1056:2000:20::/59\",\r\n \"2603:1056:2000:40::/59\",\r\n
+ \ \"2603:1056:2000:60::/59\",\r\n \"2603:1057:2:20::/59\",\r\n
+ \ \"2603:1057:2:40::/59\",\r\n \"2603:1057:2:60::/59\",\r\n
+ \ \"2603:1061:1002::/48\",\r\n \"2a01:111:f100:1000::/62\",\r\n
+ \ \"2a01:111:f100:1004::/63\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f100:3000::/52\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f100:6000::/64\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\",\r\n \"2a01:111:f403:c000::/64\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c100::/64\",\r\n
+ \ \"2a01:111:f403:c10c::/62\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:c804::/62\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d004::/62\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:d804::/62\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f000::/64\",\r\n
+ \ \"2a01:111:f403:f800::/62\",\r\n \"2a01:111:f403:f804::/62\",\r\n
+ \ \"2a01:111:f403:f900::/62\",\r\n \"2a01:111:f403:f904::/62\",\r\n
+ \ \"2a01:111:f403:f908::/62\",\r\n \"2a01:111:f403:f90c::/62\",\r\n
+ \ \"2a01:111:f403:f910::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.australiacentral\",\r\n \"id\":
+ \"AzureCloud.australiacentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.155.128/26\",\r\n \"13.105.27.160/27\",\r\n
+ \ \"20.36.32.0/19\",\r\n \"20.36.104.0/21\",\r\n \"20.37.0.0/18\",\r\n
+ \ \"20.37.224.0/19\",\r\n \"20.38.184.0/22\",\r\n \"20.39.64.0/21\",\r\n
+ \ \"20.47.35.0/24\",\r\n \"20.53.0.0/19\",\r\n \"20.53.48.0/21\",\r\n
+ \ \"20.70.0.0/18\",\r\n \"20.135.52.0/23\",\r\n \"20.150.124.0/24\",\r\n
+ \ \"20.157.0.0/24\",\r\n \"20.190.189.64/26\",\r\n \"40.82.8.0/22\",\r\n
+ \ \"40.82.240.0/22\",\r\n \"40.90.130.48/28\",\r\n \"40.90.142.96/27\",\r\n
+ \ \"40.90.149.64/27\",\r\n \"40.126.61.64/26\",\r\n \"52.108.74.0/24\",\r\n
+ \ \"52.108.95.0/24\",\r\n \"52.109.128.0/22\",\r\n \"52.111.248.0/24\",\r\n
+ \ \"52.143.219.0/24\",\r\n \"52.239.216.0/23\",\r\n \"2603:1010:300::/47\",\r\n
+ \ \"2603:1010:303::/48\",\r\n \"2603:1010:304::/48\",\r\n
+ \ \"2603:1016:1400:20::/59\",\r\n \"2603:1016:2400::/48\",\r\n
+ \ \"2603:1016:2500:4::/64\",\r\n \"2603:1017:0:20::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiacentral2\",\r\n
+ \ \"id\": \"AzureCloud.australiacentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.224/27\",\r\n \"20.36.64.0/19\",\r\n
+ \ \"20.36.112.0/20\",\r\n \"20.39.72.0/21\",\r\n \"20.39.96.0/19\",\r\n
+ \ \"20.47.36.0/24\",\r\n \"20.53.56.0/21\",\r\n \"20.135.54.0/23\",\r\n
+ \ \"20.150.103.0/24\",\r\n \"20.157.1.0/24\",\r\n \"20.190.189.128/26\",\r\n
+ \ \"20.193.96.0/19\",\r\n \"40.82.244.0/22\",\r\n \"40.90.31.96/27\",\r\n
+ \ \"40.90.130.32/28\",\r\n \"40.90.142.64/27\",\r\n \"40.90.149.32/27\",\r\n
+ \ \"40.126.61.128/26\",\r\n \"40.126.128.0/18\",\r\n \"52.108.180.0/24\",\r\n
+ \ \"52.108.201.0/24\",\r\n \"52.109.100.0/23\",\r\n \"52.111.249.0/24\",\r\n
+ \ \"52.143.218.0/24\",\r\n \"52.239.218.0/23\",\r\n \"2603:1010:400::/47\",\r\n
+ \ \"2603:1010:403::/48\",\r\n \"2603:1010:404::/48\",\r\n
+ \ \"2603:1016:1400:40::/59\",\r\n \"2603:1016:2401::/48\",\r\n
+ \ \"2603:1016:2500:8::/64\",\r\n \"2603:1017:0:40::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.australiaeast\",\r\n
+ \ \"id\": \"AzureCloud.australiaeast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.64.0/18\",\r\n \"13.72.224.0/19\",\r\n \"13.73.192.0/20\",\r\n
+ \ \"13.75.128.0/17\",\r\n \"13.104.211.128/26\",\r\n \"13.105.16.192/26\",\r\n
+ \ \"13.105.20.128/26\",\r\n \"13.105.52.192/26\",\r\n \"13.105.53.128/26\",\r\n
+ \ \"20.37.192.0/19\",\r\n \"20.38.112.0/23\",\r\n \"20.40.64.0/20\",\r\n
+ \ \"20.40.80.0/21\",\r\n \"20.40.120.0/21\",\r\n \"20.40.176.0/20\",\r\n
+ \ \"20.42.192.0/19\",\r\n \"20.43.96.0/20\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.47.122.0/23\",\r\n \"20.53.32.0/28\",\r\n \"20.53.40.0/21\",\r\n
+ \ \"20.53.64.0/18\",\r\n \"20.53.128.0/17\",\r\n \"20.58.128.0/18\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.70.128.0/17\",\r\n
+ \ \"20.135.120.0/21\",\r\n \"20.150.66.0/24\",\r\n \"20.150.92.0/24\",\r\n
+ \ \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n \"20.188.128.0/17\",\r\n
+ \ \"20.190.142.0/25\",\r\n \"20.190.167.0/24\",\r\n \"20.191.192.0/18\",\r\n
+ \ \"20.193.0.0/18\",\r\n \"20.193.64.0/19\",\r\n \"23.101.208.0/20\",\r\n
+ \ \"40.79.160.0/20\",\r\n \"40.79.211.0/24\",\r\n \"40.82.32.0/22\",\r\n
+ \ \"40.82.192.0/19\",\r\n \"40.87.208.0/22\",\r\n \"40.90.18.0/28\",\r\n
+ \ \"40.90.30.0/25\",\r\n \"40.90.130.80/28\",\r\n \"40.90.130.208/28\",\r\n
+ \ \"40.90.140.32/27\",\r\n \"40.90.142.160/27\",\r\n \"40.90.147.64/27\",\r\n
+ \ \"40.90.150.0/27\",\r\n \"40.112.37.128/26\",\r\n \"40.126.14.0/25\",\r\n
+ \ \"40.126.39.0/24\",\r\n \"40.126.224.0/19\",\r\n \"52.108.40.0/23\",\r\n
+ \ \"52.108.83.0/24\",\r\n \"52.109.112.0/22\",\r\n \"52.111.224.0/24\",\r\n
+ \ \"52.113.88.0/22\",\r\n \"52.113.103.0/24\",\r\n \"52.114.16.0/22\",\r\n
+ \ \"52.114.58.0/23\",\r\n \"52.114.192.0/23\",\r\n \"52.115.98.0/24\",\r\n
+ \ \"52.120.158.0/23\",\r\n \"52.121.108.0/22\",\r\n \"52.143.199.0/24\",\r\n
+ \ \"52.143.200.0/23\",\r\n \"52.147.0.0/19\",\r\n \"52.156.160.0/19\",\r\n
+ \ \"52.187.192.0/18\",\r\n \"52.232.136.0/21\",\r\n \"52.232.154.0/24\",\r\n
+ \ \"52.237.192.0/18\",\r\n \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n
+ \ \"52.245.16.0/22\",\r\n \"104.44.90.64/26\",\r\n \"104.44.93.96/27\",\r\n
+ \ \"104.44.95.48/28\",\r\n \"104.46.29.0/24\",\r\n \"104.46.30.0/23\",\r\n
+ \ \"104.209.80.0/20\",\r\n \"104.210.64.0/18\",\r\n \"191.238.66.0/23\",\r\n
+ \ \"191.239.64.0/19\",\r\n \"2603:1010::/46\",\r\n \"2603:1010:5::/48\",\r\n
+ \ \"2603:1010:6::/48\",\r\n \"2603:1016:1400:60::/59\",\r\n
+ \ \"2603:1016:2402::/48\",\r\n \"2603:1016:2500:c::/64\",\r\n
+ \ \"2603:1017:0:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.australiasoutheast\",\r\n \"id\": \"AzureCloud.australiasoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.70.128.0/18\",\r\n
+ \ \"13.73.96.0/19\",\r\n \"13.77.0.0/18\",\r\n \"20.40.160.0/20\",\r\n
+ \ \"20.42.224.0/19\",\r\n \"20.45.144.0/20\",\r\n \"20.46.96.0/20\",\r\n
+ \ \"20.47.38.0/24\",\r\n \"20.47.74.0/23\",\r\n \"20.58.192.0/18\",\r\n
+ \ \"20.60.32.0/23\",\r\n \"20.70.64.0/18\",\r\n \"20.92.0.0/18\",\r\n
+ \ \"20.135.50.0/23\",\r\n \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n
+ \ \"20.157.45.0/24\",\r\n \"20.190.96.0/19\",\r\n \"20.190.142.128/25\",\r\n
+ \ \"20.190.168.0/24\",\r\n \"23.101.224.0/19\",\r\n \"40.79.212.0/24\",\r\n
+ \ \"40.81.48.0/20\",\r\n \"40.87.212.0/22\",\r\n \"40.90.24.0/25\",\r\n
+ \ \"40.90.27.0/26\",\r\n \"40.90.138.128/27\",\r\n \"40.90.155.64/26\",\r\n
+ \ \"40.112.37.192/26\",\r\n \"40.115.64.0/19\",\r\n \"40.126.14.128/25\",\r\n
+ \ \"40.126.40.0/24\",\r\n \"40.127.64.0/19\",\r\n \"52.108.194.0/24\",\r\n
+ \ \"52.108.234.0/23\",\r\n \"52.109.116.0/22\",\r\n \"52.111.250.0/24\",\r\n
+ \ \"52.113.13.0/24\",\r\n \"52.113.76.0/23\",\r\n \"52.114.20.0/22\",\r\n
+ \ \"52.114.60.0/23\",\r\n \"52.115.99.0/24\",\r\n \"52.121.106.0/23\",\r\n
+ \ \"52.136.25.0/24\",\r\n \"52.147.32.0/19\",\r\n \"52.158.128.0/19\",\r\n
+ \ \"52.189.192.0/18\",\r\n \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n
+ \ \"52.243.64.0/18\",\r\n \"52.245.20.0/22\",\r\n \"52.255.32.0/19\",\r\n
+ \ \"104.44.90.32/27\",\r\n \"104.44.93.128/27\",\r\n \"104.44.95.64/28\",\r\n
+ \ \"104.46.28.0/24\",\r\n \"104.46.160.0/19\",\r\n \"104.209.64.0/20\",\r\n
+ \ \"191.239.160.0/19\",\r\n \"191.239.192.0/22\",\r\n \"2603:1010:100::/40\",\r\n
+ \ \"2603:1010:200::/47\",\r\n \"2603:1010:202::/48\",\r\n
+ \ \"2603:1010:204::/48\",\r\n \"2603:1010:205::/48\",\r\n
+ \ \"2603:1016:1400::/59\",\r\n \"2603:1016:2403::/48\",\r\n
+ \ \"2603:1016:2500::/64\",\r\n \"2603:1017::/59\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilse\",\r\n
+ \ \"id\": \"AzureCloud.brazilse\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"brazilse\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.27.128/27\",\r\n \"13.105.36.48/28\",\r\n
+ \ \"13.105.36.96/27\",\r\n \"13.105.52.0/27\",\r\n \"20.40.32.0/21\",\r\n
+ \ \"20.135.76.0/23\",\r\n \"20.150.73.0/24\",\r\n \"20.150.80.0/24\",\r\n
+ \ \"20.150.123.0/24\",\r\n \"20.157.42.0/24\",\r\n \"20.195.128.0/22\",\r\n
+ \ \"20.195.144.0/21\",\r\n \"23.97.112.192/27\",\r\n \"23.97.116.0/22\",\r\n
+ \ \"23.97.120.0/21\",\r\n \"40.79.204.192/26\",\r\n \"40.123.128.0/22\",\r\n
+ \ \"40.126.207.0/24\",\r\n \"52.108.111.0/24\",\r\n \"52.108.112.0/24\",\r\n
+ \ \"52.109.164.0/24\",\r\n \"52.111.207.0/24\",\r\n \"52.112.206.0/24\",\r\n
+ \ \"52.253.197.0/24\",\r\n \"191.232.16.0/21\",\r\n \"191.233.8.0/21\",\r\n
+ \ \"191.233.48.0/21\",\r\n \"191.233.160.0/19\",\r\n \"191.234.224.0/19\",\r\n
+ \ \"191.237.224.0/21\",\r\n \"2603:1050:400::/48\",\r\n \"2603:1050:402::/48\",\r\n
+ \ \"2603:1050:403::/48\",\r\n \"2603:1056:1403::/48\",\r\n
+ \ \"2603:1056:1500:4::/64\",\r\n \"2603:1056:2000:60::/59\",\r\n
+ \ \"2603:1057:2:60::/59\",\r\n \"2603:1061:1002::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.brazilsouth\",\r\n
+ \ \"id\": \"AzureCloud.brazilsouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.52.80/28\",\r\n \"13.105.52.128/26\",\r\n
+ \ \"20.40.16.0/21\",\r\n \"20.40.112.0/21\",\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.47.86.0/24\",\r\n \"20.60.36.0/23\",\r\n \"20.135.128.0/22\",\r\n
+ \ \"20.135.132.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"20.190.145.0/25\",\r\n \"20.190.173.0/24\",\r\n \"20.195.136.0/21\",\r\n
+ \ \"20.195.152.0/21\",\r\n \"20.195.160.0/19\",\r\n \"20.195.192.0/18\",\r\n
+ \ \"20.197.128.0/17\",\r\n \"20.201.0.0/18\",\r\n \"23.97.96.0/20\",\r\n
+ \ \"23.97.112.0/25\",\r\n \"23.97.112.128/28\",\r\n \"23.97.112.160/27\",\r\n
+ \ \"40.90.29.64/26\",\r\n \"40.90.29.128/26\",\r\n \"40.90.133.32/27\",\r\n
+ \ \"40.90.133.144/28\",\r\n \"40.90.141.64/27\",\r\n \"40.90.144.224/27\",\r\n
+ \ \"40.90.145.96/27\",\r\n \"40.90.145.128/27\",\r\n \"40.90.157.0/27\",\r\n
+ \ \"40.126.17.0/25\",\r\n \"40.126.45.0/24\",\r\n \"52.108.36.0/22\",\r\n
+ \ \"52.108.82.0/24\",\r\n \"52.108.171.0/24\",\r\n \"52.108.172.0/23\",\r\n
+ \ \"52.109.108.0/22\",\r\n \"52.111.225.0/24\",\r\n \"52.112.118.0/24\",\r\n
+ \ \"52.113.132.0/24\",\r\n \"52.114.194.0/23\",\r\n \"52.114.196.0/22\",\r\n
+ \ \"52.114.200.0/22\",\r\n \"52.121.40.0/21\",\r\n \"52.253.185.0/24\",\r\n
+ \ \"52.253.186.0/24\",\r\n \"104.41.0.0/18\",\r\n \"191.232.32.0/19\",\r\n
+ \ \"191.232.160.0/19\",\r\n \"191.232.192.0/18\",\r\n \"191.233.0.0/21\",\r\n
+ \ \"191.233.16.0/20\",\r\n \"191.233.128.0/20\",\r\n \"191.233.192.0/18\",\r\n
+ \ \"191.234.128.0/18\",\r\n \"191.234.192.0/19\",\r\n \"191.235.32.0/19\",\r\n
+ \ \"191.235.64.0/18\",\r\n \"191.235.196.0/22\",\r\n \"191.235.200.0/21\",\r\n
+ \ \"191.235.224.0/20\",\r\n \"191.235.240.0/21\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\",\r\n \"191.237.195.0/24\",\r\n \"191.237.200.0/21\",\r\n
+ \ \"191.237.248.0/21\",\r\n \"191.238.72.0/21\",\r\n \"191.238.128.0/21\",\r\n
+ \ \"191.238.192.0/19\",\r\n \"191.239.112.0/20\",\r\n \"191.239.204.0/22\",\r\n
+ \ \"191.239.240.0/20\",\r\n \"2603:1050:1::/48\",\r\n \"2603:1050:2::/47\",\r\n
+ \ \"2603:1050:5::/48\",\r\n \"2603:1050:6::/48\",\r\n \"2603:1056:1400::/48\",\r\n
+ \ \"2603:1056:1500::/64\",\r\n \"2603:1056:2000:20::/59\",\r\n
+ \ \"2603:1057:2:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadacentral\",\r\n \"id\": \"AzureCloud.canadacentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.160.0/19\",\r\n
+ \ \"13.88.224.0/19\",\r\n \"13.104.151.192/26\",\r\n \"13.104.152.0/25\",\r\n
+ \ \"13.104.208.176/28\",\r\n \"13.104.212.192/26\",\r\n \"13.104.223.192/26\",\r\n
+ \ \"20.38.114.0/25\",\r\n \"20.38.144.0/21\",\r\n \"20.39.128.0/20\",\r\n
+ \ \"20.43.0.0/19\",\r\n \"20.47.40.0/24\",\r\n \"20.47.87.0/24\",\r\n
+ \ \"20.48.128.0/18\",\r\n \"20.48.192.0/21\",\r\n \"20.48.224.0/19\",\r\n
+ \ \"20.60.42.0/23\",\r\n \"20.63.0.0/17\",\r\n \"20.135.182.0/23\",\r\n
+ \ \"20.135.184.0/22\",\r\n \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n
+ \ \"20.150.71.0/24\",\r\n \"20.150.100.0/24\",\r\n \"20.151.0.0/17\",\r\n
+ \ \"20.151.128.0/18\",\r\n \"20.157.52.0/24\",\r\n \"20.190.139.0/25\",\r\n
+ \ \"20.190.161.0/24\",\r\n \"20.200.64.0/18\",\r\n \"40.79.216.0/24\",\r\n
+ \ \"40.80.44.0/22\",\r\n \"40.82.160.0/19\",\r\n \"40.85.192.0/18\",\r\n
+ \ \"40.90.17.144/28\",\r\n \"40.90.128.0/28\",\r\n \"40.90.138.32/27\",\r\n
+ \ \"40.90.143.160/27\",\r\n \"40.90.151.96/27\",\r\n \"40.126.11.0/25\",\r\n
+ \ \"40.126.33.0/24\",\r\n \"52.108.42.0/23\",\r\n \"52.108.84.0/24\",\r\n
+ \ \"52.109.92.0/22\",\r\n \"52.111.251.0/24\",\r\n \"52.114.160.0/22\",\r\n
+ \ \"52.136.23.0/24\",\r\n \"52.136.27.0/24\",\r\n \"52.138.0.0/18\",\r\n
+ \ \"52.139.0.0/18\",\r\n \"52.156.0.0/19\",\r\n \"52.228.0.0/17\",\r\n
+ \ \"52.233.0.0/18\",\r\n \"52.237.0.0/18\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\",\r\n \"52.245.28.0/22\",\r\n \"52.246.152.0/21\",\r\n
+ \ \"52.253.196.0/24\",\r\n \"104.44.93.32/27\",\r\n \"104.44.95.16/28\",\r\n
+ \ \"2603:1030:208::/47\",\r\n \"2603:1030:f00::/47\",\r\n
+ \ \"2603:1030:f02::/48\",\r\n \"2603:1030:f04::/48\",\r\n
+ \ \"2603:1030:f05::/48\",\r\n \"2603:1030:f06::/48\",\r\n
+ \ \"2603:1030:f07::/56\",\r\n \"2603:1036:2401::/48\",\r\n
+ \ \"2603:1036:2500:30::/64\",\r\n \"2603:1036:3000:40::/59\",\r\n
+ \ \"2603:1037:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.canadaeast\",\r\n \"id\": \"AzureCloud.canadaeast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.154.128/25\",\r\n
+ \ \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.47.88.0/24\",\r\n
+ \ \"20.60.142.0/23\",\r\n \"20.135.66.0/23\",\r\n \"20.150.1.0/25\",\r\n
+ \ \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n \"20.190.139.128/25\",\r\n
+ \ \"20.190.162.0/24\",\r\n \"20.200.0.0/18\",\r\n \"40.69.96.0/19\",\r\n
+ \ \"40.79.217.0/24\",\r\n \"40.80.40.0/22\",\r\n \"40.80.240.0/20\",\r\n
+ \ \"40.86.192.0/18\",\r\n \"40.89.0.0/19\",\r\n \"40.90.17.128/28\",\r\n
+ \ \"40.90.138.64/27\",\r\n \"40.90.156.96/27\",\r\n \"40.126.11.128/25\",\r\n
+ \ \"40.126.34.0/24\",\r\n \"52.108.193.0/24\",\r\n \"52.108.232.0/23\",\r\n
+ \ \"52.109.96.0/22\",\r\n \"52.111.226.0/24\",\r\n \"52.114.164.0/22\",\r\n
+ \ \"52.136.22.0/24\",\r\n \"52.139.64.0/18\",\r\n \"52.155.0.0/19\",\r\n
+ \ \"52.229.64.0/18\",\r\n \"52.232.128.0/21\",\r\n \"52.235.0.0/18\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\",\r\n \"52.242.0.0/18\",\r\n
+ \ \"52.245.32.0/22\",\r\n \"104.44.93.64/27\",\r\n \"104.44.95.32/28\",\r\n
+ \ \"2603:1030:20a::/47\",\r\n \"2603:1030:1000::/47\",\r\n
+ \ \"2603:1030:1002::/48\",\r\n \"2603:1030:1004::/48\",\r\n
+ \ \"2603:1030:1005::/48\",\r\n \"2603:1036:2402::/48\",\r\n
+ \ \"2603:1036:2500:34::/64\",\r\n \"2603:1036:3000:80::/59\",\r\n
+ \ \"2603:1037:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralfrance\",\r\n \"id\": \"AzureCloud.centralfrance\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.156.0/24\",\r\n
+ \ \"20.38.196.0/22\",\r\n \"20.39.232.0/21\",\r\n \"20.39.240.0/20\",\r\n
+ \ \"20.40.128.0/19\",\r\n \"20.43.32.0/19\",\r\n \"20.47.44.0/24\",\r\n
+ \ \"20.47.80.0/23\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.74.0.0/17\",\r\n \"20.135.146.0/23\",\r\n \"20.135.148.0/22\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"20.188.32.0/19\",\r\n \"20.190.147.0/25\",\r\n
+ \ \"20.190.177.0/24\",\r\n \"20.199.0.0/17\",\r\n \"40.66.32.0/19\",\r\n
+ \ \"40.79.128.0/20\",\r\n \"40.79.144.0/21\",\r\n \"40.79.205.0/26\",\r\n
+ \ \"40.79.222.0/24\",\r\n \"40.80.24.0/22\",\r\n \"40.89.128.0/18\",\r\n
+ \ \"40.90.130.240/28\",\r\n \"40.90.132.0/27\",\r\n \"40.90.136.64/26\",\r\n
+ \ \"40.90.136.128/27\",\r\n \"40.90.147.128/26\",\r\n \"40.90.147.192/27\",\r\n
+ \ \"40.126.19.0/25\",\r\n \"40.126.49.0/24\",\r\n \"51.11.192.0/18\",\r\n
+ \ \"51.103.0.0/17\",\r\n \"51.138.192.0/19\",\r\n \"52.108.52.0/23\",\r\n
+ \ \"52.108.89.0/24\",\r\n \"52.108.168.0/23\",\r\n \"52.108.170.0/24\",\r\n
+ \ \"52.109.68.0/22\",\r\n \"52.111.231.0/24\",\r\n \"52.112.172.0/22\",\r\n
+ \ \"52.112.190.0/24\",\r\n \"52.112.213.0/24\",\r\n \"52.112.214.0/23\",\r\n
+ \ \"52.114.104.0/22\",\r\n \"52.115.128.0/21\",\r\n \"52.115.136.0/22\",\r\n
+ \ \"52.121.88.0/21\",\r\n \"52.121.96.0/22\",\r\n \"52.143.128.0/18\",\r\n
+ \ \"52.143.215.0/24\",\r\n \"52.143.216.0/23\",\r\n \"52.239.134.0/24\",\r\n
+ \ \"52.239.194.0/24\",\r\n \"52.239.241.0/24\",\r\n \"52.245.116.0/22\",\r\n
+ \ \"2603:1020:800::/47\",\r\n \"2603:1020:802::/48\",\r\n
+ \ \"2603:1020:804::/48\",\r\n \"2603:1020:805::/48\",\r\n
+ \ \"2603:1026:2400::/48\",\r\n \"2603:1026:2500:1c::/64\",\r\n
+ \ \"2603:1026:3000:100::/59\",\r\n \"2603:1027:1:100::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.centralindia\",\r\n
+ \ \"id\": \"AzureCloud.centralindia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.0.0/18\",\r\n \"13.104.148.128/25\",\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.40.40.0/21\",\r\n \"20.40.48.0/20\",\r\n \"20.43.120.0/21\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.47.89.0/24\",\r\n \"20.135.90.0/23\",\r\n
+ \ \"20.135.92.0/22\",\r\n \"20.150.114.0/24\",\r\n \"20.190.146.0/25\",\r\n
+ \ \"20.190.175.0/24\",\r\n \"20.192.0.0/19\",\r\n \"20.192.40.0/21\",\r\n
+ \ \"20.192.96.0/21\",\r\n \"20.193.128.0/19\",\r\n \"20.193.224.0/19\",\r\n
+ \ \"20.197.0.0/18\",\r\n \"20.198.0.0/17\",\r\n \"40.79.207.32/27\",\r\n
+ \ \"40.79.207.64/28\",\r\n \"40.79.207.96/27\",\r\n \"40.79.214.0/24\",\r\n
+ \ \"40.80.48.0/21\",\r\n \"40.80.64.0/19\",\r\n \"40.81.224.0/19\",\r\n
+ \ \"40.87.224.0/22\",\r\n \"40.90.137.128/27\",\r\n \"40.112.39.0/25\",\r\n
+ \ \"40.112.39.128/26\",\r\n \"40.126.18.0/25\",\r\n \"40.126.47.0/24\",\r\n
+ \ \"52.108.44.0/23\",\r\n \"52.108.85.0/24\",\r\n \"52.109.56.0/22\",\r\n
+ \ \"52.111.252.0/24\",\r\n \"52.113.10.0/23\",\r\n \"52.113.70.0/23\",\r\n
+ \ \"52.113.92.0/22\",\r\n \"52.113.193.0/24\",\r\n \"52.114.40.0/22\",\r\n
+ \ \"52.121.122.0/23\",\r\n \"52.121.124.0/22\",\r\n \"52.136.24.0/24\",\r\n
+ \ \"52.140.64.0/18\",\r\n \"52.159.64.0/19\",\r\n \"52.172.128.0/17\",\r\n
+ \ \"52.239.135.64/26\",\r\n \"52.239.202.0/24\",\r\n \"52.245.96.0/22\",\r\n
+ \ \"52.253.181.0/24\",\r\n \"52.253.191.0/24\",\r\n \"104.44.92.128/27\",\r\n
+ \ \"104.44.94.192/28\",\r\n \"104.47.210.0/23\",\r\n \"104.211.64.0/18\",\r\n
+ \ \"2603:1040:a00::/46\",\r\n \"2603:1040:a05::/48\",\r\n
+ \ \"2603:1040:a06::/48\",\r\n \"2603:1046:1400::/48\",\r\n
+ \ \"2603:1046:1500:8::/64\",\r\n \"2603:1046:2000:80::/59\",\r\n
+ \ \"2603:1047:1:80::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.centralus\",\r\n \"id\": \"AzureCloud.centralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.128.0/20\",\r\n
+ \ \"13.67.144.0/21\",\r\n \"13.67.152.0/24\",\r\n \"13.67.153.0/28\",\r\n
+ \ \"13.67.153.32/27\",\r\n \"13.67.153.64/26\",\r\n \"13.67.153.128/25\",\r\n
+ \ \"13.67.155.0/24\",\r\n \"13.67.156.0/22\",\r\n \"13.67.160.0/19\",\r\n
+ \ \"13.67.192.0/18\",\r\n \"13.86.0.0/17\",\r\n \"13.89.0.0/16\",\r\n
+ \ \"13.104.147.128/25\",\r\n \"13.104.219.128/25\",\r\n \"13.105.17.192/26\",\r\n
+ \ \"13.105.24.0/24\",\r\n \"13.105.37.0/26\",\r\n \"13.105.53.192/26\",\r\n
+ \ \"20.37.128.0/18\",\r\n \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n
+ \ \"20.40.192.0/18\",\r\n \"20.44.8.0/21\",\r\n \"20.46.224.0/19\",\r\n
+ \ \"20.47.58.0/23\",\r\n \"20.47.78.0/23\",\r\n \"20.60.18.0/24\",\r\n
+ \ \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n \"20.60.194.0/23\",\r\n
+ \ \"20.80.64.0/18\",\r\n \"20.83.0.0/18\",\r\n \"20.84.128.0/17\",\r\n
+ \ \"20.135.0.0/22\",\r\n \"20.135.188.0/22\",\r\n \"20.135.192.0/23\",\r\n
+ \ \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n \"20.150.63.0/24\",\r\n
+ \ \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n \"20.150.95.0/24\",\r\n
+ \ \"20.157.34.0/23\",\r\n \"20.184.64.0/18\",\r\n \"20.186.192.0/18\",\r\n
+ \ \"20.190.134.0/24\",\r\n \"20.190.155.0/24\",\r\n \"23.99.128.0/17\",\r\n
+ \ \"23.100.80.0/21\",\r\n \"23.100.240.0/20\",\r\n \"23.101.112.0/20\",\r\n
+ \ \"23.102.202.0/24\",\r\n \"40.67.160.0/19\",\r\n \"40.69.128.0/18\",\r\n
+ \ \"40.77.0.0/17\",\r\n \"40.77.130.128/26\",\r\n \"40.77.137.0/25\",\r\n
+ \ \"40.77.138.0/25\",\r\n \"40.77.161.64/26\",\r\n \"40.77.166.192/26\",\r\n
+ \ \"40.77.171.0/24\",\r\n \"40.77.175.192/27\",\r\n \"40.77.175.240/28\",\r\n
+ \ \"40.77.182.16/28\",\r\n \"40.77.182.192/26\",\r\n \"40.77.184.128/25\",\r\n
+ \ \"40.77.197.0/24\",\r\n \"40.77.255.128/26\",\r\n \"40.78.128.0/18\",\r\n
+ \ \"40.78.221.0/24\",\r\n \"40.82.16.0/22\",\r\n \"40.82.96.0/22\",\r\n
+ \ \"40.83.0.0/20\",\r\n \"40.83.16.0/21\",\r\n \"40.83.24.0/26\",\r\n
+ \ \"40.83.24.64/27\",\r\n \"40.83.24.128/25\",\r\n \"40.83.25.0/24\",\r\n
+ \ \"40.83.26.0/23\",\r\n \"40.83.28.0/22\",\r\n \"40.83.32.0/19\",\r\n
+ \ \"40.86.0.0/17\",\r\n \"40.87.180.0/30\",\r\n \"40.87.180.4/31\",\r\n
+ \ \"40.87.180.14/31\",\r\n \"40.87.180.16/30\",\r\n \"40.87.180.20/31\",\r\n
+ \ \"40.87.180.28/30\",\r\n \"40.87.180.32/29\",\r\n \"40.87.180.42/31\",\r\n
+ \ \"40.87.180.44/30\",\r\n \"40.87.180.48/28\",\r\n \"40.87.180.64/30\",\r\n
+ \ \"40.87.180.74/31\",\r\n \"40.87.180.76/30\",\r\n \"40.87.182.4/30\",\r\n
+ \ \"40.87.182.8/29\",\r\n \"40.87.182.24/29\",\r\n \"40.87.182.32/28\",\r\n
+ \ \"40.87.182.48/29\",\r\n \"40.87.182.56/30\",\r\n \"40.87.182.62/31\",\r\n
+ \ \"40.87.182.64/26\",\r\n \"40.87.182.128/25\",\r\n \"40.87.183.0/28\",\r\n
+ \ \"40.87.183.16/29\",\r\n \"40.87.183.24/30\",\r\n \"40.87.183.34/31\",\r\n
+ \ \"40.87.183.36/30\",\r\n \"40.87.183.42/31\",\r\n \"40.87.183.44/30\",\r\n
+ \ \"40.87.183.54/31\",\r\n \"40.87.183.56/29\",\r\n \"40.87.183.64/26\",\r\n
+ \ \"40.87.183.144/28\",\r\n \"40.87.183.160/27\",\r\n \"40.87.183.192/27\",\r\n
+ \ \"40.87.183.224/29\",\r\n \"40.87.183.232/30\",\r\n \"40.87.183.236/31\",\r\n
+ \ \"40.87.183.244/30\",\r\n \"40.87.183.248/29\",\r\n \"40.89.224.0/19\",\r\n
+ \ \"40.90.16.0/27\",\r\n \"40.90.21.128/25\",\r\n \"40.90.22.0/25\",\r\n
+ \ \"40.90.26.128/25\",\r\n \"40.90.129.224/27\",\r\n \"40.90.130.64/28\",\r\n
+ \ \"40.90.130.192/28\",\r\n \"40.90.132.192/26\",\r\n \"40.90.137.224/27\",\r\n
+ \ \"40.90.140.96/27\",\r\n \"40.90.140.224/27\",\r\n \"40.90.141.0/27\",\r\n
+ \ \"40.90.142.128/27\",\r\n \"40.90.142.240/28\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.144.128/26\",\r\n \"40.90.148.176/28\",\r\n \"40.90.149.96/27\",\r\n
+ \ \"40.90.151.144/28\",\r\n \"40.90.154.64/26\",\r\n \"40.90.156.192/26\",\r\n
+ \ \"40.90.158.64/26\",\r\n \"40.93.8.0/24\",\r\n \"40.113.192.0/18\",\r\n
+ \ \"40.122.16.0/20\",\r\n \"40.122.32.0/19\",\r\n \"40.122.64.0/18\",\r\n
+ \ \"40.122.128.0/17\",\r\n \"40.126.6.0/24\",\r\n \"40.126.27.0/24\",\r\n
+ \ \"52.101.8.0/24\",\r\n \"52.101.32.0/22\",\r\n \"52.102.130.0/24\",\r\n
+ \ \"52.103.4.0/24\",\r\n \"52.103.130.0/24\",\r\n \"52.108.165.0/24\",\r\n
+ \ \"52.108.166.0/23\",\r\n \"52.108.185.0/24\",\r\n \"52.108.208.0/21\",\r\n
+ \ \"52.109.8.0/22\",\r\n \"52.111.227.0/24\",\r\n \"52.112.113.0/24\",\r\n
+ \ \"52.113.129.0/24\",\r\n \"52.114.128.0/22\",\r\n \"52.115.76.0/22\",\r\n
+ \ \"52.115.80.0/22\",\r\n \"52.115.88.0/22\",\r\n \"52.123.2.0/24\",\r\n
+ \ \"52.125.128.0/22\",\r\n \"52.136.30.0/24\",\r\n \"52.141.192.0/19\",\r\n
+ \ \"52.141.240.0/20\",\r\n \"52.143.193.0/24\",\r\n \"52.143.224.0/19\",\r\n
+ \ \"52.154.0.0/18\",\r\n \"52.154.128.0/17\",\r\n \"52.158.160.0/20\",\r\n
+ \ \"52.158.192.0/19\",\r\n \"52.165.0.0/19\",\r\n \"52.165.32.0/20\",\r\n
+ \ \"52.165.48.0/28\",\r\n \"52.165.49.0/24\",\r\n \"52.165.56.0/21\",\r\n
+ \ \"52.165.64.0/19\",\r\n \"52.165.96.0/21\",\r\n \"52.165.104.0/25\",\r\n
+ \ \"52.165.128.0/17\",\r\n \"52.173.0.0/16\",\r\n \"52.176.0.0/17\",\r\n
+ \ \"52.176.128.0/19\",\r\n \"52.176.160.0/21\",\r\n \"52.176.176.0/20\",\r\n
+ \ \"52.176.192.0/19\",\r\n \"52.176.224.0/24\",\r\n \"52.180.128.0/19\",\r\n
+ \ \"52.180.184.0/27\",\r\n \"52.180.184.32/28\",\r\n \"52.180.185.0/24\",\r\n
+ \ \"52.182.128.0/17\",\r\n \"52.185.0.0/19\",\r\n \"52.185.32.0/20\",\r\n
+ \ \"52.185.48.0/21\",\r\n \"52.185.56.0/26\",\r\n \"52.185.56.64/27\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.128/27\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.64.0/19\",\r\n \"52.185.96.0/20\",\r\n \"52.185.112.0/26\",\r\n
+ \ \"52.185.112.96/27\",\r\n \"52.185.120.0/21\",\r\n \"52.189.0.0/17\",\r\n
+ \ \"52.228.128.0/17\",\r\n \"52.230.128.0/17\",\r\n \"52.232.157.0/24\",\r\n
+ \ \"52.238.192.0/18\",\r\n \"52.239.150.0/23\",\r\n \"52.239.177.32/27\",\r\n
+ \ \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n \"52.239.195.0/24\",\r\n
+ \ \"52.239.234.0/23\",\r\n \"52.242.128.0/17\",\r\n \"52.245.68.0/24\",\r\n
+ \ \"52.245.69.32/27\",\r\n \"52.245.69.64/27\",\r\n \"52.245.69.96/28\",\r\n
+ \ \"52.245.69.144/28\",\r\n \"52.245.69.160/27\",\r\n \"52.245.69.192/26\",\r\n
+ \ \"52.245.70.0/23\",\r\n \"52.255.0.0/19\",\r\n \"65.55.144.0/23\",\r\n
+ \ \"65.55.146.0/24\",\r\n \"104.43.128.0/17\",\r\n \"104.44.88.160/27\",\r\n
+ \ \"104.44.91.160/27\",\r\n \"104.44.92.224/27\",\r\n \"104.44.94.80/28\",\r\n
+ \ \"104.208.0.0/19\",\r\n \"104.208.32.0/20\",\r\n \"131.253.36.224/27\",\r\n
+ \ \"157.55.108.0/23\",\r\n \"168.61.128.0/25\",\r\n \"168.61.128.128/28\",\r\n
+ \ \"168.61.128.160/27\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.129.128/26\",\r\n \"168.61.129.208/28\",\r\n \"168.61.129.224/27\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n \"168.61.144.0/20\",\r\n
+ \ \"168.61.160.0/19\",\r\n \"168.61.208.0/20\",\r\n \"193.149.72.0/21\",\r\n
+ \ \"2603:1030::/45\",\r\n \"2603:1030:9:2::/63\",\r\n \"2603:1030:9:4::/62\",\r\n
+ \ \"2603:1030:9:8::/61\",\r\n \"2603:1030:9:10::/62\",\r\n
+ \ \"2603:1030:9:14::/63\",\r\n \"2603:1030:9:17::/64\",\r\n
+ \ \"2603:1030:9:18::/61\",\r\n \"2603:1030:9:20::/59\",\r\n
+ \ \"2603:1030:9:40::/58\",\r\n \"2603:1030:9:80::/59\",\r\n
+ \ \"2603:1030:9:a0::/60\",\r\n \"2603:1030:9:b3::/64\",\r\n
+ \ \"2603:1030:9:b4::/63\",\r\n \"2603:1030:9:b7::/64\",\r\n
+ \ \"2603:1030:9:b8::/63\",\r\n \"2603:1030:9:bd::/64\",\r\n
+ \ \"2603:1030:9:be::/63\",\r\n \"2603:1030:9:c0::/58\",\r\n
+ \ \"2603:1030:9:100::/64\",\r\n \"2603:1030:9:104::/62\",\r\n
+ \ \"2603:1030:9:108::/62\",\r\n \"2603:1030:9:10c::/64\",\r\n
+ \ \"2603:1030:9:111::/64\",\r\n \"2603:1030:9:112::/63\",\r\n
+ \ \"2603:1030:9:114::/64\",\r\n \"2603:1030:9:118::/62\",\r\n
+ \ \"2603:1030:9:11c::/63\",\r\n \"2603:1030:9:11f::/64\",\r\n
+ \ \"2603:1030:9:120::/61\",\r\n \"2603:1030:9:128::/62\",\r\n
+ \ \"2603:1030:9:12f::/64\",\r\n \"2603:1030:9:130::/63\",\r\n
+ \ \"2603:1030:a::/47\",\r\n \"2603:1030:d::/48\",\r\n \"2603:1030:10::/48\",\r\n
+ \ \"2603:1036:2403::/48\",\r\n \"2603:1036:2500:1c::/64\",\r\n
+ \ \"2603:1036:3000:100::/59\",\r\n \"2603:1037:1:100::/59\",\r\n
+ \ \"2a01:111:f403:c904::/62\",\r\n \"2a01:111:f403:d104::/62\",\r\n
+ \ \"2a01:111:f403:d904::/62\",\r\n \"2a01:111:f403:e004::/62\",\r\n
+ \ \"2a01:111:f403:f904::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.centraluseuap\",\r\n \"id\": \"AzureCloud.centraluseuap\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.153.16/28\",\r\n
+ \ \"13.67.154.0/24\",\r\n \"13.104.129.0/26\",\r\n \"13.104.159.192/26\",\r\n
+ \ \"13.104.208.0/26\",\r\n \"20.45.192.0/18\",\r\n \"20.46.0.0/19\",\r\n
+ \ \"20.47.5.0/24\",\r\n \"20.47.105.0/24\",\r\n \"20.51.24.0/21\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.135.68.0/23\",\r\n \"20.150.23.0/24\",\r\n
+ \ \"20.150.47.0/25\",\r\n \"20.157.96.0/24\",\r\n \"20.190.138.128/25\",\r\n
+ \ \"20.190.150.0/24\",\r\n \"40.66.120.0/21\",\r\n \"40.78.200.0/21\",\r\n
+ \ \"40.78.208.16/28\",\r\n \"40.79.232.0/21\",\r\n \"40.82.0.0/22\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.87.180.6/31\",\r\n \"40.87.180.8/30\",\r\n
+ \ \"40.87.180.12/31\",\r\n \"40.87.180.22/31\",\r\n \"40.87.180.24/30\",\r\n
+ \ \"40.87.180.40/31\",\r\n \"40.87.180.68/30\",\r\n \"40.87.180.72/31\",\r\n
+ \ \"40.87.182.0/30\",\r\n \"40.87.182.16/29\",\r\n \"40.87.182.60/31\",\r\n
+ \ \"40.87.183.28/30\",\r\n \"40.87.183.32/31\",\r\n \"40.87.183.40/31\",\r\n
+ \ \"40.87.183.48/30\",\r\n \"40.87.183.52/31\",\r\n \"40.87.183.128/28\",\r\n
+ \ \"40.87.183.238/31\",\r\n \"40.87.183.240/30\",\r\n \"40.89.32.0/19\",\r\n
+ \ \"40.90.132.80/28\",\r\n \"40.90.142.32/27\",\r\n \"40.90.149.0/27\",\r\n
+ \ \"40.96.52.0/24\",\r\n \"40.122.0.0/20\",\r\n \"40.126.10.128/25\",\r\n
+ \ \"40.126.22.0/24\",\r\n \"52.108.113.0/24\",\r\n \"52.109.140.0/22\",\r\n
+ \ \"52.141.224.0/20\",\r\n \"52.143.198.0/24\",\r\n \"52.158.176.0/20\",\r\n
+ \ \"52.165.104.128/26\",\r\n \"52.176.225.0/24\",\r\n \"52.176.232.0/21\",\r\n
+ \ \"52.176.240.0/20\",\r\n \"52.180.160.0/20\",\r\n \"52.180.176.0/21\",\r\n
+ \ \"52.185.56.112/28\",\r\n \"52.185.112.64/27\",\r\n \"52.239.177.0/27\",\r\n
+ \ \"52.239.238.0/24\",\r\n \"52.245.69.0/27\",\r\n \"52.253.156.0/22\",\r\n
+ \ \"52.253.232.0/21\",\r\n \"104.208.48.0/20\",\r\n \"168.61.136.0/21\",\r\n
+ \ \"2603:1030:8::/48\",\r\n \"2603:1030:9::/63\",\r\n \"2603:1030:9:16::/64\",\r\n
+ \ \"2603:1030:9:b0::/63\",\r\n \"2603:1030:9:b2::/64\",\r\n
+ \ \"2603:1030:9:b6::/64\",\r\n \"2603:1030:9:ba::/63\",\r\n
+ \ \"2603:1030:9:bc::/64\",\r\n \"2603:1030:9:101::/64\",\r\n
+ \ \"2603:1030:9:102::/63\",\r\n \"2603:1030:9:10d::/64\",\r\n
+ \ \"2603:1030:9:10e::/63\",\r\n \"2603:1030:9:110::/64\",\r\n
+ \ \"2603:1030:9:115::/64\",\r\n \"2603:1030:9:116::/63\",\r\n
+ \ \"2603:1030:9:11e::/64\",\r\n \"2603:1030:9:12c::/63\",\r\n
+ \ \"2603:1030:9:12e::/64\",\r\n \"2603:1030:e::/48\",\r\n
+ \ \"2603:1030:f::/48\",\r\n \"2603:1036:903:2::/64\",\r\n
+ \ \"2603:1036:240d::/48\",\r\n \"2603:1036:2500:2c::/64\",\r\n
+ \ \"2603:1036:3000:160::/59\",\r\n \"2603:1037:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastasia\",\r\n
+ \ \"id\": \"AzureCloud.eastasia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.0.0/18\",\r\n \"13.72.192.0/19\",\r\n \"13.75.0.0/17\",\r\n
+ \ \"13.88.208.0/20\",\r\n \"13.94.0.0/18\",\r\n \"13.104.155.64/26\",\r\n
+ \ \"13.104.155.192/26\",\r\n \"13.105.14.192/26\",\r\n \"13.105.16.0/25\",\r\n
+ \ \"20.47.43.0/24\",\r\n \"20.47.126.0/23\",\r\n \"20.60.131.0/24\",\r\n
+ \ \"20.135.40.0/23\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"20.187.64.0/18\",\r\n
+ \ \"20.187.128.0/18\",\r\n \"20.187.192.0/21\",\r\n \"20.187.224.0/19\",\r\n
+ \ \"20.189.64.0/18\",\r\n \"20.190.140.128/25\",\r\n \"20.190.164.0/24\",\r\n
+ \ \"20.195.72.0/21\",\r\n \"23.97.64.0/19\",\r\n \"23.98.32.0/21\",\r\n
+ \ \"23.98.40.0/22\",\r\n \"23.98.44.0/24\",\r\n \"23.99.96.0/19\",\r\n
+ \ \"23.100.88.0/21\",\r\n \"23.101.0.0/20\",\r\n \"23.102.200.0/23\",\r\n
+ \ \"23.102.224.0/19\",\r\n \"40.77.134.0/24\",\r\n \"40.77.136.16/28\",\r\n
+ \ \"40.77.160.32/27\",\r\n \"40.77.160.64/26\",\r\n \"40.77.160.128/25\",\r\n
+ \ \"40.77.161.0/26\",\r\n \"40.77.161.128/25\",\r\n \"40.77.175.128/27\",\r\n
+ \ \"40.77.192.0/22\",\r\n \"40.77.201.0/24\",\r\n \"40.77.226.0/25\",\r\n
+ \ \"40.77.234.128/27\",\r\n \"40.77.236.192/28\",\r\n \"40.77.237.128/25\",\r\n
+ \ \"40.77.252.0/23\",\r\n \"40.79.210.0/24\",\r\n \"40.81.16.0/20\",\r\n
+ \ \"40.82.116.0/22\",\r\n \"40.83.64.0/18\",\r\n \"40.87.192.0/22\",\r\n
+ \ \"40.90.154.192/26\",\r\n \"40.126.12.128/25\",\r\n \"40.126.36.0/24\",\r\n
+ \ \"52.108.32.0/22\",\r\n \"52.108.81.0/24\",\r\n \"52.109.120.0/22\",\r\n
+ \ \"52.111.228.0/24\",\r\n \"52.113.96.0/22\",\r\n \"52.113.100.0/24\",\r\n
+ \ \"52.113.104.0/24\",\r\n \"52.113.108.0/24\",\r\n \"52.114.0.0/21\",\r\n
+ \ \"52.114.52.0/23\",\r\n \"52.115.40.0/22\",\r\n \"52.115.44.0/23\",\r\n
+ \ \"52.115.46.0/24\",\r\n \"52.115.96.0/24\",\r\n \"52.120.157.0/24\",\r\n
+ \ \"52.121.112.0/22\",\r\n \"52.139.128.0/18\",\r\n \"52.175.0.0/17\",\r\n
+ \ \"52.184.0.0/17\",\r\n \"52.229.128.0/17\",\r\n \"52.232.153.0/24\",\r\n
+ \ \"52.239.128.0/24\",\r\n \"52.239.224.0/24\",\r\n \"52.245.56.0/22\",\r\n
+ \ \"52.246.128.0/20\",\r\n \"65.52.160.0/19\",\r\n \"104.44.88.192/27\",\r\n
+ \ \"104.44.90.224/27\",\r\n \"104.44.91.192/27\",\r\n \"104.44.94.96/28\",\r\n
+ \ \"104.46.24.0/22\",\r\n \"104.208.64.0/18\",\r\n \"104.214.160.0/19\",\r\n
+ \ \"111.221.29.0/24\",\r\n \"111.221.30.0/23\",\r\n \"111.221.78.0/23\",\r\n
+ \ \"131.253.13.100/30\",\r\n \"131.253.13.104/30\",\r\n \"131.253.35.192/26\",\r\n
+ \ \"134.170.192.0/21\",\r\n \"137.116.160.0/20\",\r\n \"168.63.128.0/24\",\r\n
+ \ \"168.63.129.0/28\",\r\n \"168.63.129.32/27\",\r\n \"168.63.129.64/26\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/23\",\r\n \"168.63.132.0/22\",\r\n
+ \ \"168.63.136.0/21\",\r\n \"168.63.148.0/22\",\r\n \"168.63.152.0/22\",\r\n
+ \ \"168.63.156.0/24\",\r\n \"168.63.192.0/19\",\r\n \"191.232.140.0/24\",\r\n
+ \ \"191.234.2.0/23\",\r\n \"191.234.16.0/20\",\r\n \"191.237.238.0/24\",\r\n
+ \ \"204.231.197.0/24\",\r\n \"207.46.67.160/27\",\r\n \"207.46.67.192/27\",\r\n
+ \ \"207.46.72.0/27\",\r\n \"207.46.77.224/28\",\r\n \"207.46.87.0/24\",\r\n
+ \ \"207.46.89.16/28\",\r\n \"207.46.95.32/27\",\r\n \"207.46.126.0/24\",\r\n
+ \ \"207.46.128.0/19\",\r\n \"207.68.174.208/28\",\r\n \"2603:1040:200::/46\",\r\n
+ \ \"2603:1040:204::/48\",\r\n \"2603:1040:206::/48\",\r\n
+ \ \"2603:1040:207::/48\",\r\n \"2603:1046:1401::/48\",\r\n
+ \ \"2603:1046:1500:24::/64\",\r\n \"2603:1046:2000:40::/59\",\r\n
+ \ \"2603:1047:1:40::/59\",\r\n \"2a01:111:f100:6000::/64\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus\",\r\n
+ \ \"id\": \"AzureCloud.eastus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.128.0/17\",\r\n \"13.72.64.0/18\",\r\n \"13.82.0.0/16\",\r\n
+ \ \"13.90.0.0/16\",\r\n \"13.92.0.0/16\",\r\n \"13.104.144.128/27\",\r\n
+ \ \"13.104.152.128/25\",\r\n \"13.104.192.0/21\",\r\n \"13.104.211.0/25\",\r\n
+ \ \"13.104.214.128/25\",\r\n \"13.104.215.0/25\",\r\n \"13.105.17.0/26\",\r\n
+ \ \"13.105.19.0/25\",\r\n \"13.105.20.192/26\",\r\n \"13.105.27.0/25\",\r\n
+ \ \"13.105.27.192/27\",\r\n \"13.105.36.192/26\",\r\n \"13.105.74.48/28\",\r\n
+ \ \"20.38.98.0/24\",\r\n \"20.39.32.0/19\",\r\n \"20.42.0.0/17\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.47.108.0/23\",\r\n \"20.47.113.0/24\",\r\n \"20.49.104.0/21\",\r\n
+ \ \"20.51.128.0/17\",\r\n \"20.55.0.0/17\",\r\n \"20.60.0.0/24\",\r\n
+ \ \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n \"20.60.60.0/22\",\r\n
+ \ \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n \"20.60.146.0/23\",\r\n
+ \ \"20.62.128.0/17\",\r\n \"20.72.128.0/18\",\r\n \"20.75.128.0/17\",\r\n
+ \ \"20.81.0.0/17\",\r\n \"20.83.128.0/18\",\r\n \"20.84.0.0/17\",\r\n
+ \ \"20.85.128.0/17\",\r\n \"20.88.128.0/18\",\r\n \"20.135.4.0/22\",\r\n
+ \ \"20.135.194.0/23\",\r\n \"20.135.196.0/22\",\r\n \"20.150.32.0/23\",\r\n
+ \ \"20.150.90.0/24\",\r\n \"20.157.39.0/24\",\r\n \"20.185.0.0/16\",\r\n
+ \ \"20.190.130.0/24\",\r\n \"20.190.151.0/24\",\r\n \"23.96.0.0/17\",\r\n
+ \ \"23.98.45.0/24\",\r\n \"23.100.16.0/20\",\r\n \"23.101.128.0/20\",\r\n
+ \ \"40.71.0.0/16\",\r\n \"40.76.0.0/16\",\r\n \"40.78.219.0/24\",\r\n
+ \ \"40.78.224.0/21\",\r\n \"40.79.152.0/21\",\r\n \"40.80.144.0/21\",\r\n
+ \ \"40.82.24.0/22\",\r\n \"40.82.60.0/22\",\r\n \"40.85.160.0/19\",\r\n
+ \ \"40.87.0.0/17\",\r\n \"40.87.164.0/22\",\r\n \"40.88.0.0/16\",\r\n
+ \ \"40.90.23.128/25\",\r\n \"40.90.24.128/25\",\r\n \"40.90.25.0/26\",\r\n
+ \ \"40.90.30.192/26\",\r\n \"40.90.129.128/26\",\r\n \"40.90.130.96/28\",\r\n
+ \ \"40.90.131.224/27\",\r\n \"40.90.136.16/28\",\r\n \"40.90.136.32/27\",\r\n
+ \ \"40.90.137.96/27\",\r\n \"40.90.139.224/27\",\r\n \"40.90.143.0/27\",\r\n
+ \ \"40.90.146.64/26\",\r\n \"40.90.147.0/27\",\r\n \"40.90.148.64/27\",\r\n
+ \ \"40.90.150.32/27\",\r\n \"40.90.224.0/19\",\r\n \"40.91.4.0/22\",\r\n
+ \ \"40.93.2.0/24\",\r\n \"40.93.4.0/24\",\r\n \"40.112.48.0/20\",\r\n
+ \ \"40.114.0.0/17\",\r\n \"40.117.32.0/19\",\r\n \"40.117.64.0/18\",\r\n
+ \ \"40.117.128.0/17\",\r\n \"40.121.0.0/16\",\r\n \"40.123.132.0/22\",\r\n
+ \ \"40.126.2.0/24\",\r\n \"40.126.23.0/24\",\r\n \"52.101.4.0/22\",\r\n
+ \ \"52.101.9.0/24\",\r\n \"52.101.20.0/22\",\r\n \"52.102.129.0/24\",\r\n
+ \ \"52.102.159.0/24\",\r\n \"52.103.1.0/24\",\r\n \"52.103.3.0/24\",\r\n
+ \ \"52.103.129.0/24\",\r\n \"52.108.16.0/21\",\r\n \"52.108.79.0/24\",\r\n
+ \ \"52.108.105.0/24\",\r\n \"52.108.106.0/23\",\r\n \"52.109.12.0/22\",\r\n
+ \ \"52.111.229.0/24\",\r\n \"52.112.112.0/24\",\r\n \"52.113.16.0/20\",\r\n
+ \ \"52.114.132.0/22\",\r\n \"52.115.54.0/24\",\r\n \"52.115.62.0/23\",\r\n
+ \ \"52.115.192.0/19\",\r\n \"52.120.32.0/19\",\r\n \"52.120.224.0/20\",\r\n
+ \ \"52.123.0.0/24\",\r\n \"52.125.132.0/22\",\r\n \"52.136.64.0/18\",\r\n
+ \ \"52.142.0.0/18\",\r\n \"52.143.207.0/24\",\r\n \"52.146.0.0/17\",\r\n
+ \ \"52.147.192.0/18\",\r\n \"52.149.128.0/17\",\r\n \"52.150.0.0/17\",\r\n
+ \ \"52.151.128.0/17\",\r\n \"52.152.128.0/17\",\r\n \"52.154.64.0/18\",\r\n
+ \ \"52.168.0.0/16\",\r\n \"52.170.0.0/16\",\r\n \"52.179.0.0/17\",\r\n
+ \ \"52.186.0.0/16\",\r\n \"52.188.0.0/16\",\r\n \"52.190.0.0/17\",\r\n
+ \ \"52.191.0.0/17\",\r\n \"52.191.192.0/18\",\r\n \"52.224.0.0/16\",\r\n
+ \ \"52.226.0.0/16\",\r\n \"52.232.146.0/24\",\r\n \"52.234.128.0/17\",\r\n
+ \ \"52.239.152.0/22\",\r\n \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n
+ \ \"52.239.214.0/23\",\r\n \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n
+ \ \"52.239.252.0/24\",\r\n \"52.240.0.0/17\",\r\n \"52.245.8.0/22\",\r\n
+ \ \"52.245.104.0/22\",\r\n \"52.249.128.0/17\",\r\n \"52.253.160.0/24\",\r\n
+ \ \"52.255.128.0/17\",\r\n \"65.54.19.128/27\",\r\n \"104.41.128.0/19\",\r\n
+ \ \"104.44.91.32/27\",\r\n \"104.44.94.16/28\",\r\n \"104.44.95.160/27\",\r\n
+ \ \"104.44.95.240/28\",\r\n \"104.45.128.0/18\",\r\n \"104.45.192.0/20\",\r\n
+ \ \"104.211.0.0/18\",\r\n \"137.116.112.0/20\",\r\n \"137.117.32.0/19\",\r\n
+ \ \"137.117.64.0/18\",\r\n \"137.135.64.0/18\",\r\n \"138.91.96.0/19\",\r\n
+ \ \"157.56.176.0/21\",\r\n \"168.61.32.0/20\",\r\n \"168.61.48.0/21\",\r\n
+ \ \"168.62.32.0/19\",\r\n \"168.62.160.0/19\",\r\n \"191.234.32.0/19\",\r\n
+ \ \"191.236.0.0/18\",\r\n \"191.237.0.0/17\",\r\n \"191.238.0.0/18\",\r\n
+ \ \"2603:1030:20c::/47\",\r\n \"2603:1030:20e::/48\",\r\n
+ \ \"2603:1030:210::/47\",\r\n \"2603:1036:120d::/48\",\r\n
+ \ \"2603:1036:2404::/48\",\r\n \"2603:1036:3000:120::/59\",\r\n
+ \ \"2603:1037:1:120::/59\",\r\n \"2a01:111:f100:2000::/52\",\r\n
+ \ \"2a01:111:f403:c100::/64\",\r\n \"2a01:111:f403:c900::/64\",\r\n
+ \ \"2a01:111:f403:d100::/64\",\r\n \"2a01:111:f403:d900::/64\",\r\n
+ \ \"2a01:111:f403:f000::/64\",\r\n \"2a01:111:f403:f900::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2\",\r\n
+ \ \"id\": \"AzureCloud.eastus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.0.0/17\",\r\n \"13.77.64.0/18\",\r\n \"13.104.147.0/25\",\r\n
+ \ \"13.104.208.64/27\",\r\n \"13.105.18.192/26\",\r\n \"13.105.23.64/26\",\r\n
+ \ \"13.105.28.0/28\",\r\n \"13.105.28.128/25\",\r\n \"13.105.67.128/25\",\r\n
+ \ \"13.105.74.128/26\",\r\n \"13.105.75.0/27\",\r\n \"13.105.75.32/28\",\r\n
+ \ \"13.105.75.64/27\",\r\n \"20.36.128.0/17\",\r\n \"20.38.100.0/23\",\r\n
+ \ \"20.38.208.0/22\",\r\n \"20.41.0.0/18\",\r\n \"20.44.16.0/21\",\r\n
+ \ \"20.44.64.0/18\",\r\n \"20.47.60.0/23\",\r\n \"20.47.76.0/23\",\r\n
+ \ \"20.49.0.0/18\",\r\n \"20.49.96.0/21\",\r\n \"20.55.192.0/18\",\r\n
+ \ \"20.57.0.0/17\",\r\n \"20.60.56.0/22\",\r\n \"20.60.132.0/23\",\r\n
+ \ \"20.60.180.0/23\",\r\n \"20.62.0.0/17\",\r\n \"20.65.0.0/17\",\r\n
+ \ \"20.69.192.0/18\",\r\n \"20.72.64.0/18\",\r\n \"20.75.0.0/17\",\r\n
+ \ \"20.80.192.0/18\",\r\n \"20.81.128.0/17\",\r\n \"20.85.0.0/17\",\r\n
+ \ \"20.88.96.0/19\",\r\n \"20.135.16.0/23\",\r\n \"20.135.200.0/22\",\r\n
+ \ \"20.135.204.0/23\",\r\n \"20.150.29.0/24\",\r\n \"20.150.36.0/24\",\r\n
+ \ \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n \"20.150.82.0/24\",\r\n
+ \ \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n \"20.157.48.0/23\",\r\n
+ \ \"20.186.0.0/17\",\r\n \"20.186.128.0/18\",\r\n \"20.190.131.0/24\",\r\n
+ \ \"20.190.152.0/24\",\r\n \"20.190.192.0/18\",\r\n \"23.100.64.0/21\",\r\n
+ \ \"23.101.32.0/21\",\r\n \"23.101.80.0/21\",\r\n \"23.101.144.0/20\",\r\n
+ \ \"23.102.96.0/19\",\r\n \"23.102.204.0/22\",\r\n \"23.102.208.0/20\",\r\n
+ \ \"40.65.192.0/18\",\r\n \"40.67.128.0/19\",\r\n \"40.70.0.0/18\",\r\n
+ \ \"40.70.64.0/20\",\r\n \"40.70.80.0/21\",\r\n \"40.70.128.0/17\",\r\n
+ \ \"40.75.0.0/19\",\r\n \"40.75.64.0/18\",\r\n \"40.77.128.128/25\",\r\n
+ \ \"40.77.129.0/24\",\r\n \"40.77.130.0/25\",\r\n \"40.77.132.0/24\",\r\n
+ \ \"40.77.136.48/28\",\r\n \"40.77.137.128/26\",\r\n \"40.77.138.128/25\",\r\n
+ \ \"40.77.163.0/24\",\r\n \"40.77.166.160/27\",\r\n \"40.77.167.0/24\",\r\n
+ \ \"40.77.168.0/24\",\r\n \"40.77.170.0/24\",\r\n \"40.77.175.96/27\",\r\n
+ \ \"40.77.177.0/24\",\r\n \"40.77.178.0/23\",\r\n \"40.77.182.0/28\",\r\n
+ \ \"40.77.182.32/27\",\r\n \"40.77.184.0/25\",\r\n \"40.77.198.0/26\",\r\n
+ \ \"40.77.199.192/26\",\r\n \"40.77.224.128/25\",\r\n \"40.77.228.0/24\",\r\n
+ \ \"40.77.233.0/24\",\r\n \"40.77.234.192/27\",\r\n \"40.77.236.80/28\",\r\n
+ \ \"40.77.237.64/26\",\r\n \"40.77.240.0/25\",\r\n \"40.77.245.0/24\",\r\n
+ \ \"40.77.248.0/25\",\r\n \"40.77.251.0/24\",\r\n \"40.78.208.48/28\",\r\n
+ \ \"40.78.220.0/24\",\r\n \"40.79.0.0/21\",\r\n \"40.79.8.0/27\",\r\n
+ \ \"40.79.8.32/28\",\r\n \"40.79.8.64/27\",\r\n \"40.79.8.96/28\",\r\n
+ \ \"40.79.9.0/24\",\r\n \"40.79.16.0/20\",\r\n \"40.79.32.0/20\",\r\n
+ \ \"40.79.48.0/27\",\r\n \"40.79.48.32/28\",\r\n \"40.79.49.0/24\",\r\n
+ \ \"40.79.56.0/21\",\r\n \"40.79.64.0/20\",\r\n \"40.79.80.0/21\",\r\n
+ \ \"40.79.90.0/24\",\r\n \"40.79.91.0/28\",\r\n \"40.79.92.0/24\",\r\n
+ \ \"40.79.93.0/28\",\r\n \"40.79.94.0/24\",\r\n \"40.79.95.0/28\",\r\n
+ \ \"40.79.206.64/27\",\r\n \"40.79.240.0/20\",\r\n \"40.82.4.0/22\",\r\n
+ \ \"40.82.44.0/22\",\r\n \"40.84.0.0/17\",\r\n \"40.87.168.0/30\",\r\n
+ \ \"40.87.168.8/29\",\r\n \"40.87.168.16/28\",\r\n \"40.87.168.32/29\",\r\n
+ \ \"40.87.168.48/28\",\r\n \"40.87.168.64/30\",\r\n \"40.87.168.70/31\",\r\n
+ \ \"40.87.168.72/29\",\r\n \"40.87.168.80/28\",\r\n \"40.87.168.96/27\",\r\n
+ \ \"40.87.168.128/26\",\r\n \"40.87.168.192/28\",\r\n \"40.87.168.210/31\",\r\n
+ \ \"40.87.168.212/30\",\r\n \"40.87.168.216/29\",\r\n \"40.87.168.224/27\",\r\n
+ \ \"40.87.169.0/27\",\r\n \"40.87.169.32/29\",\r\n \"40.87.169.44/30\",\r\n
+ \ \"40.87.169.48/29\",\r\n \"40.87.169.56/31\",\r\n \"40.87.169.60/30\",\r\n
+ \ \"40.87.169.64/27\",\r\n \"40.87.169.96/31\",\r\n \"40.87.169.102/31\",\r\n
+ \ \"40.87.169.104/29\",\r\n \"40.87.169.112/28\",\r\n \"40.87.169.128/29\",\r\n
+ \ \"40.87.169.136/31\",\r\n \"40.87.169.140/30\",\r\n \"40.87.169.160/27\",\r\n
+ \ \"40.87.169.192/26\",\r\n \"40.87.170.0/25\",\r\n \"40.87.170.128/28\",\r\n
+ \ \"40.87.170.144/31\",\r\n \"40.87.170.152/29\",\r\n \"40.87.170.160/28\",\r\n
+ \ \"40.87.170.176/29\",\r\n \"40.87.170.184/30\",\r\n \"40.87.170.194/31\",\r\n
+ \ \"40.87.170.196/30\",\r\n \"40.87.170.214/31\",\r\n \"40.87.170.216/30\",\r\n
+ \ \"40.87.170.228/30\",\r\n \"40.87.170.232/29\",\r\n \"40.87.170.240/29\",\r\n
+ \ \"40.87.170.248/30\",\r\n \"40.87.171.2/31\",\r\n \"40.87.171.4/30\",\r\n
+ \ \"40.87.171.8/29\",\r\n \"40.87.171.16/28\",\r\n \"40.87.171.36/30\",\r\n
+ \ \"40.87.171.40/31\",\r\n \"40.87.171.72/29\",\r\n \"40.87.171.80/28\",\r\n
+ \ \"40.87.171.96/27\",\r\n \"40.87.171.128/28\",\r\n \"40.90.19.128/25\",\r\n
+ \ \"40.90.20.0/25\",\r\n \"40.90.130.160/27\",\r\n \"40.90.132.128/26\",\r\n
+ \ \"40.90.133.112/28\",\r\n \"40.90.134.192/26\",\r\n \"40.90.136.0/28\",\r\n
+ \ \"40.90.138.160/27\",\r\n \"40.90.140.160/27\",\r\n \"40.90.140.192/27\",\r\n
+ \ \"40.90.143.192/26\",\r\n \"40.90.144.64/26\",\r\n \"40.90.145.32/27\",\r\n
+ \ \"40.90.145.64/27\",\r\n \"40.90.148.96/27\",\r\n \"40.90.155.128/26\",\r\n
+ \ \"40.90.157.128/26\",\r\n \"40.90.158.128/25\",\r\n \"40.91.12.16/28\",\r\n
+ \ \"40.91.12.48/28\",\r\n \"40.91.12.64/26\",\r\n \"40.91.12.128/28\",\r\n
+ \ \"40.91.12.160/27\",\r\n \"40.91.12.208/28\",\r\n \"40.91.12.240/28\",\r\n
+ \ \"40.91.13.64/27\",\r\n \"40.91.13.96/28\",\r\n \"40.91.13.128/27\",\r\n
+ \ \"40.91.13.240/28\",\r\n \"40.91.14.0/24\",\r\n \"40.93.3.0/24\",\r\n
+ \ \"40.123.0.0/17\",\r\n \"40.126.3.0/24\",\r\n \"40.126.24.0/24\",\r\n
+ \ \"52.101.10.0/24\",\r\n \"52.101.36.0/22\",\r\n \"52.102.131.0/24\",\r\n
+ \ \"52.103.5.0/24\",\r\n \"52.103.131.0/24\",\r\n \"52.108.186.0/24\",\r\n
+ \ \"52.108.216.0/22\",\r\n \"52.109.4.0/22\",\r\n \"52.111.230.0/24\",\r\n
+ \ \"52.112.76.0/22\",\r\n \"52.112.95.0/24\",\r\n \"52.112.104.0/24\",\r\n
+ \ \"52.112.108.0/24\",\r\n \"52.112.116.0/24\",\r\n \"52.114.136.0/21\",\r\n
+ \ \"52.114.180.0/22\",\r\n \"52.114.186.0/23\",\r\n \"52.115.48.0/22\",\r\n
+ \ \"52.115.52.0/23\",\r\n \"52.115.64.0/22\",\r\n \"52.115.160.0/19\",\r\n
+ \ \"52.120.64.0/19\",\r\n \"52.121.32.0/22\",\r\n \"52.123.4.0/24\",\r\n
+ \ \"52.125.136.0/24\",\r\n \"52.136.29.0/24\",\r\n \"52.138.80.0/21\",\r\n
+ \ \"52.138.96.0/19\",\r\n \"52.143.192.0/24\",\r\n \"52.147.160.0/19\",\r\n
+ \ \"52.167.0.0/16\",\r\n \"52.177.0.0/16\",\r\n \"52.179.128.0/17\",\r\n
+ \ \"52.184.128.0/19\",\r\n \"52.184.160.0/21\",\r\n \"52.184.168.0/28\",\r\n
+ \ \"52.184.168.80/28\",\r\n \"52.184.168.96/27\",\r\n \"52.184.168.128/28\",\r\n
+ \ \"52.184.169.0/24\",\r\n \"52.184.170.0/24\",\r\n \"52.184.176.0/20\",\r\n
+ \ \"52.184.192.0/18\",\r\n \"52.225.128.0/21\",\r\n \"52.225.136.0/27\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.136.64/28\",\r\n \"52.225.137.0/24\",\r\n
+ \ \"52.225.192.0/18\",\r\n \"52.232.151.0/24\",\r\n \"52.232.160.0/19\",\r\n
+ \ \"52.232.192.0/18\",\r\n \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n
+ \ \"52.239.157.128/26\",\r\n \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n
+ \ \"52.239.184.0/25\",\r\n \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n
+ \ \"52.239.185.32/27\",\r\n \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n
+ \ \"52.239.192.96/27\",\r\n \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n
+ \ \"52.239.198.0/25\",\r\n \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n
+ \ \"52.239.207.32/28\",\r\n \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n
+ \ \"52.239.222.0/23\",\r\n \"52.242.64.0/18\",\r\n \"52.245.44.0/24\",\r\n
+ \ \"52.245.45.0/25\",\r\n \"52.245.45.128/28\",\r\n \"52.245.45.160/27\",\r\n
+ \ \"52.245.45.192/26\",\r\n \"52.245.46.0/27\",\r\n \"52.245.46.48/28\",\r\n
+ \ \"52.245.46.64/28\",\r\n \"52.245.46.112/28\",\r\n \"52.245.46.128/28\",\r\n
+ \ \"52.245.46.160/27\",\r\n \"52.245.46.192/26\",\r\n \"52.247.0.0/17\",\r\n
+ \ \"52.250.128.0/18\",\r\n \"52.251.0.0/17\",\r\n \"52.252.0.0/17\",\r\n
+ \ \"52.253.64.0/20\",\r\n \"52.253.148.0/23\",\r\n \"52.253.154.0/23\",\r\n
+ \ \"52.254.0.0/18\",\r\n \"52.254.64.0/19\",\r\n \"52.254.96.0/20\",\r\n
+ \ \"52.254.112.0/21\",\r\n \"65.52.108.0/23\",\r\n \"65.52.110.0/24\",\r\n
+ \ \"65.55.44.16/28\",\r\n \"65.55.44.32/27\",\r\n \"65.55.44.64/27\",\r\n
+ \ \"65.55.44.96/28\",\r\n \"65.55.44.128/27\",\r\n \"65.55.60.188/30\",\r\n
+ \ \"65.55.105.0/26\",\r\n \"65.55.105.96/27\",\r\n \"65.55.105.224/27\",\r\n
+ \ \"65.55.106.0/26\",\r\n \"65.55.106.64/27\",\r\n \"65.55.106.128/26\",\r\n
+ \ \"65.55.107.48/28\",\r\n \"65.55.107.64/27\",\r\n \"65.55.108.0/24\",\r\n
+ \ \"65.55.209.128/26\",\r\n \"65.55.211.32/27\",\r\n \"65.55.213.64/26\",\r\n
+ \ \"65.55.213.128/26\",\r\n \"65.55.217.0/24\",\r\n \"65.55.219.32/27\",\r\n
+ \ \"65.55.219.128/25\",\r\n \"104.44.88.32/27\",\r\n \"104.44.88.96/27\",\r\n
+ \ \"104.44.91.96/27\",\r\n \"104.44.93.160/27\",\r\n \"104.44.94.48/28\",\r\n
+ \ \"104.46.0.0/21\",\r\n \"104.46.96.0/19\",\r\n \"104.46.192.0/20\",\r\n
+ \ \"104.47.200.0/21\",\r\n \"104.208.128.0/17\",\r\n \"104.209.128.0/17\",\r\n
+ \ \"104.210.0.0/20\",\r\n \"131.253.12.176/28\",\r\n \"131.253.12.208/28\",\r\n
+ \ \"131.253.12.224/30\",\r\n \"131.253.13.16/29\",\r\n \"131.253.13.48/28\",\r\n
+ \ \"131.253.13.72/29\",\r\n \"131.253.13.80/29\",\r\n \"131.253.13.96/30\",\r\n
+ \ \"131.253.14.16/28\",\r\n \"131.253.14.64/29\",\r\n \"131.253.14.208/28\",\r\n
+ \ \"131.253.14.224/28\",\r\n \"131.253.15.8/29\",\r\n \"131.253.15.16/28\",\r\n
+ \ \"131.253.24.0/28\",\r\n \"131.253.24.192/26\",\r\n \"131.253.34.224/27\",\r\n
+ \ \"131.253.38.0/27\",\r\n \"131.253.38.128/26\",\r\n \"131.253.40.0/28\",\r\n
+ \ \"134.170.220.0/23\",\r\n \"137.116.0.0/18\",\r\n \"137.116.64.0/19\",\r\n
+ \ \"137.116.96.0/22\",\r\n \"157.55.7.128/26\",\r\n \"157.55.10.192/26\",\r\n
+ \ \"157.55.11.128/25\",\r\n \"157.55.37.0/24\",\r\n \"157.55.38.0/24\",\r\n
+ \ \"157.55.48.0/24\",\r\n \"157.55.50.0/25\",\r\n \"157.55.55.100/30\",\r\n
+ \ \"157.55.55.104/29\",\r\n \"157.55.55.136/29\",\r\n \"157.55.55.144/29\",\r\n
+ \ \"157.55.55.160/28\",\r\n \"157.56.2.128/25\",\r\n \"157.56.3.0/25\",\r\n
+ \ \"191.236.192.0/18\",\r\n \"191.237.128.0/18\",\r\n \"191.239.224.0/20\",\r\n
+ \ \"193.149.64.0/21\",\r\n \"198.180.96.0/25\",\r\n \"199.30.16.0/24\",\r\n
+ \ \"199.30.18.0/23\",\r\n \"199.30.20.0/24\",\r\n \"199.30.22.0/24\",\r\n
+ \ \"199.30.28.64/26\",\r\n \"199.30.28.128/25\",\r\n \"199.30.29.0/24\",\r\n
+ \ \"2603:1030:400::/48\",\r\n \"2603:1030:401:2::/63\",\r\n
+ \ \"2603:1030:401:4::/62\",\r\n \"2603:1030:401:8::/61\",\r\n
+ \ \"2603:1030:401:10::/62\",\r\n \"2603:1030:401:14::/63\",\r\n
+ \ \"2603:1030:401:17::/64\",\r\n \"2603:1030:401:18::/61\",\r\n
+ \ \"2603:1030:401:20::/59\",\r\n \"2603:1030:401:40::/60\",\r\n
+ \ \"2603:1030:401:50::/61\",\r\n \"2603:1030:401:58::/64\",\r\n
+ \ \"2603:1030:401:5a::/63\",\r\n \"2603:1030:401:5c::/62\",\r\n
+ \ \"2603:1030:401:60::/59\",\r\n \"2603:1030:401:80::/62\",\r\n
+ \ \"2603:1030:401:84::/64\",\r\n \"2603:1030:401:87::/64\",\r\n
+ \ \"2603:1030:401:88::/62\",\r\n \"2603:1030:401:8c::/63\",\r\n
+ \ \"2603:1030:401:8f::/64\",\r\n \"2603:1030:401:90::/63\",\r\n
+ \ \"2603:1030:401:94::/62\",\r\n \"2603:1030:401:98::/61\",\r\n
+ \ \"2603:1030:401:a0::/62\",\r\n \"2603:1030:401:a4::/63\",\r\n
+ \ \"2603:1030:401:a7::/64\",\r\n \"2603:1030:401:a8::/61\",\r\n
+ \ \"2603:1030:401:b0::/60\",\r\n \"2603:1030:401:c0::/58\",\r\n
+ \ \"2603:1030:401:100::/59\",\r\n \"2603:1030:401:120::/64\",\r\n
+ \ \"2603:1030:401:124::/62\",\r\n \"2603:1030:401:128::/61\",\r\n
+ \ \"2603:1030:401:130::/62\",\r\n \"2603:1030:401:134::/63\",\r\n
+ \ \"2603:1030:401:139::/64\",\r\n \"2603:1030:401:13a::/63\",\r\n
+ \ \"2603:1030:401:143::/64\",\r\n \"2603:1030:401:144::/63\",\r\n
+ \ \"2603:1030:401:14a::/63\",\r\n \"2603:1030:401:14c::/62\",\r\n
+ \ \"2603:1030:401:150::/62\",\r\n \"2603:1030:401:154::/63\",\r\n
+ \ \"2603:1030:401:159::/64\",\r\n \"2603:1030:401:15a::/63\",\r\n
+ \ \"2603:1030:401:15c::/62\",\r\n \"2603:1030:401:160::/61\",\r\n
+ \ \"2603:1030:401:16a::/63\",\r\n \"2603:1030:401:16c::/64\",\r\n
+ \ \"2603:1030:401:17c::/62\",\r\n \"2603:1030:401:180::/59\",\r\n
+ \ \"2603:1030:402::/47\",\r\n \"2603:1030:406::/47\",\r\n
+ \ \"2603:1030:408::/48\",\r\n \"2603:1030:40a:1::/64\",\r\n
+ \ \"2603:1030:40a:2::/64\",\r\n \"2603:1030:40c::/48\",\r\n
+ \ \"2603:1030:40d:8000::/49\",\r\n \"2603:1036:2405::/48\",\r\n
+ \ \"2603:1036:2500::/64\",\r\n \"2603:1036:3000::/59\",\r\n
+ \ \"2603:1037:1::/59\",\r\n \"2603:1039:205::/48\",\r\n \"2a01:111:f403:c908::/62\",\r\n
+ \ \"2a01:111:f403:d108::/62\",\r\n \"2a01:111:f403:d908::/62\",\r\n
+ \ \"2a01:111:f403:e008::/62\",\r\n \"2a01:111:f403:f908::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.eastus2euap\",\r\n
+ \ \"id\": \"AzureCloud.eastus2euap\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.216.0/24\",\r\n \"13.105.52.32/27\",\r\n
+ \ \"13.105.52.64/28\",\r\n \"13.105.52.96/27\",\r\n \"13.105.60.160/27\",\r\n
+ \ \"13.105.61.0/28\",\r\n \"13.105.61.32/27\",\r\n \"20.39.0.0/19\",\r\n
+ \ \"20.47.6.0/24\",\r\n \"20.47.106.0/24\",\r\n \"20.47.128.0/17\",\r\n
+ \ \"20.51.16.0/21\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.135.210.0/23\",\r\n \"20.135.212.0/22\",\r\n \"20.150.108.0/24\",\r\n
+ \ \"20.190.138.0/25\",\r\n \"20.190.149.0/24\",\r\n \"40.70.88.0/28\",\r\n
+ \ \"40.74.144.0/20\",\r\n \"40.75.32.0/21\",\r\n \"40.78.208.0/28\",\r\n
+ \ \"40.79.88.0/27\",\r\n \"40.79.88.32/28\",\r\n \"40.79.89.0/24\",\r\n
+ \ \"40.79.96.0/19\",\r\n \"40.87.168.4/30\",\r\n \"40.87.168.40/29\",\r\n
+ \ \"40.87.168.68/31\",\r\n \"40.87.168.208/31\",\r\n \"40.87.169.40/30\",\r\n
+ \ \"40.87.169.58/31\",\r\n \"40.87.169.98/31\",\r\n \"40.87.169.100/31\",\r\n
+ \ \"40.87.169.138/31\",\r\n \"40.87.169.144/28\",\r\n \"40.87.170.146/31\",\r\n
+ \ \"40.87.170.148/30\",\r\n \"40.87.170.188/30\",\r\n \"40.87.170.192/31\",\r\n
+ \ \"40.87.170.200/29\",\r\n \"40.87.170.208/30\",\r\n \"40.87.170.212/31\",\r\n
+ \ \"40.87.170.220/30\",\r\n \"40.87.170.224/30\",\r\n \"40.87.170.252/30\",\r\n
+ \ \"40.87.171.0/31\",\r\n \"40.87.171.32/30\",\r\n \"40.87.171.42/31\",\r\n
+ \ \"40.87.171.44/30\",\r\n \"40.87.171.48/28\",\r\n \"40.87.171.64/29\",\r\n
+ \ \"40.89.64.0/18\",\r\n \"40.90.129.96/27\",\r\n \"40.90.137.32/27\",\r\n
+ \ \"40.90.146.192/27\",\r\n \"40.91.12.0/28\",\r\n \"40.91.12.32/28\",\r\n
+ \ \"40.91.13.0/28\",\r\n \"40.96.46.0/24\",\r\n \"40.96.55.0/24\",\r\n
+ \ \"40.126.10.0/25\",\r\n \"40.126.21.0/24\",\r\n \"52.108.116.0/24\",\r\n
+ \ \"52.138.64.0/20\",\r\n \"52.138.88.0/21\",\r\n \"52.143.212.0/23\",\r\n
+ \ \"52.147.128.0/19\",\r\n \"52.184.168.16/28\",\r\n \"52.184.168.32/28\",\r\n
+ \ \"52.225.136.48/28\",\r\n \"52.225.144.0/20\",\r\n \"52.225.160.0/19\",\r\n
+ \ \"52.232.150.0/24\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\",\r\n \"52.245.45.144/28\",\r\n \"52.245.46.32/28\",\r\n
+ \ \"52.245.46.80/28\",\r\n \"52.245.46.96/28\",\r\n \"52.253.150.0/23\",\r\n
+ \ \"52.253.152.0/23\",\r\n \"52.253.224.0/21\",\r\n \"52.254.120.0/21\",\r\n
+ \ \"104.44.95.208/28\",\r\n \"198.180.97.0/24\",\r\n \"2603:1030:401::/63\",\r\n
+ \ \"2603:1030:401:16::/64\",\r\n \"2603:1030:401:59::/64\",\r\n
+ \ \"2603:1030:401:85::/64\",\r\n \"2603:1030:401:86::/64\",\r\n
+ \ \"2603:1030:401:8e::/64\",\r\n \"2603:1030:401:92::/63\",\r\n
+ \ \"2603:1030:401:a6::/64\",\r\n \"2603:1030:401:121::/64\",\r\n
+ \ \"2603:1030:401:122::/63\",\r\n \"2603:1030:401:136::/63\",\r\n
+ \ \"2603:1030:401:138::/64\",\r\n \"2603:1030:401:13c::/62\",\r\n
+ \ \"2603:1030:401:140::/63\",\r\n \"2603:1030:401:142::/64\",\r\n
+ \ \"2603:1030:401:146::/63\",\r\n \"2603:1030:401:148::/63\",\r\n
+ \ \"2603:1030:401:156::/63\",\r\n \"2603:1030:401:158::/64\",\r\n
+ \ \"2603:1030:401:168::/63\",\r\n \"2603:1030:401:16d::/64\",\r\n
+ \ \"2603:1030:401:16e::/63\",\r\n \"2603:1030:401:170::/61\",\r\n
+ \ \"2603:1030:401:178::/62\",\r\n \"2603:1030:405::/48\",\r\n
+ \ \"2603:1030:409::/48\",\r\n \"2603:1030:40a::/64\",\r\n
+ \ \"2603:1030:40a:3::/64\",\r\n \"2603:1030:40a:4::/62\",\r\n
+ \ \"2603:1030:40a:8::/63\",\r\n \"2603:1030:40b::/48\",\r\n
+ \ \"2603:1030:40d::/60\",\r\n \"2603:1036:903:1::/64\",\r\n
+ \ \"2603:1036:903:3::/64\",\r\n \"2603:1036:240a::/48\",\r\n
+ \ \"2603:1036:2500:4::/64\",\r\n \"2603:1036:3000:20::/59\",\r\n
+ \ \"2603:1037:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.germanyn\",\r\n \"id\": \"AzureCloud.germanyn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.96/27\",\r\n
+ \ \"13.104.212.64/26\",\r\n \"20.38.115.0/24\",\r\n \"20.47.45.0/24\",\r\n
+ \ \"20.47.84.0/23\",\r\n \"20.52.72.0/21\",\r\n \"20.52.80.32/27\",\r\n
+ \ \"20.135.56.0/23\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\",\r\n
+ \ \"20.190.189.0/26\",\r\n \"40.82.72.0/22\",\r\n \"40.90.31.0/27\",\r\n
+ \ \"40.90.128.240/28\",\r\n \"40.119.96.0/22\",\r\n \"40.126.61.0/26\",\r\n
+ \ \"40.126.198.0/24\",\r\n \"51.116.0.0/18\",\r\n \"51.116.64.0/19\",\r\n
+ \ \"51.116.200.0/21\",\r\n \"51.116.208.0/20\",\r\n \"52.108.76.0/24\",\r\n
+ \ \"52.108.97.0/24\",\r\n \"52.109.102.0/23\",\r\n \"52.111.254.0/24\",\r\n
+ \ \"52.114.240.0/24\",\r\n \"52.253.172.0/24\",\r\n \"2603:1020:d00::/47\",\r\n
+ \ \"2603:1020:d03::/48\",\r\n \"2603:1020:d04::/48\",\r\n
+ \ \"2603:1026:2411::/48\",\r\n \"2603:1026:2500:34::/64\",\r\n
+ \ \"2603:1026:3000:220::/59\",\r\n \"2603:1027:1:220::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.germanywc\",\r\n
+ \ \"id\": \"AzureCloud.germanywc\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.224/27\",\r\n \"13.104.145.128/27\",\r\n
+ \ \"13.104.212.128/26\",\r\n \"13.105.61.128/25\",\r\n \"13.105.66.0/27\",\r\n
+ \ \"13.105.74.96/27\",\r\n \"13.105.74.192/26\",\r\n \"20.38.118.0/24\",\r\n
+ \ \"20.47.27.0/24\",\r\n \"20.47.65.0/24\",\r\n \"20.47.112.0/24\",\r\n
+ \ \"20.52.0.0/18\",\r\n \"20.52.64.0/21\",\r\n \"20.52.80.0/27\",\r\n
+ \ \"20.52.80.64/27\",\r\n \"20.52.88.0/21\",\r\n \"20.52.96.0/19\",\r\n
+ \ \"20.52.128.0/17\",\r\n \"20.60.22.0/23\",\r\n \"20.79.0.0/17\",\r\n
+ \ \"20.79.128.0/18\",\r\n \"20.135.152.0/22\",\r\n \"20.135.156.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\",\r\n \"20.190.190.64/26\",\r\n
+ \ \"40.82.68.0/22\",\r\n \"40.90.129.48/28\",\r\n \"40.90.140.0/27\",\r\n
+ \ \"40.90.147.32/27\",\r\n \"40.90.151.160/27\",\r\n \"40.119.92.0/22\",\r\n
+ \ \"40.126.62.64/26\",\r\n \"40.126.197.0/24\",\r\n \"51.116.96.0/19\",\r\n
+ \ \"51.116.128.0/18\",\r\n \"51.116.192.0/21\",\r\n \"51.116.224.0/19\",\r\n
+ \ \"52.108.178.0/24\",\r\n \"52.108.199.0/24\",\r\n \"52.109.104.0/23\",\r\n
+ \ \"52.111.255.0/24\",\r\n \"52.114.244.0/24\",\r\n \"52.253.169.0/24\",\r\n
+ \ \"52.253.170.0/23\",\r\n \"2603:1020:c00::/47\",\r\n \"2603:1020:c03::/48\",\r\n
+ \ \"2603:1020:c04::/48\",\r\n \"2603:1026:240a::/48\",\r\n
+ \ \"2603:1026:2500:14::/64\",\r\n \"2603:1026:3000:a0::/59\",\r\n
+ \ \"2603:1027:1:a0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japaneast\",\r\n \"id\": \"AzureCloud.japaneast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.128.0/19\",\r\n
+ \ \"13.73.0.0/19\",\r\n \"13.78.0.0/17\",\r\n \"13.104.149.64/26\",\r\n
+ \ \"13.104.150.128/26\",\r\n \"13.104.221.0/24\",\r\n \"13.105.18.64/26\",\r\n
+ \ \"20.37.96.0/19\",\r\n \"20.38.116.0/23\",\r\n \"20.40.88.0/21\",\r\n
+ \ \"20.40.96.0/21\",\r\n \"20.43.64.0/19\",\r\n \"20.44.128.0/18\",\r\n
+ \ \"20.46.112.0/20\",\r\n \"20.46.160.0/19\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.47.101.0/24\",\r\n \"20.48.0.0/17\",\r\n \"20.60.172.0/23\",\r\n
+ \ \"20.63.128.0/18\",\r\n \"20.78.0.0/17\",\r\n \"20.78.192.0/18\",\r\n
+ \ \"20.89.0.0/17\",\r\n \"20.135.102.0/23\",\r\n \"20.135.104.0/22\",\r\n
+ \ \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n \"20.157.38.0/24\",\r\n
+ \ \"20.188.0.0/19\",\r\n \"20.190.141.128/25\",\r\n \"20.190.166.0/24\",\r\n
+ \ \"20.191.160.0/19\",\r\n \"20.194.128.0/17\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.100.96.0/21\",\r\n \"23.102.64.0/19\",\r\n \"40.79.184.0/21\",\r\n
+ \ \"40.79.192.0/21\",\r\n \"40.79.206.96/27\",\r\n \"40.79.208.0/24\",\r\n
+ \ \"40.81.192.0/19\",\r\n \"40.82.48.0/22\",\r\n \"40.87.200.0/22\",\r\n
+ \ \"40.90.16.160/27\",\r\n \"40.90.128.80/28\",\r\n \"40.90.132.64/28\",\r\n
+ \ \"40.90.142.0/27\",\r\n \"40.90.142.192/28\",\r\n \"40.90.148.224/27\",\r\n
+ \ \"40.90.152.192/27\",\r\n \"40.90.158.0/26\",\r\n \"40.115.128.0/17\",\r\n
+ \ \"40.126.13.128/25\",\r\n \"40.126.38.0/24\",\r\n \"52.108.191.0/24\",\r\n
+ \ \"52.108.228.0/23\",\r\n \"52.109.52.0/22\",\r\n \"52.111.232.0/24\",\r\n
+ \ \"52.112.176.0/21\",\r\n \"52.112.184.0/22\",\r\n \"52.113.78.0/23\",\r\n
+ \ \"52.113.102.0/24\",\r\n \"52.113.107.0/24\",\r\n \"52.113.133.0/24\",\r\n
+ \ \"52.114.32.0/22\",\r\n \"52.115.38.0/24\",\r\n \"52.115.47.0/24\",\r\n
+ \ \"52.121.120.0/23\",\r\n \"52.121.152.0/21\",\r\n \"52.121.160.0/22\",\r\n
+ \ \"52.121.164.0/24\",\r\n \"52.136.31.0/24\",\r\n \"52.140.192.0/18\",\r\n
+ \ \"52.155.96.0/19\",\r\n \"52.156.32.0/19\",\r\n \"52.185.128.0/18\",\r\n
+ \ \"52.232.155.0/24\",\r\n \"52.239.144.0/23\",\r\n \"52.243.32.0/19\",\r\n
+ \ \"52.245.36.0/22\",\r\n \"52.246.160.0/19\",\r\n \"52.253.96.0/19\",\r\n
+ \ \"52.253.161.0/24\",\r\n \"104.41.160.0/19\",\r\n \"104.44.88.224/27\",\r\n
+ \ \"104.44.91.224/27\",\r\n \"104.44.94.112/28\",\r\n \"104.46.208.0/20\",\r\n
+ \ \"138.91.0.0/20\",\r\n \"191.237.240.0/23\",\r\n \"2603:1040:400::/46\",\r\n
+ \ \"2603:1040:404::/48\",\r\n \"2603:1040:406::/48\",\r\n
+ \ \"2603:1040:407::/48\",\r\n \"2603:1046:1402::/48\",\r\n
+ \ \"2603:1046:1500:18::/64\",\r\n \"2603:1046:2000:140::/59\",\r\n
+ \ \"2603:1047:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.japanwest\",\r\n \"id\": \"AzureCloud.japanwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.73.232.0/21\",\r\n
+ \ \"20.39.176.0/21\",\r\n \"20.47.10.0/24\",\r\n \"20.47.66.0/24\",\r\n
+ \ \"20.47.99.0/24\",\r\n \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n
+ \ \"20.63.192.0/18\",\r\n \"20.78.128.0/18\",\r\n \"20.135.48.0/23\",\r\n
+ \ \"20.150.10.0/23\",\r\n \"20.157.56.0/24\",\r\n \"20.189.192.0/18\",\r\n
+ \ \"20.190.141.0/25\",\r\n \"20.190.165.0/24\",\r\n \"23.98.56.0/24\",\r\n
+ \ \"23.100.104.0/21\",\r\n \"40.74.64.0/18\",\r\n \"40.74.128.0/20\",\r\n
+ \ \"40.79.209.0/24\",\r\n \"40.80.56.0/21\",\r\n \"40.80.176.0/21\",\r\n
+ \ \"40.81.176.0/20\",\r\n \"40.82.100.0/22\",\r\n \"40.87.204.0/22\",\r\n
+ \ \"40.90.18.32/27\",\r\n \"40.90.27.192/26\",\r\n \"40.90.28.0/26\",\r\n
+ \ \"40.90.137.0/27\",\r\n \"40.90.142.208/28\",\r\n \"40.90.156.0/26\",\r\n
+ \ \"40.126.13.0/25\",\r\n \"40.126.37.0/24\",\r\n \"52.108.46.0/23\",\r\n
+ \ \"52.108.86.0/24\",\r\n \"52.109.132.0/22\",\r\n \"52.111.233.0/24\",\r\n
+ \ \"52.112.88.0/22\",\r\n \"52.113.14.0/24\",\r\n \"52.113.72.0/22\",\r\n
+ \ \"52.113.87.0/24\",\r\n \"52.113.106.0/24\",\r\n \"52.114.36.0/22\",\r\n
+ \ \"52.115.39.0/24\",\r\n \"52.115.100.0/22\",\r\n \"52.115.104.0/23\",\r\n
+ \ \"52.121.80.0/22\",\r\n \"52.121.84.0/23\",\r\n \"52.121.116.0/22\",\r\n
+ \ \"52.121.165.0/24\",\r\n \"52.121.168.0/22\",\r\n \"52.147.64.0/19\",\r\n
+ \ \"52.175.128.0/18\",\r\n \"52.232.158.0/24\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"52.245.92.0/22\",\r\n \"104.44.92.0/27\",\r\n \"104.44.94.128/28\",\r\n
+ \ \"104.46.224.0/20\",\r\n \"104.214.128.0/19\",\r\n \"104.215.0.0/18\",\r\n
+ \ \"138.91.16.0/20\",\r\n \"191.233.32.0/20\",\r\n \"191.237.236.0/24\",\r\n
+ \ \"191.238.68.0/24\",\r\n \"191.238.80.0/21\",\r\n \"191.238.88.0/22\",\r\n
+ \ \"191.238.92.0/23\",\r\n \"191.239.96.0/20\",\r\n \"2603:1040:600::/46\",\r\n
+ \ \"2603:1040:605::/48\",\r\n \"2603:1040:606::/48\",\r\n
+ \ \"2603:1046:1403::/48\",\r\n \"2603:1046:1500:14::/64\",\r\n
+ \ \"2603:1046:2000:a0::/59\",\r\n \"2603:1047:1:a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreacentral\",\r\n
+ \ \"id\": \"AzureCloud.koreacentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.129.192/26\",\r\n \"13.104.223.128/26\",\r\n
+ \ \"13.105.20.0/25\",\r\n \"13.105.96.112/28\",\r\n \"13.105.97.32/27\",\r\n
+ \ \"13.105.97.64/27\",\r\n \"20.39.184.0/21\",\r\n \"20.39.192.0/20\",\r\n
+ \ \"20.41.64.0/18\",\r\n \"20.44.24.0/21\",\r\n \"20.47.46.0/24\",\r\n
+ \ \"20.47.90.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.135.108.0/22\",\r\n
+ \ \"20.135.112.0/23\",\r\n \"20.150.4.0/23\",\r\n \"20.190.144.128/25\",\r\n
+ \ \"20.190.148.128/25\",\r\n \"20.190.180.0/24\",\r\n \"20.194.0.0/18\",\r\n
+ \ \"20.194.64.0/20\",\r\n \"20.194.80.0/21\",\r\n \"20.194.96.0/19\",\r\n
+ \ \"20.196.64.0/18\",\r\n \"20.196.128.0/17\",\r\n \"20.200.192.0/18\",\r\n
+ \ \"40.79.221.0/24\",\r\n \"40.80.36.0/22\",\r\n \"40.82.128.0/19\",\r\n
+ \ \"40.90.17.224/27\",\r\n \"40.90.128.176/28\",\r\n \"40.90.131.128/27\",\r\n
+ \ \"40.90.139.128/27\",\r\n \"40.90.156.64/27\",\r\n \"40.126.16.128/25\",\r\n
+ \ \"40.126.20.128/25\",\r\n \"40.126.52.0/24\",\r\n \"52.108.48.0/23\",\r\n
+ \ \"52.108.87.0/24\",\r\n \"52.109.44.0/22\",\r\n \"52.111.194.0/24\",\r\n
+ \ \"52.114.44.0/22\",\r\n \"52.115.106.0/23\",\r\n \"52.115.108.0/22\",\r\n
+ \ \"52.121.172.0/22\",\r\n \"52.121.176.0/23\",\r\n \"52.141.0.0/18\",\r\n
+ \ \"52.231.0.0/17\",\r\n \"52.232.145.0/24\",\r\n \"52.239.148.0/27\",\r\n
+ \ \"52.239.164.192/26\",\r\n \"52.239.190.128/26\",\r\n \"52.245.112.0/22\",\r\n
+ \ \"52.253.173.0/24\",\r\n \"52.253.174.0/24\",\r\n \"104.44.90.160/27\",\r\n
+ \ \"2603:1040:f00::/47\",\r\n \"2603:1040:f02::/48\",\r\n
+ \ \"2603:1040:f04::/48\",\r\n \"2603:1040:f05::/48\",\r\n
+ \ \"2603:1046:1404::/48\",\r\n \"2603:1046:1500:20::/64\",\r\n
+ \ \"2603:1046:2000:160::/59\",\r\n \"2603:1047:1:160::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.koreasouth\",\r\n
+ \ \"id\": \"AzureCloud.koreasouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.157.0/25\",\r\n \"20.39.168.0/21\",\r\n \"20.47.47.0/24\",\r\n
+ \ \"20.47.91.0/24\",\r\n \"20.135.26.0/23\",\r\n \"20.135.30.0/23\",\r\n
+ \ \"20.150.14.0/23\",\r\n \"20.190.148.0/25\",\r\n \"20.190.179.0/24\",\r\n
+ \ \"20.200.128.0/18\",\r\n \"40.79.220.0/24\",\r\n \"40.80.32.0/22\",\r\n
+ \ \"40.80.168.0/21\",\r\n \"40.80.224.0/20\",\r\n \"40.89.192.0/19\",\r\n
+ \ \"40.90.131.160/27\",\r\n \"40.90.139.160/27\",\r\n \"40.90.157.32/27\",\r\n
+ \ \"40.126.20.0/25\",\r\n \"40.126.51.0/24\",\r\n \"52.108.190.0/24\",\r\n
+ \ \"52.108.226.0/23\",\r\n \"52.109.48.0/22\",\r\n \"52.111.234.0/24\",\r\n
+ \ \"52.113.110.0/23\",\r\n \"52.114.48.0/22\",\r\n \"52.147.96.0/19\",\r\n
+ \ \"52.231.128.0/17\",\r\n \"52.232.144.0/24\",\r\n \"52.239.165.0/26\",\r\n
+ \ \"52.239.165.160/27\",\r\n \"52.239.190.192/26\",\r\n \"52.245.100.0/22\",\r\n
+ \ \"104.44.94.224/27\",\r\n \"2603:1040:e00::/47\",\r\n \"2603:1040:e02::/48\",\r\n
+ \ \"2603:1040:e04::/48\",\r\n \"2603:1040:e05::/48\",\r\n
+ \ \"2603:1046:1405::/48\",\r\n \"2603:1046:1500:1c::/64\",\r\n
+ \ \"2603:1046:2000:e0::/59\",\r\n \"2603:1047:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northcentralus\",\r\n
+ \ \"id\": \"AzureCloud.northcentralus\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.105.26.0/24\",\r\n \"13.105.28.16/28\",\r\n \"13.105.29.0/25\",\r\n
+ \ \"13.105.37.64/26\",\r\n \"13.105.37.128/26\",\r\n \"20.36.96.0/21\",\r\n
+ \ \"20.41.128.0/18\",\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n
+ \ \"20.47.107.0/24\",\r\n \"20.47.119.0/24\",\r\n \"20.49.112.0/21\",\r\n
+ \ \"20.51.0.0/21\",\r\n \"20.59.192.0/18\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.66.128.0/17\",\r\n \"20.72.32.0/19\",\r\n
+ \ \"20.80.0.0/18\",\r\n \"20.88.0.0/18\",\r\n \"20.135.12.0/22\",\r\n
+ \ \"20.135.70.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"20.190.135.0/24\",\r\n \"20.190.156.0/24\",\r\n
+ \ \"23.96.128.0/17\",\r\n \"23.98.48.0/21\",\r\n \"23.100.72.0/21\",\r\n
+ \ \"23.100.224.0/20\",\r\n \"23.101.160.0/20\",\r\n \"40.77.131.224/28\",\r\n
+ \ \"40.77.136.96/28\",\r\n \"40.77.137.192/27\",\r\n \"40.77.139.0/25\",\r\n
+ \ \"40.77.175.0/27\",\r\n \"40.77.176.0/24\",\r\n \"40.77.182.128/27\",\r\n
+ \ \"40.77.183.0/24\",\r\n \"40.77.188.0/22\",\r\n \"40.77.196.0/24\",\r\n
+ \ \"40.77.198.64/26\",\r\n \"40.77.200.128/25\",\r\n \"40.77.224.0/28\",\r\n
+ \ \"40.77.224.32/27\",\r\n \"40.77.231.0/24\",\r\n \"40.77.234.0/25\",\r\n
+ \ \"40.77.236.32/27\",\r\n \"40.77.236.160/28\",\r\n \"40.77.237.0/26\",\r\n
+ \ \"40.77.248.128/25\",\r\n \"40.77.254.0/26\",\r\n \"40.77.255.192/26\",\r\n
+ \ \"40.78.208.64/28\",\r\n \"40.78.222.0/24\",\r\n \"40.80.184.0/21\",\r\n
+ \ \"40.81.32.0/20\",\r\n \"40.87.172.0/22\",\r\n \"40.90.19.64/26\",\r\n
+ \ \"40.90.132.96/27\",\r\n \"40.90.133.128/28\",\r\n \"40.90.135.64/26\",\r\n
+ \ \"40.90.140.128/27\",\r\n \"40.90.144.32/27\",\r\n \"40.90.155.192/26\",\r\n
+ \ \"40.91.24.0/22\",\r\n \"40.116.0.0/16\",\r\n \"40.126.7.0/24\",\r\n
+ \ \"40.126.28.0/24\",\r\n \"52.108.182.0/24\",\r\n \"52.108.203.0/24\",\r\n
+ \ \"52.109.16.0/22\",\r\n \"52.111.235.0/24\",\r\n \"52.112.94.0/24\",\r\n
+ \ \"52.113.198.0/24\",\r\n \"52.114.168.0/22\",\r\n \"52.141.128.0/18\",\r\n
+ \ \"52.162.0.0/16\",\r\n \"52.232.156.0/24\",\r\n \"52.237.128.0/18\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"52.240.128.0/17\",\r\n \"52.245.72.0/22\",\r\n \"52.252.128.0/17\",\r\n
+ \ \"65.52.0.0/19\",\r\n \"65.52.48.0/20\",\r\n \"65.52.104.0/24\",\r\n
+ \ \"65.52.106.0/24\",\r\n \"65.52.192.0/19\",\r\n \"65.52.232.0/21\",\r\n
+ \ \"65.52.240.0/21\",\r\n \"65.55.60.176/29\",\r\n \"65.55.105.192/27\",\r\n
+ \ \"65.55.106.208/28\",\r\n \"65.55.106.224/28\",\r\n \"65.55.109.0/24\",\r\n
+ \ \"65.55.211.0/27\",\r\n \"65.55.212.0/27\",\r\n \"65.55.212.128/25\",\r\n
+ \ \"65.55.213.0/27\",\r\n \"65.55.218.0/24\",\r\n \"65.55.219.0/27\",\r\n
+ \ \"104.44.88.128/27\",\r\n \"104.44.91.128/27\",\r\n \"104.44.94.64/28\",\r\n
+ \ \"104.47.220.0/22\",\r\n \"131.253.12.16/28\",\r\n \"131.253.12.40/29\",\r\n
+ \ \"131.253.12.48/29\",\r\n \"131.253.12.192/28\",\r\n \"131.253.12.248/29\",\r\n
+ \ \"131.253.13.0/28\",\r\n \"131.253.13.32/28\",\r\n \"131.253.14.32/27\",\r\n
+ \ \"131.253.14.160/27\",\r\n \"131.253.14.248/29\",\r\n \"131.253.15.32/27\",\r\n
+ \ \"131.253.15.208/28\",\r\n \"131.253.15.224/27\",\r\n \"131.253.25.0/24\",\r\n
+ \ \"131.253.27.0/24\",\r\n \"131.253.36.128/26\",\r\n \"131.253.38.32/27\",\r\n
+ \ \"131.253.38.224/27\",\r\n \"131.253.40.16/28\",\r\n \"131.253.40.32/28\",\r\n
+ \ \"131.253.40.96/27\",\r\n \"131.253.40.192/26\",\r\n \"157.55.24.0/21\",\r\n
+ \ \"157.55.55.0/27\",\r\n \"157.55.55.32/28\",\r\n \"157.55.55.152/29\",\r\n
+ \ \"157.55.55.176/29\",\r\n \"157.55.55.200/29\",\r\n \"157.55.55.216/29\",\r\n
+ \ \"157.55.60.224/27\",\r\n \"157.55.64.0/20\",\r\n \"157.55.106.128/25\",\r\n
+ \ \"157.55.110.0/23\",\r\n \"157.55.115.0/25\",\r\n \"157.55.136.0/21\",\r\n
+ \ \"157.55.151.0/28\",\r\n \"157.55.160.0/20\",\r\n \"157.55.208.0/21\",\r\n
+ \ \"157.55.248.0/21\",\r\n \"157.56.8.0/21\",\r\n \"157.56.24.160/27\",\r\n
+ \ \"157.56.24.192/28\",\r\n \"157.56.28.0/22\",\r\n \"157.56.216.0/26\",\r\n
+ \ \"168.62.96.0/19\",\r\n \"168.62.224.0/19\",\r\n \"191.233.144.0/20\",\r\n
+ \ \"191.236.128.0/18\",\r\n \"199.30.31.0/25\",\r\n \"204.79.180.0/24\",\r\n
+ \ \"207.46.193.192/28\",\r\n \"207.46.193.224/27\",\r\n \"207.46.198.128/25\",\r\n
+ \ \"207.46.200.96/27\",\r\n \"207.46.200.176/28\",\r\n \"207.46.202.128/28\",\r\n
+ \ \"207.46.205.0/24\",\r\n \"207.68.174.40/29\",\r\n \"207.68.174.184/29\",\r\n
+ \ \"2603:1030:600::/46\",\r\n \"2603:1030:604::/47\",\r\n
+ \ \"2603:1030:607::/48\",\r\n \"2603:1030:608::/48\",\r\n
+ \ \"2603:1036:2406::/48\",\r\n \"2603:1036:2500:8::/64\",\r\n
+ \ \"2603:1036:3000:60::/59\",\r\n \"2603:1037:1:60::/59\",\r\n
+ \ \"2a01:111:f100:1000::/62\",\r\n \"2a01:111:f100:1004::/63\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.northeurope\",\r\n
+ \ \"id\": \"AzureCloud.northeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.128.0/17\",\r\n \"13.70.192.0/18\",\r\n \"13.74.0.0/16\",\r\n
+ \ \"13.79.0.0/16\",\r\n \"13.94.64.0/18\",\r\n \"13.104.148.0/25\",\r\n
+ \ \"13.104.149.128/25\",\r\n \"13.104.150.0/25\",\r\n \"13.104.208.160/28\",\r\n
+ \ \"13.104.210.0/24\",\r\n \"13.105.18.0/26\",\r\n \"13.105.21.0/24\",\r\n
+ \ \"13.105.28.48/28\",\r\n \"13.105.37.192/26\",\r\n \"13.105.60.192/26\",\r\n
+ \ \"13.105.67.0/25\",\r\n \"13.105.96.128/25\",\r\n \"20.38.64.0/19\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.47.111.0/24\",\r\n \"20.47.117.0/24\",\r\n
+ \ \"20.50.64.0/20\",\r\n \"20.50.80.0/21\",\r\n \"20.54.0.0/17\",\r\n
+ \ \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n \"20.60.144.0/23\",\r\n
+ \ \"20.67.128.0/17\",\r\n \"20.82.128.0/17\",\r\n \"20.93.0.0/17\",\r\n
+ \ \"20.135.20.0/22\",\r\n \"20.135.134.0/23\",\r\n \"20.135.136.0/22\",\r\n
+ \ \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n \"20.150.48.0/24\",\r\n
+ \ \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n \"20.150.104.0/24\",\r\n
+ \ \"20.190.129.0/24\",\r\n \"20.190.159.0/24\",\r\n \"20.191.0.0/18\",\r\n
+ \ \"23.100.48.0/20\",\r\n \"23.100.128.0/18\",\r\n \"23.101.48.0/20\",\r\n
+ \ \"23.102.0.0/18\",\r\n \"40.67.224.0/19\",\r\n \"40.69.0.0/18\",\r\n
+ \ \"40.69.64.0/19\",\r\n \"40.69.192.0/19\",\r\n \"40.77.133.0/24\",\r\n
+ \ \"40.77.136.32/28\",\r\n \"40.77.136.80/28\",\r\n \"40.77.165.0/24\",\r\n
+ \ \"40.77.174.0/24\",\r\n \"40.77.175.160/27\",\r\n \"40.77.182.96/27\",\r\n
+ \ \"40.77.226.128/25\",\r\n \"40.77.229.0/24\",\r\n \"40.77.234.160/27\",\r\n
+ \ \"40.77.236.0/27\",\r\n \"40.77.236.176/28\",\r\n \"40.77.255.0/25\",\r\n
+ \ \"40.78.211.0/24\",\r\n \"40.79.204.0/27\",\r\n \"40.79.204.32/28\",\r\n
+ \ \"40.79.204.64/27\",\r\n \"40.85.0.0/17\",\r\n \"40.85.128.0/20\",\r\n
+ \ \"40.87.128.0/19\",\r\n \"40.87.188.0/22\",\r\n \"40.90.17.192/27\",\r\n
+ \ \"40.90.25.64/26\",\r\n \"40.90.25.128/26\",\r\n \"40.90.31.128/25\",\r\n
+ \ \"40.90.128.16/28\",\r\n \"40.90.129.192/27\",\r\n \"40.90.130.224/28\",\r\n
+ \ \"40.90.133.64/27\",\r\n \"40.90.136.176/28\",\r\n \"40.90.137.192/27\",\r\n
+ \ \"40.90.140.64/27\",\r\n \"40.90.141.96/27\",\r\n \"40.90.141.128/27\",\r\n
+ \ \"40.90.145.0/27\",\r\n \"40.90.145.224/27\",\r\n \"40.90.147.96/27\",\r\n
+ \ \"40.90.148.160/28\",\r\n \"40.90.149.128/25\",\r\n \"40.90.153.128/25\",\r\n
+ \ \"40.91.20.0/22\",\r\n \"40.91.32.0/22\",\r\n \"40.112.36.0/25\",\r\n
+ \ \"40.112.37.64/26\",\r\n \"40.112.64.0/19\",\r\n \"40.113.0.0/18\",\r\n
+ \ \"40.113.64.0/19\",\r\n \"40.115.96.0/19\",\r\n \"40.126.1.0/24\",\r\n
+ \ \"40.126.31.0/24\",\r\n \"40.127.96.0/20\",\r\n \"40.127.128.0/17\",\r\n
+ \ \"51.104.64.0/18\",\r\n \"51.104.128.0/18\",\r\n \"52.108.174.0/23\",\r\n
+ \ \"52.108.176.0/24\",\r\n \"52.108.196.0/24\",\r\n \"52.108.240.0/21\",\r\n
+ \ \"52.109.76.0/22\",\r\n \"52.111.236.0/24\",\r\n \"52.112.191.0/24\",\r\n
+ \ \"52.112.229.0/24\",\r\n \"52.112.232.0/24\",\r\n \"52.112.236.0/24\",\r\n
+ \ \"52.113.40.0/21\",\r\n \"52.113.48.0/20\",\r\n \"52.113.112.0/20\",\r\n
+ \ \"52.113.136.0/21\",\r\n \"52.113.205.0/24\",\r\n \"52.114.76.0/22\",\r\n
+ \ \"52.114.96.0/21\",\r\n \"52.114.120.0/22\",\r\n \"52.114.231.0/24\",\r\n
+ \ \"52.114.233.0/24\",\r\n \"52.114.248.0/22\",\r\n \"52.115.16.0/21\",\r\n
+ \ \"52.115.24.0/22\",\r\n \"52.120.136.0/21\",\r\n \"52.120.192.0/20\",\r\n
+ \ \"52.121.16.0/21\",\r\n \"52.121.48.0/20\",\r\n \"52.125.138.0/23\",\r\n
+ \ \"52.138.128.0/17\",\r\n \"52.142.64.0/18\",\r\n \"52.143.195.0/24\",\r\n
+ \ \"52.143.209.0/24\",\r\n \"52.146.128.0/17\",\r\n \"52.155.64.0/19\",\r\n
+ \ \"52.155.128.0/17\",\r\n \"52.156.192.0/18\",\r\n \"52.158.0.0/17\",\r\n
+ \ \"52.164.0.0/16\",\r\n \"52.169.0.0/16\",\r\n \"52.178.128.0/17\",\r\n
+ \ \"52.232.148.0/24\",\r\n \"52.236.0.0/17\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/22\",\r\n
+ \ \"52.245.88.0/22\",\r\n \"65.52.64.0/20\",\r\n \"65.52.224.0/21\",\r\n
+ \ \"94.245.88.0/21\",\r\n \"94.245.104.0/21\",\r\n \"94.245.114.1/32\",\r\n
+ \ \"94.245.114.2/31\",\r\n \"94.245.114.4/32\",\r\n \"94.245.114.33/32\",\r\n
+ \ \"94.245.114.34/31\",\r\n \"94.245.114.36/32\",\r\n \"94.245.117.96/27\",\r\n
+ \ \"94.245.118.0/27\",\r\n \"94.245.118.65/32\",\r\n \"94.245.118.66/31\",\r\n
+ \ \"94.245.118.68/32\",\r\n \"94.245.118.97/32\",\r\n \"94.245.118.98/31\",\r\n
+ \ \"94.245.118.100/32\",\r\n \"94.245.118.129/32\",\r\n \"94.245.118.130/31\",\r\n
+ \ \"94.245.118.132/32\",\r\n \"94.245.120.128/28\",\r\n \"94.245.122.0/24\",\r\n
+ \ \"94.245.123.144/28\",\r\n \"94.245.123.176/28\",\r\n \"104.41.64.0/18\",\r\n
+ \ \"104.41.192.0/18\",\r\n \"104.44.88.64/27\",\r\n \"104.44.91.64/27\",\r\n
+ \ \"104.44.92.192/27\",\r\n \"104.44.94.32/28\",\r\n \"104.45.80.0/20\",\r\n
+ \ \"104.45.96.0/19\",\r\n \"104.46.8.0/21\",\r\n \"104.46.64.0/19\",\r\n
+ \ \"104.47.218.0/23\",\r\n \"131.253.40.80/28\",\r\n \"134.170.80.64/28\",\r\n
+ \ \"137.116.224.0/19\",\r\n \"137.135.128.0/17\",\r\n \"138.91.48.0/20\",\r\n
+ \ \"157.55.3.0/24\",\r\n \"157.55.10.160/29\",\r\n \"157.55.10.176/28\",\r\n
+ \ \"157.55.13.128/26\",\r\n \"157.55.107.0/24\",\r\n \"157.55.204.128/25\",\r\n
+ \ \"168.61.80.0/20\",\r\n \"168.61.96.0/19\",\r\n \"168.63.32.0/19\",\r\n
+ \ \"168.63.64.0/20\",\r\n \"168.63.80.0/21\",\r\n \"168.63.92.0/22\",\r\n
+ \ \"191.232.138.0/23\",\r\n \"191.235.128.0/18\",\r\n \"191.235.192.0/22\",\r\n
+ \ \"191.235.208.0/20\",\r\n \"191.235.255.0/24\",\r\n \"191.237.192.0/23\",\r\n
+ \ \"191.237.194.0/24\",\r\n \"191.237.196.0/24\",\r\n \"191.237.208.0/20\",\r\n
+ \ \"191.238.96.0/19\",\r\n \"191.239.208.0/20\",\r\n \"193.149.88.0/21\",\r\n
+ \ \"2603:1020::/47\",\r\n \"2603:1020:2::/48\",\r\n \"2603:1020:4::/48\",\r\n
+ \ \"2603:1020:5::/48\",\r\n \"2603:1026:2404::/48\",\r\n
+ \ \"2603:1026:3000:c0::/59\",\r\n \"2603:1027:1:c0::/59\",\r\n
+ \ \"2a01:111:f100:a000::/63\",\r\n \"2a01:111:f100:a002::/64\",\r\n
+ \ \"2a01:111:f100:a004::/64\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.norwaye\",\r\n \"id\": \"AzureCloud.norwaye\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.155.32/27\",\r\n
+ \ \"13.104.158.0/28\",\r\n \"13.104.158.32/27\",\r\n \"13.104.218.0/25\",\r\n
+ \ \"13.105.97.96/27\",\r\n \"13.105.97.128/28\",\r\n \"13.105.97.160/27\",\r\n
+ \ \"20.38.120.0/24\",\r\n \"20.47.48.0/24\",\r\n \"20.135.158.0/23\",\r\n
+ \ \"20.135.160.0/22\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\",\r\n
+ \ \"20.157.2.0/24\",\r\n \"20.190.185.0/24\",\r\n \"40.82.84.0/22\",\r\n
+ \ \"40.119.104.0/22\",\r\n \"40.126.57.0/24\",\r\n \"40.126.200.0/24\",\r\n
+ \ \"51.13.0.0/17\",\r\n \"51.107.208.0/20\",\r\n \"51.120.0.0/17\",\r\n
+ \ \"51.120.208.0/21\",\r\n \"51.120.232.0/21\",\r\n \"51.120.240.0/20\",\r\n
+ \ \"52.108.77.0/24\",\r\n \"52.108.98.0/24\",\r\n \"52.109.86.0/23\",\r\n
+ \ \"52.111.197.0/24\",\r\n \"52.114.234.0/24\",\r\n \"52.253.168.0/24\",\r\n
+ \ \"52.253.177.0/24\",\r\n \"52.253.178.0/24\",\r\n \"2603:1020:e00::/47\",\r\n
+ \ \"2603:1020:e03::/48\",\r\n \"2603:1020:e04::/48\",\r\n
+ \ \"2603:1026:240e::/48\",\r\n \"2603:1026:2500:28::/64\",\r\n
+ \ \"2603:1026:3000:180::/59\",\r\n \"2603:1027:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.norwayw\",\r\n
+ \ \"id\": \"AzureCloud.norwayw\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.153.48/28\",\r\n \"13.104.153.96/27\",\r\n
+ \ \"13.104.155.0/27\",\r\n \"13.104.217.128/25\",\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.135.58.0/23\",\r\n \"20.150.0.0/24\",\r\n
+ \ \"20.150.56.0/24\",\r\n \"20.157.3.0/24\",\r\n \"20.190.186.0/24\",\r\n
+ \ \"40.119.108.0/22\",\r\n \"40.126.58.0/24\",\r\n \"40.126.201.0/24\",\r\n
+ \ \"51.13.128.0/19\",\r\n \"51.120.128.0/18\",\r\n \"51.120.192.0/20\",\r\n
+ \ \"51.120.216.0/21\",\r\n \"51.120.224.0/21\",\r\n \"52.108.177.0/24\",\r\n
+ \ \"52.108.198.0/24\",\r\n \"52.109.144.0/23\",\r\n \"52.111.198.0/24\",\r\n
+ \ \"52.114.238.0/24\",\r\n \"52.253.167.0/24\",\r\n \"2603:1020:f00::/47\",\r\n
+ \ \"2603:1020:f03::/48\",\r\n \"2603:1020:f04::/48\",\r\n
+ \ \"2603:1026:2409::/48\",\r\n \"2603:1026:2500:10::/64\",\r\n
+ \ \"2603:1026:3000:80::/59\",\r\n \"2603:1027:1:80::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricanorth\",\r\n
+ \ \"id\": \"AzureCloud.southafricanorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.158.128/27\",\r\n \"13.104.158.160/28\",\r\n
+ \ \"13.104.158.192/27\",\r\n \"13.105.27.224/27\",\r\n \"20.38.114.128/25\",\r\n
+ \ \"20.45.128.0/21\",\r\n \"20.47.50.0/24\",\r\n \"20.47.92.0/24\",\r\n
+ \ \"20.60.190.0/23\",\r\n \"20.87.0.0/18\",\r\n \"20.135.78.0/23\",\r\n
+ \ \"20.135.80.0/22\",\r\n \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n
+ \ \"20.150.101.0/24\",\r\n \"20.190.190.0/26\",\r\n \"40.79.203.0/24\",\r\n
+ \ \"40.82.20.0/22\",\r\n \"40.82.120.0/22\",\r\n \"40.90.19.0/27\",\r\n
+ \ \"40.90.128.144/28\",\r\n \"40.90.130.144/28\",\r\n \"40.90.133.160/27\",\r\n
+ \ \"40.90.143.128/27\",\r\n \"40.90.151.64/27\",\r\n \"40.90.157.224/27\",\r\n
+ \ \"40.119.64.0/22\",\r\n \"40.120.16.0/20\",\r\n \"40.123.240.0/20\",\r\n
+ \ \"40.126.62.0/26\",\r\n \"40.127.0.0/19\",\r\n \"52.108.54.0/23\",\r\n
+ \ \"52.108.90.0/24\",\r\n \"52.109.150.0/23\",\r\n \"52.111.237.0/24\",\r\n
+ \ \"52.114.112.0/23\",\r\n \"52.114.224.0/24\",\r\n \"52.121.86.0/23\",\r\n
+ \ \"52.143.204.0/23\",\r\n \"52.143.206.0/24\",\r\n \"52.239.232.0/25\",\r\n
+ \ \"102.37.0.0/20\",\r\n \"102.37.16.0/21\",\r\n \"102.37.24.0/23\",\r\n
+ \ \"102.37.26.32/27\",\r\n \"102.37.32.0/19\",\r\n \"102.37.72.0/21\",\r\n
+ \ \"102.37.96.0/19\",\r\n \"102.37.128.0/19\",\r\n \"102.37.160.0/21\",\r\n
+ \ \"102.37.192.0/18\",\r\n \"102.133.120.0/21\",\r\n \"102.133.128.0/18\",\r\n
+ \ \"102.133.192.0/19\",\r\n \"102.133.224.0/20\",\r\n \"102.133.240.0/25\",\r\n
+ \ \"102.133.240.128/26\",\r\n \"102.133.248.0/21\",\r\n \"2603:1000:100::/47\",\r\n
+ \ \"2603:1000:103::/48\",\r\n \"2603:1000:104::/48\",\r\n
+ \ \"2603:1006:1400::/63\",\r\n \"2603:1006:1500:4::/64\",\r\n
+ \ \"2603:1006:2000::/59\",\r\n \"2603:1007:200::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southafricawest\",\r\n
+ \ \"id\": \"AzureCloud.southafricawest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.160/27\",\r\n \"20.38.121.0/25\",\r\n
+ \ \"20.45.136.0/21\",\r\n \"20.47.51.0/24\",\r\n \"20.47.93.0/24\",\r\n
+ \ \"20.60.8.0/24\",\r\n \"20.135.32.0/23\",\r\n \"20.150.20.0/25\",\r\n
+ \ \"20.190.189.192/26\",\r\n \"40.78.209.0/24\",\r\n \"40.82.64.0/22\",\r\n
+ \ \"40.90.17.0/27\",\r\n \"40.90.128.96/28\",\r\n \"40.90.152.224/27\",\r\n
+ \ \"40.117.0.0/19\",\r\n \"40.119.68.0/22\",\r\n \"40.126.61.192/26\",\r\n
+ \ \"52.108.187.0/24\",\r\n \"52.108.220.0/23\",\r\n \"52.109.152.0/23\",\r\n
+ \ \"52.111.238.0/24\",\r\n \"52.114.228.0/24\",\r\n \"52.143.203.0/24\",\r\n
+ \ \"52.239.232.128/25\",\r\n \"102.37.26.0/27\",\r\n \"102.37.64.0/21\",\r\n
+ \ \"102.37.80.0/21\",\r\n \"102.133.0.0/18\",\r\n \"102.133.64.0/19\",\r\n
+ \ \"102.133.96.0/20\",\r\n \"102.133.112.0/28\",\r\n \"2603:1000::/47\",\r\n
+ \ \"2603:1000:3::/48\",\r\n \"2603:1000:4::/48\",\r\n \"2603:1006:1401::/63\",\r\n
+ \ \"2603:1006:1500::/64\",\r\n \"2603:1006:2000:20::/59\",\r\n
+ \ \"2603:1007:200:20::/59\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southcentralus\",\r\n \"id\": \"AzureCloud.southcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.65.0.0/16\",\r\n
+ \ \"13.66.0.0/17\",\r\n \"13.73.240.0/20\",\r\n \"13.84.0.0/15\",\r\n
+ \ \"13.104.144.64/27\",\r\n \"13.104.208.128/27\",\r\n \"13.104.217.0/25\",\r\n
+ \ \"13.104.220.128/25\",\r\n \"13.105.23.0/26\",\r\n \"13.105.25.0/24\",\r\n
+ \ \"13.105.53.0/25\",\r\n \"13.105.60.0/27\",\r\n \"13.105.60.32/28\",\r\n
+ \ \"13.105.60.64/27\",\r\n \"13.105.66.192/26\",\r\n \"20.38.104.0/23\",\r\n
+ \ \"20.45.0.0/18\",\r\n \"20.45.120.0/21\",\r\n \"20.47.0.0/24\",\r\n
+ \ \"20.47.24.0/23\",\r\n \"20.47.29.0/24\",\r\n \"20.47.69.0/24\",\r\n
+ \ \"20.47.100.0/24\",\r\n \"20.49.88.0/21\",\r\n \"20.60.48.0/22\",\r\n
+ \ \"20.60.64.0/22\",\r\n \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n
+ \ \"20.60.160.0/23\",\r\n \"20.64.0.0/17\",\r\n \"20.65.128.0/17\",\r\n
+ \ \"20.88.192.0/18\",\r\n \"20.135.8.0/22\",\r\n \"20.135.216.0/22\",\r\n
+ \ \"20.135.220.0/23\",\r\n \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n
+ \ \"20.150.70.0/24\",\r\n \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n
+ \ \"20.150.94.0/24\",\r\n \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n
+ \ \"20.188.64.0/19\",\r\n \"20.189.0.0/18\",\r\n \"20.190.128.0/24\",\r\n
+ \ \"20.190.157.0/24\",\r\n \"23.98.128.0/17\",\r\n \"23.100.120.0/21\",\r\n
+ \ \"23.101.176.0/20\",\r\n \"23.102.128.0/18\",\r\n \"40.74.160.0/19\",\r\n
+ \ \"40.74.192.0/18\",\r\n \"40.77.130.192/26\",\r\n \"40.77.131.0/25\",\r\n
+ \ \"40.77.131.128/26\",\r\n \"40.77.172.0/24\",\r\n \"40.77.199.0/25\",\r\n
+ \ \"40.77.225.0/24\",\r\n \"40.78.214.0/24\",\r\n \"40.79.206.160/27\",\r\n
+ \ \"40.79.206.192/27\",\r\n \"40.79.207.80/28\",\r\n \"40.79.207.128/25\",\r\n
+ \ \"40.80.192.0/19\",\r\n \"40.84.128.0/17\",\r\n \"40.86.128.0/19\",\r\n
+ \ \"40.87.176.0/25\",\r\n \"40.87.176.128/27\",\r\n \"40.87.176.160/29\",\r\n
+ \ \"40.87.176.174/31\",\r\n \"40.87.176.184/30\",\r\n \"40.87.176.192/28\",\r\n
+ \ \"40.87.176.216/29\",\r\n \"40.87.176.224/29\",\r\n \"40.87.176.232/31\",\r\n
+ \ \"40.87.176.240/28\",\r\n \"40.87.177.16/28\",\r\n \"40.87.177.32/27\",\r\n
+ \ \"40.87.177.64/27\",\r\n \"40.87.177.96/28\",\r\n \"40.87.177.112/29\",\r\n
+ \ \"40.87.177.120/31\",\r\n \"40.87.177.124/30\",\r\n \"40.87.177.128/28\",\r\n
+ \ \"40.87.177.144/29\",\r\n \"40.87.177.152/31\",\r\n \"40.87.177.156/30\",\r\n
+ \ \"40.87.177.160/27\",\r\n \"40.87.177.192/29\",\r\n \"40.87.177.200/30\",\r\n
+ \ \"40.87.177.212/30\",\r\n \"40.87.177.216/29\",\r\n \"40.87.177.224/27\",\r\n
+ \ \"40.87.178.0/26\",\r\n \"40.87.178.64/29\",\r\n \"40.90.16.128/27\",\r\n
+ \ \"40.90.18.64/26\",\r\n \"40.90.27.64/26\",\r\n \"40.90.27.128/26\",\r\n
+ \ \"40.90.28.64/26\",\r\n \"40.90.28.128/26\",\r\n \"40.90.30.160/27\",\r\n
+ \ \"40.90.128.224/28\",\r\n \"40.90.133.96/28\",\r\n \"40.90.135.128/25\",\r\n
+ \ \"40.90.136.160/28\",\r\n \"40.90.145.160/27\",\r\n \"40.90.148.0/26\",\r\n
+ \ \"40.90.152.160/27\",\r\n \"40.90.155.0/26\",\r\n \"40.91.16.0/22\",\r\n
+ \ \"40.93.5.0/24\",\r\n \"40.119.0.0/18\",\r\n \"40.124.0.0/16\",\r\n
+ \ \"40.126.0.0/24\",\r\n \"40.126.29.0/24\",\r\n \"52.101.11.0/24\",\r\n
+ \ \"52.101.12.0/22\",\r\n \"52.102.132.0/24\",\r\n \"52.103.6.0/24\",\r\n
+ \ \"52.103.132.0/24\",\r\n \"52.108.102.0/23\",\r\n \"52.108.104.0/24\",\r\n
+ \ \"52.108.197.0/24\",\r\n \"52.108.248.0/21\",\r\n \"52.109.20.0/22\",\r\n
+ \ \"52.111.239.0/24\",\r\n \"52.112.24.0/21\",\r\n \"52.112.117.0/24\",\r\n
+ \ \"52.113.160.0/19\",\r\n \"52.113.206.0/24\",\r\n \"52.114.144.0/22\",\r\n
+ \ \"52.115.68.0/22\",\r\n \"52.115.72.0/22\",\r\n \"52.115.84.0/22\",\r\n
+ \ \"52.120.0.0/19\",\r\n \"52.120.152.0/22\",\r\n \"52.121.0.0/21\",\r\n
+ \ \"52.123.3.0/24\",\r\n \"52.125.137.0/24\",\r\n \"52.141.64.0/18\",\r\n
+ \ \"52.152.0.0/17\",\r\n \"52.153.64.0/18\",\r\n \"52.153.192.0/18\",\r\n
+ \ \"52.171.0.0/16\",\r\n \"52.183.192.0/18\",\r\n \"52.185.192.0/18\",\r\n
+ \ \"52.189.128.0/18\",\r\n \"52.232.159.0/24\",\r\n \"52.239.158.0/23\",\r\n
+ \ \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n
+ \ \"52.239.200.0/23\",\r\n \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n
+ \ \"52.245.24.0/22\",\r\n \"52.248.0.0/17\",\r\n \"52.249.0.0/18\",\r\n
+ \ \"52.253.0.0/18\",\r\n \"52.253.179.0/24\",\r\n \"52.253.180.0/24\",\r\n
+ \ \"52.255.64.0/18\",\r\n \"65.52.32.0/21\",\r\n \"65.54.55.160/27\",\r\n
+ \ \"65.54.55.224/27\",\r\n \"70.37.48.0/20\",\r\n \"70.37.64.0/18\",\r\n
+ \ \"70.37.160.0/21\",\r\n \"104.44.89.0/27\",\r\n \"104.44.89.64/27\",\r\n
+ \ \"104.44.92.64/27\",\r\n \"104.44.94.160/27\",\r\n \"104.44.128.0/18\",\r\n
+ \ \"104.47.208.0/23\",\r\n \"104.210.128.0/19\",\r\n \"104.210.176.0/20\",\r\n
+ \ \"104.210.192.0/19\",\r\n \"104.214.0.0/17\",\r\n \"104.215.64.0/18\",\r\n
+ \ \"131.253.40.64/28\",\r\n \"157.55.51.224/28\",\r\n \"157.55.80.0/21\",\r\n
+ \ \"157.55.103.32/27\",\r\n \"157.55.153.224/28\",\r\n \"157.55.176.0/20\",\r\n
+ \ \"157.55.192.0/21\",\r\n \"157.55.200.0/22\",\r\n \"157.55.204.1/32\",\r\n
+ \ \"157.55.204.2/31\",\r\n \"157.55.204.33/32\",\r\n \"157.55.204.34/31\",\r\n
+ \ \"168.62.128.0/19\",\r\n \"191.238.144.0/20\",\r\n \"191.238.160.0/19\",\r\n
+ \ \"191.238.224.0/19\",\r\n \"2603:1030:800::/48\",\r\n \"2603:1030:802::/47\",\r\n
+ \ \"2603:1030:804::/58\",\r\n \"2603:1030:804:40::/60\",\r\n
+ \ \"2603:1030:804:53::/64\",\r\n \"2603:1030:804:54::/64\",\r\n
+ \ \"2603:1030:804:5b::/64\",\r\n \"2603:1030:804:5c::/62\",\r\n
+ \ \"2603:1030:804:60::/62\",\r\n \"2603:1030:804:67::/64\",\r\n
+ \ \"2603:1030:804:68::/61\",\r\n \"2603:1030:804:70::/60\",\r\n
+ \ \"2603:1030:804:80::/59\",\r\n \"2603:1030:804:a0::/62\",\r\n
+ \ \"2603:1030:804:a4::/64\",\r\n \"2603:1030:804:a6::/63\",\r\n
+ \ \"2603:1030:804:a8::/61\",\r\n \"2603:1030:804:b0::/62\",\r\n
+ \ \"2603:1030:804:b4::/64\",\r\n \"2603:1030:804:b6::/63\",\r\n
+ \ \"2603:1030:804:b8::/61\",\r\n \"2603:1030:804:c0::/61\",\r\n
+ \ \"2603:1030:804:c8::/62\",\r\n \"2603:1030:804:cc::/63\",\r\n
+ \ \"2603:1030:804:d2::/63\",\r\n \"2603:1030:804:d4::/62\",\r\n
+ \ \"2603:1030:804:d8::/61\",\r\n \"2603:1030:804:e0::/59\",\r\n
+ \ \"2603:1030:804:100::/61\",\r\n \"2603:1030:804:108::/62\",\r\n
+ \ \"2603:1030:805::/48\",\r\n \"2603:1030:806::/48\",\r\n
+ \ \"2603:1030:807::/48\",\r\n \"2603:1036:2407::/48\",\r\n
+ \ \"2603:1036:2500:24::/64\",\r\n \"2603:1036:3000:140::/59\",\r\n
+ \ \"2603:1037:1:140::/59\",\r\n \"2a01:111:f100:4002::/64\",\r\n
+ \ \"2a01:111:f100:5000::/52\",\r\n \"2a01:111:f403:c10c::/62\",\r\n
+ \ \"2a01:111:f403:c90c::/62\",\r\n \"2a01:111:f403:d10c::/62\",\r\n
+ \ \"2a01:111:f403:d90c::/62\",\r\n \"2a01:111:f403:e00c::/62\",\r\n
+ \ \"2a01:111:f403:f90c::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCloud.southeastasia\",\r\n \"id\": \"AzureCloud.southeastasia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.67.0.0/17\",\r\n
+ \ \"13.76.0.0/16\",\r\n \"13.104.149.0/26\",\r\n \"13.104.153.0/27\",\r\n
+ \ \"13.104.153.32/28\",\r\n \"13.104.153.64/27\",\r\n \"13.104.153.192/26\",\r\n
+ \ \"13.104.154.0/25\",\r\n \"13.104.213.128/25\",\r\n \"20.43.128.0/18\",\r\n
+ \ \"20.44.192.0/18\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.47.64.0/24\",\r\n \"20.47.98.0/24\",\r\n \"20.60.136.0/24\",\r\n
+ \ \"20.60.138.0/23\",\r\n \"20.135.84.0/22\",\r\n \"20.135.88.0/23\",\r\n
+ \ \"20.150.17.128/25\",\r\n \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n
+ \ \"20.150.127.0/24\",\r\n \"20.184.0.0/18\",\r\n \"20.188.96.0/19\",\r\n
+ \ \"20.190.64.0/19\",\r\n \"20.190.140.0/25\",\r\n \"20.190.163.0/24\",\r\n
+ \ \"20.191.128.0/19\",\r\n \"20.195.0.0/18\",\r\n \"20.195.64.0/21\",\r\n
+ \ \"20.195.80.0/21\",\r\n \"20.195.96.0/19\",\r\n \"20.197.64.0/18\",\r\n
+ \ \"20.198.128.0/17\",\r\n \"23.97.48.0/20\",\r\n \"23.98.64.0/18\",\r\n
+ \ \"23.100.112.0/21\",\r\n \"23.101.16.0/20\",\r\n \"40.65.128.0/18\",\r\n
+ \ \"40.78.223.0/24\",\r\n \"40.78.232.0/21\",\r\n \"40.79.206.32/27\",\r\n
+ \ \"40.82.28.0/22\",\r\n \"40.87.196.0/22\",\r\n \"40.90.133.192/26\",\r\n
+ \ \"40.90.134.0/26\",\r\n \"40.90.137.64/27\",\r\n \"40.90.138.96/27\",\r\n
+ \ \"40.90.146.160/27\",\r\n \"40.90.146.224/27\",\r\n \"40.90.154.128/26\",\r\n
+ \ \"40.90.160.0/19\",\r\n \"40.119.192.0/18\",\r\n \"40.126.12.0/25\",\r\n
+ \ \"40.126.35.0/24\",\r\n \"52.108.68.0/23\",\r\n \"52.108.91.0/24\",\r\n
+ \ \"52.108.184.0/24\",\r\n \"52.108.195.0/24\",\r\n \"52.108.206.0/23\",\r\n
+ \ \"52.108.236.0/22\",\r\n \"52.109.124.0/22\",\r\n \"52.111.240.0/24\",\r\n
+ \ \"52.112.40.0/21\",\r\n \"52.112.48.0/20\",\r\n \"52.113.101.0/24\",\r\n
+ \ \"52.113.105.0/24\",\r\n \"52.113.109.0/24\",\r\n \"52.113.131.0/24\",\r\n
+ \ \"52.114.8.0/21\",\r\n \"52.114.54.0/23\",\r\n \"52.114.56.0/23\",\r\n
+ \ \"52.114.80.0/22\",\r\n \"52.114.216.0/22\",\r\n \"52.115.32.0/22\",\r\n
+ \ \"52.115.36.0/23\",\r\n \"52.115.97.0/24\",\r\n \"52.120.144.0/21\",\r\n
+ \ \"52.120.156.0/24\",\r\n \"52.121.128.0/20\",\r\n \"52.121.144.0/21\",\r\n
+ \ \"52.136.26.0/24\",\r\n \"52.139.192.0/18\",\r\n \"52.143.196.0/24\",\r\n
+ \ \"52.143.210.0/24\",\r\n \"52.148.64.0/18\",\r\n \"52.163.0.0/16\",\r\n
+ \ \"52.187.0.0/17\",\r\n \"52.187.128.0/18\",\r\n \"52.230.0.0/17\",\r\n
+ \ \"52.237.64.0/18\",\r\n \"52.239.129.0/24\",\r\n \"52.239.197.0/24\",\r\n
+ \ \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n \"52.245.80.0/22\",\r\n
+ \ \"52.253.80.0/20\",\r\n \"104.43.0.0/17\",\r\n \"104.44.89.32/27\",\r\n
+ \ \"104.44.90.128/27\",\r\n \"104.44.92.32/27\",\r\n \"104.44.94.144/28\",\r\n
+ \ \"104.44.95.192/28\",\r\n \"104.44.95.224/28\",\r\n \"104.215.128.0/17\",\r\n
+ \ \"111.221.80.0/20\",\r\n \"111.221.96.0/20\",\r\n \"137.116.128.0/19\",\r\n
+ \ \"138.91.32.0/20\",\r\n \"168.63.90.0/24\",\r\n \"168.63.91.0/26\",\r\n
+ \ \"168.63.160.0/19\",\r\n \"168.63.224.0/19\",\r\n \"191.238.64.0/23\",\r\n
+ \ \"207.46.50.128/28\",\r\n \"207.46.59.64/27\",\r\n \"207.46.63.64/27\",\r\n
+ \ \"207.46.63.128/25\",\r\n \"207.46.224.0/20\",\r\n \"2603:1040::/47\",\r\n
+ \ \"2603:1040:2::/48\",\r\n \"2603:1040:4::/48\",\r\n \"2603:1040:5::/48\",\r\n
+ \ \"2603:1046:1406::/48\",\r\n \"2603:1046:1500:28::/64\",\r\n
+ \ \"2603:1046:2000:180::/59\",\r\n \"2603:1047:1:180::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southfrance\",\r\n
+ \ \"id\": \"AzureCloud.southfrance\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.150.192/26\",\r\n \"13.104.151.0/26\",\r\n
+ \ \"20.38.188.0/22\",\r\n \"20.39.80.0/20\",\r\n \"20.47.28.0/24\",\r\n
+ \ \"20.47.102.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.135.28.0/23\",\r\n \"20.150.19.0/24\",\r\n \"20.190.147.128/25\",\r\n
+ \ \"20.190.178.0/24\",\r\n \"40.79.176.0/21\",\r\n \"40.79.223.0/24\",\r\n
+ \ \"40.80.20.0/22\",\r\n \"40.80.96.0/20\",\r\n \"40.82.224.0/20\",\r\n
+ \ \"40.90.132.32/28\",\r\n \"40.90.136.192/27\",\r\n \"40.90.147.224/27\",\r\n
+ \ \"40.126.19.128/25\",\r\n \"40.126.50.0/24\",\r\n \"51.105.88.0/21\",\r\n
+ \ \"51.138.128.0/19\",\r\n \"51.138.160.0/21\",\r\n \"52.108.188.0/24\",\r\n
+ \ \"52.108.222.0/23\",\r\n \"52.109.72.0/22\",\r\n \"52.111.253.0/24\",\r\n
+ \ \"52.114.108.0/22\",\r\n \"52.136.8.0/21\",\r\n \"52.136.28.0/24\",\r\n
+ \ \"52.136.128.0/18\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\",\r\n
+ \ \"52.245.120.0/22\",\r\n \"2603:1020:900::/47\",\r\n \"2603:1020:902::/48\",\r\n
+ \ \"2603:1020:904::/48\",\r\n \"2603:1020:905::/48\",\r\n
+ \ \"2603:1026:2401::/48\",\r\n \"2603:1026:2500:2c::/64\",\r\n
+ \ \"2603:1026:3000:1a0::/59\",\r\n \"2603:1027:1:1a0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.southindia\",\r\n
+ \ \"id\": \"AzureCloud.southindia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.64.0/18\",\r\n \"13.104.153.128/26\",\r\n
+ \ \"20.40.0.0/21\",\r\n \"20.41.192.0/18\",\r\n \"20.44.32.0/19\",\r\n
+ \ \"20.47.52.0/24\",\r\n \"20.47.72.0/23\",\r\n \"20.60.10.0/24\",\r\n
+ \ \"20.135.42.0/23\",\r\n \"20.150.24.0/24\",\r\n \"20.190.145.128/25\",\r\n
+ \ \"20.190.174.0/24\",\r\n \"20.192.128.0/19\",\r\n \"20.192.184.0/21\",\r\n
+ \ \"40.78.192.0/21\",\r\n \"40.79.213.0/24\",\r\n \"40.81.64.0/20\",\r\n
+ \ \"40.87.216.0/22\",\r\n \"40.90.26.64/26\",\r\n \"40.90.137.160/27\",\r\n
+ \ \"40.126.17.128/25\",\r\n \"40.126.46.0/24\",\r\n \"52.108.192.0/24\",\r\n
+ \ \"52.108.230.0/23\",\r\n \"52.109.60.0/22\",\r\n \"52.111.241.0/24\",\r\n
+ \ \"52.113.15.0/24\",\r\n \"52.114.24.0/22\",\r\n \"52.136.17.0/24\",\r\n
+ \ \"52.140.0.0/18\",\r\n \"52.172.0.0/17\",\r\n \"52.239.135.128/26\",\r\n
+ \ \"52.239.188.0/24\",\r\n \"52.245.84.0/22\",\r\n \"104.44.92.160/27\",\r\n
+ \ \"104.44.94.208/28\",\r\n \"104.47.214.0/23\",\r\n \"104.211.192.0/18\",\r\n
+ \ \"2603:1040:c00::/46\",\r\n \"2603:1040:c05::/48\",\r\n
+ \ \"2603:1040:c06::/48\",\r\n \"2603:1046:1407::/48\",\r\n
+ \ \"2603:1046:1500:4::/64\",\r\n \"2603:1046:2000:60::/59\",\r\n
+ \ \"2603:1047:1:60::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.switzerlandn\",\r\n \"id\": \"AzureCloud.switzerlandn\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.144.32/27\",\r\n
+ \ \"13.104.211.192/26\",\r\n \"20.47.53.0/24\",\r\n \"20.47.71.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.135.170.0/23\",\r\n \"20.135.172.0/22\",\r\n
+ \ \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n \"20.190.183.0/24\",\r\n
+ \ \"20.199.128.0/18\",\r\n \"40.90.30.128/27\",\r\n \"40.90.128.208/28\",\r\n
+ \ \"40.119.80.0/22\",\r\n \"40.126.55.0/24\",\r\n \"40.126.194.0/24\",\r\n
+ \ \"51.103.128.0/18\",\r\n \"51.103.192.32/27\",\r\n \"51.103.224.0/19\",\r\n
+ \ \"51.107.0.0/18\",\r\n \"51.107.64.0/19\",\r\n \"51.107.128.0/21\",\r\n
+ \ \"51.107.200.0/21\",\r\n \"51.107.240.0/21\",\r\n \"52.108.75.0/24\",\r\n
+ \ \"52.108.96.0/24\",\r\n \"52.109.156.0/23\",\r\n \"52.111.202.0/24\",\r\n
+ \ \"52.114.226.0/24\",\r\n \"52.239.251.0/24\",\r\n \"52.253.165.0/24\",\r\n
+ \ \"52.253.175.0/24\",\r\n \"52.253.176.0/24\",\r\n \"2603:1020:a00::/47\",\r\n
+ \ \"2603:1020:a03::/48\",\r\n \"2603:1020:a04::/48\",\r\n
+ \ \"2603:1026:240b::/48\",\r\n \"2603:1026:2500:c::/64\",\r\n
+ \ \"2603:1026:3000:60::/59\",\r\n \"2603:1027:1:60::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.switzerlandw\",\r\n
+ \ \"id\": \"AzureCloud.switzerlandw\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.144.0/27\",\r\n \"13.104.212.0/26\",\r\n
+ \ \"20.47.26.0/24\",\r\n \"20.47.67.0/24\",\r\n \"20.47.103.0/24\",\r\n
+ \ \"20.60.176.0/23\",\r\n \"20.135.62.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"20.190.184.0/24\",\r\n \"20.199.192.0/18\",\r\n
+ \ \"40.90.19.32/27\",\r\n \"40.90.128.192/28\",\r\n \"40.119.84.0/22\",\r\n
+ \ \"40.126.56.0/24\",\r\n \"40.126.195.0/24\",\r\n \"51.103.192.0/27\",\r\n
+ \ \"51.107.96.0/19\",\r\n \"51.107.136.0/21\",\r\n \"51.107.144.0/20\",\r\n
+ \ \"51.107.160.0/20\",\r\n \"51.107.192.0/21\",\r\n \"51.107.224.0/20\",\r\n
+ \ \"51.107.248.0/21\",\r\n \"52.108.179.0/24\",\r\n \"52.108.200.0/24\",\r\n
+ \ \"52.109.158.0/23\",\r\n \"52.111.203.0/24\",\r\n \"52.114.230.0/24\",\r\n
+ \ \"52.239.250.0/24\",\r\n \"52.253.166.0/24\",\r\n \"2603:1020:b00::/47\",\r\n
+ \ \"2603:1020:b03::/48\",\r\n \"2603:1020:b04::/48\",\r\n
+ \ \"2603:1026:240c::/48\",\r\n \"2603:1026:2500:20::/64\",\r\n
+ \ \"2603:1026:3000:120::/59\",\r\n \"2603:1027:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaecentral\",\r\n
+ \ \"id\": \"AzureCloud.uaecentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.159.128/26\",\r\n \"20.37.64.0/19\",\r\n
+ \ \"20.45.64.0/19\",\r\n \"20.46.200.0/21\",\r\n \"20.46.208.0/20\",\r\n
+ \ \"20.47.54.0/24\",\r\n \"20.47.94.0/24\",\r\n \"20.135.36.0/23\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"20.190.188.0/24\",\r\n
+ \ \"40.82.52.0/22\",\r\n \"40.90.16.64/27\",\r\n \"40.90.128.48/28\",\r\n
+ \ \"40.90.151.224/27\",\r\n \"40.119.76.0/22\",\r\n \"40.120.0.0/20\",\r\n
+ \ \"40.125.0.0/19\",\r\n \"40.126.60.0/24\",\r\n \"40.126.193.0/24\",\r\n
+ \ \"40.126.208.0/20\",\r\n \"52.108.183.0/24\",\r\n \"52.108.204.0/23\",\r\n
+ \ \"52.109.160.0/23\",\r\n \"52.111.247.0/24\",\r\n \"52.114.232.0/24\",\r\n
+ \ \"52.143.221.0/24\",\r\n \"52.239.233.0/25\",\r\n \"2603:1040:b00::/47\",\r\n
+ \ \"2603:1040:b03::/48\",\r\n \"2603:1040:b04::/48\",\r\n
+ \ \"2603:1046:140b::/48\",\r\n \"2603:1046:1500:30::/64\",\r\n
+ \ \"2603:1046:2000:120::/59\",\r\n \"2603:1047:1:120::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uaenorth\",\r\n
+ \ \"id\": \"AzureCloud.uaenorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.104.151.64/26\",\r\n \"13.104.151.128/26\",\r\n
+ \ \"13.105.61.16/28\",\r\n \"13.105.61.64/26\",\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.38.136.0/21\",\r\n \"20.38.152.0/21\",\r\n \"20.46.32.0/19\",\r\n
+ \ \"20.46.144.0/20\",\r\n \"20.46.192.0/21\",\r\n \"20.47.55.0/24\",\r\n
+ \ \"20.47.95.0/24\",\r\n \"20.60.21.0/24\",\r\n \"20.74.128.0/18\",\r\n
+ \ \"20.135.114.0/23\",\r\n \"20.135.116.0/22\",\r\n \"20.190.187.0/24\",\r\n
+ \ \"20.196.0.0/18\",\r\n \"40.90.16.96/27\",\r\n \"40.90.128.64/28\",\r\n
+ \ \"40.90.152.128/27\",\r\n \"40.119.72.0/22\",\r\n \"40.119.160.0/19\",\r\n
+ \ \"40.120.64.0/18\",\r\n \"40.123.192.0/19\",\r\n \"40.123.224.0/20\",\r\n
+ \ \"40.126.59.0/24\",\r\n \"40.126.192.0/24\",\r\n \"52.108.70.0/23\",\r\n
+ \ \"52.108.92.0/24\",\r\n \"52.109.162.0/23\",\r\n \"52.111.204.0/24\",\r\n
+ \ \"52.112.200.0/22\",\r\n \"52.112.204.0/23\",\r\n \"52.112.207.0/24\",\r\n
+ \ \"52.114.236.0/24\",\r\n \"52.121.100.0/22\",\r\n \"52.121.104.0/23\",\r\n
+ \ \"52.143.202.0/24\",\r\n \"52.143.222.0/23\",\r\n \"52.239.233.128/25\",\r\n
+ \ \"65.52.248.0/21\",\r\n \"2603:1040:900::/47\",\r\n \"2603:1040:903::/48\",\r\n
+ \ \"2603:1040:904::/48\",\r\n \"2603:1046:140a::/48\",\r\n
+ \ \"2603:1046:1500:2c::/64\",\r\n \"2603:1046:2000:100::/59\",\r\n
+ \ \"2603:1047:1:100::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uknorth\",\r\n \"id\": \"AzureCloud.uknorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.87.64.0/18\",\r\n
+ \ \"20.39.144.0/20\",\r\n \"20.45.160.0/19\",\r\n \"20.150.46.0/24\",\r\n
+ \ \"20.190.143.128/25\",\r\n \"20.190.170.0/24\",\r\n \"40.79.202.0/24\",\r\n
+ \ \"40.80.16.0/22\",\r\n \"40.81.96.0/20\",\r\n \"40.90.130.112/28\",\r\n
+ \ \"40.90.143.32/27\",\r\n \"40.90.150.64/27\",\r\n \"40.126.15.128/25\",\r\n
+ \ \"40.126.42.0/24\",\r\n \"51.11.64.0/19\",\r\n \"51.105.80.0/21\",\r\n
+ \ \"51.141.129.32/27\",\r\n \"51.142.128.0/17\",\r\n \"52.108.137.0/24\",\r\n
+ \ \"52.109.36.0/22\",\r\n \"52.136.19.0/24\",\r\n \"2603:1020:300::/47\",\r\n
+ \ \"2603:1020:302::/48\",\r\n \"2603:1020:304::/48\",\r\n
+ \ \"2603:1020:305::/48\",\r\n \"2603:1026:240f::/48\",\r\n
+ \ \"2603:1026:2500:30::/64\",\r\n \"2603:1026:3000:1c0::/59\",\r\n
+ \ \"2603:1027:1:1c0::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.uksouth\",\r\n \"id\": \"AzureCloud.uksouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.129.128/26\",\r\n
+ \ \"13.104.145.160/27\",\r\n \"13.104.146.64/26\",\r\n \"13.104.159.0/25\",\r\n
+ \ \"20.38.106.0/23\",\r\n \"20.39.208.0/20\",\r\n \"20.39.224.0/21\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.47.68.0/24\",\r\n
+ \ \"20.47.114.0/24\",\r\n \"20.49.128.0/17\",\r\n \"20.50.96.0/19\",\r\n
+ \ \"20.58.0.0/18\",\r\n \"20.60.17.0/24\",\r\n \"20.60.166.0/23\",\r\n
+ \ \"20.68.0.0/18\",\r\n \"20.68.128.0/17\",\r\n \"20.77.0.0/17\",\r\n
+ \ \"20.77.128.0/18\",\r\n \"20.135.176.0/22\",\r\n \"20.135.180.0/23\",\r\n
+ \ \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n \"20.150.41.0/24\",\r\n
+ \ \"20.150.69.0/24\",\r\n \"20.190.143.0/25\",\r\n \"20.190.169.0/24\",\r\n
+ \ \"40.79.215.0/24\",\r\n \"40.80.0.0/22\",\r\n \"40.81.128.0/19\",\r\n
+ \ \"40.82.88.0/22\",\r\n \"40.90.17.32/27\",\r\n \"40.90.17.160/27\",\r\n
+ \ \"40.90.29.192/26\",\r\n \"40.90.128.112/28\",\r\n \"40.90.128.160/28\",\r\n
+ \ \"40.90.131.64/27\",\r\n \"40.90.139.64/27\",\r\n \"40.90.141.192/26\",\r\n
+ \ \"40.90.153.64/27\",\r\n \"40.90.154.0/26\",\r\n \"40.120.32.0/19\",\r\n
+ \ \"40.126.15.0/25\",\r\n \"40.126.41.0/24\",\r\n \"51.11.0.0/18\",\r\n
+ \ \"51.11.128.0/18\",\r\n \"51.104.0.0/19\",\r\n \"51.104.192.0/18\",\r\n
+ \ \"51.105.0.0/18\",\r\n \"51.105.64.0/20\",\r\n \"51.132.0.0/18\",\r\n
+ \ \"51.132.128.0/17\",\r\n \"51.140.0.0/17\",\r\n \"51.140.128.0/18\",\r\n
+ \ \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n \"51.141.130.0/25\",\r\n
+ \ \"51.141.135.0/24\",\r\n \"51.141.192.0/18\",\r\n \"51.143.128.0/18\",\r\n
+ \ \"51.143.208.0/20\",\r\n \"51.143.224.0/19\",\r\n \"51.145.0.0/17\",\r\n
+ \ \"52.108.50.0/23\",\r\n \"52.108.88.0/24\",\r\n \"52.108.99.0/24\",\r\n
+ \ \"52.108.100.0/23\",\r\n \"52.109.28.0/22\",\r\n \"52.111.242.0/24\",\r\n
+ \ \"52.112.231.0/24\",\r\n \"52.112.240.0/20\",\r\n \"52.113.128.0/24\",\r\n
+ \ \"52.113.200.0/22\",\r\n \"52.113.204.0/24\",\r\n \"52.113.224.0/19\",\r\n
+ \ \"52.114.88.0/22\",\r\n \"52.120.160.0/19\",\r\n \"52.120.240.0/20\",\r\n
+ \ \"52.136.21.0/24\",\r\n \"52.151.64.0/18\",\r\n \"52.239.187.0/25\",\r\n
+ \ \"52.239.231.0/24\",\r\n \"52.245.64.0/22\",\r\n \"52.253.162.0/23\",\r\n
+ \ \"104.44.89.224/27\",\r\n \"2603:1020:700::/47\",\r\n \"2603:1020:702::/48\",\r\n
+ \ \"2603:1020:704::/48\",\r\n \"2603:1020:705::/48\",\r\n
+ \ \"2603:1026:2406::/48\",\r\n \"2603:1026:2500:18::/64\",\r\n
+ \ \"2603:1026:3000:e0::/59\",\r\n \"2603:1027:1:e0::/59\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.uksouth2\",\r\n
+ \ \"id\": \"AzureCloud.uksouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.0.0/18\",\r\n \"20.150.27.0/24\",\r\n \"20.190.172.0/24\",\r\n
+ \ \"40.79.201.0/24\",\r\n \"40.80.12.0/22\",\r\n \"40.81.160.0/20\",\r\n
+ \ \"40.90.130.128/28\",\r\n \"40.90.143.64/27\",\r\n \"40.90.150.96/27\",\r\n
+ \ \"40.126.44.0/24\",\r\n \"51.141.129.0/27\",\r\n \"51.141.129.192/26\",\r\n
+ \ \"51.141.156.0/22\",\r\n \"51.142.0.0/17\",\r\n \"51.143.192.0/21\",\r\n
+ \ \"51.143.200.0/28\",\r\n \"51.143.201.0/24\",\r\n \"52.108.138.0/24\",\r\n
+ \ \"52.109.40.0/22\",\r\n \"52.136.18.0/24\",\r\n \"2603:1020:400::/47\",\r\n
+ \ \"2603:1020:402::/48\",\r\n \"2603:1020:404::/48\",\r\n
+ \ \"2603:1020:405::/48\",\r\n \"2603:1026:2403::/48\",\r\n
+ \ \"2603:1026:2500:8::/64\",\r\n \"2603:1026:3000:40::/59\",\r\n
+ \ \"2603:1027:1:40::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.ukwest\",\r\n \"id\": \"AzureCloud.ukwest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"20.39.160.0/21\",\r\n
+ \ \"20.40.104.0/21\",\r\n \"20.47.56.0/24\",\r\n \"20.47.82.0/23\",\r\n
+ \ \"20.58.64.0/18\",\r\n \"20.60.164.0/23\",\r\n \"20.68.64.0/18\",\r\n
+ \ \"20.77.192.0/18\",\r\n \"20.90.0.0/18\",\r\n \"20.135.64.0/23\",\r\n
+ \ \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n \"20.150.110.0/24\",\r\n
+ \ \"20.157.46.0/24\",\r\n \"20.190.144.0/25\",\r\n \"20.190.171.0/24\",\r\n
+ \ \"40.79.218.0/24\",\r\n \"40.81.112.0/20\",\r\n \"40.87.228.0/22\",\r\n
+ \ \"40.90.28.192/26\",\r\n \"40.90.29.0/26\",\r\n \"40.90.131.96/27\",\r\n
+ \ \"40.90.139.96/27\",\r\n \"40.90.157.192/27\",\r\n \"40.126.16.0/25\",\r\n
+ \ \"40.126.43.0/24\",\r\n \"51.11.96.0/19\",\r\n \"51.104.32.0/19\",\r\n
+ \ \"51.132.64.0/18\",\r\n \"51.137.128.0/18\",\r\n \"51.140.192.0/18\",\r\n
+ \ \"51.141.0.0/17\",\r\n \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n
+ \ \"51.141.128.128/25\",\r\n \"51.141.129.128/26\",\r\n \"51.141.134.0/24\",\r\n
+ \ \"51.141.136.0/22\",\r\n \"52.108.189.0/24\",\r\n \"52.108.224.0/23\",\r\n
+ \ \"52.109.32.0/22\",\r\n \"52.111.205.0/24\",\r\n \"52.112.168.0/22\",\r\n
+ \ \"52.112.212.0/24\",\r\n \"52.112.230.0/24\",\r\n \"52.113.192.0/24\",\r\n
+ \ \"52.114.84.0/22\",\r\n \"52.114.92.0/22\",\r\n \"52.136.20.0/24\",\r\n
+ \ \"52.142.128.0/18\",\r\n \"52.239.240.0/24\",\r\n \"104.44.90.0/27\",\r\n
+ \ \"2603:1020:600::/47\",\r\n \"2603:1020:602::/48\",\r\n
+ \ \"2603:1020:604::/48\",\r\n \"2603:1020:605::/48\",\r\n
+ \ \"2603:1026:2407::/48\",\r\n \"2603:1026:3000:200::/59\",\r\n
+ \ \"2603:1027:1:200::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westcentralus\",\r\n \"id\": \"AzureCloud.westcentralus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/18\",\r\n
+ \ \"13.77.192.0/19\",\r\n \"13.78.128.0/17\",\r\n \"13.104.145.64/26\",\r\n
+ \ \"13.104.215.128/25\",\r\n \"13.104.219.0/25\",\r\n \"20.47.4.0/24\",\r\n
+ \ \"20.47.70.0/24\",\r\n \"20.47.104.0/24\",\r\n \"20.51.32.0/19\",\r\n
+ \ \"20.55.128.0/18\",\r\n \"20.57.224.0/19\",\r\n \"20.59.128.0/18\",\r\n
+ \ \"20.60.4.0/24\",\r\n \"20.69.0.0/18\",\r\n \"20.135.72.0/23\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"20.190.136.0/24\",\r\n \"20.190.158.0/24\",\r\n \"40.67.120.0/21\",\r\n
+ \ \"40.77.128.0/25\",\r\n \"40.77.131.192/27\",\r\n \"40.77.131.240/28\",\r\n
+ \ \"40.77.135.0/24\",\r\n \"40.77.136.128/25\",\r\n \"40.77.166.0/25\",\r\n
+ \ \"40.77.166.128/28\",\r\n \"40.77.173.0/24\",\r\n \"40.77.175.32/27\",\r\n
+ \ \"40.77.182.160/27\",\r\n \"40.77.185.0/25\",\r\n \"40.77.224.16/28\",\r\n
+ \ \"40.77.224.64/27\",\r\n \"40.77.227.0/24\",\r\n \"40.77.232.0/25\",\r\n
+ \ \"40.77.235.0/24\",\r\n \"40.77.236.96/27\",\r\n \"40.77.246.0/24\",\r\n
+ \ \"40.78.218.0/24\",\r\n \"40.79.205.240/28\",\r\n \"40.79.206.224/27\",\r\n
+ \ \"40.79.207.0/27\",\r\n \"40.90.131.0/27\",\r\n \"40.90.138.192/28\",\r\n
+ \ \"40.90.139.0/27\",\r\n \"40.90.143.96/27\",\r\n \"40.90.151.0/26\",\r\n
+ \ \"40.90.151.128/28\",\r\n \"40.90.152.0/25\",\r\n \"40.93.6.0/24\",\r\n
+ \ \"40.96.255.0/24\",\r\n \"40.123.136.0/24\",\r\n \"40.126.8.0/24\",\r\n
+ \ \"40.126.30.0/24\",\r\n \"52.101.24.0/22\",\r\n \"52.101.40.0/24\",\r\n
+ \ \"52.102.133.0/24\",\r\n \"52.103.7.0/24\",\r\n \"52.103.133.0/24\",\r\n
+ \ \"52.108.181.0/24\",\r\n \"52.108.202.0/24\",\r\n \"52.109.136.0/22\",\r\n
+ \ \"52.111.206.0/24\",\r\n \"52.112.93.0/24\",\r\n \"52.113.207.0/24\",\r\n
+ \ \"52.136.4.0/22\",\r\n \"52.143.214.0/24\",\r\n \"52.148.0.0/18\",\r\n
+ \ \"52.150.128.0/17\",\r\n \"52.153.128.0/18\",\r\n \"52.159.0.0/18\",\r\n
+ \ \"52.161.0.0/16\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\",\r\n \"52.245.60.0/22\",\r\n \"52.253.128.0/20\",\r\n
+ \ \"64.4.8.0/24\",\r\n \"64.4.54.0/24\",\r\n \"65.55.209.192/26\",\r\n
+ \ \"104.44.89.96/27\",\r\n \"104.47.224.0/20\",\r\n \"131.253.24.160/27\",\r\n
+ \ \"131.253.40.160/28\",\r\n \"157.55.12.128/26\",\r\n \"157.55.103.128/25\",\r\n
+ \ \"207.68.174.48/29\",\r\n \"2603:1030:b00::/47\",\r\n \"2603:1030:b03::/48\",\r\n
+ \ \"2603:1030:b04::/48\",\r\n \"2603:1030:b05::/48\",\r\n
+ \ \"2603:1036:9ff:ffff::/64\",\r\n \"2603:1036:2408::/48\",\r\n
+ \ \"2603:1036:2500:20::/64\",\r\n \"2603:1036:3000:180::/59\",\r\n
+ \ \"2603:1037:1:180::/59\",\r\n \"2a01:111:f403:c910::/62\",\r\n
+ \ \"2a01:111:f403:d120::/62\",\r\n \"2a01:111:f403:d910::/62\",\r\n
+ \ \"2a01:111:f403:e010::/62\",\r\n \"2a01:111:f403:f910::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westeurope\",\r\n
+ \ \"id\": \"AzureCloud.westeurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.0.0/17\",\r\n \"13.73.128.0/18\",\r\n \"13.73.224.0/21\",\r\n
+ \ \"13.80.0.0/15\",\r\n \"13.88.200.0/21\",\r\n \"13.93.0.0/17\",\r\n
+ \ \"13.94.128.0/17\",\r\n \"13.95.0.0/16\",\r\n \"13.104.145.192/26\",\r\n
+ \ \"13.104.146.0/26\",\r\n \"13.104.146.128/25\",\r\n \"13.104.158.176/28\",\r\n
+ \ \"13.104.209.0/24\",\r\n \"13.104.214.0/25\",\r\n \"13.104.218.128/25\",\r\n
+ \ \"13.105.22.0/24\",\r\n \"13.105.23.128/25\",\r\n \"13.105.28.32/28\",\r\n
+ \ \"13.105.29.128/25\",\r\n \"13.105.60.48/28\",\r\n \"13.105.60.96/27\",\r\n
+ \ \"13.105.60.128/27\",\r\n \"13.105.66.144/28\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.38.200.0/22\",\r\n \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n
+ \ \"20.47.30.0/24\",\r\n \"20.47.96.0/23\",\r\n \"20.47.115.0/24\",\r\n
+ \ \"20.47.118.0/24\",\r\n \"20.50.0.0/18\",\r\n \"20.50.128.0/17\",\r\n
+ \ \"20.54.128.0/17\",\r\n \"20.56.0.0/16\",\r\n \"20.60.26.0/23\",\r\n
+ \ \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n \"20.60.196.0/23\",\r\n
+ \ \"20.61.0.0/16\",\r\n \"20.67.0.0/17\",\r\n \"20.71.0.0/16\",\r\n
+ \ \"20.73.0.0/16\",\r\n \"20.76.0.0/16\",\r\n \"20.82.0.0/17\",\r\n
+ \ \"20.86.0.0/17\",\r\n \"20.135.24.0/23\",\r\n \"20.135.140.0/22\",\r\n
+ \ \"20.135.144.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"20.190.137.0/24\",\r\n \"20.190.160.0/24\",\r\n \"23.97.128.0/17\",\r\n
+ \ \"23.98.46.0/24\",\r\n \"23.100.0.0/20\",\r\n \"23.101.64.0/20\",\r\n
+ \ \"40.67.192.0/19\",\r\n \"40.68.0.0/16\",\r\n \"40.74.0.0/18\",\r\n
+ \ \"40.78.210.0/24\",\r\n \"40.79.205.192/27\",\r\n \"40.79.205.224/28\",\r\n
+ \ \"40.79.206.0/27\",\r\n \"40.82.92.0/22\",\r\n \"40.87.184.0/22\",\r\n
+ \ \"40.90.17.64/27\",\r\n \"40.90.18.192/26\",\r\n \"40.90.20.128/25\",\r\n
+ \ \"40.90.21.0/25\",\r\n \"40.90.130.0/27\",\r\n \"40.90.133.0/27\",\r\n
+ \ \"40.90.134.64/26\",\r\n \"40.90.134.128/26\",\r\n \"40.90.138.0/27\",\r\n
+ \ \"40.90.141.32/27\",\r\n \"40.90.141.160/27\",\r\n \"40.90.142.224/28\",\r\n
+ \ \"40.90.144.192/27\",\r\n \"40.90.145.192/27\",\r\n \"40.90.146.16/28\",\r\n
+ \ \"40.90.146.128/27\",\r\n \"40.90.150.128/25\",\r\n \"40.90.157.64/26\",\r\n
+ \ \"40.90.159.0/24\",\r\n \"40.91.28.0/22\",\r\n \"40.91.192.0/18\",\r\n
+ \ \"40.112.36.128/25\",\r\n \"40.112.37.0/26\",\r\n \"40.112.38.192/26\",\r\n
+ \ \"40.112.96.0/19\",\r\n \"40.113.96.0/19\",\r\n \"40.113.128.0/18\",\r\n
+ \ \"40.114.128.0/17\",\r\n \"40.115.0.0/18\",\r\n \"40.118.0.0/17\",\r\n
+ \ \"40.119.128.0/19\",\r\n \"40.126.9.0/24\",\r\n \"40.126.32.0/24\",\r\n
+ \ \"51.105.96.0/19\",\r\n \"51.105.128.0/17\",\r\n \"51.124.0.0/17\",\r\n
+ \ \"51.124.128.0/18\",\r\n \"51.136.0.0/16\",\r\n \"51.137.0.0/17\",\r\n
+ \ \"51.137.192.0/18\",\r\n \"51.138.0.0/17\",\r\n \"51.144.0.0/16\",\r\n
+ \ \"51.145.128.0/17\",\r\n \"52.108.24.0/21\",\r\n \"52.108.56.0/21\",\r\n
+ \ \"52.108.80.0/24\",\r\n \"52.108.108.0/23\",\r\n \"52.108.110.0/24\",\r\n
+ \ \"52.109.88.0/22\",\r\n \"52.111.243.0/24\",\r\n \"52.112.14.0/23\",\r\n
+ \ \"52.112.17.0/24\",\r\n \"52.112.18.0/23\",\r\n \"52.112.71.0/24\",\r\n
+ \ \"52.112.83.0/24\",\r\n \"52.112.97.0/24\",\r\n \"52.112.98.0/23\",\r\n
+ \ \"52.112.110.0/23\",\r\n \"52.112.144.0/20\",\r\n \"52.112.197.0/24\",\r\n
+ \ \"52.112.216.0/21\",\r\n \"52.112.233.0/24\",\r\n \"52.112.237.0/24\",\r\n
+ \ \"52.112.238.0/24\",\r\n \"52.113.9.0/24\",\r\n \"52.113.37.0/24\",\r\n
+ \ \"52.113.83.0/24\",\r\n \"52.113.130.0/24\",\r\n \"52.113.144.0/21\",\r\n
+ \ \"52.113.199.0/24\",\r\n \"52.114.64.0/21\",\r\n \"52.114.72.0/22\",\r\n
+ \ \"52.114.116.0/22\",\r\n \"52.114.241.0/24\",\r\n \"52.114.242.0/24\",\r\n
+ \ \"52.114.252.0/22\",\r\n \"52.115.0.0/21\",\r\n \"52.115.8.0/22\",\r\n
+ \ \"52.120.128.0/21\",\r\n \"52.120.208.0/20\",\r\n \"52.121.24.0/21\",\r\n
+ \ \"52.121.64.0/20\",\r\n \"52.125.140.0/23\",\r\n \"52.136.192.0/18\",\r\n
+ \ \"52.137.0.0/18\",\r\n \"52.142.192.0/18\",\r\n \"52.143.0.0/18\",\r\n
+ \ \"52.143.194.0/24\",\r\n \"52.143.208.0/24\",\r\n \"52.148.192.0/18\",\r\n
+ \ \"52.149.64.0/18\",\r\n \"52.157.64.0/18\",\r\n \"52.157.128.0/17\",\r\n
+ \ \"52.166.0.0/16\",\r\n \"52.174.0.0/16\",\r\n \"52.178.0.0/17\",\r\n
+ \ \"52.232.0.0/17\",\r\n \"52.232.147.0/24\",\r\n \"52.233.128.0/17\",\r\n
+ \ \"52.236.128.0/17\",\r\n \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n
+ \ \"52.239.242.0/23\",\r\n \"52.245.48.0/22\",\r\n \"52.245.124.0/22\",\r\n
+ \ \"65.52.128.0/19\",\r\n \"104.40.128.0/17\",\r\n \"104.44.89.160/27\",\r\n
+ \ \"104.44.90.192/27\",\r\n \"104.44.93.0/27\",\r\n \"104.44.93.192/27\",\r\n
+ \ \"104.44.95.80/28\",\r\n \"104.44.95.96/28\",\r\n \"104.45.0.0/18\",\r\n
+ \ \"104.45.64.0/20\",\r\n \"104.46.32.0/19\",\r\n \"104.47.128.0/18\",\r\n
+ \ \"104.47.216.64/26\",\r\n \"104.214.192.0/18\",\r\n \"137.116.192.0/19\",\r\n
+ \ \"137.117.128.0/17\",\r\n \"157.55.8.64/26\",\r\n \"157.55.8.144/28\",\r\n
+ \ \"157.56.117.64/27\",\r\n \"168.61.56.0/21\",\r\n \"168.63.0.0/19\",\r\n
+ \ \"168.63.96.0/19\",\r\n \"191.233.64.0/18\",\r\n \"191.237.232.0/22\",\r\n
+ \ \"191.239.200.0/22\",\r\n \"193.149.80.0/21\",\r\n \"213.199.128.0/20\",\r\n
+ \ \"213.199.180.32/28\",\r\n \"213.199.180.96/27\",\r\n \"213.199.180.192/27\",\r\n
+ \ \"213.199.183.0/24\",\r\n \"2603:1020:200::/46\",\r\n \"2603:1020:205::/48\",\r\n
+ \ \"2603:1020:206::/48\",\r\n \"2603:1026:2405::/48\",\r\n
+ \ \"2603:1026:2500:24::/64\",\r\n \"2603:1026:3000:140::/59\",\r\n
+ \ \"2603:1027:1:140::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westindia\",\r\n \"id\": \"AzureCloud.westindia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.104.157.128/25\",\r\n
+ \ \"20.38.128.0/21\",\r\n \"20.40.8.0/21\",\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.47.124.0/23\",\r\n \"20.135.44.0/23\",\r\n \"20.150.18.128/25\",\r\n
+ \ \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n \"20.190.146.128/25\",\r\n
+ \ \"20.190.176.0/24\",\r\n \"20.192.64.0/19\",\r\n \"40.79.219.0/24\",\r\n
+ \ \"40.81.80.0/20\",\r\n \"40.87.220.0/22\",\r\n \"40.90.26.0/26\",\r\n
+ \ \"40.90.138.224/27\",\r\n \"40.126.18.128/25\",\r\n \"40.126.48.0/24\",\r\n
+ \ \"52.108.73.0/24\",\r\n \"52.108.94.0/24\",\r\n \"52.109.64.0/22\",\r\n
+ \ \"52.111.244.0/24\",\r\n \"52.113.134.0/24\",\r\n \"52.114.28.0/22\",\r\n
+ \ \"52.136.16.0/24\",\r\n \"52.136.32.0/19\",\r\n \"52.140.128.0/18\",\r\n
+ \ \"52.183.128.0/18\",\r\n \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n
+ \ \"52.245.76.0/22\",\r\n \"52.249.64.0/19\",\r\n \"104.44.93.224/27\",\r\n
+ \ \"104.44.95.112/28\",\r\n \"104.47.212.0/23\",\r\n \"104.211.128.0/18\",\r\n
+ \ \"2603:1040:800::/46\",\r\n \"2603:1040:805::/48\",\r\n
+ \ \"2603:1040:806::/48\",\r\n \"2603:1046:1408::/48\",\r\n
+ \ \"2603:1046:1500::/64\",\r\n \"2603:1046:2000:20::/59\",\r\n
+ \ \"2603:1047:1:20::/59\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCloud.westus\",\r\n \"id\": \"AzureCloud.westus\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"\",\r\n \"addressPrefixes\": [\r\n \"13.64.0.0/16\",\r\n
+ \ \"13.73.32.0/19\",\r\n \"13.83.0.0/16\",\r\n \"13.86.128.0/17\",\r\n
+ \ \"13.87.128.0/17\",\r\n \"13.88.0.0/17\",\r\n \"13.88.128.0/18\",\r\n
+ \ \"13.91.0.0/16\",\r\n \"13.93.128.0/17\",\r\n \"13.104.144.192/27\",\r\n
+ \ \"13.104.158.16/28\",\r\n \"13.104.158.64/26\",\r\n \"13.104.208.96/27\",\r\n
+ \ \"13.104.222.0/24\",\r\n \"13.104.223.0/25\",\r\n \"13.105.17.64/26\",\r\n
+ \ \"13.105.17.128/26\",\r\n \"13.105.19.128/25\",\r\n \"13.105.96.64/27\",\r\n
+ \ \"13.105.96.96/28\",\r\n \"13.105.97.0/27\",\r\n \"20.43.192.0/18\",\r\n
+ \ \"20.47.2.0/24\",\r\n \"20.47.22.0/23\",\r\n \"20.47.110.0/24\",\r\n
+ \ \"20.47.116.0/24\",\r\n \"20.49.120.0/21\",\r\n \"20.57.192.0/19\",\r\n
+ \ \"20.59.64.0/18\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.66.0.0/17\",\r\n \"20.135.74.0/23\",\r\n \"20.150.34.0/23\",\r\n
+ \ \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n \"20.157.32.0/24\",\r\n
+ \ \"20.157.57.0/24\",\r\n \"20.184.128.0/17\",\r\n \"20.189.128.0/18\",\r\n
+ \ \"20.190.132.0/24\",\r\n \"20.190.153.0/24\",\r\n \"23.99.0.0/18\",\r\n
+ \ \"23.99.64.0/19\",\r\n \"23.100.32.0/20\",\r\n \"23.101.192.0/20\",\r\n
+ \ \"40.65.0.0/18\",\r\n \"40.75.128.0/17\",\r\n \"40.78.0.0/17\",\r\n
+ \ \"40.78.216.0/24\",\r\n \"40.80.152.0/21\",\r\n \"40.81.0.0/20\",\r\n
+ \ \"40.82.248.0/21\",\r\n \"40.83.128.0/17\",\r\n \"40.85.144.0/20\",\r\n
+ \ \"40.86.160.0/19\",\r\n \"40.87.160.0/22\",\r\n \"40.90.17.96/27\",\r\n
+ \ \"40.90.18.128/26\",\r\n \"40.90.22.128/25\",\r\n \"40.90.23.0/25\",\r\n
+ \ \"40.90.25.192/26\",\r\n \"40.90.128.128/28\",\r\n \"40.90.131.192/27\",\r\n
+ \ \"40.90.135.0/26\",\r\n \"40.90.139.192/27\",\r\n \"40.90.146.0/28\",\r\n
+ \ \"40.90.148.128/27\",\r\n \"40.90.153.96/27\",\r\n \"40.90.156.128/26\",\r\n
+ \ \"40.93.0.0/23\",\r\n \"40.112.128.0/17\",\r\n \"40.118.128.0/17\",\r\n
+ \ \"40.125.32.0/19\",\r\n \"40.126.4.0/24\",\r\n \"40.126.25.0/24\",\r\n
+ \ \"52.101.0.0/22\",\r\n \"52.101.16.0/22\",\r\n \"52.101.41.0/24\",\r\n
+ \ \"52.102.128.0/24\",\r\n \"52.102.158.0/24\",\r\n \"52.103.0.0/24\",\r\n
+ \ \"52.103.2.0/24\",\r\n \"52.103.128.0/24\",\r\n \"52.108.0.0/21\",\r\n
+ \ \"52.108.78.0/24\",\r\n \"52.109.0.0/22\",\r\n \"52.111.245.0/24\",\r\n
+ \ \"52.112.106.0/23\",\r\n \"52.112.114.0/24\",\r\n \"52.113.208.0/20\",\r\n
+ \ \"52.114.152.0/21\",\r\n \"52.114.172.0/22\",\r\n \"52.114.176.0/22\",\r\n
+ \ \"52.114.184.0/23\",\r\n \"52.115.56.0/22\",\r\n \"52.115.60.0/23\",\r\n
+ \ \"52.115.140.0/22\",\r\n \"52.115.144.0/20\",\r\n \"52.120.96.0/19\",\r\n
+ \ \"52.121.36.0/22\",\r\n \"52.123.1.0/24\",\r\n \"52.137.128.0/17\",\r\n
+ \ \"52.153.0.0/18\",\r\n \"52.155.32.0/19\",\r\n \"52.157.0.0/18\",\r\n
+ \ \"52.159.128.0/17\",\r\n \"52.160.0.0/16\",\r\n \"52.180.0.0/17\",\r\n
+ \ \"52.190.128.0/17\",\r\n \"52.225.0.0/17\",\r\n \"52.232.149.0/24\",\r\n
+ \ \"52.234.0.0/17\",\r\n \"52.238.0.0/18\",\r\n \"52.239.0.0/17\",\r\n
+ \ \"52.239.160.0/22\",\r\n \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n
+ \ \"52.241.0.0/16\",\r\n \"52.245.12.0/22\",\r\n \"52.245.108.0/22\",\r\n
+ \ \"52.246.0.0/17\",\r\n \"52.248.128.0/17\",\r\n \"52.250.192.0/18\",\r\n
+ \ \"52.254.128.0/17\",\r\n \"65.52.112.0/20\",\r\n \"104.40.0.0/17\",\r\n
+ \ \"104.42.0.0/16\",\r\n \"104.44.88.0/27\",\r\n \"104.44.91.0/27\",\r\n
+ \ \"104.44.92.96/27\",\r\n \"104.44.94.0/28\",\r\n \"104.44.95.128/27\",\r\n
+ \ \"104.45.208.0/20\",\r\n \"104.45.224.0/19\",\r\n \"104.209.0.0/18\",\r\n
+ \ \"104.210.32.0/19\",\r\n \"137.116.184.0/21\",\r\n \"137.117.0.0/19\",\r\n
+ \ \"137.135.0.0/18\",\r\n \"138.91.64.0/19\",\r\n \"138.91.128.0/17\",\r\n
+ \ \"157.56.160.0/21\",\r\n \"168.61.0.0/19\",\r\n \"168.61.64.0/20\",\r\n
+ \ \"168.62.0.0/19\",\r\n \"168.62.192.0/19\",\r\n \"168.63.88.0/23\",\r\n
+ \ \"191.236.64.0/18\",\r\n \"191.238.70.0/23\",\r\n \"191.239.0.0/18\",\r\n
+ \ \"2603:1030:a00::/46\",\r\n \"2603:1030:a04::/48\",\r\n
+ \ \"2603:1030:a06::/48\",\r\n \"2603:1030:a07::/48\",\r\n
+ \ \"2603:1030:a08::/48\",\r\n \"2603:1036:2400::/48\",\r\n
+ \ \"2603:1036:2500:10::/64\",\r\n \"2603:1036:3000:1c0::/59\",\r\n
+ \ \"2603:1037:1:1c0::/59\",\r\n \"2a01:111:f100:3000::/52\",\r\n
+ \ \"2a01:111:f403:c000::/64\",\r\n \"2a01:111:f403:c800::/64\",\r\n
+ \ \"2a01:111:f403:d000::/64\",\r\n \"2a01:111:f403:d800::/64\",\r\n
+ \ \"2a01:111:f403:e000::/64\",\r\n \"2a01:111:f403:f800::/62\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCloud.westus2\",\r\n
+ \ \"id\": \"AzureCloud.westus2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.128.0/17\",\r\n \"13.77.128.0/18\",\r\n \"13.104.129.64/26\",\r\n
+ \ \"13.104.145.0/26\",\r\n \"13.104.208.192/26\",\r\n \"13.104.213.0/25\",\r\n
+ \ \"13.104.220.0/25\",\r\n \"13.105.14.0/25\",\r\n \"13.105.14.128/26\",\r\n
+ \ \"13.105.18.160/27\",\r\n \"13.105.36.0/27\",\r\n \"13.105.36.32/28\",\r\n
+ \ \"13.105.36.64/27\",\r\n \"13.105.36.128/26\",\r\n \"13.105.66.64/26\",\r\n
+ \ \"20.36.0.0/19\",\r\n \"20.38.99.0/24\",\r\n \"20.42.128.0/18\",\r\n
+ \ \"20.47.62.0/23\",\r\n \"20.47.120.0/23\",\r\n \"20.51.8.0/21\",\r\n
+ \ \"20.51.64.0/18\",\r\n \"20.57.128.0/18\",\r\n \"20.59.0.0/18\",\r\n
+ \ \"20.60.20.0/24\",\r\n \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n
+ \ \"20.64.128.0/17\",\r\n \"20.69.64.0/18\",\r\n \"20.69.128.0/18\",\r\n
+ \ \"20.72.192.0/18\",\r\n \"20.80.128.0/18\",\r\n \"20.83.64.0/18\",\r\n
+ \ \"20.83.192.0/18\",\r\n \"20.135.18.0/23\",\r\n \"20.135.228.0/22\",\r\n
+ \ \"20.135.232.0/23\",\r\n \"20.150.68.0/24\",\r\n \"20.150.78.0/24\",\r\n
+ \ \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n \"20.157.50.0/23\",\r\n
+ \ \"20.187.0.0/18\",\r\n \"20.190.0.0/18\",\r\n \"20.190.133.0/24\",\r\n
+ \ \"20.190.154.0/24\",\r\n \"20.191.64.0/18\",\r\n \"23.98.47.0/24\",\r\n
+ \ \"23.102.192.0/21\",\r\n \"23.102.203.0/24\",\r\n \"23.103.64.32/27\",\r\n
+ \ \"23.103.64.64/27\",\r\n \"23.103.66.0/23\",\r\n \"40.64.64.0/18\",\r\n
+ \ \"40.64.128.0/21\",\r\n \"40.65.64.0/18\",\r\n \"40.77.136.0/28\",\r\n
+ \ \"40.77.136.64/28\",\r\n \"40.77.139.128/25\",\r\n \"40.77.160.0/27\",\r\n
+ \ \"40.77.162.0/24\",\r\n \"40.77.164.0/24\",\r\n \"40.77.169.0/24\",\r\n
+ \ \"40.77.175.64/27\",\r\n \"40.77.180.0/23\",\r\n \"40.77.182.64/27\",\r\n
+ \ \"40.77.185.128/25\",\r\n \"40.77.186.0/23\",\r\n \"40.77.198.128/25\",\r\n
+ \ \"40.77.199.128/26\",\r\n \"40.77.200.0/25\",\r\n \"40.77.202.0/24\",\r\n
+ \ \"40.77.224.96/27\",\r\n \"40.77.230.0/24\",\r\n \"40.77.232.128/25\",\r\n
+ \ \"40.77.234.224/27\",\r\n \"40.77.236.128/27\",\r\n \"40.77.240.128/25\",\r\n
+ \ \"40.77.241.0/24\",\r\n \"40.77.242.0/23\",\r\n \"40.77.247.0/24\",\r\n
+ \ \"40.77.249.0/24\",\r\n \"40.77.250.0/24\",\r\n \"40.77.254.128/25\",\r\n
+ \ \"40.78.208.32/30\",\r\n \"40.78.217.0/24\",\r\n \"40.78.240.0/20\",\r\n
+ \ \"40.79.206.128/27\",\r\n \"40.80.160.0/24\",\r\n \"40.82.36.0/22\",\r\n
+ \ \"40.87.232.0/21\",\r\n \"40.90.16.192/26\",\r\n \"40.90.131.32/27\",\r\n
+ \ \"40.90.132.48/28\",\r\n \"40.90.136.224/27\",\r\n \"40.90.138.208/28\",\r\n
+ \ \"40.90.139.32/27\",\r\n \"40.90.146.32/27\",\r\n \"40.90.148.192/27\",\r\n
+ \ \"40.90.153.0/26\",\r\n \"40.90.192.0/19\",\r\n \"40.91.0.0/22\",\r\n
+ \ \"40.91.64.0/18\",\r\n \"40.91.160.0/19\",\r\n \"40.93.7.0/24\",\r\n
+ \ \"40.96.61.0/24\",\r\n \"40.96.63.0/24\",\r\n \"40.125.64.0/18\",\r\n
+ \ \"40.126.5.0/24\",\r\n \"40.126.26.0/24\",\r\n \"51.141.160.0/19\",\r\n
+ \ \"51.143.0.0/17\",\r\n \"52.96.11.0/24\",\r\n \"52.101.28.0/22\",\r\n
+ \ \"52.101.42.0/24\",\r\n \"52.102.134.0/24\",\r\n \"52.103.8.0/24\",\r\n
+ \ \"52.103.134.0/24\",\r\n \"52.108.72.0/24\",\r\n \"52.108.93.0/24\",\r\n
+ \ \"52.109.24.0/22\",\r\n \"52.111.246.0/24\",\r\n \"52.112.105.0/24\",\r\n
+ \ \"52.112.109.0/24\",\r\n \"52.112.115.0/24\",\r\n \"52.114.148.0/22\",\r\n
+ \ \"52.115.55.0/24\",\r\n \"52.123.5.0/24\",\r\n \"52.136.0.0/22\",\r\n
+ \ \"52.137.64.0/18\",\r\n \"52.143.64.0/18\",\r\n \"52.143.197.0/24\",\r\n
+ \ \"52.143.211.0/24\",\r\n \"52.148.128.0/18\",\r\n \"52.149.0.0/18\",\r\n
+ \ \"52.151.0.0/18\",\r\n \"52.156.64.0/18\",\r\n \"52.156.128.0/19\",\r\n
+ \ \"52.158.224.0/19\",\r\n \"52.175.192.0/18\",\r\n \"52.183.0.0/17\",\r\n
+ \ \"52.191.128.0/18\",\r\n \"52.229.0.0/18\",\r\n \"52.232.152.0/24\",\r\n
+ \ \"52.233.64.0/18\",\r\n \"52.235.64.0/18\",\r\n \"52.239.148.128/25\",\r\n
+ \ \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n \"52.239.210.0/23\",\r\n
+ \ \"52.239.236.0/23\",\r\n \"52.245.52.0/22\",\r\n \"52.246.192.0/18\",\r\n
+ \ \"52.247.192.0/18\",\r\n \"52.250.0.0/17\",\r\n \"65.52.111.0/24\",\r\n
+ \ \"65.55.32.128/28\",\r\n \"65.55.32.192/27\",\r\n \"65.55.32.224/28\",\r\n
+ \ \"65.55.33.176/28\",\r\n \"65.55.33.192/28\",\r\n \"65.55.35.192/27\",\r\n
+ \ \"65.55.44.8/29\",\r\n \"65.55.44.112/28\",\r\n \"65.55.51.0/24\",\r\n
+ \ \"65.55.105.160/27\",\r\n \"65.55.106.192/28\",\r\n \"65.55.106.240/28\",\r\n
+ \ \"65.55.107.0/28\",\r\n \"65.55.107.96/27\",\r\n \"65.55.110.0/24\",\r\n
+ \ \"65.55.120.0/24\",\r\n \"65.55.207.0/24\",\r\n \"65.55.209.0/25\",\r\n
+ \ \"65.55.210.0/24\",\r\n \"65.55.219.64/26\",\r\n \"65.55.250.0/24\",\r\n
+ \ \"65.55.252.0/24\",\r\n \"70.37.0.0/21\",\r\n \"70.37.8.0/22\",\r\n
+ \ \"70.37.16.0/20\",\r\n \"70.37.32.0/20\",\r\n \"104.44.89.128/27\",\r\n
+ \ \"104.44.89.192/27\",\r\n \"104.44.95.0/28\",\r\n \"131.253.12.160/28\",\r\n
+ \ \"131.253.12.228/30\",\r\n \"131.253.13.24/29\",\r\n \"131.253.13.88/30\",\r\n
+ \ \"131.253.13.128/27\",\r\n \"131.253.14.4/30\",\r\n \"131.253.14.8/31\",\r\n
+ \ \"131.253.14.96/27\",\r\n \"131.253.14.128/27\",\r\n \"131.253.14.192/29\",\r\n
+ \ \"131.253.15.192/28\",\r\n \"131.253.35.128/26\",\r\n \"131.253.40.48/29\",\r\n
+ \ \"131.253.40.128/27\",\r\n \"131.253.41.0/24\",\r\n \"134.170.222.0/24\",\r\n
+ \ \"137.116.176.0/21\",\r\n \"157.55.2.128/26\",\r\n \"157.55.12.64/26\",\r\n
+ \ \"157.55.13.64/26\",\r\n \"157.55.39.0/24\",\r\n \"157.55.55.228/30\",\r\n
+ \ \"157.55.55.232/29\",\r\n \"157.55.55.240/28\",\r\n \"157.55.106.0/26\",\r\n
+ \ \"157.55.154.128/25\",\r\n \"157.56.2.0/25\",\r\n \"157.56.3.128/25\",\r\n
+ \ \"157.56.19.224/27\",\r\n \"157.56.21.160/27\",\r\n \"157.56.21.192/27\",\r\n
+ \ \"157.56.80.0/25\",\r\n \"168.62.64.0/19\",\r\n \"199.30.24.0/23\",\r\n
+ \ \"199.30.27.0/25\",\r\n \"199.30.27.144/28\",\r\n \"199.30.27.160/27\",\r\n
+ \ \"199.30.31.192/26\",\r\n \"207.46.13.0/24\",\r\n \"207.68.174.192/28\",\r\n
+ \ \"209.240.212.0/23\",\r\n \"2603:1030:c00::/48\",\r\n \"2603:1030:c02::/47\",\r\n
+ \ \"2603:1030:c04::/48\",\r\n \"2603:1030:c05::/48\",\r\n
+ \ \"2603:1030:c06::/48\",\r\n \"2603:1030:c07::/48\",\r\n
+ \ \"2603:1030:d00::/48\",\r\n \"2603:1030:e01:2::/64\",\r\n
+ \ \"2603:1036:903::/64\",\r\n \"2603:1036:d20::/64\",\r\n
+ \ \"2603:1036:2409::/48\",\r\n \"2603:1036:2500:14::/64\",\r\n
+ \ \"2603:1036:3000:c0::/59\",\r\n \"2603:1037:1:c0::/59\",\r\n
+ \ \"2a01:111:f403:c004::/62\",\r\n \"2a01:111:f403:c804::/62\",\r\n
+ \ \"2a01:111:f403:d004::/62\",\r\n \"2a01:111:f403:d804::/62\",\r\n
+ \ \"2a01:111:f403:f804::/62\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch\",\r\n \"id\": \"AzureCognitiveSearch\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.32.141/32\",\r\n \"13.83.22.45/32\",\r\n \"13.83.22.74/32\",\r\n
+ \ \"13.83.22.119/32\",\r\n \"13.86.5.51/32\",\r\n \"20.36.120.128/26\",\r\n
+ \ \"20.37.64.128/26\",\r\n \"20.37.156.128/26\",\r\n \"20.37.193.192/26\",\r\n
+ \ \"20.37.224.128/26\",\r\n \"20.38.84.0/26\",\r\n \"20.38.136.128/26\",\r\n
+ \ \"20.39.8.192/26\",\r\n \"20.40.123.36/32\",\r\n \"20.40.123.39/32\",\r\n
+ \ \"20.40.123.46/32\",\r\n \"20.40.123.72/32\",\r\n \"20.41.4.128/26\",\r\n
+ \ \"20.41.65.64/26\",\r\n \"20.41.193.64/26\",\r\n \"20.42.4.128/26\",\r\n
+ \ \"20.42.24.90/32\",\r\n \"20.42.29.212/32\",\r\n \"20.42.30.105/32\",\r\n
+ \ \"20.42.34.190/32\",\r\n \"20.42.35.204/32\",\r\n \"20.42.129.192/26\",\r\n
+ \ \"20.42.225.192/26\",\r\n \"20.43.41.64/26\",\r\n \"20.43.65.64/26\",\r\n
+ \ \"20.43.130.128/26\",\r\n \"20.44.74.182/32\",\r\n \"20.44.76.53/32\",\r\n
+ \ \"20.44.76.61/32\",\r\n \"20.44.76.86/32\",\r\n \"20.45.0.49/32\",\r\n
+ \ \"20.45.2.122/32\",\r\n \"20.45.112.128/26\",\r\n \"20.45.192.128/26\",\r\n
+ \ \"20.72.17.0/26\",\r\n \"20.150.160.128/26\",\r\n \"20.185.110.199/32\",\r\n
+ \ \"20.189.106.128/26\",\r\n \"20.189.129.94/32\",\r\n \"20.192.161.0/26\",\r\n
+ \ \"20.192.225.64/26\",\r\n \"23.100.238.27/32\",\r\n \"23.100.238.34/31\",\r\n
+ \ \"23.100.238.37/32\",\r\n \"40.65.173.157/32\",\r\n \"40.65.175.212/32\",\r\n
+ \ \"40.65.175.228/32\",\r\n \"40.66.56.233/32\",\r\n \"40.67.48.128/26\",\r\n
+ \ \"40.74.18.154/32\",\r\n \"40.74.30.0/26\",\r\n \"40.80.57.64/26\",\r\n
+ \ \"40.80.169.64/26\",\r\n \"40.80.186.192/26\",\r\n \"40.80.216.231/32\",\r\n
+ \ \"40.80.217.38/32\",\r\n \"40.80.219.46/32\",\r\n \"40.81.9.100/32\",\r\n
+ \ \"40.81.9.131/32\",\r\n \"40.81.9.203/32\",\r\n \"40.81.9.209/32\",\r\n
+ \ \"40.81.9.213/32\",\r\n \"40.81.9.221/32\",\r\n \"40.81.10.36/32\",\r\n
+ \ \"40.81.12.133/32\",\r\n \"40.81.15.8/32\",\r\n \"40.81.15.39/32\",\r\n
+ \ \"40.81.29.152/32\",\r\n \"40.81.188.130/32\",\r\n \"40.81.191.58/32\",\r\n
+ \ \"40.81.253.154/32\",\r\n \"40.82.155.65/32\",\r\n \"40.82.253.0/26\",\r\n
+ \ \"40.89.17.64/26\",\r\n \"40.90.190.180/32\",\r\n \"40.90.240.17/32\",\r\n
+ \ \"40.91.93.84/32\",\r\n \"40.91.127.116/32\",\r\n \"40.91.127.241/32\",\r\n
+ \ \"40.119.11.0/26\",\r\n \"51.12.41.64/26\",\r\n \"51.12.193.64/26\",\r\n
+ \ \"51.104.25.64/26\",\r\n \"51.105.80.128/26\",\r\n \"51.105.88.128/26\",\r\n
+ \ \"51.107.48.128/26\",\r\n \"51.107.144.128/26\",\r\n \"51.116.48.96/28\",\r\n
+ \ \"51.116.144.96/28\",\r\n \"51.120.40.128/26\",\r\n \"51.120.224.128/26\",\r\n
+ \ \"51.132.43.66/32\",\r\n \"51.137.161.64/26\",\r\n \"51.143.104.54/32\",\r\n
+ \ \"51.143.104.90/32\",\r\n \"51.143.192.128/26\",\r\n \"51.145.124.157/32\",\r\n
+ \ \"51.145.124.158/32\",\r\n \"51.145.176.249/32\",\r\n \"51.145.177.212/32\",\r\n
+ \ \"51.145.178.138/32\",\r\n \"51.145.178.140/32\",\r\n \"52.136.48.128/26\",\r\n
+ \ \"52.137.24.236/32\",\r\n \"52.137.26.114/32\",\r\n \"52.137.26.155/32\",\r\n
+ \ \"52.137.26.198/32\",\r\n \"52.137.27.49/32\",\r\n \"52.137.56.115/32\",\r\n
+ \ \"52.137.60.208/32\",\r\n \"52.139.0.47/32\",\r\n \"52.139.0.49/32\",\r\n
+ \ \"52.140.105.64/26\",\r\n \"52.140.233.105/32\",\r\n \"52.150.139.0/26\",\r\n
+ \ \"52.151.235.150/32\",\r\n \"52.151.235.242/32\",\r\n \"52.151.235.244/32\",\r\n
+ \ \"52.155.216.245/32\",\r\n \"52.155.217.84/32\",\r\n \"52.155.221.242/32\",\r\n
+ \ \"52.155.221.250/32\",\r\n \"52.155.222.35/32\",\r\n \"52.155.222.56/32\",\r\n
+ \ \"52.157.22.233/32\",\r\n \"52.157.231.64/32\",\r\n \"52.158.28.181/32\",\r\n
+ \ \"52.158.30.241/32\",\r\n \"52.158.208.11/32\",\r\n \"52.184.80.221/32\",\r\n
+ \ \"52.185.224.13/32\",\r\n \"52.185.224.38/32\",\r\n \"52.188.217.235/32\",\r\n
+ \ \"52.188.218.228/32\",\r\n \"52.188.218.239/32\",\r\n \"52.228.81.64/26\",\r\n
+ \ \"52.242.214.45/32\",\r\n \"52.253.133.74/32\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"102.133.128.33/32\",\r\n \"102.133.217.128/26\",\r\n
+ \ \"104.45.64.0/32\",\r\n \"104.45.64.147/32\",\r\n \"104.45.64.224/32\",\r\n
+ \ \"104.45.65.30/32\",\r\n \"104.45.65.89/32\",\r\n \"191.233.9.0/26\",\r\n
+ \ \"191.233.26.156/32\",\r\n \"191.235.225.64/26\",\r\n \"2603:1000:4::180/121\",\r\n
+ \ \"2603:1000:104:1::180/121\",\r\n \"2603:1010:6:1::180/121\",\r\n
+ \ \"2603:1010:101::180/121\",\r\n \"2603:1010:304::180/121\",\r\n
+ \ \"2603:1010:404::180/121\",\r\n \"2603:1020:5:1::180/121\",\r\n
+ \ \"2603:1020:206:1::180/121\",\r\n \"2603:1020:305::180/121\",\r\n
+ \ \"2603:1020:405::180/121\",\r\n \"2603:1020:605::180/121\",\r\n
+ \ \"2603:1020:705:1::180/121\",\r\n \"2603:1020:805:1::180/121\",\r\n
+ \ \"2603:1020:905::180/121\",\r\n \"2603:1020:a04:1::180/121\",\r\n
+ \ \"2603:1020:b04::180/121\",\r\n \"2603:1020:c04:1::180/121\",\r\n
+ \ \"2603:1020:d04::180/121\",\r\n \"2603:1020:e04:1::180/121\",\r\n
+ \ \"2603:1020:f04::180/121\",\r\n \"2603:1020:1004::180/121\",\r\n
+ \ \"2603:1020:1104::180/121\",\r\n \"2603:1030:f:1::180/121\",\r\n
+ \ \"2603:1030:10:1::180/121\",\r\n \"2603:1030:104:1::180/121\",\r\n
+ \ \"2603:1030:107::180/121\",\r\n \"2603:1030:210:1::180/121\",\r\n
+ \ \"2603:1030:40b:1::180/121\",\r\n \"2603:1030:40c:1::180/121\",\r\n
+ \ \"2603:1030:504:1::180/121\",\r\n \"2603:1030:608::180/121\",\r\n
+ \ \"2603:1030:807:1::180/121\",\r\n \"2603:1030:a07::180/121\",\r\n
+ \ \"2603:1030:b04::180/121\",\r\n \"2603:1030:c06:1::180/121\",\r\n
+ \ \"2603:1030:f05:1::180/121\",\r\n \"2603:1030:1005::180/121\",\r\n
+ \ \"2603:1040:5:1::180/121\",\r\n \"2603:1040:207::180/121\",\r\n
+ \ \"2603:1040:407:1::180/121\",\r\n \"2603:1040:606::180/121\",\r\n
+ \ \"2603:1040:806::180/121\",\r\n \"2603:1040:904:1::180/121\",\r\n
+ \ \"2603:1040:a06:1::180/121\",\r\n \"2603:1040:b04::180/121\",\r\n
+ \ \"2603:1040:c06::180/121\",\r\n \"2603:1040:d04::180/121\",\r\n
+ \ \"2603:1040:f05:1::180/121\",\r\n \"2603:1040:1104::180/121\",\r\n
+ \ \"2603:1050:6:1::180/121\",\r\n \"2603:1050:403::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.128/26\",\r\n \"2603:1010:304::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.128/26\",\r\n \"2603:1010:404::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.CentralIndia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.81.253.154/32\",\r\n \"52.140.105.64/26\",\r\n
+ \ \"2603:1040:a06:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"id\":
+ \"AzureCognitiveSearch.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.128/26\",\r\n \"2603:1030:f:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastAsia\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.189.106.128/26\",\r\n \"40.81.29.152/32\",\r\n
+ \ \"52.184.80.221/32\",\r\n \"2603:1040:207::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.8.192/26\",\r\n \"52.253.229.120/32\",\r\n
+ \ \"2603:1030:40b:1::180/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCognitiveSearch.KoreaCentral\",\r\n \"id\":
+ \"AzureCognitiveSearch.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.65.64/26\",\r\n \"40.82.155.65/32\",\r\n \"2603:1040:f05:1::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.128/26\",\r\n \"2603:1020:b04::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCognitiveSearch.UKNorth\",\r\n
+ \ \"id\": \"AzureCognitiveSearch.UKNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCognitiveSearch\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.80.128/26\",\r\n \"2603:1020:305::180/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors\",\r\n
+ \ \"id\": \"AzureConnectors\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.86.57/32\",\r\n \"13.66.140.128/28\",\r\n
+ \ \"13.66.145.96/27\",\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n
+ \ \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n \"13.69.227.208/28\",\r\n
+ \ \"13.69.231.192/27\",\r\n \"13.70.72.192/28\",\r\n \"13.70.78.224/27\",\r\n
+ \ \"13.70.136.174/32\",\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"13.71.153.19/32\",\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"13.71.195.32/28\",\r\n \"13.71.199.192/27\",\r\n \"13.72.243.10/32\",\r\n
+ \ \"13.73.21.230/32\",\r\n \"13.73.244.224/27\",\r\n \"13.75.36.64/28\",\r\n
+ \ \"13.75.110.131/32\",\r\n \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"13.78.132.82/32\",\r\n \"13.86.223.32/27\",\r\n
+ \ \"13.87.56.224/28\",\r\n \"13.87.122.224/28\",\r\n \"13.89.171.80/28\",\r\n
+ \ \"13.89.178.64/27\",\r\n \"13.93.148.62/32\",\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n \"20.37.74.192/28\",\r\n
+ \ \"20.38.128.224/27\",\r\n \"20.43.123.0/27\",\r\n \"20.44.3.0/28\",\r\n
+ \ \"20.44.29.64/27\",\r\n \"20.53.0.0/27\",\r\n \"20.72.27.0/26\",\r\n
+ \ \"20.150.170.240/28\",\r\n \"20.150.173.64/26\",\r\n \"20.192.32.64/26\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"20.193.206.192/26\",\r\n \"23.100.208.0/27\",\r\n
+ \ \"40.67.58.240/28\",\r\n \"40.67.60.224/27\",\r\n \"40.69.106.240/28\",\r\n
+ \ \"40.69.111.0/27\",\r\n \"40.70.146.208/28\",\r\n \"40.70.151.96/27\",\r\n
+ \ \"40.71.11.80/28\",\r\n \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n
+ \ \"40.71.249.205/32\",\r\n \"40.74.100.224/28\",\r\n \"40.74.146.64/28\",\r\n
+ \ \"40.78.194.240/28\",\r\n \"40.78.202.96/28\",\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.79.178.240/28\",\r\n \"40.79.180.224/27\",\r\n
+ \ \"40.79.189.64/27\",\r\n \"40.80.180.64/27\",\r\n \"40.89.135.2/32\",\r\n
+ \ \"40.89.186.239/32\",\r\n \"40.91.208.65/32\",\r\n \"40.112.195.87/32\",\r\n
+ \ \"40.112.243.160/28\",\r\n \"40.114.40.132/32\",\r\n \"40.120.8.0/27\",\r\n
+ \ \"40.120.64.64/27\",\r\n \"51.12.98.240/28\",\r\n \"51.12.102.0/26\",\r\n
+ \ \"51.12.202.240/28\",\r\n \"51.12.205.192/26\",\r\n \"51.103.142.22/32\",\r\n
+ \ \"51.105.77.96/27\",\r\n \"51.107.59.16/28\",\r\n \"51.107.60.224/27\",\r\n
+ \ \"51.107.86.217/32\",\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"51.116.59.16/28\",\r\n \"51.116.60.192/27\",\r\n \"51.116.155.80/28\",\r\n
+ \ \"51.116.158.96/27\",\r\n \"51.116.211.212/32\",\r\n \"51.116.236.78/32\",\r\n
+ \ \"51.120.98.224/28\",\r\n \"51.120.100.192/27\",\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"51.140.61.124/32\",\r\n \"51.140.74.150/32\",\r\n
+ \ \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n \"51.140.211.0/28\",\r\n
+ \ \"51.140.212.224/27\",\r\n \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n
+ \ \"51.141.124.13/32\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"52.138.92.192/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.161.101.204/32\",\r\n \"52.161.102.22/32\",\r\n \"52.162.107.160/28\",\r\n
+ \ \"52.162.111.192/27\",\r\n \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n
+ \ \"52.166.78.89/32\",\r\n \"52.169.28.181/32\",\r\n \"52.171.130.92/32\",\r\n
+ \ \"52.172.211.12/32\",\r\n \"52.172.212.129/32\",\r\n \"52.173.241.27/32\",\r\n
+ \ \"52.173.245.164/32\",\r\n \"52.174.88.118/32\",\r\n \"52.175.23.169/32\",\r\n
+ \ \"52.178.150.68/32\",\r\n \"52.183.78.157/32\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"52.191.164.250/32\",\r\n \"52.225.129.144/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"65.52.250.208/28\",\r\n \"94.245.91.93/32\",\r\n \"102.37.64.0/27\",\r\n
+ \ \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n \"102.133.155.0/28\",\r\n
+ \ \"102.133.168.167/32\",\r\n \"102.133.253.0/27\",\r\n \"104.41.59.51/32\",\r\n
+ \ \"104.42.122.49/32\",\r\n \"104.209.247.23/32\",\r\n \"104.211.81.192/28\",\r\n
+ \ \"104.211.146.224/28\",\r\n \"104.211.189.124/32\",\r\n
+ \ \"104.211.189.218/32\",\r\n \"104.214.19.48/28\",\r\n \"104.214.70.191/32\",\r\n
+ \ \"104.214.164.0/27\",\r\n \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n
+ \ \"168.61.140.0/27\",\r\n \"168.61.143.64/26\",\r\n \"191.232.191.157/32\",\r\n
+ \ \"191.233.51.0/26\",\r\n \"191.233.203.192/28\",\r\n \"191.233.207.160/27\",\r\n
+ \ \"2603:1000:4:402::180/122\",\r\n \"2603:1000:104:402::180/122\",\r\n
+ \ \"2603:1010:6:402::180/122\",\r\n \"2603:1010:101:402::180/122\",\r\n
+ \ \"2603:1010:304:402::180/122\",\r\n \"2603:1010:404:402::180/122\",\r\n
+ \ \"2603:1020:5:402::180/122\",\r\n \"2603:1020:206:402::180/122\",\r\n
+ \ \"2603:1020:305:402::180/122\",\r\n \"2603:1020:405:402::180/122\",\r\n
+ \ \"2603:1020:605:402::180/122\",\r\n \"2603:1020:705:402::180/122\",\r\n
+ \ \"2603:1020:805:402::180/122\",\r\n \"2603:1020:905:402::180/122\",\r\n
+ \ \"2603:1020:a04:402::180/122\",\r\n \"2603:1020:b04:402::180/122\",\r\n
+ \ \"2603:1020:c04:402::180/122\",\r\n \"2603:1020:d04:402::180/122\",\r\n
+ \ \"2603:1020:e04:402::180/122\",\r\n \"2603:1020:f04:402::180/122\",\r\n
+ \ \"2603:1020:1004:c02::80/122\",\r\n \"2603:1020:1104:400::180/122\",\r\n
+ \ \"2603:1030:f:400::980/122\",\r\n \"2603:1030:10:402::180/122\",\r\n
+ \ \"2603:1030:104:402::180/122\",\r\n \"2603:1030:107:400::100/122\",\r\n
+ \ \"2603:1030:210:402::180/122\",\r\n \"2603:1030:40b:400::980/122\",\r\n
+ \ \"2603:1030:40c:402::180/122\",\r\n \"2603:1030:504:c02::80/122\",\r\n
+ \ \"2603:1030:608:402::180/122\",\r\n \"2603:1030:807:402::180/122\",\r\n
+ \ \"2603:1030:a07:402::100/122\",\r\n \"2603:1030:b04:402::180/122\",\r\n
+ \ \"2603:1030:c06:400::980/122\",\r\n \"2603:1030:f05:402::180/122\",\r\n
+ \ \"2603:1030:1005:402::180/122\",\r\n \"2603:1040:5:402::180/122\",\r\n
+ \ \"2603:1040:207:402::180/122\",\r\n \"2603:1040:407:402::180/122\",\r\n
+ \ \"2603:1040:606:402::180/122\",\r\n \"2603:1040:806:402::180/122\",\r\n
+ \ \"2603:1040:904:402::180/122\",\r\n \"2603:1040:a06:402::180/122\",\r\n
+ \ \"2603:1040:b04:402::180/122\",\r\n \"2603:1040:c06:402::180/122\",\r\n
+ \ \"2603:1040:d04:c02::80/122\",\r\n \"2603:1040:f05:402::180/122\",\r\n
+ \ \"2603:1040:1104:400::180/122\",\r\n \"2603:1050:6:402::180/122\",\r\n
+ \ \"2603:1050:403:400::2c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaCentral\",\r\n \"id\":
+ \"AzureConnectors.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.36.107.0/28\",\r\n
+ \ \"20.53.0.0/27\",\r\n \"2603:1010:304:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureConnectors.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.176/28\",\r\n \"20.36.117.160/27\",\r\n
+ \ \"2603:1010:404:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaEast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.192/28\",\r\n
+ \ \"13.70.78.224/27\",\r\n \"13.72.243.10/32\",\r\n \"52.237.214.72/32\",\r\n
+ \ \"2603:1010:6:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureConnectors.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.70.136.174/32\",\r\n
+ \ \"13.77.50.240/28\",\r\n \"13.77.55.160/27\",\r\n \"52.255.48.202/32\",\r\n
+ \ \"2603:1010:101:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.BrazilSouth\",\r\n \"id\":
+ \"AzureConnectors.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"104.41.59.51/32\",\r\n
+ \ \"191.232.191.157/32\",\r\n \"191.233.203.192/28\",\r\n
+ \ \"191.233.207.160/27\",\r\n \"2603:1050:6:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.208/28\",\r\n \"13.71.175.160/27\",\r\n
+ \ \"52.237.24.126/32\",\r\n \"52.237.32.212/32\",\r\n \"2603:1030:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CanadaEast\",\r\n
+ \ \"id\": \"AzureConnectors.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.240/28\",\r\n \"40.69.111.0/27\",\r\n
+ \ \"52.242.30.112/32\",\r\n \"52.242.35.152/32\",\r\n \"2603:1030:1005:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralIndia\",\r\n
+ \ \"id\": \"AzureConnectors.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.123.0/27\",\r\n \"52.172.211.12/32\",\r\n
+ \ \"52.172.212.129/32\",\r\n \"104.211.81.192/28\",\r\n \"2603:1040:a06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.80/28\",\r\n \"13.89.178.64/27\",\r\n
+ \ \"52.173.241.27/32\",\r\n \"52.173.245.164/32\",\r\n \"2603:1030:10:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureConnectors.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureConnectors\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.202.96/28\",\r\n \"168.61.140.0/27\",\r\n
+ \ \"168.61.143.64/26\",\r\n \"2603:1030:f:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.64/28\",\r\n \"13.75.110.131/32\",\r\n
+ \ \"52.175.23.169/32\",\r\n \"104.214.164.0/27\",\r\n \"2603:1040:207:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.71.11.80/28\",\r\n
+ \ \"40.71.15.160/27\",\r\n \"40.71.249.139/32\",\r\n \"40.71.249.205/32\",\r\n
+ \ \"40.114.40.132/32\",\r\n \"2603:1030:210:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.70.146.208/28\",\r\n
+ \ \"40.70.151.96/27\",\r\n \"52.225.129.144/32\",\r\n \"52.232.188.154/32\",\r\n
+ \ \"104.209.247.23/32\",\r\n \"2603:1030:40c:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureConnectors.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.64/28\",\r\n \"52.138.92.192/27\",\r\n
+ \ \"2603:1030:40b:400::980/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceCentral\",\r\n \"id\":
+ \"AzureConnectors.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.130.208/28\",\r\n
+ \ \"40.79.148.96/27\",\r\n \"40.89.135.2/32\",\r\n \"40.89.186.239/32\",\r\n
+ \ \"2603:1020:805:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.FranceSouth\",\r\n \"id\":
+ \"AzureConnectors.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.240/28\",\r\n
+ \ \"40.79.180.224/27\",\r\n \"52.136.133.184/32\",\r\n \"52.136.142.154/32\",\r\n
+ \ \"2603:1020:905:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.GermanyNorth\",\r\n \"id\":
+ \"AzureConnectors.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.116.59.16/28\",\r\n
+ \ \"51.116.60.192/27\",\r\n \"51.116.211.212/32\",\r\n \"2603:1020:d04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureConnectors.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.80/28\",\r\n \"51.116.158.96/27\",\r\n
+ \ \"51.116.236.78/32\",\r\n \"2603:1020:c04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanEast\",\r\n
+ \ \"id\": \"AzureConnectors.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.153.19/32\",\r\n \"13.73.21.230/32\",\r\n
+ \ \"13.78.108.0/28\",\r\n \"40.79.189.64/27\",\r\n \"2603:1040:407:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.JapanWest\",\r\n
+ \ \"id\": \"AzureConnectors.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.224/28\",\r\n \"40.80.180.64/27\",\r\n
+ \ \"104.215.27.24/32\",\r\n \"104.215.61.248/32\",\r\n \"2603:1040:606:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaCentral\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.29.64/27\",\r\n \"52.141.1.104/32\",\r\n \"52.141.36.214/32\",\r\n
+ \ \"52.231.18.208/28\",\r\n \"2603:1040:f05:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.KoreaSouth\",\r\n
+ \ \"id\": \"AzureConnectors.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.147.0/28\",\r\n \"52.231.148.224/27\",\r\n
+ \ \"52.231.163.10/32\",\r\n \"52.231.201.173/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureConnectors.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.107.160/28\",\r\n \"52.162.111.192/27\",\r\n
+ \ \"52.162.126.4/32\",\r\n \"52.162.242.161/32\",\r\n \"2603:1030:608:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorthEurope\",\r\n
+ \ \"id\": \"AzureConnectors.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.208/28\",\r\n \"13.69.231.192/27\",\r\n
+ \ \"52.169.28.181/32\",\r\n \"52.178.150.68/32\",\r\n \"94.245.91.93/32\",\r\n
+ \ \"2603:1020:5:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.NorwayEast\",\r\n \"id\":
+ \"AzureConnectors.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.224/28\",\r\n
+ \ \"51.120.100.192/27\",\r\n \"2603:1020:e04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.NorwayWest\",\r\n
+ \ \"id\": \"AzureConnectors.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.240/28\",\r\n
+ \ \"51.120.220.192/27\",\r\n \"2603:1020:f04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.0/28\",\r\n \"102.133.168.167/32\",\r\n
+ \ \"102.133.253.0/27\",\r\n \"2603:1000:104:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureConnectors.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.0/27\",\r\n \"102.133.27.0/28\",\r\n \"102.133.72.85/32\",\r\n
+ \ \"2603:1000:4:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.SouthCentralUS\",\r\n \"id\":
+ \"AzureConnectors.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.65.86.57/32\",\r\n
+ \ \"13.73.244.224/27\",\r\n \"52.171.130.92/32\",\r\n \"104.214.19.48/28\",\r\n
+ \ \"104.214.70.191/32\",\r\n \"2603:1030:807:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureConnectors.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.240/28\",\r\n \"13.67.15.32/27\",\r\n \"52.187.68.19/32\",\r\n
+ \ \"52.187.115.69/32\",\r\n \"2603:1040:5:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SouthIndia\",\r\n
+ \ \"id\": \"AzureConnectors.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.125.22/32\",\r\n \"13.71.127.26/32\",\r\n
+ \ \"20.192.184.32/27\",\r\n \"40.78.194.240/28\",\r\n \"2603:1040:c06:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.103.142.22/32\",\r\n \"51.107.59.16/28\",\r\n
+ \ \"51.107.60.224/27\",\r\n \"51.107.86.217/32\",\r\n \"2603:1020:a04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureConnectors.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.155.16/28\",\r\n \"51.107.156.224/27\",\r\n
+ \ \"2603:1020:b04:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UAECentral\",\r\n \"id\":
+ \"AzureConnectors.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"20.37.74.192/28\",\r\n
+ \ \"40.120.8.0/27\",\r\n \"2603:1040:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.UAENorth\",\r\n
+ \ \"id\": \"AzureConnectors.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.64/27\",\r\n \"65.52.250.208/28\",\r\n
+ \ \"2603:1040:904:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKSouth\",\r\n \"id\": \"AzureConnectors.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.77.96/27\",\r\n \"51.140.61.124/32\",\r\n
+ \ \"51.140.74.150/32\",\r\n \"51.140.80.51/32\",\r\n \"51.140.148.0/28\",\r\n
+ \ \"2603:1020:705:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.UKWest\",\r\n \"id\": \"AzureConnectors.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.211.0/28\",\r\n \"51.140.212.224/27\",\r\n
+ \ \"51.141.47.105/32\",\r\n \"51.141.52.185/32\",\r\n \"51.141.124.13/32\",\r\n
+ \ \"2603:1020:605:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestCentralUS\",\r\n \"id\":
+ \"AzureConnectors.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureConnectors\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.32/28\",\r\n
+ \ \"13.71.199.192/27\",\r\n \"13.78.132.82/32\",\r\n \"52.161.101.204/32\",\r\n
+ \ \"52.161.102.22/32\",\r\n \"2603:1030:b04:402::180/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureConnectors.WestEurope\",\r\n
+ \ \"id\": \"AzureConnectors.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.208/28\",\r\n \"13.69.71.192/27\",\r\n
+ \ \"40.91.208.65/32\",\r\n \"52.166.78.89/32\",\r\n \"52.174.88.118/32\",\r\n
+ \ \"2603:1020:206:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestIndia\",\r\n \"id\": \"AzureConnectors.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.224/27\",\r\n \"104.211.146.224/28\",\r\n
+ \ \"104.211.189.124/32\",\r\n \"104.211.189.218/32\",\r\n
+ \ \"2603:1040:806:402::180/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS\",\r\n \"id\": \"AzureConnectors.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.223.32/27\",\r\n \"13.93.148.62/32\",\r\n
+ \ \"40.112.195.87/32\",\r\n \"40.112.243.160/28\",\r\n \"104.42.122.49/32\",\r\n
+ \ \"2603:1030:a07:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureConnectors.WestUS2\",\r\n \"id\": \"AzureConnectors.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureConnectors\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.128/28\",\r\n \"13.66.145.96/27\",\r\n
+ \ \"52.183.78.157/32\",\r\n \"52.191.164.250/32\",\r\n \"2603:1030:c06:400::980/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry\",\r\n
+ \ \"id\": \"AzureContainerRegistry\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n
+ \ \"13.66.147.0/25\",\r\n \"13.66.148.0/24\",\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/24\",\r\n \"13.69.64.88/29\",\r\n \"13.69.106.80/29\",\r\n
+ \ \"13.69.110.0/24\",\r\n \"13.69.227.88/29\",\r\n \"13.69.236.0/23\",\r\n
+ \ \"13.69.238.0/24\",\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n
+ \ \"13.71.170.56/29\",\r\n \"13.71.176.0/24\",\r\n \"13.71.194.224/29\",\r\n
+ \ \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n \"13.73.255.64/26\",\r\n
+ \ \"13.74.107.80/29\",\r\n \"13.74.110.0/24\",\r\n \"13.75.36.0/29\",\r\n
+ \ \"13.77.50.80/29\",\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"13.87.56.96/29\",\r\n \"13.87.122.96/29\",\r\n \"13.89.170.216/29\",\r\n
+ \ \"13.89.175.0/25\",\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"20.38.132.192/26\",\r\n \"20.38.140.192/26\",\r\n \"20.38.146.144/29\",\r\n
+ \ \"20.38.149.0/25\",\r\n \"20.39.15.128/25\",\r\n \"20.40.224.64/26\",\r\n
+ \ \"20.41.69.128/26\",\r\n \"20.41.199.192/26\",\r\n \"20.41.208.64/26\",\r\n
+ \ \"20.42.66.0/23\",\r\n \"20.43.46.64/26\",\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.44.2.24/29\",\r\n \"20.44.11.0/25\",\r\n
+ \ \"20.44.11.128/26\",\r\n \"20.44.12.0/25\",\r\n \"20.44.19.64/26\",\r\n
+ \ \"20.44.22.0/23\",\r\n \"20.44.26.144/29\",\r\n \"20.44.29.128/25\",\r\n
+ \ \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n \"20.45.199.128/25\",\r\n
+ \ \"20.48.192.128/26\",\r\n \"20.49.82.16/29\",\r\n \"20.49.90.16/29\",\r\n
+ \ \"20.49.92.0/24\",\r\n \"20.49.93.0/26\",\r\n \"20.49.102.128/26\",\r\n
+ \ \"20.49.115.0/26\",\r\n \"20.49.127.0/26\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.52.72.128/26\",\r\n \"20.52.88.64/26\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"20.62.128.0/26\",\r\n \"20.65.0.0/24\",\r\n
+ \ \"20.72.18.128/26\",\r\n \"20.72.26.128/26\",\r\n \"20.72.30.0/25\",\r\n
+ \ \"20.135.26.64/26\",\r\n \"20.150.170.24/29\",\r\n \"20.150.173.128/26\",\r\n
+ \ \"20.150.174.0/25\",\r\n \"20.150.178.144/29\",\r\n \"20.150.181.192/26\",\r\n
+ \ \"20.150.182.128/25\",\r\n \"20.150.186.144/29\",\r\n \"20.150.189.192/26\",\r\n
+ \ \"20.150.190.128/25\",\r\n \"20.150.225.64/26\",\r\n \"20.150.241.0/26\",\r\n
+ \ \"20.187.196.64/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"20.189.224.0/26\",\r\n \"20.191.160.128/26\",\r\n \"20.192.32.0/26\",\r\n
+ \ \"20.192.33.0/26\",\r\n \"20.192.33.128/25\",\r\n \"20.192.50.0/26\",\r\n
+ \ \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n \"20.192.101.128/26\",\r\n
+ \ \"20.192.234.24/29\",\r\n \"20.193.192.128/26\",\r\n \"20.193.202.16/29\",\r\n
+ \ \"20.193.204.128/26\",\r\n \"20.193.205.0/25\",\r\n \"20.193.206.64/26\",\r\n
+ \ \"20.194.66.16/29\",\r\n \"20.194.68.0/25\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"20.194.128.0/25\",\r\n \"20.195.64.128/26\",\r\n \"20.195.136.0/24\",\r\n
+ \ \"20.195.137.0/25\",\r\n \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n
+ \ \"23.98.87.0/25\",\r\n \"23.98.112.0/25\",\r\n \"40.64.112.0/24\",\r\n
+ \ \"40.64.135.128/25\",\r\n \"40.67.58.24/29\",\r\n \"40.67.121.0/25\",\r\n
+ \ \"40.67.122.128/26\",\r\n \"40.69.106.80/29\",\r\n \"40.69.110.0/25\",\r\n
+ \ \"40.69.116.0/26\",\r\n \"40.70.146.88/29\",\r\n \"40.70.150.0/24\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.74.100.160/29\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.78.194.80/29\",\r\n
+ \ \"40.78.196.192/26\",\r\n \"40.78.202.72/29\",\r\n \"40.78.226.208/29\",\r\n
+ \ \"40.78.231.0/24\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n \"40.79.138.32/29\",\r\n
+ \ \"40.79.141.0/25\",\r\n \"40.79.146.32/29\",\r\n \"40.79.148.128/25\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n
+ \ \"40.79.166.0/25\",\r\n \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n
+ \ \"40.79.174.0/25\",\r\n \"40.79.178.80/29\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"40.89.120.0/24\",\r\n \"40.89.121.0/25\",\r\n \"40.112.242.160/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/25\",\r\n \"40.124.64.0/25\",\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.12.25.64/26\",\r\n \"51.12.32.0/25\",\r\n \"51.12.98.24/29\",\r\n
+ \ \"51.12.100.192/26\",\r\n \"51.12.101.0/26\",\r\n \"51.12.199.192/26\",\r\n
+ \ \"51.12.202.24/29\",\r\n \"51.12.205.128/26\",\r\n \"51.12.206.128/25\",\r\n
+ \ \"51.12.226.144/29\",\r\n \"51.12.234.144/29\",\r\n \"51.13.0.0/25\",\r\n
+ \ \"51.13.1.64/26\",\r\n \"51.13.128.128/25\",\r\n \"51.13.129.0/26\",\r\n
+ \ \"51.104.9.128/25\",\r\n \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n
+ \ \"51.105.70.0/25\",\r\n \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n
+ \ \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n \"51.107.58.24/29\",\r\n
+ \ \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n \"51.107.154.24/29\",\r\n
+ \ \"51.107.192.0/26\",\r\n \"51.116.58.24/29\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/25\",\r\n \"51.116.242.144/29\",\r\n \"51.116.250.144/29\",\r\n
+ \ \"51.120.98.160/29\",\r\n \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n
+ \ \"51.120.110.0/25\",\r\n \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n
+ \ \"51.120.218.24/29\",\r\n \"51.120.234.0/26\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.138.160.128/26\",\r\n \"51.140.146.200/29\",\r\n
+ \ \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n \"51.143.208.0/26\",\r\n
+ \ \"52.138.90.32/29\",\r\n \"52.138.93.0/24\",\r\n \"52.138.226.80/29\",\r\n
+ \ \"52.138.230.0/23\",\r\n \"52.140.110.192/26\",\r\n \"52.146.131.128/26\",\r\n
+ \ \"52.150.156.64/26\",\r\n \"52.162.104.192/26\",\r\n \"52.162.106.160/29\",\r\n
+ \ \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n \"52.168.112.192/26\",\r\n
+ \ \"52.168.114.0/23\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.182.138.208/29\",\r\n \"52.182.142.0/24\",\r\n \"52.231.18.56/29\",\r\n
+ \ \"52.231.20.128/26\",\r\n \"52.231.146.192/29\",\r\n \"52.236.186.80/29\",\r\n
+ \ \"52.236.191.0/24\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"65.52.248.192/26\",\r\n \"65.52.250.16/29\",\r\n \"102.37.65.64/26\",\r\n
+ \ \"102.37.72.128/26\",\r\n \"102.133.26.24/29\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"104.208.16.80/29\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"104.211.81.136/29\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"104.214.18.184/29\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"168.61.140.128/25\",\r\n \"168.61.141.0/24\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"191.233.50.16/29\",\r\n \"191.233.54.64/26\",\r\n
+ \ \"191.233.54.128/26\",\r\n \"191.233.203.136/29\",\r\n
+ \ \"191.233.205.192/26\",\r\n \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n
+ \ \"191.234.149.64/26\",\r\n \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n
+ \ \"191.234.157.192/26\",\r\n \"2603:1000:4:402::90/125\",\r\n
+ \ \"2603:1000:4:402::340/122\",\r\n \"2603:1000:4:402::580/122\",\r\n
+ \ \"2603:1000:104:402::90/125\",\r\n \"2603:1000:104:402::340/122\",\r\n
+ \ \"2603:1000:104:802::90/125\",\r\n \"2603:1000:104:802::2c0/122\",\r\n
+ \ \"2603:1000:104:c02::90/125\",\r\n \"2603:1010:6:402::90/125\",\r\n
+ \ \"2603:1010:6:402::340/122\",\r\n \"2603:1010:6:802::90/125\",\r\n
+ \ \"2603:1010:6:802::2c0/122\",\r\n \"2603:1010:6:c02::90/125\",\r\n
+ \ \"2603:1010:101:402::90/125\",\r\n \"2603:1010:101:402::340/122\",\r\n
+ \ \"2603:1010:101:402::580/122\",\r\n \"2603:1010:304:402::90/125\",\r\n
+ \ \"2603:1010:304:402::340/122\",\r\n \"2603:1010:304:402::580/122\",\r\n
+ \ \"2603:1010:404:402::90/125\",\r\n \"2603:1010:404:402::340/122\",\r\n
+ \ \"2603:1010:404:402::580/122\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\",\r\n
+ \ \"2603:1020:206:402::90/125\",\r\n \"2603:1020:206:402::340/122\",\r\n
+ \ \"2603:1020:206:802::90/125\",\r\n \"2603:1020:206:802::2c0/122\",\r\n
+ \ \"2603:1020:206:c02::90/125\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\",\r\n \"2603:1020:605:402::90/125\",\r\n
+ \ \"2603:1020:605:402::340/122\",\r\n \"2603:1020:605:402::580/122\",\r\n
+ \ \"2603:1020:705:402::90/125\",\r\n \"2603:1020:705:402::340/122\",\r\n
+ \ \"2603:1020:705:802::90/125\",\r\n \"2603:1020:705:802::2c0/122\",\r\n
+ \ \"2603:1020:705:c02::90/125\",\r\n \"2603:1020:805:402::90/125\",\r\n
+ \ \"2603:1020:805:402::340/122\",\r\n \"2603:1020:805:802::90/125\",\r\n
+ \ \"2603:1020:805:802::2c0/122\",\r\n \"2603:1020:805:c02::90/125\",\r\n
+ \ \"2603:1020:905:402::90/125\",\r\n \"2603:1020:905:402::340/122\",\r\n
+ \ \"2603:1020:905:402::580/122\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\",\r\n
+ \ \"2603:1020:b04:402::90/125\",\r\n \"2603:1020:b04:402::340/122\",\r\n
+ \ \"2603:1020:b04:402::580/122\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\",\r\n \"2603:1020:e04::348/125\",\r\n
+ \ \"2603:1020:e04:402::90/125\",\r\n \"2603:1020:e04:402::340/122\",\r\n
+ \ \"2603:1020:e04:402::580/121\",\r\n \"2603:1020:e04:802::90/125\",\r\n
+ \ \"2603:1020:e04:802::2c0/122\",\r\n \"2603:1020:e04:c02::90/125\",\r\n
+ \ \"2603:1020:f04:402::90/125\",\r\n \"2603:1020:f04:402::340/122\",\r\n
+ \ \"2603:1020:f04:402::580/122\",\r\n \"2603:1020:1004:1::1a0/125\",\r\n
+ \ \"2603:1020:1004:400::90/125\",\r\n \"2603:1020:1004:400::3b8/125\",\r\n
+ \ \"2603:1020:1004:400::4c0/122\",\r\n \"2603:1020:1004:400::500/121\",\r\n
+ \ \"2603:1020:1004:800::150/125\",\r\n \"2603:1020:1004:800::180/121\",\r\n
+ \ \"2603:1020:1004:800::280/121\",\r\n \"2603:1020:1004:c02::300/121\",\r\n
+ \ \"2603:1020:1104::5a0/125\",\r\n \"2603:1020:1104:400::90/125\",\r\n
+ \ \"2603:1020:1104:400::380/121\",\r\n \"2603:1020:1104:400::540/122\",\r\n
+ \ \"2603:1030:f:1::2a8/125\",\r\n \"2603:1030:f:400::890/125\",\r\n
+ \ \"2603:1030:f:400::b40/122\",\r\n \"2603:1030:f:400::d80/122\",\r\n
+ \ \"2603:1030:f:400::e00/121\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\",\r\n
+ \ \"2603:1030:104:402::90/125\",\r\n \"2603:1030:104:402::340/122\",\r\n
+ \ \"2603:1030:104:402::580/122\",\r\n \"2603:1030:107::580/125\",\r\n
+ \ \"2603:1030:107:400::18/125\",\r\n \"2603:1030:107:400::300/121\",\r\n
+ \ \"2603:1030:107:400::500/122\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\",\r\n
+ \ \"2603:1030:302:402::c0/122\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\",\r\n
+ \ \"2603:1030:40c:402::90/125\",\r\n \"2603:1030:40c:402::340/122\",\r\n
+ \ \"2603:1030:40c:802::90/125\",\r\n \"2603:1030:40c:802::2c0/122\",\r\n
+ \ \"2603:1030:40c:c02::90/125\",\r\n \"2603:1030:504::1a0/125\",\r\n
+ \ \"2603:1030:504:402::90/125\",\r\n \"2603:1030:504:402::3b8/125\",\r\n
+ \ \"2603:1030:504:802::c0/125\",\r\n \"2603:1030:504:802::150/125\",\r\n
+ \ \"2603:1030:504:802::180/121\",\r\n \"2603:1030:504:c02::140/122\",\r\n
+ \ \"2603:1030:504:c02::300/121\",\r\n \"2603:1030:608:402::90/125\",\r\n
+ \ \"2603:1030:608:402::340/122\",\r\n \"2603:1030:608:402::580/122\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\",\r\n \"2603:1030:c06:400::890/125\",\r\n
+ \ \"2603:1030:c06:400::b40/122\",\r\n \"2603:1030:c06:802::90/125\",\r\n
+ \ \"2603:1030:c06:802::2c0/122\",\r\n \"2603:1030:c06:c02::90/125\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\",\r\n \"2603:1030:1005:402::90/125\",\r\n
+ \ \"2603:1030:1005:402::340/122\",\r\n \"2603:1030:1005:402::580/122\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\",\r\n
+ \ \"2603:1040:407:402::90/125\",\r\n \"2603:1040:407:402::340/122\",\r\n
+ \ \"2603:1040:407:802::90/125\",\r\n \"2603:1040:407:802::2c0/122\",\r\n
+ \ \"2603:1040:407:c02::90/125\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\",\r\n
+ \ \"2603:1040:a06:402::90/125\",\r\n \"2603:1040:a06:402::340/122\",\r\n
+ \ \"2603:1040:a06:802::90/125\",\r\n \"2603:1040:a06:802::2c0/122\",\r\n
+ \ \"2603:1040:a06:c02::90/125\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\",\r\n \"2603:1040:d04:1::1a0/125\",\r\n
+ \ \"2603:1040:d04:400::90/125\",\r\n \"2603:1040:d04:400::3b8/125\",\r\n
+ \ \"2603:1040:d04:400::4c0/122\",\r\n \"2603:1040:d04:400::500/121\",\r\n
+ \ \"2603:1040:d04:800::150/125\",\r\n \"2603:1040:d04:800::180/121\",\r\n
+ \ \"2603:1040:d04:800::280/121\",\r\n \"2603:1040:d04:c02::300/121\",\r\n
+ \ \"2603:1040:e05:402::100/122\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\",\r\n
+ \ \"2603:1040:1104::5a0/125\",\r\n \"2603:1040:1104:400::90/125\",\r\n
+ \ \"2603:1040:1104:400::380/121\",\r\n \"2603:1040:1104:400::480/122\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\",\r\n
+ \ \"2603:1050:403:400::98/125\",\r\n \"2603:1050:403:400::480/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.136/29\",\r\n \"13.70.78.0/25\",\r\n \"20.53.41.128/26\",\r\n
+ \ \"40.79.162.32/29\",\r\n \"40.79.165.128/25\",\r\n \"40.79.166.0/25\",\r\n
+ \ \"40.79.170.0/29\",\r\n \"40.79.173.128/25\",\r\n \"40.79.174.0/25\",\r\n
+ \ \"2603:1010:6:402::90/125\",\r\n \"2603:1010:6:402::340/122\",\r\n
+ \ \"2603:1010:6:802::90/125\",\r\n \"2603:1010:6:802::2c0/122\",\r\n
+ \ \"2603:1010:6:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.80/29\",\r\n \"104.46.161.128/25\",\r\n
+ \ \"104.46.162.128/26\",\r\n \"104.46.177.128/26\",\r\n \"2603:1010:101:402::90/125\",\r\n
+ \ \"2603:1010:101:402::340/122\",\r\n \"2603:1010:101:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.136.0/24\",\r\n \"20.195.137.0/25\",\r\n
+ \ \"191.233.203.136/29\",\r\n \"191.233.205.192/26\",\r\n
+ \ \"191.234.139.0/26\",\r\n \"191.234.146.144/29\",\r\n \"191.234.149.64/26\",\r\n
+ \ \"191.234.150.0/26\",\r\n \"191.234.154.144/29\",\r\n \"191.234.157.192/26\",\r\n
+ \ \"2603:1050:6:402::90/125\",\r\n \"2603:1050:6:402::340/122\",\r\n
+ \ \"2603:1050:6:402::500/121\",\r\n \"2603:1050:6:802::90/125\",\r\n
+ \ \"2603:1050:6:802::2c0/122\",\r\n \"2603:1050:6:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.56/29\",\r\n \"13.71.176.0/25\",\r\n \"13.71.176.128/25\",\r\n
+ \ \"20.38.146.144/29\",\r\n \"20.38.149.0/25\",\r\n \"20.48.192.128/26\",\r\n
+ \ \"52.246.154.144/29\",\r\n \"52.246.157.128/25\",\r\n \"52.246.158.0/25\",\r\n
+ \ \"2603:1030:f05:402::90/125\",\r\n \"2603:1030:f05:402::340/122\",\r\n
+ \ \"2603:1030:f05:802::90/125\",\r\n \"2603:1030:f05:802::2c0/122\",\r\n
+ \ \"2603:1030:f05:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CanadaEast\",\r\n \"id\":
+ \"AzureContainerRegistry.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.80/29\",\r\n
+ \ \"40.69.110.0/25\",\r\n \"40.69.116.0/26\",\r\n \"40.89.23.64/26\",\r\n
+ \ \"2603:1030:1005:402::90/125\",\r\n \"2603:1030:1005:402::340/122\",\r\n
+ \ \"2603:1030:1005:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.CentralIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.128/26\",\r\n
+ \ \"20.43.123.64/26\",\r\n \"20.192.98.144/29\",\r\n \"20.192.101.64/26\",\r\n
+ \ \"20.192.101.128/26\",\r\n \"40.80.50.144/29\",\r\n \"40.80.51.192/26\",\r\n
+ \ \"52.140.110.192/26\",\r\n \"104.211.81.136/29\",\r\n \"2603:1040:a06:402::90/125\",\r\n
+ \ \"2603:1040:a06:402::340/122\",\r\n \"2603:1040:a06:802::90/125\",\r\n
+ \ \"2603:1040:a06:802::2c0/122\",\r\n \"2603:1040:a06:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.216/29\",\r\n \"13.89.175.0/25\",\r\n
+ \ \"20.40.224.64/26\",\r\n \"20.44.11.0/25\",\r\n \"20.44.11.128/26\",\r\n
+ \ \"20.44.12.0/25\",\r\n \"52.182.138.208/29\",\r\n \"52.182.142.0/25\",\r\n
+ \ \"52.182.142.128/25\",\r\n \"104.208.16.80/29\",\r\n \"2603:1030:10:402::90/125\",\r\n
+ \ \"2603:1030:10:402::340/122\",\r\n \"2603:1030:10:802::90/125\",\r\n
+ \ \"2603:1030:10:802::2c0/122\",\r\n \"2603:1030:10:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.199.128/25\",\r\n \"40.78.202.72/29\",\r\n
+ \ \"168.61.140.128/25\",\r\n \"168.61.141.0/25\",\r\n \"168.61.141.128/25\",\r\n
+ \ \"168.61.142.192/26\",\r\n \"2603:1030:f:1::2a8/125\",\r\n
+ \ \"2603:1030:f:400::890/125\",\r\n \"2603:1030:f:400::b40/122\",\r\n
+ \ \"2603:1030:f:400::d80/122\",\r\n \"2603:1030:f:400::e00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.0/29\",\r\n \"20.187.196.64/26\",\r\n \"104.214.161.128/25\",\r\n
+ \ \"104.214.165.0/26\",\r\n \"2603:1040:207:402::90/125\",\r\n
+ \ \"2603:1040:207:402::340/122\",\r\n \"2603:1040:207:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.66.0/24\",\r\n \"20.42.67.0/24\",\r\n \"20.62.128.0/26\",\r\n
+ \ \"40.71.10.216/29\",\r\n \"40.78.226.208/29\",\r\n \"40.78.231.0/24\",\r\n
+ \ \"40.79.154.104/29\",\r\n \"52.168.112.192/26\",\r\n \"52.168.114.0/24\",\r\n
+ \ \"52.168.115.0/24\",\r\n \"2603:1030:210:402::90/125\",\r\n
+ \ \"2603:1030:210:402::340/122\",\r\n \"2603:1030:210:802::90/125\",\r\n
+ \ \"2603:1030:210:802::2c0/122\",\r\n \"2603:1030:210:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.19.64/26\",\r\n \"20.44.22.0/24\",\r\n \"20.44.23.0/24\",\r\n
+ \ \"20.49.102.128/26\",\r\n \"20.65.0.0/24\",\r\n \"40.70.146.88/29\",\r\n
+ \ \"40.70.150.0/24\",\r\n \"52.167.106.80/29\",\r\n \"52.167.110.0/24\",\r\n
+ \ \"104.208.144.80/29\",\r\n \"2603:1030:40c:402::90/125\",\r\n
+ \ \"2603:1030:40c:402::340/122\",\r\n \"2603:1030:40c:802::90/125\",\r\n
+ \ \"2603:1030:40c:802::2c0/122\",\r\n \"2603:1030:40c:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.128/25\",\r\n \"40.74.146.48/29\",\r\n
+ \ \"40.74.149.128/25\",\r\n \"40.75.34.32/29\",\r\n \"40.89.120.0/24\",\r\n
+ \ \"40.89.121.0/25\",\r\n \"52.138.90.32/29\",\r\n \"52.138.93.0/25\",\r\n
+ \ \"52.138.93.128/25\",\r\n \"2603:1030:40b:400::890/125\",\r\n
+ \ \"2603:1030:40b:400::b40/122\",\r\n \"2603:1030:40b:800::90/125\",\r\n
+ \ \"2603:1030:40b:800::2c0/122\",\r\n \"2603:1030:40b:c00::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.46.64/26\",\r\n \"40.79.130.56/29\",\r\n \"40.79.132.192/26\",\r\n
+ \ \"40.79.138.32/29\",\r\n \"40.79.141.0/26\",\r\n \"40.79.141.64/26\",\r\n
+ \ \"40.79.146.32/29\",\r\n \"40.79.148.128/26\",\r\n \"40.79.148.192/26\",\r\n
+ \ \"2603:1020:805:402::90/125\",\r\n \"2603:1020:805:402::340/122\",\r\n
+ \ \"2603:1020:805:802::90/125\",\r\n \"2603:1020:805:802::2c0/122\",\r\n
+ \ \"2603:1020:805:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.FranceSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.79.178.80/29\",\r\n
+ \ \"51.138.160.128/26\",\r\n \"2603:1020:905:402::90/125\",\r\n
+ \ \"2603:1020:905:402::340/122\",\r\n \"2603:1020:905:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.128/26\",\r\n \"51.116.58.24/29\",\r\n
+ \ \"2603:1020:d04:402::90/125\",\r\n \"2603:1020:d04:402::340/122\",\r\n
+ \ \"2603:1020:d04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.88.64/26\",\r\n \"51.116.154.88/29\",\r\n
+ \ \"51.116.158.128/26\",\r\n \"51.116.158.192/26\",\r\n \"51.116.242.144/29\",\r\n
+ \ \"51.116.250.144/29\",\r\n \"2603:1020:c04:402::90/125\",\r\n
+ \ \"2603:1020:c04:402::340/122\",\r\n \"2603:1020:c04:802::90/125\",\r\n
+ \ \"2603:1020:c04:802::2c0/122\",\r\n \"2603:1020:c04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.200/29\",\r\n \"13.78.111.0/25\",\r\n
+ \ \"20.191.160.128/26\",\r\n \"20.194.128.0/25\",\r\n \"40.79.186.8/29\",\r\n
+ \ \"40.79.189.128/25\",\r\n \"40.79.190.0/25\",\r\n \"40.79.194.96/29\",\r\n
+ \ \"40.79.197.128/25\",\r\n \"2603:1040:407:402::90/125\",\r\n
+ \ \"2603:1040:407:402::340/122\",\r\n \"2603:1040:407:802::90/125\",\r\n
+ \ \"2603:1040:407:802::2c0/122\",\r\n \"2603:1040:407:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.224.0/26\",\r\n \"40.74.100.160/29\",\r\n
+ \ \"40.80.176.128/25\",\r\n \"40.80.181.0/26\",\r\n \"2603:1040:606:402::90/125\",\r\n
+ \ \"2603:1040:606:402::340/122\",\r\n \"2603:1040:606:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.128/26\",\r\n \"20.44.26.144/29\",\r\n
+ \ \"20.44.29.128/26\",\r\n \"20.44.29.192/26\",\r\n \"20.194.66.16/29\",\r\n
+ \ \"20.194.68.0/26\",\r\n \"20.194.68.64/26\",\r\n \"20.194.70.0/25\",\r\n
+ \ \"52.231.18.56/29\",\r\n \"52.231.20.128/26\",\r\n \"2603:1040:f05::348/125\",\r\n
+ \ \"2603:1040:f05:402::90/125\",\r\n \"2603:1040:f05:402::340/122\",\r\n
+ \ \"2603:1040:f05:402::580/121\",\r\n \"2603:1040:f05:402::600/120\",\r\n
+ \ \"2603:1040:f05:402::700/121\",\r\n \"2603:1040:f05:802::90/125\",\r\n
+ \ \"2603:1040:f05:802::2c0/122\",\r\n \"2603:1040:f05:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.KoreaSouth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.135.26.64/26\",\r\n \"52.231.146.192/29\",\r\n
+ \ \"2603:1040:e05:402::100/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.115.0/26\",\r\n \"52.162.104.192/26\",\r\n
+ \ \"52.162.106.160/29\",\r\n \"52.240.241.128/25\",\r\n \"52.240.244.0/25\",\r\n
+ \ \"2603:1030:608:402::90/125\",\r\n \"2603:1030:608:402::340/122\",\r\n
+ \ \"2603:1030:608:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorthEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.88/29\",\r\n
+ \ \"13.69.236.0/23\",\r\n \"13.69.238.0/24\",\r\n \"13.74.107.80/29\",\r\n
+ \ \"13.74.110.0/24\",\r\n \"52.138.226.80/29\",\r\n \"52.138.230.0/24\",\r\n
+ \ \"52.138.231.0/24\",\r\n \"52.146.131.128/26\",\r\n \"2603:1020:5:402::90/125\",\r\n
+ \ \"2603:1020:5:402::340/122\",\r\n \"2603:1020:5:802::90/125\",\r\n
+ \ \"2603:1020:5:802::2c0/122\",\r\n \"2603:1020:5:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"AzureContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"5\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.0/25\",\r\n \"51.13.1.64/26\",\r\n \"51.120.98.160/29\",\r\n
+ \ \"51.120.106.144/29\",\r\n \"51.120.109.128/26\",\r\n \"51.120.110.0/25\",\r\n
+ \ \"51.120.210.144/29\",\r\n \"51.120.213.128/25\",\r\n \"51.120.234.0/26\",\r\n
+ \ \"2603:1020:e04::348/125\",\r\n \"2603:1020:e04:402::90/125\",\r\n
+ \ \"2603:1020:e04:402::340/122\",\r\n \"2603:1020:e04:402::580/121\",\r\n
+ \ \"2603:1020:e04:802::90/125\",\r\n \"2603:1020:e04:802::2c0/122\",\r\n
+ \ \"2603:1020:e04:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.NorwayWest\",\r\n \"id\":
+ \"AzureContainerRegistry.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.13.128.128/25\",\r\n
+ \ \"51.13.129.0/26\",\r\n \"51.120.218.24/29\",\r\n \"2603:1020:f04:402::90/125\",\r\n
+ \ \"2603:1020:f04:402::340/122\",\r\n \"2603:1020:f04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.128/26\",\r\n \"102.133.122.144/29\",\r\n
+ \ \"102.133.124.192/26\",\r\n \"102.133.126.0/26\",\r\n \"102.133.154.24/29\",\r\n
+ \ \"102.133.156.192/26\",\r\n \"102.133.220.64/26\",\r\n
+ \ \"102.133.250.144/29\",\r\n \"102.133.253.64/26\",\r\n
+ \ \"102.133.253.128/26\",\r\n \"2603:1000:104:402::90/125\",\r\n
+ \ \"2603:1000:104:402::340/122\",\r\n \"2603:1000:104:802::90/125\",\r\n
+ \ \"2603:1000:104:802::2c0/122\",\r\n \"2603:1000:104:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.64/26\",\r\n \"102.133.26.24/29\",\r\n
+ \ \"2603:1000:4:402::90/125\",\r\n \"2603:1000:4:402::340/122\",\r\n
+ \ \"2603:1000:4:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.245.64/26\",\r\n \"13.73.245.128/25\",\r\n
+ \ \"13.73.255.64/26\",\r\n \"20.45.122.144/29\",\r\n \"20.45.125.0/25\",\r\n
+ \ \"20.49.90.16/29\",\r\n \"20.49.92.0/25\",\r\n \"20.49.92.128/25\",\r\n
+ \ \"20.49.93.0/26\",\r\n \"40.124.64.0/25\",\r\n \"104.214.18.184/29\",\r\n
+ \ \"2603:1030:807:402::90/125\",\r\n \"2603:1030:807:402::340/122\",\r\n
+ \ \"2603:1030:807:802::90/125\",\r\n \"2603:1030:807:802::2c0/122\",\r\n
+ \ \"2603:1030:807:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SoutheastAsia\",\r\n \"id\":
+ \"AzureContainerRegistry.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.120/29\",\r\n
+ \ \"13.67.14.0/25\",\r\n \"13.67.14.128/25\",\r\n \"20.195.64.128/26\",\r\n
+ \ \"23.98.82.112/29\",\r\n \"23.98.86.128/25\",\r\n \"23.98.87.0/25\",\r\n
+ \ \"23.98.112.0/25\",\r\n \"40.78.234.48/29\",\r\n \"40.78.239.128/25\",\r\n
+ \ \"2603:1040:5:402::90/125\",\r\n \"2603:1040:5:402::340/122\",\r\n
+ \ \"2603:1040:5:802::90/125\",\r\n \"2603:1040:5:802::2c0/122\",\r\n
+ \ \"2603:1040:5:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"AzureContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"20.41.199.192/26\",\r\n
+ \ \"20.41.208.64/26\",\r\n \"40.78.194.80/29\",\r\n \"40.78.196.192/26\",\r\n
+ \ \"2603:1040:c06:402::90/125\",\r\n \"2603:1040:c06:402::340/122\",\r\n
+ \ \"2603:1040:c06:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.53.64/26\",\r\n \"51.107.56.192/26\",\r\n
+ \ \"51.107.58.24/29\",\r\n \"2603:1020:a04:402::90/125\",\r\n
+ \ \"2603:1020:a04:402::340/122\",\r\n \"2603:1020:a04:802::90/125\",\r\n
+ \ \"2603:1020:a04:802::2c0/122\",\r\n \"2603:1020:a04:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.128/26\",\r\n \"51.107.152.192/26\",\r\n
+ \ \"51.107.154.24/29\",\r\n \"51.107.192.0/26\",\r\n \"2603:1020:b04:402::90/125\",\r\n
+ \ \"2603:1020:b04:402::340/122\",\r\n \"2603:1020:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.69.0/26\",\r\n \"20.37.74.72/29\",\r\n
+ \ \"40.120.8.64/26\",\r\n \"40.120.9.0/26\",\r\n \"2603:1040:b04:402::90/125\",\r\n
+ \ \"2603:1040:b04:402::340/122\",\r\n \"2603:1040:b04:402::580/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.192/26\",\r\n \"40.120.74.16/29\",\r\n
+ \ \"40.120.77.0/26\",\r\n \"40.120.77.64/26\",\r\n \"65.52.248.192/26\",\r\n
+ \ \"65.52.250.16/29\",\r\n \"2603:1040:904:402::90/125\",\r\n
+ \ \"2603:1040:904:402::340/122\",\r\n \"2603:1040:904:802::90/125\",\r\n
+ \ \"2603:1040:904:802::2c0/122\",\r\n \"2603:1040:904:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKNorth\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uknorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.122.96/29\",\r\n \"2603:1020:305:402::90/125\",\r\n
+ \ \"2603:1020:305:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKSouth\",\r\n \"id\":
+ \"AzureContainerRegistry.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.128/25\",\r\n
+ \ \"51.105.66.144/29\",\r\n \"51.105.69.128/25\",\r\n \"51.105.70.0/25\",\r\n
+ \ \"51.105.74.144/29\",\r\n \"51.105.77.128/25\",\r\n \"51.132.192.0/25\",\r\n
+ \ \"51.140.146.200/29\",\r\n \"51.143.208.0/26\",\r\n \"2603:1020:705:402::90/125\",\r\n
+ \ \"2603:1020:705:402::340/122\",\r\n \"2603:1020:705:802::90/125\",\r\n
+ \ \"2603:1020:705:802::2c0/122\",\r\n \"2603:1020:705:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.56.96/29\",\r\n \"2603:1020:405:402::90/125\",\r\n
+ \ \"2603:1020:405:402::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.UKWest\",\r\n \"id\":
+ \"AzureContainerRegistry.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"51.11.97.128/26\",\r\n
+ \ \"51.137.166.192/26\",\r\n \"51.140.210.192/29\",\r\n \"51.140.215.0/25\",\r\n
+ \ \"2603:1020:605:402::90/125\",\r\n \"2603:1020:605:402::340/122\",\r\n
+ \ \"2603:1020:605:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestCentralUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.224/29\",\r\n
+ \ \"40.67.121.0/25\",\r\n \"40.67.122.128/26\",\r\n \"52.150.156.64/26\",\r\n
+ \ \"2603:1030:b04:402::90/125\",\r\n \"2603:1030:b04:402::340/122\",\r\n
+ \ \"2603:1030:b04:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestEurope\",\r\n \"id\":
+ \"AzureContainerRegistry.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.88/29\",\r\n
+ \ \"13.69.106.80/29\",\r\n \"13.69.110.0/24\",\r\n \"20.50.200.0/24\",\r\n
+ \ \"20.61.97.128/25\",\r\n \"52.178.18.0/23\",\r\n \"52.178.20.0/24\",\r\n
+ \ \"52.236.186.80/29\",\r\n \"52.236.191.0/24\",\r\n \"2603:1020:206:402::90/125\",\r\n
+ \ \"2603:1020:206:402::340/122\",\r\n \"2603:1020:206:802::90/125\",\r\n
+ \ \"2603:1020:206:802::2c0/122\",\r\n \"2603:1020:206:c02::90/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestIndia\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.132.192/26\",\r\n \"104.211.146.80/29\",\r\n
+ \ \"2603:1040:806:402::90/125\",\r\n \"2603:1040:806:402::340/122\",\r\n
+ \ \"2603:1040:806:402::580/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureContainerRegistry.WestUS\",\r\n \"id\":
+ \"AzureContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.127.0/26\",\r\n \"20.189.169.0/24\",\r\n \"20.189.171.128/25\",\r\n
+ \ \"40.112.242.160/29\",\r\n \"2603:1030:a07:402::90/125\",\r\n
+ \ \"2603:1030:a07:402::9c0/122\",\r\n \"2603:1030:a07:402::a00/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureContainerRegistry.WestUS2\",\r\n
+ \ \"id\": \"AzureContainerRegistry.WestUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.72/29\",\r\n \"13.66.146.0/24\",\r\n \"13.66.147.0/25\",\r\n
+ \ \"13.66.148.0/24\",\r\n \"40.64.112.0/24\",\r\n \"40.64.135.128/25\",\r\n
+ \ \"40.78.242.160/29\",\r\n \"40.78.246.0/24\",\r\n \"40.78.250.96/29\",\r\n
+ \ \"2603:1030:c06:400::890/125\",\r\n \"2603:1030:c06:400::b40/122\",\r\n
+ \ \"2603:1030:c06:802::90/125\",\r\n \"2603:1030:c06:802::2c0/122\",\r\n
+ \ \"2603:1030:c06:c02::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB\",\r\n \"id\": \"AzureCosmosDB\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n \"13.64.113.68/32\",\r\n
+ \ \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.66.138.0/26\",\r\n
+ \ \"13.67.8.0/26\",\r\n \"13.68.28.135/32\",\r\n \"13.69.66.0/25\",\r\n
+ \ \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n \"13.69.226.0/25\",\r\n
+ \ \"13.70.74.136/29\",\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"13.71.170.0/28\",\r\n \"13.71.194.0/26\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.73.100.183/32\",\r\n \"13.73.254.224/27\",\r\n \"13.74.106.0/25\",\r\n
+ \ \"13.75.34.0/26\",\r\n \"13.75.134.84/32\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"13.77.50.0/28\",\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n
+ \ \"13.78.188.25/32\",\r\n \"13.79.34.236/32\",\r\n \"13.81.51.99/32\",\r\n
+ \ \"13.82.53.191/32\",\r\n \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n
+ \ \"13.85.16.188/32\",\r\n \"13.87.56.0/27\",\r\n \"13.87.122.0/27\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.88.253.180/32\",\r\n \"13.89.41.245/32\",\r\n
+ \ \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n \"13.89.224.229/32\",\r\n
+ \ \"13.90.199.155/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"13.94.201.5/32\",\r\n
+ \ \"13.95.234.68/32\",\r\n \"20.36.26.132/32\",\r\n \"20.36.42.8/32\",\r\n
+ \ \"20.36.75.163/32\",\r\n \"20.36.106.0/26\",\r\n \"20.36.114.0/28\",\r\n
+ \ \"20.36.123.96/27\",\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"20.37.228.32/27\",\r\n \"20.38.140.128/27\",\r\n \"20.38.146.0/26\",\r\n
+ \ \"20.39.15.64/27\",\r\n \"20.40.207.160/27\",\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"20.43.46.0/27\",\r\n \"20.44.2.64/26\",\r\n
+ \ \"20.44.10.0/26\",\r\n \"20.44.26.0/26\",\r\n \"20.45.115.160/27\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.45.198.96/27\",\r\n \"20.48.192.32/27\",\r\n
+ \ \"20.49.82.64/26\",\r\n \"20.49.90.64/26\",\r\n \"20.49.102.64/27\",\r\n
+ \ \"20.49.114.128/27\",\r\n \"20.49.126.160/27\",\r\n \"20.53.41.0/27\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"20.72.18.64/27\",\r\n \"20.72.26.64/26\",\r\n
+ \ \"20.150.166.192/27\",\r\n \"20.150.170.64/26\",\r\n \"20.150.178.0/26\",\r\n
+ \ \"20.150.186.0/26\",\r\n \"20.187.196.0/27\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"20.192.98.0/26\",\r\n \"20.192.166.192/27\",\r\n \"20.192.231.0/27\",\r\n
+ \ \"20.192.234.64/26\",\r\n \"20.193.202.64/26\",\r\n \"20.194.66.64/26\",\r\n
+ \ \"23.96.180.213/32\",\r\n \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"23.102.239.134/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.67.51.160/27\",\r\n \"40.67.58.64/26\",\r\n
+ \ \"40.68.44.85/32\",\r\n \"40.69.106.0/28\",\r\n \"40.70.0.140/32\",\r\n
+ \ \"40.70.220.202/32\",\r\n \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n
+ \ \"40.71.203.37/32\",\r\n \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n
+ \ \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.77.63.179/32\",\r\n
+ \ \"40.78.194.0/28\",\r\n \"40.78.203.32/27\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.78.236.192/26\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.79.163.72/29\",\r\n \"40.79.163.192/26\",\r\n
+ \ \"40.79.170.48/28\",\r\n \"40.79.178.0/28\",\r\n \"40.79.186.16/28\",\r\n
+ \ \"40.79.194.128/26\",\r\n \"40.80.50.0/26\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"40.80.173.0/27\",\r\n \"40.83.137.191/32\",\r\n \"40.85.178.211/32\",\r\n
+ \ \"40.86.229.245/32\",\r\n \"40.89.22.224/27\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.113.90.91/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"40.115.241.37/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"40.120.74.64/26\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"40.126.244.209/32\",\r\n \"51.12.43.0/27\",\r\n \"51.12.98.64/26\",\r\n
+ \ \"51.12.195.0/27\",\r\n \"51.12.202.64/26\",\r\n \"51.12.226.0/26\",\r\n
+ \ \"51.12.234.0/26\",\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.105.92.192/27\",\r\n \"51.107.52.224/27\",\r\n
+ \ \"51.107.58.64/26\",\r\n \"51.107.148.32/27\",\r\n \"51.107.154.64/26\",\r\n
+ \ \"51.116.50.224/27\",\r\n \"51.116.58.64/26\",\r\n \"51.116.146.224/27\",\r\n
+ \ \"51.116.154.128/26\",\r\n \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n
+ \ \"51.120.44.128/27\",\r\n \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n
+ \ \"51.120.210.0/26\",\r\n \"51.120.218.64/26\",\r\n \"51.120.228.160/27\",\r\n
+ \ \"51.137.166.128/27\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n
+ \ \"51.141.25.77/32\",\r\n \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n
+ \ \"51.143.189.37/32\",\r\n \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n
+ \ \"52.136.52.64/27\",\r\n \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n
+ \ \"52.136.136.70/32\",\r\n \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n
+ \ \"52.138.92.0/26\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.140.110.64/27\",\r\n \"52.143.136.41/32\",\r\n
+ \ \"52.146.79.160/27\",\r\n \"52.146.131.0/27\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.156.170.104/32\",\r\n \"52.158.234.203/32\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"52.162.106.0/26\",\r\n \"52.162.252.26/32\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.167.107.128/26\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n
+ \ \"52.170.204.83/32\",\r\n \"52.172.55.127/32\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"52.173.148.217/32\",\r\n \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n
+ \ \"52.174.253.239/32\",\r\n \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n
+ \ \"52.176.0.136/32\",\r\n \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n
+ \ \"52.176.155.127/32\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n
+ \ \"52.179.200.0/25\",\r\n \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n
+ \ \"52.180.177.137/32\",\r\n \"52.182.138.0/25\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"52.186.69.224/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n
+ \ \"52.226.21.178/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n \"52.231.207.31/32\",\r\n
+ \ \"52.232.59.220/32\",\r\n \"52.233.41.60/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n \"52.236.189.0/26\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"65.52.210.9/32\",\r\n \"65.52.251.128/26\",\r\n
+ \ \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n \"102.133.122.0/26\",\r\n
+ \ \"102.133.154.64/26\",\r\n \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n
+ \ \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n \"104.41.177.93/32\",\r\n
+ \ \"104.45.16.183/32\",\r\n \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n
+ \ \"104.46.177.64/27\",\r\n \"104.208.231.0/25\",\r\n \"104.210.89.99/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n
+ \ \"104.211.146.0/28\",\r\n \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"104.211.227.84/32\",\r\n
+ \ \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n \"104.214.26.177/32\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"157.55.170.133/32\",\r\n \"168.61.142.128/26\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.11.192/27\",\r\n
+ \ \"191.233.50.64/26\",\r\n \"191.233.204.128/27\",\r\n \"191.234.138.160/27\",\r\n
+ \ \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n \"191.234.179.157/32\",\r\n
+ \ \"191.239.179.124/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1000:4:402::c0/122\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\",\r\n
+ \ \"2603:1010:6:402::c0/122\",\r\n \"2603:1010:6:802::c0/122\",\r\n
+ \ \"2603:1010:6:c02::c0/122\",\r\n \"2603:1010:101:402::c0/122\",\r\n
+ \ \"2603:1010:304:402::c0/122\",\r\n \"2603:1010:404:402::c0/122\",\r\n
+ \ \"2603:1020:5:402::c0/122\",\r\n \"2603:1020:5:802::c0/122\",\r\n
+ \ \"2603:1020:5:c02::c0/122\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\",\r\n
+ \ \"2603:1020:305:402::c0/122\",\r\n \"2603:1020:405:402::c0/122\",\r\n
+ \ \"2603:1020:605:402::c0/122\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\",\r\n
+ \ \"2603:1020:805:402::c0/122\",\r\n \"2603:1020:805:802::c0/122\",\r\n
+ \ \"2603:1020:805:c02::c0/122\",\r\n \"2603:1020:905:402::c0/122\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\",\r\n \"2603:1020:b04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:402::c0/122\",\r\n \"2603:1020:c04:802::c0/122\",\r\n
+ \ \"2603:1020:c04:c02::c0/122\",\r\n \"2603:1020:d04:402::c0/122\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\",\r\n
+ \ \"2603:1020:f04:402::c0/122\",\r\n \"2603:1020:1004:1::60/123\",\r\n
+ \ \"2603:1020:1004:400::c0/122\",\r\n \"2603:1020:1004:400::280/122\",\r\n
+ \ \"2603:1020:1004:400::3c0/122\",\r\n \"2603:1020:1104::520/123\",\r\n
+ \ \"2603:1020:1104:400::c0/122\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\",\r\n
+ \ \"2603:1030:104:402::c0/122\",\r\n \"2603:1030:107::540/123\",\r\n
+ \ \"2603:1030:107:400::40/122\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\",\r\n
+ \ \"2603:1030:504::60/123\",\r\n \"2603:1030:504:402::c0/122\",\r\n
+ \ \"2603:1030:504:402::280/122\",\r\n \"2603:1030:504:402::3c0/122\",\r\n
+ \ \"2603:1030:504:802::200/122\",\r\n \"2603:1030:504:c02::3c0/122\",\r\n
+ \ \"2603:1030:608:402::c0/122\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\",\r\n
+ \ \"2603:1030:a07:402::c0/122\",\r\n \"2603:1030:b04:402::c0/122\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\",\r\n
+ \ \"2603:1030:1005:402::c0/122\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\",\r\n
+ \ \"2603:1040:207:402::c0/122\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\",\r\n
+ \ \"2603:1040:606:402::c0/122\",\r\n \"2603:1040:806:402::c0/122\",\r\n
+ \ \"2603:1040:904:402::c0/122\",\r\n \"2603:1040:904:802::c0/122\",\r\n
+ \ \"2603:1040:904:c02::c0/122\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\",\r\n
+ \ \"2603:1040:b04:402::c0/122\",\r\n \"2603:1040:c06:402::c0/122\",\r\n
+ \ \"2603:1040:d04:1::60/123\",\r\n \"2603:1040:d04:400::c0/122\",\r\n
+ \ \"2603:1040:d04:400::280/122\",\r\n \"2603:1040:d04:400::3c0/122\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\",\r\n
+ \ \"2603:1040:1104::520/123\",\r\n \"2603:1040:1104:400::c0/122\",\r\n
+ \ \"2603:1050:6:402::c0/122\",\r\n \"2603:1050:6:802::c0/122\",\r\n
+ \ \"2603:1050:6:c02::c0/122\",\r\n \"2603:1050:403:400::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.8/32\",\r\n \"20.36.106.0/26\",\r\n \"20.37.228.32/27\",\r\n
+ \ \"2603:1010:304:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.AustraliaCentral2\",\r\n \"id\":
+ \"AzureCosmosDB.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.36.75.163/32\",\r\n
+ \ \"20.36.114.0/28\",\r\n \"20.36.123.96/27\",\r\n \"2603:1010:404:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.136/29\",\r\n \"13.72.255.150/32\",\r\n
+ \ \"13.75.134.84/32\",\r\n \"20.53.41.0/27\",\r\n \"40.79.163.72/29\",\r\n
+ \ \"40.79.163.192/26\",\r\n \"40.79.170.48/28\",\r\n \"40.126.244.209/32\",\r\n
+ \ \"52.156.170.104/32\",\r\n \"104.210.89.99/32\",\r\n \"2603:1010:6:402::c0/122\",\r\n
+ \ \"2603:1010:6:802::c0/122\",\r\n \"2603:1010:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureCosmosDB.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.100.183/32\",\r\n \"13.77.50.0/28\",\r\n \"52.255.52.19/32\",\r\n
+ \ \"52.255.58.221/32\",\r\n \"104.46.177.64/27\",\r\n \"191.239.179.124/32\",\r\n
+ \ \"2603:1010:101:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.BrazilSouth\",\r\n \"id\": \"AzureCosmosDB.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.52.61/32\",\r\n \"104.41.54.69/32\",\r\n
+ \ \"191.232.51.175/32\",\r\n \"191.232.53.203/32\",\r\n \"191.233.204.128/27\",\r\n
+ \ \"191.234.138.160/27\",\r\n \"191.234.146.0/26\",\r\n \"191.234.154.0/26\",\r\n
+ \ \"191.234.179.157/32\",\r\n \"2603:1050:6:402::c0/122\",\r\n
+ \ \"2603:1050:6:802::c0/122\",\r\n \"2603:1050:6:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.0/28\",\r\n \"13.88.253.180/32\",\r\n
+ \ \"20.38.146.0/26\",\r\n \"20.48.192.32/27\",\r\n \"52.233.41.60/32\",\r\n
+ \ \"52.237.20.252/32\",\r\n \"52.246.154.0/26\",\r\n \"2603:1030:f05:402::c0/122\",\r\n
+ \ \"2603:1030:f05:802::c0/122\",\r\n \"2603:1030:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CanadaEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.0/28\",\r\n \"40.86.229.245/32\",\r\n
+ \ \"40.89.22.224/27\",\r\n \"52.235.40.247/32\",\r\n \"52.235.46.28/32\",\r\n
+ \ \"2603:1030:1005:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.CentralIndia\",\r\n \"id\":
+ \"AzureCosmosDB.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.192.98.0/26\",\r\n
+ \ \"40.80.50.0/26\",\r\n \"52.140.110.64/27\",\r\n \"52.172.206.130/32\",\r\n
+ \ \"104.211.84.0/28\",\r\n \"104.211.102.50/32\",\r\n \"2603:1040:a06:402::c0/122\",\r\n
+ \ \"2603:1040:a06:802::c0/122\",\r\n \"2603:1040:a06:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.41.245/32\",\r\n \"13.89.170.0/25\",\r\n \"13.89.190.186/32\",\r\n
+ \ \"13.89.224.229/32\",\r\n \"20.40.207.160/27\",\r\n \"20.44.10.0/26\",\r\n
+ \ \"40.77.63.179/32\",\r\n \"40.122.132.89/32\",\r\n \"40.122.174.140/32\",\r\n
+ \ \"52.165.42.204/32\",\r\n \"52.165.46.249/32\",\r\n \"52.165.129.184/32\",\r\n
+ \ \"52.165.229.112/32\",\r\n \"52.165.229.184/32\",\r\n \"52.173.148.217/32\",\r\n
+ \ \"52.173.196.170/32\",\r\n \"52.173.240.244/32\",\r\n \"52.176.0.136/32\",\r\n
+ \ \"52.176.7.71/32\",\r\n \"52.176.101.49/32\",\r\n \"52.176.155.127/32\",\r\n
+ \ \"52.182.138.0/25\",\r\n \"2603:1030:10:402::c0/122\",\r\n
+ \ \"2603:1030:10:802::c0/122\",\r\n \"2603:1030:10:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.96/27\",\r\n \"40.78.203.32/27\",\r\n
+ \ \"52.180.160.251/32\",\r\n \"52.180.161.1/32\",\r\n \"52.180.177.137/32\",\r\n
+ \ \"168.61.142.128/26\",\r\n \"2603:1030:f:2::2a0/123\",\r\n
+ \ \"2603:1030:f:400::8c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastAsia\",\r\n \"id\": \"AzureCosmosDB.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.0/26\",\r\n \"20.187.196.0/27\",\r\n \"23.102.239.134/32\",\r\n
+ \ \"52.175.25.211/32\",\r\n \"52.175.39.232/32\",\r\n \"207.46.150.252/32\",\r\n
+ \ \"2603:1040:207:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.EastUS\",\r\n \"id\": \"AzureCosmosDB.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.82.53.191/32\",\r\n \"13.90.199.155/32\",\r\n
+ \ \"40.71.10.0/25\",\r\n \"40.71.17.19/32\",\r\n \"40.71.203.37/32\",\r\n
+ \ \"40.71.204.115/32\",\r\n \"40.71.216.114/32\",\r\n \"40.78.226.0/25\",\r\n
+ \ \"40.79.154.128/26\",\r\n \"40.85.178.211/32\",\r\n \"52.146.79.160/27\",\r\n
+ \ \"52.168.28.222/32\",\r\n \"52.170.204.83/32\",\r\n \"52.186.69.224/32\",\r\n
+ \ \"52.191.197.220/32\",\r\n \"52.226.18.140/32\",\r\n \"52.226.21.178/32\",\r\n
+ \ \"104.45.131.193/32\",\r\n \"104.45.144.73/32\",\r\n \"2603:1030:210:402::c0/122\",\r\n
+ \ \"2603:1030:210:802::c0/122\",\r\n \"2603:1030:210:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.68.28.135/32\",\r\n
+ \ \"20.49.102.64/27\",\r\n \"40.70.0.140/32\",\r\n \"40.70.220.202/32\",\r\n
+ \ \"40.79.39.162/32\",\r\n \"40.79.59.92/32\",\r\n \"40.79.67.136/32\",\r\n
+ \ \"52.167.107.128/26\",\r\n \"52.177.172.74/32\",\r\n \"52.177.206.153/32\",\r\n
+ \ \"52.179.141.33/32\",\r\n \"52.179.143.233/32\",\r\n \"52.179.200.0/25\",\r\n
+ \ \"52.184.152.241/32\",\r\n \"104.208.231.0/25\",\r\n \"2603:1030:40c:402::c0/122\",\r\n
+ \ \"2603:1030:40c:802::c0/122\",\r\n \"2603:1030:40c:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureCosmosDB.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.15.64/27\",\r\n \"40.74.147.192/26\",\r\n
+ \ \"40.75.32.32/29\",\r\n \"40.75.34.128/26\",\r\n \"40.89.67.208/32\",\r\n
+ \ \"52.138.66.90/32\",\r\n \"52.138.70.62/32\",\r\n \"52.138.92.0/26\",\r\n
+ \ \"2603:1030:40b:400::8c0/122\",\r\n \"2603:1030:40b:800::c0/122\",\r\n
+ \ \"2603:1030:40b:c00::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.FranceCentral\",\r\n \"id\":
+ \"AzureCosmosDB.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.43.46.0/27\",\r\n
+ \ \"40.79.130.0/28\",\r\n \"40.79.138.48/28\",\r\n \"40.79.146.48/28\",\r\n
+ \ \"40.89.132.238/32\",\r\n \"52.143.136.41/32\",\r\n \"2603:1020:805:402::c0/122\",\r\n
+ \ \"2603:1020:805:802::c0/122\",\r\n \"2603:1020:805:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.FranceSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.0/28\",\r\n \"51.105.92.192/27\",\r\n
+ \ \"52.136.134.25/32\",\r\n \"52.136.134.250/32\",\r\n \"52.136.136.70/32\",\r\n
+ \ \"2603:1020:905:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.GermanyNorth\",\r\n \"id\":
+ \"AzureCosmosDB.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.116.50.224/27\",\r\n
+ \ \"51.116.58.64/26\",\r\n \"2603:1020:d04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.146.224/27\",\r\n \"51.116.154.128/26\",\r\n
+ \ \"51.116.242.0/26\",\r\n \"51.116.250.0/26\",\r\n \"2603:1020:c04:402::c0/122\",\r\n
+ \ \"2603:1020:c04:802::c0/122\",\r\n \"2603:1020:c04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.51.35/32\",\r\n \"13.78.106.0/26\",\r\n \"20.191.160.32/27\",\r\n
+ \ \"40.79.186.16/28\",\r\n \"40.79.194.128/26\",\r\n \"40.115.241.37/32\",\r\n
+ \ \"104.41.177.93/32\",\r\n \"2603:1040:407:402::c0/122\",\r\n
+ \ \"2603:1040:407:802::c0/122\",\r\n \"2603:1040:407:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.JapanWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.98.0/26\",\r\n \"40.74.143.235/32\",\r\n \"40.80.63.160/27\",\r\n
+ \ \"104.215.1.53/32\",\r\n \"104.215.21.39/32\",\r\n \"104.215.55.227/32\",\r\n
+ \ \"2603:1040:606:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.KoreaCentral\",\r\n \"id\":
+ \"AzureCosmosDB.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"20.41.69.64/27\",\r\n
+ \ \"20.44.26.0/26\",\r\n \"20.194.66.64/26\",\r\n \"52.231.18.0/28\",\r\n
+ \ \"52.231.25.123/32\",\r\n \"52.231.39.143/32\",\r\n \"52.231.56.0/28\",\r\n
+ \ \"2603:1040:f05::680/123\",\r\n \"2603:1040:f05:402::c0/122\",\r\n
+ \ \"2603:1040:f05:802::c0/122\",\r\n \"2603:1040:f05:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.KoreaSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.173.0/27\",\r\n \"52.231.146.0/27\",\r\n \"52.231.206.234/32\",\r\n
+ \ \"52.231.207.31/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureCosmosDB.NorthCentralUS\",\r\n \"id\": \"AzureCosmosDB.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.128/27\",\r\n \"23.96.180.213/32\",\r\n
+ \ \"23.96.219.207/32\",\r\n \"23.96.242.234/32\",\r\n \"52.162.106.0/26\",\r\n
+ \ \"52.162.252.26/32\",\r\n \"65.52.210.9/32\",\r\n \"157.55.170.133/32\",\r\n
+ \ \"2603:1030:608:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.NorthEurope\",\r\n \"id\": \"AzureCosmosDB.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.0/25\",\r\n \"13.74.106.0/25\",\r\n \"13.79.34.236/32\",\r\n
+ \ \"40.113.90.91/32\",\r\n \"52.138.141.112/32\",\r\n \"52.138.197.33/32\",\r\n
+ \ \"52.138.201.47/32\",\r\n \"52.138.205.97/32\",\r\n \"52.138.206.153/32\",\r\n
+ \ \"52.138.227.192/26\",\r\n \"52.146.131.0/27\",\r\n \"52.164.250.188/32\",\r\n
+ \ \"52.169.122.37/32\",\r\n \"52.169.219.183/32\",\r\n \"2603:1020:5:402::c0/122\",\r\n
+ \ \"2603:1020:5:802::c0/122\",\r\n \"2603:1020:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayEast\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.128/27\",\r\n
+ \ \"51.120.98.64/26\",\r\n \"51.120.106.0/26\",\r\n \"51.120.210.0/26\",\r\n
+ \ \"2603:1020:e04::680/123\",\r\n \"2603:1020:e04:402::c0/122\",\r\n
+ \ \"2603:1020:e04:802::c0/122\",\r\n \"2603:1020:e04:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.NorwayWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.120.218.64/26\",\r\n
+ \ \"51.120.228.160/27\",\r\n \"2603:1020:f04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.0/26\",\r\n \"102.133.154.64/26\",\r\n
+ \ \"102.133.220.0/27\",\r\n \"102.133.250.0/26\",\r\n \"2603:1000:104:402::c0/122\",\r\n
+ \ \"2603:1000:104:802::c0/122\",\r\n \"2603:1000:104:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.64/26\",\r\n \"102.133.60.64/27\",\r\n
+ \ \"2603:1000:4:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SouthCentralUS\",\r\n \"id\":
+ \"AzureCosmosDB.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.65.145.92/32\",\r\n
+ \ \"13.66.26.107/32\",\r\n \"13.66.82.75/32\",\r\n \"13.73.254.224/27\",\r\n
+ \ \"13.84.150.178/32\",\r\n \"13.84.157.70/32\",\r\n \"13.85.16.188/32\",\r\n
+ \ \"20.45.122.0/26\",\r\n \"20.49.90.64/26\",\r\n \"23.102.191.13/32\",\r\n
+ \ \"104.210.217.251/32\",\r\n \"104.214.18.0/25\",\r\n \"104.214.23.192/27\",\r\n
+ \ \"104.214.26.177/32\",\r\n \"2603:1030:807:402::c0/122\",\r\n
+ \ \"2603:1030:807:802::c0/122\",\r\n \"2603:1030:807:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.8.0/26\",\r\n \"13.76.161.130/32\",\r\n
+ \ \"23.98.82.0/26\",\r\n \"23.98.107.224/27\",\r\n \"40.78.236.192/26\",\r\n
+ \ \"52.163.63.20/32\",\r\n \"52.163.249.82/32\",\r\n \"52.187.11.8/32\",\r\n
+ \ \"52.187.12.93/32\",\r\n \"52.230.15.63/32\",\r\n \"52.230.23.170/32\",\r\n
+ \ \"52.230.70.94/32\",\r\n \"52.230.87.21/32\",\r\n \"2603:1040:5:402::c0/122\",\r\n
+ \ \"2603:1040:5:802::c0/122\",\r\n \"2603:1040:5:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SouthIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.115.125/32\",\r\n \"13.71.124.81/32\",\r\n
+ \ \"20.41.199.128/27\",\r\n \"40.78.194.0/28\",\r\n \"52.172.55.127/32\",\r\n
+ \ \"104.211.227.84/32\",\r\n \"2603:1040:c06:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n
+ \ \"id\": \"AzureCosmosDB.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.52.224/27\",\r\n \"51.107.58.64/26\",\r\n
+ \ \"2603:1020:a04:402::c0/122\",\r\n \"2603:1020:a04:802::c0/122\",\r\n
+ \ \"2603:1020:a04:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.SwitzerlandWest\",\r\n \"id\":
+ \"AzureCosmosDB.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.107.148.32/27\",\r\n
+ \ \"51.107.154.64/26\",\r\n \"2603:1020:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UAECentral\",\r\n
+ \ \"id\": \"AzureCosmosDB.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.160/27\",\r\n \"20.37.75.128/26\",\r\n
+ \ \"2603:1040:b04:402::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureCosmosDB.UAENorth\",\r\n \"id\": \"AzureCosmosDB.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.140.128/27\",\r\n \"40.120.74.64/26\",\r\n
+ \ \"65.52.251.128/26\",\r\n \"2603:1040:904:402::c0/122\",\r\n
+ \ \"2603:1040:904:802::c0/122\",\r\n \"2603:1040:904:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKSouth\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.31.128/27\",\r\n \"51.105.66.0/26\",\r\n
+ \ \"51.105.74.0/26\",\r\n \"51.140.52.73/32\",\r\n \"51.140.70.75/32\",\r\n
+ \ \"51.140.75.146/32\",\r\n \"51.140.83.56/32\",\r\n \"51.140.99.233/32\",\r\n
+ \ \"51.140.146.0/27\",\r\n \"51.143.189.37/32\",\r\n \"2603:1020:705:402::c0/122\",\r\n
+ \ \"2603:1020:705:802::c0/122\",\r\n \"2603:1020:705:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.UKWest\",\r\n
+ \ \"id\": \"AzureCosmosDB.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"51.137.166.128/27\",\r\n
+ \ \"51.140.210.0/27\",\r\n \"51.141.11.34/32\",\r\n \"51.141.25.77/32\",\r\n
+ \ \"51.141.53.76/32\",\r\n \"51.141.55.229/32\",\r\n \"2603:1020:605:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestCentralUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.0/26\",\r\n \"13.78.188.25/32\",\r\n \"52.150.154.224/27\",\r\n
+ \ \"52.161.13.67/32\",\r\n \"52.161.15.197/32\",\r\n \"52.161.22.131/32\",\r\n
+ \ \"52.161.100.126/32\",\r\n \"2603:1030:b04:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestEurope\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureCosmosDB\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.66.0/25\",\r\n \"13.69.66.128/29\",\r\n \"13.69.112.0/25\",\r\n
+ \ \"13.81.51.99/32\",\r\n \"13.94.201.5/32\",\r\n \"13.95.234.68/32\",\r\n
+ \ \"20.61.97.0/27\",\r\n \"40.68.44.85/32\",\r\n \"40.114.240.253/32\",\r\n
+ \ \"51.144.177.166/32\",\r\n \"51.144.182.233/32\",\r\n \"52.174.253.239/32\",\r\n
+ \ \"52.178.108.222/32\",\r\n \"52.232.59.220/32\",\r\n \"52.233.128.86/32\",\r\n
+ \ \"52.236.189.0/26\",\r\n \"104.45.16.183/32\",\r\n \"2603:1020:206:402::c0/122\",\r\n
+ \ \"2603:1020:206:802::c0/122\",\r\n \"2603:1020:206:c02::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestIndia\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureCosmosDB\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.136.52.64/27\",\r\n \"104.211.146.0/28\",\r\n
+ \ \"104.211.162.94/32\",\r\n \"104.211.184.117/32\",\r\n
+ \ \"104.211.188.174/32\",\r\n \"2603:1040:806:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.64.69.151/32\",\r\n
+ \ \"13.64.113.68/32\",\r\n \"13.64.114.48/32\",\r\n \"13.64.194.140/32\",\r\n
+ \ \"13.88.30.39/32\",\r\n \"13.91.246.52/32\",\r\n \"13.93.153.80/32\",\r\n
+ \ \"13.93.156.125/32\",\r\n \"13.93.207.66/32\",\r\n \"20.49.126.160/27\",\r\n
+ \ \"40.83.137.191/32\",\r\n \"40.112.140.12/32\",\r\n \"40.112.241.0/24\",\r\n
+ \ \"40.112.249.60/32\",\r\n \"40.118.245.44/32\",\r\n \"40.118.245.251/32\",\r\n
+ \ \"137.117.9.157/32\",\r\n \"2603:1030:a07:402::c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureCosmosDB.WestUS2\",\r\n
+ \ \"id\": \"AzureCosmosDB.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureCosmosDB\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.0/26\",\r\n
+ \ \"20.36.26.132/32\",\r\n \"40.64.135.0/27\",\r\n \"40.65.106.154/32\",\r\n
+ \ \"40.65.114.105/32\",\r\n \"40.78.243.192/26\",\r\n \"40.78.250.0/26\",\r\n
+ \ \"52.151.16.118/32\",\r\n \"52.158.234.203/32\",\r\n \"52.183.42.252/32\",\r\n
+ \ \"52.183.66.36/32\",\r\n \"52.183.92.223/32\",\r\n \"52.183.119.101/32\",\r\n
+ \ \"2603:1030:c06:400::8c0/122\",\r\n \"2603:1030:c06:802::c0/122\",\r\n
+ \ \"2603:1030:c06:c02::c0/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDatabricks\",\r\n \"id\": \"AzureDatabricks\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDatabricks\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.105.50/32\",\r\n \"13.70.107.141/32\",\r\n
+ \ \"13.71.184.74/32\",\r\n \"13.71.187.166/32\",\r\n \"13.75.164.249/32\",\r\n
+ \ \"13.75.218.172/32\",\r\n \"13.78.18.152/32\",\r\n \"13.78.19.235/32\",\r\n
+ \ \"13.86.58.215/32\",\r\n \"13.88.249.244/32\",\r\n \"20.36.120.68/30\",\r\n
+ \ \"20.37.64.68/30\",\r\n \"20.37.156.208/28\",\r\n \"20.37.195.16/29\",\r\n
+ \ \"20.37.224.68/30\",\r\n \"20.38.84.80/28\",\r\n \"20.38.136.120/29\",\r\n
+ \ \"20.39.8.68/30\",\r\n \"20.41.4.112/28\",\r\n \"20.41.65.136/29\",\r\n
+ \ \"20.41.192.68/30\",\r\n \"20.42.4.208/28\",\r\n \"20.42.129.160/28\",\r\n
+ \ \"20.42.224.68/30\",\r\n \"20.43.41.152/29\",\r\n \"20.43.65.144/29\",\r\n
+ \ \"20.43.130.96/28\",\r\n \"20.45.112.68/30\",\r\n \"20.45.192.68/30\",\r\n
+ \ \"20.46.12.200/29\",\r\n \"20.46.121.76/32\",\r\n \"20.72.16.32/29\",\r\n
+ \ \"20.150.160.104/30\",\r\n \"20.150.160.208/29\",\r\n \"20.186.83.56/32\",\r\n
+ \ \"20.189.106.192/28\",\r\n \"20.192.160.32/29\",\r\n \"20.192.225.24/29\",\r\n
+ \ \"20.194.4.102/32\",\r\n \"23.97.106.142/32\",\r\n \"23.97.201.41/32\",\r\n
+ \ \"23.100.0.135/32\",\r\n \"23.100.226.13/32\",\r\n \"23.101.147.147/32\",\r\n
+ \ \"23.101.152.95/32\",\r\n \"40.67.48.68/30\",\r\n \"40.70.58.221/32\",\r\n
+ \ \"40.74.30.80/28\",\r\n \"40.80.56.68/30\",\r\n \"40.80.168.68/30\",\r\n
+ \ \"40.80.188.0/28\",\r\n \"40.82.248.112/28\",\r\n \"40.83.176.199/32\",\r\n
+ \ \"40.83.178.242/32\",\r\n \"40.85.223.25/32\",\r\n \"40.86.167.110/32\",\r\n
+ \ \"40.89.16.68/30\",\r\n \"40.89.168.225/32\",\r\n \"40.89.170.184/32\",\r\n
+ \ \"40.89.171.101/32\",\r\n \"40.118.174.12/32\",\r\n \"40.119.9.208/28\",\r\n
+ \ \"40.123.212.253/32\",\r\n \"40.123.218.63/32\",\r\n \"40.123.219.125/32\",\r\n
+ \ \"40.123.225.135/32\",\r\n \"40.127.5.82/32\",\r\n \"40.127.5.124/32\",\r\n
+ \ \"40.127.147.196/32\",\r\n \"51.12.41.16/30\",\r\n \"51.12.47.16/29\",\r\n
+ \ \"51.12.193.16/30\",\r\n \"51.12.198.200/29\",\r\n \"51.103.18.111/32\",\r\n
+ \ \"51.104.25.136/30\",\r\n \"51.105.80.68/30\",\r\n \"51.105.88.68/30\",\r\n
+ \ \"51.107.48.120/30\",\r\n \"51.107.144.68/30\",\r\n \"51.120.40.120/30\",\r\n
+ \ \"51.120.224.68/30\",\r\n \"51.120.234.176/29\",\r\n \"51.137.160.120/29\",\r\n
+ \ \"51.138.96.158/32\",\r\n \"51.140.200.46/32\",\r\n \"51.140.203.27/32\",\r\n
+ \ \"51.140.204.4/32\",\r\n \"51.141.103.193/32\",\r\n \"51.143.192.68/30\",\r\n
+ \ \"52.136.48.68/30\",\r\n \"52.140.104.120/29\",\r\n \"52.141.6.71/32\",\r\n
+ \ \"52.141.6.181/32\",\r\n \"52.141.22.164/32\",\r\n \"52.146.50.16/32\",\r\n
+ \ \"52.150.136.68/30\",\r\n \"52.172.133.58/32\",\r\n \"52.187.0.85/32\",\r\n
+ \ \"52.187.3.203/32\",\r\n \"52.187.145.107/32\",\r\n \"52.228.81.136/29\",\r\n
+ \ \"52.230.27.216/32\",\r\n \"52.232.19.246/32\",\r\n \"52.246.160.72/32\",\r\n
+ \ \"52.247.0.200/32\",\r\n \"102.37.41.3/32\",\r\n \"102.133.56.68/30\",\r\n
+ \ \"102.133.216.96/29\",\r\n \"102.133.224.24/32\",\r\n \"104.41.54.118/32\",\r\n
+ \ \"104.45.7.191/32\",\r\n \"104.211.89.81/32\",\r\n \"104.211.101.14/32\",\r\n
+ \ \"104.211.103.82/32\",\r\n \"191.232.53.223/32\",\r\n \"191.233.8.32/29\",\r\n
+ \ \"191.234.160.82/32\",\r\n \"191.235.225.144/29\",\r\n
+ \ \"2603:1000:4::160/123\",\r\n \"2603:1000:104:1::160/123\",\r\n
+ \ \"2603:1010:6:1::160/123\",\r\n \"2603:1010:101::160/123\",\r\n
+ \ \"2603:1010:304::160/123\",\r\n \"2603:1010:404::160/123\",\r\n
+ \ \"2603:1020:5:1::160/123\",\r\n \"2603:1020:206:1::160/123\",\r\n
+ \ \"2603:1020:305::160/123\",\r\n \"2603:1020:405::160/123\",\r\n
+ \ \"2603:1020:605::160/123\",\r\n \"2603:1020:705:1::160/123\",\r\n
+ \ \"2603:1020:805:1::160/123\",\r\n \"2603:1020:905::160/123\",\r\n
+ \ \"2603:1020:a04:1::160/123\",\r\n \"2603:1020:b04::160/123\",\r\n
+ \ \"2603:1020:c04:1::160/123\",\r\n \"2603:1020:d04::160/123\",\r\n
+ \ \"2603:1020:e04:1::160/123\",\r\n \"2603:1020:f04::160/123\",\r\n
+ \ \"2603:1020:1004::160/123\",\r\n \"2603:1020:1104::160/123\",\r\n
+ \ \"2603:1030:f:1::160/123\",\r\n \"2603:1030:10:1::160/123\",\r\n
+ \ \"2603:1030:104:1::160/123\",\r\n \"2603:1030:107::160/123\",\r\n
+ \ \"2603:1030:210:1::160/123\",\r\n \"2603:1030:40b:1::160/123\",\r\n
+ \ \"2603:1030:40c:1::160/123\",\r\n \"2603:1030:504:1::160/123\",\r\n
+ \ \"2603:1030:608::160/123\",\r\n \"2603:1030:807:1::160/123\",\r\n
+ \ \"2603:1030:a07::160/123\",\r\n \"2603:1030:b04::160/123\",\r\n
+ \ \"2603:1030:c06:1::160/123\",\r\n \"2603:1030:f05:1::160/123\",\r\n
+ \ \"2603:1030:1005::160/123\",\r\n \"2603:1040:5:1::160/123\",\r\n
+ \ \"2603:1040:207::160/123\",\r\n \"2603:1040:407:1::160/123\",\r\n
+ \ \"2603:1040:606::160/123\",\r\n \"2603:1040:806::160/123\",\r\n
+ \ \"2603:1040:904:1::160/123\",\r\n \"2603:1040:a06:1::160/123\",\r\n
+ \ \"2603:1040:b04::160/123\",\r\n \"2603:1040:c06::160/123\",\r\n
+ \ \"2603:1040:d04::160/123\",\r\n \"2603:1040:f05:1::160/123\",\r\n
+ \ \"2603:1040:1104::160/123\",\r\n \"2603:1050:6:1::160/123\",\r\n
+ \ \"2603:1050:403::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement\",\r\n \"id\":
+ \"AzureDataExplorerManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.66.141.160/28\",\r\n
+ \ \"13.69.106.240/28\",\r\n \"13.69.229.176/28\",\r\n \"13.70.73.112/28\",\r\n
+ \ \"13.71.173.64/28\",\r\n \"13.71.196.64/28\",\r\n \"13.73.240.96/28\",\r\n
+ \ \"13.75.39.0/28\",\r\n \"13.77.52.240/28\",\r\n \"13.86.36.42/32\",\r\n
+ \ \"13.86.219.64/28\",\r\n \"13.87.57.224/28\",\r\n \"13.87.123.224/28\",\r\n
+ \ \"13.89.174.80/28\",\r\n \"20.36.242.104/32\",\r\n \"20.37.24.1/32\",\r\n
+ \ \"20.39.97.38/32\",\r\n \"20.39.99.177/32\",\r\n \"20.40.114.21/32\",\r\n
+ \ \"20.40.161.39/32\",\r\n \"20.43.89.90/32\",\r\n \"20.43.120.96/28\",\r\n
+ \ \"20.44.16.96/28\",\r\n \"20.44.27.96/28\",\r\n \"20.45.3.60/32\",\r\n
+ \ \"20.46.13.240/28\",\r\n \"20.46.146.7/32\",\r\n \"20.72.27.128/28\",\r\n
+ \ \"20.150.171.192/28\",\r\n \"20.150.245.112/28\",\r\n \"20.185.100.27/32\",\r\n
+ \ \"20.189.74.103/32\",\r\n \"20.192.235.128/28\",\r\n \"20.193.203.96/28\",\r\n
+ \ \"20.194.75.224/28\",\r\n \"23.98.82.240/28\",\r\n \"40.66.57.57/32\",\r\n
+ \ \"40.66.57.91/32\",\r\n \"40.67.188.68/32\",\r\n \"40.69.107.240/28\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"40.74.101.208/28\",\r\n \"40.74.147.80/28\",\r\n
+ \ \"40.78.195.240/28\",\r\n \"40.78.203.176/28\",\r\n \"40.79.131.224/28\",\r\n
+ \ \"40.79.179.208/28\",\r\n \"40.79.187.16/28\",\r\n \"40.80.234.9/32\",\r\n
+ \ \"40.80.250.168/32\",\r\n \"40.80.255.12/32\",\r\n \"40.81.28.50/32\",\r\n
+ \ \"40.81.43.47/32\",\r\n \"40.81.56.122/32\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"40.81.88.112/32\",\r\n \"40.81.89.242/32\",\r\n \"40.81.122.39/32\",\r\n
+ \ \"40.81.154.254/32\",\r\n \"40.81.184.86/32\",\r\n \"40.81.220.38/32\",\r\n
+ \ \"40.81.248.53/32\",\r\n \"40.81.249.251/32\",\r\n \"40.82.154.174/32\",\r\n
+ \ \"40.82.156.149/32\",\r\n \"40.82.188.208/32\",\r\n \"40.82.217.84/32\",\r\n
+ \ \"40.82.236.24/32\",\r\n \"40.89.56.69/32\",\r\n \"40.90.219.23/32\",\r\n
+ \ \"40.91.74.95/32\",\r\n \"40.119.3.195/32\",\r\n \"40.119.203.252/32\",\r\n
+ \ \"51.12.20.48/28\",\r\n \"51.12.28.48/28\",\r\n \"51.12.99.192/28\",\r\n
+ \ \"51.12.203.192/28\",\r\n \"51.104.8.112/28\",\r\n \"51.107.59.160/28\",\r\n
+ \ \"51.107.98.201/32\",\r\n \"51.107.155.160/28\",\r\n \"51.116.59.160/28\",\r\n
+ \ \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n \"51.120.99.80/28\",\r\n
+ \ \"51.120.219.192/28\",\r\n \"51.120.235.224/28\",\r\n \"51.140.212.0/28\",\r\n
+ \ \"51.145.176.215/32\",\r\n \"52.142.91.221/32\",\r\n \"52.159.55.120/32\",\r\n
+ \ \"52.162.110.176/28\",\r\n \"52.224.146.56/32\",\r\n \"52.231.148.16/28\",\r\n
+ \ \"52.232.230.201/32\",\r\n \"52.253.159.186/32\",\r\n \"52.253.225.186/32\",\r\n
+ \ \"52.253.226.110/32\",\r\n \"102.133.0.192/32\",\r\n \"102.133.28.112/28\",\r\n
+ \ \"102.133.130.206/32\",\r\n \"102.133.156.16/28\",\r\n
+ \ \"104.211.147.224/28\",\r\n \"191.233.25.183/32\",\r\n
+ \ \"191.233.50.208/28\",\r\n \"191.233.205.0/28\",\r\n \"2603:1000:4:1::380/121\",\r\n
+ \ \"2603:1000:4:402::150/124\",\r\n \"2603:1000:104:2::100/121\",\r\n
+ \ \"2603:1000:104:402::150/124\",\r\n \"2603:1010:6::600/121\",\r\n
+ \ \"2603:1010:6:402::150/124\",\r\n \"2603:1010:101:1::380/121\",\r\n
+ \ \"2603:1010:101:402::150/124\",\r\n \"2603:1010:304:1::380/121\",\r\n
+ \ \"2603:1010:304:402::150/124\",\r\n \"2603:1010:404:1::380/121\",\r\n
+ \ \"2603:1010:404:402::150/124\",\r\n \"2603:1020:5::600/121\",\r\n
+ \ \"2603:1020:5:402::150/124\",\r\n \"2603:1020:206::600/121\",\r\n
+ \ \"2603:1020:206:402::150/124\",\r\n \"2603:1020:305:402::150/124\",\r\n
+ \ \"2603:1020:405:402::150/124\",\r\n \"2603:1020:605:1::380/121\",\r\n
+ \ \"2603:1020:605:402::150/124\",\r\n \"2603:1020:705::600/121\",\r\n
+ \ \"2603:1020:705:402::150/124\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\",\r\n \"2603:1020:905:1::380/121\",\r\n
+ \ \"2603:1020:905:402::150/124\",\r\n \"2603:1020:a04::600/121\",\r\n
+ \ \"2603:1020:a04:402::150/124\",\r\n \"2603:1020:b04:1::380/121\",\r\n
+ \ \"2603:1020:b04:402::150/124\",\r\n \"2603:1020:c04::600/121\",\r\n
+ \ \"2603:1020:c04:402::150/124\",\r\n \"2603:1020:d04:1::380/121\",\r\n
+ \ \"2603:1020:d04:402::150/124\",\r\n \"2603:1020:e04::600/121\",\r\n
+ \ \"2603:1020:e04:402::150/124\",\r\n \"2603:1020:f04:1::380/121\",\r\n
+ \ \"2603:1020:f04:402::150/124\",\r\n \"2603:1020:1004:2::100/121\",\r\n
+ \ \"2603:1020:1004:800::d0/124\",\r\n \"2603:1020:1104:1::600/121\",\r\n
+ \ \"2603:1020:1104:400::150/124\",\r\n \"2603:1030:f:2::380/121\",\r\n
+ \ \"2603:1030:f:400::950/124\",\r\n \"2603:1030:10::600/121\",\r\n
+ \ \"2603:1030:10:402::150/124\",\r\n \"2603:1030:104::600/121\",\r\n
+ \ \"2603:1030:104:402::150/124\",\r\n \"2603:1030:107:1::300/121\",\r\n
+ \ \"2603:1030:107:400::e0/124\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\",\r\n \"2603:1030:40b:2::400/121\",\r\n
+ \ \"2603:1030:40b:400::950/124\",\r\n \"2603:1030:40c::600/121\",\r\n
+ \ \"2603:1030:40c:402::150/124\",\r\n \"2603:1030:504:2::180/121\",\r\n
+ \ \"2603:1030:504:802::d0/124\",\r\n \"2603:1030:608:1::380/121\",\r\n
+ \ \"2603:1030:608:402::150/124\",\r\n \"2603:1030:807::600/121\",\r\n
+ \ \"2603:1030:807:402::150/124\",\r\n \"2603:1030:a07:1::380/121\",\r\n
+ \ \"2603:1030:a07:402::8d0/124\",\r\n \"2603:1030:b04:1::380/121\",\r\n
+ \ \"2603:1030:b04:402::150/124\",\r\n \"2603:1030:c06:2::400/121\",\r\n
+ \ \"2603:1030:c06:400::950/124\",\r\n \"2603:1030:f05::600/121\",\r\n
+ \ \"2603:1030:f05:402::150/124\",\r\n \"2603:1030:1005:1::380/121\",\r\n
+ \ \"2603:1030:1005:402::150/124\",\r\n \"2603:1040:5::700/121\",\r\n
+ \ \"2603:1040:5:402::150/124\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\",\r\n \"2603:1040:407::600/121\",\r\n
+ \ \"2603:1040:407:402::150/124\",\r\n \"2603:1040:606:1::380/121\",\r\n
+ \ \"2603:1040:606:402::150/124\",\r\n \"2603:1040:806:1::380/121\",\r\n
+ \ \"2603:1040:806:402::150/124\",\r\n \"2603:1040:904::600/121\",\r\n
+ \ \"2603:1040:904:402::150/124\",\r\n \"2603:1040:a06::700/121\",\r\n
+ \ \"2603:1040:a06:402::150/124\",\r\n \"2603:1040:b04:1::380/121\",\r\n
+ \ \"2603:1040:b04:402::150/124\",\r\n \"2603:1040:c06:1::380/121\",\r\n
+ \ \"2603:1040:c06:402::150/124\",\r\n \"2603:1040:d04:2::280/121\",\r\n
+ \ \"2603:1040:d04:800::d0/124\",\r\n \"2603:1040:e05::180/121\",\r\n
+ \ \"2603:1040:f05::600/121\",\r\n \"2603:1040:f05:402::150/124\",\r\n
+ \ \"2603:1040:1104:1::680/121\",\r\n \"2603:1040:1104:400::150/124\",\r\n
+ \ \"2603:1050:6::600/121\",\r\n \"2603:1050:6:402::150/124\",\r\n
+ \ \"2603:1050:403:1::400/121\",\r\n \"2603:1050:403:400::2b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.EastAsia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.0/28\",\r\n \"20.189.74.103/32\",\r\n
+ \ \"40.81.28.50/32\",\r\n \"2603:1040:207:1::380/121\",\r\n
+ \ \"2603:1040:207:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.EastUS\",\r\n \"id\":
+ \"AzureDataExplorerManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureDataExplorerManagement\",\r\n \"addressPrefixes\": [\r\n \"20.185.100.27/32\",\r\n
+ \ \"40.71.13.176/28\",\r\n \"52.224.146.56/32\",\r\n \"2603:1030:210::600/121\",\r\n
+ \ \"2603:1030:210:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.FranceCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.66.57.57/32\",\r\n \"40.66.57.91/32\",\r\n
+ \ \"40.79.131.224/28\",\r\n \"2603:1020:805::600/121\",\r\n
+ \ \"2603:1020:805:402::150/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.98.150/32\",\r\n \"51.116.155.224/28\",\r\n
+ \ \"2603:1020:c04::600/121\",\r\n \"2603:1020:c04:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.SouthIndia\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.78.195.240/28\",\r\n \"40.81.72.110/32\",\r\n
+ \ \"2603:1040:c06:1::380/121\",\r\n \"2603:1040:c06:402::150/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataExplorerManagement.WestUS\",\r\n
+ \ \"id\": \"AzureDataExplorerManagement.WestUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"westus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataExplorerManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.38.225/32\",\r\n \"13.86.219.64/28\",\r\n
+ \ \"2603:1030:a07:1::380/121\",\r\n \"2603:1030:a07:402::8d0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake\",\r\n
+ \ \"id\": \"AzureDataLake\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\",\r\n
+ \ \"40.90.141.128/29\",\r\n \"40.90.141.167/32\",\r\n \"40.90.144.0/27\",\r\n
+ \ \"40.90.145.192/26\",\r\n \"65.52.108.31/32\",\r\n \"65.52.108.38/32\",\r\n
+ \ \"104.44.88.66/31\",\r\n \"104.44.88.106/31\",\r\n \"104.44.88.112/31\",\r\n
+ \ \"104.44.88.176/31\",\r\n \"104.44.88.184/29\",\r\n \"104.44.89.39/32\",\r\n
+ \ \"104.44.89.42/32\",\r\n \"104.44.90.128/27\",\r\n \"104.44.90.194/31\",\r\n
+ \ \"104.44.91.64/27\",\r\n \"104.44.91.160/27\",\r\n \"104.44.93.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureDataLake.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.138.133/32\",\r\n \"40.90.138.136/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDataLake.WestEurope\",\r\n
+ \ \"id\": \"AzureDataLake.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDataLake\",\r\n \"addressPrefixes\":
+ [\r\n \"40.90.141.167/32\",\r\n \"40.90.145.192/27\",\r\n
+ \ \"104.44.90.194/31\",\r\n \"104.44.93.192/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces\",\r\n \"id\":
+ \"AzureDevSpaces\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.71.144/28\",\r\n \"13.70.78.176/28\",\r\n
+ \ \"13.71.175.112/28\",\r\n \"13.71.199.96/28\",\r\n \"13.73.244.128/28\",\r\n
+ \ \"13.74.111.128/28\",\r\n \"13.78.111.144/28\",\r\n \"13.86.221.224/28\",\r\n
+ \ \"20.37.157.64/28\",\r\n \"20.37.195.80/28\",\r\n \"20.38.85.128/28\",\r\n
+ \ \"20.39.11.64/28\",\r\n \"20.41.5.128/28\",\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\",\r\n \"20.42.131.192/27\",\r\n
+ \ \"20.42.230.64/28\",\r\n \"20.43.65.208/28\",\r\n \"20.43.130.240/28\",\r\n
+ \ \"20.189.108.32/28\",\r\n \"40.69.110.176/28\",\r\n \"40.70.151.80/28\",\r\n
+ \ \"40.74.30.144/28\",\r\n \"40.75.35.224/28\",\r\n \"40.78.239.0/28\",\r\n
+ \ \"40.78.251.224/27\",\r\n \"40.82.253.112/28\",\r\n \"40.89.17.192/28\",\r\n
+ \ \"40.119.9.240/28\",\r\n \"51.104.25.208/28\",\r\n \"51.105.77.64/28\",\r\n
+ \ \"52.150.139.144/28\",\r\n \"52.182.141.128/28\",\r\n \"52.228.81.224/28\",\r\n
+ \ \"104.214.161.48/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureDevSpaces.EastUS\",\r\n \"id\": \"AzureDevSpaces.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureDevSpaces\",\r\n \"addressPrefixes\": [\r\n \"20.42.6.32/27\",\r\n
+ \ \"20.42.6.128/28\",\r\n \"20.42.64.64/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.128/28\",\r\n \"40.70.151.80/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureDevSpaces.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.39.11.64/28\",\r\n \"40.75.35.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.JapanEast\",\r\n
+ \ \"id\": \"AzureDevSpaces.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.78.111.144/28\",\r\n \"20.43.65.208/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.NorthEurope\",\r\n
+ \ \"id\": \"AzureDevSpaces.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.74.111.128/28\",\r\n \"20.38.85.128/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureDevSpaces.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.130.240/28\",\r\n \"40.78.239.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.224/28\",\r\n \"40.82.253.112/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDevSpaces.WestUS2\",\r\n
+ \ \"id\": \"AzureDevSpaces.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDevSpaces\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.131.192/27\",\r\n \"40.78.251.224/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureDigitalTwins\",\r\n
+ \ \"id\": \"AzureDigitalTwins\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureDigitalTwins\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.125.120/29\",\r\n \"20.36.125.192/27\",\r\n
+ \ \"20.37.70.112/29\",\r\n \"20.37.70.192/27\",\r\n \"20.38.142.112/29\",\r\n
+ \ \"20.38.142.192/27\",\r\n \"20.39.2.134/32\",\r\n \"20.39.2.208/32\",\r\n
+ \ \"20.39.2.237/32\",\r\n \"20.39.3.11/32\",\r\n \"20.39.3.14/32\",\r\n
+ \ \"20.39.3.17/32\",\r\n \"20.39.3.38/32\",\r\n \"20.39.18.169/32\",\r\n
+ \ \"20.40.225.48/29\",\r\n \"20.40.225.128/27\",\r\n \"20.43.47.72/29\",\r\n
+ \ \"20.43.47.96/27\",\r\n \"20.45.116.80/29\",\r\n \"20.45.116.96/27\",\r\n
+ \ \"20.46.10.56/29\",\r\n \"20.46.10.96/27\",\r\n \"20.48.193.128/27\",\r\n
+ \ \"20.48.193.160/29\",\r\n \"20.49.103.112/29\",\r\n \"20.49.103.192/27\",\r\n
+ \ \"20.49.118.8/29\",\r\n \"20.49.118.32/27\",\r\n \"20.49.248.209/32\",\r\n
+ \ \"20.49.249.56/32\",\r\n \"20.49.249.78/32\",\r\n \"20.49.249.101/32\",\r\n
+ \ \"20.49.249.106/32\",\r\n \"20.49.249.156/32\",\r\n \"20.49.249.189/32\",\r\n
+ \ \"20.49.249.208/32\",\r\n \"20.49.249.236/32\",\r\n \"20.49.250.2/32\",\r\n
+ \ \"20.50.211.192/32\",\r\n \"20.50.212.99/32\",\r\n \"20.50.212.103/32\",\r\n
+ \ \"20.50.212.140/32\",\r\n \"20.50.213.6/32\",\r\n \"20.50.213.76/32\",\r\n
+ \ \"20.50.213.88/32\",\r\n \"20.50.213.93/32\",\r\n \"20.50.213.94/32\",\r\n
+ \ \"20.50.213.120/32\",\r\n \"20.51.8.96/27\",\r\n \"20.51.8.192/29\",\r\n
+ \ \"20.51.16.176/29\",\r\n \"20.51.17.0/27\",\r\n \"20.51.73.8/32\",\r\n
+ \ \"20.51.73.11/32\",\r\n \"20.51.73.22/31\",\r\n \"20.51.73.25/32\",\r\n
+ \ \"20.51.73.26/31\",\r\n \"20.51.73.36/32\",\r\n \"20.51.73.39/32\",\r\n
+ \ \"20.51.73.44/32\",\r\n \"20.53.44.88/29\",\r\n \"20.53.44.96/27\",\r\n
+ \ \"20.53.48.0/27\",\r\n \"20.53.48.32/29\",\r\n \"20.53.114.26/32\",\r\n
+ \ \"20.53.114.71/32\",\r\n \"20.53.114.84/32\",\r\n \"20.53.114.118/32\",\r\n
+ \ \"20.58.66.0/27\",\r\n \"20.58.66.32/29\",\r\n \"20.61.98.144/29\",\r\n
+ \ \"20.61.99.0/27\",\r\n \"20.62.129.32/27\",\r\n \"20.62.129.128/29\",\r\n
+ \ \"20.65.130.72/29\",\r\n \"20.65.130.96/27\",\r\n \"20.66.2.16/29\",\r\n
+ \ \"20.66.2.128/27\",\r\n \"20.72.20.0/27\",\r\n \"20.150.166.176/29\",\r\n
+ \ \"20.150.167.128/27\",\r\n \"20.185.75.6/32\",\r\n \"20.185.75.209/32\",\r\n
+ \ \"20.187.197.16/29\",\r\n \"20.187.197.128/27\",\r\n \"20.189.224.224/27\",\r\n
+ \ \"20.189.225.64/29\",\r\n \"20.191.161.96/27\",\r\n \"20.191.161.192/29\",\r\n
+ \ \"20.192.166.176/29\",\r\n \"20.192.167.128/27\",\r\n \"20.192.231.192/27\",\r\n
+ \ \"20.192.231.224/29\",\r\n \"20.193.3.89/32\",\r\n \"20.193.3.243/32\",\r\n
+ \ \"20.193.7.70/32\",\r\n \"20.193.7.132/32\",\r\n \"20.193.59.172/32\",\r\n
+ \ \"20.193.59.253/32\",\r\n \"20.194.72.136/29\",\r\n \"20.194.72.160/27\",\r\n
+ \ \"23.98.108.184/29\",\r\n \"23.98.109.0/27\",\r\n \"40.67.52.104/29\",\r\n
+ \ \"40.67.52.192/27\",\r\n \"40.80.173.208/29\",\r\n \"40.80.173.224/27\",\r\n
+ \ \"40.119.241.130/32\",\r\n \"40.119.241.148/32\",\r\n \"40.119.241.154/32\",\r\n
+ \ \"40.119.242.73/32\",\r\n \"40.119.242.79/32\",\r\n \"40.119.242.168/32\",\r\n
+ \ \"40.119.242.232/32\",\r\n \"40.119.243.20/32\",\r\n \"40.119.243.119/32\",\r\n
+ \ \"40.119.243.178/32\",\r\n \"40.124.97.243/32\",\r\n \"40.124.98.14/31\",\r\n
+ \ \"40.124.98.23/32\",\r\n \"40.124.98.34/31\",\r\n \"40.124.98.48/32\",\r\n
+ \ \"40.124.98.52/32\",\r\n \"40.124.98.70/32\",\r\n \"40.124.99.100/32\",\r\n
+ \ \"51.12.43.144/29\",\r\n \"51.12.43.160/27\",\r\n \"51.12.194.120/29\",\r\n
+ \ \"51.12.195.192/27\",\r\n \"51.13.136.128/27\",\r\n \"51.13.136.160/29\",\r\n
+ \ \"51.104.141.227/32\",\r\n \"51.107.241.64/27\",\r\n \"51.107.241.96/29\",\r\n
+ \ \"51.107.249.80/29\",\r\n \"51.107.249.96/27\",\r\n \"51.116.51.176/29\",\r\n
+ \ \"51.116.54.0/27\",\r\n \"51.116.148.120/29\",\r\n \"51.116.148.192/27\",\r\n
+ \ \"51.120.232.40/29\",\r\n \"51.120.232.128/27\",\r\n \"51.143.208.208/29\",\r\n
+ \ \"51.143.208.224/27\",\r\n \"52.136.52.248/29\",\r\n \"52.136.53.64/27\",\r\n
+ \ \"52.136.184.80/29\",\r\n \"52.136.184.96/27\",\r\n \"52.139.106.96/27\",\r\n
+ \ \"52.140.111.112/29\",\r\n \"52.140.111.192/27\",\r\n \"52.142.120.18/32\",\r\n
+ \ \"52.142.120.22/32\",\r\n \"52.142.120.57/32\",\r\n \"52.142.120.74/32\",\r\n
+ \ \"52.142.120.90/32\",\r\n \"52.142.120.104/32\",\r\n \"52.142.120.156/32\",\r\n
+ \ \"52.146.132.192/27\",\r\n \"52.146.132.224/29\",\r\n \"52.148.29.27/32\",\r\n
+ \ \"52.149.20.142/32\",\r\n \"52.149.234.152/32\",\r\n \"52.149.238.190/32\",\r\n
+ \ \"52.149.239.34/32\",\r\n \"52.150.156.248/29\",\r\n \"52.150.157.32/27\",\r\n
+ \ \"52.153.153.146/32\",\r\n \"52.153.153.246/32\",\r\n \"52.153.153.255/32\",\r\n
+ \ \"52.153.154.13/32\",\r\n \"52.153.154.40/32\",\r\n \"52.153.154.123/32\",\r\n
+ \ \"52.153.154.158/32\",\r\n \"52.153.154.161/32\",\r\n \"52.156.207.58/32\",\r\n
+ \ \"52.156.207.195/32\",\r\n \"52.161.185.49/32\",\r\n \"52.170.161.49/32\",\r\n
+ \ \"52.170.162.28/32\",\r\n \"52.172.112.168/29\",\r\n \"52.172.113.0/27\",\r\n
+ \ \"52.186.106.218/32\",\r\n \"52.191.16.191/32\",\r\n \"52.191.18.106/32\",\r\n
+ \ \"52.247.76.74/32\",\r\n \"52.247.76.167/32\",\r\n \"52.247.76.187/32\",\r\n
+ \ \"52.247.76.199/32\",\r\n \"52.247.76.216/32\",\r\n \"52.247.76.246/32\",\r\n
+ \ \"52.247.76.252/32\",\r\n \"52.247.77.7/32\",\r\n \"52.247.77.22/32\",\r\n
+ \ \"52.247.77.26/32\",\r\n \"52.250.39.158/32\",\r\n \"52.250.39.236/32\",\r\n
+ \ \"52.250.39.246/32\",\r\n \"52.250.39.250/32\",\r\n \"52.250.72.145/32\",\r\n
+ \ \"52.250.73.36/32\",\r\n \"52.250.73.178/32\",\r\n \"52.250.73.204/32\",\r\n
+ \ \"52.250.74.3/32\",\r\n \"52.253.224.146/32\",\r\n \"52.253.224.154/32\",\r\n
+ \ \"102.37.80.0/27\",\r\n \"102.37.80.32/29\",\r\n \"102.133.221.16/29\",\r\n
+ \ \"102.133.221.32/27\",\r\n \"104.46.178.120/29\",\r\n \"104.46.178.160/27\",\r\n
+ \ \"191.233.15.16/29\",\r\n \"191.233.15.32/27\",\r\n \"191.234.139.168/29\",\r\n
+ \ \"191.234.142.0/27\",\r\n \"2603:1020:e04::700/121\",\r\n
+ \ \"2603:1020:1004:1::540/122\",\r\n \"2603:1020:1004:2::/121\",\r\n
+ \ \"2603:1020:1104:1::380/122\",\r\n \"2603:1020:1104:1::680/121\",\r\n
+ \ \"2603:1030:f:2::500/121\",\r\n \"2603:1030:107::5c0/122\",\r\n
+ \ \"2603:1030:504::560/123\",\r\n \"2603:1030:504:2::/121\",\r\n
+ \ \"2603:1040:d04:1::540/122\",\r\n \"2603:1040:d04:2::80/121\",\r\n
+ \ \"2603:1040:f05::700/121\",\r\n \"2603:1040:1104:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid\",\r\n
+ \ \"id\": \"AzureEventGrid\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.56.240/28\",\r\n \"13.71.57.0/28\",\r\n \"13.73.248.128/25\",\r\n
+ \ \"13.86.56.32/27\",\r\n \"13.86.56.160/27\",\r\n \"13.88.73.16/28\",\r\n
+ \ \"13.88.73.32/27\",\r\n \"13.88.135.208/28\",\r\n \"13.91.193.0/28\",\r\n
+ \ \"20.36.121.0/25\",\r\n \"20.37.55.32/27\",\r\n \"20.37.65.0/25\",\r\n
+ \ \"20.37.82.224/27\",\r\n \"20.37.157.128/25\",\r\n \"20.37.196.0/25\",\r\n
+ \ \"20.37.225.0/25\",\r\n \"20.38.87.0/25\",\r\n \"20.38.137.0/25\",\r\n
+ \ \"20.39.11.128/25\",\r\n \"20.39.20.16/28\",\r\n \"20.39.80.112/28\",\r\n
+ \ \"20.39.80.128/28\",\r\n \"20.39.99.64/28\",\r\n \"20.39.99.240/28\",\r\n
+ \ \"20.40.152.128/27\",\r\n \"20.40.175.48/28\",\r\n \"20.40.175.64/28\",\r\n
+ \ \"20.41.66.0/25\",\r\n \"20.41.136.240/28\",\r\n \"20.41.195.0/25\",\r\n
+ \ \"20.42.7.0/25\",\r\n \"20.42.228.0/25\",\r\n \"20.43.42.128/25\",\r\n
+ \ \"20.43.66.128/25\",\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.39.176/28\",\r\n \"20.44.39.192/28\",\r\n
+ \ \"20.44.168.64/28\",\r\n \"20.44.205.112/28\",\r\n \"20.45.113.0/25\",\r\n
+ \ \"20.45.195.0/25\",\r\n \"20.46.152.112/28\",\r\n \"20.46.152.128/28\",\r\n
+ \ \"20.49.96.0/25\",\r\n \"20.52.90.128/25\",\r\n \"20.72.17.128/25\",\r\n
+ \ \"20.150.164.0/25\",\r\n \"20.189.108.128/25\",\r\n \"20.189.115.80/28\",\r\n
+ \ \"20.189.123.80/28\",\r\n \"20.189.125.32/27\",\r\n \"20.191.59.128/28\",\r\n
+ \ \"20.191.59.176/28\",\r\n \"20.192.164.0/25\",\r\n \"20.192.228.0/25\",\r\n
+ \ \"20.193.34.0/28\",\r\n \"20.193.34.32/28\",\r\n \"40.64.128.0/25\",\r\n
+ \ \"40.67.49.0/25\",\r\n \"40.74.31.128/25\",\r\n \"40.74.106.96/27\",\r\n
+ \ \"40.80.58.0/25\",\r\n \"40.80.170.0/25\",\r\n \"40.80.190.0/25\",\r\n
+ \ \"40.80.236.192/27\",\r\n \"40.81.93.240/28\",\r\n \"40.81.95.128/28\",\r\n
+ \ \"40.82.254.128/25\",\r\n \"40.89.18.0/25\",\r\n \"40.89.240.144/28\",\r\n
+ \ \"40.114.160.176/28\",\r\n \"40.114.160.192/28\",\r\n \"40.114.169.0/28\",\r\n
+ \ \"40.127.155.192/28\",\r\n \"40.127.251.144/28\",\r\n \"51.12.47.128/25\",\r\n
+ \ \"51.12.199.0/25\",\r\n \"51.104.27.128/25\",\r\n \"51.105.81.0/25\",\r\n
+ \ \"51.105.89.0/25\",\r\n \"51.107.4.128/27\",\r\n \"51.107.49.0/25\",\r\n
+ \ \"51.107.99.32/27\",\r\n \"51.107.145.0/25\",\r\n \"51.116.3.32/27\",\r\n
+ \ \"51.116.72.0/25\",\r\n \"51.116.100.208/28\",\r\n \"51.116.100.224/28\",\r\n
+ \ \"51.120.4.0/27\",\r\n \"51.120.41.0/25\",\r\n \"51.120.131.64/27\",\r\n
+ \ \"51.120.225.0/25\",\r\n \"51.132.161.160/28\",\r\n \"51.132.170.64/28\",\r\n
+ \ \"51.137.16.224/28\",\r\n \"51.137.142.32/28\",\r\n \"51.137.162.0/25\",\r\n
+ \ \"51.143.193.0/25\",\r\n \"52.136.49.0/25\",\r\n \"52.139.9.80/28\",\r\n
+ \ \"52.139.11.16/28\",\r\n \"52.139.85.16/28\",\r\n \"52.139.85.32/28\",\r\n
+ \ \"52.140.106.0/25\",\r\n \"52.142.152.144/28\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.149.248.0/28\",\r\n
+ \ \"52.149.248.64/27\",\r\n \"52.149.248.96/28\",\r\n \"52.150.140.0/25\",\r\n
+ \ \"52.154.57.48/28\",\r\n \"52.154.57.80/28\",\r\n \"52.154.68.16/28\",\r\n
+ \ \"52.154.68.32/28\",\r\n \"52.156.103.192/28\",\r\n \"52.159.49.144/28\",\r\n
+ \ \"52.159.51.160/28\",\r\n \"52.159.53.64/28\",\r\n \"52.159.53.112/28\",\r\n
+ \ \"52.160.136.16/28\",\r\n \"52.160.136.32/28\",\r\n \"52.161.186.128/28\",\r\n
+ \ \"52.161.186.208/28\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.170.171.192/28\",\r\n \"52.170.171.240/28\",\r\n
+ \ \"52.177.38.160/27\",\r\n \"52.185.176.112/28\",\r\n \"52.185.212.176/28\",\r\n
+ \ \"52.185.212.192/28\",\r\n \"52.186.36.16/28\",\r\n \"52.228.83.0/25\",\r\n
+ \ \"52.231.112.192/28\",\r\n \"52.231.112.224/28\",\r\n \"52.250.28.176/28\",\r\n
+ \ \"52.250.32.160/28\",\r\n \"52.252.213.192/28\",\r\n \"52.255.80.16/28\",\r\n
+ \ \"52.255.82.160/28\",\r\n \"102.37.162.0/25\",\r\n \"102.133.0.240/28\",\r\n
+ \ \"102.133.1.0/28\",\r\n \"102.133.57.0/25\",\r\n \"102.133.135.16/28\",\r\n
+ \ \"102.133.135.32/28\",\r\n \"191.233.9.128/25\",\r\n \"191.235.126.0/28\",\r\n
+ \ \"191.235.126.144/28\",\r\n \"191.235.227.0/25\",\r\n \"2603:1000:4::380/121\",\r\n
+ \ \"2603:1000:104:1::380/121\",\r\n \"2603:1010:6:1::380/121\",\r\n
+ \ \"2603:1010:101::380/121\",\r\n \"2603:1010:304::380/121\",\r\n
+ \ \"2603:1010:404::380/121\",\r\n \"2603:1020:5:1::380/121\",\r\n
+ \ \"2603:1020:206:1::380/121\",\r\n \"2603:1020:305::380/121\",\r\n
+ \ \"2603:1020:405::380/121\",\r\n \"2603:1020:605::380/121\",\r\n
+ \ \"2603:1020:705:1::380/121\",\r\n \"2603:1020:805:1::380/121\",\r\n
+ \ \"2603:1020:905::380/121\",\r\n \"2603:1020:a04:1::380/121\",\r\n
+ \ \"2603:1020:b04::380/121\",\r\n \"2603:1020:c04:1::380/121\",\r\n
+ \ \"2603:1020:d04::380/121\",\r\n \"2603:1020:e04:1::380/121\",\r\n
+ \ \"2603:1020:f04::380/121\",\r\n \"2603:1020:1004::380/121\",\r\n
+ \ \"2603:1020:1104::280/121\",\r\n \"2603:1030:f:1::380/121\",\r\n
+ \ \"2603:1030:10:1::380/121\",\r\n \"2603:1030:104:1::380/121\",\r\n
+ \ \"2603:1030:107::280/121\",\r\n \"2603:1030:210:1::380/121\",\r\n
+ \ \"2603:1030:40b:1::380/121\",\r\n \"2603:1030:40c:1::380/121\",\r\n
+ \ \"2603:1030:504:1::380/121\",\r\n \"2603:1030:608::380/121\",\r\n
+ \ \"2603:1030:807:1::380/121\",\r\n \"2603:1030:a07::380/121\",\r\n
+ \ \"2603:1030:b04::380/121\",\r\n \"2603:1030:c06:1::380/121\",\r\n
+ \ \"2603:1030:f05:1::380/121\",\r\n \"2603:1030:1005::380/121\",\r\n
+ \ \"2603:1040:5:1::380/121\",\r\n \"2603:1040:207::380/121\",\r\n
+ \ \"2603:1040:407:1::380/121\",\r\n \"2603:1040:606::380/121\",\r\n
+ \ \"2603:1040:806::380/121\",\r\n \"2603:1040:904:1::380/121\",\r\n
+ \ \"2603:1040:a06:1::380/121\",\r\n \"2603:1040:b04::380/121\",\r\n
+ \ \"2603:1040:c06::380/121\",\r\n \"2603:1040:d04::380/121\",\r\n
+ \ \"2603:1040:f05:1::380/121\",\r\n \"2603:1040:1104::280/121\",\r\n
+ \ \"2603:1050:6:1::380/121\",\r\n \"2603:1050:403::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.CanadaCentral\",\r\n
+ \ \"id\": \"AzureEventGrid.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"52.139.9.80/28\",\r\n \"52.139.11.16/28\",\r\n
+ \ \"52.228.83.0/25\",\r\n \"2603:1030:f05:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.EastUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.96.0/25\",\r\n \"52.167.21.160/27\",\r\n \"52.167.21.208/28\",\r\n
+ \ \"52.167.21.224/28\",\r\n \"52.177.38.160/27\",\r\n \"2603:1030:40c:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureEventGrid.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.131.128/25\",\r\n \"20.43.165.144/28\",\r\n
+ \ \"20.43.172.128/27\",\r\n \"20.44.205.112/28\",\r\n \"2603:1040:5:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.SouthIndia\",\r\n
+ \ \"id\": \"AzureEventGrid.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.41.195.0/25\",\r\n \"20.44.39.176/28\",\r\n
+ \ \"20.44.39.192/28\",\r\n \"2603:1040:c06::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UAENorth\",\r\n
+ \ \"id\": \"AzureEventGrid.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.137.0/25\",\r\n \"20.46.152.112/28\",\r\n
+ \ \"20.46.152.128/28\",\r\n \"2603:1040:904:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.27.128/25\",\r\n \"51.132.161.160/28\",\r\n
+ \ \"51.132.170.64/28\",\r\n \"2603:1020:705:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.UKSouth2\",\r\n
+ \ \"id\": \"AzureEventGrid.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureEventGrid\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.193.0/25\",\r\n \"2603:1020:405::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureEventGrid.WestUS2\",\r\n
+ \ \"id\": \"AzureEventGrid.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventGrid\",\r\n \"addressPrefixes\":
+ [\r\n \"40.64.128.0/25\",\r\n \"52.149.23.160/27\",\r\n
+ \ \"52.149.48.80/28\",\r\n \"52.149.48.96/27\",\r\n \"52.156.103.192/28\",\r\n
+ \ \"52.250.28.176/28\",\r\n \"52.250.32.160/28\",\r\n \"2603:1030:c06:1::380/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureFrontDoor.Backend\",\r\n
+ \ \"id\": \"AzureFrontDoor.Backend\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.16/29\",\r\n \"20.36.120.104/29\",\r\n
+ \ \"20.37.64.104/29\",\r\n \"20.37.156.120/29\",\r\n \"20.37.195.0/29\",\r\n
+ \ \"20.37.224.104/29\",\r\n \"20.38.84.72/29\",\r\n \"20.38.136.104/29\",\r\n
+ \ \"20.39.11.8/29\",\r\n \"20.41.4.88/29\",\r\n \"20.41.64.120/29\",\r\n
+ \ \"20.41.192.104/29\",\r\n \"20.42.4.120/29\",\r\n \"20.42.129.152/29\",\r\n
+ \ \"20.42.224.104/29\",\r\n \"20.43.41.136/29\",\r\n \"20.43.65.128/29\",\r\n
+ \ \"20.43.130.80/29\",\r\n \"20.45.112.104/29\",\r\n \"20.45.192.104/29\",\r\n
+ \ \"20.72.18.248/29\",\r\n \"20.150.160.96/29\",\r\n \"20.189.106.112/29\",\r\n
+ \ \"20.192.161.104/29\",\r\n \"20.192.225.48/29\",\r\n \"40.67.48.104/29\",\r\n
+ \ \"40.74.30.72/29\",\r\n \"40.80.56.104/29\",\r\n \"40.80.168.104/29\",\r\n
+ \ \"40.80.184.120/29\",\r\n \"40.82.248.248/29\",\r\n \"40.89.16.104/29\",\r\n
+ \ \"51.12.41.8/29\",\r\n \"51.12.193.8/29\",\r\n \"51.104.25.128/29\",\r\n
+ \ \"51.105.80.104/29\",\r\n \"51.105.88.104/29\",\r\n \"51.107.48.104/29\",\r\n
+ \ \"51.107.144.104/29\",\r\n \"51.120.40.104/29\",\r\n \"51.120.224.104/29\",\r\n
+ \ \"51.137.160.112/29\",\r\n \"51.143.192.104/29\",\r\n \"52.136.48.104/29\",\r\n
+ \ \"52.140.104.104/29\",\r\n \"52.150.136.120/29\",\r\n \"52.228.80.120/29\",\r\n
+ \ \"102.133.56.88/29\",\r\n \"102.133.216.88/29\",\r\n \"147.243.0.0/16\",\r\n
+ \ \"191.233.9.120/29\",\r\n \"191.235.225.128/29\",\r\n \"2603:1000:4::600/123\",\r\n
+ \ \"2603:1000:104::e0/123\",\r\n \"2603:1000:104::300/123\",\r\n
+ \ \"2603:1000:104:1::5c0/123\",\r\n \"2603:1000:104:1::7e0/123\",\r\n
+ \ \"2603:1010:6:1::5c0/123\",\r\n \"2603:1010:6:1::7e0/123\",\r\n
+ \ \"2603:1010:101::600/123\",\r\n \"2603:1010:304::600/123\",\r\n
+ \ \"2603:1010:404::600/123\",\r\n \"2603:1020:5:1::5c0/123\",\r\n
+ \ \"2603:1020:5:1::7e0/123\",\r\n \"2603:1020:206:1::5c0/123\",\r\n
+ \ \"2603:1020:206:1::7e0/123\",\r\n \"2603:1020:305::600/123\",\r\n
+ \ \"2603:1020:405::600/123\",\r\n \"2603:1020:605::600/123\",\r\n
+ \ \"2603:1020:705:1::5c0/123\",\r\n \"2603:1020:705:1::7e0/123\",\r\n
+ \ \"2603:1020:805:1::5c0/123\",\r\n \"2603:1020:805:1::7e0/123\",\r\n
+ \ \"2603:1020:905::600/123\",\r\n \"2603:1020:a04:1::5c0/123\",\r\n
+ \ \"2603:1020:a04:1::7e0/123\",\r\n \"2603:1020:b04::600/123\",\r\n
+ \ \"2603:1020:c04:1::5c0/123\",\r\n \"2603:1020:c04:1::7e0/123\",\r\n
+ \ \"2603:1020:d04::600/123\",\r\n \"2603:1020:e04:1::5c0/123\",\r\n
+ \ \"2603:1020:e04:1::7e0/123\",\r\n \"2603:1020:f04::600/123\",\r\n
+ \ \"2603:1020:1004::5c0/123\",\r\n \"2603:1020:1004::7e0/123\",\r\n
+ \ \"2603:1020:1104::680/123\",\r\n \"2603:1030:f:1::600/123\",\r\n
+ \ \"2603:1030:10:1::5c0/123\",\r\n \"2603:1030:10:1::7e0/123\",\r\n
+ \ \"2603:1030:104:1::5c0/123\",\r\n \"2603:1030:104:1::7e0/123\",\r\n
+ \ \"2603:1030:107::6a0/123\",\r\n \"2603:1030:210:1::5c0/123\",\r\n
+ \ \"2603:1030:210:1::7e0/123\",\r\n \"2603:1030:40b:1::5c0/123\",\r\n
+ \ \"2603:1030:40c:1::5c0/123\",\r\n \"2603:1030:40c:1::7e0/123\",\r\n
+ \ \"2603:1030:504:1::5c0/123\",\r\n \"2603:1030:504:1::7e0/123\",\r\n
+ \ \"2603:1030:608::600/123\",\r\n \"2603:1030:807:1::5c0/123\",\r\n
+ \ \"2603:1030:807:1::7e0/123\",\r\n \"2603:1030:a07::600/123\",\r\n
+ \ \"2603:1030:b04::600/123\",\r\n \"2603:1030:c06:1::5c0/123\",\r\n
+ \ \"2603:1030:f05:1::5c0/123\",\r\n \"2603:1030:f05:1::7e0/123\",\r\n
+ \ \"2603:1030:1005::600/123\",\r\n \"2603:1040:5::e0/123\",\r\n
+ \ \"2603:1040:5:1::5c0/123\",\r\n \"2603:1040:5:1::7e0/123\",\r\n
+ \ \"2603:1040:207::600/123\",\r\n \"2603:1040:407:1::5c0/123\",\r\n
+ \ \"2603:1040:407:1::7e0/123\",\r\n \"2603:1040:606::600/123\",\r\n
+ \ \"2603:1040:806::600/123\",\r\n \"2603:1040:904:1::5c0/123\",\r\n
+ \ \"2603:1040:904:1::7e0/123\",\r\n \"2603:1040:a06::e0/123\",\r\n
+ \ \"2603:1040:a06:1::5c0/123\",\r\n \"2603:1040:a06:1::7e0/123\",\r\n
+ \ \"2603:1040:b04::600/123\",\r\n \"2603:1040:c06::600/123\",\r\n
+ \ \"2603:1040:d04::5c0/123\",\r\n \"2603:1040:d04::7e0/123\",\r\n
+ \ \"2603:1040:f05:1::5c0/123\",\r\n \"2603:1040:f05:1::7e0/123\",\r\n
+ \ \"2603:1040:1104::680/123\",\r\n \"2603:1050:6:1::5c0/123\",\r\n
+ \ \"2603:1050:6:1::7e0/123\",\r\n \"2603:1050:403::5c0/123\",\r\n
+ \ \"2a01:111:2050::/44\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.FirstParty\",\r\n \"id\": \"AzureFrontDoor.FirstParty\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureFrontDoor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.107.3.0/24\",\r\n \"13.107.4.0/22\",\r\n \"13.107.9.0/24\",\r\n
+ \ \"13.107.12.0/23\",\r\n \"13.107.15.0/24\",\r\n \"13.107.16.0/24\",\r\n
+ \ \"13.107.18.0/23\",\r\n \"13.107.21.0/24\",\r\n \"13.107.22.0/24\",\r\n
+ \ \"13.107.37.0/24\",\r\n \"13.107.38.0/23\",\r\n \"13.107.40.0/24\",\r\n
+ \ \"13.107.42.0/23\",\r\n \"13.107.48.0/24\",\r\n \"13.107.50.0/24\",\r\n
+ \ \"13.107.52.0/24\",\r\n \"13.107.54.0/24\",\r\n \"13.107.56.0/24\",\r\n
+ \ \"13.107.64.0/18\",\r\n \"13.107.128.0/19\",\r\n \"13.107.245.0/24\",\r\n
+ \ \"13.107.254.0/23\",\r\n \"131.253.3.0/24\",\r\n \"131.253.21.0/24\",\r\n
+ \ \"131.253.33.0/24\",\r\n \"150.171.32.0/19\",\r\n \"202.89.233.96/28\",\r\n
+ \ \"204.79.197.0/24\",\r\n \"2620:1ec:4::/46\",\r\n \"2620:1ec:a::/47\",\r\n
+ \ \"2620:1ec:c::/47\",\r\n \"2620:1ec:12::/47\",\r\n \"2620:1ec:21::/48\",\r\n
+ \ \"2620:1ec:22::/48\",\r\n \"2620:1ec:26::/63\",\r\n \"2620:1ec:26:2::/64\",\r\n
+ \ \"2620:1ec:28::/48\",\r\n \"2620:1ec:34::/48\",\r\n \"2620:1ec:39::/48\",\r\n
+ \ \"2620:1ec:3e::/47\",\r\n \"2620:1ec:42::/47\",\r\n \"2620:1ec:44::/47\",\r\n
+ \ \"2620:1ec:8f0::/44\",\r\n \"2620:1ec:900::/44\",\r\n \"2620:1ec:a92::/48\",\r\n
+ \ \"2620:1ec:c11::/48\",\r\n \"2a01:111:2003::/48\",\r\n
+ \ \"2a01:111:202c::/46\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureFrontDoor.Frontend\",\r\n \"id\": \"AzureFrontDoor.Frontend\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.8/29\",\r\n \"13.107.208.0/24\",\r\n \"13.107.213.0/24\",\r\n
+ \ \"13.107.219.0/24\",\r\n \"13.107.224.0/24\",\r\n \"13.107.246.0/24\",\r\n
+ \ \"13.107.253.0/24\",\r\n \"20.36.120.96/29\",\r\n \"20.37.64.96/29\",\r\n
+ \ \"20.37.156.112/29\",\r\n \"20.37.192.88/29\",\r\n \"20.37.224.96/29\",\r\n
+ \ \"20.38.84.64/29\",\r\n \"20.38.136.96/29\",\r\n \"20.39.11.0/29\",\r\n
+ \ \"20.41.4.80/29\",\r\n \"20.41.64.112/29\",\r\n \"20.41.192.96/29\",\r\n
+ \ \"20.42.4.112/29\",\r\n \"20.42.129.144/29\",\r\n \"20.42.224.96/29\",\r\n
+ \ \"20.43.41.128/29\",\r\n \"20.43.64.88/29\",\r\n \"20.43.128.104/29\",\r\n
+ \ \"20.45.112.96/29\",\r\n \"20.45.192.96/29\",\r\n \"20.72.18.240/29\",\r\n
+ \ \"20.150.160.72/29\",\r\n \"20.189.106.72/29\",\r\n \"20.192.161.96/29\",\r\n
+ \ \"20.192.225.40/29\",\r\n \"40.67.48.96/29\",\r\n \"40.74.30.64/29\",\r\n
+ \ \"40.80.56.96/29\",\r\n \"40.80.168.96/29\",\r\n \"40.80.184.112/29\",\r\n
+ \ \"40.82.248.72/29\",\r\n \"40.89.16.96/29\",\r\n \"51.12.41.0/29\",\r\n
+ \ \"51.12.193.0/29\",\r\n \"51.104.24.88/29\",\r\n \"51.105.80.96/29\",\r\n
+ \ \"51.105.88.96/29\",\r\n \"51.107.48.96/29\",\r\n \"51.107.144.96/29\",\r\n
+ \ \"51.120.40.96/29\",\r\n \"51.120.224.96/29\",\r\n \"51.137.160.88/29\",\r\n
+ \ \"51.143.192.96/29\",\r\n \"52.136.48.96/29\",\r\n \"52.140.104.96/29\",\r\n
+ \ \"52.150.136.112/29\",\r\n \"52.228.80.112/29\",\r\n \"102.133.56.80/29\",\r\n
+ \ \"102.133.216.80/29\",\r\n \"191.233.9.112/29\",\r\n \"191.235.224.88/29\",\r\n
+ \ \"2603:1000:4::5e0/123\",\r\n \"2603:1000:104::c0/123\",\r\n
+ \ \"2603:1000:104::160/123\",\r\n \"2603:1000:104:1::5a0/123\",\r\n
+ \ \"2603:1000:104:1::7c0/123\",\r\n \"2603:1010:6:1::5a0/123\",\r\n
+ \ \"2603:1010:6:1::7c0/123\",\r\n \"2603:1010:101::5e0/123\",\r\n
+ \ \"2603:1010:304::5e0/123\",\r\n \"2603:1010:404::5e0/123\",\r\n
+ \ \"2603:1020:5:1::5a0/123\",\r\n \"2603:1020:5:1::7c0/123\",\r\n
+ \ \"2603:1020:206:1::5a0/123\",\r\n \"2603:1020:206:1::7c0/123\",\r\n
+ \ \"2603:1020:305::5e0/123\",\r\n \"2603:1020:405::5e0/123\",\r\n
+ \ \"2603:1020:605::5e0/123\",\r\n \"2603:1020:705:1::5a0/123\",\r\n
+ \ \"2603:1020:705:1::7c0/123\",\r\n \"2603:1020:805:1::5a0/123\",\r\n
+ \ \"2603:1020:805:1::7c0/123\",\r\n \"2603:1020:905::5e0/123\",\r\n
+ \ \"2603:1020:a04:1::5a0/123\",\r\n \"2603:1020:a04:1::7c0/123\",\r\n
+ \ \"2603:1020:b04::5e0/123\",\r\n \"2603:1020:c04:1::5a0/123\",\r\n
+ \ \"2603:1020:c04:1::7c0/123\",\r\n \"2603:1020:d04::5e0/123\",\r\n
+ \ \"2603:1020:e04:1::5a0/123\",\r\n \"2603:1020:e04:1::7c0/123\",\r\n
+ \ \"2603:1020:f04::5e0/123\",\r\n \"2603:1020:1004::5a0/123\",\r\n
+ \ \"2603:1020:1004::7c0/123\",\r\n \"2603:1020:1104::5e0/123\",\r\n
+ \ \"2603:1030:f:1::5e0/123\",\r\n \"2603:1030:10:1::5a0/123\",\r\n
+ \ \"2603:1030:10:1::7c0/123\",\r\n \"2603:1030:104:1::5a0/123\",\r\n
+ \ \"2603:1030:104:1::7c0/123\",\r\n \"2603:1030:107::680/123\",\r\n
+ \ \"2603:1030:210:1::5a0/123\",\r\n \"2603:1030:210:1::7c0/123\",\r\n
+ \ \"2603:1030:40b:1::5a0/123\",\r\n \"2603:1030:40c:1::5a0/123\",\r\n
+ \ \"2603:1030:40c:1::7c0/123\",\r\n \"2603:1030:504:1::5a0/123\",\r\n
+ \ \"2603:1030:504:1::7c0/123\",\r\n \"2603:1030:608::5e0/123\",\r\n
+ \ \"2603:1030:807:1::5a0/123\",\r\n \"2603:1030:807:1::7c0/123\",\r\n
+ \ \"2603:1030:a07::5e0/123\",\r\n \"2603:1030:b04::5e0/123\",\r\n
+ \ \"2603:1030:c06:1::5a0/123\",\r\n \"2603:1030:f05:1::5a0/123\",\r\n
+ \ \"2603:1030:f05:1::7c0/123\",\r\n \"2603:1030:1005::5e0/123\",\r\n
+ \ \"2603:1040:5::c0/123\",\r\n \"2603:1040:5:1::5a0/123\",\r\n
+ \ \"2603:1040:5:1::7c0/123\",\r\n \"2603:1040:207::5e0/123\",\r\n
+ \ \"2603:1040:407:1::5a0/123\",\r\n \"2603:1040:407:1::7c0/123\",\r\n
+ \ \"2603:1040:606::5e0/123\",\r\n \"2603:1040:806::5e0/123\",\r\n
+ \ \"2603:1040:904:1::5a0/123\",\r\n \"2603:1040:904:1::7c0/123\",\r\n
+ \ \"2603:1040:a06::c0/123\",\r\n \"2603:1040:a06:1::5a0/123\",\r\n
+ \ \"2603:1040:a06:1::7c0/123\",\r\n \"2603:1040:b04::5e0/123\",\r\n
+ \ \"2603:1040:c06::5e0/123\",\r\n \"2603:1040:d04::5a0/123\",\r\n
+ \ \"2603:1040:d04::7c0/123\",\r\n \"2603:1040:f05:1::5a0/123\",\r\n
+ \ \"2603:1040:f05:1::7c0/123\",\r\n \"2603:1040:1104::5e0/123\",\r\n
+ \ \"2603:1050:6:1::5a0/123\",\r\n \"2603:1050:6:1::7c0/123\",\r\n
+ \ \"2603:1050:403::5a0/123\",\r\n \"2620:1ec:29::/48\",\r\n
+ \ \"2620:1ec:40::/47\",\r\n \"2620:1ec:46::/47\",\r\n \"2620:1ec:bdf::/48\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureInformationProtection\",\r\n
+ \ \"id\": \"AzureInformationProtection\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureInformationProtection\",\r\n \"addressPrefixes\": [\r\n \"13.66.153.57/32\",\r\n
+ \ \"13.66.245.220/32\",\r\n \"13.66.251.171/32\",\r\n \"13.67.114.221/32\",\r\n
+ \ \"13.68.179.152/32\",\r\n \"13.76.139.8/32\",\r\n \"13.76.244.119/32\",\r\n
+ \ \"13.77.166.40/32\",\r\n \"13.77.203.47/32\",\r\n \"13.78.130.67/32\",\r\n
+ \ \"13.78.130.185/32\",\r\n \"13.78.178.191/32\",\r\n \"13.79.189.239/32\",\r\n
+ \ \"13.79.189.241/32\",\r\n \"13.82.198.231/32\",\r\n \"13.83.91.144/32\",\r\n
+ \ \"13.92.58.123/32\",\r\n \"13.92.61.93/32\",\r\n \"13.93.72.133/32\",\r\n
+ \ \"13.93.75.214/32\",\r\n \"13.94.98.184/32\",\r\n \"13.94.116.226/32\",\r\n
+ \ \"23.97.70.206/32\",\r\n \"23.99.106.184/32\",\r\n \"23.99.114.156/32\",\r\n
+ \ \"23.99.251.107/32\",\r\n \"23.101.112.34/32\",\r\n \"23.101.147.227/32\",\r\n
+ \ \"23.101.163.169/32\",\r\n \"40.69.191.65/32\",\r\n \"40.70.16.196/32\",\r\n
+ \ \"40.76.94.49/32\",\r\n \"40.83.177.47/32\",\r\n \"40.83.223.214/32\",\r\n
+ \ \"40.87.2.166/32\",\r\n \"40.87.67.213/32\",\r\n \"40.87.94.91/32\",\r\n
+ \ \"40.114.2.72/32\",\r\n \"40.117.180.9/32\",\r\n \"40.121.48.207/32\",\r\n
+ \ \"40.121.49.153/32\",\r\n \"40.121.90.82/32\",\r\n \"40.127.160.102/32\",\r\n
+ \ \"40.127.175.173/32\",\r\n \"51.136.18.12/32\",\r\n \"51.141.184.35/32\",\r\n
+ \ \"51.143.32.47/32\",\r\n \"51.143.88.135/32\",\r\n \"51.144.167.90/32\",\r\n
+ \ \"51.145.146.97/32\",\r\n \"52.162.33.18/32\",\r\n \"52.162.37.146/32\",\r\n
+ \ \"52.162.88.200/32\",\r\n \"52.162.95.132/32\",\r\n \"52.162.208.48/32\",\r\n
+ \ \"52.163.61.51/32\",\r\n \"52.163.85.21/32\",\r\n \"52.163.85.129/32\",\r\n
+ \ \"52.163.87.92/32\",\r\n \"52.163.89.155/32\",\r\n \"52.163.89.160/32\",\r\n
+ \ \"52.165.189.139/32\",\r\n \"52.167.1.118/32\",\r\n \"52.167.225.247/32\",\r\n
+ \ \"52.167.226.2/32\",\r\n \"52.167.227.104/32\",\r\n \"52.167.227.154/32\",\r\n
+ \ \"52.173.21.111/32\",\r\n \"52.173.89.54/32\",\r\n \"52.173.89.66/32\",\r\n
+ \ \"52.173.93.137/32\",\r\n \"52.176.44.178/32\",\r\n \"52.178.145.186/32\",\r\n
+ \ \"52.178.147.96/32\",\r\n \"52.179.136.129/32\",\r\n \"52.184.34.233/32\",\r\n
+ \ \"52.184.35.49/32\",\r\n \"52.232.110.114/32\",\r\n \"52.232.113.160/32\",\r\n
+ \ \"52.232.118.97/32\",\r\n \"52.232.119.81/32\",\r\n \"52.237.141.83/32\",\r\n
+ \ \"52.237.141.229/32\",\r\n \"52.250.56.125/32\",\r\n \"65.52.36.85/32\",\r\n
+ \ \"65.52.55.108/32\",\r\n \"65.52.176.250/32\",\r\n \"65.52.177.192/32\",\r\n
+ \ \"65.52.184.44/32\",\r\n \"65.52.184.218/32\",\r\n \"65.52.236.123/32\",\r\n
+ \ \"70.37.163.131/32\",\r\n \"94.245.88.160/32\",\r\n \"104.40.16.135/32\",\r\n
+ \ \"104.40.30.29/32\",\r\n \"104.41.143.145/32\",\r\n \"137.116.91.123/32\",\r\n
+ \ \"137.117.47.75/32\",\r\n \"138.91.121.248/32\",\r\n \"138.91.122.178/32\",\r\n
+ \ \"157.55.177.248/32\",\r\n \"157.55.185.205/32\",\r\n \"157.56.8.93/32\",\r\n
+ \ \"157.56.8.135/32\",\r\n \"157.56.9.127/32\",\r\n \"168.61.46.212/32\",\r\n
+ \ \"168.62.5.167/32\",\r\n \"168.62.8.139/32\",\r\n \"168.62.25.173/32\",\r\n
+ \ \"168.62.25.179/32\",\r\n \"168.62.48.148/32\",\r\n \"168.62.49.18/32\",\r\n
+ \ \"168.62.52.244/32\",\r\n \"168.62.53.73/32\",\r\n \"168.62.53.132/32\",\r\n
+ \ \"168.62.54.75/32\",\r\n \"168.62.54.211/32\",\r\n \"168.62.54.212/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub\",\r\n
+ \ \"id\": \"AzureIoTHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.142.96/27\",\r\n \"13.67.10.224/27\",\r\n
+ \ \"13.67.234.22/32\",\r\n \"13.69.71.0/25\",\r\n \"13.69.109.0/25\",\r\n
+ \ \"13.69.192.43/32\",\r\n \"13.69.230.64/27\",\r\n \"13.70.74.192/27\",\r\n
+ \ \"13.70.182.204/32\",\r\n \"13.70.182.210/32\",\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"13.71.150.19/32\",\r\n \"13.71.175.32/27\",\r\n
+ \ \"13.71.196.224/27\",\r\n \"13.73.115.51/32\",\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.74.108.192/27\",\r\n \"13.75.39.160/27\",\r\n
+ \ \"13.76.83.155/32\",\r\n \"13.76.217.46/32\",\r\n \"13.77.53.128/27\",\r\n
+ \ \"13.78.109.160/27\",\r\n \"13.78.129.154/32\",\r\n \"13.78.130.69/32\",\r\n
+ \ \"13.79.172.43/32\",\r\n \"13.82.93.138/32\",\r\n \"13.84.189.6/32\",\r\n
+ \ \"13.85.68.113/32\",\r\n \"13.86.221.0/25\",\r\n \"13.87.58.96/27\",\r\n
+ \ \"13.87.124.96/27\",\r\n \"13.89.174.160/27\",\r\n \"13.89.231.149/32\",\r\n
+ \ \"13.94.40.72/32\",\r\n \"13.95.15.251/32\",\r\n \"20.36.108.160/27\",\r\n
+ \ \"20.36.117.64/27\",\r\n \"20.36.123.32/27\",\r\n \"20.36.123.128/25\",\r\n
+ \ \"20.37.67.128/25\",\r\n \"20.37.68.0/27\",\r\n \"20.37.76.160/27\",\r\n
+ \ \"20.37.198.160/27\",\r\n \"20.37.199.0/25\",\r\n \"20.37.227.64/27\",\r\n
+ \ \"20.37.227.128/25\",\r\n \"20.38.128.128/27\",\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"20.38.147.192/27\",\r\n \"20.39.14.32/27\",\r\n
+ \ \"20.39.14.128/25\",\r\n \"20.40.206.192/27\",\r\n \"20.40.207.0/25\",\r\n
+ \ \"20.41.68.96/27\",\r\n \"20.41.68.128/25\",\r\n \"20.41.197.64/27\",\r\n
+ \ \"20.41.197.128/25\",\r\n \"20.42.230.160/27\",\r\n \"20.42.231.0/25\",\r\n
+ \ \"20.43.44.160/27\",\r\n \"20.43.45.0/25\",\r\n \"20.43.70.160/27\",\r\n
+ \ \"20.43.71.0/25\",\r\n \"20.43.121.64/27\",\r\n \"20.44.4.128/27\",\r\n
+ \ \"20.44.8.224/27\",\r\n \"20.44.17.96/27\",\r\n \"20.44.29.0/27\",\r\n
+ \ \"20.45.114.224/27\",\r\n \"20.45.115.0/25\",\r\n \"20.45.123.128/27\",\r\n
+ \ \"20.45.198.32/27\",\r\n \"20.45.198.128/25\",\r\n \"20.49.83.128/27\",\r\n
+ \ \"20.49.91.128/27\",\r\n \"20.49.99.96/27\",\r\n \"20.49.99.128/25\",\r\n
+ \ \"20.49.109.128/25\",\r\n \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n
+ \ \"20.49.113.32/27\",\r\n \"20.49.113.128/25\",\r\n \"20.49.120.96/27\",\r\n
+ \ \"20.49.120.128/25\",\r\n \"20.49.121.0/25\",\r\n \"20.50.65.128/25\",\r\n
+ \ \"20.50.68.0/27\",\r\n \"20.72.28.160/27\",\r\n \"20.150.165.192/27\",\r\n
+ \ \"20.150.166.0/25\",\r\n \"20.150.172.192/27\",\r\n \"20.150.179.224/27\",\r\n
+ \ \"20.150.187.224/27\",\r\n \"20.187.195.0/25\",\r\n \"20.188.0.51/32\",\r\n
+ \ \"20.188.3.145/32\",\r\n \"20.188.39.126/32\",\r\n \"20.189.109.192/27\",\r\n
+ \ \"20.192.99.224/27\",\r\n \"20.192.165.224/27\",\r\n \"20.192.166.0/25\",\r\n
+ \ \"20.192.230.32/27\",\r\n \"20.192.230.128/25\",\r\n \"20.192.238.0/27\",\r\n
+ \ \"20.193.206.0/27\",\r\n \"20.194.67.96/27\",\r\n \"23.96.222.45/32\",\r\n
+ \ \"23.96.223.89/32\",\r\n \"23.98.86.0/27\",\r\n \"23.98.104.192/27\",\r\n
+ \ \"23.98.106.0/25\",\r\n \"23.99.109.81/32\",\r\n \"23.100.4.253/32\",\r\n
+ \ \"23.100.8.130/32\",\r\n \"23.100.105.192/32\",\r\n \"23.101.29.228/32\",\r\n
+ \ \"23.102.235.31/32\",\r\n \"40.64.132.160/27\",\r\n \"40.64.134.0/25\",\r\n
+ \ \"40.67.51.0/25\",\r\n \"40.67.51.128/27\",\r\n \"40.67.60.128/27\",\r\n
+ \ \"40.69.108.128/27\",\r\n \"40.70.148.128/27\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.74.66.139/32\",\r\n \"40.74.125.44/32\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.76.71.185/32\",\r\n \"40.77.23.107/32\",\r\n
+ \ \"40.78.22.17/32\",\r\n \"40.78.196.96/27\",\r\n \"40.78.204.64/27\",\r\n
+ \ \"40.78.229.128/25\",\r\n \"40.78.238.0/27\",\r\n \"40.78.245.32/27\",\r\n
+ \ \"40.78.251.160/27\",\r\n \"40.79.114.144/32\",\r\n \"40.79.132.128/27\",\r\n
+ \ \"40.79.139.32/27\",\r\n \"40.79.148.0/27\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.79.163.32/27\",\r\n \"40.79.171.128/27\",\r\n \"40.79.180.96/27\",\r\n
+ \ \"40.79.187.224/27\",\r\n \"40.79.195.192/27\",\r\n \"40.80.51.128/27\",\r\n
+ \ \"40.80.62.64/27\",\r\n \"40.80.62.128/25\",\r\n \"40.80.172.64/27\",\r\n
+ \ \"40.80.172.128/25\",\r\n \"40.80.176.64/27\",\r\n \"40.83.177.42/32\",\r\n
+ \ \"40.84.53.157/32\",\r\n \"40.87.138.172/32\",\r\n \"40.87.143.97/32\",\r\n
+ \ \"40.89.20.192/27\",\r\n \"40.89.21.0/25\",\r\n \"40.112.221.188/32\",\r\n
+ \ \"40.112.223.235/32\",\r\n \"40.113.153.50/32\",\r\n \"40.113.176.160/27\",\r\n
+ \ \"40.113.176.192/27\",\r\n \"40.113.177.0/24\",\r\n \"40.114.53.146/32\",\r\n
+ \ \"40.118.27.192/32\",\r\n \"40.119.11.224/27\",\r\n \"40.120.75.160/27\",\r\n
+ \ \"40.127.132.17/32\",\r\n \"51.12.42.32/27\",\r\n \"51.12.42.128/25\",\r\n
+ \ \"51.12.100.64/27\",\r\n \"51.12.194.32/27\",\r\n \"51.12.194.128/25\",\r\n
+ \ \"51.12.204.64/27\",\r\n \"51.12.227.224/27\",\r\n \"51.12.235.224/27\",\r\n
+ \ \"51.104.30.0/25\",\r\n \"51.104.30.128/27\",\r\n \"51.105.69.0/27\",\r\n
+ \ \"51.105.75.192/27\",\r\n \"51.105.91.128/25\",\r\n \"51.105.92.0/27\",\r\n
+ \ \"51.107.51.64/27\",\r\n \"51.107.51.128/25\",\r\n \"51.107.60.96/27\",\r\n
+ \ \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n \"51.107.156.96/27\",\r\n
+ \ \"51.116.49.224/27\",\r\n \"51.116.50.0/25\",\r\n \"51.116.60.96/27\",\r\n
+ \ \"51.116.145.192/27\",\r\n \"51.116.146.0/25\",\r\n \"51.116.158.0/27\",\r\n
+ \ \"51.116.243.160/27\",\r\n \"51.116.251.128/27\",\r\n \"51.120.43.128/25\",\r\n
+ \ \"51.120.44.0/27\",\r\n \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n
+ \ \"51.120.211.224/27\",\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"51.137.164.160/27\",\r\n \"51.137.165.0/25\",\r\n \"51.140.84.251/32\",\r\n
+ \ \"51.140.126.10/32\",\r\n \"51.140.149.32/27\",\r\n \"51.140.212.160/27\",\r\n
+ \ \"51.140.226.207/32\",\r\n \"51.140.240.234/32\",\r\n \"51.141.49.253/32\",\r\n
+ \ \"51.144.118.31/32\",\r\n \"52.136.51.128/25\",\r\n \"52.136.52.0/27\",\r\n
+ \ \"52.136.132.236/32\",\r\n \"52.138.92.96/27\",\r\n \"52.138.229.0/27\",\r\n
+ \ \"52.140.108.160/27\",\r\n \"52.140.109.0/25\",\r\n \"52.147.10.141/32\",\r\n
+ \ \"52.147.10.149/32\",\r\n \"52.150.152.96/27\",\r\n \"52.150.153.128/25\",\r\n
+ \ \"52.151.6.77/32\",\r\n \"52.151.78.51/32\",\r\n \"52.158.236.252/32\",\r\n
+ \ \"52.161.15.247/32\",\r\n \"52.162.111.64/27\",\r\n \"52.163.212.39/32\",\r\n
+ \ \"52.163.215.122/32\",\r\n \"52.167.107.192/27\",\r\n \"52.167.155.89/32\",\r\n
+ \ \"52.168.180.95/32\",\r\n \"52.169.138.222/32\",\r\n \"52.172.203.144/32\",\r\n
+ \ \"52.175.221.106/32\",\r\n \"52.176.4.4/32\",\r\n \"52.176.92.27/32\",\r\n
+ \ \"52.177.196.50/32\",\r\n \"52.178.147.144/32\",\r\n \"52.179.159.231/32\",\r\n
+ \ \"52.180.165.88/32\",\r\n \"52.180.165.248/32\",\r\n \"52.180.177.125/32\",\r\n
+ \ \"52.182.139.224/27\",\r\n \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n
+ \ \"52.225.179.220/32\",\r\n \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n
+ \ \"52.225.187.149/32\",\r\n \"52.228.85.224/27\",\r\n \"52.228.86.0/25\",\r\n
+ \ \"52.231.20.32/27\",\r\n \"52.231.32.236/32\",\r\n \"52.231.148.128/27\",\r\n
+ \ \"52.231.205.15/32\",\r\n \"52.236.189.128/25\",\r\n \"52.237.27.123/32\",\r\n
+ \ \"52.242.31.77/32\",\r\n \"52.246.155.192/27\",\r\n \"52.250.225.32/27\",\r\n
+ \ \"65.52.252.160/27\",\r\n \"102.133.28.160/27\",\r\n \"102.133.59.0/25\",\r\n
+ \ \"102.133.59.128/27\",\r\n \"102.133.124.32/27\",\r\n \"102.133.156.64/27\",\r\n
+ \ \"102.133.218.192/27\",\r\n \"102.133.219.0/25\",\r\n \"102.133.251.128/27\",\r\n
+ \ \"104.40.49.44/32\",\r\n \"104.41.34.180/32\",\r\n \"104.43.252.98/32\",\r\n
+ \ \"104.46.115.237/32\",\r\n \"104.210.105.7/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"104.211.210.195/32\",\r\n \"104.214.34.123/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"157.55.253.43/32\",\r\n \"168.61.54.255/32\",\r\n
+ \ \"168.61.208.218/32\",\r\n \"191.233.11.160/27\",\r\n \"191.233.14.0/25\",\r\n
+ \ \"191.233.54.0/27\",\r\n \"191.233.205.128/27\",\r\n \"191.234.136.128/25\",\r\n
+ \ \"191.234.137.0/27\",\r\n \"191.234.147.224/27\",\r\n \"191.234.155.224/27\",\r\n
+ \ \"207.46.138.102/32\",\r\n \"2603:1000:4:402::300/123\",\r\n
+ \ \"2603:1000:104:402::300/123\",\r\n \"2603:1000:104:802::240/123\",\r\n
+ \ \"2603:1000:104:c02::240/123\",\r\n \"2603:1010:6:402::300/123\",\r\n
+ \ \"2603:1010:6:802::240/123\",\r\n \"2603:1010:6:c02::240/123\",\r\n
+ \ \"2603:1010:101:402::300/123\",\r\n \"2603:1010:304:402::300/123\",\r\n
+ \ \"2603:1010:404:402::300/123\",\r\n \"2603:1020:5:402::300/123\",\r\n
+ \ \"2603:1020:5:802::240/123\",\r\n \"2603:1020:5:c02::240/123\",\r\n
+ \ \"2603:1020:206:402::300/123\",\r\n \"2603:1020:206:802::240/123\",\r\n
+ \ \"2603:1020:206:c02::240/123\",\r\n \"2603:1020:305:402::300/123\",\r\n
+ \ \"2603:1020:405:402::300/123\",\r\n \"2603:1020:605:402::300/123\",\r\n
+ \ \"2603:1020:705:402::300/123\",\r\n \"2603:1020:705:802::240/123\",\r\n
+ \ \"2603:1020:705:c02::240/123\",\r\n \"2603:1020:805:402::300/123\",\r\n
+ \ \"2603:1020:805:802::240/123\",\r\n \"2603:1020:805:c02::240/123\",\r\n
+ \ \"2603:1020:905:402::300/123\",\r\n \"2603:1020:a04:402::300/123\",\r\n
+ \ \"2603:1020:a04:802::240/123\",\r\n \"2603:1020:a04:c02::240/123\",\r\n
+ \ \"2603:1020:b04:402::300/123\",\r\n \"2603:1020:c04:402::300/123\",\r\n
+ \ \"2603:1020:c04:802::240/123\",\r\n \"2603:1020:c04:c02::240/123\",\r\n
+ \ \"2603:1020:d04:402::300/123\",\r\n \"2603:1020:e04:402::300/123\",\r\n
+ \ \"2603:1020:e04:802::240/123\",\r\n \"2603:1020:e04:c02::240/123\",\r\n
+ \ \"2603:1020:f04:402::300/123\",\r\n \"2603:1020:1004:400::480/123\",\r\n
+ \ \"2603:1020:1004:800::100/123\",\r\n \"2603:1020:1004:800::240/123\",\r\n
+ \ \"2603:1020:1004:c02::2a0/123\",\r\n \"2603:1020:1104:400::300/123\",\r\n
+ \ \"2603:1030:f:400::b00/123\",\r\n \"2603:1030:10:402::300/123\",\r\n
+ \ \"2603:1030:10:802::240/123\",\r\n \"2603:1030:10:c02::240/123\",\r\n
+ \ \"2603:1030:104:402::300/123\",\r\n \"2603:1030:107:400::280/123\",\r\n
+ \ \"2603:1030:210:402::300/123\",\r\n \"2603:1030:210:802::240/123\",\r\n
+ \ \"2603:1030:210:c02::240/123\",\r\n \"2603:1030:40b:400::b00/123\",\r\n
+ \ \"2603:1030:40b:800::240/123\",\r\n \"2603:1030:40b:c00::240/123\",\r\n
+ \ \"2603:1030:40c:402::300/123\",\r\n \"2603:1030:40c:802::240/123\",\r\n
+ \ \"2603:1030:40c:c02::240/123\",\r\n \"2603:1030:504:802::100/123\",\r\n
+ \ \"2603:1030:504:c02::2a0/123\",\r\n \"2603:1030:608:402::300/123\",\r\n
+ \ \"2603:1030:807:402::300/123\",\r\n \"2603:1030:807:802::240/123\",\r\n
+ \ \"2603:1030:807:c02::240/123\",\r\n \"2603:1030:a07:402::980/123\",\r\n
+ \ \"2603:1030:b04:402::300/123\",\r\n \"2603:1030:c06:400::b00/123\",\r\n
+ \ \"2603:1030:c06:802::240/123\",\r\n \"2603:1030:c06:c02::240/123\",\r\n
+ \ \"2603:1030:f05:402::300/123\",\r\n \"2603:1030:f05:802::240/123\",\r\n
+ \ \"2603:1030:f05:c02::240/123\",\r\n \"2603:1030:1005:402::300/123\",\r\n
+ \ \"2603:1040:5:402::300/123\",\r\n \"2603:1040:5:802::240/123\",\r\n
+ \ \"2603:1040:5:c02::240/123\",\r\n \"2603:1040:207:402::300/123\",\r\n
+ \ \"2603:1040:407:402::300/123\",\r\n \"2603:1040:407:802::240/123\",\r\n
+ \ \"2603:1040:407:c02::240/123\",\r\n \"2603:1040:606:402::300/123\",\r\n
+ \ \"2603:1040:806:402::300/123\",\r\n \"2603:1040:904:402::300/123\",\r\n
+ \ \"2603:1040:904:802::240/123\",\r\n \"2603:1040:904:c02::240/123\",\r\n
+ \ \"2603:1040:a06:402::300/123\",\r\n \"2603:1040:a06:802::240/123\",\r\n
+ \ \"2603:1040:a06:c02::240/123\",\r\n \"2603:1040:b04:402::300/123\",\r\n
+ \ \"2603:1040:c06:402::300/123\",\r\n \"2603:1040:d04:400::480/123\",\r\n
+ \ \"2603:1040:d04:800::100/123\",\r\n \"2603:1040:d04:800::240/123\",\r\n
+ \ \"2603:1040:d04:c02::2a0/123\",\r\n \"2603:1040:f05:402::300/123\",\r\n
+ \ \"2603:1040:f05:802::240/123\",\r\n \"2603:1040:f05:c02::240/123\",\r\n
+ \ \"2603:1040:1104:400::300/123\",\r\n \"2603:1050:6:402::300/123\",\r\n
+ \ \"2603:1050:6:802::240/123\",\r\n \"2603:1050:6:c02::240/123\",\r\n
+ \ \"2603:1050:403:400::220/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.EastUS\",\r\n \"id\": \"AzureIoTHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.82.93.138/32\",\r\n \"20.49.109.128/25\",\r\n
+ \ \"20.49.110.0/26\",\r\n \"20.49.110.128/25\",\r\n \"40.71.14.128/25\",\r\n
+ \ \"40.76.71.185/32\",\r\n \"40.78.229.128/25\",\r\n \"40.79.156.128/25\",\r\n
+ \ \"40.114.53.146/32\",\r\n \"52.168.180.95/32\",\r\n \"104.211.18.153/32\",\r\n
+ \ \"137.117.83.38/32\",\r\n \"168.61.54.255/32\",\r\n \"2603:1030:210:402::300/123\",\r\n
+ \ \"2603:1030:210:802::240/123\",\r\n \"2603:1030:210:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureIoTHub.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.32/27\",\r\n \"20.39.14.128/25\",\r\n \"40.74.149.0/27\",\r\n
+ \ \"40.75.35.96/27\",\r\n \"40.79.114.144/32\",\r\n \"52.138.92.96/27\",\r\n
+ \ \"52.225.176.167/32\",\r\n \"52.225.177.25/32\",\r\n \"52.225.179.220/32\",\r\n
+ \ \"52.225.180.26/32\",\r\n \"52.225.180.217/32\",\r\n \"52.225.187.149/32\",\r\n
+ \ \"2603:1030:40b:400::b00/123\",\r\n \"2603:1030:40b:800::240/123\",\r\n
+ \ \"2603:1030:40b:c00::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayEast\",\r\n \"id\": \"AzureIoTHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.43.128/25\",\r\n \"51.120.44.0/27\",\r\n
+ \ \"51.120.100.96/27\",\r\n \"51.120.107.224/27\",\r\n \"51.120.211.224/27\",\r\n
+ \ \"2603:1020:e04:402::300/123\",\r\n \"2603:1020:e04:802::240/123\",\r\n
+ \ \"2603:1020:e04:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.NorwayWest\",\r\n \"id\": \"AzureIoTHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.227.128/25\",\r\n \"51.120.228.0/27\",\r\n
+ \ \"2603:1020:f04:402::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.SouthCentralUS\",\r\n \"id\":
+ \"AzureIoTHub.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.0/27\",\r\n
+ \ \"13.73.252.128/25\",\r\n \"13.84.189.6/32\",\r\n \"13.85.68.113/32\",\r\n
+ \ \"20.45.123.128/27\",\r\n \"20.49.91.128/27\",\r\n \"40.119.11.224/27\",\r\n
+ \ \"104.214.34.123/32\",\r\n \"2603:1030:807:402::300/123\",\r\n
+ \ \"2603:1030:807:802::240/123\",\r\n \"2603:1030:807:c02::240/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SouthIndia\",\r\n
+ \ \"id\": \"AzureIoTHub.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.84.34/32\",\r\n
+ \ \"13.71.113.127/32\",\r\n \"20.41.197.64/27\",\r\n \"20.41.197.128/25\",\r\n
+ \ \"40.78.196.96/27\",\r\n \"104.211.210.195/32\",\r\n \"2603:1040:c06:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureIoTHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureIoTHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.64/27\",\r\n \"51.107.147.128/25\",\r\n
+ \ \"51.107.156.96/27\",\r\n \"2603:1020:b04:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureIoTHub.UAENorth\",\r\n
+ \ \"id\": \"AzureIoTHub.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureIoTHub\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.128/25\",\r\n
+ \ \"20.38.140.0/27\",\r\n \"40.120.75.160/27\",\r\n \"65.52.252.160/27\",\r\n
+ \ \"2603:1040:904:402::300/123\",\r\n \"2603:1040:904:802::240/123\",\r\n
+ \ \"2603:1040:904:c02::240/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureIoTHub.WestIndia\",\r\n \"id\": \"AzureIoTHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureIoTHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.128.128/27\",\r\n \"52.136.51.128/25\",\r\n
+ \ \"52.136.52.0/27\",\r\n \"2603:1040:806:402::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault\",\r\n
+ \ \"id\": \"AzureKeyVault\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"13.67.8.104/30\",\r\n \"13.68.24.216/32\",\r\n
+ \ \"13.68.29.203/32\",\r\n \"13.68.104.240/32\",\r\n \"13.69.64.72/30\",\r\n
+ \ \"13.69.227.72/30\",\r\n \"13.70.72.24/30\",\r\n \"13.70.138.129/32\",\r\n
+ \ \"13.71.170.40/30\",\r\n \"13.71.194.112/30\",\r\n \"13.72.250.239/32\",\r\n
+ \ \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n \"13.75.34.144/30\",\r\n
+ \ \"13.77.50.64/30\",\r\n \"13.78.106.88/30\",\r\n \"13.80.247.19/32\",\r\n
+ \ \"13.80.247.42/32\",\r\n \"13.84.174.143/32\",\r\n \"13.87.34.51/32\",\r\n
+ \ \"13.87.39.0/32\",\r\n \"13.87.56.80/30\",\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"13.89.61.248/32\",\r\n
+ \ \"13.89.170.200/30\",\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n
+ \ \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.36.114.16/30\",\r\n \"20.37.74.228/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.44.2.0/30\",\r\n \"20.45.90.72/29\",\r\n
+ \ \"20.45.90.80/30\",\r\n \"20.45.117.32/29\",\r\n \"20.45.117.40/30\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"20.48.197.104/29\",\r\n
+ \ \"20.48.197.112/30\",\r\n \"20.49.82.0/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.49.119.232/29\",\r\n \"20.49.119.240/28\",\r\n
+ \ \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n \"20.51.20.84/30\",\r\n
+ \ \"20.51.21.64/29\",\r\n \"20.52.88.144/29\",\r\n \"20.52.88.152/30\",\r\n
+ \ \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n \"20.53.48.40/29\",\r\n
+ \ \"20.53.49.96/30\",\r\n \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n
+ \ \"20.58.67.48/29\",\r\n \"20.58.67.56/30\",\r\n \"20.61.103.224/29\",\r\n
+ \ \"20.61.103.232/30\",\r\n \"20.62.60.128/27\",\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"20.66.2.28/30\",\r\n \"20.66.5.128/29\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"20.72.21.148/30\",\r\n \"20.72.21.192/29\",\r\n
+ \ \"20.72.26.0/30\",\r\n \"20.150.170.0/30\",\r\n \"20.150.181.28/30\",\r\n
+ \ \"20.150.181.164/30\",\r\n \"20.150.189.32/30\",\r\n \"20.150.244.36/30\",\r\n
+ \ \"20.150.245.56/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"20.186.41.83/32\",\r\n \"20.186.47.182/32\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n \"20.191.166.120/29\",\r\n
+ \ \"20.191.167.128/30\",\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"20.192.50.216/29\",\r\n \"20.192.50.224/30\",\r\n \"20.192.80.48/29\",\r\n
+ \ \"20.192.80.56/30\",\r\n \"20.192.234.0/30\",\r\n \"20.193.194.44/30\",\r\n
+ \ \"20.193.194.80/29\",\r\n \"20.193.202.0/30\",\r\n \"20.194.66.0/30\",\r\n
+ \ \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"20.195.74.168/29\",\r\n \"20.195.74.176/30\",\r\n
+ \ \"20.195.146.68/30\",\r\n \"20.195.146.192/29\",\r\n \"23.96.210.207/32\",\r\n
+ \ \"23.96.250.48/32\",\r\n \"23.97.50.43/32\",\r\n \"23.97.120.25/32\",\r\n
+ \ \"23.97.120.29/32\",\r\n \"23.97.120.39/32\",\r\n \"23.97.120.57/32\",\r\n
+ \ \"23.97.178.0/32\",\r\n \"23.99.132.207/32\",\r\n \"23.100.57.24/32\",\r\n
+ \ \"23.100.58.149/32\",\r\n \"23.101.21.103/32\",\r\n \"23.101.21.193/32\",\r\n
+ \ \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n \"23.101.159.107/32\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"40.65.188.244/32\",\r\n
+ \ \"40.65.189.219/32\",\r\n \"40.67.53.184/29\",\r\n \"40.67.53.224/30\",\r\n
+ \ \"40.67.58.0/30\",\r\n \"40.69.106.64/30\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.74.100.48/30\",\r\n \"40.76.196.75/32\",\r\n
+ \ \"40.76.212.37/32\",\r\n \"40.78.194.64/30\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"40.79.130.40/30\",\r\n \"40.79.163.156/30\",\r\n
+ \ \"40.79.173.4/30\",\r\n \"40.79.178.64/30\",\r\n \"40.84.47.24/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.85.229.9/32\",\r\n \"40.85.231.231/32\",\r\n
+ \ \"40.86.224.94/32\",\r\n \"40.86.231.180/32\",\r\n \"40.87.69.184/32\",\r\n
+ \ \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n \"40.89.180.10/32\",\r\n
+ \ \"40.89.180.25/32\",\r\n \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n
+ \ \"40.112.242.144/30\",\r\n \"40.117.157.122/32\",\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"40.124.64.128/30\",\r\n
+ \ \"51.12.17.232/29\",\r\n \"51.12.17.240/30\",\r\n \"51.12.25.204/30\",\r\n
+ \ \"51.12.28.32/29\",\r\n \"51.12.98.0/30\",\r\n \"51.12.202.0/30\",\r\n
+ \ \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.107.58.0/30\",\r\n \"51.107.154.0/30\",\r\n \"51.107.241.116/30\",\r\n
+ \ \"51.107.242.248/29\",\r\n \"51.107.250.44/30\",\r\n \"51.107.251.104/29\",\r\n
+ \ \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n \"51.116.58.0/30\",\r\n
+ \ \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n \"51.116.251.188/30\",\r\n
+ \ \"51.120.98.8/30\",\r\n \"51.120.218.0/30\",\r\n \"51.120.233.132/30\",\r\n
+ \ \"51.120.234.128/29\",\r\n \"51.138.210.132/30\",\r\n \"51.138.211.8/29\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n \"51.143.6.21/32\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n \"52.147.113.72/29\",\r\n
+ \ \"52.147.113.80/30\",\r\n \"52.148.84.142/32\",\r\n \"52.148.84.145/32\",\r\n
+ \ \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n
+ \ \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n \"52.161.31.139/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.169.232.147/32\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.175.236.86/32\",\r\n \"52.176.48.58/32\",\r\n
+ \ \"52.176.254.165/32\",\r\n \"52.177.71.51/32\",\r\n \"52.180.176.121/32\",\r\n
+ \ \"52.180.176.122/32\",\r\n \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n
+ \ \"52.183.93.92/32\",\r\n \"52.183.94.166/32\",\r\n \"52.184.155.181/32\",\r\n
+ \ \"52.184.158.37/32\",\r\n \"52.184.164.12/32\",\r\n \"52.187.161.13/32\",\r\n
+ \ \"52.187.163.139/32\",\r\n \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n
+ \ \"52.225.188.225/32\",\r\n \"52.225.191.36/32\",\r\n \"52.225.218.218/32\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"52.237.253.194/32\",\r\n \"52.246.157.4/30\",\r\n \"52.247.193.69/32\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"65.52.250.0/30\",\r\n \"102.37.81.88/29\",\r\n \"102.37.81.128/30\",\r\n
+ \ \"102.37.160.176/29\",\r\n \"102.37.160.184/30\",\r\n \"102.133.26.0/30\",\r\n
+ \ \"102.133.124.140/30\",\r\n \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n
+ \ \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.42.6.91/32\",\r\n \"104.42.136.180/32\",\r\n
+ \ \"104.43.161.34/32\",\r\n \"104.43.192.26/32\",\r\n \"104.44.136.42/32\",\r\n
+ \ \"104.46.40.31/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n \"104.208.26.47/32\",\r\n
+ \ \"104.210.195.61/32\",\r\n \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n
+ \ \"104.211.99.174/32\",\r\n \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n
+ \ \"104.211.167.57/32\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"104.214.18.168/30\",\r\n
+ \ \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n \"104.215.94.76/32\",\r\n
+ \ \"104.215.99.117/32\",\r\n \"104.215.139.166/32\",\r\n
+ \ \"104.215.140.132/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"168.62.108.27/32\",\r\n \"168.62.237.29/32\",\r\n \"168.63.167.27/32\",\r\n
+ \ \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n \"191.233.50.0/30\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1000:4::2a0/125\",\r\n \"2603:1000:4:402::80/125\",\r\n
+ \ \"2603:1000:104::660/125\",\r\n \"2603:1000:104:402::80/125\",\r\n
+ \ \"2603:1000:104:802::80/125\",\r\n \"2603:1000:104:c02::80/125\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\",\r\n
+ \ \"2603:1010:304::2a0/125\",\r\n \"2603:1010:304:402::80/125\",\r\n
+ \ \"2603:1010:404::2a0/125\",\r\n \"2603:1010:404:402::80/125\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\",\r\n
+ \ \"2603:1020:206::340/125\",\r\n \"2603:1020:206:402::80/125\",\r\n
+ \ \"2603:1020:206:802::80/125\",\r\n \"2603:1020:206:c02::80/125\",\r\n
+ \ \"2603:1020:305:402::80/125\",\r\n \"2603:1020:405:402::80/125\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\",\r\n
+ \ \"2603:1020:805::340/125\",\r\n \"2603:1020:805:402::80/125\",\r\n
+ \ \"2603:1020:805:802::80/125\",\r\n \"2603:1020:805:c02::80/125\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\",\r\n
+ \ \"2603:1020:a04::340/125\",\r\n \"2603:1020:a04:402::80/125\",\r\n
+ \ \"2603:1020:a04:802::80/125\",\r\n \"2603:1020:a04:c02::80/125\",\r\n
+ \ \"2603:1020:b04::2a0/125\",\r\n \"2603:1020:b04:402::80/125\",\r\n
+ \ \"2603:1020:c04::340/125\",\r\n \"2603:1020:c04:402::80/125\",\r\n
+ \ \"2603:1020:c04:802::80/125\",\r\n \"2603:1020:c04:c02::80/125\",\r\n
+ \ \"2603:1020:d04::2a0/125\",\r\n \"2603:1020:d04:402::80/125\",\r\n
+ \ \"2603:1020:e04::340/125\",\r\n \"2603:1020:e04:402::80/125\",\r\n
+ \ \"2603:1020:e04:802::80/125\",\r\n \"2603:1020:e04:c02::80/125\",\r\n
+ \ \"2603:1020:f04::2a0/125\",\r\n \"2603:1020:f04:402::80/125\",\r\n
+ \ \"2603:1020:1004:1::1f8/125\",\r\n \"2603:1020:1004:400::80/125\",\r\n
+ \ \"2603:1020:1004:400::2f8/125\",\r\n \"2603:1020:1004:800::140/125\",\r\n
+ \ \"2603:1020:1104:1::158/125\",\r\n \"2603:1020:1104:400::80/125\",\r\n
+ \ \"2603:1030:f:1::2a0/125\",\r\n \"2603:1030:f:400::880/125\",\r\n
+ \ \"2603:1030:10::340/125\",\r\n \"2603:1030:10:402::80/125\",\r\n
+ \ \"2603:1030:10:802::80/125\",\r\n \"2603:1030:10:c02::80/125\",\r\n
+ \ \"2603:1030:104::340/125\",\r\n \"2603:1030:104:402::80/125\",\r\n
+ \ \"2603:1030:107::738/125\",\r\n \"2603:1030:107:400::/125\",\r\n
+ \ \"2603:1030:107:400::10/125\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\",\r\n \"2603:1030:40c::340/125\",\r\n
+ \ \"2603:1030:40c:402::80/125\",\r\n \"2603:1030:40c:802::80/125\",\r\n
+ \ \"2603:1030:40c:c02::80/125\",\r\n \"2603:1030:504::1f8/125\",\r\n
+ \ \"2603:1030:504:402::80/125\",\r\n \"2603:1030:504:402::2f8/125\",\r\n
+ \ \"2603:1030:504:802::140/125\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\",\r\n \"2603:1030:807::340/125\",\r\n
+ \ \"2603:1030:807:402::80/125\",\r\n \"2603:1030:807:802::80/125\",\r\n
+ \ \"2603:1030:807:c02::80/125\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\",\r\n \"2603:1030:1005::2a0/125\",\r\n
+ \ \"2603:1030:1005:402::80/125\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\",\r\n \"2603:1040:207::2a0/125\",\r\n
+ \ \"2603:1040:207:402::80/125\",\r\n \"2603:1040:407::340/125\",\r\n
+ \ \"2603:1040:407:402::80/125\",\r\n \"2603:1040:407:802::80/125\",\r\n
+ \ \"2603:1040:407:c02::80/125\",\r\n \"2603:1040:606::2a0/125\",\r\n
+ \ \"2603:1040:606:402::80/125\",\r\n \"2603:1040:806::2a0/125\",\r\n
+ \ \"2603:1040:806:402::80/125\",\r\n \"2603:1040:904::340/125\",\r\n
+ \ \"2603:1040:904:402::80/125\",\r\n \"2603:1040:904:802::80/125\",\r\n
+ \ \"2603:1040:904:c02::80/125\",\r\n \"2603:1040:a06::440/125\",\r\n
+ \ \"2603:1040:a06:402::80/125\",\r\n \"2603:1040:a06:802::80/125\",\r\n
+ \ \"2603:1040:a06:c02::80/125\",\r\n \"2603:1040:b04::2a0/125\",\r\n
+ \ \"2603:1040:b04:402::80/125\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\",\r\n \"2603:1040:d04:1::1f8/125\",\r\n
+ \ \"2603:1040:d04:400::80/125\",\r\n \"2603:1040:d04:400::2f8/125\",\r\n
+ \ \"2603:1040:d04:800::140/125\",\r\n \"2603:1040:e05::20/125\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\",\r\n
+ \ \"2603:1040:1104:1::158/125\",\r\n \"2603:1040:1104:400::80/125\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\",\r\n
+ \ \"2603:1050:403:1::220/125\",\r\n \"2603:1050:403:400::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.40.39/32\",\r\n \"20.36.40.42/32\",\r\n \"20.36.106.64/30\",\r\n
+ \ \"20.53.48.40/29\",\r\n \"20.53.49.96/30\",\r\n \"2603:1010:304::2a0/125\",\r\n
+ \ \"2603:1010:304:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaCentral2\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.72.34/32\",\r\n \"20.36.72.38/32\",\r\n \"20.36.114.16/30\",\r\n
+ \ \"20.53.57.40/29\",\r\n \"20.53.57.48/30\",\r\n \"2603:1010:404::2a0/125\",\r\n
+ \ \"2603:1010:404:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.AustraliaEast\",\r\n \"id\":
+ \"AzureKeyVault.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.24/30\",\r\n
+ \ \"13.72.250.239/32\",\r\n \"20.53.47.68/30\",\r\n \"20.53.47.200/29\",\r\n
+ \ \"40.79.163.156/30\",\r\n \"40.79.173.4/30\",\r\n \"52.237.253.194/32\",\r\n
+ \ \"2603:1010:6::340/125\",\r\n \"2603:1010:6:402::80/125\",\r\n
+ \ \"2603:1010:6:802::80/125\",\r\n \"2603:1010:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureKeyVault.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.138.129/32\",\r\n \"13.77.50.64/30\",\r\n
+ \ \"52.255.63.107/32\",\r\n \"104.46.179.244/30\",\r\n \"104.46.183.152/29\",\r\n
+ \ \"2603:1010:101::2a0/125\",\r\n \"2603:1010:101:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.BrazilSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.0.141/32\",\r\n \"104.41.1.239/32\",\r\n
+ \ \"191.233.203.24/30\",\r\n \"191.234.149.140/30\",\r\n
+ \ \"191.234.157.44/30\",\r\n \"191.238.72.76/30\",\r\n \"191.238.72.152/29\",\r\n
+ \ \"2603:1050:6::340/125\",\r\n \"2603:1050:6:402::80/125\",\r\n
+ \ \"2603:1050:6:802::80/125\",\r\n \"2603:1050:6:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CanadaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.40/30\",\r\n \"20.38.149.196/30\",\r\n
+ \ \"20.48.197.104/29\",\r\n \"20.48.197.112/30\",\r\n \"40.85.229.9/32\",\r\n
+ \ \"40.85.231.231/32\",\r\n \"52.246.157.4/30\",\r\n \"2603:1030:f05::340/125\",\r\n
+ \ \"2603:1030:f05:402::80/125\",\r\n \"2603:1030:f05:802::80/125\",\r\n
+ \ \"2603:1030:f05:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CanadaEast\",\r\n \"id\": \"AzureKeyVault.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureKeyVault\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.69.106.64/30\",\r\n \"40.86.224.94/32\",\r\n
+ \ \"40.86.231.180/32\",\r\n \"52.139.107.208/29\",\r\n \"52.139.107.216/30\",\r\n
+ \ \"2603:1030:1005::2a0/125\",\r\n \"2603:1030:1005:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralIndia\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n \"VSE\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.44.112/29\",\r\n \"20.192.44.120/30\",\r\n
+ \ \"104.211.81.24/30\",\r\n \"104.211.98.11/32\",\r\n \"104.211.99.174/32\",\r\n
+ \ \"2603:1040:a06::440/125\",\r\n \"2603:1040:a06:402::80/125\",\r\n
+ \ \"2603:1040:a06:802::80/125\",\r\n \"2603:1040:a06:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.CentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.61.248/32\",\r\n \"13.89.170.200/30\",\r\n
+ \ \"20.40.230.32/28\",\r\n \"20.40.230.48/29\",\r\n \"23.99.132.207/32\",\r\n
+ \ \"52.154.176.47/32\",\r\n \"52.154.177.179/32\",\r\n \"52.165.21.159/32\",\r\n
+ \ \"52.165.208.47/32\",\r\n \"52.173.90.250/32\",\r\n \"52.173.199.154/32\",\r\n
+ \ \"52.173.216.55/32\",\r\n \"52.176.48.58/32\",\r\n \"104.43.161.34/32\",\r\n
+ \ \"104.43.192.26/32\",\r\n \"104.208.26.47/32\",\r\n \"2603:1030:10::340/125\",\r\n
+ \ \"2603:1030:10:402::80/125\",\r\n \"2603:1030:10:802::80/125\",\r\n
+ \ \"2603:1030:10:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.CentralUSEUAP\",\r\n \"id\":
+ \"AzureKeyVault.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.45.208.8/30\",\r\n
+ \ \"20.46.11.248/29\",\r\n \"20.46.12.192/30\",\r\n \"52.176.254.165/32\",\r\n
+ \ \"52.180.176.121/32\",\r\n \"52.180.176.122/32\",\r\n \"2603:1030:f:1::2a0/125\",\r\n
+ \ \"2603:1030:f:400::880/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastAsia\",\r\n \"id\": \"AzureKeyVault.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.144/30\",\r\n \"20.195.74.168/29\",\r\n
+ \ \"20.195.74.176/30\",\r\n \"168.63.219.200/32\",\r\n \"168.63.219.205/32\",\r\n
+ \ \"2603:1040:207::2a0/125\",\r\n \"2603:1040:207:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.62.134.76/30\",\r\n
+ \ \"20.62.134.224/29\",\r\n \"20.185.217.251/32\",\r\n \"20.185.218.1/32\",\r\n
+ \ \"40.71.10.200/30\",\r\n \"40.76.196.75/32\",\r\n \"40.76.212.37/32\",\r\n
+ \ \"40.85.185.208/32\",\r\n \"40.87.69.184/32\",\r\n \"40.117.157.122/32\",\r\n
+ \ \"52.168.109.101/32\",\r\n \"52.255.152.252/32\",\r\n \"52.255.152.255/32\",\r\n
+ \ \"137.116.120.244/32\",\r\n \"2603:1030:210::340/125\",\r\n
+ \ \"2603:1030:210:402::80/125\",\r\n \"2603:1030:210:802::80/125\",\r\n
+ \ \"2603:1030:210:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.EastUS2\",\r\n \"id\": \"AzureKeyVault.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.24.216/32\",\r\n \"13.68.29.203/32\",\r\n
+ \ \"13.68.104.240/32\",\r\n \"20.62.60.128/27\",\r\n \"20.186.41.83/32\",\r\n
+ \ \"20.186.47.182/32\",\r\n \"23.101.159.107/32\",\r\n \"40.70.146.72/30\",\r\n
+ \ \"40.70.186.91/32\",\r\n \"40.70.204.6/32\",\r\n \"40.70.204.32/32\",\r\n
+ \ \"40.84.47.24/32\",\r\n \"52.167.143.179/32\",\r\n \"52.167.228.54/32\",\r\n
+ \ \"52.177.71.51/32\",\r\n \"52.184.155.181/32\",\r\n \"52.184.158.37/32\",\r\n
+ \ \"52.184.164.12/32\",\r\n \"52.225.218.218/32\",\r\n \"137.116.44.148/32\",\r\n
+ \ \"2603:1030:40c::340/125\",\r\n \"2603:1030:40c:402::80/125\",\r\n
+ \ \"2603:1030:40c:802::80/125\",\r\n \"2603:1030:40c:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureKeyVault.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.51.20.84/30\",\r\n \"20.51.21.64/29\",\r\n \"40.79.118.1/32\",\r\n
+ \ \"40.79.118.5/32\",\r\n \"52.138.73.5/32\",\r\n \"52.138.73.51/32\",\r\n
+ \ \"52.225.179.130/32\",\r\n \"52.225.182.225/32\",\r\n \"52.225.188.225/32\",\r\n
+ \ \"52.225.191.36/32\",\r\n \"2603:1030:40b:2::220/125\",\r\n
+ \ \"2603:1030:40b:400::880/125\",\r\n \"2603:1030:40b:800::80/125\",\r\n
+ \ \"2603:1030:40b:c00::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceCentral\",\r\n \"id\":
+ \"AzureKeyVault.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.43.56.38/32\",\r\n
+ \ \"20.43.56.66/32\",\r\n \"20.188.40.44/32\",\r\n \"20.188.40.46/32\",\r\n
+ \ \"40.79.130.40/30\",\r\n \"40.89.145.89/32\",\r\n \"40.89.145.93/32\",\r\n
+ \ \"40.89.180.10/32\",\r\n \"40.89.180.25/32\",\r\n \"51.138.210.132/30\",\r\n
+ \ \"51.138.211.8/29\",\r\n \"2603:1020:805::340/125\",\r\n
+ \ \"2603:1020:805:402::80/125\",\r\n \"2603:1020:805:802::80/125\",\r\n
+ \ \"2603:1020:805:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.FranceSouth\",\r\n \"id\": \"AzureKeyVault.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.64/30\",\r\n \"52.136.136.15/32\",\r\n
+ \ \"52.136.136.16/32\",\r\n \"52.136.184.236/30\",\r\n \"52.136.185.176/29\",\r\n
+ \ \"2603:1020:905::2a0/125\",\r\n \"2603:1020:905:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.GermanyNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.54.76/30\",\r\n \"51.116.55.88/29\",\r\n
+ \ \"51.116.58.0/30\",\r\n \"2603:1020:d04::2a0/125\",\r\n
+ \ \"2603:1020:d04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.GermanyWestCentral\",\r\n \"id\":
+ \"AzureKeyVault.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.52.88.144/29\",\r\n
+ \ \"20.52.88.152/30\",\r\n \"51.116.154.64/30\",\r\n \"51.116.243.220/30\",\r\n
+ \ \"51.116.251.188/30\",\r\n \"2603:1020:c04::340/125\",\r\n
+ \ \"2603:1020:c04:402::80/125\",\r\n \"2603:1020:c04:802::80/125\",\r\n
+ \ \"2603:1020:c04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.JapanEast\",\r\n \"id\": \"AzureKeyVault.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.88/30\",\r\n \"20.188.2.148/32\",\r\n
+ \ \"20.188.2.156/32\",\r\n \"20.191.166.120/29\",\r\n \"20.191.167.128/30\",\r\n
+ \ \"23.102.72.114/32\",\r\n \"23.102.75.18/32\",\r\n \"104.41.162.219/32\",\r\n
+ \ \"104.41.162.228/32\",\r\n \"104.46.219.151/32\",\r\n \"104.46.219.184/32\",\r\n
+ \ \"2603:1040:407::340/125\",\r\n \"2603:1040:407:402::80/125\",\r\n
+ \ \"2603:1040:407:802::80/125\",\r\n \"2603:1040:407:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.JapanWest\",\r\n
+ \ \"id\": \"AzureKeyVault.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.228.136/29\",\r\n \"20.189.228.208/30\",\r\n
+ \ \"40.74.100.48/30\",\r\n \"104.215.18.67/32\",\r\n \"104.215.31.67/32\",\r\n
+ \ \"2603:1040:606::2a0/125\",\r\n \"2603:1040:606:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaCentral\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.194.66.0/30\",\r\n \"20.194.74.80/29\",\r\n \"20.194.74.88/30\",\r\n
+ \ \"52.231.18.40/30\",\r\n \"52.231.32.65/32\",\r\n \"52.231.32.66/32\",\r\n
+ \ \"2603:1040:f05::340/125\",\r\n \"2603:1040:f05:402::80/125\",\r\n
+ \ \"2603:1040:f05:802::80/125\",\r\n \"2603:1040:f05:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.KoreaSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.113.72/29\",\r\n \"52.147.113.80/30\",\r\n
+ \ \"52.231.146.80/30\",\r\n \"52.231.200.107/32\",\r\n \"52.231.200.108/32\",\r\n
+ \ \"2603:1040:e05::20/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.232/29\",\r\n
+ \ \"20.49.119.240/28\",\r\n \"23.96.210.207/32\",\r\n \"23.96.250.48/32\",\r\n
+ \ \"52.162.106.144/30\",\r\n \"52.162.255.194/32\",\r\n \"168.62.108.27/32\",\r\n
+ \ \"168.62.237.29/32\",\r\n \"2603:1030:608::2a0/125\",\r\n
+ \ \"2603:1030:608:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorthEurope\",\r\n \"id\": \"AzureKeyVault.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.72/30\",\r\n \"13.74.10.39/32\",\r\n \"13.74.10.113/32\",\r\n
+ \ \"23.100.57.24/32\",\r\n \"23.100.58.149/32\",\r\n \"52.138.160.103/32\",\r\n
+ \ \"52.138.160.105/32\",\r\n \"52.146.137.68/30\",\r\n \"52.146.137.168/29\",\r\n
+ \ \"52.169.232.147/32\",\r\n \"137.116.233.191/32\",\r\n
+ \ \"2603:1020:5::340/125\",\r\n \"2603:1020:5:402::80/125\",\r\n
+ \ \"2603:1020:5:802::80/125\",\r\n \"2603:1020:5:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.NorwayEast\",\r\n
+ \ \"id\": \"AzureKeyVault.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.120.98.8/30\",\r\n
+ \ \"51.120.233.132/30\",\r\n \"51.120.234.128/29\",\r\n \"2603:1020:e04::340/125\",\r\n
+ \ \"2603:1020:e04:402::80/125\",\r\n \"2603:1020:e04:802::80/125\",\r\n
+ \ \"2603:1020:e04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.NorwayWest\",\r\n \"id\": \"AzureKeyVault.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.188/30\",\r\n \"51.13.137.216/29\",\r\n
+ \ \"51.120.218.0/30\",\r\n \"2603:1020:f04::2a0/125\",\r\n
+ \ \"2603:1020:f04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.176/29\",\r\n
+ \ \"102.37.160.184/30\",\r\n \"102.133.124.140/30\",\r\n
+ \ \"102.133.154.0/30\",\r\n \"102.133.251.220/30\",\r\n \"2603:1000:104::660/125\",\r\n
+ \ \"2603:1000:104:402::80/125\",\r\n \"2603:1000:104:802::80/125\",\r\n
+ \ \"2603:1000:104:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthAfricaWest\",\r\n \"id\":
+ \"AzureKeyVault.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"102.37.81.88/29\",\r\n
+ \ \"102.37.81.128/30\",\r\n \"102.133.26.0/30\",\r\n \"2603:1000:4::2a0/125\",\r\n
+ \ \"2603:1000:4:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthCentralUS\",\r\n \"id\":
+ \"AzureKeyVault.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.84.174.143/32\",\r\n
+ \ \"20.45.123.240/30\",\r\n \"20.45.123.252/30\",\r\n \"20.49.90.0/30\",\r\n
+ \ \"20.49.91.232/30\",\r\n \"20.65.134.48/28\",\r\n \"20.65.134.64/29\",\r\n
+ \ \"40.124.64.128/30\",\r\n \"104.44.136.42/32\",\r\n \"104.210.195.61/32\",\r\n
+ \ \"104.214.18.168/30\",\r\n \"104.215.94.76/32\",\r\n \"104.215.99.117/32\",\r\n
+ \ \"2603:1030:807::340/125\",\r\n \"2603:1030:807:402::80/125\",\r\n
+ \ \"2603:1030:807:802::80/125\",\r\n \"2603:1030:807:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.SoutheastAsia\",\r\n
+ \ \"id\": \"AzureKeyVault.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.104/30\",\r\n \"20.195.67.192/29\",\r\n
+ \ \"20.195.67.200/30\",\r\n \"23.97.50.43/32\",\r\n \"23.101.21.103/32\",\r\n
+ \ \"23.101.21.193/32\",\r\n \"23.101.23.190/32\",\r\n \"23.101.23.192/32\",\r\n
+ \ \"40.65.188.244/32\",\r\n \"40.65.189.219/32\",\r\n \"52.148.84.142/32\",\r\n
+ \ \"52.148.84.145/32\",\r\n \"52.187.161.13/32\",\r\n \"52.187.163.139/32\",\r\n
+ \ \"104.215.139.166/32\",\r\n \"104.215.140.132/32\",\r\n
+ \ \"168.63.167.27/32\",\r\n \"2603:1040:5::440/125\",\r\n
+ \ \"2603:1040:5:402::80/125\",\r\n \"2603:1040:5:802::80/125\",\r\n
+ \ \"2603:1040:5:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SouthIndia\",\r\n \"id\": \"AzureKeyVault.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.64/30\",\r\n \"52.172.116.4/30\",\r\n
+ \ \"52.172.116.136/29\",\r\n \"104.211.224.186/32\",\r\n
+ \ \"104.211.225.134/32\",\r\n \"2603:1040:c06::2a0/125\",\r\n
+ \ \"2603:1040:c06:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.107.58.0/30\",\r\n
+ \ \"51.107.241.116/30\",\r\n \"51.107.242.248/29\",\r\n \"2603:1020:a04::340/125\",\r\n
+ \ \"2603:1020:a04:402::80/125\",\r\n \"2603:1020:a04:802::80/125\",\r\n
+ \ \"2603:1020:a04:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.SwitzerlandWest\",\r\n \"id\":
+ \"AzureKeyVault.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.0/30\",\r\n \"51.107.250.44/30\",\r\n
+ \ \"51.107.251.104/29\",\r\n \"2603:1020:b04::2a0/125\",\r\n
+ \ \"2603:1020:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.UAECentral\",\r\n \"id\": \"AzureKeyVault.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.228/30\",\r\n \"20.45.90.72/29\",\r\n \"20.45.90.80/30\",\r\n
+ \ \"2603:1040:b04::2a0/125\",\r\n \"2603:1040:b04:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UAENorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"40.120.74.0/30\",\r\n
+ \ \"40.120.82.104/29\",\r\n \"40.120.82.112/30\",\r\n \"65.52.250.0/30\",\r\n
+ \ \"2603:1040:904::340/125\",\r\n \"2603:1040:904:402::80/125\",\r\n
+ \ \"2603:1040:904:802::80/125\",\r\n \"2603:1040:904:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKNorth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"13.87.101.60/32\",\r\n
+ \ \"13.87.101.111/32\",\r\n \"13.87.122.80/30\",\r\n \"2603:1020:305:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKSouth\",\r\n
+ \ \"id\": \"AzureKeyVault.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"51.104.192.129/32\",\r\n
+ \ \"51.104.192.138/32\",\r\n \"51.105.4.67/32\",\r\n \"51.105.4.75/32\",\r\n
+ \ \"51.140.146.56/30\",\r\n \"51.140.157.60/32\",\r\n \"51.140.184.38/31\",\r\n
+ \ \"51.143.212.184/29\",\r\n \"51.143.213.192/30\",\r\n \"52.151.75.86/32\",\r\n
+ \ \"2603:1020:705::340/125\",\r\n \"2603:1020:705:402::80/125\",\r\n
+ \ \"2603:1020:705:802::80/125\",\r\n \"2603:1020:705:c02::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.UKWest\",\r\n
+ \ \"id\": \"AzureKeyVault.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.58.67.48/29\",\r\n
+ \ \"20.58.67.56/30\",\r\n \"51.140.210.80/30\",\r\n \"51.141.8.42/31\",\r\n
+ \ \"2603:1020:605::2a0/125\",\r\n \"2603:1020:605:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestCentralUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.112/30\",\r\n \"20.69.1.104/29\",\r\n
+ \ \"20.69.1.112/30\",\r\n \"52.161.25.42/32\",\r\n \"52.161.31.136/32\",\r\n
+ \ \"52.161.31.139/32\",\r\n \"2603:1030:b04::2a0/125\",\r\n
+ \ \"2603:1030:b04:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestEurope\",\r\n \"id\": \"AzureKeyVault.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.72/30\",\r\n \"13.80.247.19/32\",\r\n \"13.80.247.42/32\",\r\n
+ \ \"20.61.103.224/29\",\r\n \"20.61.103.232/30\",\r\n \"23.97.178.0/32\",\r\n
+ \ \"40.91.193.78/32\",\r\n \"40.91.199.213/32\",\r\n \"52.157.162.137/32\",\r\n
+ \ \"52.157.162.147/32\",\r\n \"104.46.40.31/32\",\r\n \"2603:1020:206::340/125\",\r\n
+ \ \"2603:1020:206:402::80/125\",\r\n \"2603:1020:206:802::80/125\",\r\n
+ \ \"2603:1020:206:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestIndia\",\r\n \"id\": \"AzureKeyVault.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.80.48/29\",\r\n \"20.192.80.56/30\",\r\n
+ \ \"104.211.146.64/30\",\r\n \"104.211.166.82/32\",\r\n \"104.211.167.57/32\",\r\n
+ \ \"2603:1040:806::2a0/125\",\r\n \"2603:1040:806:402::80/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureKeyVault.WestUS\",\r\n
+ \ \"id\": \"AzureKeyVault.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureKeyVault\",\r\n \"addressPrefixes\": [\r\n \"20.66.2.28/30\",\r\n
+ \ \"20.66.5.128/29\",\r\n \"40.112.242.144/30\",\r\n \"104.42.6.91/32\",\r\n
+ \ \"104.42.136.180/32\",\r\n \"2603:1030:a07::2a0/125\",\r\n
+ \ \"2603:1030:a07:402::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureKeyVault.WestUS2\",\r\n \"id\": \"AzureKeyVault.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureKeyVault\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.88/30\",\r\n \"13.66.226.249/32\",\r\n
+ \ \"13.66.230.241/32\",\r\n \"20.51.12.248/29\",\r\n \"20.51.13.64/30\",\r\n
+ \ \"51.143.6.21/32\",\r\n \"52.151.41.92/32\",\r\n \"52.151.47.4/32\",\r\n
+ \ \"52.158.236.253/32\",\r\n \"52.158.239.35/32\",\r\n \"52.175.236.86/32\",\r\n
+ \ \"52.183.24.22/32\",\r\n \"52.183.80.133/32\",\r\n \"52.183.93.92/32\",\r\n
+ \ \"52.183.94.166/32\",\r\n \"52.247.193.69/32\",\r\n \"2603:1030:c06:2::220/125\",\r\n
+ \ \"2603:1030:c06:400::880/125\",\r\n \"2603:1030:c06:802::80/125\",\r\n
+ \ \"2603:1030:c06:c02::80/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning\",\r\n \"id\": \"AzureMachineLearning\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.87.135/32\",\r\n \"13.66.140.80/28\",\r\n
+ \ \"13.67.8.224/28\",\r\n \"13.69.64.192/28\",\r\n \"13.69.106.192/28\",\r\n
+ \ \"13.69.227.192/28\",\r\n \"13.70.72.144/28\",\r\n \"13.71.170.192/28\",\r\n
+ \ \"13.71.173.80/28\",\r\n \"13.71.194.240/28\",\r\n \"13.73.240.16/28\",\r\n
+ \ \"13.73.240.112/28\",\r\n \"13.73.240.240/28\",\r\n \"13.73.248.96/28\",\r\n
+ \ \"13.74.107.160/28\",\r\n \"13.75.36.16/28\",\r\n \"13.77.50.224/28\",\r\n
+ \ \"13.78.106.208/28\",\r\n \"13.86.195.35/32\",\r\n \"13.87.56.112/28\",\r\n
+ \ \"13.87.122.112/28\",\r\n \"13.87.160.129/32\",\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.36.106.80/28\",\r\n \"20.36.114.160/28\",\r\n \"20.37.67.80/28\",\r\n
+ \ \"20.37.74.208/28\",\r\n \"20.37.152.240/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.38.80.96/28\",\r\n \"20.38.128.48/28\",\r\n \"20.38.147.128/28\",\r\n
+ \ \"20.39.1.205/32\",\r\n \"20.39.11.80/28\",\r\n \"20.40.141.171/32\",\r\n
+ \ \"20.41.0.240/28\",\r\n \"20.41.64.80/28\",\r\n \"20.41.197.0/28\",\r\n
+ \ \"20.42.0.240/28\",\r\n \"20.42.129.16/28\",\r\n \"20.42.227.48/28\",\r\n
+ \ \"20.43.40.96/28\",\r\n \"20.43.64.96/28\",\r\n \"20.43.120.112/28\",\r\n
+ \ \"20.43.128.112/28\",\r\n \"20.44.3.32/28\",\r\n \"20.44.26.224/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"20.46.13.192/28\",\r\n \"20.72.16.48/28\",\r\n
+ \ \"20.150.161.128/28\",\r\n \"20.150.171.80/28\",\r\n \"20.150.179.64/28\",\r\n
+ \ \"20.150.187.64/28\",\r\n \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n
+ \ \"20.189.106.80/28\",\r\n \"20.192.99.64/28\",\r\n \"20.192.160.48/28\",\r\n
+ \ \"20.192.225.144/28\",\r\n \"20.192.235.16/28\",\r\n \"23.98.82.192/28\",\r\n
+ \ \"23.100.232.216/32\",\r\n \"40.66.61.146/32\",\r\n \"40.67.59.80/28\",\r\n
+ \ \"40.69.106.224/28\",\r\n \"40.70.146.192/28\",\r\n \"40.70.154.161/32\",\r\n
+ \ \"40.71.11.64/28\",\r\n \"40.74.24.96/28\",\r\n \"40.74.100.176/28\",\r\n
+ \ \"40.74.147.48/28\",\r\n \"40.75.35.48/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"40.78.202.80/28\",\r\n \"40.78.227.32/28\",\r\n \"40.78.234.128/28\",\r\n
+ \ \"40.78.242.176/28\",\r\n \"40.78.250.112/28\",\r\n \"40.79.130.192/28\",\r\n
+ \ \"40.79.138.128/28\",\r\n \"40.79.146.128/28\",\r\n \"40.79.154.64/28\",\r\n
+ \ \"40.79.162.48/28\",\r\n \"40.79.170.224/28\",\r\n \"40.79.178.224/28\",\r\n
+ \ \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n \"40.80.51.64/28\",\r\n
+ \ \"40.80.57.176/28\",\r\n \"40.80.169.160/28\",\r\n \"40.80.184.80/28\",\r\n
+ \ \"40.80.188.96/28\",\r\n \"40.81.27.228/32\",\r\n \"40.82.187.230/32\",\r\n
+ \ \"40.82.248.80/28\",\r\n \"40.89.17.208/28\",\r\n \"40.90.184.249/32\",\r\n
+ \ \"40.91.77.76/32\",\r\n \"40.112.242.176/28\",\r\n \"40.119.8.80/28\",\r\n
+ \ \"51.11.24.49/32\",\r\n \"51.12.47.32/28\",\r\n \"51.12.99.80/28\",\r\n
+ \ \"51.12.198.224/28\",\r\n \"51.12.203.80/28\",\r\n \"51.12.227.64/28\",\r\n
+ \ \"51.12.235.64/28\",\r\n \"51.104.8.64/27\",\r\n \"51.104.24.96/28\",\r\n
+ \ \"51.105.67.16/28\",\r\n \"51.105.75.128/28\",\r\n \"51.105.88.224/28\",\r\n
+ \ \"51.105.129.135/32\",\r\n \"51.107.59.48/28\",\r\n \"51.107.147.32/28\",\r\n
+ \ \"51.107.155.48/28\",\r\n \"51.116.49.176/28\",\r\n \"51.116.59.48/28\",\r\n
+ \ \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n \"51.116.250.224/28\",\r\n
+ \ \"51.120.99.64/28\",\r\n \"51.120.107.64/28\",\r\n \"51.120.211.64/28\",\r\n
+ \ \"51.120.219.80/28\",\r\n \"51.120.227.80/28\",\r\n \"51.120.234.224/28\",\r\n
+ \ \"51.137.161.224/28\",\r\n \"51.140.146.208/28\",\r\n \"51.140.210.208/28\",\r\n
+ \ \"51.144.184.47/32\",\r\n \"52.138.90.144/28\",\r\n \"52.138.226.160/28\",\r\n
+ \ \"52.139.3.33/32\",\r\n \"52.140.107.96/28\",\r\n \"52.141.25.58/32\",\r\n
+ \ \"52.141.26.97/32\",\r\n \"52.148.163.43/32\",\r\n \"52.150.136.80/28\",\r\n
+ \ \"52.151.111.249/32\",\r\n \"52.155.90.254/32\",\r\n \"52.155.115.7/32\",\r\n
+ \ \"52.156.193.50/32\",\r\n \"52.162.106.176/28\",\r\n \"52.167.106.160/28\",\r\n
+ \ \"52.177.164.219/32\",\r\n \"52.182.139.32/28\",\r\n \"52.184.87.76/32\",\r\n
+ \ \"52.185.70.56/32\",\r\n \"52.228.80.80/28\",\r\n \"52.230.56.136/32\",\r\n
+ \ \"52.231.18.192/28\",\r\n \"52.231.146.208/28\",\r\n \"52.236.186.192/28\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"52.246.155.128/28\",\r\n \"52.249.59.91/32\",\r\n
+ \ \"52.252.160.26/32\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"52.253.227.208/32\",\r\n \"52.255.214.109/32\",\r\n \"52.255.217.127/32\",\r\n
+ \ \"65.52.250.192/28\",\r\n \"102.133.27.32/28\",\r\n \"102.133.58.224/28\",\r\n
+ \ \"102.133.122.224/27\",\r\n \"102.133.155.32/28\",\r\n
+ \ \"102.133.251.64/28\",\r\n \"104.208.16.160/28\",\r\n \"104.208.144.160/28\",\r\n
+ \ \"104.211.81.144/28\",\r\n \"104.214.19.32/28\",\r\n \"191.233.8.48/28\",\r\n
+ \ \"191.233.203.144/28\",\r\n \"191.233.240.165/32\",\r\n
+ \ \"191.233.242.167/32\",\r\n \"191.234.147.64/28\",\r\n
+ \ \"191.234.155.64/28\",\r\n \"191.235.224.96/28\",\r\n \"2603:1000:4::300/122\",\r\n
+ \ \"2603:1000:104:1::2c0/122\",\r\n \"2603:1010:6:1::2c0/122\",\r\n
+ \ \"2603:1010:101::300/122\",\r\n \"2603:1010:304::300/122\",\r\n
+ \ \"2603:1010:404::300/122\",\r\n \"2603:1020:5:1::2c0/122\",\r\n
+ \ \"2603:1020:206:1::2c0/122\",\r\n \"2603:1020:305::300/122\",\r\n
+ \ \"2603:1020:405::300/122\",\r\n \"2603:1020:605::300/122\",\r\n
+ \ \"2603:1020:705:1::2c0/122\",\r\n \"2603:1020:805:1::2c0/122\",\r\n
+ \ \"2603:1020:905::300/122\",\r\n \"2603:1020:a04:1::2c0/122\",\r\n
+ \ \"2603:1020:b04::300/122\",\r\n \"2603:1020:c04:1::2c0/122\",\r\n
+ \ \"2603:1020:d04::300/122\",\r\n \"2603:1020:e04:1::2c0/122\",\r\n
+ \ \"2603:1020:f04::300/122\",\r\n \"2603:1020:1004::2c0/122\",\r\n
+ \ \"2603:1020:1104::240/122\",\r\n \"2603:1030:f:1::300/122\",\r\n
+ \ \"2603:1030:10:1::2c0/122\",\r\n \"2603:1030:104:1::2c0/122\",\r\n
+ \ \"2603:1030:107::240/122\",\r\n \"2603:1030:210:1::2c0/122\",\r\n
+ \ \"2603:1030:40b:1::2c0/122\",\r\n \"2603:1030:40c:1::2c0/122\",\r\n
+ \ \"2603:1030:504:1::2c0/122\",\r\n \"2603:1030:608::300/122\",\r\n
+ \ \"2603:1030:807:1::2c0/122\",\r\n \"2603:1030:a07::300/122\",\r\n
+ \ \"2603:1030:b04::300/122\",\r\n \"2603:1030:c06:1::2c0/122\",\r\n
+ \ \"2603:1030:f05:1::2c0/122\",\r\n \"2603:1030:1005::300/122\",\r\n
+ \ \"2603:1040:5:1::2c0/122\",\r\n \"2603:1040:207::300/122\",\r\n
+ \ \"2603:1040:407:1::2c0/122\",\r\n \"2603:1040:606::300/122\",\r\n
+ \ \"2603:1040:806::300/122\",\r\n \"2603:1040:904:1::2c0/122\",\r\n
+ \ \"2603:1040:a06:1::2c0/122\",\r\n \"2603:1040:b04::300/122\",\r\n
+ \ \"2603:1040:c06::300/122\",\r\n \"2603:1040:d04::2c0/122\",\r\n
+ \ \"2603:1040:f05:1::2c0/122\",\r\n \"2603:1040:1104::240/122\",\r\n
+ \ \"2603:1050:6:1::2c0/122\",\r\n \"2603:1050:403::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.AustraliaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.144/28\",\r\n \"20.37.192.96/28\",\r\n
+ \ \"20.188.219.157/32\",\r\n \"20.188.221.15/32\",\r\n \"40.79.162.48/28\",\r\n
+ \ \"40.79.170.224/28\",\r\n \"2603:1010:6:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CanadaEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.224/28\",\r\n \"40.89.17.208/28\",\r\n
+ \ \"2603:1030:1005::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.CentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.64/28\",\r\n
+ \ \"20.37.152.240/28\",\r\n \"52.182.139.32/28\",\r\n \"52.185.70.56/32\",\r\n
+ \ \"52.242.224.215/32\",\r\n \"104.208.16.160/28\",\r\n \"2603:1030:10:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.CentralUSEUAP\",\r\n
+ \ \"id\": \"AzureMachineLearning.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.13.192/28\",\r\n \"40.78.202.80/28\",\r\n
+ \ \"2603:1030:f:1::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.GermanyWestCentral\",\r\n
+ \ \"id\": \"AzureMachineLearning.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.155.112/28\",\r\n \"51.116.156.128/28\",\r\n
+ \ \"51.116.250.224/28\",\r\n \"2603:1020:c04:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.JapanEast\",\r\n
+ \ \"id\": \"AzureMachineLearning.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.208/28\",\r\n \"20.43.64.96/28\",\r\n
+ \ \"20.44.132.166/32\",\r\n \"40.79.186.160/28\",\r\n \"40.79.194.64/28\",\r\n
+ \ \"52.155.115.7/32\",\r\n \"2603:1040:407:1::2c0/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMachineLearning.SouthIndia\",\r\n
+ \ \"id\": \"AzureMachineLearning.SouthIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMachineLearning\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.197.0/28\",\r\n \"40.78.194.224/28\",\r\n
+ \ \"2603:1040:c06::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMachineLearning.WestCentralUS\",\r\n \"id\":
+ \"AzureMachineLearning.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureMachineLearning\",\r\n \"addressPrefixes\": [\r\n \"13.71.194.240/28\",\r\n
+ \ \"52.150.136.80/28\",\r\n \"52.253.131.79/32\",\r\n \"52.253.131.198/32\",\r\n
+ \ \"2603:1030:b04::300/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor\",\r\n \"id\": \"AzureMonitor\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"5\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.96.175/32\",\r\n \"13.65.206.67/32\",\r\n
+ \ \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n \"13.66.37.172/32\",\r\n
+ \ \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.67.9.192/28\",\r\n \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n
+ \ \"13.67.15.0/32\",\r\n \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n
+ \ \"13.68.31.237/32\",\r\n \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n
+ \ \"13.68.109.212/32\",\r\n \"13.68.111.247/32\",\r\n \"13.69.51.175/32\",\r\n
+ \ \"13.69.51.218/32\",\r\n \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n
+ \ \"13.69.67.60/30\",\r\n \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n
+ \ \"13.69.106.208/28\",\r\n \"13.69.109.224/27\",\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.72.232/29\",\r\n \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n
+ \ \"13.70.124.27/32\",\r\n \"13.70.127.61/32\",\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.73.26.213/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n
+ \ \"13.75.38.0/28\",\r\n \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n
+ \ \"13.75.117.221/32\",\r\n \"13.75.119.169/32\",\r\n \"13.75.195.15/32\",\r\n
+ \ \"13.76.85.243/32\",\r\n \"13.76.87.86/32\",\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"13.77.150.166/32\",\r\n
+ \ \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n \"13.78.10.58/32\",\r\n
+ \ \"13.78.13.189/32\",\r\n \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n
+ \ \"13.78.109.112/29\",\r\n \"13.78.111.192/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"13.80.134.255/32\",\r\n \"13.82.100.176/32\",\r\n \"13.82.184.151/32\",\r\n
+ \ \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n \"13.84.149.186/32\",\r\n
+ \ \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n \"13.84.225.10/32\",\r\n
+ \ \"13.85.70.142/32\",\r\n \"13.86.218.224/28\",\r\n \"13.86.218.248/29\",\r\n
+ \ \"13.86.223.128/26\",\r\n \"13.87.56.248/29\",\r\n \"13.87.57.128/28\",\r\n
+ \ \"13.87.122.248/29\",\r\n \"13.87.123.128/28\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.88.230.43/32\",\r\n \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n
+ \ \"13.89.42.127/32\",\r\n \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n
+ \ \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n \"13.90.249.229/32\",\r\n
+ \ \"13.90.251.123/32\",\r\n \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n
+ \ \"13.92.40.198/32\",\r\n \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n
+ \ \"13.92.179.52/32\",\r\n \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n
+ \ \"13.92.254.218/32\",\r\n \"13.92.255.146/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"13.94.39.13/32\",\r\n
+ \ \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n \"20.36.114.200/29\",\r\n
+ \ \"20.36.114.208/28\",\r\n \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n
+ \ \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.37.192.68/31\",\r\n \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n
+ \ \"20.37.198.140/32\",\r\n \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.38.80.68/31\",\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"20.38.143.0/27\",\r\n \"20.38.143.44/30\",\r\n
+ \ \"20.38.146.152/29\",\r\n \"20.38.147.144/29\",\r\n \"20.38.152.32/27\",\r\n
+ \ \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.40.124.0/32\",\r\n \"20.40.137.91/32\",\r\n \"20.40.140.212/32\",\r\n
+ \ \"20.40.160.120/32\",\r\n \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n
+ \ \"20.40.206.128/28\",\r\n \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n
+ \ \"20.40.228.0/26\",\r\n \"20.41.49.208/32\",\r\n \"20.41.64.68/31\",\r\n
+ \ \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n \"20.41.69.16/28\",\r\n
+ \ \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n \"20.41.208.32/27\",\r\n
+ \ \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n \"20.42.73.128/25\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n
+ \ \"20.42.230.224/29\",\r\n \"20.42.230.232/31\",\r\n \"20.43.40.68/31\",\r\n
+ \ \"20.43.41.178/31\",\r\n \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n
+ \ \"20.43.44.224/28\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.43.98.234/32\",\r\n
+ \ \"20.43.99.158/32\",\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n \"20.44.3.48/28\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"20.44.16.0/29\",\r\n \"20.44.17.0/29\",\r\n \"20.44.26.152/29\",\r\n
+ \ \"20.44.26.248/29\",\r\n \"20.44.73.196/32\",\r\n \"20.44.192.217/32\",\r\n
+ \ \"20.45.122.152/29\",\r\n \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n
+ \ \"20.45.125.224/28\",\r\n \"20.46.10.224/27\",\r\n \"20.46.12.196/30\",\r\n
+ \ \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n \"20.48.193.224/27\",\r\n
+ \ \"20.49.83.32/28\",\r\n \"20.49.84.32/27\",\r\n \"20.49.91.32/28\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.49.99.44/31\",\r\n \"20.49.99.64/28\",\r\n
+ \ \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n \"20.49.109.46/31\",\r\n
+ \ \"20.49.109.80/28\",\r\n \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n
+ \ \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n \"20.49.114.48/31\",\r\n
+ \ \"20.49.120.64/28\",\r\n \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n
+ \ \"20.50.68.120/30\",\r\n \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n
+ \ \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n \"20.52.64.32/27\",\r\n
+ \ \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n \"20.66.2.192/26\",\r\n
+ \ \"20.72.20.48/28\",\r\n \"20.72.21.0/30\",\r\n \"20.72.21.32/27\",\r\n
+ \ \"20.72.28.192/27\",\r\n \"20.135.13.192/26\",\r\n \"20.150.167.184/29\",\r\n
+ \ \"20.150.171.208/29\",\r\n \"20.150.173.0/28\",\r\n \"20.150.178.152/29\",\r\n
+ \ \"20.150.181.96/28\",\r\n \"20.150.182.32/27\",\r\n \"20.150.186.152/29\",\r\n
+ \ \"20.150.241.64/29\",\r\n \"20.150.241.72/30\",\r\n \"20.150.241.96/27\",\r\n
+ \ \"20.187.197.192/27\",\r\n \"20.188.36.28/32\",\r\n \"20.189.109.144/28\",\r\n
+ \ \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n \"20.189.111.24/31\",\r\n
+ \ \"20.189.172.0/25\",\r\n \"20.189.225.128/27\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.50.192/28\",\r\n
+ \ \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n \"20.192.167.160/27\",\r\n
+ \ \"20.192.231.244/30\",\r\n \"20.192.235.144/28\",\r\n \"20.193.96.32/27\",\r\n
+ \ \"20.193.194.24/29\",\r\n \"20.193.194.32/29\",\r\n \"20.193.194.40/30\",\r\n
+ \ \"20.193.203.112/28\",\r\n \"20.193.204.64/27\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"23.96.28.38/32\",\r\n
+ \ \"23.96.245.125/32\",\r\n \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n
+ \ \"23.97.65.103/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"23.100.90.7/32\",\r\n \"23.100.94.221/32\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.100.228.32/32\",\r\n \"23.101.0.142/32\",\r\n
+ \ \"23.101.9.4/32\",\r\n \"23.101.13.65/32\",\r\n \"23.101.69.223/32\",\r\n
+ \ \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n \"23.101.239.238/32\",\r\n
+ \ \"23.102.44.211/32\",\r\n \"23.102.45.216/32\",\r\n \"23.102.66.132/32\",\r\n
+ \ \"23.102.77.48/32\",\r\n \"23.102.181.197/32\",\r\n \"40.64.132.128/28\",\r\n
+ \ \"40.64.132.240/28\",\r\n \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n
+ \ \"40.64.134.138/32\",\r\n \"40.67.52.224/27\",\r\n \"40.67.59.192/28\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.69.81.159/32\",\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.69.194.158/32\",\r\n \"40.70.23.205/32\",\r\n
+ \ \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n \"40.71.12.224/28\",\r\n
+ \ \"40.71.12.240/30\",\r\n \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n
+ \ \"40.71.14.112/30\",\r\n \"40.71.183.225/32\",\r\n \"40.74.24.68/31\",\r\n
+ \ \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n \"40.74.101.32/28\",\r\n
+ \ \"40.74.101.200/29\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.74.249.98/32\",\r\n \"40.75.34.40/29\",\r\n
+ \ \"40.75.35.64/29\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n \"40.77.24.27/32\",\r\n
+ \ \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.78.195.16/28\",\r\n
+ \ \"40.78.196.48/29\",\r\n \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.78.234.56/29\",\r\n
+ \ \"40.78.234.144/28\",\r\n \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n
+ \ \"40.78.247.64/26\",\r\n \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n
+ \ \"40.78.253.192/26\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.79.154.80/29\",\r\n \"40.79.156.32/29\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.79.179.8/29\",\r\n
+ \ \"40.79.179.16/28\",\r\n \"40.79.187.8/29\",\r\n \"40.79.190.160/27\",\r\n
+ \ \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n \"40.80.50.152/29\",\r\n
+ \ \"40.80.51.80/29\",\r\n \"40.80.180.160/27\",\r\n \"40.80.191.224/28\",\r\n
+ \ \"40.81.58.225/32\",\r\n \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n
+ \ \"40.84.189.107/32\",\r\n \"40.84.192.116/32\",\r\n \"40.85.180.90/32\",\r\n
+ \ \"40.85.201.168/32\",\r\n \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"40.86.201.128/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.89.153.171/32\",\r\n
+ \ \"40.89.189.61/32\",\r\n \"40.112.49.101/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.117.80.207/32\",\r\n
+ \ \"40.117.95.162/32\",\r\n \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n
+ \ \"40.117.197.224/32\",\r\n \"40.118.129.58/32\",\r\n \"40.119.4.128/32\",\r\n
+ \ \"40.119.8.72/31\",\r\n \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"40.120.75.32/28\",\r\n \"40.121.57.2/32\",\r\n
+ \ \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n \"40.121.163.228/32\",\r\n
+ \ \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"40.126.246.183/32\",\r\n \"40.127.75.125/32\",\r\n \"40.127.84.197/32\",\r\n
+ \ \"40.127.144.141/32\",\r\n \"51.11.97.96/27\",\r\n \"51.12.17.20/30\",\r\n
+ \ \"51.12.17.56/29\",\r\n \"51.12.17.128/29\",\r\n \"51.12.25.56/29\",\r\n
+ \ \"51.12.25.192/29\",\r\n \"51.12.25.200/30\",\r\n \"51.12.46.0/27\",\r\n
+ \ \"51.12.99.72/29\",\r\n \"51.12.102.192/27\",\r\n \"51.12.195.224/27\",\r\n
+ \ \"51.12.203.208/28\",\r\n \"51.12.205.96/27\",\r\n \"51.12.226.152/29\",\r\n
+ \ \"51.12.234.152/29\",\r\n \"51.12.237.32/27\",\r\n \"51.13.128.32/27\",\r\n
+ \ \"51.13.136.192/27\",\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.105.248.23/32\",\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n \"51.107.148.0/28\",\r\n
+ \ \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n \"51.107.156.48/29\",\r\n
+ \ \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n \"51.116.245.96/28\",\r\n
+ \ \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.219.208/28\",\r\n
+ \ \"51.120.232.34/31\",\r\n \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n
+ \ \"51.120.235.240/28\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.6.23/32\",\r\n
+ \ \"51.140.54.208/32\",\r\n \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n
+ \ \"51.140.148.48/28\",\r\n \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n
+ \ \"51.140.163.207/32\",\r\n \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n
+ \ \"51.140.211.160/28\",\r\n \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"51.143.165.22/32\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n \"51.145.44.242/32\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.138.31.112/32\",\r\n \"52.138.31.127/32\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"52.138.222.110/32\",\r\n
+ \ \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n \"52.139.8.32/32\",\r\n
+ \ \"52.139.106.160/27\",\r\n \"52.140.104.68/31\",\r\n \"52.140.108.96/28\",\r\n
+ \ \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n \"52.140.108.240/31\",\r\n
+ \ \"52.141.22.149/32\",\r\n \"52.141.22.239/32\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.150.36.187/32\",\r\n
+ \ \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n \"52.150.154.24/29\",\r\n
+ \ \"52.150.154.32/28\",\r\n \"52.151.11.176/32\",\r\n \"52.155.118.97/32\",\r\n
+ \ \"52.155.162.238/32\",\r\n \"52.156.40.142/32\",\r\n \"52.156.168.82/32\",\r\n
+ \ \"52.161.8.76/32\",\r\n \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n
+ \ \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n \"52.162.110.168/29\",\r\n
+ \ \"52.162.214.75/32\",\r\n \"52.163.94.131/32\",\r\n \"52.163.122.20/32\",\r\n
+ \ \"52.164.120.183/32\",\r\n \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n
+ \ \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n \"52.165.38.20/32\",\r\n
+ \ \"52.165.150.242/32\",\r\n \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n
+ \ \"52.167.221.184/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.169.4.236/32\",\r\n \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n
+ \ \"52.169.64.244/32\",\r\n \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n
+ \ \"52.172.113.64/27\",\r\n \"52.172.209.125/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.175.198.74/32\",\r\n \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.177.223.60/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.179.192.178/32\",\r\n
+ \ \"52.180.160.132/32\",\r\n \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n
+ \ \"52.180.182.209/32\",\r\n \"52.182.138.216/29\",\r\n \"52.182.139.48/29\",\r\n
+ \ \"52.183.41.109/32\",\r\n \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n
+ \ \"52.183.95.86/32\",\r\n \"52.183.127.155/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"52.185.132.101/32\",\r\n \"52.185.132.170/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.170.253/32\",\r\n \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n
+ \ \"52.224.162.220/32\",\r\n \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n
+ \ \"52.228.80.68/31\",\r\n \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n
+ \ \"52.228.86.152/29\",\r\n \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n
+ \ \"52.229.25.130/32\",\r\n \"52.229.37.75/32\",\r\n \"52.229.218.221/32\",\r\n
+ \ \"52.229.225.6/32\",\r\n \"52.230.224.237/32\",\r\n \"52.231.18.240/28\",\r\n
+ \ \"52.231.28.204/32\",\r\n \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n
+ \ \"52.231.67.208/32\",\r\n \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n
+ \ \"52.231.111.52/32\",\r\n \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n
+ \ \"52.232.35.33/32\",\r\n \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n
+ \ \"52.236.186.88/29\",\r\n \"52.236.186.208/28\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.237.157.70/32\",\r\n \"52.242.230.209/32\",\r\n \"52.246.154.152/29\",\r\n
+ \ \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n \"52.247.202.90/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"65.52.122.208/32\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"102.37.64.128/27\",\r\n
+ \ \"102.37.80.64/27\",\r\n \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n
+ \ \"102.133.122.152/29\",\r\n \"102.133.123.240/29\",\r\n
+ \ \"102.133.126.64/27\",\r\n \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n
+ \ \"102.133.162.233/32\",\r\n \"102.133.216.68/31\",\r\n
+ \ \"102.133.216.106/31\",\r\n \"102.133.218.144/28\",\r\n
+ \ \"102.133.218.244/30\",\r\n \"102.133.219.128/28\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"102.133.250.152/29\",\r\n
+ \ \"102.133.251.80/29\",\r\n \"104.40.222.36/32\",\r\n \"104.41.61.169/32\",\r\n
+ \ \"104.41.152.101/32\",\r\n \"104.41.157.59/32\",\r\n \"104.41.224.134/32\",\r\n
+ \ \"104.42.40.28/32\",\r\n \"104.44.140.84/32\",\r\n \"104.45.136.42/32\",\r\n
+ \ \"104.45.230.69/32\",\r\n \"104.45.232.72/32\",\r\n \"104.46.123.164/32\",\r\n
+ \ \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n \"104.208.33.155/32\",\r\n
+ \ \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"104.214.70.219/32\",\r\n
+ \ \"104.214.104.109/32\",\r\n \"104.214.164.128/27\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"111.221.88.173/32\",\r\n \"137.116.82.175/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"137.116.226.81/32\",\r\n
+ \ \"137.117.144.33/32\",\r\n \"138.91.9.98/32\",\r\n \"138.91.32.98/32\",\r\n
+ \ \"138.91.37.93/32\",\r\n \"157.55.177.6/32\",\r\n \"168.61.142.0/27\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"168.62.169.17/32\",\r\n \"168.63.174.169/32\",\r\n
+ \ \"168.63.242.221/32\",\r\n \"191.232.33.83/32\",\r\n \"191.232.161.75/32\",\r\n
+ \ \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.233.51.128/28\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.237.224.192/27\",\r\n
+ \ \"191.239.251.90/32\",\r\n \"207.46.224.101/32\",\r\n \"207.46.236.191/32\",\r\n
+ \ \"2603:1000:4::780/121\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\",\r\n
+ \ \"2603:1010:6::60/123\",\r\n \"2603:1010:6::1c0/122\",\r\n
+ \ \"2603:1010:6::300/123\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:1::280/122\",\r\n \"2603:1010:6:402::500/121\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\",\r\n
+ \ \"2603:1010:404::780/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::60/123\",\r\n \"2603:1020:5::1c0/122\",\r\n
+ \ \"2603:1020:5::300/123\",\r\n \"2603:1020:5::360/123\",\r\n
+ \ \"2603:1020:5::500/121\",\r\n \"2603:1020:5:1::280/122\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::60/123\",\r\n
+ \ \"2603:1020:206::1c0/122\",\r\n \"2603:1020:206::300/123\",\r\n
+ \ \"2603:1020:206::360/123\",\r\n \"2603:1020:206::500/121\",\r\n
+ \ \"2603:1020:206:1::280/122\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:305::780/121\",\r\n \"2603:1020:405::780/121\",\r\n
+ \ \"2603:1020:605::780/121\",\r\n \"2603:1020:605:1::280/123\",\r\n
+ \ \"2603:1020:605:1::300/121\",\r\n \"2603:1020:605:402::500/121\",\r\n
+ \ \"2603:1020:705::60/123\",\r\n \"2603:1020:705::1c0/122\",\r\n
+ \ \"2603:1020:705::300/123\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:1::280/122\",\r\n
+ \ \"2603:1020:705:402::500/121\",\r\n \"2603:1020:805::60/123\",\r\n
+ \ \"2603:1020:805::1c0/122\",\r\n \"2603:1020:805::300/123\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:1::280/122\",\r\n \"2603:1020:805:402::500/121\",\r\n
+ \ \"2603:1020:905::780/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::60/123\",\r\n \"2603:1020:a04::1c0/122\",\r\n
+ \ \"2603:1020:a04::300/123\",\r\n \"2603:1020:a04::360/123\",\r\n
+ \ \"2603:1020:a04::500/121\",\r\n \"2603:1020:a04:1::280/122\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04::780/121\",\r\n
+ \ \"2603:1020:b04:1::280/123\",\r\n \"2603:1020:b04:1::300/121\",\r\n
+ \ \"2603:1020:b04:402::500/121\",\r\n \"2603:1020:c01:2::b/128\",\r\n
+ \ \"2603:1020:c01:2::e/128\",\r\n \"2603:1020:c04::60/123\",\r\n
+ \ \"2603:1020:c04::1c0/122\",\r\n \"2603:1020:c04::300/123\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:1::280/122\",\r\n \"2603:1020:c04:402::500/121\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\",\r\n \"2603:1020:e04::60/123\",\r\n
+ \ \"2603:1020:e04::1c0/122\",\r\n \"2603:1020:e04::300/123\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:1::280/122\",\r\n \"2603:1020:e04:402::500/121\",\r\n
+ \ \"2603:1020:f04::780/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004::280/122\",\r\n \"2603:1020:1004:1::380/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::160/123\",\r\n
+ \ \"2603:1020:1104:1::180/122\",\r\n \"2603:1020:1104:1::1c0/123\",\r\n
+ \ \"2603:1020:1104:1::4c0/123\",\r\n \"2603:1020:1104:1::500/121\",\r\n
+ \ \"2603:1020:1104:400::440/123\",\r\n \"2603:1020:1104:400::480/121\",\r\n
+ \ \"2603:1030:7:5::e/128\",\r\n \"2603:1030:7:5::17/128\",\r\n
+ \ \"2603:1030:7:5::29/128\",\r\n \"2603:1030:7:5::32/128\",\r\n
+ \ \"2603:1030:7:6::10/128\",\r\n \"2603:1030:7:6::14/128\",\r\n
+ \ \"2603:1030:7:6::1b/128\",\r\n \"2603:1030:7:6::37/128\",\r\n
+ \ \"2603:1030:7:6::3f/128\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::60/123\",\r\n
+ \ \"2603:1030:104::1c0/122\",\r\n \"2603:1030:104::300/123\",\r\n
+ \ \"2603:1030:104::360/123\",\r\n \"2603:1030:104::500/121\",\r\n
+ \ \"2603:1030:104:1::280/122\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::80/121\",\r\n \"2603:1030:107:1::200/123\",\r\n
+ \ \"2603:1030:107:1::280/121\",\r\n \"2603:1030:107:400::3c0/123\",\r\n
+ \ \"2603:1030:107:400::480/121\",\r\n \"2603:1030:210::60/123\",\r\n
+ \ \"2603:1030:210::1c0/122\",\r\n \"2603:1030:210::300/123\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:1::280/122\",\r\n \"2603:1030:210:402::500/121\",\r\n
+ \ \"2603:1030:302:402::80/123\",\r\n \"2603:1030:302:402::100/121\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\",\r\n
+ \ \"2603:1030:504::380/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:1::280/122\",\r\n
+ \ \"2603:1030:504:c02::100/123\",\r\n \"2603:1030:504:c02::180/121\",\r\n
+ \ \"2603:1030:608::780/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:800:5::bfee:a418/128\",\r\n \"2603:1030:800:5::bfee:a429/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a42a/128\",\r\n \"2603:1030:800:5::bfee:a435/128\",\r\n
+ \ \"2603:1030:807::60/123\",\r\n \"2603:1030:807::1c0/122\",\r\n
+ \ \"2603:1030:807::300/123\",\r\n \"2603:1030:807::360/123\",\r\n
+ \ \"2603:1030:807::500/121\",\r\n \"2603:1030:807:1::280/122\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\",\r\n
+ \ \"2603:1030:c02:2::4e1/128\",\r\n \"2603:1030:c06:1::280/122\",\r\n
+ \ \"2603:1030:c06:2::80/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:d00::1d/128\",\r\n \"2603:1030:d00::48/128\",\r\n
+ \ \"2603:1030:d00::5a/128\",\r\n \"2603:1030:d00::82/128\",\r\n
+ \ \"2603:1030:d00::84/128\",\r\n \"2603:1030:d00::9a/128\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005::780/121\",\r\n
+ \ \"2603:1030:1005:1::280/123\",\r\n \"2603:1030:1005:1::300/121\",\r\n
+ \ \"2603:1030:1005:402::500/121\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2603:1040:207::780/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::60/123\",\r\n \"2603:1040:407::1c0/122\",\r\n
+ \ \"2603:1040:407::300/123\",\r\n \"2603:1040:407::360/123\",\r\n
+ \ \"2603:1040:407::500/121\",\r\n \"2603:1040:407:1::280/122\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606::780/121\",\r\n
+ \ \"2603:1040:606:1::280/123\",\r\n \"2603:1040:606:1::300/121\",\r\n
+ \ \"2603:1040:606:402::500/121\",\r\n \"2603:1040:806::780/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\",\r\n
+ \ \"2603:1040:b00:2::b/128\",\r\n \"2603:1040:b04::780/121\",\r\n
+ \ \"2603:1040:b04:1::280/123\",\r\n \"2603:1040:b04:1::300/121\",\r\n
+ \ \"2603:1040:b04:402::500/121\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04::280/122\",\r\n
+ \ \"2603:1040:d04:1::380/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::160/123\",\r\n
+ \ \"2603:1040:1104:1::180/122\",\r\n \"2603:1040:1104:1::1c0/123\",\r\n
+ \ \"2603:1040:1104:1::580/121\",\r\n \"2603:1040:1104:400::460/123\",\r\n
+ \ \"2603:1050:6::60/123\",\r\n \"2603:1050:6::1c0/122\",\r\n
+ \ \"2603:1050:6::300/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:1::280/122\",\r\n
+ \ \"2603:1050:6:402::580/121\",\r\n \"2603:1050:6:c02::2a0/123\",\r\n
+ \ \"2603:1050:403::280/122\",\r\n \"2603:1050:403:1::80/121\",\r\n
+ \ \"2603:1050:403:1::240/123\",\r\n \"2603:1050:403:1::300/121\",\r\n
+ \ \"2603:1050:403:400::580/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\",\r\n \"2a01:111:f100:4002::9d37:c0bd/128\",\r\n
+ \ \"2a01:111:f100:6000::4134:a6cf/128\",\r\n \"2a01:111:f100:7000::6fdd:5343/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:91e4/128\",\r\n \"2a01:111:f100:9001::1761:958a/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:9696/128\",\r\n \"2a01:111:f100:a001::4134:e463/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureMonitor\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.107.24/29\",\r\n \"20.36.107.160/28\",\r\n
+ \ \"20.37.227.16/28\",\r\n \"20.37.227.100/31\",\r\n \"20.37.227.104/29\",\r\n
+ \ \"20.37.227.112/28\",\r\n \"20.53.0.128/27\",\r\n \"20.53.48.64/27\",\r\n
+ \ \"2603:1010:304::780/121\",\r\n \"2603:1010:304:1::280/123\",\r\n
+ \ \"2603:1010:304:1::300/121\",\r\n \"2603:1010:304:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureMonitor.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"3\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.114.200/29\",\r\n \"20.36.114.208/28\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.193.96.32/27\",\r\n \"2603:1010:404::780/121\",\r\n
+ \ \"2603:1010:404:1::280/123\",\r\n \"2603:1010:404:1::300/121\",\r\n
+ \ \"2603:1010:404:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaEast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.232/29\",\r\n
+ \ \"13.70.73.104/29\",\r\n \"13.70.79.96/27\",\r\n \"13.70.124.27/32\",\r\n
+ \ \"13.70.127.61/32\",\r\n \"13.75.195.15/32\",\r\n \"20.37.192.68/31\",\r\n
+ \ \"20.37.195.26/31\",\r\n \"20.37.198.112/28\",\r\n \"20.37.198.140/32\",\r\n
+ \ \"20.37.198.232/29\",\r\n \"20.37.198.240/28\",\r\n \"20.40.124.0/32\",\r\n
+ \ \"20.43.98.234/32\",\r\n \"20.43.99.158/32\",\r\n \"20.53.46.64/27\",\r\n
+ \ \"40.79.162.40/29\",\r\n \"40.79.163.0/29\",\r\n \"40.79.165.64/28\",\r\n
+ \ \"40.79.170.24/29\",\r\n \"40.79.170.240/29\",\r\n \"40.126.246.183/32\",\r\n
+ \ \"52.156.168.82/32\",\r\n \"2603:1010:6::60/123\",\r\n
+ \ \"2603:1010:6::1c0/122\",\r\n \"2603:1010:6::300/123\",\r\n
+ \ \"2603:1010:6::500/121\",\r\n \"2603:1010:6:1::280/122\",\r\n
+ \ \"2603:1010:6:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.AustraliaSoutheast\",\r\n \"id\":
+ \"AzureMonitor.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.77.52.16/28\",\r\n
+ \ \"13.77.53.48/29\",\r\n \"13.77.53.220/32\",\r\n \"20.40.160.120/32\",\r\n
+ \ \"20.42.230.112/28\",\r\n \"20.42.230.208/28\",\r\n \"20.42.230.224/29\",\r\n
+ \ \"20.42.230.232/31\",\r\n \"23.101.225.155/32\",\r\n \"23.101.232.120/32\",\r\n
+ \ \"23.101.239.238/32\",\r\n \"40.81.58.225/32\",\r\n \"40.127.75.125/32\",\r\n
+ \ \"40.127.84.197/32\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"2603:1010:101::780/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.BrazilSouth\",\r\n
+ \ \"id\": \"AzureMonitor.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.61.169/32\",\r\n \"191.232.33.83/32\",\r\n
+ \ \"191.232.161.75/32\",\r\n \"191.232.213.23/32\",\r\n \"191.232.213.239/32\",\r\n
+ \ \"191.232.214.6/32\",\r\n \"191.232.239.181/32\",\r\n \"191.233.203.232/29\",\r\n
+ \ \"191.233.204.248/29\",\r\n \"191.234.136.60/31\",\r\n
+ \ \"191.234.136.80/28\",\r\n \"191.234.137.40/29\",\r\n \"191.234.137.48/28\",\r\n
+ \ \"191.234.146.152/29\",\r\n \"191.234.149.144/28\",\r\n
+ \ \"191.234.154.152/29\",\r\n \"191.234.157.48/28\",\r\n
+ \ \"191.235.224.68/31\",\r\n \"191.239.251.90/32\",\r\n \"2603:1050:6::60/123\",\r\n
+ \ \"2603:1050:6::1c0/122\",\r\n \"2603:1050:6::300/123\",\r\n
+ \ \"2603:1050:6::360/123\",\r\n \"2603:1050:6::500/121\",\r\n
+ \ \"2603:1050:6:1::280/122\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaCentral\",\r\n \"id\":
+ \"AzureMonitor.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.172.128/28\",\r\n
+ \ \"13.71.172.248/29\",\r\n \"13.71.175.128/32\",\r\n \"13.71.177.32/27\",\r\n
+ \ \"13.71.187.91/32\",\r\n \"13.71.191.47/32\",\r\n \"13.88.230.43/32\",\r\n
+ \ \"13.88.247.208/32\",\r\n \"13.88.255.115/32\",\r\n \"20.38.146.152/29\",\r\n
+ \ \"20.38.147.144/29\",\r\n \"20.48.193.224/27\",\r\n \"40.85.201.168/32\",\r\n
+ \ \"40.85.218.175/32\",\r\n \"40.85.248.43/32\",\r\n \"52.138.31.112/32\",\r\n
+ \ \"52.138.31.127/32\",\r\n \"52.139.8.32/32\",\r\n \"52.228.80.68/31\",\r\n
+ \ \"52.228.81.162/31\",\r\n \"52.228.85.192/28\",\r\n \"52.228.86.152/29\",\r\n
+ \ \"52.228.86.160/28\",\r\n \"52.228.86.176/32\",\r\n \"52.237.34.41/32\",\r\n
+ \ \"52.246.154.152/29\",\r\n \"52.246.155.144/29\",\r\n \"52.246.157.16/28\",\r\n
+ \ \"2603:1030:f05::60/123\",\r\n \"2603:1030:f05::1c0/122\",\r\n
+ \ \"2603:1030:f05::300/123\",\r\n \"2603:1030:f05::360/123\",\r\n
+ \ \"2603:1030:f05::500/121\",\r\n \"2603:1030:f05:1::280/122\",\r\n
+ \ \"2603:1030:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CanadaEast\",\r\n \"id\": \"AzureMonitor.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.16/28\",\r\n \"40.69.108.48/29\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.86.201.128/32\",\r\n \"52.139.106.160/27\",\r\n
+ \ \"2603:1030:1005::780/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralIndia\",\r\n
+ \ \"id\": \"AzureMonitor.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.0/29\",\r\n \"20.43.120.240/29\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.98.152/29\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"40.80.50.152/29\",\r\n \"40.80.51.80/29\",\r\n \"52.140.104.68/31\",\r\n
+ \ \"52.140.108.96/28\",\r\n \"52.140.108.216/29\",\r\n \"52.140.108.224/28\",\r\n
+ \ \"52.140.108.240/31\",\r\n \"52.172.209.125/32\",\r\n \"104.211.79.84/32\",\r\n
+ \ \"104.211.90.234/32\",\r\n \"104.211.91.254/32\",\r\n \"104.211.92.54/32\",\r\n
+ \ \"104.211.92.218/32\",\r\n \"104.211.95.59/32\",\r\n \"104.211.96.228/32\",\r\n
+ \ \"104.211.103.96/32\",\r\n \"2603:1040:a06::160/123\",\r\n
+ \ \"2603:1040:a06::2c0/122\",\r\n \"2603:1040:a06::400/123\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:1::280/122\",\r\n \"2603:1040:a06:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.CentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.89.42.127/32\",\r\n
+ \ \"13.89.171.112/30\",\r\n \"13.89.174.128/29\",\r\n \"20.37.152.68/31\",\r\n
+ \ \"20.40.200.172/31\",\r\n \"20.40.200.174/32\",\r\n \"20.40.206.128/28\",\r\n
+ \ \"20.40.206.232/29\",\r\n \"20.40.207.128/28\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.44.8.0/28\",\r\n \"20.44.11.192/26\",\r\n \"20.44.12.192/26\",\r\n
+ \ \"23.99.130.172/32\",\r\n \"40.77.17.183/32\",\r\n \"40.77.22.234/32\",\r\n
+ \ \"40.77.24.27/32\",\r\n \"40.77.101.95/32\",\r\n \"40.77.109.134/32\",\r\n
+ \ \"40.86.89.165/32\",\r\n \"52.165.27.187/32\",\r\n \"52.165.34.117/32\",\r\n
+ \ \"52.165.38.20/32\",\r\n \"52.165.150.242/32\",\r\n \"52.173.25.25/32\",\r\n
+ \ \"52.173.33.254/32\",\r\n \"52.173.90.199/32\",\r\n \"52.173.185.24/32\",\r\n
+ \ \"52.173.196.209/32\",\r\n \"52.173.196.230/32\",\r\n \"52.173.249.138/32\",\r\n
+ \ \"52.176.42.206/32\",\r\n \"52.176.46.30/32\",\r\n \"52.176.49.206/32\",\r\n
+ \ \"52.176.55.135/32\",\r\n \"52.176.92.196/32\",\r\n \"52.182.138.216/29\",\r\n
+ \ \"52.182.139.48/29\",\r\n \"52.230.224.237/32\",\r\n \"52.242.230.209/32\",\r\n
+ \ \"104.208.33.155/32\",\r\n \"104.208.34.98/32\",\r\n \"104.208.35.169/32\",\r\n
+ \ \"168.61.179.178/32\",\r\n \"2603:1030:7:5::e/128\",\r\n
+ \ \"2603:1030:7:5::17/128\",\r\n \"2603:1030:7:5::29/128\",\r\n
+ \ \"2603:1030:7:5::32/128\",\r\n \"2603:1030:7:6::10/128\",\r\n
+ \ \"2603:1030:7:6::14/128\",\r\n \"2603:1030:7:6::1b/128\",\r\n
+ \ \"2603:1030:7:6::37/128\",\r\n \"2603:1030:7:6::3f/128\",\r\n
+ \ \"2603:1030:10::60/123\",\r\n \"2603:1030:10::1c0/122\",\r\n
+ \ \"2603:1030:10::300/123\",\r\n \"2603:1030:10::360/123\",\r\n
+ \ \"2603:1030:10::500/121\",\r\n \"2603:1030:10:1::280/122\",\r\n
+ \ \"2603:1030:10:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.CentralUSEUAP\",\r\n \"id\":
+ \"AzureMonitor.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.46.10.224/27\",\r\n
+ \ \"20.46.12.196/30\",\r\n \"20.46.13.216/29\",\r\n \"20.46.15.48/29\",\r\n
+ \ \"40.78.202.144/28\",\r\n \"40.78.203.240/29\",\r\n \"52.180.160.132/32\",\r\n
+ \ \"52.180.164.91/32\",\r\n \"52.180.178.187/32\",\r\n \"52.180.182.209/32\",\r\n
+ \ \"168.61.142.0/27\",\r\n \"2603:1030:8:5::8/128\",\r\n
+ \ \"2603:1030:f:1::780/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.Core\",\r\n
+ \ \"id\": \"AzureMonitor.Core\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.109.224/27\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.70.79.96/27\",\r\n \"13.71.177.32/27\",\r\n \"13.86.223.128/26\",\r\n
+ \ \"20.36.125.224/27\",\r\n \"20.37.71.0/27\",\r\n \"20.38.132.64/27\",\r\n
+ \ \"20.38.143.0/27\",\r\n \"20.38.152.32/27\",\r\n \"20.40.228.0/26\",\r\n
+ \ \"20.41.208.32/27\",\r\n \"20.42.65.128/25\",\r\n \"20.44.11.192/26\",\r\n
+ \ \"20.46.10.224/27\",\r\n \"20.48.193.224/27\",\r\n \"20.49.84.32/27\",\r\n
+ \ \"20.49.93.192/26\",\r\n \"20.51.9.0/26\",\r\n \"20.51.17.64/27\",\r\n
+ \ \"20.52.64.32/27\",\r\n \"20.52.72.64/27\",\r\n \"20.53.0.128/27\",\r\n
+ \ \"20.53.46.64/27\",\r\n \"20.53.48.64/27\",\r\n \"20.58.66.96/27\",\r\n
+ \ \"20.61.99.64/27\",\r\n \"20.62.132.0/25\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.72.21.32/27\",\r\n \"20.72.28.192/27\",\r\n
+ \ \"20.150.182.32/27\",\r\n \"20.150.241.96/27\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.225.128/27\",\r\n \"20.191.165.64/27\",\r\n \"20.192.32.192/27\",\r\n
+ \ \"20.192.43.96/27\",\r\n \"20.192.48.0/27\",\r\n \"20.192.101.32/27\",\r\n
+ \ \"20.192.167.160/27\",\r\n \"20.193.96.32/27\",\r\n \"20.193.204.64/27\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"40.67.52.224/27\",\r\n
+ \ \"40.69.111.128/27\",\r\n \"40.74.150.32/27\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.80.180.160/27\",\r\n \"40.120.8.192/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.12.46.0/27\",\r\n \"51.12.102.192/27\",\r\n
+ \ \"51.12.195.224/27\",\r\n \"51.12.205.96/27\",\r\n \"51.12.237.32/27\",\r\n
+ \ \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n \"51.105.70.128/27\",\r\n
+ \ \"51.107.128.96/27\",\r\n \"51.107.192.160/27\",\r\n \"51.107.242.0/27\",\r\n
+ \ \"51.107.250.0/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.149.0/27\",\r\n
+ \ \"51.120.213.64/27\",\r\n \"51.120.232.160/27\",\r\n \"51.143.209.96/27\",\r\n
+ \ \"52.136.53.96/27\",\r\n \"52.139.106.160/27\",\r\n \"52.146.133.32/27\",\r\n
+ \ \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.221.160/27\",\r\n \"104.46.162.64/27\",\r\n \"104.46.179.128/27\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"168.61.142.0/27\",\r\n \"191.233.15.128/27\",\r\n
+ \ \"191.237.224.192/27\",\r\n \"2603:1000:4:1::280/123\",\r\n
+ \ \"2603:1000:4:1::300/121\",\r\n \"2603:1000:4:402::500/121\",\r\n
+ \ \"2603:1000:104:2::/123\",\r\n \"2603:1000:104:2::80/121\",\r\n
+ \ \"2603:1000:104:402::500/121\",\r\n \"2603:1010:6::500/121\",\r\n
+ \ \"2603:1010:6:402::500/121\",\r\n \"2603:1010:101:1::280/123\",\r\n
+ \ \"2603:1010:101:1::300/121\",\r\n \"2603:1010:101:402::500/121\",\r\n
+ \ \"2603:1010:304:1::280/123\",\r\n \"2603:1010:304:1::300/121\",\r\n
+ \ \"2603:1010:304:402::500/121\",\r\n \"2603:1010:404:1::280/123\",\r\n
+ \ \"2603:1010:404:1::300/121\",\r\n \"2603:1010:404:402::500/121\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:402::500/121\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:402::500/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\",\r\n \"2603:1020:705::360/123\",\r\n
+ \ \"2603:1020:705::500/121\",\r\n \"2603:1020:705:402::500/121\",\r\n
+ \ \"2603:1020:805::360/123\",\r\n \"2603:1020:805::500/121\",\r\n
+ \ \"2603:1020:805:402::500/121\",\r\n \"2603:1020:905:1::280/123\",\r\n
+ \ \"2603:1020:905:1::300/121\",\r\n \"2603:1020:905:402::500/121\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:402::500/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\",\r\n
+ \ \"2603:1020:c04::360/123\",\r\n \"2603:1020:c04::500/121\",\r\n
+ \ \"2603:1020:c04:402::500/121\",\r\n \"2603:1020:d04:1::280/123\",\r\n
+ \ \"2603:1020:d04:1::300/121\",\r\n \"2603:1020:d04:402::500/121\",\r\n
+ \ \"2603:1020:e04::360/123\",\r\n \"2603:1020:e04::500/121\",\r\n
+ \ \"2603:1020:e04:402::500/121\",\r\n \"2603:1020:f04:1::280/123\",\r\n
+ \ \"2603:1020:f04:1::300/121\",\r\n \"2603:1020:f04:402::500/121\",\r\n
+ \ \"2603:1020:1004:2::180/121\",\r\n \"2603:1020:1004:400::420/123\",\r\n
+ \ \"2603:1020:1004:400::4a0/123\",\r\n \"2603:1020:1004:400::580/121\",\r\n
+ \ \"2603:1020:1004:c02::100/121\",\r\n \"2603:1020:1104:1::4c0/123\",\r\n
+ \ \"2603:1020:1104:1::500/121\",\r\n \"2603:1020:1104:400::440/123\",\r\n
+ \ \"2603:1020:1104:400::480/121\",\r\n \"2603:1030:f:2::280/123\",\r\n
+ \ \"2603:1030:f:2::300/121\",\r\n \"2603:1030:f:400::d00/121\",\r\n
+ \ \"2603:1030:10::360/123\",\r\n \"2603:1030:10::500/121\",\r\n
+ \ \"2603:1030:10:402::500/121\",\r\n \"2603:1030:104::360/123\",\r\n
+ \ \"2603:1030:104::500/121\",\r\n \"2603:1030:104:402::500/121\",\r\n
+ \ \"2603:1030:107:1::200/123\",\r\n \"2603:1030:107:1::280/121\",\r\n
+ \ \"2603:1030:107:400::3c0/123\",\r\n \"2603:1030:107:400::480/121\",\r\n
+ \ \"2603:1030:210::360/123\",\r\n \"2603:1030:210::500/121\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2603:1030:302:402::80/123\",\r\n
+ \ \"2603:1030:302:402::100/121\",\r\n \"2603:1030:40b:2::240/123\",\r\n
+ \ \"2603:1030:40b:2::300/121\",\r\n \"2603:1030:40b:400::d00/121\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:402::500/121\",\r\n \"2603:1030:504::540/123\",\r\n
+ \ \"2603:1030:504::700/121\",\r\n \"2603:1030:504:c02::100/123\",\r\n
+ \ \"2603:1030:504:c02::180/121\",\r\n \"2603:1030:608:1::280/123\",\r\n
+ \ \"2603:1030:608:1::300/121\",\r\n \"2603:1030:608:402::500/121\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:402::500/121\",\r\n \"2603:1030:a07:1::280/123\",\r\n
+ \ \"2603:1030:a07:1::300/121\",\r\n \"2603:1030:a07:402::380/121\",\r\n
+ \ \"2603:1030:b04:1::280/123\",\r\n \"2603:1030:b04:1::300/121\",\r\n
+ \ \"2603:1030:b04:402::500/121\",\r\n \"2603:1030:c06:2::240/123\",\r\n
+ \ \"2603:1030:c06:2::300/121\",\r\n \"2603:1030:c06:400::d00/121\",\r\n
+ \ \"2603:1030:f05::360/123\",\r\n \"2603:1030:f05::500/121\",\r\n
+ \ \"2603:1030:f05:402::500/121\",\r\n \"2603:1030:1005:1::280/123\",\r\n
+ \ \"2603:1030:1005:1::300/121\",\r\n \"2603:1030:1005:402::500/121\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:402::500/121\",\r\n \"2603:1040:207:1::280/123\",\r\n
+ \ \"2603:1040:207:1::300/121\",\r\n \"2603:1040:207:402::500/121\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:402::500/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\",\r\n
+ \ \"2603:1040:806:1::280/123\",\r\n \"2603:1040:806:1::300/121\",\r\n
+ \ \"2603:1040:806:402::500/121\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:402::500/121\",\r\n
+ \ \"2603:1040:a06::460/123\",\r\n \"2603:1040:a06::600/121\",\r\n
+ \ \"2603:1040:a06:402::500/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\",\r\n \"2603:1040:d04:2::/123\",\r\n
+ \ \"2603:1040:d04:2::100/120\",\r\n \"2603:1040:d04:400::420/123\",\r\n
+ \ \"2603:1040:d04:400::580/121\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\",\r\n
+ \ \"2603:1040:f05::360/123\",\r\n \"2603:1040:f05::500/121\",\r\n
+ \ \"2603:1040:f05:402::500/121\",\r\n \"2603:1040:1104:1::580/121\",\r\n
+ \ \"2603:1040:1104:400::460/123\",\r\n \"2603:1050:6::360/123\",\r\n
+ \ \"2603:1050:6::500/121\",\r\n \"2603:1050:6:402::580/121\",\r\n
+ \ \"2603:1050:6:c02::2a0/123\",\r\n \"2603:1050:403:1::240/123\",\r\n
+ \ \"2603:1050:403:1::300/121\",\r\n \"2603:1050:403:400::580/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastAsia\",\r\n
+ \ \"id\": \"AzureMonitor.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.75.38.0/28\",\r\n
+ \ \"13.75.38.120/29\",\r\n \"13.75.39.76/30\",\r\n \"13.75.117.221/32\",\r\n
+ \ \"13.75.119.169/32\",\r\n \"13.94.39.13/32\",\r\n \"20.187.197.192/27\",\r\n
+ \ \"20.189.109.144/28\",\r\n \"20.189.111.0/28\",\r\n \"20.189.111.16/29\",\r\n
+ \ \"20.189.111.24/31\",\r\n \"23.97.65.103/32\",\r\n \"23.100.90.7/32\",\r\n
+ \ \"23.100.94.221/32\",\r\n \"23.101.0.142/32\",\r\n \"23.101.9.4/32\",\r\n
+ \ \"23.101.13.65/32\",\r\n \"52.229.218.221/32\",\r\n \"52.229.225.6/32\",\r\n
+ \ \"104.214.164.128/27\",\r\n \"2603:1040:207::780/121\",\r\n
+ \ \"2603:1040:207:1::280/123\",\r\n \"2603:1040:207:1::300/121\",\r\n
+ \ \"2603:1040:207:402::500/121\",\r\n \"2a01:111:f100:6000::4134:a6cf/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.82.100.176/32\",\r\n
+ \ \"13.82.184.151/32\",\r\n \"13.90.93.206/32\",\r\n \"13.90.248.141/32\",\r\n
+ \ \"13.90.249.229/32\",\r\n \"13.90.251.123/32\",\r\n \"13.92.40.198/32\",\r\n
+ \ \"13.92.40.223/32\",\r\n \"13.92.138.16/32\",\r\n \"13.92.179.52/32\",\r\n
+ \ \"13.92.211.249/32\",\r\n \"13.92.232.146/32\",\r\n \"13.92.254.218/32\",\r\n
+ \ \"13.92.255.146/32\",\r\n \"20.42.0.68/31\",\r\n \"20.42.65.128/25\",\r\n
+ \ \"20.42.73.128/25\",\r\n \"20.49.109.46/31\",\r\n \"20.49.109.80/28\",\r\n
+ \ \"20.49.111.16/28\",\r\n \"20.49.111.32/28\",\r\n \"20.62.132.0/25\",\r\n
+ \ \"23.96.28.38/32\",\r\n \"40.71.12.224/28\",\r\n \"40.71.12.240/30\",\r\n
+ \ \"40.71.12.248/29\",\r\n \"40.71.13.168/29\",\r\n \"40.71.14.112/30\",\r\n
+ \ \"40.71.183.225/32\",\r\n \"40.76.29.55/32\",\r\n \"40.76.53.225/32\",\r\n
+ \ \"40.78.226.216/29\",\r\n \"40.78.229.32/29\",\r\n \"40.79.154.80/29\",\r\n
+ \ \"40.79.156.32/29\",\r\n \"40.85.180.90/32\",\r\n \"40.87.67.118/32\",\r\n
+ \ \"40.112.49.101/32\",\r\n \"40.117.80.207/32\",\r\n \"40.117.95.162/32\",\r\n
+ \ \"40.117.147.74/32\",\r\n \"40.117.190.239/32\",\r\n \"40.117.197.224/32\",\r\n
+ \ \"40.121.57.2/32\",\r\n \"40.121.61.208/32\",\r\n \"40.121.135.131/32\",\r\n
+ \ \"40.121.163.228/32\",\r\n \"40.121.165.150/32\",\r\n \"40.121.210.163/32\",\r\n
+ \ \"52.150.36.187/32\",\r\n \"52.168.112.64/32\",\r\n \"52.168.136.177/32\",\r\n
+ \ \"52.186.121.41/32\",\r\n \"52.186.126.31/32\",\r\n \"52.188.179.229/32\",\r\n
+ \ \"52.191.197.52/32\",\r\n \"52.224.125.230/32\",\r\n \"52.224.162.220/32\",\r\n
+ \ \"52.224.235.3/32\",\r\n \"52.226.151.250/32\",\r\n \"104.41.152.101/32\",\r\n
+ \ \"104.41.157.59/32\",\r\n \"104.45.136.42/32\",\r\n \"168.62.169.17/32\",\r\n
+ \ \"2603:1030:210::60/123\",\r\n \"2603:1030:210::1c0/122\",\r\n
+ \ \"2603:1030:210::300/123\",\r\n \"2603:1030:210::360/123\",\r\n
+ \ \"2603:1030:210::500/121\",\r\n \"2603:1030:210:1::280/122\",\r\n
+ \ \"2603:1030:210:402::500/121\",\r\n \"2a01:111:f100:2000::a83e:3015/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:301c/128\",\r\n \"2a01:111:f100:2000::a83e:3083/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:30f3/128\",\r\n \"2a01:111:f100:2000::a83e:313a/128\",\r\n
+ \ \"2a01:111:f100:2000::a83e:335c/128\",\r\n \"2a01:111:f100:2000::a83e:3370/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2c8c/128\",\r\n \"2a01:111:f100:2002::8975:2ce6/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2d44/128\",\r\n \"2a01:111:f100:2002::8975:2e91/128\",\r\n
+ \ \"2a01:111:f100:2002::8975:2fc3/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2\",\r\n \"id\":
+ \"AzureMonitor.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.68.31.237/32\",\r\n
+ \ \"13.68.101.211/32\",\r\n \"13.68.106.77/32\",\r\n \"13.68.109.212/32\",\r\n
+ \ \"13.68.111.247/32\",\r\n \"20.41.49.208/32\",\r\n \"20.44.16.0/29\",\r\n
+ \ \"20.44.17.0/29\",\r\n \"20.44.73.196/32\",\r\n \"20.49.99.44/31\",\r\n
+ \ \"20.49.99.64/28\",\r\n \"20.49.102.24/29\",\r\n \"20.49.102.32/28\",\r\n
+ \ \"40.70.23.205/32\",\r\n \"40.70.148.0/30\",\r\n \"40.70.148.8/29\",\r\n
+ \ \"52.167.106.88/29\",\r\n \"52.167.107.64/29\",\r\n \"52.167.221.184/32\",\r\n
+ \ \"52.177.223.60/32\",\r\n \"52.179.192.178/32\",\r\n \"52.184.158.205/32\",\r\n
+ \ \"104.46.123.164/32\",\r\n \"104.209.156.106/32\",\r\n
+ \ \"104.209.161.217/32\",\r\n \"104.210.9.42/32\",\r\n \"137.116.82.175/32\",\r\n
+ \ \"2603:1030:408:6::18/128\",\r\n \"2603:1030:408:6::2a/128\",\r\n
+ \ \"2603:1030:408:6::3f/128\",\r\n \"2603:1030:408:6::59/128\",\r\n
+ \ \"2603:1030:408:7::37/128\",\r\n \"2603:1030:408:7::39/128\",\r\n
+ \ \"2603:1030:408:7::3b/128\",\r\n \"2603:1030:408:7::48/128\",\r\n
+ \ \"2603:1030:408:7::4f/128\",\r\n \"2603:1030:40c::60/123\",\r\n
+ \ \"2603:1030:40c::1c0/122\",\r\n \"2603:1030:40c::300/123\",\r\n
+ \ \"2603:1030:40c::360/123\",\r\n \"2603:1030:40c::500/121\",\r\n
+ \ \"2603:1030:40c:1::280/122\",\r\n \"2603:1030:40c:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.EastUS2EUAP\",\r\n
+ \ \"id\": \"AzureMonitor.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.14.0/28\",\r\n \"20.39.15.16/28\",\r\n \"20.39.15.32/28\",\r\n
+ \ \"20.51.17.64/27\",\r\n \"40.74.146.84/30\",\r\n \"40.74.147.160/29\",\r\n
+ \ \"40.74.150.32/27\",\r\n \"40.75.34.40/29\",\r\n \"40.75.35.64/29\",\r\n
+ \ \"52.138.90.48/30\",\r\n \"52.138.90.56/29\",\r\n \"2603:1030:409:2::6/128\",\r\n
+ \ \"2603:1030:409:2::b/128\",\r\n \"2603:1030:409:2::c/128\",\r\n
+ \ \"2603:1030:40b:1::280/122\",\r\n \"2603:1030:40b:2::80/121\",\r\n
+ \ \"2603:1030:40b:2::240/123\",\r\n \"2603:1030:40b:2::300/121\",\r\n
+ \ \"2603:1030:40b:400::d00/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceCentral\",\r\n \"id\":
+ \"AzureMonitor.FranceCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.40.137.91/32\",\r\n
+ \ \"20.40.140.212/32\",\r\n \"20.43.40.68/31\",\r\n \"20.43.41.178/31\",\r\n
+ \ \"20.43.44.128/28\",\r\n \"20.43.44.216/29\",\r\n \"20.43.44.224/28\",\r\n
+ \ \"20.188.36.28/32\",\r\n \"40.79.130.240/29\",\r\n \"40.79.132.32/29\",\r\n
+ \ \"40.79.138.40/30\",\r\n \"40.79.138.144/29\",\r\n \"40.79.146.40/30\",\r\n
+ \ \"40.79.146.144/29\",\r\n \"40.89.153.171/32\",\r\n \"40.89.189.61/32\",\r\n
+ \ \"2603:1020:805::60/123\",\r\n \"2603:1020:805::1c0/122\",\r\n
+ \ \"2603:1020:805::300/123\",\r\n \"2603:1020:805::360/123\",\r\n
+ \ \"2603:1020:805::500/121\",\r\n \"2603:1020:805:1::280/122\",\r\n
+ \ \"2603:1020:805:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.FranceSouth\",\r\n \"id\": \"AzureMonitor.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.8/29\",\r\n \"40.79.179.16/28\",\r\n \"2603:1020:905::780/121\",\r\n
+ \ \"2603:1020:905:1::280/123\",\r\n \"2603:1020:905:1::300/121\",\r\n
+ \ \"2603:1020:905:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyNorth\",\r\n \"id\": \"AzureMonitor.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.72.64/27\",\r\n \"51.116.54.32/27\",\r\n \"51.116.59.176/28\",\r\n
+ \ \"2603:1020:d01:2::a/128\",\r\n \"2603:1020:d04::780/121\",\r\n
+ \ \"2603:1020:d04:1::280/123\",\r\n \"2603:1020:d04:1::300/121\",\r\n
+ \ \"2603:1020:d04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.GermanyWestCentral\",\r\n \"id\":
+ \"AzureMonitor.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.32/27\",\r\n
+ \ \"51.116.149.0/27\",\r\n \"51.116.155.240/28\",\r\n \"51.116.242.152/29\",\r\n
+ \ \"51.116.245.96/28\",\r\n \"51.116.250.152/29\",\r\n \"51.116.253.32/28\",\r\n
+ \ \"2603:1020:c01:2::b/128\",\r\n \"2603:1020:c01:2::e/128\",\r\n
+ \ \"2603:1020:c04::60/123\",\r\n \"2603:1020:c04::1c0/122\",\r\n
+ \ \"2603:1020:c04::300/123\",\r\n \"2603:1020:c04::360/123\",\r\n
+ \ \"2603:1020:c04::500/121\",\r\n \"2603:1020:c04:1::280/122\",\r\n
+ \ \"2603:1020:c04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.JapanEast\",\r\n \"id\": \"AzureMonitor.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.26.213/32\",\r\n \"13.78.10.58/32\",\r\n \"13.78.13.189/32\",\r\n
+ \ \"13.78.108.160/29\",\r\n \"13.78.108.168/30\",\r\n \"13.78.109.112/29\",\r\n
+ \ \"13.78.111.192/32\",\r\n \"20.43.64.68/31\",\r\n \"20.43.65.154/31\",\r\n
+ \ \"20.43.70.96/28\",\r\n \"20.43.70.192/29\",\r\n \"20.43.70.200/30\",\r\n
+ \ \"20.43.70.204/32\",\r\n \"20.43.70.224/29\",\r\n \"20.191.165.64/27\",\r\n
+ \ \"23.102.66.132/32\",\r\n \"23.102.77.48/32\",\r\n \"40.79.187.8/29\",\r\n
+ \ \"40.79.190.160/27\",\r\n \"40.79.194.104/29\",\r\n \"40.79.194.112/29\",\r\n
+ \ \"52.155.118.97/32\",\r\n \"52.156.40.142/32\",\r\n \"52.185.132.101/32\",\r\n
+ \ \"52.185.132.170/32\",\r\n \"138.91.9.98/32\",\r\n \"2603:1040:407::60/123\",\r\n
+ \ \"2603:1040:407::1c0/122\",\r\n \"2603:1040:407::300/123\",\r\n
+ \ \"2603:1040:407::360/123\",\r\n \"2603:1040:407::500/121\",\r\n
+ \ \"2603:1040:407:1::280/122\",\r\n \"2603:1040:407:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.JapanWest\",\r\n
+ \ \"id\": \"AzureMonitor.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.189.225.128/27\",\r\n
+ \ \"40.74.101.32/28\",\r\n \"40.74.101.200/29\",\r\n \"40.80.180.160/27\",\r\n
+ \ \"2603:1040:606::780/121\",\r\n \"2603:1040:606:1::280/123\",\r\n
+ \ \"2603:1040:606:1::300/121\",\r\n \"2603:1040:606:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.KoreaCentral\",\r\n
+ \ \"id\": \"AzureMonitor.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.68/31\",\r\n \"20.41.67.112/28\",\r\n \"20.41.69.4/30\",\r\n
+ \ \"20.41.69.16/28\",\r\n \"20.41.69.48/31\",\r\n \"20.41.69.62/31\",\r\n
+ \ \"20.44.26.152/29\",\r\n \"20.44.26.248/29\",\r\n \"20.194.67.32/28\",\r\n
+ \ \"20.194.67.224/27\",\r\n \"20.194.72.224/27\",\r\n \"52.141.22.149/32\",\r\n
+ \ \"52.141.22.239/32\",\r\n \"52.231.18.240/28\",\r\n \"52.231.28.204/32\",\r\n
+ \ \"52.231.33.16/32\",\r\n \"52.231.64.72/32\",\r\n \"52.231.67.208/32\",\r\n
+ \ \"52.231.70.0/32\",\r\n \"52.231.108.46/32\",\r\n \"52.231.111.52/32\",\r\n
+ \ \"2603:1040:f05::60/123\",\r\n \"2603:1040:f05::1c0/122\",\r\n
+ \ \"2603:1040:f05::300/123\",\r\n \"2603:1040:f05::360/123\",\r\n
+ \ \"2603:1040:f05::500/121\",\r\n \"2603:1040:f05:1::280/122\",\r\n
+ \ \"2603:1040:f05:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.KoreaSouth\",\r\n \"id\": \"AzureMonitor.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.97.64/27\",\r\n \"52.147.112.96/27\",\r\n
+ \ \"52.231.147.160/28\",\r\n \"52.231.148.80/29\",\r\n \"2603:1040:e05::40/123\",\r\n
+ \ \"2603:1040:e05::80/121\",\r\n \"2603:1040:e05:402::80/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.NorthCentralUS\",\r\n
+ \ \"id\": \"AzureMonitor.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.20/30\",\r\n \"20.49.114.32/28\",\r\n
+ \ \"20.49.114.48/31\",\r\n \"20.135.13.192/26\",\r\n \"23.96.245.125/32\",\r\n
+ \ \"23.96.252.161/32\",\r\n \"23.96.252.216/32\",\r\n \"23.100.228.32/32\",\r\n
+ \ \"40.80.191.224/28\",\r\n \"52.162.87.50/32\",\r\n \"52.162.110.64/28\",\r\n
+ \ \"52.162.110.168/29\",\r\n \"52.162.214.75/32\",\r\n \"52.237.157.70/32\",\r\n
+ \ \"65.52.2.145/32\",\r\n \"65.52.5.76/32\",\r\n \"2603:1030:608::780/121\",\r\n
+ \ \"2603:1030:608:1::280/123\",\r\n \"2603:1030:608:1::300/121\",\r\n
+ \ \"2603:1030:608:402::500/121\",\r\n \"2a01:111:f100:1003::4134:36c2/128\",\r\n
+ \ \"2a01:111:f100:1003::4134:36d9/128\",\r\n \"2a01:111:f100:1003::4134:370d/128\",\r\n
+ \ \"2a01:111:f100:1005::a83e:f7fe/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorthEurope\",\r\n \"id\":
+ \"AzureMonitor.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.64/29\",\r\n
+ \ \"13.69.229.240/29\",\r\n \"13.69.233.0/30\",\r\n \"13.69.233.96/27\",\r\n
+ \ \"13.74.107.88/30\",\r\n \"13.74.108.128/29\",\r\n \"20.38.80.68/31\",\r\n
+ \ \"20.50.65.80/28\",\r\n \"20.50.68.112/29\",\r\n \"20.50.68.120/30\",\r\n
+ \ \"20.50.68.124/31\",\r\n \"20.50.68.128/29\",\r\n \"23.102.44.211/32\",\r\n
+ \ \"23.102.45.216/32\",\r\n \"40.69.81.159/32\",\r\n \"40.69.194.158/32\",\r\n
+ \ \"40.87.138.220/32\",\r\n \"40.87.140.215/32\",\r\n \"40.112.74.241/32\",\r\n
+ \ \"40.115.103.168/32\",\r\n \"40.115.104.31/32\",\r\n \"40.127.144.141/32\",\r\n
+ \ \"52.138.222.110/32\",\r\n \"52.138.226.88/29\",\r\n \"52.138.227.128/29\",\r\n
+ \ \"52.146.133.32/27\",\r\n \"52.155.162.238/32\",\r\n \"52.164.120.183/32\",\r\n
+ \ \"52.164.125.22/32\",\r\n \"52.164.225.5/32\",\r\n \"52.169.4.236/32\",\r\n
+ \ \"52.169.15.254/32\",\r\n \"52.169.30.110/32\",\r\n \"52.169.64.244/32\",\r\n
+ \ \"104.41.224.134/32\",\r\n \"137.116.226.81/32\",\r\n \"2603:1020:5::60/123\",\r\n
+ \ \"2603:1020:5::1c0/122\",\r\n \"2603:1020:5::300/123\",\r\n
+ \ \"2603:1020:5::360/123\",\r\n \"2603:1020:5::500/121\",\r\n
+ \ \"2603:1020:5:1::280/122\",\r\n \"2603:1020:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:a001::4134:e463/128\",\r\n \"2a01:111:f100:a004::bfeb:8c93/128\",\r\n
+ \ \"2a01:111:f100:a004::bfeb:8d32/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.NorwayEast\",\r\n \"id\":
+ \"AzureMonitor.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.68/31\",\r\n
+ \ \"51.120.98.0/29\",\r\n \"51.120.98.248/29\",\r\n \"51.120.106.152/29\",\r\n
+ \ \"51.120.210.152/29\",\r\n \"51.120.213.64/27\",\r\n \"51.120.232.34/31\",\r\n
+ \ \"51.120.232.160/27\",\r\n \"51.120.234.140/31\",\r\n \"51.120.235.240/28\",\r\n
+ \ \"2603:1020:e04::60/123\",\r\n \"2603:1020:e04::1c0/122\",\r\n
+ \ \"2603:1020:e04::300/123\",\r\n \"2603:1020:e04::360/123\",\r\n
+ \ \"2603:1020:e04::500/121\",\r\n \"2603:1020:e04:1::280/122\",\r\n
+ \ \"2603:1020:e04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.NorwayWest\",\r\n \"id\": \"AzureMonitor.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.128.32/27\",\r\n \"51.13.136.192/27\",\r\n
+ \ \"51.120.219.208/28\",\r\n \"2603:1020:f04::780/121\",\r\n
+ \ \"2603:1020:f04:1::280/123\",\r\n \"2603:1020:f04:1::300/121\",\r\n
+ \ \"2603:1020:f04:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureMonitor.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"102.133.122.152/29\",\r\n
+ \ \"102.133.123.240/29\",\r\n \"102.133.126.64/27\",\r\n
+ \ \"102.133.155.48/28\",\r\n \"102.133.161.73/32\",\r\n \"102.133.162.233/32\",\r\n
+ \ \"102.133.216.68/31\",\r\n \"102.133.216.106/31\",\r\n
+ \ \"102.133.218.144/28\",\r\n \"102.133.218.244/30\",\r\n
+ \ \"102.133.219.128/28\",\r\n \"102.133.221.160/27\",\r\n
+ \ \"102.133.250.152/29\",\r\n \"102.133.251.80/29\",\r\n
+ \ \"2603:1000:104::4c0/122\",\r\n \"2603:1000:104::600/122\",\r\n
+ \ \"2603:1000:104:1::280/122\",\r\n \"2603:1000:104:2::/123\",\r\n
+ \ \"2603:1000:104:2::80/121\",\r\n \"2603:1000:104:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SouthAfricaWest\",\r\n
+ \ \"id\": \"AzureMonitor.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.64.128/27\",\r\n \"102.37.80.64/27\",\r\n
+ \ \"102.133.27.48/28\",\r\n \"102.133.28.64/29\",\r\n \"2603:1000:4::780/121\",\r\n
+ \ \"2603:1000:4:1::280/123\",\r\n \"2603:1000:4:1::300/121\",\r\n
+ \ \"2603:1000:4:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SouthCentralUS\",\r\n \"id\":
+ \"AzureMonitor.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.65.96.175/32\",\r\n
+ \ \"13.65.206.67/32\",\r\n \"13.65.211.125/32\",\r\n \"13.66.36.144/32\",\r\n
+ \ \"13.66.37.172/32\",\r\n \"13.66.59.226/32\",\r\n \"13.66.60.151/32\",\r\n
+ \ \"13.73.240.0/29\",\r\n \"13.73.242.32/29\",\r\n \"13.73.244.192/31\",\r\n
+ \ \"13.73.248.6/31\",\r\n \"13.73.253.104/29\",\r\n \"13.73.253.112/29\",\r\n
+ \ \"13.73.253.120/32\",\r\n \"13.84.134.59/32\",\r\n \"13.84.148.7/32\",\r\n
+ \ \"13.84.149.186/32\",\r\n \"13.84.173.179/32\",\r\n \"13.84.189.95/32\",\r\n
+ \ \"13.84.225.10/32\",\r\n \"13.85.70.142/32\",\r\n \"20.45.122.152/29\",\r\n
+ \ \"20.45.123.80/29\",\r\n \"20.45.123.116/30\",\r\n \"20.45.125.224/28\",\r\n
+ \ \"20.49.91.32/28\",\r\n \"20.49.93.192/26\",\r\n \"20.65.132.0/26\",\r\n
+ \ \"23.100.122.113/32\",\r\n \"23.102.181.197/32\",\r\n \"40.74.249.98/32\",\r\n
+ \ \"40.84.133.5/32\",\r\n \"40.84.150.47/32\",\r\n \"40.84.189.107/32\",\r\n
+ \ \"40.84.192.116/32\",\r\n \"40.119.4.128/32\",\r\n \"40.119.8.72/31\",\r\n
+ \ \"40.119.11.160/28\",\r\n \"40.119.11.180/30\",\r\n \"40.124.64.192/26\",\r\n
+ \ \"52.171.56.178/32\",\r\n \"52.171.138.167/32\",\r\n \"52.185.215.171/32\",\r\n
+ \ \"104.44.140.84/32\",\r\n \"104.214.70.219/32\",\r\n \"104.214.104.109/32\",\r\n
+ \ \"104.215.81.124/32\",\r\n \"104.215.96.105/32\",\r\n \"104.215.100.22/32\",\r\n
+ \ \"104.215.103.78/32\",\r\n \"104.215.115.118/32\",\r\n
+ \ \"157.55.177.6/32\",\r\n \"2603:1030:800:5::bfee:a418/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a429/128\",\r\n \"2603:1030:800:5::bfee:a42a/128\",\r\n
+ \ \"2603:1030:800:5::bfee:a435/128\",\r\n \"2603:1030:807::60/123\",\r\n
+ \ \"2603:1030:807::1c0/122\",\r\n \"2603:1030:807::300/123\",\r\n
+ \ \"2603:1030:807::360/123\",\r\n \"2603:1030:807::500/121\",\r\n
+ \ \"2603:1030:807:1::280/122\",\r\n \"2603:1030:807:402::500/121\",\r\n
+ \ \"2a01:111:f100:4002::9d37:c0bd/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SoutheastAsia\",\r\n \"id\":
+ \"AzureMonitor.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.67.9.192/28\",\r\n
+ \ \"13.67.10.64/29\",\r\n \"13.67.10.92/30\",\r\n \"13.67.15.0/32\",\r\n
+ \ \"13.67.77.233/32\",\r\n \"13.67.89.191/32\",\r\n \"13.76.85.243/32\",\r\n
+ \ \"13.76.87.86/32\",\r\n \"20.43.128.68/31\",\r\n \"20.43.152.45/32\",\r\n
+ \ \"20.44.192.217/32\",\r\n \"23.98.82.120/29\",\r\n \"23.98.82.208/28\",\r\n
+ \ \"23.98.104.160/28\",\r\n \"23.98.106.136/29\",\r\n \"23.98.106.144/30\",\r\n
+ \ \"23.98.106.148/31\",\r\n \"23.98.106.150/32\",\r\n \"23.98.106.152/29\",\r\n
+ \ \"40.78.234.56/29\",\r\n \"40.78.234.144/28\",\r\n \"52.163.94.131/32\",\r\n
+ \ \"52.163.122.20/32\",\r\n \"111.221.88.173/32\",\r\n \"137.116.146.215/32\",\r\n
+ \ \"137.116.151.139/32\",\r\n \"138.91.32.98/32\",\r\n \"138.91.37.93/32\",\r\n
+ \ \"168.63.174.169/32\",\r\n \"168.63.242.221/32\",\r\n \"207.46.224.101/32\",\r\n
+ \ \"207.46.236.191/32\",\r\n \"2603:1040:5::160/123\",\r\n
+ \ \"2603:1040:5::2c0/122\",\r\n \"2603:1040:5::400/123\",\r\n
+ \ \"2603:1040:5::460/123\",\r\n \"2603:1040:5::600/121\",\r\n
+ \ \"2603:1040:5:1::280/122\",\r\n \"2603:1040:5:402::500/121\",\r\n
+ \ \"2a01:111:f100:7000::6fdd:5343/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.SouthIndia\",\r\n \"id\":
+ \"AzureMonitor.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.41.208.32/27\",\r\n
+ \ \"40.78.195.16/28\",\r\n \"40.78.196.48/29\",\r\n \"52.172.113.64/27\",\r\n
+ \ \"104.211.216.161/32\",\r\n \"2603:1040:c06::780/121\",\r\n
+ \ \"2603:1040:c06:1::280/123\",\r\n \"2603:1040:c06:1::300/121\",\r\n
+ \ \"2603:1040:c06:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureMonitor.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"51.107.48.68/31\",\r\n
+ \ \"51.107.48.126/31\",\r\n \"51.107.51.16/28\",\r\n \"51.107.51.120/29\",\r\n
+ \ \"51.107.52.192/30\",\r\n \"51.107.52.200/29\",\r\n \"51.107.59.176/28\",\r\n
+ \ \"51.107.75.144/32\",\r\n \"51.107.75.207/32\",\r\n \"51.107.128.96/27\",\r\n
+ \ \"51.107.242.0/27\",\r\n \"2603:1020:a04::60/123\",\r\n
+ \ \"2603:1020:a04::1c0/122\",\r\n \"2603:1020:a04::300/123\",\r\n
+ \ \"2603:1020:a04::360/123\",\r\n \"2603:1020:a04::500/121\",\r\n
+ \ \"2603:1020:a04:1::280/122\",\r\n \"2603:1020:a04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureMonitor.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.147.16/28\",\r\n \"51.107.147.116/30\",\r\n
+ \ \"51.107.148.0/28\",\r\n \"51.107.148.16/31\",\r\n \"51.107.155.176/28\",\r\n
+ \ \"51.107.156.48/29\",\r\n \"51.107.192.160/27\",\r\n \"51.107.250.0/27\",\r\n
+ \ \"2603:1020:b04::780/121\",\r\n \"2603:1020:b04:1::280/123\",\r\n
+ \ \"2603:1020:b04:1::300/121\",\r\n \"2603:1020:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAECentral\",\r\n
+ \ \"id\": \"AzureMonitor.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.71.0/27\",\r\n \"20.37.74.232/29\",\r\n \"20.37.74.240/28\",\r\n
+ \ \"40.120.8.192/27\",\r\n \"2603:1040:b00:2::b/128\",\r\n
+ \ \"2603:1040:b04::780/121\",\r\n \"2603:1040:b04:1::280/123\",\r\n
+ \ \"2603:1040:b04:1::300/121\",\r\n \"2603:1040:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UAENorth\",\r\n
+ \ \"id\": \"AzureMonitor.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.0/27\",\r\n
+ \ \"20.38.143.44/30\",\r\n \"20.38.152.32/27\",\r\n \"40.120.75.32/28\",\r\n
+ \ \"65.52.250.232/29\",\r\n \"65.52.250.240/28\",\r\n \"2603:1040:900:2::e/128\",\r\n
+ \ \"2603:1040:904::60/123\",\r\n \"2603:1040:904::1c0/122\",\r\n
+ \ \"2603:1040:904::300/123\",\r\n \"2603:1040:904::360/123\",\r\n
+ \ \"2603:1040:904::500/121\",\r\n \"2603:1040:904:1::280/122\",\r\n
+ \ \"2603:1040:904:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.UKSouth\",\r\n \"id\": \"AzureMonitor.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.8.104/29\",\r\n \"51.104.15.255/32\",\r\n
+ \ \"51.104.24.68/31\",\r\n \"51.104.25.142/31\",\r\n \"51.104.29.192/28\",\r\n
+ \ \"51.104.30.160/29\",\r\n \"51.104.30.168/32\",\r\n \"51.104.30.176/28\",\r\n
+ \ \"51.104.252.13/32\",\r\n \"51.104.255.249/32\",\r\n \"51.105.66.152/29\",\r\n
+ \ \"51.105.67.160/29\",\r\n \"51.105.70.128/27\",\r\n \"51.105.74.152/29\",\r\n
+ \ \"51.105.75.144/29\",\r\n \"51.140.6.23/32\",\r\n \"51.140.54.208/32\",\r\n
+ \ \"51.140.60.235/32\",\r\n \"51.140.69.144/32\",\r\n \"51.140.148.48/28\",\r\n
+ \ \"51.140.152.61/32\",\r\n \"51.140.152.186/32\",\r\n \"51.140.163.207/32\",\r\n
+ \ \"51.140.180.52/32\",\r\n \"51.140.181.40/32\",\r\n \"51.143.165.22/32\",\r\n
+ \ \"51.143.209.96/27\",\r\n \"51.145.44.242/32\",\r\n \"2603:1020:705::60/123\",\r\n
+ \ \"2603:1020:705::1c0/122\",\r\n \"2603:1020:705::300/123\",\r\n
+ \ \"2603:1020:705::360/123\",\r\n \"2603:1020:705::500/121\",\r\n
+ \ \"2603:1020:705:1::280/122\",\r\n \"2603:1020:705:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.UKWest\",\r\n
+ \ \"id\": \"AzureMonitor.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.58.66.96/27\",\r\n
+ \ \"51.11.97.96/27\",\r\n \"51.137.164.92/31\",\r\n \"51.137.164.112/28\",\r\n
+ \ \"51.137.164.200/29\",\r\n \"51.137.164.208/28\",\r\n \"51.140.211.160/28\",\r\n
+ \ \"51.140.212.64/29\",\r\n \"51.141.113.128/32\",\r\n \"2603:1020:605::780/121\",\r\n
+ \ \"2603:1020:605:1::280/123\",\r\n \"2603:1020:605:1::300/121\",\r\n
+ \ \"2603:1020:605:402::500/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureMonitor.WestCentralUS\",\r\n \"id\":
+ \"AzureMonitor.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.71.195.192/27\",\r\n
+ \ \"13.71.196.56/29\",\r\n \"13.71.199.116/32\",\r\n \"13.78.135.15/32\",\r\n
+ \ \"13.78.145.11/32\",\r\n \"13.78.151.158/32\",\r\n \"13.78.172.58/32\",\r\n
+ \ \"13.78.189.112/32\",\r\n \"13.78.236.149/32\",\r\n \"13.78.237.51/32\",\r\n
+ \ \"40.67.122.0/26\",\r\n \"52.150.152.48/28\",\r\n \"52.150.152.90/31\",\r\n
+ \ \"52.150.154.24/29\",\r\n \"52.150.154.32/28\",\r\n \"52.161.8.76/32\",\r\n
+ \ \"52.161.11.71/32\",\r\n \"52.161.12.245/32\",\r\n \"2603:1030:b00::ca/128\",\r\n
+ \ \"2603:1030:b00::e8/128\",\r\n \"2603:1030:b00::164/128\",\r\n
+ \ \"2603:1030:b00::2a1/128\",\r\n \"2603:1030:b00::4d9/128\",\r\n
+ \ \"2603:1030:b00::4db/128\",\r\n \"2603:1030:b00::50d/128\",\r\n
+ \ \"2603:1030:b04::780/121\",\r\n \"2603:1030:b04:1::280/123\",\r\n
+ \ \"2603:1030:b04:1::300/121\",\r\n \"2603:1030:b04:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestEurope\",\r\n
+ \ \"id\": \"AzureMonitor.WestEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureMonitor\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.51.175/32\",\r\n \"13.69.51.218/32\",\r\n
+ \ \"13.69.65.16/28\",\r\n \"13.69.66.136/29\",\r\n \"13.69.67.60/30\",\r\n
+ \ \"13.69.67.126/32\",\r\n \"13.69.106.88/29\",\r\n \"13.69.106.208/28\",\r\n
+ \ \"13.69.109.224/27\",\r\n \"13.80.134.255/32\",\r\n \"20.61.99.64/27\",\r\n
+ \ \"23.101.69.223/32\",\r\n \"40.68.61.229/32\",\r\n \"40.68.154.39/32\",\r\n
+ \ \"40.74.24.68/31\",\r\n \"40.74.36.208/32\",\r\n \"40.74.59.40/32\",\r\n
+ \ \"40.113.176.128/28\",\r\n \"40.113.178.16/28\",\r\n \"40.113.178.32/28\",\r\n
+ \ \"40.113.178.48/32\",\r\n \"40.114.241.141/32\",\r\n \"40.115.54.120/32\",\r\n
+ \ \"51.105.248.23/32\",\r\n \"51.144.41.38/32\",\r\n \"51.144.81.252/32\",\r\n
+ \ \"52.178.26.73/32\",\r\n \"52.178.37.209/32\",\r\n \"52.232.35.33/32\",\r\n
+ \ \"52.232.65.133/32\",\r\n \"52.232.106.242/32\",\r\n \"52.236.186.88/29\",\r\n
+ \ \"52.236.186.208/28\",\r\n \"104.40.222.36/32\",\r\n \"137.117.144.33/32\",\r\n
+ \ \"2603:1020:206::60/123\",\r\n \"2603:1020:206::1c0/122\",\r\n
+ \ \"2603:1020:206::300/123\",\r\n \"2603:1020:206::360/123\",\r\n
+ \ \"2603:1020:206::500/121\",\r\n \"2603:1020:206:1::280/122\",\r\n
+ \ \"2603:1020:206:402::500/121\",\r\n \"2a01:111:f100:9001::1761:91e4/128\",\r\n
+ \ \"2a01:111:f100:9001::1761:958a/128\",\r\n \"2a01:111:f100:9001::1761:9696/128\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestIndia\",\r\n
+ \ \"id\": \"AzureMonitor.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"20.38.128.64/29\",\r\n
+ \ \"20.38.132.64/27\",\r\n \"52.136.53.96/27\",\r\n \"104.211.147.128/28\",\r\n
+ \ \"2603:1040:806::780/121\",\r\n \"2603:1040:806:1::280/123\",\r\n
+ \ \"2603:1040:806:1::300/121\",\r\n \"2603:1040:806:402::500/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureMonitor.WestUS\",\r\n
+ \ \"id\": \"AzureMonitor.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.224/28\",\r\n
+ \ \"13.86.218.248/29\",\r\n \"13.86.223.128/26\",\r\n \"13.88.177.28/32\",\r\n
+ \ \"13.91.42.27/32\",\r\n \"13.91.102.27/32\",\r\n \"13.93.215.80/32\",\r\n
+ \ \"13.93.233.49/32\",\r\n \"13.93.236.73/32\",\r\n \"20.49.120.64/28\",\r\n
+ \ \"20.66.2.192/26\",\r\n \"20.189.172.0/25\",\r\n \"40.78.23.86/32\",\r\n
+ \ \"40.78.57.61/32\",\r\n \"40.78.107.177/32\",\r\n \"40.118.129.58/32\",\r\n
+ \ \"52.250.228.8/29\",\r\n \"52.250.228.16/28\",\r\n \"52.250.228.32/31\",\r\n
+ \ \"65.52.122.208/32\",\r\n \"104.42.40.28/32\",\r\n \"104.45.230.69/32\",\r\n
+ \ \"104.45.232.72/32\",\r\n \"2603:1030:a07::780/121\",\r\n
+ \ \"2603:1030:a07:1::280/123\",\r\n \"2603:1030:a07:1::300/121\",\r\n
+ \ \"2603:1030:a07:402::380/121\",\r\n \"2a01:111:f100:3000::a83e:187a/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:187c/128\",\r\n \"2a01:111:f100:3000::a83e:1913/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1978/128\",\r\n \"2a01:111:f100:3000::a83e:19c0/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1a54/127\",\r\n \"2a01:111:f100:3000::a83e:1a8e/128\",\r\n
+ \ \"2a01:111:f100:3000::a83e:1adf/128\",\r\n \"2a01:111:f100:3000::a83e:1b12/128\",\r\n
+ \ \"2a01:111:f100:3001::a83e:a67/128\"\r\n ]\r\n }\r\n
+ \ },\r\n {\r\n \"name\": \"AzureMonitor.WestUS2\",\r\n \"id\":
+ \"AzureMonitor.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureMonitor\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.168/29\",\r\n
+ \ \"13.66.141.152/29\",\r\n \"13.66.143.218/32\",\r\n \"13.66.147.144/28\",\r\n
+ \ \"13.66.160.124/32\",\r\n \"13.66.220.187/32\",\r\n \"13.66.231.27/32\",\r\n
+ \ \"13.77.150.166/32\",\r\n \"13.77.155.39/32\",\r\n \"13.77.174.177/32\",\r\n
+ \ \"20.42.128.68/31\",\r\n \"20.51.9.0/26\",\r\n \"20.190.60.32/32\",\r\n
+ \ \"20.190.60.38/32\",\r\n \"40.64.132.128/28\",\r\n \"40.64.132.240/28\",\r\n
+ \ \"40.64.134.128/29\",\r\n \"40.64.134.136/31\",\r\n \"40.64.134.138/32\",\r\n
+ \ \"40.78.242.168/30\",\r\n \"40.78.243.16/29\",\r\n \"40.78.247.64/26\",\r\n
+ \ \"40.78.250.104/30\",\r\n \"40.78.250.208/29\",\r\n \"40.78.253.192/26\",\r\n
+ \ \"51.143.88.183/32\",\r\n \"52.151.11.176/32\",\r\n \"52.175.198.74/32\",\r\n
+ \ \"52.175.231.105/32\",\r\n \"52.175.235.148/32\",\r\n \"52.183.41.109/32\",\r\n
+ \ \"52.183.66.112/32\",\r\n \"52.183.73.112/32\",\r\n \"52.183.95.86/32\",\r\n
+ \ \"52.183.127.155/32\",\r\n \"52.191.170.253/32\",\r\n \"52.229.25.130/32\",\r\n
+ \ \"52.229.37.75/32\",\r\n \"52.247.202.90/32\",\r\n \"2603:1030:c02:2::4e1/128\",\r\n
+ \ \"2603:1030:c06:1::280/122\",\r\n \"2603:1030:c06:2::80/121\",\r\n
+ \ \"2603:1030:c06:2::240/123\",\r\n \"2603:1030:c06:2::300/121\",\r\n
+ \ \"2603:1030:c06:400::d00/121\",\r\n \"2603:1030:d00::1d/128\",\r\n
+ \ \"2603:1030:d00::48/128\",\r\n \"2603:1030:d00::5a/128\",\r\n
+ \ \"2603:1030:d00::82/128\",\r\n \"2603:1030:d00::84/128\",\r\n
+ \ \"2603:1030:d00::9a/128\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets\",\r\n \"id\": \"AzureOpenDatasets\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.32/28\",\r\n \"20.36.120.192/28\",\r\n
+ \ \"20.37.64.192/28\",\r\n \"20.37.156.224/28\",\r\n \"20.37.195.32/28\",\r\n
+ \ \"20.37.224.192/28\",\r\n \"20.38.84.112/28\",\r\n \"20.38.136.192/28\",\r\n
+ \ \"20.39.11.32/28\",\r\n \"20.41.4.192/28\",\r\n \"20.41.65.160/28\",\r\n
+ \ \"20.41.193.128/28\",\r\n \"20.42.4.224/28\",\r\n \"20.42.131.0/28\",\r\n
+ \ \"20.42.227.0/28\",\r\n \"20.43.41.160/28\",\r\n \"20.43.65.160/28\",\r\n
+ \ \"20.43.130.112/28\",\r\n \"20.45.112.192/28\",\r\n \"20.45.192.192/28\",\r\n
+ \ \"20.150.160.192/28\",\r\n \"20.189.106.208/28\",\r\n \"20.192.225.128/28\",\r\n
+ \ \"40.67.48.192/28\",\r\n \"40.74.30.112/28\",\r\n \"40.80.57.128/28\",\r\n
+ \ \"40.80.169.128/28\",\r\n \"40.80.188.32/28\",\r\n \"40.82.253.80/28\",\r\n
+ \ \"40.89.17.128/28\",\r\n \"51.12.41.32/28\",\r\n \"51.12.193.32/28\",\r\n
+ \ \"51.104.25.160/28\",\r\n \"51.105.80.192/28\",\r\n \"51.105.88.192/28\",\r\n
+ \ \"51.107.48.192/28\",\r\n \"51.107.144.192/28\",\r\n \"51.116.48.112/28\",\r\n
+ \ \"51.116.144.112/28\",\r\n \"51.120.40.192/28\",\r\n \"51.120.224.192/28\",\r\n
+ \ \"51.137.161.144/28\",\r\n \"51.143.192.192/28\",\r\n \"52.136.48.192/28\",\r\n
+ \ \"52.140.105.128/28\",\r\n \"52.150.139.80/28\",\r\n \"52.228.81.144/28\",\r\n
+ \ \"102.133.56.112/28\",\r\n \"102.133.216.112/28\",\r\n
+ \ \"191.235.225.160/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.AustraliaEast\",\r\n \"id\": \"AzureOpenDatasets.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.37.195.32/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.FranceSouth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.105.88.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.GermanyNorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.112/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAECentral\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.64.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UAENorth\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.38.136.192/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureOpenDatasets.UKWest\",\r\n
+ \ \"id\": \"AzureOpenDatasets.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.161.144/28\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureOpenDatasets.WestEurope\",\r\n \"id\":
+ \"AzureOpenDatasets.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureOpenDatasets\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.30.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureOpenDatasets.WestUS2\",\r\n \"id\": \"AzureOpenDatasets.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureOpenDatasets\",\r\n \"addressPrefixes\": [\r\n \"20.42.131.0/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal\",\r\n
+ \ \"id\": \"AzurePortal\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.35.35/32\",\r\n \"13.67.35.77/32\",\r\n \"13.68.130.251/32\",\r\n
+ \ \"13.68.235.98/32\",\r\n \"13.69.112.176/28\",\r\n \"13.69.126.92/32\",\r\n
+ \ \"13.71.190.228/32\",\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"13.77.1.236/32\",\r\n \"13.77.55.208/28\",\r\n
+ \ \"13.77.202.2/32\",\r\n \"13.78.49.187/32\",\r\n \"13.78.132.155/32\",\r\n
+ \ \"13.78.230.142/32\",\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"13.90.156.71/32\",\r\n \"13.92.138.76/32\",\r\n \"20.36.121.128/27\",\r\n
+ \ \"20.36.122.56/30\",\r\n \"20.36.125.104/29\",\r\n \"20.37.65.128/27\",\r\n
+ \ \"20.37.66.56/30\",\r\n \"20.37.70.96/29\",\r\n \"20.37.195.224/27\",\r\n
+ \ \"20.37.196.252/30\",\r\n \"20.37.198.64/27\",\r\n \"20.37.225.128/27\",\r\n
+ \ \"20.37.226.56/30\",\r\n \"20.37.229.152/29\",\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.38.137.160/27\",\r\n \"20.38.138.60/30\",\r\n
+ \ \"20.38.142.88/29\",\r\n \"20.38.149.208/28\",\r\n \"20.39.12.32/27\",\r\n
+ \ \"20.39.12.232/30\",\r\n \"20.40.200.0/27\",\r\n \"20.40.200.160/30\",\r\n
+ \ \"20.40.224.226/31\",\r\n \"20.40.225.32/29\",\r\n \"20.41.5.192/27\",\r\n
+ \ \"20.41.65.224/27\",\r\n \"20.41.67.88/30\",\r\n \"20.41.193.224/27\",\r\n
+ \ \"20.41.197.16/30\",\r\n \"20.42.6.192/27\",\r\n \"20.42.227.192/27\",\r\n
+ \ \"20.42.228.220/30\",\r\n \"20.42.228.224/27\",\r\n \"20.42.230.80/28\",\r\n
+ \ \"20.43.42.64/27\",\r\n \"20.43.43.164/30\",\r\n \"20.43.46.248/29\",\r\n
+ \ \"20.43.66.64/27\",\r\n \"20.43.67.92/30\",\r\n \"20.43.67.96/27\",\r\n
+ \ \"20.43.70.64/28\",\r\n \"20.43.123.160/28\",\r\n \"20.43.132.32/27\",\r\n
+ \ \"20.44.19.32/28\",\r\n \"20.45.112.124/30\",\r\n \"20.45.113.128/27\",\r\n
+ \ \"20.45.116.64/29\",\r\n \"20.45.125.240/28\",\r\n \"20.45.195.160/27\",\r\n
+ \ \"20.45.197.192/27\",\r\n \"20.45.197.228/30\",\r\n \"20.46.10.40/29\",\r\n
+ \ \"20.48.193.48/29\",\r\n \"20.49.99.16/28\",\r\n \"20.49.99.32/30\",\r\n
+ \ \"20.49.103.96/29\",\r\n \"20.49.109.36/30\",\r\n \"20.49.109.44/31\",\r\n
+ \ \"20.49.109.48/28\",\r\n \"20.49.115.184/29\",\r\n \"20.49.120.0/27\",\r\n
+ \ \"20.49.120.36/30\",\r\n \"20.49.126.156/30\",\r\n \"20.49.127.224/28\",\r\n
+ \ \"20.50.1.32/27\",\r\n \"20.50.1.160/27\",\r\n \"20.50.1.200/30\",\r\n
+ \ \"20.50.1.208/28\",\r\n \"20.50.65.72/30\",\r\n \"20.51.16.120/29\",\r\n
+ \ \"20.53.44.4/30\",\r\n \"20.53.44.64/29\",\r\n \"20.61.98.128/29\",\r\n
+ \ \"20.62.128.240/29\",\r\n \"20.72.20.96/27\",\r\n \"20.150.161.192/27\",\r\n
+ \ \"20.150.165.144/30\",\r\n \"20.150.166.160/29\",\r\n \"20.187.197.0/29\",\r\n
+ \ \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n \"20.189.109.160/27\",\r\n
+ \ \"20.189.224.208/29\",\r\n \"20.191.161.80/29\",\r\n \"20.192.161.192/27\",\r\n
+ \ \"20.192.164.180/30\",\r\n \"20.192.166.160/29\",\r\n \"20.192.228.128/27\",\r\n
+ \ \"20.192.230.0/30\",\r\n \"20.192.230.112/29\",\r\n \"20.194.72.56/29\",\r\n
+ \ \"23.98.104.80/28\",\r\n \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n
+ \ \"23.98.108.44/31\",\r\n \"23.98.108.168/29\",\r\n \"23.102.65.134/32\",\r\n
+ \ \"40.64.128.128/27\",\r\n \"40.64.132.88/30\",\r\n \"40.64.132.96/28\",\r\n
+ \ \"40.64.135.88/29\",\r\n \"40.65.114.234/32\",\r\n \"40.67.48.124/30\",\r\n
+ \ \"40.67.49.128/27\",\r\n \"40.67.50.192/27\",\r\n \"40.67.52.88/29\",\r\n
+ \ \"40.67.121.128/28\",\r\n \"40.71.15.144/28\",\r\n \"40.78.239.48/28\",\r\n
+ \ \"40.78.245.208/28\",\r\n \"40.79.189.96/28\",\r\n \"40.80.58.128/27\",\r\n
+ \ \"40.80.59.28/30\",\r\n \"40.80.59.32/27\",\r\n \"40.80.169.224/27\",\r\n
+ \ \"40.80.172.16/30\",\r\n \"40.80.173.192/29\",\r\n \"40.80.190.160/27\",\r\n
+ \ \"40.80.191.200/30\",\r\n \"40.82.253.224/27\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.89.18.160/27\",\r\n \"40.89.20.132/30\",\r\n
+ \ \"40.89.23.232/29\",\r\n \"40.113.117.57/32\",\r\n \"40.114.78.132/32\",\r\n
+ \ \"40.114.236.251/32\",\r\n \"40.117.86.243/32\",\r\n \"40.117.237.78/32\",\r\n
+ \ \"40.119.9.236/30\",\r\n \"51.12.41.20/30\",\r\n \"51.12.41.160/27\",\r\n
+ \ \"51.12.43.128/29\",\r\n \"51.12.193.20/30\",\r\n \"51.12.193.160/27\",\r\n
+ \ \"51.12.194.104/29\",\r\n \"51.13.136.8/29\",\r\n \"51.104.27.96/27\",\r\n
+ \ \"51.104.28.220/30\",\r\n \"51.104.28.224/28\",\r\n \"51.105.80.124/30\",\r\n
+ \ \"51.105.81.128/27\",\r\n \"51.105.89.160/27\",\r\n \"51.105.90.152/30\",\r\n
+ \ \"51.107.49.160/27\",\r\n \"51.107.50.60/30\",\r\n \"51.107.53.240/29\",\r\n
+ \ \"51.107.145.128/27\",\r\n \"51.107.146.56/30\",\r\n \"51.107.149.248/29\",\r\n
+ \ \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n \"51.116.51.160/29\",\r\n
+ \ \"51.116.144.192/27\",\r\n \"51.116.145.140/30\",\r\n \"51.116.148.104/29\",\r\n
+ \ \"51.120.41.160/27\",\r\n \"51.120.42.60/30\",\r\n \"51.120.225.128/27\",\r\n
+ \ \"51.120.226.56/30\",\r\n \"51.120.232.16/29\",\r\n \"51.137.162.160/27\",\r\n
+ \ \"51.137.164.80/30\",\r\n \"51.137.167.152/29\",\r\n \"51.140.69.25/32\",\r\n
+ \ \"51.140.138.84/32\",\r\n \"51.140.149.64/28\",\r\n \"51.143.192.124/30\",\r\n
+ \ \"51.143.193.128/27\",\r\n \"51.143.208.192/29\",\r\n \"51.145.3.27/32\",\r\n
+ \ \"51.145.21.195/32\",\r\n \"52.136.49.160/27\",\r\n \"52.136.51.72/30\",\r\n
+ \ \"52.136.52.232/29\",\r\n \"52.136.184.64/29\",\r\n \"52.140.105.224/27\",\r\n
+ \ \"52.140.107.112/28\",\r\n \"52.140.108.64/30\",\r\n \"52.140.111.96/29\",\r\n
+ \ \"52.146.132.80/29\",\r\n \"52.150.139.224/27\",\r\n \"52.150.140.216/30\",\r\n
+ \ \"52.150.152.16/28\",\r\n \"52.150.152.224/27\",\r\n \"52.150.156.232/29\",\r\n
+ \ \"52.161.101.86/32\",\r\n \"52.163.207.80/32\",\r\n \"52.172.112.152/29\",\r\n
+ \ \"52.172.181.227/32\",\r\n \"52.172.190.71/32\",\r\n \"52.172.191.4/32\",\r\n
+ \ \"52.172.215.87/32\",\r\n \"52.228.24.159/32\",\r\n \"52.228.83.160/27\",\r\n
+ \ \"52.228.84.84/30\",\r\n \"52.228.84.96/28\",\r\n \"52.233.66.46/32\",\r\n
+ \ \"52.243.76.246/32\",\r\n \"102.133.56.160/27\",\r\n \"102.133.58.192/30\",\r\n
+ \ \"102.133.61.176/29\",\r\n \"102.133.217.192/27\",\r\n
+ \ \"102.133.218.56/30\",\r\n \"102.133.221.0/29\",\r\n \"104.41.216.228/32\",\r\n
+ \ \"104.42.195.92/32\",\r\n \"104.46.178.96/29\",\r\n \"104.211.89.213/32\",\r\n
+ \ \"104.211.101.116/32\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"104.215.146.128/32\",\r\n
+ \ \"137.116.247.179/32\",\r\n \"191.233.10.96/27\",\r\n \"191.233.15.0/29\",\r\n
+ \ \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n \"191.234.139.144/29\",\r\n
+ \ \"191.235.227.160/27\",\r\n \"213.199.128.226/32\",\r\n
+ \ \"2603:1000:4::700/121\",\r\n \"2603:1000:104::200/121\",\r\n
+ \ \"2603:1000:104::400/121\",\r\n \"2603:1000:104:1::680/121\",\r\n
+ \ \"2603:1010:6::100/121\",\r\n \"2603:1010:6:1::680/121\",\r\n
+ \ \"2603:1010:101::700/121\",\r\n \"2603:1010:304::700/121\",\r\n
+ \ \"2603:1010:404::700/121\",\r\n \"2603:1020:5::100/121\",\r\n
+ \ \"2603:1020:5:1::680/121\",\r\n \"2603:1020:206::100/121\",\r\n
+ \ \"2603:1020:206:1::680/121\",\r\n \"2603:1020:305::700/121\",\r\n
+ \ \"2603:1020:405::700/121\",\r\n \"2603:1020:605::700/121\",\r\n
+ \ \"2603:1020:705::100/121\",\r\n \"2603:1020:705:1::680/121\",\r\n
+ \ \"2603:1020:805::100/121\",\r\n \"2603:1020:805:1::680/121\",\r\n
+ \ \"2603:1020:905::700/121\",\r\n \"2603:1020:a04::100/121\",\r\n
+ \ \"2603:1020:a04:1::680/121\",\r\n \"2603:1020:b04::700/121\",\r\n
+ \ \"2603:1020:c04::100/121\",\r\n \"2603:1020:c04:1::680/121\",\r\n
+ \ \"2603:1020:d04::700/121\",\r\n \"2603:1020:e04::100/121\",\r\n
+ \ \"2603:1020:e04:1::680/121\",\r\n \"2603:1020:f04::700/121\",\r\n
+ \ \"2603:1020:1004::680/121\",\r\n \"2603:1020:1004:1::100/121\",\r\n
+ \ \"2603:1020:1104::780/121\",\r\n \"2603:1030:f:1::700/121\",\r\n
+ \ \"2603:1030:10::100/121\",\r\n \"2603:1030:10:1::680/121\",\r\n
+ \ \"2603:1030:104::100/121\",\r\n \"2603:1030:104:1::680/121\",\r\n
+ \ \"2603:1030:107:1::/121\",\r\n \"2603:1030:210::100/121\",\r\n
+ \ \"2603:1030:210:1::680/121\",\r\n \"2603:1030:40b:1::680/121\",\r\n
+ \ \"2603:1030:40c::100/121\",\r\n \"2603:1030:40c:1::680/121\",\r\n
+ \ \"2603:1030:504::100/121\",\r\n \"2603:1030:504:1::680/121\",\r\n
+ \ \"2603:1030:608::700/121\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\",\r\n \"2603:1030:a07::700/121\",\r\n
+ \ \"2603:1030:b04::700/121\",\r\n \"2603:1030:c06:1::680/121\",\r\n
+ \ \"2603:1030:f05::100/121\",\r\n \"2603:1030:f05:1::680/121\",\r\n
+ \ \"2603:1030:1005::700/121\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\",\r\n \"2603:1040:207::700/121\",\r\n
+ \ \"2603:1040:407::100/121\",\r\n \"2603:1040:407:1::680/121\",\r\n
+ \ \"2603:1040:606::700/121\",\r\n \"2603:1040:806::700/121\",\r\n
+ \ \"2603:1040:904::100/121\",\r\n \"2603:1040:904:1::680/121\",\r\n
+ \ \"2603:1040:a06::200/121\",\r\n \"2603:1040:a06:1::680/121\",\r\n
+ \ \"2603:1040:b04::700/121\",\r\n \"2603:1040:c06::700/121\",\r\n
+ \ \"2603:1040:d04::680/121\",\r\n \"2603:1040:d04:1::100/121\",\r\n
+ \ \"2603:1040:f05::100/121\",\r\n \"2603:1040:f05:1::680/121\",\r\n
+ \ \"2603:1040:1104::780/121\",\r\n \"2603:1050:6::100/121\",\r\n
+ \ \"2603:1050:6:1::680/121\",\r\n \"2603:1050:403::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.AustraliaCentral\",\r\n
+ \ \"id\": \"AzurePortal.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.225.128/27\",\r\n \"20.37.226.56/30\",\r\n
+ \ \"20.37.229.152/29\",\r\n \"2603:1010:304::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.BrazilSouth\",\r\n
+ \ \"id\": \"AzurePortal.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"191.234.136.0/27\",\r\n \"191.234.136.48/30\",\r\n
+ \ \"191.234.139.144/29\",\r\n \"191.235.227.160/27\",\r\n
+ \ \"2603:1050:6::100/121\",\r\n \"2603:1050:6:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastAsia\",\r\n
+ \ \"id\": \"AzurePortal.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.220.109/32\",\r\n \"13.88.222.0/32\",\r\n
+ \ \"20.187.197.0/29\",\r\n \"20.189.108.96/27\",\r\n \"20.189.109.88/30\",\r\n
+ \ \"20.189.109.160/27\",\r\n \"2603:1040:207::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.EastUS2\",\r\n
+ \ \"id\": \"AzurePortal.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.192/27\",\r\n \"20.44.19.32/28\",\r\n \"20.49.99.16/28\",\r\n
+ \ \"20.49.99.32/30\",\r\n \"20.49.103.96/29\",\r\n \"2603:1030:40c::100/121\",\r\n
+ \ \"2603:1030:40c:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.FranceSouth\",\r\n \"id\": \"AzurePortal.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.160/27\",\r\n
+ \ \"51.105.90.152/30\",\r\n \"52.136.184.64/29\",\r\n \"2603:1020:905::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.GermanyNorth\",\r\n
+ \ \"id\": \"AzurePortal.GermanyNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.48.192/27\",\r\n \"51.116.49.140/30\",\r\n
+ \ \"51.116.51.160/29\",\r\n \"2603:1020:d04::700/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.KoreaSouth\",\r\n
+ \ \"id\": \"AzurePortal.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzurePortal\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.169.224/27\",\r\n \"40.80.172.16/30\",\r\n
+ \ \"40.80.173.192/29\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzurePortal.NorthEurope\",\r\n \"id\": \"AzurePortal.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"20.38.85.192/27\",\r\n
+ \ \"20.38.87.224/27\",\r\n \"20.50.65.72/30\",\r\n \"52.146.132.80/29\",\r\n
+ \ \"104.41.216.228/32\",\r\n \"137.116.247.179/32\",\r\n
+ \ \"2603:1020:5::100/121\",\r\n \"2603:1020:5:1::680/121\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzurePortal.SouthCentralUS\",\r\n
+ \ \"id\": \"AzurePortal.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzurePortal\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.249.32/27\",\r\n \"13.73.249.160/28\",\r\n
+ \ \"13.73.255.248/29\",\r\n \"20.45.125.240/28\",\r\n \"40.84.132.239/32\",\r\n
+ \ \"40.84.228.255/32\",\r\n \"40.119.9.236/30\",\r\n \"104.214.117.155/32\",\r\n
+ \ \"104.215.120.160/32\",\r\n \"2603:1030:807::100/121\",\r\n
+ \ \"2603:1030:807:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzurePortal.SoutheastAsia\",\r\n \"id\": \"AzurePortal.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzurePortal\",\r\n \"addressPrefixes\": [\r\n \"13.67.35.35/32\",\r\n
+ \ \"13.67.35.77/32\",\r\n \"20.43.132.32/27\",\r\n \"23.98.104.80/28\",\r\n
+ \ \"23.98.104.96/27\",\r\n \"23.98.104.128/30\",\r\n \"23.98.108.44/31\",\r\n
+ \ \"23.98.108.168/29\",\r\n \"40.78.239.48/28\",\r\n \"52.163.207.80/32\",\r\n
+ \ \"104.215.146.128/32\",\r\n \"2603:1040:5::200/121\",\r\n
+ \ \"2603:1040:5:1::680/121\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager\",\r\n \"id\": \"AzureResourceManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.176/28\",\r\n \"13.67.18.0/23\",\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"13.69.229.224/28\",\r\n \"13.69.234.0/23\",\r\n
+ \ \"13.70.74.64/28\",\r\n \"13.70.76.0/23\",\r\n \"13.71.173.192/28\",\r\n
+ \ \"13.71.196.80/28\",\r\n \"13.71.198.0/24\",\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"13.75.39.16/28\",\r\n \"13.77.53.32/28\",\r\n
+ \ \"13.77.55.0/25\",\r\n \"13.78.109.96/28\",\r\n \"13.86.219.80/28\",\r\n
+ \ \"13.86.222.0/24\",\r\n \"13.87.57.240/28\",\r\n \"13.87.60.0/23\",\r\n
+ \ \"13.87.123.240/28\",\r\n \"13.87.126.0/24\",\r\n \"13.89.180.0/23\",\r\n
+ \ \"20.36.108.48/28\",\r\n \"20.36.110.0/23\",\r\n \"20.36.115.144/28\",\r\n
+ \ \"20.36.118.0/23\",\r\n \"20.36.126.0/23\",\r\n \"20.37.76.48/28\",\r\n
+ \ \"20.37.78.0/23\",\r\n \"20.37.230.0/23\",\r\n \"20.38.128.32/28\",\r\n
+ \ \"20.38.130.0/23\",\r\n \"20.38.150.0/23\",\r\n \"20.40.206.240/28\",\r\n
+ \ \"20.40.226.0/23\",\r\n \"20.41.70.0/23\",\r\n \"20.43.120.224/28\",\r\n
+ \ \"20.43.124.0/23\",\r\n \"20.44.3.240/28\",\r\n \"20.44.6.0/23\",\r\n
+ \ \"20.44.8.16/28\",\r\n \"20.44.16.112/28\",\r\n \"20.44.20.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"20.45.88.0/23\",\r\n \"20.45.118.0/23\",\r\n
+ \ \"20.46.8.0/23\",\r\n \"20.48.194.0/23\",\r\n \"20.49.116.0/23\",\r\n
+ \ \"20.50.68.96/28\",\r\n \"20.51.10.0/23\",\r\n \"20.51.18.0/23\",\r\n
+ \ \"20.53.42.0/23\",\r\n \"20.58.64.0/23\",\r\n \"20.61.100.0/23\",\r\n
+ \ \"20.62.56.0/23\",\r\n \"20.62.130.0/23\",\r\n \"20.65.128.0/23\",\r\n
+ \ \"20.66.0.0/23\",\r\n \"20.72.28.64/26\",\r\n \"20.88.64.64/26\",\r\n
+ \ \"20.150.225.128/26\",\r\n \"20.150.242.0/23\",\r\n \"20.187.198.0/23\",\r\n
+ \ \"20.189.168.0/24\",\r\n \"20.189.226.0/23\",\r\n \"20.191.162.0/23\",\r\n
+ \ \"20.192.32.128/26\",\r\n \"20.192.40.0/23\",\r\n \"20.192.52.0/23\",\r\n
+ \ \"20.193.196.0/23\",\r\n \"20.193.204.0/26\",\r\n \"20.195.144.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.67.54.0/23\",\r\n \"40.67.59.208/28\",\r\n
+ \ \"40.67.62.0/23\",\r\n \"40.67.120.0/24\",\r\n \"40.69.108.32/28\",\r\n
+ \ \"40.69.112.0/22\",\r\n \"40.71.13.224/28\",\r\n \"40.74.102.0/28\",\r\n
+ \ \"40.75.35.32/28\",\r\n \"40.75.38.0/23\",\r\n \"40.78.196.32/28\",\r\n
+ \ \"40.78.198.0/23\",\r\n \"40.78.203.224/28\",\r\n \"40.78.206.0/23\",\r\n
+ \ \"40.78.234.176/28\",\r\n \"40.78.254.0/23\",\r\n \"40.79.131.240/28\",\r\n
+ \ \"40.79.134.0/23\",\r\n \"40.79.158.0/23\",\r\n \"40.79.180.0/28\",\r\n
+ \ \"40.79.182.0/23\",\r\n \"40.79.198.0/23\",\r\n \"40.80.174.0/23\",\r\n
+ \ \"40.80.178.0/23\",\r\n \"40.113.178.0/28\",\r\n \"40.120.80.0/23\",\r\n
+ \ \"51.11.64.0/24\",\r\n \"51.11.96.0/24\",\r\n \"51.12.44.0/23\",\r\n
+ \ \"51.12.101.64/26\",\r\n \"51.12.196.0/23\",\r\n \"51.12.205.0/26\",\r\n
+ \ \"51.104.8.224/28\",\r\n \"51.105.78.0/23\",\r\n \"51.105.94.0/23\",\r\n
+ \ \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n \"51.107.158.0/23\",\r\n
+ \ \"51.116.52.0/23\",\r\n \"51.116.60.32/28\",\r\n \"51.116.62.0/23\",\r\n
+ \ \"51.116.150.0/23\",\r\n \"51.116.156.32/28\",\r\n \"51.116.159.0/24\",\r\n
+ \ \"51.120.46.0/23\",\r\n \"51.120.100.32/28\",\r\n \"51.120.102.0/23\",\r\n
+ \ \"51.120.220.32/28\",\r\n \"51.120.222.0/23\",\r\n \"51.120.230.0/23\",\r\n
+ \ \"51.138.208.0/23\",\r\n \"51.140.212.16/28\",\r\n \"51.140.214.0/24\",\r\n
+ \ \"51.143.210.0/23\",\r\n \"52.136.54.0/23\",\r\n \"52.138.94.0/23\",\r\n
+ \ \"52.139.104.0/23\",\r\n \"52.146.134.0/23\",\r\n \"52.147.96.0/24\",\r\n
+ \ \"52.150.158.0/23\",\r\n \"52.162.110.224/28\",\r\n \"52.172.114.0/23\",\r\n
+ \ \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n \"52.231.148.64/28\",\r\n
+ \ \"52.231.150.0/24\",\r\n \"52.240.242.0/23\",\r\n \"65.52.252.48/28\",\r\n
+ \ \"65.52.254.0/23\",\r\n \"102.133.28.16/28\",\r\n \"102.133.30.0/23\",\r\n
+ \ \"102.133.62.0/23\",\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"104.46.160.0/24\",\r\n \"104.46.161.0/25\",\r\n
+ \ \"104.46.180.0/23\",\r\n \"104.214.162.0/23\",\r\n \"168.61.138.0/23\",\r\n
+ \ \"168.61.143.192/26\",\r\n \"191.233.52.0/23\",\r\n \"191.233.205.16/28\",\r\n
+ \ \"191.234.140.0/23\",\r\n \"191.234.158.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\",\r\n \"2603:1010:6::180/122\",\r\n
+ \ \"2603:1010:6:402::280/122\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\",\r\n \"2603:1010:304::6c0/122\",\r\n
+ \ \"2603:1010:304:402::280/122\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\",\r\n \"2603:1020:5::180/122\",\r\n
+ \ \"2603:1020:5:402::280/122\",\r\n \"2603:1020:206::180/122\",\r\n
+ \ \"2603:1020:206:402::280/122\",\r\n \"2603:1020:305::6c0/122\",\r\n
+ \ \"2603:1020:305:402::280/122\",\r\n \"2603:1020:405::6c0/122\",\r\n
+ \ \"2603:1020:405:402::280/122\",\r\n \"2603:1020:605::6c0/122\",\r\n
+ \ \"2603:1020:605:402::280/122\",\r\n \"2603:1020:705::180/122\",\r\n
+ \ \"2603:1020:705:402::280/122\",\r\n \"2603:1020:805::180/122\",\r\n
+ \ \"2603:1020:805:402::280/122\",\r\n \"2603:1020:905::6c0/122\",\r\n
+ \ \"2603:1020:905:402::280/122\",\r\n \"2603:1020:a04::180/122\",\r\n
+ \ \"2603:1020:a04:402::280/122\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\",\r\n \"2603:1020:c04::180/122\",\r\n
+ \ \"2603:1020:c04:402::280/122\",\r\n \"2603:1020:d04::6c0/122\",\r\n
+ \ \"2603:1020:d04:402::280/122\",\r\n \"2603:1020:e04::180/122\",\r\n
+ \ \"2603:1020:e04:3::300/120\",\r\n \"2603:1020:e04:402::280/122\",\r\n
+ \ \"2603:1020:f04::6c0/122\",\r\n \"2603:1020:f04:402::280/122\",\r\n
+ \ \"2603:1020:1004:1::400/120\",\r\n \"2603:1020:1004:400::180/122\",\r\n
+ \ \"2603:1020:1104:1::/120\",\r\n \"2603:1020:1104:400::280/122\",\r\n
+ \ \"2603:1030:f:1::6c0/122\",\r\n \"2603:1030:f:2::700/120\",\r\n
+ \ \"2603:1030:f:400::a80/122\",\r\n \"2603:1030:10::180/122\",\r\n
+ \ \"2603:1030:10:402::280/122\",\r\n \"2603:1030:104::180/122\",\r\n
+ \ \"2603:1030:104:402::280/122\",\r\n \"2603:1030:107:1::100/120\",\r\n
+ \ \"2603:1030:107:400::200/122\",\r\n \"2603:1030:210::180/122\",\r\n
+ \ \"2603:1030:210:402::280/122\",\r\n \"2603:1030:40b:2::40/122\",\r\n
+ \ \"2603:1030:40b:400::a80/122\",\r\n \"2603:1030:40c::180/122\",\r\n
+ \ \"2603:1030:40c:402::280/122\",\r\n \"2603:1030:504::400/120\",\r\n
+ \ \"2603:1030:504:402::180/122\",\r\n \"2603:1030:608::6c0/122\",\r\n
+ \ \"2603:1030:608:402::280/122\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\",\r\n \"2603:1030:a07::6c0/122\",\r\n
+ \ \"2603:1030:a07:402::900/122\",\r\n \"2603:1030:b04::6c0/122\",\r\n
+ \ \"2603:1030:b04:402::280/122\",\r\n \"2603:1030:c06:2::40/122\",\r\n
+ \ \"2603:1030:c06:400::a80/122\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\",\r\n \"2603:1030:1005::6c0/122\",\r\n
+ \ \"2603:1030:1005:402::280/122\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\",\r\n \"2603:1040:207::6c0/122\",\r\n
+ \ \"2603:1040:207:402::280/122\",\r\n \"2603:1040:407::180/122\",\r\n
+ \ \"2603:1040:407:402::280/122\",\r\n \"2603:1040:606::6c0/122\",\r\n
+ \ \"2603:1040:606:402::280/122\",\r\n \"2603:1040:806::6c0/122\",\r\n
+ \ \"2603:1040:806:402::280/122\",\r\n \"2603:1040:904::180/122\",\r\n
+ \ \"2603:1040:904:402::280/122\",\r\n \"2603:1040:a06::280/122\",\r\n
+ \ \"2603:1040:a06:402::280/122\",\r\n \"2603:1040:b04::6c0/122\",\r\n
+ \ \"2603:1040:b04:402::280/122\",\r\n \"2603:1040:c06::6c0/122\",\r\n
+ \ \"2603:1040:c06:402::280/122\",\r\n \"2603:1040:d04:1::400/120\",\r\n
+ \ \"2603:1040:d04:400::180/122\",\r\n \"2603:1040:f05::180/122\",\r\n
+ \ \"2603:1040:f05:2::100/120\",\r\n \"2603:1040:f05:402::280/122\",\r\n
+ \ \"2603:1040:1104:1::/120\",\r\n \"2603:1040:1104:400::280/122\",\r\n
+ \ \"2603:1050:6::180/122\",\r\n \"2603:1050:6:402::280/122\",\r\n
+ \ \"2603:1050:403:1::40/122\",\r\n \"2603:1050:403:400::440/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.115.144/28\",\r\n \"20.36.118.0/23\",\r\n
+ \ \"20.36.126.0/23\",\r\n \"2603:1010:404::6c0/122\",\r\n
+ \ \"2603:1010:404:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"AzureResourceManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.32/28\",\r\n \"13.77.55.0/25\",\r\n \"104.46.160.0/24\",\r\n
+ \ \"104.46.161.0/25\",\r\n \"104.46.180.0/23\",\r\n \"2603:1010:101::6c0/122\",\r\n
+ \ \"2603:1010:101:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.CanadaCentral\",\r\n \"id\":
+ \"AzureResourceManager.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.71.173.192/28\",\r\n
+ \ \"20.38.150.0/23\",\r\n \"20.48.194.0/23\",\r\n \"2603:1030:f05::180/122\",\r\n
+ \ \"2603:1030:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.KoreaCentral\",\r\n \"id\":
+ \"AzureResourceManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.70.0/23\",\r\n
+ \ \"20.44.30.0/24\",\r\n \"52.231.19.208/28\",\r\n \"52.231.22.0/24\",\r\n
+ \ \"2603:1040:f05::180/122\",\r\n \"2603:1040:f05:2::100/120\",\r\n
+ \ \"2603:1040:f05:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaNorth\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.123.224/28\",\r\n \"102.133.158.0/23\",\r\n
+ \ \"102.133.222.0/23\",\r\n \"2603:1000:104::480/122\",\r\n
+ \ \"2603:1000:104:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthAfricaWest\",\r\n \"id\":
+ \"AzureResourceManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.28.16/28\",\r\n
+ \ \"102.133.30.0/23\",\r\n \"102.133.62.0/23\",\r\n \"2603:1000:4::6c0/122\",\r\n
+ \ \"2603:1000:4:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SouthCentralUS\",\r\n \"id\":
+ \"AzureResourceManager.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.73.240.224/28\",\r\n
+ \ \"13.73.246.0/23\",\r\n \"20.65.128.0/23\",\r\n \"2603:1030:807::180/122\",\r\n
+ \ \"2603:1030:807:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SoutheastAsia\",\r\n \"id\":
+ \"AzureResourceManager.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.67.18.0/23\",\r\n
+ \ \"23.98.110.0/23\",\r\n \"40.78.234.176/28\",\r\n \"2603:1040:5::280/122\",\r\n
+ \ \"2603:1040:5:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.SwitzerlandNorth\",\r\n \"id\":
+ \"AzureResourceManager.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.54.0/23\",\r\n \"51.107.60.32/28\",\r\n \"51.107.62.0/23\",\r\n
+ \ \"2603:1020:a04::180/122\",\r\n \"2603:1020:a04:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureResourceManager.SwitzerlandWest\",\r\n
+ \ \"id\": \"AzureResourceManager.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureResourceManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.150.0/23\",\r\n \"51.107.156.32/28\",\r\n
+ \ \"51.107.158.0/23\",\r\n \"2603:1020:b04::6c0/122\",\r\n
+ \ \"2603:1020:b04:402::280/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"AzureResourceManager.WestEurope\",\r\n \"id\":
+ \"AzureResourceManager.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"AzureResourceManager\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.32/28\",\r\n
+ \ \"13.69.114.0/23\",\r\n \"20.61.100.0/23\",\r\n \"40.113.178.0/28\",\r\n
+ \ \"2603:1020:206::180/122\",\r\n \"2603:1020:206:402::280/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR\",\r\n
+ \ \"id\": \"AzureSignalR\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.145.0/26\",\r\n \"13.67.15.64/27\",\r\n \"13.69.113.0/24\",\r\n
+ \ \"13.69.232.128/25\",\r\n \"13.70.74.224/27\",\r\n \"13.71.199.32/27\",\r\n
+ \ \"13.73.244.64/27\",\r\n \"13.74.111.0/25\",\r\n \"13.78.109.224/27\",\r\n
+ \ \"13.89.175.128/26\",\r\n \"20.38.132.96/27\",\r\n \"20.38.143.192/27\",\r\n
+ \ \"20.38.149.224/27\",\r\n \"20.40.229.0/27\",\r\n \"20.42.64.128/25\",\r\n
+ \ \"20.42.72.0/25\",\r\n \"20.44.10.128/26\",\r\n \"20.44.17.128/26\",\r\n
+ \ \"20.45.123.192/27\",\r\n \"20.46.11.96/27\",\r\n \"20.48.196.192/27\",\r\n
+ \ \"20.49.91.192/27\",\r\n \"20.49.119.96/27\",\r\n \"20.51.12.32/27\",\r\n
+ \ \"20.51.17.224/27\",\r\n \"20.53.47.32/27\",\r\n \"20.61.102.64/27\",\r\n
+ \ \"20.62.59.32/27\",\r\n \"20.62.133.64/27\",\r\n \"20.65.132.224/27\",\r\n
+ \ \"20.66.3.224/27\",\r\n \"20.69.0.192/27\",\r\n \"20.135.13.160/27\",\r\n
+ \ \"20.150.174.160/27\",\r\n \"20.150.244.160/27\",\r\n \"20.189.170.0/24\",\r\n
+ \ \"20.191.166.64/27\",\r\n \"20.192.44.64/27\",\r\n \"20.194.73.192/27\",\r\n
+ \ \"20.195.65.192/27\",\r\n \"20.195.72.192/27\",\r\n \"23.98.86.64/27\",\r\n
+ \ \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n \"40.70.148.192/26\",\r\n
+ \ \"40.71.15.0/25\",\r\n \"40.78.204.96/27\",\r\n \"40.78.238.64/26\",\r\n
+ \ \"40.78.238.128/25\",\r\n \"40.78.245.64/26\",\r\n \"40.78.253.0/26\",\r\n
+ \ \"40.79.132.160/27\",\r\n \"40.79.139.96/27\",\r\n \"40.79.148.32/27\",\r\n
+ \ \"40.79.163.96/27\",\r\n \"40.79.171.192/27\",\r\n \"40.79.189.0/27\",\r\n
+ \ \"40.79.197.0/27\",\r\n \"40.80.53.32/27\",\r\n \"40.120.64.160/27\",\r\n
+ \ \"51.12.17.160/27\",\r\n \"51.12.46.192/27\",\r\n \"51.12.101.192/27\",\r\n
+ \ \"51.12.168.0/27\",\r\n \"51.104.9.64/27\",\r\n \"51.105.69.32/27\",\r\n
+ \ \"51.105.77.0/27\",\r\n \"51.107.128.128/27\",\r\n \"51.107.192.192/27\",\r\n
+ \ \"51.107.242.192/27\",\r\n \"51.107.250.192/27\",\r\n \"51.116.149.96/27\",\r\n
+ \ \"51.116.246.32/27\",\r\n \"51.120.213.96/27\",\r\n \"51.120.233.96/27\",\r\n
+ \ \"51.138.210.96/27\",\r\n \"51.143.212.128/27\",\r\n \"52.136.53.224/27\",\r\n
+ \ \"52.138.92.224/27\",\r\n \"52.138.229.128/25\",\r\n \"52.139.107.96/27\",\r\n
+ \ \"52.146.136.32/27\",\r\n \"52.167.109.0/26\",\r\n \"52.178.16.0/24\",\r\n
+ \ \"52.182.141.64/26\",\r\n \"52.231.20.96/27\",\r\n \"52.231.20.192/26\",\r\n
+ \ \"52.236.190.0/24\",\r\n \"102.37.160.32/27\",\r\n \"102.133.126.96/27\",\r\n
+ \ \"104.214.164.160/27\",\r\n \"191.233.207.128/27\",\r\n
+ \ \"191.238.72.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.AustraliaEast\",\r\n \"id\": \"AzureSignalR.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSignalR\",\r\n \"addressPrefixes\": [\r\n \"13.70.74.224/27\",\r\n
+ \ \"20.53.47.32/27\",\r\n \"40.79.163.96/27\",\r\n \"40.79.171.192/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.CanadaEast\",\r\n
+ \ \"id\": \"AzureSignalR.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.108.192/26\",\r\n \"40.69.110.128/27\",\r\n
+ \ \"52.139.107.96/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"AzureSignalR.EastUS\",\r\n \"id\": \"AzureSignalR.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSignalR\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.64.128/25\",\r\n \"20.42.72.0/25\",\r\n
+ \ \"20.62.133.64/27\",\r\n \"40.71.15.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSignalR.NorthEurope\",\r\n
+ \ \"id\": \"AzureSignalR.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSignalR\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.232.128/25\",\r\n \"13.74.111.0/25\",\r\n
+ \ \"52.138.229.128/25\",\r\n \"52.146.136.32/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"AzureSiteRecovery\",\r\n \"id\":
+ \"AzureSiteRecovery\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSiteRecovery\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.141.240/28\",\r\n \"13.67.10.96/28\",\r\n
+ \ \"13.69.67.80/28\",\r\n \"13.69.107.80/28\",\r\n \"13.69.230.16/28\",\r\n
+ \ \"13.70.74.96/28\",\r\n \"13.70.159.158/32\",\r\n \"13.71.173.224/28\",\r\n
+ \ \"13.71.196.144/28\",\r\n \"13.73.242.192/28\",\r\n \"13.74.108.144/28\",\r\n
+ \ \"13.75.39.80/28\",\r\n \"13.77.53.64/28\",\r\n \"13.78.109.128/28\",\r\n
+ \ \"13.82.88.226/32\",\r\n \"13.84.148.14/32\",\r\n \"13.86.219.176/28\",\r\n
+ \ \"13.87.37.4/32\",\r\n \"13.87.58.48/28\",\r\n \"13.87.124.48/28\",\r\n
+ \ \"13.89.174.144/28\",\r\n \"20.36.34.70/32\",\r\n \"20.36.69.62/32\",\r\n
+ \ \"20.36.108.96/28\",\r\n \"20.36.115.224/28\",\r\n \"20.36.120.80/28\",\r\n
+ \ \"20.37.64.80/28\",\r\n \"20.37.76.128/28\",\r\n \"20.37.156.96/28\",\r\n
+ \ \"20.37.192.112/28\",\r\n \"20.37.224.80/28\",\r\n \"20.38.80.112/28\",\r\n
+ \ \"20.38.128.80/28\",\r\n \"20.38.136.80/28\",\r\n \"20.38.147.160/28\",\r\n
+ \ \"20.39.8.80/28\",\r\n \"20.41.4.64/28\",\r\n \"20.41.64.96/28\",\r\n
+ \ \"20.41.192.80/28\",\r\n \"20.42.4.96/28\",\r\n \"20.42.129.128/28\",\r\n
+ \ \"20.42.224.80/28\",\r\n \"20.43.40.112/28\",\r\n \"20.43.64.112/28\",\r\n
+ \ \"20.43.121.16/28\",\r\n \"20.43.130.64/28\",\r\n \"20.44.4.80/28\",\r\n
+ \ \"20.44.8.176/28\",\r\n \"20.44.17.32/28\",\r\n \"20.44.27.192/28\",\r\n
+ \ \"20.45.75.232/32\",\r\n \"20.45.112.80/28\",\r\n \"20.45.123.96/28\",\r\n
+ \ \"20.45.192.80/28\",\r\n \"20.49.83.48/28\",\r\n \"20.49.91.48/28\",\r\n
+ \ \"20.72.16.0/28\",\r\n \"20.72.28.32/28\",\r\n \"20.150.160.80/28\",\r\n
+ \ \"20.150.172.48/28\",\r\n \"20.150.179.208/28\",\r\n \"20.150.187.208/28\",\r\n
+ \ \"20.189.106.96/28\",\r\n \"20.192.99.208/28\",\r\n \"20.192.160.0/28\",\r\n
+ \ \"20.192.225.0/28\",\r\n \"20.192.235.224/28\",\r\n \"20.193.203.208/28\",\r\n
+ \ \"20.194.67.48/28\",\r\n \"23.96.195.247/32\",\r\n \"23.98.83.80/28\",\r\n
+ \ \"40.67.48.80/28\",\r\n \"40.67.60.80/28\",\r\n \"40.69.108.64/28\",\r\n
+ \ \"40.69.144.231/32\",\r\n \"40.69.212.238/32\",\r\n \"40.70.148.96/28\",\r\n
+ \ \"40.71.14.0/28\",\r\n \"40.74.24.112/28\",\r\n \"40.74.147.176/28\",\r\n
+ \ \"40.75.35.80/28\",\r\n \"40.78.196.64/28\",\r\n \"40.78.204.16/28\",\r\n
+ \ \"40.78.229.48/28\",\r\n \"40.78.236.144/28\",\r\n \"40.78.243.160/28\",\r\n
+ \ \"40.78.251.96/28\",\r\n \"40.79.132.64/28\",\r\n \"40.79.139.0/28\",\r\n
+ \ \"40.79.146.192/28\",\r\n \"40.79.156.48/28\",\r\n \"40.79.163.16/28\",\r\n
+ \ \"40.79.171.96/28\",\r\n \"40.79.180.32/28\",\r\n \"40.79.187.176/28\",\r\n
+ \ \"40.79.195.160/28\",\r\n \"40.80.51.96/28\",\r\n \"40.80.56.80/28\",\r\n
+ \ \"40.80.168.80/28\",\r\n \"40.80.176.16/28\",\r\n \"40.80.184.96/28\",\r\n
+ \ \"40.82.248.96/28\",\r\n \"40.83.179.48/32\",\r\n \"40.89.16.80/28\",\r\n
+ \ \"40.119.9.192/28\",\r\n \"40.120.75.96/28\",\r\n \"40.123.219.238/32\",\r\n
+ \ \"51.12.47.0/28\",\r\n \"51.12.100.32/28\",\r\n \"51.12.198.112/28\",\r\n
+ \ \"51.12.204.32/28\",\r\n \"51.12.227.208/28\",\r\n \"51.12.235.208/28\",\r\n
+ \ \"51.104.9.0/28\",\r\n \"51.104.24.112/28\",\r\n \"51.105.67.192/28\",\r\n
+ \ \"51.105.75.160/28\",\r\n \"51.105.80.80/28\",\r\n \"51.105.88.80/28\",\r\n
+ \ \"51.107.48.80/28\",\r\n \"51.107.60.64/28\",\r\n \"51.107.68.31/32\",\r\n
+ \ \"51.107.144.80/28\",\r\n \"51.107.156.80/28\",\r\n \"51.107.231.223/32\",\r\n
+ \ \"51.116.48.80/28\",\r\n \"51.116.60.64/28\",\r\n \"51.116.144.80/28\",\r\n
+ \ \"51.116.156.176/28\",\r\n \"51.116.208.58/32\",\r\n \"51.116.243.128/28\",\r\n
+ \ \"51.116.251.48/28\",\r\n \"51.120.40.80/28\",\r\n \"51.120.100.64/28\",\r\n
+ \ \"51.120.107.208/28\",\r\n \"51.120.211.208/28\",\r\n \"51.120.220.64/28\",\r\n
+ \ \"51.120.224.80/28\",\r\n \"51.137.160.96/28\",\r\n \"51.140.43.158/32\",\r\n
+ \ \"51.140.212.80/28\",\r\n \"51.141.3.203/32\",\r\n \"51.142.209.167/32\",\r\n
+ \ \"51.143.192.80/28\",\r\n \"52.136.48.80/28\",\r\n \"52.136.139.227/32\",\r\n
+ \ \"52.138.92.64/28\",\r\n \"52.138.227.144/28\",\r\n \"52.140.104.80/28\",\r\n
+ \ \"52.143.138.106/32\",\r\n \"52.150.136.96/28\",\r\n \"52.161.20.168/32\",\r\n
+ \ \"52.162.111.0/28\",\r\n \"52.166.13.64/32\",\r\n \"52.167.107.80/28\",\r\n
+ \ \"52.172.46.220/32\",\r\n \"52.172.187.37/32\",\r\n \"52.175.17.132/32\",\r\n
+ \ \"52.175.146.69/32\",\r\n \"52.180.178.64/32\",\r\n \"52.182.139.192/28\",\r\n
+ \ \"52.183.45.166/32\",\r\n \"52.184.158.163/32\",\r\n \"52.185.150.140/32\",\r\n
+ \ \"52.187.58.193/32\",\r\n \"52.187.191.206/32\",\r\n \"52.225.188.170/32\",\r\n
+ \ \"52.228.36.192/32\",\r\n \"52.228.80.96/28\",\r\n \"52.229.125.98/32\",\r\n
+ \ \"52.231.20.16/28\",\r\n \"52.231.28.253/32\",\r\n \"52.231.148.96/28\",\r\n
+ \ \"52.231.198.185/32\",\r\n \"52.236.187.64/28\",\r\n \"52.246.155.160/28\",\r\n
+ \ \"65.52.252.192/28\",\r\n \"102.133.28.128/28\",\r\n \"102.133.59.160/28\",\r\n
+ \ \"102.133.72.51/32\",\r\n \"102.133.124.64/28\",\r\n \"102.133.156.96/28\",\r\n
+ \ \"102.133.160.44/32\",\r\n \"102.133.218.176/28\",\r\n
+ \ \"102.133.251.160/28\",\r\n \"104.210.113.114/32\",\r\n
+ \ \"104.211.177.6/32\",\r\n \"191.233.8.0/28\",\r\n \"191.233.51.192/28\",\r\n
+ \ \"191.233.205.80/28\",\r\n \"191.234.147.208/28\",\r\n
+ \ \"191.234.155.208/28\",\r\n \"191.234.185.172/32\",\r\n
+ \ \"191.235.224.112/28\",\r\n \"2603:1000:4::/123\",\r\n
+ \ \"2603:1000:4:402::2d0/125\",\r\n \"2603:1000:104:1::/123\",\r\n
+ \ \"2603:1000:104:402::2d0/125\",\r\n \"2603:1000:104:802::158/125\",\r\n
+ \ \"2603:1000:104:c02::158/125\",\r\n \"2603:1010:6:1::/123\",\r\n
+ \ \"2603:1010:6:402::2d0/125\",\r\n \"2603:1010:6:802::158/125\",\r\n
+ \ \"2603:1010:6:c02::158/125\",\r\n \"2603:1010:101::/123\",\r\n
+ \ \"2603:1010:101:402::2d0/125\",\r\n \"2603:1010:304::/123\",\r\n
+ \ \"2603:1010:304:402::2d0/125\",\r\n \"2603:1010:404::/123\",\r\n
+ \ \"2603:1010:404:402::2d0/125\",\r\n \"2603:1020:5:1::/123\",\r\n
+ \ \"2603:1020:5:402::2d0/125\",\r\n \"2603:1020:5:802::158/125\",\r\n
+ \ \"2603:1020:5:c02::158/125\",\r\n \"2603:1020:206:1::/123\",\r\n
+ \ \"2603:1020:206:402::2d0/125\",\r\n \"2603:1020:206:802::158/125\",\r\n
+ \ \"2603:1020:206:c02::158/125\",\r\n \"2603:1020:305::/123\",\r\n
+ \ \"2603:1020:305:402::2d0/125\",\r\n \"2603:1020:405::/123\",\r\n
+ \ \"2603:1020:405:402::2d0/125\",\r\n \"2603:1020:605::/123\",\r\n
+ \ \"2603:1020:605:402::2d0/125\",\r\n \"2603:1020:705:1::/123\",\r\n
+ \ \"2603:1020:705:402::2d0/125\",\r\n \"2603:1020:705:802::158/125\",\r\n
+ \ \"2603:1020:705:c02::158/125\",\r\n \"2603:1020:805:1::/123\",\r\n
+ \ \"2603:1020:805:402::2d0/125\",\r\n \"2603:1020:805:802::158/125\",\r\n
+ \ \"2603:1020:805:c02::158/125\",\r\n \"2603:1020:905::/123\",\r\n
+ \ \"2603:1020:905:402::2d0/125\",\r\n \"2603:1020:a04:1::/123\",\r\n
+ \ \"2603:1020:a04:402::2d0/125\",\r\n \"2603:1020:a04:802::158/125\",\r\n
+ \ \"2603:1020:a04:c02::158/125\",\r\n \"2603:1020:b04::/123\",\r\n
+ \ \"2603:1020:b04:402::2d0/125\",\r\n \"2603:1020:c04:1::/123\",\r\n
+ \ \"2603:1020:c04:402::2d0/125\",\r\n \"2603:1020:c04:802::158/125\",\r\n
+ \ \"2603:1020:c04:c02::158/125\",\r\n \"2603:1020:d04::/123\",\r\n
+ \ \"2603:1020:d04:402::2d0/125\",\r\n \"2603:1020:e04:1::/123\",\r\n
+ \ \"2603:1020:e04:402::2d0/125\",\r\n \"2603:1020:e04:802::158/125\",\r\n
+ \ \"2603:1020:e04:c02::158/125\",\r\n \"2603:1020:f04::/123\",\r\n
+ \ \"2603:1020:f04:402::2d0/125\",\r\n \"2603:1020:1004::/123\",\r\n
+ \ \"2603:1020:1004:400::1d0/125\",\r\n \"2603:1020:1004:400::2f0/125\",\r\n
+ \ \"2603:1020:1004:800::3e0/125\",\r\n \"2603:1020:1104::/123\",\r\n
+ \ \"2603:1020:1104:400::2d0/125\",\r\n \"2603:1030:f:1::/123\",\r\n
+ \ \"2603:1030:f:400::ad0/125\",\r\n \"2603:1030:10:1::/123\",\r\n
+ \ \"2603:1030:10:402::2d0/125\",\r\n \"2603:1030:10:802::158/125\",\r\n
+ \ \"2603:1030:10:c02::158/125\",\r\n \"2603:1030:104:1::/123\",\r\n
+ \ \"2603:1030:104:402::2d0/125\",\r\n \"2603:1030:107::/123\",\r\n
+ \ \"2603:1030:107:400::f8/125\",\r\n \"2603:1030:210:1::/123\",\r\n
+ \ \"2603:1030:210:402::2d0/125\",\r\n \"2603:1030:210:802::158/125\",\r\n
+ \ \"2603:1030:210:c02::158/125\",\r\n \"2603:1030:40b:1::/123\",\r\n
+ \ \"2603:1030:40b:400::ad0/125\",\r\n \"2603:1030:40b:800::158/125\",\r\n
+ \ \"2603:1030:40b:c00::158/125\",\r\n \"2603:1030:40c:1::/123\",\r\n
+ \ \"2603:1030:40c:402::2d0/125\",\r\n \"2603:1030:40c:802::158/125\",\r\n
+ \ \"2603:1030:40c:c02::158/125\",\r\n \"2603:1030:504:1::/123\",\r\n
+ \ \"2603:1030:504:402::1d0/125\",\r\n \"2603:1030:504:402::2f0/125\",\r\n
+ \ \"2603:1030:504:802::3e0/125\",\r\n \"2603:1030:504:c02::390/125\",\r\n
+ \ \"2603:1030:608::/123\",\r\n \"2603:1030:608:402::2d0/125\",\r\n
+ \ \"2603:1030:807:1::/123\",\r\n \"2603:1030:807:402::2d0/125\",\r\n
+ \ \"2603:1030:807:802::158/125\",\r\n \"2603:1030:807:c02::158/125\",\r\n
+ \ \"2603:1030:a07::/123\",\r\n \"2603:1030:a07:402::950/125\",\r\n
+ \ \"2603:1030:b04::/123\",\r\n \"2603:1030:b04:402::2d0/125\",\r\n
+ \ \"2603:1030:c06:1::/123\",\r\n \"2603:1030:c06:400::ad0/125\",\r\n
+ \ \"2603:1030:c06:802::158/125\",\r\n \"2603:1030:c06:c02::158/125\",\r\n
+ \ \"2603:1030:f05:1::/123\",\r\n \"2603:1030:f05:402::2d0/125\",\r\n
+ \ \"2603:1030:f05:802::158/125\",\r\n \"2603:1030:f05:c02::158/125\",\r\n
+ \ \"2603:1030:1005::/123\",\r\n \"2603:1030:1005:402::2d0/125\",\r\n
+ \ \"2603:1040:5:1::/123\",\r\n \"2603:1040:5:402::2d0/125\",\r\n
+ \ \"2603:1040:5:802::158/125\",\r\n \"2603:1040:5:c02::158/125\",\r\n
+ \ \"2603:1040:207::/123\",\r\n \"2603:1040:207:402::2d0/125\",\r\n
+ \ \"2603:1040:407:1::/123\",\r\n \"2603:1040:407:402::2d0/125\",\r\n
+ \ \"2603:1040:407:802::158/125\",\r\n \"2603:1040:407:c02::158/125\",\r\n
+ \ \"2603:1040:606::/123\",\r\n \"2603:1040:606:402::2d0/125\",\r\n
+ \ \"2603:1040:806::/123\",\r\n \"2603:1040:806:402::2d0/125\",\r\n
+ \ \"2603:1040:904:1::/123\",\r\n \"2603:1040:904:402::2d0/125\",\r\n
+ \ \"2603:1040:904:802::158/125\",\r\n \"2603:1040:904:c02::158/125\",\r\n
+ \ \"2603:1040:a06:1::/123\",\r\n \"2603:1040:a06:402::2d0/125\",\r\n
+ \ \"2603:1040:a06:802::158/125\",\r\n \"2603:1040:a06:c02::158/125\",\r\n
+ \ \"2603:1040:b04::/123\",\r\n \"2603:1040:b04:402::2d0/125\",\r\n
+ \ \"2603:1040:c06::/123\",\r\n \"2603:1040:c06:402::2d0/125\",\r\n
+ \ \"2603:1040:d04::/123\",\r\n \"2603:1040:d04:400::1d0/125\",\r\n
+ \ \"2603:1040:d04:400::2f0/125\",\r\n \"2603:1040:d04:800::3e0/125\",\r\n
+ \ \"2603:1040:f05:1::/123\",\r\n \"2603:1040:f05:402::2d0/125\",\r\n
+ \ \"2603:1040:f05:802::158/125\",\r\n \"2603:1040:f05:c02::158/125\",\r\n
+ \ \"2603:1040:1104::/123\",\r\n \"2603:1040:1104:400::2d0/125\",\r\n
+ \ \"2603:1050:6:1::/123\",\r\n \"2603:1050:6:402::2d0/125\",\r\n
+ \ \"2603:1050:6:802::158/125\",\r\n \"2603:1050:6:c02::158/125\",\r\n
+ \ \"2603:1050:403::/123\",\r\n \"2603:1050:403:400::1f0/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"AzureTrafficManager\",\r\n
+ \ \"id\": \"AzureTrafficManager\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureTrafficManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.92.252/32\",\r\n \"13.65.95.152/32\",\r\n
+ \ \"13.75.124.254/32\",\r\n \"13.75.127.63/32\",\r\n \"13.75.152.253/32\",\r\n
+ \ \"13.75.153.124/32\",\r\n \"13.84.222.37/32\",\r\n \"23.96.236.252/32\",\r\n
+ \ \"23.101.191.199/32\",\r\n \"40.68.30.66/32\",\r\n \"40.68.31.178/32\",\r\n
+ \ \"40.78.67.110/32\",\r\n \"40.87.147.10/32\",\r\n \"40.87.151.34/32\",\r\n
+ \ \"40.114.5.197/32\",\r\n \"52.172.155.168/32\",\r\n \"52.172.158.37/32\",\r\n
+ \ \"52.173.90.107/32\",\r\n \"52.173.250.232/32\",\r\n \"52.240.144.45/32\",\r\n
+ \ \"52.240.151.125/32\",\r\n \"65.52.217.19/32\",\r\n \"104.41.187.209/32\",\r\n
+ \ \"104.41.190.203/32\",\r\n \"104.42.192.195/32\",\r\n \"104.45.149.110/32\",\r\n
+ \ \"104.215.91.84/32\",\r\n \"137.135.46.163/32\",\r\n \"137.135.47.215/32\",\r\n
+ \ \"137.135.80.149/32\",\r\n \"137.135.82.249/32\",\r\n \"191.232.208.52/32\",\r\n
+ \ \"191.232.214.62/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement\",\r\n \"id\": \"BatchNodeManagement\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.66.141.32/27\",\r\n \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n
+ \ \"13.66.227.193/32\",\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n
+ \ \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.70.73.0/27\",\r\n \"13.71.144.135/32\",\r\n \"13.71.172.96/27\",\r\n
+ \ \"13.71.195.160/27\",\r\n \"13.73.117.100/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.73.249.64/27\",\r\n \"13.74.107.128/27\",\r\n
+ \ \"13.75.36.96/27\",\r\n \"13.77.52.128/27\",\r\n \"13.77.80.138/32\",\r\n
+ \ \"13.78.108.128/27\",\r\n \"13.78.145.2/32\",\r\n \"13.78.145.73/32\",\r\n
+ \ \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n \"13.79.172.125/32\",\r\n
+ \ \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n \"13.81.59.254/32\",\r\n
+ \ \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.87.32.176/32\",\r\n \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n
+ \ \"13.87.57.96/27\",\r\n \"13.87.97.57/32\",\r\n \"13.87.97.82/32\",\r\n
+ \ \"13.87.100.219/32\",\r\n \"13.87.123.96/27\",\r\n \"13.89.55.147/32\",\r\n
+ \ \"13.89.171.224/27\",\r\n \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n
+ \ \"13.91.107.154/32\",\r\n \"13.92.114.103/32\",\r\n \"13.93.206.144/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.36.121.160/27\",\r\n
+ \ \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n \"20.37.196.128/27\",\r\n
+ \ \"20.37.225.160/27\",\r\n \"20.38.85.224/27\",\r\n \"20.38.137.192/27\",\r\n
+ \ \"20.38.146.224/27\",\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n
+ \ \"20.39.2.44/32\",\r\n \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n
+ \ \"20.39.3.186/32\",\r\n \"20.39.12.64/27\",\r\n \"20.40.137.186/32\",\r\n
+ \ \"20.40.149.165/32\",\r\n \"20.40.200.32/27\",\r\n \"20.41.5.224/27\",\r\n
+ \ \"20.41.66.128/27\",\r\n \"20.41.195.128/27\",\r\n \"20.42.6.224/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"20.43.42.96/27\",\r\n \"20.43.66.96/27\",\r\n
+ \ \"20.43.132.64/27\",\r\n \"20.44.4.112/29\",\r\n \"20.44.27.64/27\",\r\n
+ \ \"20.45.113.160/27\",\r\n \"20.45.122.224/27\",\r\n \"20.45.195.192/27\",\r\n
+ \ \"20.49.83.64/27\",\r\n \"20.49.91.64/27\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"20.72.17.64/27\",\r\n \"20.150.161.224/27\",\r\n \"20.150.172.0/27\",\r\n
+ \ \"20.150.179.96/27\",\r\n \"20.150.187.96/27\",\r\n \"20.189.109.0/27\",\r\n
+ \ \"20.192.99.96/27\",\r\n \"20.192.161.224/27\",\r\n \"20.192.228.160/27\",\r\n
+ \ \"20.192.235.192/27\",\r\n \"20.193.203.128/27\",\r\n \"23.96.12.112/32\",\r\n
+ \ \"23.96.101.73/32\",\r\n \"23.96.109.140/32\",\r\n \"23.96.232.67/32\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.97.97.29/32\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"23.98.82.160/27\",\r\n \"23.99.98.61/32\",\r\n
+ \ \"23.99.107.229/32\",\r\n \"23.99.195.236/32\",\r\n \"23.100.100.145/32\",\r\n
+ \ \"23.100.103.112/32\",\r\n \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n
+ \ \"23.102.185.64/32\",\r\n \"40.64.128.160/27\",\r\n \"40.67.49.160/27\",\r\n
+ \ \"40.67.60.0/27\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.69.107.128/27\",\r\n \"40.70.147.224/27\",\r\n
+ \ \"40.71.12.192/27\",\r\n \"40.74.101.0/27\",\r\n \"40.74.140.140/32\",\r\n
+ \ \"40.74.149.48/29\",\r\n \"40.74.177.177/32\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.77.18.99/32\",\r\n \"40.78.195.128/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"40.78.227.0/27\",\r\n \"40.78.234.96/27\",\r\n \"40.78.242.224/27\",\r\n
+ \ \"40.78.250.160/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"40.79.154.32/27\",\r\n \"40.79.162.96/27\",\r\n
+ \ \"40.79.170.192/27\",\r\n \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n
+ \ \"40.80.50.224/27\",\r\n \"40.80.58.160/27\",\r\n \"40.80.170.128/27\",\r\n
+ \ \"40.80.190.192/27\",\r\n \"40.82.255.64/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n
+ \ \"40.86.224.98/32\",\r\n \"40.86.224.104/32\",\r\n \"40.88.48.36/32\",\r\n
+ \ \"40.89.18.192/27\",\r\n \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n
+ \ \"40.89.67.77/32\",\r\n \"40.89.70.17/32\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.115.50.9/32\",\r\n \"40.118.208.127/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"51.12.41.192/27\",\r\n \"51.12.100.0/27\",\r\n \"51.12.193.192/27\",\r\n
+ \ \"51.12.204.0/27\",\r\n \"51.12.227.96/27\",\r\n \"51.12.235.96/27\",\r\n
+ \ \"51.104.28.0/27\",\r\n \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n
+ \ \"51.105.81.160/27\",\r\n \"51.105.89.192/27\",\r\n \"51.107.49.192/27\",\r\n
+ \ \"51.107.59.224/27\",\r\n \"51.107.145.160/27\",\r\n \"51.107.155.224/27\",\r\n
+ \ \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n \"51.116.144.224/27\",\r\n
+ \ \"51.116.154.32/27\",\r\n \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n
+ \ \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n \"51.120.107.96/27\",\r\n
+ \ \"51.120.211.96/27\",\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"51.137.162.192/27\",\r\n \"51.140.148.160/27\",\r\n \"51.140.184.59/32\",\r\n
+ \ \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n \"51.140.211.128/27\",\r\n
+ \ \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n \"51.141.8.64/32\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"52.136.49.192/27\",\r\n \"52.136.143.192/31\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.138.90.64/27\",\r\n \"52.138.226.128/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"52.148.148.46/32\",\r\n \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n
+ \ \"52.161.107.48/32\",\r\n \"52.162.110.32/27\",\r\n \"52.164.244.189/32\",\r\n
+ \ \"52.164.245.81/32\",\r\n \"52.165.44.224/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.167.106.128/27\",\r\n \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n
+ \ \"52.169.235.90/32\",\r\n \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n
+ \ \"52.174.35.218/32\",\r\n \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n
+ \ \"52.174.179.66/32\",\r\n \"52.174.180.164/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n
+ \ \"52.180.177.206/32\",\r\n \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n
+ \ \"52.180.181.239/32\",\r\n \"52.182.139.0/27\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"52.189.217.254/32\",\r\n \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n
+ \ \"52.225.185.38/32\",\r\n \"52.225.191.67/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.231.19.96/27\",\r\n \"52.231.32.70/31\",\r\n
+ \ \"52.231.32.82/32\",\r\n \"52.231.147.128/27\",\r\n \"52.231.200.112/31\",\r\n
+ \ \"52.231.200.126/32\",\r\n \"52.233.40.34/32\",\r\n \"52.233.157.9/32\",\r\n
+ \ \"52.233.157.78/32\",\r\n \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n
+ \ \"52.235.41.66/32\",\r\n \"52.236.186.128/26\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"52.246.154.224/27\",\r\n
+ \ \"52.249.60.22/32\",\r\n \"52.253.227.240/32\",\r\n \"65.52.199.156/32\",\r\n
+ \ \"65.52.199.188/32\",\r\n \"65.52.251.224/27\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"104.40.69.159/32\",\r\n \"104.40.183.25/32\",\r\n
+ \ \"104.41.2.182/32\",\r\n \"104.41.129.99/32\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.45.13.8/32\",\r\n
+ \ \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"104.47.149.96/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"104.208.144.128/27\",\r\n \"104.208.156.99/32\",\r\n
+ \ \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n \"104.210.115.52/32\",\r\n
+ \ \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n \"104.211.96.144/31\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"104.214.19.192/27\",\r\n
+ \ \"104.214.65.153/32\",\r\n \"111.221.104.48/32\",\r\n \"137.116.33.5/32\",\r\n
+ \ \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n \"137.116.37.146/32\",\r\n
+ \ \"137.116.46.180/32\",\r\n \"137.116.193.225/32\",\r\n
+ \ \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"138.91.1.114/32\",\r\n \"138.91.17.36/32\",\r\n \"157.55.167.71/32\",\r\n
+ \ \"157.55.210.88/32\",\r\n \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n
+ \ \"168.62.4.114/32\",\r\n \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n
+ \ \"168.63.5.53/32\",\r\n \"168.63.36.126/32\",\r\n \"168.63.133.23/32\",\r\n
+ \ \"168.63.208.148/32\",\r\n \"191.232.37.60/32\",\r\n \"191.233.10.0/27\",\r\n
+ \ \"191.233.76.85/32\",\r\n \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n
+ \ \"191.234.155.96/27\",\r\n \"191.235.227.192/27\",\r\n
+ \ \"191.236.37.239/32\",\r\n \"191.236.38.142/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"207.46.149.75/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1000:4::400/122\",\r\n \"2603:1000:104:1::340/122\",\r\n
+ \ \"2603:1010:6:1::340/122\",\r\n \"2603:1010:101::400/122\",\r\n
+ \ \"2603:1010:304::400/122\",\r\n \"2603:1010:404::400/122\",\r\n
+ \ \"2603:1020:5:1::340/122\",\r\n \"2603:1020:206:1::340/122\",\r\n
+ \ \"2603:1020:305::400/122\",\r\n \"2603:1020:405::400/122\",\r\n
+ \ \"2603:1020:605::400/122\",\r\n \"2603:1020:705:1::340/122\",\r\n
+ \ \"2603:1020:805:1::340/122\",\r\n \"2603:1020:905::400/122\",\r\n
+ \ \"2603:1020:a04:1::340/122\",\r\n \"2603:1020:b04::400/122\",\r\n
+ \ \"2603:1020:c04:1::340/122\",\r\n \"2603:1020:d04::400/122\",\r\n
+ \ \"2603:1020:e04:1::340/122\",\r\n \"2603:1020:f04::400/122\",\r\n
+ \ \"2603:1020:1004::340/122\",\r\n \"2603:1020:1104::300/122\",\r\n
+ \ \"2603:1030:f:1::400/122\",\r\n \"2603:1030:10:1::340/122\",\r\n
+ \ \"2603:1030:104:1::340/122\",\r\n \"2603:1030:107::300/122\",\r\n
+ \ \"2603:1030:210:1::340/122\",\r\n \"2603:1030:40b:1::340/122\",\r\n
+ \ \"2603:1030:40c:1::340/122\",\r\n \"2603:1030:504:1::340/122\",\r\n
+ \ \"2603:1030:608::400/122\",\r\n \"2603:1030:807:1::340/122\",\r\n
+ \ \"2603:1030:a07::400/122\",\r\n \"2603:1030:b04::400/122\",\r\n
+ \ \"2603:1030:c06:1::340/122\",\r\n \"2603:1030:f05:1::340/122\",\r\n
+ \ \"2603:1030:1005::400/122\",\r\n \"2603:1040:5:1::340/122\",\r\n
+ \ \"2603:1040:207::400/122\",\r\n \"2603:1040:407:1::340/122\",\r\n
+ \ \"2603:1040:606::400/122\",\r\n \"2603:1040:806::400/122\",\r\n
+ \ \"2603:1040:904:1::340/122\",\r\n \"2603:1040:a06:1::340/122\",\r\n
+ \ \"2603:1040:b04::400/122\",\r\n \"2603:1040:c06::400/122\",\r\n
+ \ \"2603:1040:d04::340/122\",\r\n \"2603:1040:f05:1::340/122\",\r\n
+ \ \"2603:1040:1104::300/122\",\r\n \"2603:1050:6:1::340/122\",\r\n
+ \ \"2603:1050:403::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaCentral\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.36.40.22/32\",\r\n
+ \ \"20.36.47.197/32\",\r\n \"20.36.107.128/27\",\r\n \"20.37.225.160/27\",\r\n
+ \ \"2603:1010:304::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaEast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.70.73.0/27\",\r\n
+ \ \"20.37.196.128/27\",\r\n \"40.79.162.96/27\",\r\n \"40.79.170.192/27\",\r\n
+ \ \"104.210.115.52/32\",\r\n \"191.239.64.139/32\",\r\n \"191.239.64.152/32\",\r\n
+ \ \"2603:1010:6:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"id\":
+ \"BatchNodeManagement.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.117.100/32\",\r\n \"13.77.52.128/27\",\r\n
+ \ \"20.42.227.224/27\",\r\n \"52.189.217.254/32\",\r\n \"191.239.160.161/32\",\r\n
+ \ \"191.239.160.185/32\",\r\n \"2603:1010:101::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.BrazilSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.97.97.29/32\",\r\n \"104.41.2.182/32\",\r\n \"191.232.37.60/32\",\r\n
+ \ \"191.233.204.96/27\",\r\n \"191.234.147.96/27\",\r\n \"191.234.155.96/27\",\r\n
+ \ \"191.235.227.192/27\",\r\n \"2603:1050:6:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.96/27\",\r\n \"20.38.146.224/27\",\r\n
+ \ \"40.85.226.213/32\",\r\n \"40.85.227.37/32\",\r\n \"52.228.44.187/32\",\r\n
+ \ \"52.228.83.192/27\",\r\n \"52.233.40.34/32\",\r\n \"52.237.30.175/32\",\r\n
+ \ \"52.246.154.224/27\",\r\n \"2603:1030:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CanadaEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.107.128/27\",\r\n \"40.86.224.98/32\",\r\n
+ \ \"40.86.224.104/32\",\r\n \"40.89.18.192/27\",\r\n \"52.235.41.66/32\",\r\n
+ \ \"52.242.22.129/32\",\r\n \"52.242.33.105/32\",\r\n \"2603:1030:1005::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralIndia\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.99.96/27\",\r\n \"40.80.50.224/27\",\r\n
+ \ \"52.140.106.128/27\",\r\n \"104.211.82.96/27\",\r\n \"104.211.96.142/32\",\r\n
+ \ \"104.211.96.144/31\",\r\n \"2603:1040:a06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.190.3/32\",\r\n \"13.67.237.249/32\",\r\n
+ \ \"13.89.55.147/32\",\r\n \"13.89.171.224/27\",\r\n \"20.40.200.32/27\",\r\n
+ \ \"23.99.195.236/32\",\r\n \"40.77.18.99/32\",\r\n \"40.122.166.234/32\",\r\n
+ \ \"52.165.44.224/32\",\r\n \"52.182.139.0/27\",\r\n \"104.43.128.78/32\",\r\n
+ \ \"104.43.131.156/32\",\r\n \"104.43.132.75/32\",\r\n \"104.208.16.128/27\",\r\n
+ \ \"168.61.161.154/32\",\r\n \"168.61.209.228/32\",\r\n \"2603:1030:10:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.CentralUSEUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.195.192/27\",\r\n \"40.78.203.0/27\",\r\n
+ \ \"52.180.176.58/32\",\r\n \"52.180.177.108/32\",\r\n \"52.180.177.206/32\",\r\n
+ \ \"52.180.179.94/32\",\r\n \"52.180.181.0/32\",\r\n \"52.180.181.239/32\",\r\n
+ \ \"2603:1030:f:1::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastAsia\",\r\n \"id\":
+ \"BatchNodeManagement.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.75.36.96/27\",\r\n
+ \ \"20.189.109.0/27\",\r\n \"23.99.98.61/32\",\r\n \"23.99.107.229/32\",\r\n
+ \ \"168.63.133.23/32\",\r\n \"168.63.208.148/32\",\r\n \"207.46.149.75/32\",\r\n
+ \ \"2603:1040:207::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.EastUS\",\r\n \"id\":
+ \"BatchNodeManagement.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.92.114.103/32\",\r\n
+ \ \"20.42.6.224/27\",\r\n \"23.96.12.112/32\",\r\n \"23.96.101.73/32\",\r\n
+ \ \"23.96.109.140/32\",\r\n \"40.71.12.192/27\",\r\n \"40.78.227.0/27\",\r\n
+ \ \"40.79.154.32/27\",\r\n \"40.88.48.36/32\",\r\n \"52.188.222.115/32\",\r\n
+ \ \"104.41.129.99/32\",\r\n \"137.117.45.176/32\",\r\n \"137.117.109.143/32\",\r\n
+ \ \"168.62.36.128/32\",\r\n \"168.62.168.27/32\",\r\n \"191.236.37.239/32\",\r\n
+ \ \"191.236.38.142/32\",\r\n \"2603:1030:210:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.77.80.138/32\",\r\n
+ \ \"20.41.5.224/27\",\r\n \"40.70.147.224/27\",\r\n \"40.84.49.170/32\",\r\n
+ \ \"40.84.62.82/32\",\r\n \"52.167.106.128/27\",\r\n \"104.208.144.128/27\",\r\n
+ \ \"104.208.156.99/32\",\r\n \"104.208.157.18/32\",\r\n \"104.210.3.254/32\",\r\n
+ \ \"137.116.33.5/32\",\r\n \"137.116.33.29/32\",\r\n \"137.116.33.71/32\",\r\n
+ \ \"137.116.37.146/32\",\r\n \"137.116.46.180/32\",\r\n \"2603:1030:40c:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.EastUS2EUAP\",\r\n
+ \ \"id\": \"BatchNodeManagement.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.125/32\",\r\n \"20.39.1.239/32\",\r\n \"20.39.2.44/32\",\r\n
+ \ \"20.39.2.122/32\",\r\n \"20.39.3.157/32\",\r\n \"20.39.3.186/32\",\r\n
+ \ \"20.39.12.64/27\",\r\n \"40.74.149.48/29\",\r\n \"40.75.35.136/29\",\r\n
+ \ \"40.89.65.161/32\",\r\n \"40.89.66.236/32\",\r\n \"40.89.67.77/32\",\r\n
+ \ \"40.89.70.17/32\",\r\n \"52.138.90.64/27\",\r\n \"52.225.185.38/32\",\r\n
+ \ \"52.225.191.67/32\",\r\n \"52.253.227.240/32\",\r\n \"2603:1030:40b:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.FranceCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.40.137.186/32\",\r\n \"20.40.149.165/32\",\r\n
+ \ \"20.43.42.96/27\",\r\n \"40.79.131.96/27\",\r\n \"40.79.138.96/27\",\r\n
+ \ \"40.79.146.96/27\",\r\n \"52.143.139.121/32\",\r\n \"52.143.140.12/32\",\r\n
+ \ \"2603:1020:805:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.FranceSouth\",\r\n \"id\":
+ \"BatchNodeManagement.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.105.89.192/27\",\r\n
+ \ \"52.136.143.192/31\",\r\n \"2603:1020:905::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.GermanyNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.48.224/27\",\r\n \"51.116.59.224/27\",\r\n
+ \ \"2603:1020:d04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.GermanyWestCentral\",\r\n \"id\":
+ \"BatchNodeManagement.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.224/27\",\r\n \"51.116.154.32/27\",\r\n
+ \ \"51.116.243.0/27\",\r\n \"51.116.251.0/27\",\r\n \"2603:1020:c04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.JapanEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.144.135/32\",\r\n \"13.78.108.128/27\",\r\n
+ \ \"20.43.66.96/27\",\r\n \"23.100.100.145/32\",\r\n \"23.100.103.112/32\",\r\n
+ \ \"40.79.186.128/27\",\r\n \"40.79.194.32/27\",\r\n \"138.91.1.114/32\",\r\n
+ \ \"2603:1040:407:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.JapanWest\",\r\n \"id\":
+ \"BatchNodeManagement.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.0/27\",\r\n
+ \ \"40.74.140.140/32\",\r\n \"40.80.58.160/27\",\r\n \"104.46.232.208/32\",\r\n
+ \ \"104.46.236.29/32\",\r\n \"138.91.17.36/32\",\r\n \"2603:1040:606::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaCentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.66.128/27\",\r\n \"20.44.27.64/27\",\r\n \"52.231.19.96/27\",\r\n
+ \ \"52.231.32.70/31\",\r\n \"52.231.32.82/32\",\r\n \"2603:1040:f05:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.KoreaSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.KoreaSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.170.128/27\",\r\n \"52.231.147.128/27\",\r\n
+ \ \"52.231.200.112/31\",\r\n \"52.231.200.126/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorthCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.232.67/32\",\r\n \"40.80.190.192/27\",\r\n
+ \ \"52.162.110.32/27\",\r\n \"65.52.199.156/32\",\r\n \"65.52.199.188/32\",\r\n
+ \ \"157.55.167.71/32\",\r\n \"157.55.210.88/32\",\r\n \"191.236.161.35/32\",\r\n
+ \ \"191.236.163.245/32\",\r\n \"191.236.164.44/32\",\r\n
+ \ \"2603:1030:608::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.NorthEurope\",\r\n \"id\":
+ \"BatchNodeManagement.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.32/27\",\r\n
+ \ \"13.74.107.128/27\",\r\n \"13.79.172.125/32\",\r\n \"20.38.85.224/27\",\r\n
+ \ \"52.138.226.128/27\",\r\n \"52.164.244.189/32\",\r\n \"52.164.245.81/32\",\r\n
+ \ \"52.169.27.79/32\",\r\n \"52.169.30.175/32\",\r\n \"52.169.235.90/32\",\r\n
+ \ \"52.178.149.188/32\",\r\n \"104.45.82.201/32\",\r\n \"104.45.88.181/32\",\r\n
+ \ \"168.63.36.126/32\",\r\n \"2603:1020:5:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayEast\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.41.192/27\",\r\n \"51.120.99.224/27\",\r\n
+ \ \"51.120.107.96/27\",\r\n \"51.120.211.96/27\",\r\n \"2603:1020:e04:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.NorwayWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.220.0/27\",\r\n \"51.120.225.160/27\",\r\n
+ \ \"2603:1020:f04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"id\":
+ \"BatchNodeManagement.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"102.133.123.64/27\",\r\n
+ \ \"102.133.155.192/27\",\r\n \"102.133.217.224/27\",\r\n
+ \ \"102.133.250.224/27\",\r\n \"2603:1000:104:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SouthAfricaWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.27.192/27\",\r\n \"102.133.56.192/27\",\r\n
+ \ \"2603:1000:4::400/122\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"BatchNodeManagement.SouthCentralUS\",\r\n \"id\": \"BatchNodeManagement.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.192.161/32\",\r\n \"13.65.208.36/32\",\r\n
+ \ \"13.73.249.64/27\",\r\n \"20.45.122.224/27\",\r\n \"20.49.91.64/27\",\r\n
+ \ \"23.101.176.33/32\",\r\n \"23.102.178.148/32\",\r\n \"23.102.185.64/32\",\r\n
+ \ \"40.74.177.177/32\",\r\n \"52.249.60.22/32\",\r\n \"70.37.49.163/32\",\r\n
+ \ \"104.214.19.192/27\",\r\n \"104.214.65.153/32\",\r\n \"2603:1030:807:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SoutheastAsia\",\r\n
+ \ \"id\": \"BatchNodeManagement.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.160/27\",\r\n \"13.67.58.116/32\",\r\n \"20.43.132.64/27\",\r\n
+ \ \"23.97.48.186/32\",\r\n \"23.97.51.12/32\",\r\n \"23.98.82.160/27\",\r\n
+ \ \"40.78.234.96/27\",\r\n \"111.221.104.48/32\",\r\n \"207.46.225.72/32\",\r\n
+ \ \"2603:1040:5:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SouthIndia\",\r\n \"id\":
+ \"BatchNodeManagement.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.41.195.128/27\",\r\n
+ \ \"40.78.195.128/27\",\r\n \"104.211.224.117/32\",\r\n \"104.211.224.119/32\",\r\n
+ \ \"104.211.224.121/32\",\r\n \"2603:1040:c06::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n
+ \ \"id\": \"BatchNodeManagement.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.49.192/27\",\r\n \"51.107.59.224/27\",\r\n
+ \ \"2603:1020:a04:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.SwitzerlandWest\",\r\n \"id\":
+ \"BatchNodeManagement.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.107.145.160/27\",\r\n
+ \ \"51.107.155.224/27\",\r\n \"2603:1020:b04::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UAECentral\",\r\n
+ \ \"id\": \"BatchNodeManagement.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.65.160/27\",\r\n \"20.37.75.224/27\",\r\n
+ \ \"2603:1040:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UAENorth\",\r\n \"id\":
+ \"BatchNodeManagement.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"20.38.137.192/27\",\r\n
+ \ \"65.52.251.224/27\",\r\n \"2603:1040:904:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKSouth\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.104.28.0/27\",\r\n
+ \ \"51.105.66.224/27\",\r\n \"51.105.74.224/27\",\r\n \"51.140.148.160/27\",\r\n
+ \ \"51.140.184.59/32\",\r\n \"51.140.184.61/32\",\r\n \"51.140.184.63/32\",\r\n
+ \ \"2603:1020:705:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.UKSouth2\",\r\n \"id\":
+ \"BatchNodeManagement.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.87.32.176/32\",\r\n
+ \ \"13.87.32.218/32\",\r\n \"13.87.33.133/32\",\r\n \"13.87.57.96/27\",\r\n
+ \ \"51.143.193.160/27\",\r\n \"2603:1020:405::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.UKWest\",\r\n
+ \ \"id\": \"BatchNodeManagement.UKWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"51.137.162.192/27\",\r\n
+ \ \"51.140.211.128/27\",\r\n \"51.141.8.61/32\",\r\n \"51.141.8.62/32\",\r\n
+ \ \"51.141.8.64/32\",\r\n \"2603:1020:605::400/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"BatchNodeManagement.WestCentralUS\",\r\n
+ \ \"id\": \"BatchNodeManagement.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"BatchNodeManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.160/27\",\r\n \"13.78.145.2/32\",\r\n
+ \ \"13.78.145.73/32\",\r\n \"13.78.150.134/32\",\r\n \"13.78.187.18/32\",\r\n
+ \ \"52.150.140.128/27\",\r\n \"52.161.95.12/32\",\r\n \"52.161.107.48/32\",\r\n
+ \ \"2603:1030:b04::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestEurope\",\r\n \"id\":
+ \"BatchNodeManagement.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.64/26\",\r\n
+ \ \"13.69.106.128/26\",\r\n \"13.69.125.173/32\",\r\n \"13.73.153.226/32\",\r\n
+ \ \"13.73.157.134/32\",\r\n \"13.80.117.88/32\",\r\n \"13.81.1.133/32\",\r\n
+ \ \"13.81.59.254/32\",\r\n \"13.81.63.6/32\",\r\n \"13.81.104.137/32\",\r\n
+ \ \"13.94.214.82/32\",\r\n \"13.95.9.27/32\",\r\n \"20.50.1.64/26\",\r\n
+ \ \"23.97.180.74/32\",\r\n \"40.68.100.153/32\",\r\n \"40.68.191.54/32\",\r\n
+ \ \"40.68.218.90/32\",\r\n \"40.115.50.9/32\",\r\n \"52.166.19.45/32\",\r\n
+ \ \"52.174.33.113/32\",\r\n \"52.174.34.69/32\",\r\n \"52.174.35.218/32\",\r\n
+ \ \"52.174.38.99/32\",\r\n \"52.174.176.203/32\",\r\n \"52.174.179.66/32\",\r\n
+ \ \"52.174.180.164/32\",\r\n \"52.233.157.9/32\",\r\n \"52.233.157.78/32\",\r\n
+ \ \"52.233.161.238/32\",\r\n \"52.233.172.80/32\",\r\n \"52.236.186.128/26\",\r\n
+ \ \"104.40.183.25/32\",\r\n \"104.45.13.8/32\",\r\n \"104.47.149.96/32\",\r\n
+ \ \"137.116.193.225/32\",\r\n \"168.63.5.53/32\",\r\n \"191.233.76.85/32\",\r\n
+ \ \"2603:1020:206:1::340/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestIndia\",\r\n \"id\":
+ \"BatchNodeManagement.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"52.136.49.192/27\",\r\n
+ \ \"104.211.147.96/27\",\r\n \"104.211.160.72/32\",\r\n \"104.211.160.74/31\",\r\n
+ \ \"2603:1040:806::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.86.218.192/27\",\r\n
+ \ \"13.91.55.167/32\",\r\n \"13.91.88.93/32\",\r\n \"13.91.107.154/32\",\r\n
+ \ \"13.93.206.144/32\",\r\n \"40.82.255.64/27\",\r\n \"40.112.254.235/32\",\r\n
+ \ \"40.118.208.127/32\",\r\n \"104.40.69.159/32\",\r\n \"168.62.4.114/32\",\r\n
+ \ \"191.239.18.3/32\",\r\n \"191.239.21.73/32\",\r\n \"191.239.40.217/32\",\r\n
+ \ \"2603:1030:a07::400/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"BatchNodeManagement.WestUS2\",\r\n \"id\":
+ \"BatchNodeManagement.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"BatchNodeManagement\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.32/27\",\r\n
+ \ \"13.66.225.240/32\",\r\n \"13.66.227.117/32\",\r\n \"13.66.227.193/32\",\r\n
+ \ \"40.64.128.160/27\",\r\n \"40.78.242.224/27\",\r\n \"40.78.250.160/27\",\r\n
+ \ \"52.137.105.46/32\",\r\n \"52.148.148.46/32\",\r\n \"52.175.218.150/32\",\r\n
+ \ \"52.191.129.21/32\",\r\n \"52.191.166.57/32\",\r\n \"2603:1030:c06:1::340/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"CognitiveServicesManagement\",\r\n
+ \ \"id\": \"CognitiveServicesManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"5\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"FW\"\r\n ],\r\n \"systemService\": \"CognitiveServicesManagement\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.73.207/32\",\r\n \"13.65.241.39/32\",\r\n
+ \ \"13.66.56.76/32\",\r\n \"13.66.141.232/29\",\r\n \"13.66.142.0/26\",\r\n
+ \ \"13.67.10.80/29\",\r\n \"13.67.10.128/26\",\r\n \"13.68.82.4/32\",\r\n
+ \ \"13.68.211.223/32\",\r\n \"13.69.67.64/28\",\r\n \"13.69.67.128/26\",\r\n
+ \ \"13.69.230.0/29\",\r\n \"13.69.230.32/29\",\r\n \"13.70.74.88/29\",\r\n
+ \ \"13.70.74.120/29\",\r\n \"13.70.127.50/32\",\r\n \"13.70.149.125/32\",\r\n
+ \ \"13.71.173.216/29\",\r\n \"13.71.173.248/29\",\r\n \"13.71.196.136/29\",\r\n
+ \ \"13.71.196.168/29\",\r\n \"13.73.242.48/29\",\r\n \"13.73.242.128/26\",\r\n
+ \ \"13.73.249.0/27\",\r\n \"13.73.249.96/27\",\r\n \"13.73.249.128/28\",\r\n
+ \ \"13.73.253.122/31\",\r\n \"13.73.254.200/29\",\r\n \"13.73.254.208/29\",\r\n
+ \ \"13.73.254.216/30\",\r\n \"13.73.255.32/27\",\r\n \"13.74.139.192/32\",\r\n
+ \ \"13.75.39.64/29\",\r\n \"13.75.39.96/29\",\r\n \"13.75.92.220/32\",\r\n
+ \ \"13.75.137.81/32\",\r\n \"13.75.163.9/32\",\r\n \"13.75.168.111/32\",\r\n
+ \ \"13.77.55.152/29\",\r\n \"13.77.170.155/32\",\r\n \"13.78.17.188/32\",\r\n
+ \ \"13.78.70.7/32\",\r\n \"13.78.185.44/32\",\r\n \"13.78.187.168/32\",\r\n
+ \ \"13.83.68.180/32\",\r\n \"13.84.42.205/32\",\r\n \"13.86.178.10/32\",\r\n
+ \ \"13.86.184.142/32\",\r\n \"13.86.219.128/27\",\r\n \"13.86.219.160/29\",\r\n
+ \ \"13.87.216.38/32\",\r\n \"13.88.14.63/32\",\r\n \"13.88.26.200/32\",\r\n
+ \ \"13.91.58.176/32\",\r\n \"13.91.138.229/32\",\r\n \"13.92.179.108/32\",\r\n
+ \ \"13.93.122.1/32\",\r\n \"13.94.26.39/32\",\r\n \"20.36.120.224/27\",\r\n
+ \ \"20.36.121.192/27\",\r\n \"20.36.121.224/28\",\r\n \"20.36.125.128/26\",\r\n
+ \ \"20.37.64.224/27\",\r\n \"20.37.65.192/27\",\r\n \"20.37.65.224/28\",\r\n
+ \ \"20.37.68.36/30\",\r\n \"20.37.70.128/26\",\r\n \"20.37.70.224/27\",\r\n
+ \ \"20.37.71.208/28\",\r\n \"20.37.76.200/30\",\r\n \"20.37.156.204/30\",\r\n
+ \ \"20.37.157.96/27\",\r\n \"20.37.195.112/28\",\r\n \"20.37.195.192/27\",\r\n
+ \ \"20.37.196.160/27\",\r\n \"20.37.224.224/27\",\r\n \"20.37.225.192/27\",\r\n
+ \ \"20.37.225.224/28\",\r\n \"20.37.229.192/26\",\r\n \"20.38.84.108/30\",\r\n
+ \ \"20.38.85.160/27\",\r\n \"20.38.87.128/27\",\r\n \"20.38.87.160/28\",\r\n
+ \ \"20.38.136.240/28\",\r\n \"20.38.137.128/27\",\r\n \"20.38.137.224/27\",\r\n
+ \ \"20.38.141.12/30\",\r\n \"20.38.142.128/26\",\r\n \"20.38.142.224/27\",\r\n
+ \ \"20.38.143.240/28\",\r\n \"20.39.11.112/28\",\r\n \"20.39.12.0/27\",\r\n
+ \ \"20.39.12.96/27\",\r\n \"20.39.15.56/31\",\r\n \"20.39.15.60/30\",\r\n
+ \ \"20.40.125.208/32\",\r\n \"20.40.164.245/32\",\r\n \"20.40.170.73/32\",\r\n
+ \ \"20.40.187.210/32\",\r\n \"20.40.188.109/32\",\r\n \"20.40.190.135/32\",\r\n
+ \ \"20.40.190.225/32\",\r\n \"20.40.200.64/27\",\r\n \"20.40.200.96/28\",\r\n
+ \ \"20.40.207.152/29\",\r\n \"20.40.224.32/28\",\r\n \"20.40.224.48/30\",\r\n
+ \ \"20.40.224.56/29\",\r\n \"20.40.225.64/26\",\r\n \"20.40.225.192/26\",\r\n
+ \ \"20.40.229.64/28\",\r\n \"20.41.5.160/27\",\r\n \"20.41.65.192/27\",\r\n
+ \ \"20.41.66.160/27\",\r\n \"20.41.66.192/28\",\r\n \"20.41.69.40/29\",\r\n
+ \ \"20.41.69.56/30\",\r\n \"20.41.193.176/28\",\r\n \"20.41.193.192/27\",\r\n
+ \ \"20.41.195.160/27\",\r\n \"20.41.208.0/30\",\r\n \"20.42.4.204/30\",\r\n
+ \ \"20.42.6.144/28\",\r\n \"20.42.6.160/27\",\r\n \"20.42.7.128/27\",\r\n
+ \ \"20.42.131.240/28\",\r\n \"20.42.227.144/28\",\r\n \"20.42.227.160/27\",\r\n
+ \ \"20.42.228.128/27\",\r\n \"20.43.42.16/28\",\r\n \"20.43.42.32/27\",\r\n
+ \ \"20.43.43.0/27\",\r\n \"20.43.45.232/29\",\r\n \"20.43.45.244/30\",\r\n
+ \ \"20.43.47.0/26\",\r\n \"20.43.47.128/27\",\r\n \"20.43.66.16/28\",\r\n
+ \ \"20.43.66.32/27\",\r\n \"20.43.67.0/27\",\r\n \"20.43.88.240/32\",\r\n
+ \ \"20.43.121.0/29\",\r\n \"20.43.121.32/29\",\r\n \"20.43.131.48/28\",\r\n
+ \ \"20.43.132.0/27\",\r\n \"20.43.132.96/27\",\r\n \"20.44.8.160/29\",\r\n
+ \ \"20.44.8.192/29\",\r\n \"20.44.17.16/29\",\r\n \"20.44.17.48/29\",\r\n
+ \ \"20.44.27.120/29\",\r\n \"20.44.27.216/29\",\r\n \"20.45.67.213/32\",\r\n
+ \ \"20.45.112.224/27\",\r\n \"20.45.113.192/27\",\r\n \"20.45.113.224/28\",\r\n
+ \ \"20.45.116.128/26\",\r\n \"20.45.116.240/28\",\r\n \"20.45.192.126/31\",\r\n
+ \ \"20.45.195.128/27\",\r\n \"20.45.195.224/27\",\r\n \"20.45.196.0/28\",\r\n
+ \ \"20.45.198.88/29\",\r\n \"20.45.199.36/30\",\r\n \"20.46.10.128/26\",\r\n
+ \ \"20.46.10.192/27\",\r\n \"20.46.11.224/28\",\r\n \"20.48.192.64/29\",\r\n
+ \ \"20.48.192.80/30\",\r\n \"20.48.193.64/26\",\r\n \"20.48.193.192/27\",\r\n
+ \ \"20.48.196.240/28\",\r\n \"20.49.96.128/27\",\r\n \"20.49.96.160/28\",\r\n
+ \ \"20.49.102.56/29\",\r\n \"20.49.102.192/28\",\r\n \"20.49.102.208/30\",\r\n
+ \ \"20.49.102.216/29\",\r\n \"20.49.102.224/30\",\r\n \"20.49.103.128/26\",\r\n
+ \ \"20.49.114.160/29\",\r\n \"20.49.114.176/29\",\r\n \"20.49.114.184/30\",\r\n
+ \ \"20.49.114.224/27\",\r\n \"20.49.115.192/26\",\r\n \"20.49.118.64/27\",\r\n
+ \ \"20.49.119.208/28\",\r\n \"20.49.126.136/29\",\r\n \"20.49.126.144/29\",\r\n
+ \ \"20.49.126.152/30\",\r\n \"20.49.126.224/27\",\r\n \"20.50.1.16/28\",\r\n
+ \ \"20.50.68.126/31\",\r\n \"20.51.8.128/26\",\r\n \"20.51.8.224/27\",\r\n
+ \ \"20.51.12.192/27\",\r\n \"20.51.12.224/28\",\r\n \"20.51.16.192/26\",\r\n
+ \ \"20.51.17.32/27\",\r\n \"20.51.20.112/28\",\r\n \"20.52.64.16/29\",\r\n
+ \ \"20.52.72.48/29\",\r\n \"20.52.88.128/28\",\r\n \"20.53.41.32/29\",\r\n
+ \ \"20.53.41.40/30\",\r\n \"20.53.41.48/28\",\r\n \"20.53.44.0/30\",\r\n
+ \ \"20.53.44.128/26\",\r\n \"20.53.44.192/27\",\r\n \"20.53.47.80/28\",\r\n
+ \ \"20.53.48.176/28\",\r\n \"20.53.56.112/28\",\r\n \"20.58.66.64/27\",\r\n
+ \ \"20.58.67.32/28\",\r\n \"20.61.96.168/29\",\r\n \"20.61.96.176/29\",\r\n
+ \ \"20.61.96.188/30\",\r\n \"20.61.97.64/27\",\r\n \"20.61.98.64/31\",\r\n
+ \ \"20.61.98.192/26\",\r\n \"20.61.99.32/27\",\r\n \"20.61.103.80/28\",\r\n
+ \ \"20.62.58.0/26\",\r\n \"20.62.59.96/28\",\r\n \"20.62.128.144/30\",\r\n
+ \ \"20.62.129.64/26\",\r\n \"20.62.129.160/27\",\r\n \"20.62.134.80/28\",\r\n
+ \ \"20.65.130.0/26\",\r\n \"20.65.130.128/26\",\r\n \"20.65.133.96/28\",\r\n
+ \ \"20.66.2.64/26\",\r\n \"20.66.2.160/27\",\r\n \"20.66.4.240/28\",\r\n
+ \ \"20.69.0.240/28\",\r\n \"20.72.20.64/27\",\r\n \"20.72.20.128/26\",\r\n
+ \ \"20.72.21.8/29\",\r\n \"20.150.161.160/27\",\r\n \"20.150.164.128/27\",\r\n
+ \ \"20.150.164.160/28\",\r\n \"20.150.167.64/26\",\r\n \"20.150.174.136/29\",\r\n
+ \ \"20.150.241.80/29\",\r\n \"20.150.244.48/28\",\r\n \"20.150.244.128/27\",\r\n
+ \ \"20.184.58.62/32\",\r\n \"20.184.240.78/32\",\r\n \"20.184.241.66/32\",\r\n
+ \ \"20.184.241.238/32\",\r\n \"20.184.242.113/32\",\r\n \"20.184.242.115/32\",\r\n
+ \ \"20.184.242.189/32\",\r\n \"20.185.105.28/32\",\r\n \"20.187.195.152/29\",\r\n
+ \ \"20.187.196.192/30\",\r\n \"20.187.197.64/26\",\r\n \"20.187.197.160/27\",\r\n
+ \ \"20.189.108.64/27\",\r\n \"20.189.109.32/27\",\r\n \"20.189.109.64/28\",\r\n
+ \ \"20.189.111.200/30\",\r\n \"20.189.111.208/28\",\r\n \"20.189.225.0/26\",\r\n
+ \ \"20.189.225.96/27\",\r\n \"20.189.228.144/28\",\r\n \"20.191.160.8/29\",\r\n
+ \ \"20.191.160.20/30\",\r\n \"20.191.160.96/28\",\r\n \"20.191.160.112/30\",\r\n
+ \ \"20.191.161.128/26\",\r\n \"20.191.161.224/27\",\r\n \"20.191.166.96/28\",\r\n
+ \ \"20.192.44.96/28\",\r\n \"20.192.48.192/28\",\r\n \"20.192.50.80/28\",\r\n
+ \ \"20.192.50.208/29\",\r\n \"20.192.80.32/28\",\r\n \"20.192.161.144/28\",\r\n
+ \ \"20.192.161.160/27\",\r\n \"20.192.164.128/27\",\r\n \"20.192.167.64/26\",\r\n
+ \ \"20.192.184.84/30\",\r\n \"20.192.225.208/28\",\r\n \"20.192.225.224/27\",\r\n
+ \ \"20.192.228.192/27\",\r\n \"20.192.231.128/26\",\r\n \"20.193.194.0/28\",\r\n
+ \ \"20.193.194.48/29\",\r\n \"20.193.194.64/28\",\r\n \"20.194.72.64/26\",\r\n
+ \ \"20.194.72.192/27\",\r\n \"20.194.74.64/28\",\r\n \"20.195.65.240/29\",\r\n
+ \ \"20.195.72.240/28\",\r\n \"20.195.146.80/28\",\r\n \"23.96.13.121/32\",\r\n
+ \ \"23.96.229.148/32\",\r\n \"23.98.107.28/30\",\r\n \"23.98.107.200/29\",\r\n
+ \ \"23.98.107.208/28\",\r\n \"23.98.108.36/30\",\r\n \"23.98.108.40/31\",\r\n
+ \ \"23.98.108.192/26\",\r\n \"23.98.109.32/29\",\r\n \"23.100.0.32/32\",\r\n
+ \ \"23.100.57.171/32\",\r\n \"23.100.59.49/32\",\r\n \"40.64.128.192/27\",\r\n
+ \ \"40.64.134.140/30\",\r\n \"40.64.134.168/29\",\r\n \"40.64.134.176/28\",\r\n
+ \ \"40.64.135.80/29\",\r\n \"40.67.48.224/27\",\r\n \"40.67.49.192/27\",\r\n
+ \ \"40.67.49.224/28\",\r\n \"40.67.52.128/26\",\r\n \"40.67.53.160/28\",\r\n
+ \ \"40.69.73.194/32\",\r\n \"40.69.104.32/30\",\r\n \"40.69.111.36/30\",\r\n
+ \ \"40.70.47.165/32\",\r\n \"40.70.241.203/32\",\r\n \"40.74.30.108/30\",\r\n
+ \ \"40.74.31.64/26\",\r\n \"40.74.64.203/32\",\r\n \"40.78.20.224/32\",\r\n
+ \ \"40.78.204.0/29\",\r\n \"40.78.204.32/29\",\r\n \"40.79.132.48/29\",\r\n
+ \ \"40.79.132.80/29\",\r\n \"40.79.156.64/27\",\r\n \"40.79.176.32/30\",\r\n
+ \ \"40.79.187.168/29\",\r\n \"40.79.187.200/29\",\r\n \"40.80.57.208/28\",\r\n
+ \ \"40.80.57.224/27\",\r\n \"40.80.58.192/27\",\r\n \"40.80.63.152/30\",\r\n
+ \ \"40.80.63.224/28\",\r\n \"40.80.63.240/30\",\r\n \"40.80.169.192/27\",\r\n
+ \ \"40.80.170.160/27\",\r\n \"40.80.170.192/28\",\r\n \"40.80.172.28/30\",\r\n
+ \ \"40.80.176.0/28\",\r\n \"40.80.188.112/28\",\r\n \"40.80.190.128/27\",\r\n
+ \ \"40.80.190.224/27\",\r\n \"40.82.253.200/30\",\r\n \"40.82.253.208/28\",\r\n
+ \ \"40.82.255.0/26\",\r\n \"40.82.255.96/27\",\r\n \"40.85.230.100/32\",\r\n
+ \ \"40.86.227.247/32\",\r\n \"40.87.48.184/32\",\r\n \"40.88.22.25/32\",\r\n
+ \ \"40.89.17.240/28\",\r\n \"40.89.18.128/27\",\r\n \"40.89.18.224/27\",\r\n
+ \ \"40.89.23.36/30\",\r\n \"40.89.133.209/32\",\r\n \"40.89.134.214/32\",\r\n
+ \ \"40.90.138.4/32\",\r\n \"40.90.139.2/32\",\r\n \"40.90.139.36/32\",\r\n
+ \ \"40.90.139.163/32\",\r\n \"40.90.141.99/32\",\r\n \"40.112.254.71/32\",\r\n
+ \ \"40.113.124.208/32\",\r\n \"40.113.226.173/32\",\r\n \"40.115.248.103/32\",\r\n
+ \ \"40.117.154.42/32\",\r\n \"40.117.232.90/32\",\r\n \"40.119.2.134/32\",\r\n
+ \ \"40.119.11.216/29\",\r\n \"40.120.8.48/30\",\r\n \"40.121.217.232/32\",\r\n
+ \ \"40.122.42.111/32\",\r\n \"40.123.205.29/32\",\r\n \"40.123.210.248/32\",\r\n
+ \ \"40.123.214.182/32\",\r\n \"40.123.214.251/32\",\r\n \"40.123.218.49/32\",\r\n
+ \ \"40.127.76.4/32\",\r\n \"40.127.76.10/32\",\r\n \"40.127.165.113/32\",\r\n
+ \ \"51.11.97.80/29\",\r\n \"51.12.17.32/28\",\r\n \"51.12.17.136/29\",\r\n
+ \ \"51.12.17.144/28\",\r\n \"51.12.25.32/28\",\r\n \"51.12.25.208/29\",\r\n
+ \ \"51.12.41.48/28\",\r\n \"51.12.41.128/27\",\r\n \"51.12.41.224/27\",\r\n
+ \ \"51.12.43.192/26\",\r\n \"51.12.46.240/28\",\r\n \"51.12.193.48/28\",\r\n
+ \ \"51.12.193.128/27\",\r\n \"51.12.193.224/27\",\r\n \"51.12.195.128/26\",\r\n
+ \ \"51.13.1.0/29\",\r\n \"51.13.128.72/29\",\r\n \"51.13.136.64/26\",\r\n
+ \ \"51.13.137.192/28\",\r\n \"51.13.137.224/27\",\r\n \"51.104.25.240/28\",\r\n
+ \ \"51.104.27.64/27\",\r\n \"51.104.28.32/27\",\r\n \"51.104.31.160/29\",\r\n
+ \ \"51.104.31.168/30\",\r\n \"51.104.31.176/28\",\r\n \"51.105.67.176/29\",\r\n
+ \ \"51.105.67.208/29\",\r\n \"51.105.80.224/27\",\r\n \"51.105.81.192/27\",\r\n
+ \ \"51.105.81.224/28\",\r\n \"51.105.89.128/27\",\r\n \"51.105.89.224/27\",\r\n
+ \ \"51.105.90.0/28\",\r\n \"51.105.92.52/30\",\r\n \"51.105.170.64/32\",\r\n
+ \ \"51.107.48.240/28\",\r\n \"51.107.49.128/27\",\r\n \"51.107.49.224/27\",\r\n
+ \ \"51.107.52.216/29\",\r\n \"51.107.53.36/30\",\r\n \"51.107.53.40/29\",\r\n
+ \ \"51.107.84.104/32\",\r\n \"51.107.128.24/29\",\r\n \"51.107.144.224/27\",\r\n
+ \ \"51.107.145.192/27\",\r\n \"51.107.145.224/28\",\r\n \"51.107.148.20/30\",\r\n
+ \ \"51.107.148.64/28\",\r\n \"51.107.192.72/29\",\r\n \"51.107.241.0/26\",\r\n
+ \ \"51.107.241.128/27\",\r\n \"51.107.242.224/28\",\r\n \"51.107.249.0/26\",\r\n
+ \ \"51.107.249.128/27\",\r\n \"51.107.250.240/28\",\r\n \"51.116.48.144/28\",\r\n
+ \ \"51.116.48.160/27\",\r\n \"51.116.49.0/27\",\r\n \"51.116.51.192/26\",\r\n
+ \ \"51.116.54.176/28\",\r\n \"51.116.55.64/28\",\r\n \"51.116.144.144/28\",\r\n
+ \ \"51.116.144.160/27\",\r\n \"51.116.145.0/27\",\r\n \"51.116.148.128/26\",\r\n
+ \ \"51.116.149.208/28\",\r\n \"51.120.40.240/28\",\r\n \"51.120.41.128/27\",\r\n
+ \ \"51.120.41.224/27\",\r\n \"51.120.109.192/29\",\r\n \"51.120.224.224/27\",\r\n
+ \ \"51.120.225.192/27\",\r\n \"51.120.225.224/28\",\r\n \"51.120.232.64/26\",\r\n
+ \ \"51.120.233.144/28\",\r\n \"51.120.233.160/27\",\r\n \"51.120.237.0/29\",\r\n
+ \ \"51.124.95.46/32\",\r\n \"51.124.140.143/32\",\r\n \"51.137.162.128/27\",\r\n
+ \ \"51.137.162.224/27\",\r\n \"51.137.163.0/28\",\r\n \"51.137.166.28/30\",\r\n
+ \ \"51.137.166.44/30\",\r\n \"51.137.166.48/28\",\r\n \"51.137.167.192/26\",\r\n
+ \ \"51.138.40.194/32\",\r\n \"51.138.41.75/32\",\r\n \"51.138.160.4/30\",\r\n
+ \ \"51.138.210.144/28\",\r\n \"51.140.5.56/32\",\r\n \"51.140.105.165/32\",\r\n
+ \ \"51.140.202.0/32\",\r\n \"51.143.192.224/27\",\r\n \"51.143.193.192/27\",\r\n
+ \ \"51.143.193.224/28\",\r\n \"51.143.208.128/30\",\r\n \"51.143.209.0/26\",\r\n
+ \ \"51.143.209.64/27\",\r\n \"51.143.212.160/28\",\r\n \"51.144.83.210/32\",\r\n
+ \ \"52.136.48.240/28\",\r\n \"52.136.49.128/27\",\r\n \"52.136.49.224/27\",\r\n
+ \ \"52.136.53.0/26\",\r\n \"52.136.184.128/26\",\r\n \"52.136.184.192/27\",\r\n
+ \ \"52.136.185.160/28\",\r\n \"52.138.41.171/32\",\r\n \"52.138.92.172/30\",\r\n
+ \ \"52.139.106.0/26\",\r\n \"52.139.106.128/27\",\r\n \"52.139.107.192/28\",\r\n
+ \ \"52.140.105.192/27\",\r\n \"52.140.106.160/27\",\r\n \"52.140.106.192/28\",\r\n
+ \ \"52.140.110.96/29\",\r\n \"52.140.110.104/30\",\r\n \"52.140.110.112/28\",\r\n
+ \ \"52.140.110.160/30\",\r\n \"52.140.111.128/26\",\r\n \"52.140.111.224/27\",\r\n
+ \ \"52.142.81.236/32\",\r\n \"52.142.83.87/32\",\r\n \"52.142.84.66/32\",\r\n
+ \ \"52.142.85.51/32\",\r\n \"52.143.91.192/28\",\r\n \"52.146.79.144/28\",\r\n
+ \ \"52.146.79.224/27\",\r\n \"52.146.131.32/28\",\r\n \"52.146.131.48/30\",\r\n
+ \ \"52.146.131.96/27\",\r\n \"52.146.132.128/26\",\r\n \"52.146.133.0/27\",\r\n
+ \ \"52.146.137.16/28\",\r\n \"52.147.43.145/32\",\r\n \"52.147.44.12/32\",\r\n
+ \ \"52.147.97.4/30\",\r\n \"52.147.112.0/26\",\r\n \"52.147.112.64/27\",\r\n
+ \ \"52.147.112.208/28\",\r\n \"52.149.31.64/28\",\r\n \"52.150.139.192/27\",\r\n
+ \ \"52.150.140.160/27\",\r\n \"52.150.140.192/28\",\r\n \"52.150.154.200/29\",\r\n
+ \ \"52.150.154.208/28\",\r\n \"52.150.156.32/30\",\r\n \"52.150.156.40/30\",\r\n
+ \ \"52.150.157.64/26\",\r\n \"52.150.157.128/27\",\r\n \"52.152.207.160/28\",\r\n
+ \ \"52.152.207.192/28\",\r\n \"52.155.218.251/32\",\r\n \"52.156.93.240/28\",\r\n
+ \ \"52.156.103.64/27\",\r\n \"52.156.103.96/28\",\r\n \"52.161.16.73/32\",\r\n
+ \ \"52.162.110.248/29\",\r\n \"52.162.111.24/29\",\r\n \"52.163.56.146/32\",\r\n
+ \ \"52.168.112.0/26\",\r\n \"52.171.134.140/32\",\r\n \"52.172.112.0/28\",\r\n
+ \ \"52.172.112.16/29\",\r\n \"52.172.112.192/26\",\r\n \"52.172.113.32/27\",\r\n
+ \ \"52.172.116.16/28\",\r\n \"52.172.187.21/32\",\r\n \"52.173.240.242/32\",\r\n
+ \ \"52.174.60.141/32\",\r\n \"52.174.146.221/32\",\r\n \"52.175.18.186/32\",\r\n
+ \ \"52.175.35.166/32\",\r\n \"52.179.13.227/32\",\r\n \"52.179.14.109/32\",\r\n
+ \ \"52.179.113.96/27\",\r\n \"52.179.113.128/28\",\r\n \"52.180.162.194/32\",\r\n
+ \ \"52.180.166.172/32\",\r\n \"52.180.178.146/32\",\r\n \"52.180.179.119/32\",\r\n
+ \ \"52.183.33.203/32\",\r\n \"52.186.33.48/28\",\r\n \"52.186.91.216/32\",\r\n
+ \ \"52.187.20.181/32\",\r\n \"52.187.39.99/32\",\r\n \"52.190.33.56/32\",\r\n
+ \ \"52.190.33.61/32\",\r\n \"52.190.33.154/32\",\r\n \"52.191.160.229/32\",\r\n
+ \ \"52.191.173.81/32\",\r\n \"52.224.200.129/32\",\r\n \"52.225.176.80/32\",\r\n
+ \ \"52.228.83.128/27\",\r\n \"52.228.83.224/27\",\r\n \"52.228.84.0/28\",\r\n
+ \ \"52.229.16.14/32\",\r\n \"52.231.74.63/32\",\r\n \"52.231.79.142/32\",\r\n
+ \ \"52.231.148.200/30\",\r\n \"52.231.159.35/32\",\r\n \"52.233.163.218/32\",\r\n
+ \ \"52.237.137.4/32\",\r\n \"52.249.207.163/32\",\r\n \"52.255.83.208/28\",\r\n
+ \ \"52.255.84.176/28\",\r\n \"52.255.84.192/28\",\r\n \"52.255.124.16/28\",\r\n
+ \ \"52.255.124.80/28\",\r\n \"52.255.124.96/28\",\r\n \"65.52.205.19/32\",\r\n
+ \ \"65.52.252.208/28\",\r\n \"102.37.81.64/28\",\r\n \"102.37.160.144/28\",\r\n
+ \ \"102.133.28.72/29\",\r\n \"102.133.28.104/29\",\r\n \"102.133.56.144/28\",\r\n
+ \ \"102.133.56.224/27\",\r\n \"102.133.61.192/26\",\r\n \"102.133.75.174/32\",\r\n
+ \ \"102.133.123.248/29\",\r\n \"102.133.124.24/29\",\r\n
+ \ \"102.133.124.88/29\",\r\n \"102.133.124.96/29\",\r\n \"102.133.156.128/29\",\r\n
+ \ \"102.133.161.242/32\",\r\n \"102.133.162.109/32\",\r\n
+ \ \"102.133.162.196/32\",\r\n \"102.133.162.221/32\",\r\n
+ \ \"102.133.163.185/32\",\r\n \"102.133.217.80/28\",\r\n
+ \ \"102.133.217.96/27\",\r\n \"102.133.218.0/27\",\r\n \"102.133.220.192/30\",\r\n
+ \ \"102.133.221.64/26\",\r\n \"102.133.221.128/27\",\r\n
+ \ \"102.133.236.198/32\",\r\n \"104.42.100.80/32\",\r\n \"104.42.194.173/32\",\r\n
+ \ \"104.42.239.93/32\",\r\n \"104.44.89.44/32\",\r\n \"104.46.112.239/32\",\r\n
+ \ \"104.46.176.164/30\",\r\n \"104.46.176.176/28\",\r\n \"104.46.178.4/30\",\r\n
+ \ \"104.46.178.192/26\",\r\n \"104.46.179.0/27\",\r\n \"104.46.183.128/28\",\r\n
+ \ \"104.46.239.137/32\",\r\n \"104.211.88.173/32\",\r\n \"104.211.222.193/32\",\r\n
+ \ \"104.214.49.162/32\",\r\n \"104.214.233.86/32\",\r\n \"104.215.9.217/32\",\r\n
+ \ \"137.117.70.195/32\",\r\n \"137.135.45.32/32\",\r\n \"168.61.158.107/32\",\r\n
+ \ \"168.61.165.229/32\",\r\n \"168.63.20.177/32\",\r\n \"191.232.39.30/32\",\r\n
+ \ \"191.232.162.204/32\",\r\n \"191.233.10.48/28\",\r\n \"191.233.10.64/27\",\r\n
+ \ \"191.233.10.128/27\",\r\n \"191.233.15.64/26\",\r\n \"191.233.205.72/29\",\r\n
+ \ \"191.233.205.104/29\",\r\n \"191.234.138.136/29\",\r\n
+ \ \"191.234.138.148/30\",\r\n \"191.234.139.192/26\",\r\n
+ \ \"191.234.142.32/27\",\r\n \"191.235.227.128/27\",\r\n
+ \ \"191.235.227.224/27\",\r\n \"191.235.228.0/28\",\r\n \"191.238.72.80/28\",\r\n
+ \ \"2603:1000:4::680/122\",\r\n \"2603:1000:104::180/122\",\r\n
+ \ \"2603:1000:104::380/122\",\r\n \"2603:1000:104:1::640/122\",\r\n
+ \ \"2603:1010:6::80/122\",\r\n \"2603:1010:6:1::640/122\",\r\n
+ \ \"2603:1010:101::680/122\",\r\n \"2603:1010:304::680/122\",\r\n
+ \ \"2603:1010:404::680/122\",\r\n \"2603:1020:5::80/122\",\r\n
+ \ \"2603:1020:5:1::640/122\",\r\n \"2603:1020:206::80/122\",\r\n
+ \ \"2603:1020:206:1::640/122\",\r\n \"2603:1020:305::680/122\",\r\n
+ \ \"2603:1020:405::680/122\",\r\n \"2603:1020:605::680/122\",\r\n
+ \ \"2603:1020:705::80/122\",\r\n \"2603:1020:705:1::640/122\",\r\n
+ \ \"2603:1020:805::80/122\",\r\n \"2603:1020:805:1::640/122\",\r\n
+ \ \"2603:1020:905::680/122\",\r\n \"2603:1020:a04::80/122\",\r\n
+ \ \"2603:1020:a04:1::640/122\",\r\n \"2603:1020:b04::680/122\",\r\n
+ \ \"2603:1020:c04::80/122\",\r\n \"2603:1020:c04:1::640/122\",\r\n
+ \ \"2603:1020:d04::680/122\",\r\n \"2603:1020:e04::80/122\",\r\n
+ \ \"2603:1020:e04::358/125\",\r\n \"2603:1020:e04:1::640/122\",\r\n
+ \ \"2603:1020:e04:2::/122\",\r\n \"2603:1020:e04:3::280/122\",\r\n
+ \ \"2603:1020:f04::680/122\",\r\n \"2603:1020:f04:2::/122\",\r\n
+ \ \"2603:1020:1004::640/122\",\r\n \"2603:1020:1004:1::80/122\",\r\n
+ \ \"2603:1020:1004:1::1f0/125\",\r\n \"2603:1020:1004:1::300/122\",\r\n
+ \ \"2603:1020:1004:1::740/122\",\r\n \"2603:1020:1104::700/121\",\r\n
+ \ \"2603:1020:1104:1::150/125\",\r\n \"2603:1020:1104:1::480/122\",\r\n
+ \ \"2603:1030:f:1::2b8/125\",\r\n \"2603:1030:f:1::680/122\",\r\n
+ \ \"2603:1030:f:2::600/121\",\r\n \"2603:1030:10::80/122\",\r\n
+ \ \"2603:1030:10:1::640/122\",\r\n \"2603:1030:104::80/122\",\r\n
+ \ \"2603:1030:104:1::640/122\",\r\n \"2603:1030:107::730/125\",\r\n
+ \ \"2603:1030:107::740/122\",\r\n \"2603:1030:107::780/122\",\r\n
+ \ \"2603:1030:210::80/122\",\r\n \"2603:1030:210:1::640/122\",\r\n
+ \ \"2603:1030:40b:1::640/122\",\r\n \"2603:1030:40c::80/122\",\r\n
+ \ \"2603:1030:40c:1::640/122\",\r\n \"2603:1030:504::80/122\",\r\n
+ \ \"2603:1030:504::1f0/125\",\r\n \"2603:1030:504::300/122\",\r\n
+ \ \"2603:1030:504:1::640/122\",\r\n \"2603:1030:504:2::200/122\",\r\n
+ \ \"2603:1030:608::680/122\",\r\n \"2603:1030:807::80/122\",\r\n
+ \ \"2603:1030:807:1::640/122\",\r\n \"2603:1030:a07::680/122\",\r\n
+ \ \"2603:1030:b04::680/122\",\r\n \"2603:1030:c06:1::640/122\",\r\n
+ \ \"2603:1030:f05::80/122\",\r\n \"2603:1030:f05:1::640/122\",\r\n
+ \ \"2603:1030:1005::680/122\",\r\n \"2603:1040:5::180/122\",\r\n
+ \ \"2603:1040:5:1::640/122\",\r\n \"2603:1040:207::680/122\",\r\n
+ \ \"2603:1040:407::80/122\",\r\n \"2603:1040:407:1::640/122\",\r\n
+ \ \"2603:1040:606::680/122\",\r\n \"2603:1040:806::680/122\",\r\n
+ \ \"2603:1040:904::80/122\",\r\n \"2603:1040:904:1::640/122\",\r\n
+ \ \"2603:1040:a06::180/122\",\r\n \"2603:1040:a06:1::640/122\",\r\n
+ \ \"2603:1040:b04::680/122\",\r\n \"2603:1040:c06::680/122\",\r\n
+ \ \"2603:1040:d04::640/122\",\r\n \"2603:1040:d04:1::80/122\",\r\n
+ \ \"2603:1040:d04:1::1f0/125\",\r\n \"2603:1040:d04:1::300/122\",\r\n
+ \ \"2603:1040:d04:1::740/122\",\r\n \"2603:1040:f05::80/122\",\r\n
+ \ \"2603:1040:f05::358/125\",\r\n \"2603:1040:f05:1::640/122\",\r\n
+ \ \"2603:1040:f05:2::80/121\",\r\n \"2603:1040:1104::700/121\",\r\n
+ \ \"2603:1040:1104:1::150/125\",\r\n \"2603:1040:1104:1::500/122\",\r\n
+ \ \"2603:1050:6::80/122\",\r\n \"2603:1050:6:1::640/122\",\r\n
+ \ \"2603:1050:403::640/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory\",\r\n \"id\": \"DataFactory\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"13.67.10.208/28\",\r\n
+ \ \"13.69.67.192/28\",\r\n \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n
+ \ \"13.69.230.96/28\",\r\n \"13.70.74.144/28\",\r\n \"13.71.175.80/28\",\r\n
+ \ \"13.71.199.0/28\",\r\n \"13.73.244.32/28\",\r\n \"13.73.253.96/29\",\r\n
+ \ \"13.74.108.224/28\",\r\n \"13.75.39.112/28\",\r\n \"13.77.53.160/28\",\r\n
+ \ \"13.78.109.192/28\",\r\n \"13.86.219.208/28\",\r\n \"13.89.174.192/28\",\r\n
+ \ \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n \"13.104.252.224/28\",\r\n
+ \ \"13.104.253.48/28\",\r\n \"13.104.254.128/28\",\r\n \"20.36.117.208/28\",\r\n
+ \ \"20.36.124.32/28\",\r\n \"20.36.124.128/25\",\r\n \"20.36.125.0/26\",\r\n
+ \ \"20.37.68.144/28\",\r\n \"20.37.69.128/25\",\r\n \"20.37.70.0/26\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.37.193.0/25\",\r\n
+ \ \"20.37.193.128/26\",\r\n \"20.37.198.224/29\",\r\n \"20.37.228.16/28\",\r\n
+ \ \"20.37.228.192/26\",\r\n \"20.37.229.0/25\",\r\n \"20.38.80.192/26\",\r\n
+ \ \"20.38.82.0/23\",\r\n \"20.38.141.16/28\",\r\n \"20.38.141.128/25\",\r\n
+ \ \"20.38.142.0/26\",\r\n \"20.38.147.224/28\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"20.40.206.224/29\",\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n
+ \ \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n \"20.41.197.112/29\",\r\n
+ \ \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n \"20.42.2.0/23\",\r\n
+ \ \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n
+ \ \"20.43.44.208/29\",\r\n \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n
+ \ \"20.43.70.120/29\",\r\n \"20.43.121.48/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.44.10.64/28\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.45.123.160/28\",\r\n \"20.49.83.224/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"20.49.111.0/29\",\r\n \"20.49.114.24/29\",\r\n
+ \ \"20.49.118.128/25\",\r\n \"20.50.68.56/29\",\r\n \"20.52.64.0/28\",\r\n
+ \ \"20.53.0.48/28\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n \"20.72.22.0/23\",\r\n
+ \ \"20.72.28.48/28\",\r\n \"20.150.162.0/23\",\r\n \"20.150.173.16/28\",\r\n
+ \ \"20.150.181.112/28\",\r\n \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n
+ \ \"20.189.109.232/29\",\r\n \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n
+ \ \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n \"20.192.162.0/23\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"20.192.226.0/23\",\r\n \"20.192.238.96/28\",\r\n
+ \ \"20.193.205.144/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n \"23.98.106.128/29\",\r\n
+ \ \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n \"40.64.132.232/29\",\r\n
+ \ \"40.69.108.160/28\",\r\n \"40.69.111.48/28\",\r\n \"40.70.148.160/28\",\r\n
+ \ \"40.71.14.32/28\",\r\n \"40.74.24.192/26\",\r\n \"40.74.26.0/23\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"40.78.196.128/28\",\r\n
+ \ \"40.78.229.96/28\",\r\n \"40.78.236.176/28\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n
+ \ \"40.79.146.240/28\",\r\n \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n
+ \ \"40.79.187.208/28\",\r\n \"40.79.195.224/28\",\r\n \"40.80.51.160/28\",\r\n
+ \ \"40.80.56.128/25\",\r\n \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n
+ \ \"40.80.168.128/25\",\r\n \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n
+ \ \"40.80.176.96/28\",\r\n \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n
+ \ \"40.82.249.64/26\",\r\n \"40.82.250.0/23\",\r\n \"40.89.16.128/25\",\r\n
+ \ \"40.89.17.0/26\",\r\n \"40.89.20.224/29\",\r\n \"40.113.176.232/29\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"40.120.8.56/29\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"40.122.0.16/28\",\r\n
+ \ \"51.12.18.0/23\",\r\n \"51.12.26.0/23\",\r\n \"51.12.101.176/28\",\r\n
+ \ \"51.12.206.16/28\",\r\n \"51.12.229.64/28\",\r\n \"51.12.237.64/28\",\r\n
+ \ \"51.13.128.0/28\",\r\n \"51.104.9.32/28\",\r\n \"51.104.24.128/25\",\r\n
+ \ \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n \"51.105.67.240/28\",\r\n
+ \ \"51.105.75.240/28\",\r\n \"51.105.92.176/28\",\r\n \"51.105.93.64/26\",\r\n
+ \ \"51.105.93.128/25\",\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n
+ \ \"51.107.52.128/26\",\r\n \"51.107.128.0/28\",\r\n \"51.107.148.80/28\",\r\n
+ \ \"51.107.149.0/25\",\r\n \"51.107.149.128/26\",\r\n \"51.107.192.80/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"51.120.44.208/28\",\r\n \"51.120.45.64/26\",\r\n
+ \ \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n \"51.120.109.96/28\",\r\n
+ \ \"51.120.213.32/28\",\r\n \"51.120.228.224/27\",\r\n \"51.120.229.64/26\",\r\n
+ \ \"51.120.229.128/25\",\r\n \"51.120.238.0/23\",\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.138.160.16/28\",\r\n
+ \ \"51.140.212.112/28\",\r\n \"52.138.92.128/28\",\r\n \"52.138.229.32/28\",\r\n
+ \ \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n \"52.140.108.208/29\",\r\n
+ \ \"52.150.136.192/26\",\r\n \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n
+ \ \"52.150.155.0/24\",\r\n \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n
+ \ \"52.162.111.48/28\",\r\n \"52.167.107.224/28\",\r\n \"52.176.232.16/28\",\r\n
+ \ \"52.182.141.16/28\",\r\n \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n
+ \ \"52.228.86.144/29\",\r\n \"52.231.20.64/28\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\",\r\n \"52.236.187.112/28\",\r\n \"52.246.155.224/28\",\r\n
+ \ \"52.250.228.0/29\",\r\n \"102.37.64.96/28\",\r\n \"102.133.60.48/28\",\r\n
+ \ \"102.133.60.192/26\",\r\n \"102.133.61.0/25\",\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n \"191.233.12.0/23\",\r\n
+ \ \"191.233.54.224/28\",\r\n \"191.233.205.160/28\",\r\n
+ \ \"191.234.137.32/29\",\r\n \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n
+ \ \"191.234.149.0/28\",\r\n \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n
+ \ \"191.235.225.0/26\",\r\n \"2603:1000:4::440/122\",\r\n
+ \ \"2603:1000:4::500/121\",\r\n \"2603:1000:4:402::330/124\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\",\r\n \"2603:1010:304::440/122\",\r\n
+ \ \"2603:1010:304::500/121\",\r\n \"2603:1010:304:402::330/124\",\r\n
+ \ \"2603:1010:404::440/122\",\r\n \"2603:1010:404::500/121\",\r\n
+ \ \"2603:1010:404:402::330/124\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\",\r\n \"2603:1020:305::440/122\",\r\n
+ \ \"2603:1020:305::500/121\",\r\n \"2603:1020:305:402::330/124\",\r\n
+ \ \"2603:1020:405::440/122\",\r\n \"2603:1020:405::500/121\",\r\n
+ \ \"2603:1020:405:402::330/124\",\r\n \"2603:1020:605::440/122\",\r\n
+ \ \"2603:1020:605::500/121\",\r\n \"2603:1020:605:402::330/124\",\r\n
+ \ \"2603:1020:705:1::480/121\",\r\n \"2603:1020:705:1::500/122\",\r\n
+ \ \"2603:1020:705:1::700/121\",\r\n \"2603:1020:705:1::780/122\",\r\n
+ \ \"2603:1020:705:402::330/124\",\r\n \"2603:1020:705:802::210/124\",\r\n
+ \ \"2603:1020:705:c02::210/124\",\r\n \"2603:1020:805:1::480/121\",\r\n
+ \ \"2603:1020:805:1::500/122\",\r\n \"2603:1020:805:1::700/121\",\r\n
+ \ \"2603:1020:805:1::780/122\",\r\n \"2603:1020:805:402::330/124\",\r\n
+ \ \"2603:1020:805:802::210/124\",\r\n \"2603:1020:805:c02::210/124\",\r\n
+ \ \"2603:1020:905::440/122\",\r\n \"2603:1020:905::500/121\",\r\n
+ \ \"2603:1020:905:402::330/124\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\",\r\n
+ \ \"2603:1020:b04::440/122\",\r\n \"2603:1020:b04::500/121\",\r\n
+ \ \"2603:1020:b04:402::330/124\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\",\r\n
+ \ \"2603:1020:d04::440/122\",\r\n \"2603:1020:d04::500/121\",\r\n
+ \ \"2603:1020:d04:402::330/124\",\r\n \"2603:1020:e04:1::480/121\",\r\n
+ \ \"2603:1020:e04:1::500/122\",\r\n \"2603:1020:e04:1::700/121\",\r\n
+ \ \"2603:1020:e04:1::780/122\",\r\n \"2603:1020:e04:402::330/124\",\r\n
+ \ \"2603:1020:e04:802::210/124\",\r\n \"2603:1020:e04:c02::210/124\",\r\n
+ \ \"2603:1020:f04::440/122\",\r\n \"2603:1020:f04::500/121\",\r\n
+ \ \"2603:1020:f04:402::330/124\",\r\n \"2603:1020:1004::480/121\",\r\n
+ \ \"2603:1020:1004::500/122\",\r\n \"2603:1020:1004::700/121\",\r\n
+ \ \"2603:1020:1004::780/122\",\r\n \"2603:1020:1004:400::240/124\",\r\n
+ \ \"2603:1020:1004:800::340/124\",\r\n \"2603:1020:1004:c02::380/124\",\r\n
+ \ \"2603:1020:1104::600/121\",\r\n \"2603:1020:1104:400::500/124\",\r\n
+ \ \"2603:1030:f:1::440/122\",\r\n \"2603:1030:f:1::500/121\",\r\n
+ \ \"2603:1030:f:400::b30/124\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\",\r\n
+ \ \"2603:1030:104:1::480/121\",\r\n \"2603:1030:104:1::500/122\",\r\n
+ \ \"2603:1030:104:1::700/121\",\r\n \"2603:1030:104:1::780/122\",\r\n
+ \ \"2603:1030:104:402::330/124\",\r\n \"2603:1030:107::600/121\",\r\n
+ \ \"2603:1030:107:400::380/124\",\r\n \"2603:1030:210:1::480/121\",\r\n
+ \ \"2603:1030:210:1::500/122\",\r\n \"2603:1030:210:1::700/121\",\r\n
+ \ \"2603:1030:210:1::780/122\",\r\n \"2603:1030:210:402::330/124\",\r\n
+ \ \"2603:1030:210:802::210/124\",\r\n \"2603:1030:210:c02::210/124\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\",\r\n \"2603:1030:40c:1::480/121\",\r\n
+ \ \"2603:1030:40c:1::500/122\",\r\n \"2603:1030:40c:1::700/121\",\r\n
+ \ \"2603:1030:40c:1::780/122\",\r\n \"2603:1030:40c:402::330/124\",\r\n
+ \ \"2603:1030:40c:802::210/124\",\r\n \"2603:1030:40c:c02::210/124\",\r\n
+ \ \"2603:1030:504:1::480/121\",\r\n \"2603:1030:504:1::500/122\",\r\n
+ \ \"2603:1030:504:1::700/121\",\r\n \"2603:1030:504:1::780/122\",\r\n
+ \ \"2603:1030:504:402::240/124\",\r\n \"2603:1030:504:802::340/124\",\r\n
+ \ \"2603:1030:504:c02::380/124\",\r\n \"2603:1030:608::440/122\",\r\n
+ \ \"2603:1030:608::500/121\",\r\n \"2603:1030:608:402::330/124\",\r\n
+ \ \"2603:1030:807:1::480/121\",\r\n \"2603:1030:807:1::500/122\",\r\n
+ \ \"2603:1030:807:1::700/121\",\r\n \"2603:1030:807:1::780/122\",\r\n
+ \ \"2603:1030:807:402::330/124\",\r\n \"2603:1030:807:802::210/124\",\r\n
+ \ \"2603:1030:807:c02::210/124\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\",\r\n
+ \ \"2603:1030:b04::440/122\",\r\n \"2603:1030:b04::500/121\",\r\n
+ \ \"2603:1030:b04:402::330/124\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\",\r\n
+ \ \"2603:1030:f05:1::480/121\",\r\n \"2603:1030:f05:1::500/122\",\r\n
+ \ \"2603:1030:f05:1::700/121\",\r\n \"2603:1030:f05:1::780/122\",\r\n
+ \ \"2603:1030:f05:402::330/124\",\r\n \"2603:1030:f05:802::210/124\",\r\n
+ \ \"2603:1030:f05:c02::210/124\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\",\r\n
+ \ \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\",\r\n \"2603:1040:207::440/122\",\r\n
+ \ \"2603:1040:207::500/121\",\r\n \"2603:1040:207:402::330/124\",\r\n
+ \ \"2603:1040:407:1::480/121\",\r\n \"2603:1040:407:1::500/122\",\r\n
+ \ \"2603:1040:407:1::700/121\",\r\n \"2603:1040:407:1::780/122\",\r\n
+ \ \"2603:1040:407:402::330/124\",\r\n \"2603:1040:407:802::210/124\",\r\n
+ \ \"2603:1040:407:c02::210/124\",\r\n \"2603:1040:606::440/122\",\r\n
+ \ \"2603:1040:606::500/121\",\r\n \"2603:1040:606:402::330/124\",\r\n
+ \ \"2603:1040:806::440/122\",\r\n \"2603:1040:806::500/121\",\r\n
+ \ \"2603:1040:806:402::330/124\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\",\r\n
+ \ \"2603:1040:a06::/121\",\r\n \"2603:1040:a06::80/122\",\r\n
+ \ \"2603:1040:a06:1::480/121\",\r\n \"2603:1040:a06:1::500/122\",\r\n
+ \ \"2603:1040:a06:1::700/121\",\r\n \"2603:1040:a06:1::780/122\",\r\n
+ \ \"2603:1040:a06:402::330/124\",\r\n \"2603:1040:a06:802::210/124\",\r\n
+ \ \"2603:1040:a06:c02::210/124\",\r\n \"2603:1040:b04::440/122\",\r\n
+ \ \"2603:1040:b04::500/121\",\r\n \"2603:1040:b04:402::330/124\",\r\n
+ \ \"2603:1040:c06::440/122\",\r\n \"2603:1040:c06::500/121\",\r\n
+ \ \"2603:1040:c06:402::330/124\",\r\n \"2603:1040:d04::480/121\",\r\n
+ \ \"2603:1040:d04::500/122\",\r\n \"2603:1040:d04::700/121\",\r\n
+ \ \"2603:1040:d04::780/122\",\r\n \"2603:1040:d04:400::240/124\",\r\n
+ \ \"2603:1040:d04:800::340/124\",\r\n \"2603:1040:d04:c02::380/124\",\r\n
+ \ \"2603:1040:f05:1::480/121\",\r\n \"2603:1040:f05:1::500/122\",\r\n
+ \ \"2603:1040:f05:1::700/121\",\r\n \"2603:1040:f05:1::780/122\",\r\n
+ \ \"2603:1040:f05:402::330/124\",\r\n \"2603:1040:f05:802::210/124\",\r\n
+ \ \"2603:1040:f05:c02::210/124\",\r\n \"2603:1040:1104::600/121\",\r\n
+ \ \"2603:1040:1104:400::500/124\",\r\n \"2603:1050:6:1::480/121\",\r\n
+ \ \"2603:1050:6:1::500/122\",\r\n \"2603:1050:6:1::700/121\",\r\n
+ \ \"2603:1050:6:1::780/122\",\r\n \"2603:1050:6:402::330/124\",\r\n
+ \ \"2603:1050:6:802::210/124\",\r\n \"2603:1050:6:c02::210/124\",\r\n
+ \ \"2603:1050:403::480/121\",\r\n \"2603:1050:403::500/122\",\r\n
+ \ \"2603:1050:403:400::240/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.AustraliaEast\",\r\n \"id\": \"DataFactory.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.74.144/28\",\r\n \"20.37.193.0/25\",\r\n \"20.37.193.128/26\",\r\n
+ \ \"20.37.198.224/29\",\r\n \"20.53.45.0/24\",\r\n \"20.53.46.0/26\",\r\n
+ \ \"40.79.163.80/28\",\r\n \"40.79.171.160/28\",\r\n \"2603:1010:6:1::480/121\",\r\n
+ \ \"2603:1010:6:1::500/122\",\r\n \"2603:1010:6:1::700/121\",\r\n
+ \ \"2603:1010:6:1::780/122\",\r\n \"2603:1010:6:402::330/124\",\r\n
+ \ \"2603:1010:6:802::210/124\",\r\n \"2603:1010:6:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.AustraliaSoutheast\",\r\n
+ \ \"id\": \"DataFactory.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.53.160/28\",\r\n \"20.42.225.0/25\",\r\n \"20.42.225.128/26\",\r\n
+ \ \"20.42.230.136/29\",\r\n \"104.46.179.64/26\",\r\n \"104.46.182.0/24\",\r\n
+ \ \"2603:1010:101::440/122\",\r\n \"2603:1010:101::500/121\",\r\n
+ \ \"2603:1010:101:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.BrazilSouth\",\r\n \"id\": \"DataFactory.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.205.160/28\",\r\n \"191.234.137.32/29\",\r\n
+ \ \"191.234.142.64/26\",\r\n \"191.234.143.0/24\",\r\n \"191.234.149.0/28\",\r\n
+ \ \"191.234.157.0/28\",\r\n \"191.235.224.128/25\",\r\n \"191.235.225.0/26\",\r\n
+ \ \"2603:1050:6:1::480/121\",\r\n \"2603:1050:6:1::500/122\",\r\n
+ \ \"2603:1050:6:1::700/121\",\r\n \"2603:1050:6:1::780/122\",\r\n
+ \ \"2603:1050:6:402::330/124\",\r\n \"2603:1050:6:802::210/124\",\r\n
+ \ \"2603:1050:6:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.CanadaCentral\",\r\n \"id\": \"DataFactory.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.175.80/28\",\r\n \"20.38.147.224/28\",\r\n
+ \ \"52.228.80.128/25\",\r\n \"52.228.81.0/26\",\r\n \"52.228.86.144/29\",\r\n
+ \ \"52.246.155.224/28\",\r\n \"2603:1030:f05:1::480/121\",\r\n
+ \ \"2603:1030:f05:1::500/122\",\r\n \"2603:1030:f05:1::700/121\",\r\n
+ \ \"2603:1030:f05:1::780/122\",\r\n \"2603:1030:f05:402::330/124\",\r\n
+ \ \"2603:1030:f05:802::210/124\",\r\n \"2603:1030:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CanadaEast\",\r\n
+ \ \"id\": \"DataFactory.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.160/28\",\r\n
+ \ \"40.69.111.48/28\",\r\n \"40.89.16.128/25\",\r\n \"40.89.17.0/26\",\r\n
+ \ \"40.89.20.224/29\",\r\n \"2603:1030:1005::440/122\",\r\n
+ \ \"2603:1030:1005::500/121\",\r\n \"2603:1030:1005:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralIndia\",\r\n
+ \ \"id\": \"DataFactory.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.121.48/28\",\r\n \"20.192.42.0/24\",\r\n \"20.192.43.0/26\",\r\n
+ \ \"40.80.51.160/28\",\r\n \"52.140.104.128/25\",\r\n \"52.140.105.0/26\",\r\n
+ \ \"52.140.108.208/29\",\r\n \"2603:1040:a06::/121\",\r\n
+ \ \"2603:1040:a06::80/122\",\r\n \"2603:1040:a06:1::480/121\",\r\n
+ \ \"2603:1040:a06:1::500/122\",\r\n \"2603:1040:a06:1::700/121\",\r\n
+ \ \"2603:1040:a06:1::780/122\",\r\n \"2603:1040:a06:402::330/124\",\r\n
+ \ \"2603:1040:a06:802::210/124\",\r\n \"2603:1040:a06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.CentralUS\",\r\n
+ \ \"id\": \"DataFactory.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.89.174.192/28\",\r\n
+ \ \"20.37.154.0/23\",\r\n \"20.37.156.0/26\",\r\n \"20.40.206.224/29\",\r\n
+ \ \"20.44.10.64/28\",\r\n \"52.182.141.16/28\",\r\n \"2603:1030:10:1::480/121\",\r\n
+ \ \"2603:1030:10:1::500/122\",\r\n \"2603:1030:10:1::700/121\",\r\n
+ \ \"2603:1030:10:1::780/122\",\r\n \"2603:1030:10:402::330/124\",\r\n
+ \ \"2603:1030:10:802::210/124\",\r\n \"2603:1030:10:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.EastAsia\",\r\n
+ \ \"id\": \"DataFactory.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.75.39.112/28\",\r\n
+ \ \"20.189.104.128/25\",\r\n \"20.189.106.0/26\",\r\n \"20.189.109.232/29\",\r\n
+ \ \"2603:1040:207::440/122\",\r\n \"2603:1040:207::500/121\",\r\n
+ \ \"2603:1040:207:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS\",\r\n \"id\": \"DataFactory.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.42.2.0/23\",\r\n \"20.42.4.0/26\",\r\n \"20.42.64.0/28\",\r\n
+ \ \"20.49.111.0/29\",\r\n \"40.71.14.32/28\",\r\n \"40.78.229.96/28\",\r\n
+ \ \"2603:1030:210:1::480/121\",\r\n \"2603:1030:210:1::500/122\",\r\n
+ \ \"2603:1030:210:1::700/121\",\r\n \"2603:1030:210:1::780/122\",\r\n
+ \ \"2603:1030:210:402::330/124\",\r\n \"2603:1030:210:802::210/124\",\r\n
+ \ \"2603:1030:210:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2\",\r\n \"id\": \"DataFactory.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.2.0/23\",\r\n \"20.41.4.0/26\",\r\n \"20.44.17.80/28\",\r\n
+ \ \"20.49.102.16/29\",\r\n \"40.70.148.160/28\",\r\n \"52.167.107.224/28\",\r\n
+ \ \"2603:1030:40c:1::480/121\",\r\n \"2603:1030:40c:1::500/122\",\r\n
+ \ \"2603:1030:40c:1::700/121\",\r\n \"2603:1030:40c:1::780/122\",\r\n
+ \ \"2603:1030:40c:402::330/124\",\r\n \"2603:1030:40c:802::210/124\",\r\n
+ \ \"2603:1030:40c:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.EastUS2EUAP\",\r\n \"id\": \"DataFactory.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.8.96/27\",\r\n \"20.39.8.128/26\",\r\n \"20.39.15.0/29\",\r\n
+ \ \"40.74.149.64/28\",\r\n \"40.75.35.144/28\",\r\n \"52.138.92.128/28\",\r\n
+ \ \"2603:1030:40b:1::480/121\",\r\n \"2603:1030:40b:1::500/122\",\r\n
+ \ \"2603:1030:40b:400::b30/124\",\r\n \"2603:1030:40b:800::210/124\",\r\n
+ \ \"2603:1030:40b:c00::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.FranceCentral\",\r\n \"id\": \"DataFactory.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.128/25\",\r\n \"20.43.41.0/26\",\r\n \"20.43.44.208/29\",\r\n
+ \ \"40.79.132.112/28\",\r\n \"40.79.139.80/28\",\r\n \"40.79.146.240/28\",\r\n
+ \ \"2603:1020:805:1::480/121\",\r\n \"2603:1020:805:1::500/122\",\r\n
+ \ \"2603:1020:805:1::700/121\",\r\n \"2603:1020:805:1::780/122\",\r\n
+ \ \"2603:1020:805:402::330/124\",\r\n \"2603:1020:805:802::210/124\",\r\n
+ \ \"2603:1020:805:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.GermanyWestCentral\",\r\n \"id\":
+ \"DataFactory.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.0/28\",\r\n
+ \ \"51.116.147.32/28\",\r\n \"51.116.147.64/26\",\r\n \"51.116.147.128/25\",\r\n
+ \ \"51.116.245.112/28\",\r\n \"51.116.245.176/28\",\r\n \"51.116.253.48/28\",\r\n
+ \ \"51.116.253.144/28\",\r\n \"2603:1020:c04:1::480/121\",\r\n
+ \ \"2603:1020:c04:1::500/122\",\r\n \"2603:1020:c04:1::700/121\",\r\n
+ \ \"2603:1020:c04:1::780/122\",\r\n \"2603:1020:c04:402::330/124\",\r\n
+ \ \"2603:1020:c04:802::210/124\",\r\n \"2603:1020:c04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanEast\",\r\n
+ \ \"id\": \"DataFactory.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.78.109.192/28\",\r\n
+ \ \"20.43.64.128/25\",\r\n \"20.43.65.0/26\",\r\n \"20.43.70.120/29\",\r\n
+ \ \"20.191.164.0/24\",\r\n \"20.191.165.0/26\",\r\n \"40.79.187.208/28\",\r\n
+ \ \"40.79.195.224/28\",\r\n \"2603:1040:407:1::480/121\",\r\n
+ \ \"2603:1040:407:1::500/122\",\r\n \"2603:1040:407:1::700/121\",\r\n
+ \ \"2603:1040:407:1::780/122\",\r\n \"2603:1040:407:402::330/124\",\r\n
+ \ \"2603:1040:407:802::210/124\",\r\n \"2603:1040:407:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.JapanWest\",\r\n
+ \ \"id\": \"DataFactory.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.56.128/25\",\r\n
+ \ \"40.80.57.0/26\",\r\n \"40.80.62.24/29\",\r\n \"40.80.176.96/28\",\r\n
+ \ \"2603:1040:606::440/122\",\r\n \"2603:1040:606::500/121\",\r\n
+ \ \"2603:1040:606:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.KoreaCentral\",\r\n \"id\": \"DataFactory.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.64.128/25\",\r\n \"20.41.65.0/26\",\r\n \"20.41.69.8/29\",\r\n
+ \ \"20.44.27.240/28\",\r\n \"20.194.67.192/28\",\r\n \"20.194.78.0/23\",\r\n
+ \ \"52.231.20.64/28\",\r\n \"2603:1040:f05:1::480/121\",\r\n
+ \ \"2603:1040:f05:1::500/122\",\r\n \"2603:1040:f05:1::700/121\",\r\n
+ \ \"2603:1040:f05:1::780/122\",\r\n \"2603:1040:f05:402::330/124\",\r\n
+ \ \"2603:1040:f05:802::210/124\",\r\n \"2603:1040:f05:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.KoreaSouth\",\r\n
+ \ \"id\": \"DataFactory.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"40.80.168.128/25\",\r\n
+ \ \"40.80.169.0/26\",\r\n \"40.80.172.112/29\",\r\n \"52.231.148.160/28\",\r\n
+ \ \"52.231.151.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"DataFactory.NorthCentralUS\",\r\n \"id\": \"DataFactory.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.24/29\",\r\n \"20.49.118.128/25\",\r\n
+ \ \"40.80.185.0/24\",\r\n \"40.80.186.0/25\",\r\n \"52.162.111.48/28\",\r\n
+ \ \"2603:1030:608::440/122\",\r\n \"2603:1030:608::500/121\",\r\n
+ \ \"2603:1030:608:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.NorthEurope\",\r\n \"id\": \"DataFactory.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.230.96/28\",\r\n \"13.74.108.224/28\",\r\n
+ \ \"20.38.80.192/26\",\r\n \"20.38.82.0/23\",\r\n \"20.50.68.56/29\",\r\n
+ \ \"52.138.229.32/28\",\r\n \"2603:1020:5:1::480/121\",\r\n
+ \ \"2603:1020:5:1::500/122\",\r\n \"2603:1020:5:1::700/121\",\r\n
+ \ \"2603:1020:5:1::780/122\",\r\n \"2603:1020:5:402::330/124\",\r\n
+ \ \"2603:1020:5:802::210/124\",\r\n \"2603:1020:5:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.NorwayEast\",\r\n
+ \ \"id\": \"DataFactory.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.120.44.208/28\",\r\n
+ \ \"51.120.45.64/26\",\r\n \"51.120.45.128/25\",\r\n \"51.120.100.224/28\",\r\n
+ \ \"51.120.109.96/28\",\r\n \"51.120.213.32/28\",\r\n \"51.120.238.0/23\",\r\n
+ \ \"2603:1020:e04:1::480/121\",\r\n \"2603:1020:e04:1::500/122\",\r\n
+ \ \"2603:1020:e04:1::700/121\",\r\n \"2603:1020:e04:1::780/122\",\r\n
+ \ \"2603:1020:e04:402::330/124\",\r\n \"2603:1020:e04:802::210/124\",\r\n
+ \ \"2603:1020:e04:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthAfricaNorth\",\r\n \"id\":
+ \"DataFactory.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"102.133.124.104/29\",\r\n
+ \ \"102.133.156.136/29\",\r\n \"102.133.216.128/25\",\r\n
+ \ \"102.133.217.0/26\",\r\n \"102.133.218.248/29\",\r\n \"102.133.251.184/29\",\r\n
+ \ \"2603:1000:104::/121\",\r\n \"2603:1000:104::80/122\",\r\n
+ \ \"2603:1000:104::1c0/122\",\r\n \"2603:1000:104::280/121\",\r\n
+ \ \"2603:1000:104:1::480/121\",\r\n \"2603:1000:104:1::500/122\",\r\n
+ \ \"2603:1000:104:1::700/121\",\r\n \"2603:1000:104:1::780/122\",\r\n
+ \ \"2603:1000:104:402::330/124\",\r\n \"2603:1000:104:802::210/124\",\r\n
+ \ \"2603:1000:104:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthCentralUS\",\r\n \"id\":
+ \"DataFactory.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.73.244.32/28\",\r\n
+ \ \"13.73.253.96/29\",\r\n \"13.104.248.64/27\",\r\n \"13.104.252.208/28\",\r\n
+ \ \"20.45.123.160/28\",\r\n \"20.65.130.192/26\",\r\n \"20.65.131.0/24\",\r\n
+ \ \"40.119.9.0/25\",\r\n \"40.119.9.128/26\",\r\n \"2603:1030:807:1::480/121\",\r\n
+ \ \"2603:1030:807:1::500/122\",\r\n \"2603:1030:807:1::700/121\",\r\n
+ \ \"2603:1030:807:1::780/122\",\r\n \"2603:1030:807:402::330/124\",\r\n
+ \ \"2603:1030:807:802::210/124\",\r\n \"2603:1030:807:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SoutheastAsia\",\r\n
+ \ \"id\": \"DataFactory.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.10.208/28\",\r\n \"20.43.128.128/25\",\r\n
+ \ \"20.43.130.0/26\",\r\n \"20.195.64.0/25\",\r\n \"23.98.83.112/28\",\r\n
+ \ \"23.98.106.128/29\",\r\n \"23.98.109.64/26\",\r\n \"23.98.109.128/25\",\r\n
+ \ \"40.78.236.176/28\",\r\n \"2603:1040:5::/121\",\r\n \"2603:1040:5::80/122\",\r\n
+ \ \"2603:1040:5:1::480/121\",\r\n \"2603:1040:5:1::500/122\",\r\n
+ \ \"2603:1040:5:1::700/121\",\r\n \"2603:1040:5:1::780/122\",\r\n
+ \ \"2603:1040:5:402::330/124\",\r\n \"2603:1040:5:802::210/124\",\r\n
+ \ \"2603:1040:5:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.SouthIndia\",\r\n \"id\": \"DataFactory.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.128/25\",\r\n \"20.41.193.0/26\",\r\n
+ \ \"20.41.197.112/29\",\r\n \"20.41.198.0/25\",\r\n \"20.41.198.128/26\",\r\n
+ \ \"20.192.184.96/28\",\r\n \"40.78.196.128/28\",\r\n \"2603:1040:c06::440/122\",\r\n
+ \ \"2603:1040:c06::500/121\",\r\n \"2603:1040:c06:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.SwitzerlandNorth\",\r\n
+ \ \"id\": \"DataFactory.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.51.40/29\",\r\n \"51.107.52.0/25\",\r\n \"51.107.52.128/26\",\r\n
+ \ \"51.107.128.0/28\",\r\n \"2603:1020:a04:1::480/121\",\r\n
+ \ \"2603:1020:a04:1::500/122\",\r\n \"2603:1020:a04:1::700/121\",\r\n
+ \ \"2603:1020:a04:1::780/122\",\r\n \"2603:1020:a04:402::330/124\",\r\n
+ \ \"2603:1020:a04:802::210/124\",\r\n \"2603:1020:a04:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UAENorth\",\r\n
+ \ \"id\": \"DataFactory.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"20.38.141.16/28\",\r\n
+ \ \"20.38.141.128/25\",\r\n \"20.38.142.0/26\",\r\n \"20.38.152.0/28\",\r\n
+ \ \"40.120.64.112/28\",\r\n \"40.120.75.112/28\",\r\n \"2603:1040:904:1::480/121\",\r\n
+ \ \"2603:1040:904:1::500/122\",\r\n \"2603:1040:904:1::700/121\",\r\n
+ \ \"2603:1040:904:1::780/122\",\r\n \"2603:1040:904:402::330/124\",\r\n
+ \ \"2603:1040:904:802::210/124\",\r\n \"2603:1040:904:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKSouth\",\r\n
+ \ \"id\": \"DataFactory.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.104.9.32/28\",\r\n
+ \ \"51.104.24.128/25\",\r\n \"51.104.25.0/26\",\r\n \"51.104.29.216/29\",\r\n
+ \ \"51.105.67.240/28\",\r\n \"51.105.75.240/28\",\r\n \"2603:1020:705:1::480/121\",\r\n
+ \ \"2603:1020:705:1::500/122\",\r\n \"2603:1020:705:1::700/121\",\r\n
+ \ \"2603:1020:705:1::780/122\",\r\n \"2603:1020:705:402::330/124\",\r\n
+ \ \"2603:1020:705:802::210/124\",\r\n \"2603:1020:705:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.UKWest\",\r\n
+ \ \"id\": \"DataFactory.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.128/25\",\r\n
+ \ \"51.137.161.0/26\",\r\n \"51.137.164.192/29\",\r\n \"51.140.212.112/28\",\r\n
+ \ \"2603:1020:605::440/122\",\r\n \"2603:1020:605::500/121\",\r\n
+ \ \"2603:1020:605:402::330/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestCentralUS\",\r\n \"id\": \"DataFactory.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.199.0/28\",\r\n \"52.150.136.192/26\",\r\n
+ \ \"52.150.137.128/25\",\r\n \"52.150.154.16/29\",\r\n \"52.150.155.0/24\",\r\n
+ \ \"52.150.157.160/29\",\r\n \"52.150.157.192/26\",\r\n \"2603:1030:b04::440/122\",\r\n
+ \ \"2603:1030:b04::500/121\",\r\n \"2603:1030:b04:402::330/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestEurope\",\r\n
+ \ \"id\": \"DataFactory.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"DataFactory\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.192/28\",\r\n
+ \ \"13.69.107.112/28\",\r\n \"13.69.112.128/28\",\r\n \"40.74.24.192/26\",\r\n
+ \ \"40.74.26.0/23\",\r\n \"40.113.176.232/29\",\r\n \"52.236.187.112/28\",\r\n
+ \ \"2603:1020:206:1::480/121\",\r\n \"2603:1020:206:1::500/122\",\r\n
+ \ \"2603:1020:206:1::700/121\",\r\n \"2603:1020:206:1::780/122\",\r\n
+ \ \"2603:1020:206:402::330/124\",\r\n \"2603:1020:206:802::210/124\",\r\n
+ \ \"2603:1020:206:c02::210/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"DataFactory.WestUS\",\r\n \"id\": \"DataFactory.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.219.208/28\",\r\n \"40.82.249.64/26\",\r\n
+ \ \"40.82.250.0/23\",\r\n \"52.250.228.0/29\",\r\n \"2603:1030:a07::440/122\",\r\n
+ \ \"2603:1030:a07::500/121\",\r\n \"2603:1030:a07:402::9b0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"DataFactory.WestUS2\",\r\n
+ \ \"id\": \"DataFactory.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"DataFactory\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.143.128/28\",\r\n \"20.42.129.64/26\",\r\n
+ \ \"20.42.132.0/23\",\r\n \"40.64.132.232/29\",\r\n \"40.78.245.16/28\",\r\n
+ \ \"40.78.251.192/28\",\r\n \"2603:1030:c06:1::480/121\",\r\n
+ \ \"2603:1030:c06:1::500/122\",\r\n \"2603:1030:c06:400::b30/124\",\r\n
+ \ \"2603:1030:c06:802::210/124\",\r\n \"2603:1030:c06:c02::210/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n
+ \ \"13.69.226.128/25\",\r\n \"13.71.171.0/24\",\r\n \"13.74.106.128/25\",\r\n
+ \ \"13.75.35.0/24\",\r\n \"13.77.51.0/24\",\r\n \"13.78.107.0/24\",\r\n
+ \ \"40.78.242.0/25\",\r\n \"40.79.138.192/26\",\r\n \"40.120.64.224/27\",\r\n
+ \ \"51.107.129.64/27\",\r\n \"51.140.147.0/24\",\r\n \"65.52.252.128/27\",\r\n
+ \ \"102.133.251.96/27\",\r\n \"104.211.80.0/24\",\r\n \"191.233.202.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.51.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.202.0/24\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.171.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.CentralIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.80.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.35.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.138.192/26\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.JapanEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.107.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.226.128/25\",\r\n \"13.74.106.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.251.96/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.64.224/27\",\r\n \"65.52.252.128/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n
+ \ \"id\": \"Dynamics365ForMarketingEmail.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.147.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"id\":
+ \"Dynamics365ForMarketingEmail.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"Dynamics365ForMarketingEmail\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.128/25\",\r\n \"40.78.242.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub\",\r\n
+ \ \"id\": \"EventHub\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureEventHub\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.195.117/32\",\r\n \"13.65.209.24/32\",\r\n
+ \ \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n \"13.66.149.0/26\",\r\n
+ \ \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n
+ \ \"13.69.111.128/26\",\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n
+ \ \"13.69.253.135/32\",\r\n \"13.69.255.140/32\",\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.71.30.214/32\",\r\n
+ \ \"13.71.123.78/32\",\r\n \"13.71.154.11/32\",\r\n \"13.71.170.16/28\",\r\n
+ \ \"13.71.177.128/26\",\r\n \"13.71.194.64/27\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"13.74.107.0/26\",\r\n \"13.75.34.64/26\",\r\n \"13.76.179.223/32\",\r\n
+ \ \"13.76.216.217/32\",\r\n \"13.77.50.32/27\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"13.78.149.209/32\",\r\n \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n
+ \ \"13.84.145.196/32\",\r\n \"13.87.34.139/32\",\r\n \"13.87.34.243/32\",\r\n
+ \ \"13.87.56.32/27\",\r\n \"13.87.102.63/32\",\r\n \"13.87.102.68/32\",\r\n
+ \ \"13.87.122.32/27\",\r\n \"13.88.20.117/32\",\r\n \"13.88.26.28/32\",\r\n
+ \ \"13.89.58.37/32\",\r\n \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n
+ \ \"13.89.178.112/28\",\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n
+ \ \"13.91.61.11/32\",\r\n \"13.92.124.151/32\",\r\n \"13.92.180.208/32\",\r\n
+ \ \"13.92.190.184/32\",\r\n \"13.93.226.138/32\",\r\n \"13.94.47.61/32\",\r\n
+ \ \"20.36.46.142/32\",\r\n \"20.36.74.130/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"20.36.114.32/27\",\r\n \"20.36.144.64/26\",\r\n \"20.37.74.0/27\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.42.68.64/26\",\r\n \"20.42.74.0/26\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.43.126.64/26\",\r\n
+ \ \"20.44.2.128/26\",\r\n \"20.44.13.64/26\",\r\n \"20.44.26.64/26\",\r\n
+ \ \"20.44.31.128/26\",\r\n \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n
+ \ \"20.47.216.64/26\",\r\n \"20.49.93.64/27\",\r\n \"20.49.93.128/27\",\r\n
+ \ \"20.49.95.128/26\",\r\n \"20.50.72.64/26\",\r\n \"20.50.80.64/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"20.52.64.128/26\",\r\n \"20.72.27.192/26\",\r\n
+ \ \"20.83.192.0/26\",\r\n \"20.89.0.64/26\",\r\n \"20.150.160.224/27\",\r\n
+ \ \"20.150.170.160/27\",\r\n \"20.150.175.64/26\",\r\n \"20.150.178.64/26\",\r\n
+ \ \"20.150.182.0/27\",\r\n \"20.150.186.64/26\",\r\n \"20.150.189.128/26\",\r\n
+ \ \"20.151.32.64/26\",\r\n \"20.192.33.64/26\",\r\n \"20.192.98.64/26\",\r\n
+ \ \"20.192.102.0/26\",\r\n \"20.192.161.64/27\",\r\n \"20.192.225.160/27\",\r\n
+ \ \"20.192.234.32/27\",\r\n \"20.193.202.32/27\",\r\n \"20.193.204.192/26\",\r\n
+ \ \"20.194.68.192/26\",\r\n \"20.194.80.0/26\",\r\n \"20.194.128.192/26\",\r\n
+ \ \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n \"23.96.214.181/32\",\r\n
+ \ \"23.96.253.236/32\",\r\n \"23.97.67.90/32\",\r\n \"23.97.97.36/32\",\r\n
+ \ \"23.97.103.3/32\",\r\n \"23.97.120.51/32\",\r\n \"23.97.226.21/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"23.99.7.105/32\",\r\n
+ \ \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n \"23.99.80.186/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"23.100.14.185/32\",\r\n \"23.100.100.84/32\",\r\n \"23.101.3.68/32\",\r\n
+ \ \"23.101.8.229/32\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"23.102.128.15/32\",\r\n \"23.102.160.39/32\",\r\n
+ \ \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n \"23.102.165.127/32\",\r\n
+ \ \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n \"23.102.234.49/32\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.67.58.128/26\",\r\n \"40.67.72.64/26\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"40.69.29.216/32\",\r\n
+ \ \"40.69.106.32/27\",\r\n \"40.69.217.246/32\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n \"40.74.146.16/28\",\r\n
+ \ \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n \"40.76.29.197/32\",\r\n
+ \ \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n \"40.78.110.196/32\",\r\n
+ \ \"40.78.194.32/27\",\r\n \"40.78.202.32/27\",\r\n \"40.78.226.128/26\",\r\n
+ \ \"40.78.234.0/27\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"40.79.44.59/32\",\r\n
+ \ \"40.79.74.86/32\",\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n
+ \ \"40.79.142.0/26\",\r\n \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n
+ \ \"40.79.155.0/26\",\r\n \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n
+ \ \"40.79.170.32/28\",\r\n \"40.79.174.128/26\",\r\n \"40.79.178.32/27\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"40.80.50.64/26\",\r\n
+ \ \"40.83.191.202/32\",\r\n \"40.83.222.100/32\",\r\n \"40.84.150.241/32\",\r\n
+ \ \"40.84.185.67/32\",\r\n \"40.85.226.62/32\",\r\n \"40.85.229.32/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.86.176.23/32\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"40.89.122.0/26\",\r\n
+ \ \"40.112.185.115/32\",\r\n \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.117.88.66/32\",\r\n \"40.120.75.64/27\",\r\n
+ \ \"40.120.78.0/26\",\r\n \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n
+ \ \"40.121.148.193/32\",\r\n \"40.122.173.108/32\",\r\n \"40.122.213.155/32\",\r\n
+ \ \"40.124.65.64/26\",\r\n \"40.127.83.123/32\",\r\n \"40.127.132.254/32\",\r\n
+ \ \"51.11.192.128/26\",\r\n \"51.12.98.160/27\",\r\n \"51.12.102.64/26\",\r\n
+ \ \"51.12.202.160/27\",\r\n \"51.12.206.64/26\",\r\n \"51.12.226.64/26\",\r\n
+ \ \"51.12.234.64/26\",\r\n \"51.13.0.192/26\",\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.107.58.128/27\",\r\n
+ \ \"51.107.129.0/26\",\r\n \"51.107.154.128/27\",\r\n \"51.116.58.128/27\",\r\n
+ \ \"51.116.154.192/27\",\r\n \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n
+ \ \"51.116.246.192/26\",\r\n \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n
+ \ \"51.120.98.128/27\",\r\n \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n
+ \ \"51.120.218.160/27\",\r\n \"51.132.192.192/26\",\r\n \"51.140.80.99/32\",\r\n
+ \ \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n \"51.140.146.32/28\",\r\n
+ \ \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n \"51.140.189.108/32\",\r\n
+ \ \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n \"51.141.14.168/32\",\r\n
+ \ \"51.141.50.179/32\",\r\n \"51.144.238.23/32\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"52.138.90.0/28\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"52.151.58.121/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"52.162.106.64/26\",\r\n \"52.165.34.144/32\",\r\n
+ \ \"52.165.179.109/32\",\r\n \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.169.18.8/32\",\r\n
+ \ \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.175.35.235/32\",\r\n \"52.176.47.198/32\",\r\n
+ \ \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n \"52.178.211.227/32\",\r\n
+ \ \"52.179.6.240/32\",\r\n \"52.179.8.35/32\",\r\n \"52.179.157.59/32\",\r\n
+ \ \"52.180.180.228/32\",\r\n \"52.180.182.75/32\",\r\n \"52.182.138.128/26\",\r\n
+ \ \"52.182.143.64/26\",\r\n \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"52.191.213.188/32\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"52.226.36.235/32\",\r\n \"52.231.18.16/28\",\r\n
+ \ \"52.231.29.105/32\",\r\n \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n
+ \ \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n \"52.231.200.153/32\",\r\n
+ \ \"52.231.207.155/32\",\r\n \"52.232.27.189/32\",\r\n \"52.233.30.41/32\",\r\n
+ \ \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n \"52.236.186.0/26\",\r\n
+ \ \"52.237.33.36/32\",\r\n \"52.237.33.104/32\",\r\n \"52.237.143.176/32\",\r\n
+ \ \"52.242.20.204/32\",\r\n \"52.243.36.161/32\",\r\n \"52.246.154.64/26\",\r\n
+ \ \"52.246.159.0/26\",\r\n \"65.52.129.16/32\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"102.37.65.0/26\",\r\n \"102.37.72.64/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"102.133.122.64/26\",\r\n \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n
+ \ \"102.133.250.64/26\",\r\n \"102.133.254.0/26\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.40.150.139/32\",\r\n \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n
+ \ \"104.41.63.213/32\",\r\n \"104.41.201.10/32\",\r\n \"104.42.97.95/32\",\r\n
+ \ \"104.43.18.219/32\",\r\n \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n
+ \ \"104.43.192.222/32\",\r\n \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.16.0/26\",\r\n \"104.208.144.0/26\",\r\n
+ \ \"104.208.237.147/32\",\r\n \"104.209.186.70/32\",\r\n
+ \ \"104.210.14.49/32\",\r\n \"104.210.106.31/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"104.211.224.190/32\",\r\n
+ \ \"104.211.224.238/32\",\r\n \"104.214.18.128/27\",\r\n
+ \ \"104.214.70.229/32\",\r\n \"137.116.48.46/32\",\r\n \"137.116.77.157/32\",\r\n
+ \ \"137.116.91.178/32\",\r\n \"137.116.157.26/32\",\r\n \"137.116.158.30/32\",\r\n
+ \ \"137.117.85.236/32\",\r\n \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n
+ \ \"137.135.102.226/32\",\r\n \"138.91.1.105/32\",\r\n \"138.91.17.38/32\",\r\n
+ \ \"138.91.17.85/32\",\r\n \"138.91.193.184/32\",\r\n \"168.61.92.197/32\",\r\n
+ \ \"168.61.143.128/26\",\r\n \"168.61.148.205/32\",\r\n \"168.62.52.235/32\",\r\n
+ \ \"168.62.234.250/32\",\r\n \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n
+ \ \"168.63.141.27/32\",\r\n \"191.233.9.64/27\",\r\n \"191.233.73.228/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"191.237.47.93/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"191.237.224.0/26\",\r\n \"191.238.99.131/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"191.239.64.142/32\",\r\n \"191.239.64.144/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"207.46.153.127/32\",\r\n
+ \ \"207.46.154.16/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1000:4::240/122\",\r\n
+ \ \"2603:1000:4:402::1c0/123\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\",\r\n \"2603:1010:304::240/122\",\r\n
+ \ \"2603:1010:304:402::1c0/123\",\r\n \"2603:1010:404::240/122\",\r\n
+ \ \"2603:1010:404:402::1c0/123\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\",\r\n \"2603:1020:305::240/122\",\r\n
+ \ \"2603:1020:305:402::1c0/123\",\r\n \"2603:1020:405::240/122\",\r\n
+ \ \"2603:1020:405:402::1c0/123\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\",\r\n \"2603:1020:905::240/122\",\r\n
+ \ \"2603:1020:905:402::1c0/123\",\r\n \"2603:1020:a04:1::240/122\",\r\n
+ \ \"2603:1020:a04:402::1c0/123\",\r\n \"2603:1020:a04:802::160/123\",\r\n
+ \ \"2603:1020:a04:c02::160/123\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\",\r\n \"2603:1020:d04::240/122\",\r\n
+ \ \"2603:1020:d04:402::1c0/123\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\",\r\n \"2603:1020:1004::240/122\",\r\n
+ \ \"2603:1020:1004:400::2c0/123\",\r\n \"2603:1020:1004:c02::c0/123\",\r\n
+ \ \"2603:1020:1104:400::1c0/123\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\",\r\n \"2603:1030:104:1::240/122\",\r\n
+ \ \"2603:1030:104:402::1c0/123\",\r\n \"2603:1030:107:400::140/123\",\r\n
+ \ \"2603:1030:210:1::240/122\",\r\n \"2603:1030:210:402::1c0/123\",\r\n
+ \ \"2603:1030:210:802::160/123\",\r\n \"2603:1030:210:c02::160/123\",\r\n
+ \ \"2603:1030:40b:1::240/122\",\r\n \"2603:1030:40b:400::9c0/123\",\r\n
+ \ \"2603:1030:40b:800::160/123\",\r\n \"2603:1030:40b:c00::160/123\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\",\r\n
+ \ \"2603:1030:504:1::240/122\",\r\n \"2603:1030:504:402::2c0/123\",\r\n
+ \ \"2603:1030:504:802::240/123\",\r\n \"2603:1030:504:c02::c0/123\",\r\n
+ \ \"2603:1030:608::240/122\",\r\n \"2603:1030:608:402::1c0/123\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\",\r\n
+ \ \"2603:1030:a07::240/122\",\r\n \"2603:1030:a07:402::140/123\",\r\n
+ \ \"2603:1030:b04::240/122\",\r\n \"2603:1030:b04:402::1c0/123\",\r\n
+ \ \"2603:1030:c06:1::240/122\",\r\n \"2603:1030:c06:400::9c0/123\",\r\n
+ \ \"2603:1030:c06:802::160/123\",\r\n \"2603:1030:c06:c02::160/123\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\",\r\n
+ \ \"2603:1040:5:1::240/122\",\r\n \"2603:1040:5:402::1c0/123\",\r\n
+ \ \"2603:1040:5:802::160/123\",\r\n \"2603:1040:5:c02::160/123\",\r\n
+ \ \"2603:1040:207::240/122\",\r\n \"2603:1040:207:402::1c0/123\",\r\n
+ \ \"2603:1040:407:1::240/122\",\r\n \"2603:1040:407:402::1c0/123\",\r\n
+ \ \"2603:1040:407:802::160/123\",\r\n \"2603:1040:407:c02::160/123\",\r\n
+ \ \"2603:1040:606::240/122\",\r\n \"2603:1040:606:402::1c0/123\",\r\n
+ \ \"2603:1040:806::240/122\",\r\n \"2603:1040:806:402::1c0/123\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\",\r\n
+ \ \"2603:1040:b04::240/122\",\r\n \"2603:1040:b04:402::1c0/123\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\",\r\n
+ \ \"2603:1040:d04::240/122\",\r\n \"2603:1040:d04:400::2c0/123\",\r\n
+ \ \"2603:1040:d04:c02::c0/123\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\",\r\n \"2603:1040:1104:400::1c0/123\",\r\n
+ \ \"2603:1050:6:1::240/122\",\r\n \"2603:1050:6:402::1c0/123\",\r\n
+ \ \"2603:1050:6:802::160/123\",\r\n \"2603:1050:6:c02::160/123\",\r\n
+ \ \"2603:1050:403::240/122\",\r\n \"2603:1050:403:400::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.46.142/32\",\r\n \"20.36.106.192/27\",\r\n
+ \ \"2603:1010:304::240/122\",\r\n \"2603:1010:304:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaCentral2\",\r\n
+ \ \"id\": \"EventHub.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.130/32\",\r\n \"20.36.114.32/27\",\r\n
+ \ \"2603:1010:404::240/122\",\r\n \"2603:1010:404:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.AustraliaEast\",\r\n
+ \ \"id\": \"EventHub.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.70.72.0/28\",\r\n
+ \ \"13.70.79.16/28\",\r\n \"13.70.114.64/26\",\r\n \"13.72.254.134/32\",\r\n
+ \ \"40.79.162.0/28\",\r\n \"40.79.166.192/26\",\r\n \"40.79.170.32/28\",\r\n
+ \ \"40.79.174.128/26\",\r\n \"104.210.106.31/32\",\r\n \"191.239.64.142/32\",\r\n
+ \ \"191.239.64.144/32\",\r\n \"2603:1010:6:1::240/122\",\r\n
+ \ \"2603:1010:6:402::1c0/123\",\r\n \"2603:1010:6:802::160/123\",\r\n
+ \ \"2603:1010:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.AustraliaSoutheast\",\r\n \"id\":
+ \"EventHub.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.77.50.32/27\",\r\n
+ \ \"40.115.79.2/32\",\r\n \"40.127.83.123/32\",\r\n \"191.239.160.45/32\",\r\n
+ \ \"191.239.160.178/32\",\r\n \"2603:1010:101::240/122\",\r\n
+ \ \"2603:1010:101:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.BrazilSouth\",\r\n \"id\": \"EventHub.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.192/26\",\r\n \"20.195.152.64/26\",\r\n
+ \ \"23.97.97.36/32\",\r\n \"23.97.103.3/32\",\r\n \"104.41.63.213/32\",\r\n
+ \ \"191.233.203.0/28\",\r\n \"191.234.146.64/26\",\r\n \"191.234.150.192/26\",\r\n
+ \ \"191.234.154.64/26\",\r\n \"2603:1050:6:1::240/122\",\r\n
+ \ \"2603:1050:6:402::1c0/123\",\r\n \"2603:1050:6:802::160/123\",\r\n
+ \ \"2603:1050:6:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CanadaCentral\",\r\n \"id\": \"EventHub.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.16/28\",\r\n \"13.71.177.128/26\",\r\n
+ \ \"20.38.146.64/26\",\r\n \"20.151.32.64/26\",\r\n \"40.85.226.62/32\",\r\n
+ \ \"40.85.229.32/32\",\r\n \"52.233.30.41/32\",\r\n \"52.237.33.36/32\",\r\n
+ \ \"52.237.33.104/32\",\r\n \"52.246.154.64/26\",\r\n \"52.246.159.0/26\",\r\n
+ \ \"2603:1030:f05:1::240/122\",\r\n \"2603:1030:f05:402::1c0/123\",\r\n
+ \ \"2603:1030:f05:802::160/123\",\r\n \"2603:1030:f05:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CanadaEast\",\r\n
+ \ \"id\": \"EventHub.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"40.69.106.32/27\",\r\n
+ \ \"40.86.225.142/32\",\r\n \"40.86.230.119/32\",\r\n \"52.242.20.204/32\",\r\n
+ \ \"2603:1030:1005::240/122\",\r\n \"2603:1030:1005:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralIndia\",\r\n
+ \ \"id\": \"EventHub.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.71.30.214/32\",\r\n
+ \ \"20.43.126.64/26\",\r\n \"20.192.98.64/26\",\r\n \"20.192.102.0/26\",\r\n
+ \ \"40.80.50.64/26\",\r\n \"52.172.221.245/32\",\r\n \"52.172.223.211/32\",\r\n
+ \ \"104.211.81.0/28\",\r\n \"104.211.98.185/32\",\r\n \"104.211.102.58/32\",\r\n
+ \ \"2603:1040:a06:1::240/122\",\r\n \"2603:1040:a06:402::1c0/123\",\r\n
+ \ \"2603:1040:a06:802::160/123\",\r\n \"2603:1040:a06:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.CentralUS\",\r\n
+ \ \"id\": \"EventHub.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.89.58.37/32\",\r\n
+ \ \"13.89.59.231/32\",\r\n \"13.89.170.128/26\",\r\n \"13.89.178.112/28\",\r\n
+ \ \"20.44.13.64/26\",\r\n \"23.99.128.69/32\",\r\n \"23.99.129.170/32\",\r\n
+ \ \"23.99.192.254/32\",\r\n \"23.99.196.56/32\",\r\n \"23.99.228.174/32\",\r\n
+ \ \"40.86.77.12/32\",\r\n \"40.86.102.100/32\",\r\n \"40.122.173.108/32\",\r\n
+ \ \"40.122.213.155/32\",\r\n \"52.165.34.144/32\",\r\n \"52.165.179.109/32\",\r\n
+ \ \"52.165.235.119/32\",\r\n \"52.165.237.8/32\",\r\n \"52.173.199.106/32\",\r\n
+ \ \"52.176.47.198/32\",\r\n \"52.182.138.128/26\",\r\n \"52.182.143.64/26\",\r\n
+ \ \"104.43.168.200/32\",\r\n \"104.43.192.43/32\",\r\n \"104.43.192.222/32\",\r\n
+ \ \"104.208.16.0/26\",\r\n \"168.61.148.205/32\",\r\n \"2603:1030:10:1::240/122\",\r\n
+ \ \"2603:1030:10:402::1c0/123\",\r\n \"2603:1030:10:802::160/123\",\r\n
+ \ \"2603:1030:10:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.CentralUSEUAP\",\r\n \"id\": \"EventHub.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.32/27\",\r\n \"52.180.180.228/32\",\r\n
+ \ \"52.180.182.75/32\",\r\n \"168.61.143.128/26\",\r\n \"2603:1030:f:1::240/122\",\r\n
+ \ \"2603:1030:f:400::9c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastAsia\",\r\n \"id\": \"EventHub.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.64/26\",\r\n \"13.94.47.61/32\",\r\n \"23.97.67.90/32\",\r\n
+ \ \"23.99.118.48/32\",\r\n \"23.101.3.68/32\",\r\n \"23.101.8.229/32\",\r\n
+ \ \"23.102.234.49/32\",\r\n \"52.175.35.235/32\",\r\n \"168.63.141.27/32\",\r\n
+ \ \"207.46.153.127/32\",\r\n \"207.46.154.16/32\",\r\n \"2603:1040:207::240/122\",\r\n
+ \ \"2603:1040:207:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS\",\r\n \"id\": \"EventHub.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.90.83.7/32\",\r\n \"13.90.208.184/32\",\r\n \"13.92.124.151/32\",\r\n
+ \ \"13.92.180.208/32\",\r\n \"13.92.190.184/32\",\r\n \"20.42.68.64/26\",\r\n
+ \ \"20.42.74.0/26\",\r\n \"40.71.10.128/26\",\r\n \"40.71.100.98/32\",\r\n
+ \ \"40.76.29.197/32\",\r\n \"40.76.40.11/32\",\r\n \"40.76.194.119/32\",\r\n
+ \ \"40.78.226.128/26\",\r\n \"40.79.155.0/26\",\r\n \"40.117.88.66/32\",\r\n
+ \ \"40.121.84.50/32\",\r\n \"40.121.141.232/32\",\r\n \"40.121.148.193/32\",\r\n
+ \ \"52.168.14.144/32\",\r\n \"52.168.66.180/32\",\r\n \"52.168.117.0/26\",\r\n
+ \ \"52.168.146.69/32\",\r\n \"52.168.147.11/32\",\r\n \"52.179.6.240/32\",\r\n
+ \ \"52.179.8.35/32\",\r\n \"52.191.213.188/32\",\r\n \"52.226.36.235/32\",\r\n
+ \ \"104.45.135.34/32\",\r\n \"104.45.147.24/32\",\r\n \"137.117.85.236/32\",\r\n
+ \ \"137.117.89.253/32\",\r\n \"137.117.91.152/32\",\r\n \"137.135.102.226/32\",\r\n
+ \ \"168.62.52.235/32\",\r\n \"191.236.32.73/32\",\r\n \"191.236.32.191/32\",\r\n
+ \ \"191.236.35.225/32\",\r\n \"191.237.47.93/32\",\r\n \"2603:1030:210:1::240/122\",\r\n
+ \ \"2603:1030:210:402::1c0/123\",\r\n \"2603:1030:210:802::160/123\",\r\n
+ \ \"2603:1030:210:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.EastUS2\",\r\n \"id\": \"EventHub.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.20.101/32\",\r\n \"13.68.21.169/32\",\r\n
+ \ \"13.68.77.215/32\",\r\n \"20.36.144.64/26\",\r\n \"40.70.78.154/32\",\r\n
+ \ \"40.70.146.0/26\",\r\n \"40.79.44.59/32\",\r\n \"40.79.74.86/32\",\r\n
+ \ \"52.167.106.0/26\",\r\n \"52.167.109.192/26\",\r\n \"52.167.145.0/26\",\r\n
+ \ \"52.179.157.59/32\",\r\n \"104.46.98.9/32\",\r\n \"104.46.98.73/32\",\r\n
+ \ \"104.46.99.176/32\",\r\n \"104.208.144.0/26\",\r\n \"104.208.237.147/32\",\r\n
+ \ \"104.209.186.70/32\",\r\n \"104.210.14.49/32\",\r\n \"137.116.48.46/32\",\r\n
+ \ \"137.116.77.157/32\",\r\n \"137.116.91.178/32\",\r\n \"191.237.129.158/32\",\r\n
+ \ \"2603:1030:40c:1::240/122\",\r\n \"2603:1030:40c:402::1c0/123\",\r\n
+ \ \"2603:1030:40c:802::160/123\",\r\n \"2603:1030:40c:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.EastUS2EUAP\",\r\n
+ \ \"id\": \"EventHub.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"20.47.216.64/26\",\r\n
+ \ \"40.74.146.16/28\",\r\n \"40.74.151.0/26\",\r\n \"40.75.34.0/28\",\r\n
+ \ \"40.89.122.0/26\",\r\n \"52.138.90.0/28\",\r\n \"52.225.184.224/32\",\r\n
+ \ \"52.225.186.130/32\",\r\n \"2603:1030:40b:1::240/122\",\r\n
+ \ \"2603:1030:40b:400::9c0/123\",\r\n \"2603:1030:40b:800::160/123\",\r\n
+ \ \"2603:1030:40b:c00::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceCentral\",\r\n \"id\": \"EventHub.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.16/28\",\r\n \"40.79.138.0/28\",\r\n \"40.79.142.0/26\",\r\n
+ \ \"40.79.146.0/28\",\r\n \"40.79.149.64/26\",\r\n \"51.11.192.128/26\",\r\n
+ \ \"52.143.136.55/32\",\r\n \"2603:1020:805:1::240/122\",\r\n
+ \ \"2603:1020:805:402::1c0/123\",\r\n \"2603:1020:805:802::160/123\",\r\n
+ \ \"2603:1020:805:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.FranceSouth\",\r\n \"id\": \"EventHub.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.32/27\",\r\n \"52.136.136.62/32\",\r\n
+ \ \"2603:1020:905::240/122\",\r\n \"2603:1020:905:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyNorth\",\r\n
+ \ \"id\": \"EventHub.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.116.58.128/27\",\r\n
+ \ \"2603:1020:d04::240/122\",\r\n \"2603:1020:d04:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.GermanyWestCentral\",\r\n
+ \ \"id\": \"EventHub.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.52.64.128/26\",\r\n \"51.116.154.192/27\",\r\n
+ \ \"51.116.242.64/26\",\r\n \"51.116.245.192/27\",\r\n \"51.116.246.192/26\",\r\n
+ \ \"51.116.250.64/26\",\r\n \"51.116.254.0/26\",\r\n \"2603:1020:c04:1::240/122\",\r\n
+ \ \"2603:1020:c04:402::1c0/123\",\r\n \"2603:1020:c04:802::160/123\",\r\n
+ \ \"2603:1020:c04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanEast\",\r\n \"id\": \"EventHub.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.154.11/32\",\r\n \"13.78.106.64/28\",\r\n
+ \ \"20.89.0.64/26\",\r\n \"20.194.128.192/26\",\r\n \"23.100.100.84/32\",\r\n
+ \ \"40.79.186.32/27\",\r\n \"40.79.194.192/26\",\r\n \"52.243.36.161/32\",\r\n
+ \ \"138.91.1.105/32\",\r\n \"2603:1040:407:1::240/122\",\r\n
+ \ \"2603:1040:407:402::1c0/123\",\r\n \"2603:1040:407:802::160/123\",\r\n
+ \ \"2603:1040:407:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.JapanWest\",\r\n \"id\": \"EventHub.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.0/27\",\r\n \"40.74.141.187/32\",\r\n
+ \ \"138.91.17.38/32\",\r\n \"138.91.17.85/32\",\r\n \"2603:1040:606::240/122\",\r\n
+ \ \"2603:1040:606:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaCentral\",\r\n \"id\": \"EventHub.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.64/26\",\r\n \"20.44.31.128/26\",\r\n \"20.194.68.192/26\",\r\n
+ \ \"20.194.80.0/26\",\r\n \"52.231.18.16/28\",\r\n \"52.231.29.105/32\",\r\n
+ \ \"52.231.32.85/32\",\r\n \"52.231.32.94/32\",\r\n \"2603:1040:f05:1::240/122\",\r\n
+ \ \"2603:1040:f05:402::1c0/123\",\r\n \"2603:1040:f05:802::160/123\",\r\n
+ \ \"2603:1040:f05:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.KoreaSouth\",\r\n \"id\": \"EventHub.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.32/27\",\r\n \"52.231.200.144/32\",\r\n
+ \ \"52.231.200.153/32\",\r\n \"52.231.207.155/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"EventHub.NorthCentralUS\",\r\n
+ \ \"id\": \"EventHub.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"23.96.214.181/32\",\r\n \"23.96.253.236/32\",\r\n
+ \ \"52.162.106.64/26\",\r\n \"52.237.143.176/32\",\r\n \"168.62.234.250/32\",\r\n
+ \ \"168.62.237.3/32\",\r\n \"168.62.249.226/32\",\r\n \"191.236.128.253/32\",\r\n
+ \ \"191.236.129.107/32\",\r\n \"2603:1030:608::240/122\",\r\n
+ \ \"2603:1030:608:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorthEurope\",\r\n \"id\": \"EventHub.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.0/26\",\r\n \"13.69.239.0/26\",\r\n \"13.69.253.135/32\",\r\n
+ \ \"13.69.255.140/32\",\r\n \"13.74.107.0/26\",\r\n \"20.50.72.64/26\",\r\n
+ \ \"20.50.80.64/26\",\r\n \"23.102.0.186/32\",\r\n \"23.102.0.239/32\",\r\n
+ \ \"23.102.53.113/32\",\r\n \"40.69.29.216/32\",\r\n \"40.69.217.246/32\",\r\n
+ \ \"40.127.132.254/32\",\r\n \"52.138.147.148/32\",\r\n \"52.138.226.0/26\",\r\n
+ \ \"52.169.18.8/32\",\r\n \"52.178.211.227/32\",\r\n \"104.41.201.10/32\",\r\n
+ \ \"168.61.92.197/32\",\r\n \"191.238.99.131/32\",\r\n \"2603:1020:5:1::240/122\",\r\n
+ \ \"2603:1020:5:402::1c0/123\",\r\n \"2603:1020:5:802::160/123\",\r\n
+ \ \"2603:1020:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayEast\",\r\n \"id\": \"EventHub.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.192/26\",\r\n \"51.120.98.128/27\",\r\n
+ \ \"51.120.106.64/26\",\r\n \"51.120.210.64/26\",\r\n \"2603:1020:e04:1::240/122\",\r\n
+ \ \"2603:1020:e04:402::1c0/123\",\r\n \"2603:1020:e04:802::160/123\",\r\n
+ \ \"2603:1020:e04:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.NorwayWest\",\r\n \"id\": \"EventHub.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.160/27\",\r\n \"2603:1020:f04::240/122\",\r\n
+ \ \"2603:1020:f04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaNorth\",\r\n \"id\": \"EventHub.SouthAfricaNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricanorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.72.64/26\",\r\n \"102.133.122.64/26\",\r\n
+ \ \"102.133.127.0/26\",\r\n \"102.133.154.128/26\",\r\n \"102.133.250.64/26\",\r\n
+ \ \"102.133.254.0/26\",\r\n \"2603:1000:104:1::240/122\",\r\n
+ \ \"2603:1000:104:402::1c0/123\",\r\n \"2603:1000:104:802::160/123\",\r\n
+ \ \"2603:1000:104:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthAfricaWest\",\r\n \"id\": \"EventHub.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"102.37.65.0/26\",\r\n \"102.133.26.128/26\",\r\n
+ \ \"2603:1000:4::240/122\",\r\n \"2603:1000:4:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SouthCentralUS\",\r\n
+ \ \"id\": \"EventHub.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.209.24/32\",\r\n \"13.84.145.196/32\",\r\n
+ \ \"20.45.122.64/26\",\r\n \"20.45.126.192/26\",\r\n \"20.49.93.64/27\",\r\n
+ \ \"20.49.93.128/27\",\r\n \"20.49.95.128/26\",\r\n \"23.102.128.15/32\",\r\n
+ \ \"23.102.160.39/32\",\r\n \"23.102.161.227/32\",\r\n \"23.102.163.4/32\",\r\n
+ \ \"23.102.165.127/32\",\r\n \"23.102.167.73/32\",\r\n \"23.102.180.26/32\",\r\n
+ \ \"40.84.150.241/32\",\r\n \"40.84.185.67/32\",\r\n \"40.124.65.64/26\",\r\n
+ \ \"104.44.129.14/32\",\r\n \"104.44.129.59/32\",\r\n \"104.210.146.250/32\",\r\n
+ \ \"104.214.18.128/27\",\r\n \"104.214.70.229/32\",\r\n \"191.238.160.221/32\",\r\n
+ \ \"2603:1030:807:1::240/122\",\r\n \"2603:1030:807:402::1c0/123\",\r\n
+ \ \"2603:1030:807:802::160/123\",\r\n \"2603:1030:807:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SoutheastAsia\",\r\n
+ \ \"id\": \"EventHub.SoutheastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southeastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"13.67.8.64/27\",\r\n
+ \ \"13.67.20.64/26\",\r\n \"13.76.179.223/32\",\r\n \"13.76.216.217/32\",\r\n
+ \ \"23.98.64.92/32\",\r\n \"23.98.65.24/32\",\r\n \"23.98.82.64/27\",\r\n
+ \ \"23.98.87.192/26\",\r\n \"23.98.112.192/26\",\r\n \"40.78.234.0/27\",\r\n
+ \ \"52.187.2.226/32\",\r\n \"52.187.59.188/32\",\r\n \"52.187.61.82/32\",\r\n
+ \ \"52.187.185.159/32\",\r\n \"104.43.18.219/32\",\r\n \"137.116.157.26/32\",\r\n
+ \ \"137.116.158.30/32\",\r\n \"207.46.227.14/32\",\r\n \"2603:1040:5:1::240/122\",\r\n
+ \ \"2603:1040:5:402::1c0/123\",\r\n \"2603:1040:5:802::160/123\",\r\n
+ \ \"2603:1040:5:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.SouthIndia\",\r\n \"id\": \"EventHub.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.123.78/32\",\r\n \"40.78.194.32/27\",\r\n
+ \ \"104.211.224.190/32\",\r\n \"104.211.224.238/32\",\r\n
+ \ \"2603:1040:c06::240/122\",\r\n \"2603:1040:c06:402::1c0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandNorth\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.128/27\",\r\n \"51.107.129.0/26\",\r\n
+ \ \"2603:1020:a04:1::240/122\",\r\n \"2603:1020:a04:402::1c0/123\",\r\n
+ \ \"2603:1020:a04:802::160/123\",\r\n \"2603:1020:a04:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.SwitzerlandWest\",\r\n
+ \ \"id\": \"EventHub.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.128/27\",\r\n \"2603:1020:b04::240/122\",\r\n
+ \ \"2603:1020:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAECentral\",\r\n \"id\": \"EventHub.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.0/27\",\r\n \"2603:1040:b04::240/122\",\r\n
+ \ \"2603:1040:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UAENorth\",\r\n \"id\": \"EventHub.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.75.64/27\",\r\n \"40.120.78.0/26\",\r\n \"65.52.250.32/27\",\r\n
+ \ \"2603:1040:904:1::240/122\",\r\n \"2603:1040:904:402::1c0/123\",\r\n
+ \ \"2603:1040:904:802::160/123\",\r\n \"2603:1040:904:c02::160/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"EventHub.UKSouth\",\r\n
+ \ \"id\": \"EventHub.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureEventHub\",\r\n \"addressPrefixes\": [\r\n \"51.105.66.64/26\",\r\n
+ \ \"51.105.71.0/26\",\r\n \"51.105.74.64/26\",\r\n \"51.132.192.192/26\",\r\n
+ \ \"51.140.80.99/32\",\r\n \"51.140.87.93/32\",\r\n \"51.140.125.8/32\",\r\n
+ \ \"51.140.146.32/28\",\r\n \"51.140.149.192/26\",\r\n \"51.140.189.52/32\",\r\n
+ \ \"51.140.189.108/32\",\r\n \"2603:1020:705:1::240/122\",\r\n
+ \ \"2603:1020:705:402::1c0/123\",\r\n \"2603:1020:705:802::160/123\",\r\n
+ \ \"2603:1020:705:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.UKWest\",\r\n \"id\": \"EventHub.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.32/27\",\r\n \"51.141.14.113/32\",\r\n
+ \ \"51.141.14.168/32\",\r\n \"51.141.50.179/32\",\r\n \"2603:1020:605::240/122\",\r\n
+ \ \"2603:1020:605:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestCentralUS\",\r\n \"id\": \"EventHub.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.64/27\",\r\n \"13.78.149.209/32\",\r\n
+ \ \"13.78.150.233/32\",\r\n \"13.78.191.44/32\",\r\n \"52.161.19.160/32\",\r\n
+ \ \"52.161.24.64/32\",\r\n \"2603:1030:b04::240/122\",\r\n
+ \ \"2603:1030:b04:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestEurope\",\r\n \"id\": \"EventHub.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.0/26\",\r\n \"13.69.106.0/26\",\r\n \"13.69.111.128/26\",\r\n
+ \ \"20.50.201.64/26\",\r\n \"23.97.226.21/32\",\r\n \"23.100.14.185/32\",\r\n
+ \ \"40.68.35.230/32\",\r\n \"40.68.39.15/32\",\r\n \"40.68.93.145/32\",\r\n
+ \ \"40.68.205.113/32\",\r\n \"40.68.217.242/32\",\r\n \"51.144.238.23/32\",\r\n
+ \ \"52.174.243.57/32\",\r\n \"52.178.17.128/26\",\r\n \"52.178.78.61/32\",\r\n
+ \ \"52.232.27.189/32\",\r\n \"52.233.190.35/32\",\r\n \"52.233.192.247/32\",\r\n
+ \ \"52.236.186.0/26\",\r\n \"65.52.129.16/32\",\r\n \"104.40.150.139/32\",\r\n
+ \ \"104.40.179.185/32\",\r\n \"104.40.216.174/32\",\r\n \"104.46.32.56/32\",\r\n
+ \ \"104.46.32.58/32\",\r\n \"191.233.73.228/32\",\r\n \"2603:1020:206:1::240/122\",\r\n
+ \ \"2603:1020:206:402::1c0/123\",\r\n \"2603:1020:206:802::160/123\",\r\n
+ \ \"2603:1020:206:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestIndia\",\r\n \"id\": \"EventHub.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.32/27\",\r\n \"104.211.160.121/32\",\r\n
+ \ \"104.211.160.144/32\",\r\n \"2603:1040:806::240/122\",\r\n
+ \ \"2603:1040:806:402::1c0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS\",\r\n \"id\": \"EventHub.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.195.117/32\",\r\n \"13.88.20.117/32\",\r\n
+ \ \"13.88.26.28/32\",\r\n \"13.91.61.11/32\",\r\n \"13.93.226.138/32\",\r\n
+ \ \"23.99.7.105/32\",\r\n \"23.99.54.235/32\",\r\n \"23.99.60.253/32\",\r\n
+ \ \"23.99.80.186/32\",\r\n \"40.78.110.196/32\",\r\n \"40.83.191.202/32\",\r\n
+ \ \"40.83.222.100/32\",\r\n \"40.86.176.23/32\",\r\n \"40.112.185.115/32\",\r\n
+ \ \"40.112.213.11/32\",\r\n \"40.112.242.0/25\",\r\n \"104.40.26.199/32\",\r\n
+ \ \"104.40.29.113/32\",\r\n \"104.40.68.250/32\",\r\n \"104.40.69.64/32\",\r\n
+ \ \"104.42.97.95/32\",\r\n \"138.91.193.184/32\",\r\n \"2603:1030:a07::240/122\",\r\n
+ \ \"2603:1030:a07:402::140/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"EventHub.WestUS2\",\r\n \"id\": \"EventHub.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureEventHub\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.64/28\",\r\n \"13.66.145.128/26\",\r\n
+ \ \"13.66.149.0/26\",\r\n \"13.66.228.204/32\",\r\n \"13.66.230.42/32\",\r\n
+ \ \"20.42.131.16/28\",\r\n \"20.42.131.64/26\",\r\n \"20.83.192.0/26\",\r\n
+ \ \"40.64.113.64/26\",\r\n \"40.78.242.128/28\",\r\n \"40.78.247.0/26\",\r\n
+ \ \"40.78.250.64/28\",\r\n \"40.78.253.128/26\",\r\n \"52.151.58.121/32\",\r\n
+ \ \"52.183.46.73/32\",\r\n \"52.183.86.102/32\",\r\n \"2603:1030:c06:1::240/122\",\r\n
+ \ \"2603:1030:c06:400::9c0/123\",\r\n \"2603:1030:c06:802::160/123\",\r\n
+ \ \"2603:1030:c06:c02::160/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager\",\r\n \"id\": \"GatewayManager\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.66.140.144/29\",\r\n
+ \ \"13.67.9.128/29\",\r\n \"13.69.64.224/29\",\r\n \"13.69.227.224/29\",\r\n
+ \ \"13.70.72.208/29\",\r\n \"13.70.185.130/32\",\r\n \"13.71.170.240/29\",\r\n
+ \ \"13.71.194.232/29\",\r\n \"13.75.36.8/29\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"13.78.108.16/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"13.85.74.21/32\",\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"13.87.122.104/29\",\r\n \"13.89.171.96/29\",\r\n
+ \ \"13.91.249.235/32\",\r\n \"13.91.254.232/32\",\r\n \"13.92.84.128/32\",\r\n
+ \ \"13.93.112.146/32\",\r\n \"13.93.117.26/32\",\r\n \"20.36.42.151/32\",\r\n
+ \ \"20.36.42.152/32\",\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.36.114.24/29\",\r\n \"20.36.120.72/29\",\r\n
+ \ \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n \"20.37.64.72/29\",\r\n
+ \ \"20.37.74.88/29\",\r\n \"20.37.152.72/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"20.38.80.72/29\",\r\n \"20.38.136.72/29\",\r\n
+ \ \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"20.40.173.147/32\",\r\n
+ \ \"20.41.0.72/29\",\r\n \"20.41.64.72/29\",\r\n \"20.41.192.72/29\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"20.42.128.72/29\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"20.43.40.72/29\",\r\n \"20.43.64.72/29\",\r\n \"20.43.128.72/29\",\r\n
+ \ \"20.44.3.16/29\",\r\n \"20.45.112.72/29\",\r\n \"20.45.192.72/29\",\r\n
+ \ \"20.46.13.128/26\",\r\n \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n
+ \ \"20.72.16.64/26\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"20.150.160.64/29\",\r\n \"20.150.161.0/26\",\r\n \"20.150.171.64/29\",\r\n
+ \ \"20.189.104.72/29\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"20.192.160.64/26\",\r\n \"20.192.224.192/26\",\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"20.194.75.128/26\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.67.48.72/29\",\r\n \"40.67.59.64/29\",\r\n
+ \ \"40.69.106.88/29\",\r\n \"40.70.146.224/29\",\r\n \"40.71.11.96/29\",\r\n
+ \ \"40.74.24.72/29\",\r\n \"40.74.100.168/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"40.79.130.224/29\",\r\n \"40.79.178.88/29\",\r\n
+ \ \"40.80.56.72/29\",\r\n \"40.80.168.72/29\",\r\n \"40.80.184.72/29\",\r\n
+ \ \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n \"40.81.180.83/32\",\r\n
+ \ \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n \"40.81.189.42/32\",\r\n
+ \ \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n \"40.82.248.240/29\",\r\n
+ \ \"40.88.222.179/32\",\r\n \"40.88.223.53/32\",\r\n \"40.89.16.72/29\",\r\n
+ \ \"40.89.217.100/32\",\r\n \"40.89.217.109/32\",\r\n \"40.90.186.21/32\",\r\n
+ \ \"40.90.186.91/32\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"40.112.242.168/29\",\r\n \"40.115.248.200/32\",\r\n \"40.115.254.17/32\",\r\n
+ \ \"40.119.8.64/29\",\r\n \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n
+ \ \"51.12.40.192/26\",\r\n \"51.12.192.192/26\",\r\n \"51.104.24.72/29\",\r\n
+ \ \"51.105.80.72/29\",\r\n \"51.105.88.72/29\",\r\n \"51.107.48.72/29\",\r\n
+ \ \"51.107.59.32/29\",\r\n \"51.107.144.72/29\",\r\n \"51.107.155.32/29\",\r\n
+ \ \"51.116.48.72/29\",\r\n \"51.116.59.32/29\",\r\n \"51.116.144.72/29\",\r\n
+ \ \"51.116.155.96/29\",\r\n \"51.120.40.72/29\",\r\n \"51.120.98.168/29\",\r\n
+ \ \"51.120.219.64/29\",\r\n \"51.120.224.72/29\",\r\n \"51.120.235.128/26\",\r\n
+ \ \"51.137.160.72/29\",\r\n \"51.140.63.41/32\",\r\n \"51.140.114.209/32\",\r\n
+ \ \"51.140.148.16/29\",\r\n \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n
+ \ \"51.141.29.178/32\",\r\n \"51.142.209.124/32\",\r\n \"51.142.210.184/32\",\r\n
+ \ \"51.143.192.72/29\",\r\n \"52.136.48.72/29\",\r\n \"52.136.137.15/32\",\r\n
+ \ \"52.136.137.16/32\",\r\n \"52.138.70.115/32\",\r\n \"52.138.71.153/32\",\r\n
+ \ \"52.138.90.40/29\",\r\n \"52.139.87.129/32\",\r\n \"52.139.87.150/32\",\r\n
+ \ \"52.140.104.72/29\",\r\n \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n
+ \ \"52.143.136.58/31\",\r\n \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"52.148.30.6/32\",\r\n \"52.149.24.100/32\",\r\n
+ \ \"52.149.26.14/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"52.162.106.168/29\",\r\n \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n
+ \ \"52.165.221.72/32\",\r\n \"52.169.225.171/32\",\r\n \"52.169.231.163/32\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"52.173.250.124/32\",\r\n \"52.177.204.204/32\",\r\n
+ \ \"52.177.207.219/32\",\r\n \"52.179.10.142/32\",\r\n \"52.180.178.35/32\",\r\n
+ \ \"52.180.178.191/32\",\r\n \"52.180.182.210/32\",\r\n \"52.184.255.23/32\",\r\n
+ \ \"52.191.140.123/32\",\r\n \"52.191.170.38/32\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.229.161.220/32\",\r\n \"52.229.166.101/32\",\r\n \"52.231.18.224/29\",\r\n
+ \ \"52.231.24.186/32\",\r\n \"52.231.35.84/32\",\r\n \"52.231.146.200/29\",\r\n
+ \ \"52.231.203.87/32\",\r\n \"52.231.204.175/32\",\r\n \"52.237.24.145/32\",\r\n
+ \ \"52.237.30.255/32\",\r\n \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n
+ \ \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n \"52.251.12.161/32\",\r\n
+ \ \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n \"52.253.232.235/32\",\r\n
+ \ \"52.253.239.162/32\",\r\n \"65.52.250.24/29\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"102.133.27.16/29\",\r\n \"102.133.56.72/29\",\r\n
+ \ \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n \"104.211.81.208/29\",\r\n
+ \ \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n \"104.211.191.94/32\",\r\n
+ \ \"104.214.19.64/29\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"168.62.208.162/32\",\r\n \"168.62.209.95/32\",\r\n
+ \ \"191.233.8.64/26\",\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1000:4::40/122\",\r\n
+ \ \"2603:1000:104:1::40/122\",\r\n \"2603:1010:6:1::40/122\",\r\n
+ \ \"2603:1010:101::40/122\",\r\n \"2603:1010:304::40/122\",\r\n
+ \ \"2603:1010:404::40/122\",\r\n \"2603:1020:5:1::40/122\",\r\n
+ \ \"2603:1020:206:1::40/122\",\r\n \"2603:1020:305::40/122\",\r\n
+ \ \"2603:1020:405::40/122\",\r\n \"2603:1020:605::40/122\",\r\n
+ \ \"2603:1020:705:1::40/122\",\r\n \"2603:1020:805:1::40/122\",\r\n
+ \ \"2603:1020:905::40/122\",\r\n \"2603:1020:a04:1::40/122\",\r\n
+ \ \"2603:1020:b04::40/122\",\r\n \"2603:1020:c04:1::40/122\",\r\n
+ \ \"2603:1020:d04::40/122\",\r\n \"2603:1020:e04:1::40/122\",\r\n
+ \ \"2603:1020:f04::40/122\",\r\n \"2603:1020:1004::40/122\",\r\n
+ \ \"2603:1020:1104::40/122\",\r\n \"2603:1030:f:1::40/122\",\r\n
+ \ \"2603:1030:10:1::40/122\",\r\n \"2603:1030:104:1::40/122\",\r\n
+ \ \"2603:1030:107::40/122\",\r\n \"2603:1030:210:1::40/122\",\r\n
+ \ \"2603:1030:40b:1::40/122\",\r\n \"2603:1030:40c:1::40/122\",\r\n
+ \ \"2603:1030:504:1::40/122\",\r\n \"2603:1030:608::40/122\",\r\n
+ \ \"2603:1030:807:1::40/122\",\r\n \"2603:1030:a07::40/122\",\r\n
+ \ \"2603:1030:b04::40/122\",\r\n \"2603:1030:c06:1::40/122\",\r\n
+ \ \"2603:1030:f05:1::40/122\",\r\n \"2603:1030:1005::40/122\",\r\n
+ \ \"2603:1040:5:1::40/122\",\r\n \"2603:1040:207::40/122\",\r\n
+ \ \"2603:1040:407:1::40/122\",\r\n \"2603:1040:606::40/122\",\r\n
+ \ \"2603:1040:806::40/122\",\r\n \"2603:1040:904:1::40/122\",\r\n
+ \ \"2603:1040:a06:1::40/122\",\r\n \"2603:1040:b04::40/122\",\r\n
+ \ \"2603:1040:c06::40/122\",\r\n \"2603:1040:d04::40/122\",\r\n
+ \ \"2603:1040:f05:1::40/122\",\r\n \"2603:1040:1104::40/122\",\r\n
+ \ \"2603:1050:6:1::40/122\",\r\n \"2603:1050:403::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.42.151/32\",\r\n \"20.36.42.152/32\",\r\n
+ \ \"20.36.106.72/29\",\r\n \"20.37.53.66/32\",\r\n \"20.37.53.76/32\",\r\n
+ \ \"20.37.224.72/29\",\r\n \"2603:1010:304::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaCentral2\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.74.91/32\",\r\n \"20.36.74.113/32\",\r\n \"20.36.114.24/29\",\r\n
+ \ \"20.36.120.72/29\",\r\n \"2603:1010:404::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaEast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.208/29\",\r\n \"20.37.192.72/29\",\r\n
+ \ \"52.237.208.51/32\",\r\n \"52.237.215.149/32\",\r\n \"2603:1010:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.AustraliaSoutheast\",\r\n
+ \ \"id\": \"GatewayManager.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.185.130/32\",\r\n \"13.77.0.146/32\",\r\n
+ \ \"13.77.50.88/29\",\r\n \"20.40.173.147/32\",\r\n \"20.42.224.72/29\",\r\n
+ \ \"52.147.44.33/32\",\r\n \"2603:1010:101::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.BrazilSouth\",\r\n
+ \ \"id\": \"GatewayManager.BrazilSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.208/29\",\r\n \"191.233.245.75/32\",\r\n
+ \ \"191.233.245.118/32\",\r\n \"191.234.182.29/32\",\r\n
+ \ \"191.235.81.58/32\",\r\n \"191.235.224.72/29\",\r\n \"2603:1050:6:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaCentral\",\r\n
+ \ \"id\": \"GatewayManager.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.240/29\",\r\n \"52.228.80.72/29\",\r\n
+ \ \"52.237.24.145/32\",\r\n \"52.237.30.255/32\",\r\n \"2603:1030:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CanadaEast\",\r\n
+ \ \"id\": \"GatewayManager.CanadaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.88/29\",\r\n \"40.89.16.72/29\",\r\n \"52.139.87.129/32\",\r\n
+ \ \"52.139.87.150/32\",\r\n \"52.242.17.200/32\",\r\n \"52.242.28.83/32\",\r\n
+ \ \"2603:1030:1005::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.CentralIndia\",\r\n \"id\":
+ \"GatewayManager.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.193.142.141/32\",\r\n
+ \ \"20.193.142.178/32\",\r\n \"52.140.104.72/29\",\r\n \"52.172.204.73/32\",\r\n
+ \ \"52.172.222.13/32\",\r\n \"104.211.81.208/29\",\r\n \"2603:1040:a06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUS\",\r\n
+ \ \"id\": \"GatewayManager.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.171.96/29\",\r\n \"20.37.152.72/29\",\r\n
+ \ \"52.143.250.137/32\",\r\n \"52.143.251.22/32\",\r\n \"52.165.221.72/32\",\r\n
+ \ \"52.173.250.124/32\",\r\n \"2603:1030:10:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.CentralUSEUAP\",\r\n
+ \ \"id\": \"GatewayManager.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.192.72/29\",\r\n \"20.46.13.128/26\",\r\n
+ \ \"40.78.202.112/29\",\r\n \"52.180.178.35/32\",\r\n \"52.180.178.191/32\",\r\n
+ \ \"52.180.182.210/32\",\r\n \"52.253.157.2/32\",\r\n \"52.253.159.209/32\",\r\n
+ \ \"52.253.232.235/32\",\r\n \"52.253.239.162/32\",\r\n \"2603:1030:f:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastAsia\",\r\n
+ \ \"id\": \"GatewayManager.EastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.36.8/29\",\r\n \"20.189.104.72/29\",\r\n \"52.229.161.220/32\",\r\n
+ \ \"52.229.166.101/32\",\r\n \"2603:1040:207::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS\",\r\n
+ \ \"id\": \"GatewayManager.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.92.84.128/32\",\r\n
+ \ \"20.42.0.72/29\",\r\n \"40.71.11.96/29\",\r\n \"40.88.222.179/32\",\r\n
+ \ \"40.88.223.53/32\",\r\n \"52.179.10.142/32\",\r\n \"2603:1030:210:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.0.72/29\",\r\n
+ \ \"40.70.146.224/29\",\r\n \"52.177.204.204/32\",\r\n \"52.177.207.219/32\",\r\n
+ \ \"52.184.255.23/32\",\r\n \"52.251.12.161/32\",\r\n \"2603:1030:40c:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.EastUS2EUAP\",\r\n
+ \ \"id\": \"GatewayManager.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.39.1.56/32\",\r\n \"20.39.1.58/32\",\r\n \"20.39.8.72/29\",\r\n
+ \ \"20.39.26.140/32\",\r\n \"20.39.26.246/32\",\r\n \"52.138.70.115/32\",\r\n
+ \ \"52.138.71.153/32\",\r\n \"52.138.90.40/29\",\r\n \"2603:1030:40b:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceCentral\",\r\n
+ \ \"id\": \"GatewayManager.FranceCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.40.72/29\",\r\n \"20.74.0.115/32\",\r\n \"20.74.0.127/32\",\r\n
+ \ \"40.79.130.224/29\",\r\n \"52.143.136.58/31\",\r\n \"2603:1020:805:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.FranceSouth\",\r\n
+ \ \"id\": \"GatewayManager.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.88/29\",\r\n \"40.82.236.2/32\",\r\n \"40.82.236.13/32\",\r\n
+ \ \"51.105.88.72/29\",\r\n \"52.136.137.15/32\",\r\n \"52.136.137.16/32\",\r\n
+ \ \"2603:1020:905::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.GermanyNorth\",\r\n \"id\":
+ \"GatewayManager.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.116.48.72/29\",\r\n
+ \ \"51.116.59.32/29\",\r\n \"2603:1020:d04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.GermanyWestCentral\",\r\n
+ \ \"id\": \"GatewayManager.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.144.72/29\",\r\n \"51.116.155.96/29\",\r\n
+ \ \"2603:1020:c04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.JapanEast\",\r\n \"id\": \"GatewayManager.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.108.16/29\",\r\n \"20.43.64.72/29\",\r\n \"40.115.248.200/32\",\r\n
+ \ \"40.115.254.17/32\",\r\n \"2603:1040:407:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.JapanWest\",\r\n
+ \ \"id\": \"GatewayManager.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.168/29\",\r\n \"40.80.56.72/29\",\r\n
+ \ \"40.81.180.83/32\",\r\n \"40.81.182.82/32\",\r\n \"40.81.189.24/32\",\r\n
+ \ \"40.81.189.42/32\",\r\n \"104.215.50.115/32\",\r\n \"104.215.52.27/32\",\r\n
+ \ \"2603:1040:606::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.KoreaCentral\",\r\n \"id\":
+ \"GatewayManager.KoreaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"koreacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"20.41.64.72/29\",\r\n
+ \ \"20.194.75.128/26\",\r\n \"52.231.18.224/29\",\r\n \"52.231.24.186/32\",\r\n
+ \ \"52.231.35.84/32\",\r\n \"2603:1040:f05:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.KoreaSouth\",\r\n
+ \ \"id\": \"GatewayManager.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.168.72/29\",\r\n \"40.89.217.100/32\",\r\n
+ \ \"40.89.217.109/32\",\r\n \"52.231.146.200/29\",\r\n \"52.231.203.87/32\",\r\n
+ \ \"52.231.204.175/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"GatewayManager.NorthCentralUS\",\r\n \"id\": \"GatewayManager.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"23.100.231.72/32\",\r\n \"23.100.231.96/32\",\r\n
+ \ \"23.101.173.90/32\",\r\n \"40.80.184.72/29\",\r\n \"52.162.106.168/29\",\r\n
+ \ \"168.62.104.154/32\",\r\n \"2603:1030:608::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorthEurope\",\r\n
+ \ \"id\": \"GatewayManager.NorthEurope\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.224/29\",\r\n \"20.38.80.72/29\",\r\n
+ \ \"20.54.106.86/32\",\r\n \"20.54.121.133/32\",\r\n \"52.169.225.171/32\",\r\n
+ \ \"52.169.231.163/32\",\r\n \"2603:1020:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayEast\",\r\n
+ \ \"id\": \"GatewayManager.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.40.72/29\",\r\n
+ \ \"51.120.98.168/29\",\r\n \"51.120.235.128/26\",\r\n \"2603:1020:e04:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.NorwayWest\",\r\n
+ \ \"id\": \"GatewayManager.NorwayWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.120.219.64/29\",\r\n
+ \ \"51.120.224.72/29\",\r\n \"2603:1020:f04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthAfricaNorth\",\r\n
+ \ \"id\": \"GatewayManager.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.155.16/29\",\r\n \"102.133.216.72/29\",\r\n
+ \ \"2603:1000:104:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SouthAfricaWest\",\r\n \"id\":
+ \"GatewayManager.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"102.133.27.16/29\",\r\n
+ \ \"102.133.56.72/29\",\r\n \"2603:1000:4::40/122\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.91.57/32\",\r\n \"13.85.74.21/32\",\r\n \"40.119.8.64/29\",\r\n
+ \ \"40.124.139.107/32\",\r\n \"40.124.139.174/32\",\r\n \"70.37.160.97/32\",\r\n
+ \ \"70.37.161.124/32\",\r\n \"104.214.19.64/29\",\r\n \"2603:1030:807:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SoutheastAsia\",\r\n
+ \ \"id\": \"GatewayManager.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.128/29\",\r\n \"20.43.128.72/29\",\r\n \"20.195.37.65/32\",\r\n
+ \ \"20.195.38.22/32\",\r\n \"40.90.186.21/32\",\r\n \"40.90.186.91/32\",\r\n
+ \ \"52.163.241.22/32\",\r\n \"52.163.246.27/32\",\r\n \"2603:1040:5:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SouthIndia\",\r\n
+ \ \"id\": \"GatewayManager.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.192.72/29\",\r\n \"40.78.194.88/29\",\r\n
+ \ \"52.172.28.183/32\",\r\n \"52.172.31.29/32\",\r\n \"2603:1040:c06::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.SwitzerlandNorth\",\r\n
+ \ \"id\": \"GatewayManager.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.48.72/29\",\r\n \"51.107.59.32/29\",\r\n
+ \ \"2603:1020:a04:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.SwitzerlandWest\",\r\n \"id\":
+ \"GatewayManager.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.107.144.72/29\",\r\n
+ \ \"51.107.155.32/29\",\r\n \"2603:1020:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAECentral\",\r\n
+ \ \"id\": \"GatewayManager.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.64.72/29\",\r\n \"20.37.74.88/29\",\r\n \"2603:1040:b04::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UAENorth\",\r\n
+ \ \"id\": \"GatewayManager.UAENorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.136.72/29\",\r\n \"65.52.250.24/29\",\r\n
+ \ \"2603:1040:904:1::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.UKSouth\",\r\n \"id\": \"GatewayManager.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.24.72/29\",\r\n \"51.140.63.41/32\",\r\n
+ \ \"51.140.114.209/32\",\r\n \"51.140.148.16/29\",\r\n \"2603:1020:705:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKSouth2\",\r\n
+ \ \"id\": \"GatewayManager.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.35.147/32\",\r\n \"13.87.36.246/32\",\r\n
+ \ \"13.87.56.104/29\",\r\n \"51.143.192.72/29\",\r\n \"2603:1020:405::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.UKWest\",\r\n
+ \ \"id\": \"GatewayManager.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"51.137.160.72/29\",\r\n
+ \ \"51.140.210.200/29\",\r\n \"51.141.25.80/32\",\r\n \"51.141.29.178/32\",\r\n
+ \ \"52.142.152.114/32\",\r\n \"52.142.154.100/32\",\r\n \"2603:1020:605::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestCentralUS\",\r\n
+ \ \"id\": \"GatewayManager.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.232/29\",\r\n \"13.78.188.33/32\",\r\n
+ \ \"52.148.30.6/32\",\r\n \"52.150.136.72/29\",\r\n \"52.159.19.113/32\",\r\n
+ \ \"52.159.20.67/32\",\r\n \"52.159.21.124/32\",\r\n \"52.161.28.251/32\",\r\n
+ \ \"2603:1030:b04::40/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GatewayManager.WestEurope\",\r\n \"id\": \"GatewayManager.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.224/29\",\r\n \"13.93.112.146/32\",\r\n
+ \ \"13.93.117.26/32\",\r\n \"40.74.24.72/29\",\r\n \"2603:1020:206:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestIndia\",\r\n
+ \ \"id\": \"GatewayManager.WestIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"GatewayManager\",\r\n \"addressPrefixes\":
+ [\r\n \"40.81.94.172/32\",\r\n \"40.81.94.182/32\",\r\n
+ \ \"52.136.48.72/29\",\r\n \"104.211.146.88/29\",\r\n \"104.211.188.0/32\",\r\n
+ \ \"104.211.191.94/32\",\r\n \"2603:1040:806::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS\",\r\n
+ \ \"id\": \"GatewayManager.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.91.249.235/32\",\r\n
+ \ \"13.91.254.232/32\",\r\n \"20.189.180.225/32\",\r\n \"20.189.181.8/32\",\r\n
+ \ \"40.82.248.240/29\",\r\n \"40.112.242.168/29\",\r\n \"168.62.208.162/32\",\r\n
+ \ \"168.62.209.95/32\",\r\n \"2603:1030:a07::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GatewayManager.WestUS2\",\r\n
+ \ \"id\": \"GatewayManager.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"GatewayManager\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.144/29\",\r\n
+ \ \"20.42.128.72/29\",\r\n \"40.91.89.36/32\",\r\n \"40.91.91.51/32\",\r\n
+ \ \"52.149.24.100/32\",\r\n \"52.149.26.14/32\",\r\n \"52.191.140.123/32\",\r\n
+ \ \"52.191.170.38/32\",\r\n \"2603:1030:c06:1::40/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement\",\r\n
+ \ \"id\": \"GuestAndHybridManagement\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureAutomation\",\r\n \"addressPrefixes\": [\r\n \"13.65.24.129/32\",\r\n
+ \ \"13.66.138.94/31\",\r\n \"13.66.141.224/29\",\r\n \"13.66.145.80/28\",\r\n
+ \ \"13.67.8.110/31\",\r\n \"13.67.10.72/29\",\r\n \"13.69.64.78/31\",\r\n
+ \ \"13.69.67.48/29\",\r\n \"13.69.107.64/29\",\r\n \"13.69.109.128/31\",\r\n
+ \ \"13.69.109.176/28\",\r\n \"13.69.227.78/31\",\r\n \"13.69.229.248/29\",\r\n
+ \ \"13.70.72.30/31\",\r\n \"13.70.74.80/29\",\r\n \"13.70.123.166/32\",\r\n
+ \ \"13.71.170.46/31\",\r\n \"13.71.173.208/29\",\r\n \"13.71.175.144/28\",\r\n
+ \ \"13.71.194.118/31\",\r\n \"13.71.196.128/29\",\r\n \"13.71.199.176/28\",\r\n
+ \ \"13.73.242.40/29\",\r\n \"13.73.242.210/31\",\r\n \"13.73.244.208/28\",\r\n
+ \ \"13.74.107.92/31\",\r\n \"13.74.108.136/29\",\r\n \"13.75.34.150/31\",\r\n
+ \ \"13.75.39.104/29\",\r\n \"13.77.1.26/32\",\r\n \"13.77.1.212/32\",\r\n
+ \ \"13.77.50.70/31\",\r\n \"13.77.53.56/29\",\r\n \"13.77.55.192/28\",\r\n
+ \ \"13.78.59.184/32\",\r\n \"13.78.106.94/31\",\r\n \"13.78.109.120/29\",\r\n
+ \ \"13.78.111.208/28\",\r\n \"13.86.219.200/29\",\r\n \"13.86.221.216/31\",\r\n
+ \ \"13.86.223.64/28\",\r\n \"13.87.56.86/31\",\r\n \"13.87.58.72/29\",\r\n
+ \ \"13.87.122.86/31\",\r\n \"13.87.124.72/29\",\r\n \"13.88.240.74/32\",\r\n
+ \ \"13.88.244.195/32\",\r\n \"13.89.170.206/31\",\r\n \"13.89.174.136/29\",\r\n
+ \ \"13.89.178.96/28\",\r\n \"13.94.240.75/32\",\r\n \"20.36.39.150/32\",\r\n
+ \ \"20.36.106.70/31\",\r\n \"20.36.108.128/29\",\r\n \"20.36.108.240/28\",\r\n
+ \ \"20.36.114.22/31\",\r\n \"20.36.117.32/29\",\r\n \"20.36.117.144/28\",\r\n
+ \ \"20.37.74.226/31\",\r\n \"20.37.76.120/29\",\r\n \"20.38.128.104/29\",\r\n
+ \ \"20.38.128.168/31\",\r\n \"20.38.132.0/28\",\r\n \"20.38.147.152/29\",\r\n
+ \ \"20.38.149.128/31\",\r\n \"20.42.64.32/31\",\r\n \"20.42.72.128/31\",\r\n
+ \ \"20.42.72.144/28\",\r\n \"20.43.120.248/29\",\r\n \"20.43.121.120/31\",\r\n
+ \ \"20.43.123.48/28\",\r\n \"20.44.2.6/31\",\r\n \"20.44.4.104/29\",\r\n
+ \ \"20.44.8.200/29\",\r\n \"20.44.10.120/31\",\r\n \"20.44.17.8/29\",\r\n
+ \ \"20.44.17.216/31\",\r\n \"20.44.19.16/28\",\r\n \"20.44.27.112/29\",\r\n
+ \ \"20.44.29.48/31\",\r\n \"20.44.29.96/28\",\r\n \"20.45.123.88/29\",\r\n
+ \ \"20.45.123.232/31\",\r\n \"20.49.82.24/29\",\r\n \"20.49.90.24/29\",\r\n
+ \ \"20.72.27.176/29\",\r\n \"20.150.171.216/29\",\r\n \"20.150.172.224/31\",\r\n
+ \ \"20.150.179.192/29\",\r\n \"20.150.181.24/31\",\r\n \"20.150.181.176/28\",\r\n
+ \ \"20.150.187.192/29\",\r\n \"20.150.189.24/31\",\r\n \"20.192.99.192/29\",\r\n
+ \ \"20.192.101.24/31\",\r\n \"20.192.184.64/28\",\r\n \"20.192.234.176/28\",\r\n
+ \ \"20.192.235.8/29\",\r\n \"20.192.238.120/31\",\r\n \"20.193.202.176/28\",\r\n
+ \ \"20.193.203.192/29\",\r\n \"20.194.66.24/29\",\r\n \"23.96.225.107/32\",\r\n
+ \ \"23.96.225.182/32\",\r\n \"23.98.83.64/29\",\r\n \"23.98.86.56/31\",\r\n
+ \ \"40.67.60.96/29\",\r\n \"40.67.60.108/31\",\r\n \"40.69.106.70/31\",\r\n
+ \ \"40.69.108.88/29\",\r\n \"40.69.110.240/28\",\r\n \"40.70.146.78/31\",\r\n
+ \ \"40.70.148.48/29\",\r\n \"40.71.10.206/31\",\r\n \"40.71.13.240/29\",\r\n
+ \ \"40.71.30.252/32\",\r\n \"40.74.146.82/31\",\r\n \"40.74.149.32/29\",\r\n
+ \ \"40.74.150.16/28\",\r\n \"40.75.35.128/29\",\r\n \"40.75.35.216/31\",\r\n
+ \ \"40.78.194.70/31\",\r\n \"40.78.196.88/29\",\r\n \"40.78.202.130/31\",\r\n
+ \ \"40.78.203.248/29\",\r\n \"40.78.229.40/29\",\r\n \"40.78.236.128/29\",\r\n
+ \ \"40.78.238.56/31\",\r\n \"40.78.239.32/28\",\r\n \"40.78.242.172/31\",\r\n
+ \ \"40.78.243.24/29\",\r\n \"40.78.250.108/31\",\r\n \"40.78.250.216/29\",\r\n
+ \ \"40.79.130.46/31\",\r\n \"40.79.132.40/29\",\r\n \"40.79.138.44/31\",\r\n
+ \ \"40.79.138.152/29\",\r\n \"40.79.139.208/28\",\r\n \"40.79.146.44/31\",\r\n
+ \ \"40.79.146.152/29\",\r\n \"40.79.156.40/29\",\r\n \"40.79.163.8/29\",\r\n
+ \ \"40.79.163.152/31\",\r\n \"40.79.170.248/29\",\r\n \"40.79.171.224/31\",\r\n
+ \ \"40.79.173.16/28\",\r\n \"40.79.178.70/31\",\r\n \"40.79.180.56/29\",\r\n
+ \ \"40.79.180.208/28\",\r\n \"40.79.187.160/29\",\r\n \"40.79.189.56/31\",\r\n
+ \ \"40.79.194.120/29\",\r\n \"40.79.197.32/31\",\r\n \"40.80.51.88/29\",\r\n
+ \ \"40.80.53.0/31\",\r\n \"40.80.176.48/29\",\r\n \"40.80.180.0/31\",\r\n
+ \ \"40.80.180.96/28\",\r\n \"40.85.168.201/32\",\r\n \"40.89.129.151/32\",\r\n
+ \ \"40.89.132.62/32\",\r\n \"40.89.137.16/32\",\r\n \"40.89.157.7/32\",\r\n
+ \ \"40.114.77.89/32\",\r\n \"40.114.85.4/32\",\r\n \"40.118.103.191/32\",\r\n
+ \ \"40.120.8.32/28\",\r\n \"40.120.64.48/28\",\r\n \"40.120.75.48/29\",\r\n
+ \ \"51.11.97.0/31\",\r\n \"51.11.97.64/28\",\r\n \"51.12.99.208/29\",\r\n
+ \ \"51.12.203.72/29\",\r\n \"51.12.227.192/29\",\r\n \"51.12.235.192/29\",\r\n
+ \ \"51.104.8.240/29\",\r\n \"51.104.9.96/31\",\r\n \"51.105.67.168/29\",\r\n
+ \ \"51.105.69.80/31\",\r\n \"51.105.75.152/29\",\r\n \"51.105.77.48/31\",\r\n
+ \ \"51.105.77.80/28\",\r\n \"51.107.60.80/29\",\r\n \"51.107.60.92/31\",\r\n
+ \ \"51.107.60.208/28\",\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"51.116.60.80/29\",\r\n \"51.116.60.224/28\",\r\n
+ \ \"51.116.156.160/29\",\r\n \"51.116.158.56/31\",\r\n \"51.116.158.80/28\",\r\n
+ \ \"51.116.243.144/29\",\r\n \"51.116.243.216/31\",\r\n \"51.116.251.32/29\",\r\n
+ \ \"51.116.251.184/31\",\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"51.120.220.80/29\",\r\n
+ \ \"51.120.220.92/31\",\r\n \"51.120.220.176/28\",\r\n \"51.140.6.15/32\",\r\n
+ \ \"51.140.51.174/32\",\r\n \"51.140.212.104/29\",\r\n \"52.138.90.52/31\",\r\n
+ \ \"52.138.92.80/29\",\r\n \"52.138.227.136/29\",\r\n \"52.138.229.64/31\",\r\n
+ \ \"52.138.229.80/28\",\r\n \"52.147.97.0/31\",\r\n \"52.151.62.99/32\",\r\n
+ \ \"52.161.14.192/32\",\r\n \"52.161.28.108/32\",\r\n \"52.162.110.240/29\",\r\n
+ \ \"52.162.111.128/31\",\r\n \"52.163.228.23/32\",\r\n \"52.167.107.72/29\",\r\n
+ \ \"52.167.109.64/31\",\r\n \"52.169.105.82/32\",\r\n \"52.172.153.216/32\",\r\n
+ \ \"52.172.155.142/32\",\r\n \"52.178.223.62/32\",\r\n \"52.180.166.238/32\",\r\n
+ \ \"52.180.179.25/32\",\r\n \"52.182.139.56/29\",\r\n \"52.182.141.12/31\",\r\n
+ \ \"52.182.141.144/28\",\r\n \"52.183.5.195/32\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"52.231.148.120/29\",\r\n \"52.231.148.208/28\",\r\n \"52.236.186.240/29\",\r\n
+ \ \"52.236.189.72/31\",\r\n \"52.240.241.64/28\",\r\n \"52.246.155.152/29\",\r\n
+ \ \"52.246.157.0/31\",\r\n \"65.52.250.6/31\",\r\n \"65.52.252.120/29\",\r\n
+ \ \"102.37.64.32/28\",\r\n \"102.133.26.6/31\",\r\n \"102.133.28.144/29\",\r\n
+ \ \"102.133.124.16/29\",\r\n \"102.133.156.112/29\",\r\n
+ \ \"102.133.251.176/29\",\r\n \"102.133.253.32/28\",\r\n
+ \ \"104.41.9.106/32\",\r\n \"104.41.178.182/32\",\r\n \"104.208.163.218/32\",\r\n
+ \ \"104.209.137.89/32\",\r\n \"104.210.80.208/32\",\r\n \"104.210.158.71/32\",\r\n
+ \ \"104.214.164.32/28\",\r\n \"104.215.254.56/32\",\r\n \"168.61.140.48/28\",\r\n
+ \ \"191.232.170.251/32\",\r\n \"191.233.51.144/29\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1000:4:402::2c0/124\",\r\n \"2603:1000:104:402::2c0/124\",\r\n
+ \ \"2603:1000:104:802::200/124\",\r\n \"2603:1000:104:c02::200/124\",\r\n
+ \ \"2603:1010:6:402::2c0/124\",\r\n \"2603:1010:6:802::200/124\",\r\n
+ \ \"2603:1010:6:c02::200/124\",\r\n \"2603:1010:101:402::2c0/124\",\r\n
+ \ \"2603:1010:304:402::2c0/124\",\r\n \"2603:1010:404:402::2c0/124\",\r\n
+ \ \"2603:1020:5:402::2c0/124\",\r\n \"2603:1020:5:802::200/124\",\r\n
+ \ \"2603:1020:5:c02::200/124\",\r\n \"2603:1020:206:402::2c0/124\",\r\n
+ \ \"2603:1020:206:802::200/124\",\r\n \"2603:1020:206:c02::200/124\",\r\n
+ \ \"2603:1020:305:402::2c0/124\",\r\n \"2603:1020:405:402::2c0/124\",\r\n
+ \ \"2603:1020:605:402::2c0/124\",\r\n \"2603:1020:705:402::2c0/124\",\r\n
+ \ \"2603:1020:705:802::200/124\",\r\n \"2603:1020:705:c02::200/124\",\r\n
+ \ \"2603:1020:805:402::2c0/124\",\r\n \"2603:1020:805:802::200/124\",\r\n
+ \ \"2603:1020:805:c02::200/124\",\r\n \"2603:1020:905:402::2c0/124\",\r\n
+ \ \"2603:1020:a04:402::2c0/124\",\r\n \"2603:1020:a04:802::200/124\",\r\n
+ \ \"2603:1020:a04:c02::200/124\",\r\n \"2603:1020:b04:402::2c0/124\",\r\n
+ \ \"2603:1020:c04:402::2c0/124\",\r\n \"2603:1020:c04:802::200/124\",\r\n
+ \ \"2603:1020:c04:c02::200/124\",\r\n \"2603:1020:d04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:402::2c0/124\",\r\n \"2603:1020:e04:802::200/124\",\r\n
+ \ \"2603:1020:e04:c02::200/124\",\r\n \"2603:1020:f04:402::2c0/124\",\r\n
+ \ \"2603:1020:1004:400::1c0/124\",\r\n \"2603:1020:1004:400::2e0/124\",\r\n
+ \ \"2603:1020:1004:400::3a0/124\",\r\n \"2603:1020:1004:800::3d0/124\",\r\n
+ \ \"2603:1020:1004:800::3f0/124\",\r\n \"2603:1020:1104:400::2c0/124\",\r\n
+ \ \"2603:1030:f:400::ac0/124\",\r\n \"2603:1030:10:402::2c0/124\",\r\n
+ \ \"2603:1030:10:802::200/124\",\r\n \"2603:1030:10:c02::200/124\",\r\n
+ \ \"2603:1030:104:402::2c0/124\",\r\n \"2603:1030:107:400::240/124\",\r\n
+ \ \"2603:1030:210:402::2c0/124\",\r\n \"2603:1030:210:802::200/124\",\r\n
+ \ \"2603:1030:210:c02::200/124\",\r\n \"2603:1030:40b:400::ac0/124\",\r\n
+ \ \"2603:1030:40b:800::200/124\",\r\n \"2603:1030:40b:c00::200/124\",\r\n
+ \ \"2603:1030:40c:402::2c0/124\",\r\n \"2603:1030:40c:802::200/124\",\r\n
+ \ \"2603:1030:40c:c02::200/124\",\r\n \"2603:1030:504:402::1c0/124\",\r\n
+ \ \"2603:1030:504:402::2e0/124\",\r\n \"2603:1030:504:402::3a0/124\",\r\n
+ \ \"2603:1030:504:402::440/124\",\r\n \"2603:1030:504:802::3c0/123\",\r\n
+ \ \"2603:1030:504:802::3f0/124\",\r\n \"2603:1030:608:402::2c0/124\",\r\n
+ \ \"2603:1030:807:402::2c0/124\",\r\n \"2603:1030:807:802::200/124\",\r\n
+ \ \"2603:1030:807:c02::200/124\",\r\n \"2603:1030:a07:402::940/124\",\r\n
+ \ \"2603:1030:b04:402::2c0/124\",\r\n \"2603:1030:c06:400::ac0/124\",\r\n
+ \ \"2603:1030:c06:802::200/124\",\r\n \"2603:1030:c06:c02::200/124\",\r\n
+ \ \"2603:1030:f05:402::2c0/124\",\r\n \"2603:1030:f05:802::200/124\",\r\n
+ \ \"2603:1030:f05:c02::200/124\",\r\n \"2603:1030:1005:402::2c0/124\",\r\n
+ \ \"2603:1040:5:402::2c0/124\",\r\n \"2603:1040:5:802::200/124\",\r\n
+ \ \"2603:1040:5:c02::200/124\",\r\n \"2603:1040:207:402::2c0/124\",\r\n
+ \ \"2603:1040:407:402::2c0/124\",\r\n \"2603:1040:407:802::200/124\",\r\n
+ \ \"2603:1040:407:c02::200/124\",\r\n \"2603:1040:606:402::2c0/124\",\r\n
+ \ \"2603:1040:806:402::2c0/124\",\r\n \"2603:1040:904:402::2c0/124\",\r\n
+ \ \"2603:1040:904:802::200/124\",\r\n \"2603:1040:904:c02::200/124\",\r\n
+ \ \"2603:1040:a06:402::2c0/124\",\r\n \"2603:1040:a06:802::200/124\",\r\n
+ \ \"2603:1040:a06:c02::200/124\",\r\n \"2603:1040:b04:402::2c0/124\",\r\n
+ \ \"2603:1040:c06:402::2c0/124\",\r\n \"2603:1040:d04:400::1c0/124\",\r\n
+ \ \"2603:1040:d04:400::2e0/124\",\r\n \"2603:1040:d04:400::3a0/124\",\r\n
+ \ \"2603:1040:d04:800::3d0/124\",\r\n \"2603:1040:d04:800::3f0/124\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\",\r\n \"2603:1040:1104:400::2c0/124\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\",\r\n \"2603:1050:403:400::1e0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.BrazilSouth\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"104.41.9.106/32\",\r\n \"191.232.170.251/32\",\r\n
+ \ \"191.233.203.30/31\",\r\n \"191.233.205.64/29\",\r\n \"191.234.147.192/29\",\r\n
+ \ \"191.234.149.48/28\",\r\n \"191.234.149.136/31\",\r\n
+ \ \"191.234.155.192/29\",\r\n \"191.234.157.40/31\",\r\n
+ \ \"2603:1050:6:402::2c0/124\",\r\n \"2603:1050:6:802::200/124\",\r\n
+ \ \"2603:1050:6:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.KoreaCentral\",\r\n \"id\":
+ \"GuestAndHybridManagement.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.44.27.112/29\",\r\n \"20.44.29.48/31\",\r\n
+ \ \"20.44.29.96/28\",\r\n \"20.194.66.24/29\",\r\n \"52.231.18.46/31\",\r\n
+ \ \"52.231.20.0/29\",\r\n \"52.231.64.18/32\",\r\n \"52.231.69.100/32\",\r\n
+ \ \"2603:1040:f05:402::2c0/124\",\r\n \"2603:1040:f05:802::200/124\",\r\n
+ \ \"2603:1040:f05:c02::200/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"GuestAndHybridManagement.NorwayEast\",\r\n \"id\":
+ \"GuestAndHybridManagement.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureAutomation\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.100.80/29\",\r\n \"51.120.100.92/31\",\r\n
+ \ \"51.120.107.192/29\",\r\n \"51.120.109.24/31\",\r\n \"51.120.109.48/28\",\r\n
+ \ \"51.120.211.192/29\",\r\n \"51.120.213.24/31\",\r\n \"2603:1020:e04:402::2c0/124\",\r\n
+ \ \"2603:1020:e04:802::200/124\",\r\n \"2603:1020:e04:c02::200/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.NorwayWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.220.80/29\",\r\n \"51.120.220.92/31\",\r\n
+ \ \"51.120.220.176/28\",\r\n \"2603:1020:f04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n
+ \ \"id\": \"GuestAndHybridManagement.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureAutomation\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.72/29\",\r\n \"51.107.156.132/31\",\r\n
+ \ \"51.107.156.208/28\",\r\n \"2603:1020:b04:402::2c0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight\",\r\n
+ \ \"id\": \"HDInsight\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.66.141.144/29\",\r\n
+ \ \"13.67.9.152/29\",\r\n \"13.69.65.8/29\",\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.70.73.96/29\",\r\n \"13.71.172.240/29\",\r\n \"13.71.196.48/29\",\r\n
+ \ \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n \"13.74.153.132/32\",\r\n
+ \ \"13.75.38.112/29\",\r\n \"13.75.152.195/32\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n
+ \ \"13.77.52.8/29\",\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n
+ \ \"13.82.225.233/32\",\r\n \"13.86.218.240/29\",\r\n \"13.87.58.32/29\",\r\n
+ \ \"13.87.124.32/29\",\r\n \"13.89.171.120/29\",\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.36.123.88/29\",\r\n \"20.37.68.40/29\",\r\n
+ \ \"20.37.76.96/29\",\r\n \"20.37.228.0/29\",\r\n \"20.38.139.88/29\",\r\n
+ \ \"20.39.15.48/29\",\r\n \"20.40.207.144/29\",\r\n \"20.41.69.32/29\",\r\n
+ \ \"20.41.197.120/29\",\r\n \"20.43.45.224/29\",\r\n \"20.43.120.8/29\",\r\n
+ \ \"20.44.4.64/29\",\r\n \"20.44.16.8/29\",\r\n \"20.44.26.240/29\",\r\n
+ \ \"20.45.115.128/29\",\r\n \"20.45.198.80/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"20.49.114.56/29\",\r\n \"20.49.126.128/29\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"20.61.96.160/29\",\r\n \"20.72.20.40/29\",\r\n
+ \ \"20.150.167.176/29\",\r\n \"20.150.172.232/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"20.189.111.192/29\",\r\n \"20.191.160.0/29\",\r\n \"20.192.48.216/29\",\r\n
+ \ \"20.192.235.248/29\",\r\n \"20.193.194.16/29\",\r\n \"20.193.203.200/29\",\r\n
+ \ \"23.98.107.192/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"40.64.134.160/29\",\r\n \"40.67.50.248/29\",\r\n
+ \ \"40.67.60.64/29\",\r\n \"40.69.107.8/29\",\r\n \"40.71.13.160/29\",\r\n
+ \ \"40.71.175.99/32\",\r\n \"40.74.101.192/29\",\r\n \"40.74.125.69/32\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.78.195.8/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.79.180.16/29\",\r\n \"40.79.187.0/29\",\r\n
+ \ \"40.80.63.144/29\",\r\n \"40.80.172.120/29\",\r\n \"40.89.22.88/29\",\r\n
+ \ \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n \"40.89.157.135/32\",\r\n
+ \ \"51.12.17.48/29\",\r\n \"51.12.25.48/29\",\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.105.92.56/29\",\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"51.116.49.168/29\",\r\n \"51.116.60.48/29\",\r\n \"51.116.145.168/29\",\r\n
+ \ \"51.116.156.48/29\",\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"51.120.220.48/29\",\r\n \"51.120.228.40/29\",\r\n \"51.137.166.32/29\",\r\n
+ \ \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"52.136.52.40/29\",\r\n
+ \ \"52.140.108.248/29\",\r\n \"52.146.79.136/29\",\r\n \"52.146.130.184/29\",\r\n
+ \ \"52.150.154.192/29\",\r\n \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n
+ \ \"52.162.110.160/29\",\r\n \"52.164.210.96/32\",\r\n \"52.166.243.90/32\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"52.175.38.134/32\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"52.228.37.66/32\",\r\n
+ \ \"52.228.45.222/32\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"52.231.36.209/32\",\r\n \"52.231.39.142/32\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\",\r\n \"65.52.252.96/29\",\r\n
+ \ \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n \"102.133.124.0/29\",\r\n
+ \ \"102.133.219.176/29\",\r\n \"104.46.176.168/29\",\r\n
+ \ \"104.210.84.115/32\",\r\n \"104.211.216.210/32\",\r\n
+ \ \"104.211.223.67/32\",\r\n \"138.91.29.150/32\",\r\n \"138.91.141.162/32\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"168.61.48.131/32\",\r\n
+ \ \"168.61.49.99/32\",\r\n \"191.233.10.184/29\",\r\n \"191.233.51.152/29\",\r\n
+ \ \"191.233.204.240/29\",\r\n \"191.234.138.128/29\",\r\n
+ \ \"191.235.84.104/32\",\r\n \"191.235.87.113/32\",\r\n \"2603:1000:4:402::320/124\",\r\n
+ \ \"2603:1000:104:402::320/124\",\r\n \"2603:1010:6:402::320/124\",\r\n
+ \ \"2603:1010:101:402::320/124\",\r\n \"2603:1010:304:402::320/124\",\r\n
+ \ \"2603:1010:404:402::320/124\",\r\n \"2603:1020:5:402::320/124\",\r\n
+ \ \"2603:1020:206:402::320/124\",\r\n \"2603:1020:305:402::320/124\",\r\n
+ \ \"2603:1020:405:402::320/124\",\r\n \"2603:1020:605:402::320/124\",\r\n
+ \ \"2603:1020:705:402::320/124\",\r\n \"2603:1020:805:402::320/124\",\r\n
+ \ \"2603:1020:905:402::320/124\",\r\n \"2603:1020:a04:402::320/124\",\r\n
+ \ \"2603:1020:b04:402::320/124\",\r\n \"2603:1020:c04:402::320/124\",\r\n
+ \ \"2603:1020:d04:402::320/124\",\r\n \"2603:1020:e04::790/124\",\r\n
+ \ \"2603:1020:e04:402::320/124\",\r\n \"2603:1020:f04:402::320/124\",\r\n
+ \ \"2603:1020:1004:1::1e0/124\",\r\n \"2603:1020:1104:1::140/124\",\r\n
+ \ \"2603:1030:f:2::4b0/124\",\r\n \"2603:1030:f:400::b20/124\",\r\n
+ \ \"2603:1030:10:402::320/124\",\r\n \"2603:1030:104:402::320/124\",\r\n
+ \ \"2603:1030:107::720/124\",\r\n \"2603:1030:210:402::320/124\",\r\n
+ \ \"2603:1030:40b:400::b20/124\",\r\n \"2603:1030:40c:402::320/124\",\r\n
+ \ \"2603:1030:504::1e0/124\",\r\n \"2603:1030:608:402::320/124\",\r\n
+ \ \"2603:1030:807:402::320/124\",\r\n \"2603:1030:a07:402::9a0/124\",\r\n
+ \ \"2603:1030:b04:402::320/124\",\r\n \"2603:1030:c06:400::b20/124\",\r\n
+ \ \"2603:1030:f05:402::320/124\",\r\n \"2603:1030:1005:402::320/124\",\r\n
+ \ \"2603:1040:5:402::320/124\",\r\n \"2603:1040:207:402::320/124\",\r\n
+ \ \"2603:1040:407:402::320/124\",\r\n \"2603:1040:606:402::320/124\",\r\n
+ \ \"2603:1040:806:402::320/124\",\r\n \"2603:1040:904:402::320/124\",\r\n
+ \ \"2603:1040:a06:402::320/124\",\r\n \"2603:1040:b04:402::320/124\",\r\n
+ \ \"2603:1040:c06:402::320/124\",\r\n \"2603:1040:d04:1::1e0/124\",\r\n
+ \ \"2603:1040:f05::790/124\",\r\n \"2603:1040:f05:402::320/124\",\r\n
+ \ \"2603:1040:1104:1::140/124\",\r\n \"2603:1050:6:402::320/124\",\r\n
+ \ \"2603:1050:403:400::420/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.AustraliaCentral\",\r\n \"id\":
+ \"HDInsight.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.36.36.33/32\",\r\n
+ \ \"20.36.36.196/32\",\r\n \"20.37.228.0/29\",\r\n \"2603:1010:304:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaEast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.73.96/29\",\r\n \"13.75.152.195/32\",\r\n
+ \ \"20.53.40.120/29\",\r\n \"104.210.84.115/32\",\r\n \"2603:1010:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.AustraliaSoutheast\",\r\n
+ \ \"id\": \"HDInsight.AustraliaSoutheast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.2.56/32\",\r\n \"13.77.2.94/32\",\r\n \"13.77.52.8/29\",\r\n
+ \ \"104.46.176.168/29\",\r\n \"2603:1010:101:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.BrazilSouth\",\r\n
+ \ \"id\": \"HDInsight.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"191.233.204.240/29\",\r\n
+ \ \"191.234.138.128/29\",\r\n \"191.235.84.104/32\",\r\n
+ \ \"191.235.87.113/32\",\r\n \"2603:1050:6:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaCentral\",\r\n
+ \ \"id\": \"HDInsight.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.172.240/29\",\r\n \"20.48.192.24/29\",\r\n
+ \ \"52.228.37.66/32\",\r\n \"52.228.45.222/32\",\r\n \"2603:1030:f05:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CanadaEast\",\r\n
+ \ \"id\": \"HDInsight.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.69.107.8/29\",\r\n
+ \ \"40.89.22.88/29\",\r\n \"52.229.123.172/32\",\r\n \"52.229.127.96/32\",\r\n
+ \ \"2603:1030:1005:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.CentralIndia\",\r\n \"id\": \"HDInsight.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.120.8/29\",\r\n \"52.140.108.248/29\",\r\n
+ \ \"52.172.152.49/32\",\r\n \"52.172.153.209/32\",\r\n \"2603:1040:a06:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUS\",\r\n
+ \ \"id\": \"HDInsight.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.89.171.120/29\",\r\n
+ \ \"20.40.207.144/29\",\r\n \"2603:1030:10:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.CentralUSEUAP\",\r\n
+ \ \"id\": \"HDInsight.CentralUSEUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.198.80/29\",\r\n \"40.78.202.136/29\",\r\n
+ \ \"52.180.183.49/32\",\r\n \"52.180.183.58/32\",\r\n \"2603:1030:f:2::4b0/124\",\r\n
+ \ \"2603:1030:f:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.EastAsia\",\r\n \"id\": \"HDInsight.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.38.112/29\",\r\n \"20.189.111.192/29\",\r\n
+ \ \"23.102.235.122/32\",\r\n \"52.175.38.134/32\",\r\n \"2603:1040:207:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS\",\r\n
+ \ \"id\": \"HDInsight.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.82.225.233/32\",\r\n
+ \ \"40.71.13.160/29\",\r\n \"40.71.175.99/32\",\r\n \"52.146.79.136/29\",\r\n
+ \ \"168.61.48.131/32\",\r\n \"168.61.49.99/32\",\r\n \"2603:1030:210:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2\",\r\n
+ \ \"id\": \"HDInsight.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.44.16.8/29\",\r\n
+ \ \"20.49.102.48/29\",\r\n \"2603:1030:40c:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.EastUS2EUAP\",\r\n
+ \ \"id\": \"HDInsight.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.39.15.48/29\",\r\n
+ \ \"40.74.146.88/29\",\r\n \"40.89.65.220/32\",\r\n \"40.89.68.134/32\",\r\n
+ \ \"2603:1030:40b:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.FranceCentral\",\r\n \"id\": \"HDInsight.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.45.224/29\",\r\n \"20.188.39.64/32\",\r\n
+ \ \"40.79.130.248/29\",\r\n \"40.89.157.135/32\",\r\n \"2603:1020:805:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.FranceSouth\",\r\n
+ \ \"id\": \"HDInsight.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.79.180.16/29\",\r\n
+ \ \"51.105.92.56/29\",\r\n \"2603:1020:905:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyNorth\",\r\n
+ \ \"id\": \"HDInsight.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.116.49.168/29\",\r\n
+ \ \"51.116.60.48/29\",\r\n \"2603:1020:d04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.GermanyWestCentral\",\r\n
+ \ \"id\": \"HDInsight.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.145.168/29\",\r\n \"51.116.156.48/29\",\r\n
+ \ \"2603:1020:c04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.JapanEast\",\r\n \"id\": \"HDInsight.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.89.60/32\",\r\n \"13.78.125.90/32\",\r\n \"20.191.160.0/29\",\r\n
+ \ \"40.79.187.0/29\",\r\n \"2603:1040:407:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.JapanWest\",\r\n
+ \ \"id\": \"HDInsight.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"40.74.101.192/29\",\r\n
+ \ \"40.74.125.69/32\",\r\n \"40.80.63.144/29\",\r\n \"138.91.29.150/32\",\r\n
+ \ \"2603:1040:606:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaCentral\",\r\n \"id\": \"HDInsight.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.69.32/29\",\r\n \"20.44.26.240/29\",\r\n \"52.231.36.209/32\",\r\n
+ \ \"52.231.39.142/32\",\r\n \"2603:1040:f05::790/124\",\r\n
+ \ \"2603:1040:f05:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.KoreaSouth\",\r\n \"id\": \"HDInsight.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"40.80.172.120/29\",\r\n \"52.231.147.24/29\",\r\n
+ \ \"52.231.203.16/32\",\r\n \"52.231.205.214/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthCentralUS\",\r\n
+ \ \"id\": \"HDInsight.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.49.114.56/29\",\r\n \"52.162.110.160/29\",\r\n
+ \ \"157.55.213.99/32\",\r\n \"157.56.8.38/32\",\r\n \"2603:1030:608:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorthEurope\",\r\n
+ \ \"id\": \"HDInsight.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.229.72/29\",\r\n
+ \ \"13.74.153.132/32\",\r\n \"52.146.130.184/29\",\r\n \"52.164.210.96/32\",\r\n
+ \ \"2603:1020:5:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.NorwayEast\",\r\n \"id\": \"HDInsight.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.43.88/29\",\r\n \"51.120.100.48/29\",\r\n
+ \ \"2603:1020:e04::790/124\",\r\n \"2603:1020:e04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.NorwayWest\",\r\n
+ \ \"id\": \"HDInsight.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.120.220.48/29\",\r\n
+ \ \"51.120.228.40/29\",\r\n \"2603:1020:f04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthAfricaNorth\",\r\n
+ \ \"id\": \"HDInsight.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.124.0/29\",\r\n \"102.133.219.176/29\",\r\n
+ \ \"2603:1000:104:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthAfricaWest\",\r\n \"id\": \"HDInsight.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.28.80/29\",\r\n \"102.133.60.32/29\",\r\n
+ \ \"2603:1000:4:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SouthCentralUS\",\r\n \"id\": \"HDInsight.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.240.8/29\",\r\n \"13.73.254.192/29\",\r\n
+ \ \"2603:1030:807:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SoutheastAsia\",\r\n \"id\": \"HDInsight.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.9.152/29\",\r\n \"13.76.136.249/32\",\r\n
+ \ \"13.76.245.160/32\",\r\n \"23.98.107.192/29\",\r\n \"2603:1040:5:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SouthIndia\",\r\n
+ \ \"id\": \"HDInsight.SouthIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.41.197.120/29\",\r\n
+ \ \"40.78.195.8/29\",\r\n \"104.211.216.210/32\",\r\n \"104.211.223.67/32\",\r\n
+ \ \"2603:1040:c06:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.SwitzerlandNorth\",\r\n \"id\":
+ \"HDInsight.SwitzerlandNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.107.52.208/29\",\r\n
+ \ \"51.107.60.48/29\",\r\n \"2603:1020:a04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.SwitzerlandWest\",\r\n
+ \ \"id\": \"HDInsight.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.148.24/29\",\r\n \"51.107.156.56/29\",\r\n
+ \ \"2603:1020:b04:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UAECentral\",\r\n \"id\": \"HDInsight.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.68.40/29\",\r\n \"20.37.76.96/29\",\r\n \"2603:1040:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UAENorth\",\r\n
+ \ \"id\": \"HDInsight.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"20.38.139.88/29\",\r\n
+ \ \"65.52.252.96/29\",\r\n \"2603:1040:904:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.UKNorth\",\r\n
+ \ \"id\": \"HDInsight.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.87.124.32/29\",\r\n
+ \ \"2603:1020:305:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKSouth\",\r\n \"id\": \"HDInsight.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"51.104.8.96/29\",\r\n
+ \ \"51.104.31.56/29\",\r\n \"51.140.47.39/32\",\r\n \"51.140.52.16/32\",\r\n
+ \ \"2603:1020:705:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.UKWest\",\r\n \"id\": \"HDInsight.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"51.137.166.32/29\",\r\n \"51.140.211.24/29\",\r\n
+ \ \"51.141.7.20/32\",\r\n \"51.141.13.110/32\",\r\n \"2603:1020:605:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestCentralUS\",\r\n
+ \ \"id\": \"HDInsight.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.196.48/29\",\r\n \"52.150.154.192/29\",\r\n
+ \ \"52.161.10.167/32\",\r\n \"52.161.23.15/32\",\r\n \"2603:1030:b04:402::320/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestEurope\",\r\n
+ \ \"id\": \"HDInsight.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.69.65.8/29\",\r\n
+ \ \"20.61.96.160/29\",\r\n \"52.166.243.90/32\",\r\n \"52.174.36.244/32\",\r\n
+ \ \"2603:1020:206:402::320/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"HDInsight.WestUS\",\r\n \"id\": \"HDInsight.WestUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"HDInsight\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.254.98/32\",\r\n \"13.86.218.240/29\",\r\n
+ \ \"20.49.126.128/29\",\r\n \"23.99.5.239/32\",\r\n \"23.101.196.19/32\",\r\n
+ \ \"138.91.141.162/32\",\r\n \"2603:1030:a07:402::9a0/124\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"HDInsight.WestUS2\",\r\n
+ \ \"id\": \"HDInsight.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"HDInsight\",\r\n \"addressPrefixes\": [\r\n \"13.66.141.144/29\",\r\n
+ \ \"40.64.134.160/29\",\r\n \"52.175.211.210/32\",\r\n \"52.175.222.222/32\",\r\n
+ \ \"2603:1030:c06:400::b20/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps\",\r\n \"id\": \"LogicApps\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.82.17/32\",\r\n \"13.65.82.190/32\",\r\n
+ \ \"13.65.86.56/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.52.232/32\",\r\n
+ \ \"13.66.128.68/32\",\r\n \"13.66.201.169/32\",\r\n \"13.66.210.167/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.66.246.219/32\",\r\n \"13.67.13.224/27\",\r\n
+ \ \"13.67.91.135/32\",\r\n \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n
+ \ \"13.67.236.76/32\",\r\n \"13.67.236.125/32\",\r\n \"13.69.71.160/27\",\r\n
+ \ \"13.69.109.144/28\",\r\n \"13.69.231.160/27\",\r\n \"13.69.233.16/28\",\r\n
+ \ \"13.70.78.192/27\",\r\n \"13.70.159.205/32\",\r\n \"13.71.146.140/32\",\r\n
+ \ \"13.71.158.3/32\",\r\n \"13.71.158.120/32\",\r\n \"13.71.184.150/32\",\r\n
+ \ \"13.71.186.1/32\",\r\n \"13.71.199.128/27\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.4.207/32\",\r\n \"13.73.114.207/32\",\r\n \"13.73.115.153/32\",\r\n
+ \ \"13.73.244.144/28\",\r\n \"13.73.244.160/27\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.94.173/32\",\r\n \"13.75.149.4/32\",\r\n \"13.75.153.66/32\",\r\n
+ \ \"13.76.4.194/32\",\r\n \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n
+ \ \"13.77.3.139/32\",\r\n \"13.77.53.224/27\",\r\n \"13.77.55.128/28\",\r\n
+ \ \"13.77.56.167/32\",\r\n \"13.77.58.136/32\",\r\n \"13.77.149.159/32\",\r\n
+ \ \"13.77.152.21/32\",\r\n \"13.78.18.168/32\",\r\n \"13.78.20.232/32\",\r\n
+ \ \"13.78.21.155/32\",\r\n \"13.78.35.229/32\",\r\n \"13.78.42.223/32\",\r\n
+ \ \"13.78.43.164/32\",\r\n \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n
+ \ \"13.78.111.160/27\",\r\n \"13.78.129.20/32\",\r\n \"13.78.137.179/32\",\r\n
+ \ \"13.78.137.247/32\",\r\n \"13.78.141.75/32\",\r\n \"13.78.148.140/32\",\r\n
+ \ \"13.78.151.161/32\",\r\n \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n
+ \ \"13.84.43.45/32\",\r\n \"13.84.159.168/32\",\r\n \"13.85.79.155/32\",\r\n
+ \ \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.58.160/27\",\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n \"13.91.252.184/32\",\r\n
+ \ \"13.92.98.111/32\",\r\n \"13.95.147.65/32\",\r\n \"13.95.155.53/32\",\r\n
+ \ \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n \"20.36.117.96/27\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.37.76.224/27\",\r\n
+ \ \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n \"20.38.149.144/28\",\r\n
+ \ \"20.38.149.160/27\",\r\n \"20.42.64.48/28\",\r\n \"20.42.72.160/27\",\r\n
+ \ \"20.43.121.192/27\",\r\n \"20.43.121.224/28\",\r\n \"20.44.4.176/28\",\r\n
+ \ \"20.44.4.192/27\",\r\n \"20.44.17.224/27\",\r\n \"20.45.64.29/32\",\r\n
+ \ \"20.45.64.87/32\",\r\n \"20.45.67.134/31\",\r\n \"20.45.67.170/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.72.54/32\",\r\n \"20.45.72.72/32\",\r\n
+ \ \"20.45.75.193/32\",\r\n \"20.45.75.200/32\",\r\n \"20.45.75.236/32\",\r\n
+ \ \"20.45.79.239/32\",\r\n \"20.72.30.160/28\",\r\n \"20.72.30.192/27\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.150.173.192/27\",\r\n \"20.150.181.32/27\",\r\n
+ \ \"20.188.33.169/32\",\r\n \"20.188.39.105/32\",\r\n \"20.192.184.0/27\",\r\n
+ \ \"20.192.238.128/27\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"20.193.206.128/27\",\r\n \"23.96.200.77/32\",\r\n \"23.96.200.227/32\",\r\n
+ \ \"23.96.203.46/32\",\r\n \"23.96.210.49/32\",\r\n \"23.96.212.28/32\",\r\n
+ \ \"23.96.253.219/32\",\r\n \"23.97.68.172/32\",\r\n \"23.97.210.126/32\",\r\n
+ \ \"23.97.211.179/32\",\r\n \"23.97.218.130/32\",\r\n \"23.99.125.99/32\",\r\n
+ \ \"23.100.29.190/32\",\r\n \"23.100.82.16/32\",\r\n \"23.100.86.139/32\",\r\n
+ \ \"23.100.87.24/32\",\r\n \"23.100.87.56/32\",\r\n \"23.100.124.84/32\",\r\n
+ \ \"23.100.127.172/32\",\r\n \"23.101.132.208/32\",\r\n \"23.101.136.201/32\",\r\n
+ \ \"23.101.139.153/32\",\r\n \"23.101.183.225/32\",\r\n \"23.101.191.106/32\",\r\n
+ \ \"23.102.70.174/32\",\r\n \"40.67.60.176/28\",\r\n \"40.67.60.192/27\",\r\n
+ \ \"40.68.209.23/32\",\r\n \"40.68.222.65/32\",\r\n \"40.69.110.192/27\",\r\n
+ \ \"40.69.110.224/28\",\r\n \"40.70.26.154/32\",\r\n \"40.70.27.236/32\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.70.29.214/32\",\r\n \"40.70.131.151/32\",\r\n
+ \ \"40.74.64.207/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.68.85/32\",\r\n
+ \ \"40.74.74.21/32\",\r\n \"40.74.76.213/32\",\r\n \"40.74.77.205/32\",\r\n
+ \ \"40.74.81.13/32\",\r\n \"40.74.85.215/32\",\r\n \"40.74.131.151/32\",\r\n
+ \ \"40.74.132.29/32\",\r\n \"40.74.136.23/32\",\r\n \"40.74.140.4/32\",\r\n
+ \ \"40.74.140.162/32\",\r\n \"40.74.140.173/32\",\r\n \"40.74.142.133/32\",\r\n
+ \ \"40.74.143.215/32\",\r\n \"40.74.149.96/27\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.204.224/27\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"40.78.245.144/28\",\r\n \"40.78.245.160/27\",\r\n \"40.79.44.7/32\",\r\n
+ \ \"40.79.139.144/28\",\r\n \"40.79.139.160/27\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.160/27\",\r\n \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n
+ \ \"40.80.180.16/28\",\r\n \"40.80.180.32/27\",\r\n \"40.83.73.39/32\",\r\n
+ \ \"40.83.75.165/32\",\r\n \"40.83.77.208/32\",\r\n \"40.83.98.194/32\",\r\n
+ \ \"40.83.100.69/32\",\r\n \"40.83.127.19/32\",\r\n \"40.83.164.80/32\",\r\n
+ \ \"40.84.25.234/32\",\r\n \"40.84.30.147/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n
+ \ \"40.85.250.212/32\",\r\n \"40.85.252.47/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.86.203.228/32\",\r\n \"40.86.216.241/32\",\r\n \"40.86.217.241/32\",\r\n
+ \ \"40.86.226.149/32\",\r\n \"40.86.228.93/32\",\r\n \"40.89.186.28/32\",\r\n
+ \ \"40.89.186.30/32\",\r\n \"40.89.188.169/32\",\r\n \"40.89.190.104/32\",\r\n
+ \ \"40.89.191.161/32\",\r\n \"40.112.90.39/32\",\r\n \"40.112.92.104/32\",\r\n
+ \ \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n \"40.113.3.202/32\",\r\n
+ \ \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n \"40.113.11.17/32\",\r\n
+ \ \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n \"40.113.20.202/32\",\r\n
+ \ \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n \"40.113.218.230/32\",\r\n
+ \ \"40.114.8.21/32\",\r\n \"40.114.12.31/32\",\r\n \"40.114.13.216/32\",\r\n
+ \ \"40.114.14.143/32\",\r\n \"40.114.40.186/32\",\r\n \"40.114.51.5/32\",\r\n
+ \ \"40.114.82.191/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"40.120.64.0/27\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"40.121.91.41/32\",\r\n \"40.122.41.236/32\",\r\n \"40.122.46.197/32\",\r\n
+ \ \"40.122.170.198/32\",\r\n \"40.126.227.199/32\",\r\n \"40.126.240.14/32\",\r\n
+ \ \"40.126.249.73/32\",\r\n \"40.126.252.33/32\",\r\n \"40.126.252.85/32\",\r\n
+ \ \"40.126.252.107/32\",\r\n \"40.127.80.231/32\",\r\n \"40.127.83.170/32\",\r\n
+ \ \"40.127.84.38/32\",\r\n \"40.127.86.12/32\",\r\n \"40.127.91.18/32\",\r\n
+ \ \"40.127.93.92/32\",\r\n \"51.11.97.16/28\",\r\n \"51.11.97.32/27\",\r\n
+ \ \"51.12.100.112/28\",\r\n \"51.12.102.160/27\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.12.204.192/27\",\r\n \"51.12.229.32/27\",\r\n \"51.104.9.112/28\",\r\n
+ \ \"51.105.69.96/27\",\r\n \"51.107.60.160/27\",\r\n \"51.107.60.192/28\",\r\n
+ \ \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.104/32\",\r\n
+ \ \"51.116.168.222/32\",\r\n \"51.116.171.49/32\",\r\n \"51.116.171.209/32\",\r\n
+ \ \"51.116.175.0/32\",\r\n \"51.116.175.17/32\",\r\n \"51.116.175.51/32\",\r\n
+ \ \"51.116.233.22/32\",\r\n \"51.116.233.33/32\",\r\n \"51.116.233.35/32\",\r\n
+ \ \"51.116.233.40/32\",\r\n \"51.116.233.87/32\",\r\n \"51.116.243.224/27\",\r\n
+ \ \"51.120.100.160/27\",\r\n \"51.120.109.32/28\",\r\n \"51.120.220.128/27\",\r\n
+ \ \"51.120.220.160/28\",\r\n \"51.140.28.225/32\",\r\n \"51.140.73.85/32\",\r\n
+ \ \"51.140.74.14/32\",\r\n \"51.140.78.44/32\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.137.190/32\",\r\n
+ \ \"51.140.142.28/32\",\r\n \"51.140.153.135/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.140.158.24/32\",\r\n \"51.141.45.238/32\",\r\n \"51.141.47.136/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.54.185/32\",\r\n \"51.141.112.112/32\",\r\n \"51.141.113.36/32\",\r\n
+ \ \"51.141.114.77/32\",\r\n \"51.141.118.119/32\",\r\n \"51.141.119.63/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"51.144.182.201/32\",\r\n
+ \ \"52.143.156.55/32\",\r\n \"52.143.158.203/32\",\r\n \"52.143.162.83/32\",\r\n
+ \ \"52.143.164.15/32\",\r\n \"52.143.164.80/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.147.97.32/27\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"52.161.8.128/32\",\r\n \"52.161.9.108/32\",\r\n \"52.161.18.218/32\",\r\n
+ \ \"52.161.19.82/32\",\r\n \"52.161.26.172/32\",\r\n \"52.161.27.190/32\",\r\n
+ \ \"52.162.111.144/28\",\r\n \"52.162.111.160/27\",\r\n \"52.162.208.216/32\",\r\n
+ \ \"52.162.213.231/32\",\r\n \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n
+ \ \"52.163.230.166/32\",\r\n \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n
+ \ \"52.169.220.174/32\",\r\n \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n
+ \ \"52.172.50.24/32\",\r\n \"52.172.51.140/32\",\r\n \"52.172.52.0/32\",\r\n
+ \ \"52.172.55.231/32\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n
+ \ \"52.175.33.254/32\",\r\n \"52.175.198.132/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"52.182.141.160/27\",\r\n \"52.183.29.132/32\",\r\n
+ \ \"52.183.30.10/32\",\r\n \"52.183.30.169/32\",\r\n \"52.183.39.67/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"52.187.226.96/32\",\r\n
+ \ \"52.187.226.139/32\",\r\n \"52.187.227.245/32\",\r\n \"52.187.229.130/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.187.231.184/32\",\r\n \"52.189.214.42/32\",\r\n
+ \ \"52.189.216.28/32\",\r\n \"52.189.220.75/32\",\r\n \"52.189.222.77/32\",\r\n
+ \ \"52.228.39.244/32\",\r\n \"52.229.120.45/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.229.126.25/32\",\r\n \"52.231.23.16/28\",\r\n \"52.231.23.32/27\",\r\n
+ \ \"52.232.128.155/32\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n
+ \ \"65.52.8.225/32\",\r\n \"65.52.9.64/32\",\r\n \"65.52.9.96/32\",\r\n
+ \ \"65.52.10.183/32\",\r\n \"65.52.60.5/32\",\r\n \"65.52.175.34/32\",\r\n
+ \ \"65.52.185.96/32\",\r\n \"65.52.185.218/32\",\r\n \"65.52.186.153/32\",\r\n
+ \ \"65.52.186.190/32\",\r\n \"65.52.186.225/32\",\r\n \"65.52.211.164/32\",\r\n
+ \ \"70.37.50.6/32\",\r\n \"70.37.54.122/32\",\r\n \"102.133.28.208/28\",\r\n
+ \ \"102.133.28.224/27\",\r\n \"102.133.72.37/32\",\r\n \"102.133.72.98/32\",\r\n
+ \ \"102.133.72.113/32\",\r\n \"102.133.72.132/32\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.179/32\",\r\n \"102.133.72.183/32\",\r\n
+ \ \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n \"102.133.75.169/32\",\r\n
+ \ \"102.133.75.191/32\",\r\n \"102.133.156.176/28\",\r\n
+ \ \"102.133.224.125/32\",\r\n \"102.133.226.199/32\",\r\n
+ \ \"102.133.227.103/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.6/32\",\r\n
+ \ \"102.133.228.9/32\",\r\n \"102.133.230.4/32\",\r\n \"102.133.230.82/32\",\r\n
+ \ \"102.133.231.9/32\",\r\n \"102.133.231.51/32\",\r\n \"102.133.231.117/32\",\r\n
+ \ \"102.133.231.188/32\",\r\n \"102.133.251.224/27\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.40.218.37/32\",\r\n
+ \ \"104.41.0.115/32\",\r\n \"104.41.33.103/32\",\r\n \"104.41.162.245/32\",\r\n
+ \ \"104.41.163.102/32\",\r\n \"104.41.168.76/32\",\r\n \"104.41.173.132/32\",\r\n
+ \ \"104.41.179.165/32\",\r\n \"104.41.181.59/32\",\r\n \"104.41.182.232/32\",\r\n
+ \ \"104.42.38.32/32\",\r\n \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n
+ \ \"104.42.236.93/32\",\r\n \"104.43.166.135/32\",\r\n \"104.43.243.39/32\",\r\n
+ \ \"104.45.9.52/32\",\r\n \"104.45.153.81/32\",\r\n \"104.46.32.99/32\",\r\n
+ \ \"104.46.34.93/32\",\r\n \"104.46.34.208/32\",\r\n \"104.46.39.63/32\",\r\n
+ \ \"104.46.42.167/32\",\r\n \"104.46.98.208/32\",\r\n \"104.46.106.158/32\",\r\n
+ \ \"104.47.138.214/32\",\r\n \"104.208.25.27/32\",\r\n \"104.208.140.40/32\",\r\n
+ \ \"104.208.155.200/32\",\r\n \"104.208.158.174/32\",\r\n
+ \ \"104.209.131.77/32\",\r\n \"104.209.133.254/32\",\r\n
+ \ \"104.209.134.133/32\",\r\n \"104.210.89.222/32\",\r\n
+ \ \"104.210.89.244/32\",\r\n \"104.210.90.241/32\",\r\n \"104.210.91.55/32\",\r\n
+ \ \"104.210.144.48/32\",\r\n \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n
+ \ \"104.211.74.145/32\",\r\n \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n
+ \ \"104.211.101.108/32\",\r\n \"104.211.102.62/32\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"104.211.225.152/32\",\r\n \"104.211.227.229/32\",\r\n
+ \ \"104.211.229.115/32\",\r\n \"104.211.230.126/32\",\r\n
+ \ \"104.211.230.129/32\",\r\n \"104.211.231.39/32\",\r\n
+ \ \"104.214.137.243/32\",\r\n \"104.214.161.64/27\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.88.156/32\",\r\n \"104.215.89.144/32\",\r\n
+ \ \"104.215.90.86/32\",\r\n \"104.215.90.189/32\",\r\n \"104.215.90.203/32\",\r\n
+ \ \"104.215.93.125/32\",\r\n \"104.215.176.31/32\",\r\n \"104.215.176.81/32\",\r\n
+ \ \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n \"104.215.179.133/32\",\r\n
+ \ \"104.215.180.203/32\",\r\n \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n
+ \ \"111.221.85.74/32\",\r\n \"137.116.44.82/32\",\r\n \"137.116.80.70/32\",\r\n
+ \ \"137.116.85.245/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.117.72.32/32\",\r\n \"137.135.106.54/32\",\r\n \"138.91.17.47/32\",\r\n
+ \ \"138.91.25.99/32\",\r\n \"138.91.26.45/32\",\r\n \"138.91.188.137/32\",\r\n
+ \ \"157.55.210.61/32\",\r\n \"157.55.212.238/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n \"157.56.167.147/32\",\r\n
+ \ \"168.61.86.120/32\",\r\n \"168.61.152.201/32\",\r\n \"168.61.172.83/32\",\r\n
+ \ \"168.61.172.225/32\",\r\n \"168.61.173.172/32\",\r\n \"168.61.217.177/32\",\r\n
+ \ \"168.62.109.110/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"168.62.248.37/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.136.37/32\",\r\n
+ \ \"168.63.200.173/32\",\r\n \"191.232.32.19/32\",\r\n \"191.232.32.100/32\",\r\n
+ \ \"191.232.34.78/32\",\r\n \"191.232.34.249/32\",\r\n \"191.232.35.177/32\",\r\n
+ \ \"191.232.36.213/32\",\r\n \"191.233.54.240/28\",\r\n \"191.233.68.51/32\",\r\n
+ \ \"191.233.207.0/28\",\r\n \"191.233.207.32/27\",\r\n \"191.234.161.28/32\",\r\n
+ \ \"191.234.161.168/32\",\r\n \"191.234.162.131/32\",\r\n
+ \ \"191.234.162.178/32\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.234.182.26/32\",\r\n \"191.235.82.221/32\",\r\n \"191.235.86.199/32\",\r\n
+ \ \"191.235.91.7/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"191.235.180.188/32\",\r\n \"191.237.255.116/32\",\r\n
+ \ \"191.238.41.107/32\",\r\n \"191.238.161.62/32\",\r\n \"191.238.163.65/32\",\r\n
+ \ \"191.239.67.132/32\",\r\n \"191.239.82.62/32\",\r\n \"191.239.161.74/32\",\r\n
+ \ \"191.239.177.86/32\",\r\n \"207.46.148.176/32\",\r\n \"2603:1000:4:402::3c0/124\",\r\n
+ \ \"2603:1000:4:402::3e0/123\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1000:104:402::3e0/123\",\r\n \"2603:1010:6:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3e0/123\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:101:402::3e0/123\",\r\n \"2603:1010:304:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3e0/123\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1010:404:402::3e0/123\",\r\n \"2603:1020:5:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3e0/123\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:206:402::3e0/123\",\r\n \"2603:1020:305:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3e0/123\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:405:402::3e0/123\",\r\n \"2603:1020:605:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3e0/123\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:705:402::3e0/123\",\r\n \"2603:1020:805:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3e0/123\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:905:402::3e0/123\",\r\n \"2603:1020:a04:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3e0/123\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:b04:402::3e0/123\",\r\n \"2603:1020:c04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3e0/123\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\",\r\n \"2603:1020:e04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3e0/123\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:f04:402::3e0/123\",\r\n \"2603:1020:1004:400::250/124\",\r\n
+ \ \"2603:1020:1004:400::260/123\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1020:1104:400::520/123\",\r\n \"2603:1030:f:400::bc0/124\",\r\n
+ \ \"2603:1030:f:400::be0/123\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:10:402::3e0/123\",\r\n \"2603:1030:104:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3e0/123\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:107:400::3a0/123\",\r\n \"2603:1030:210:402::3c0/124\",\r\n
+ \ \"2603:1030:210:402::3e0/123\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40b:400::be0/123\",\r\n \"2603:1030:40c:402::3c0/124\",\r\n
+ \ \"2603:1030:40c:402::3e0/123\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:504:402::260/123\",\r\n \"2603:1030:608:402::3c0/124\",\r\n
+ \ \"2603:1030:608:402::3e0/123\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:807:402::3e0/123\",\r\n \"2603:1030:a07:402::340/124\",\r\n
+ \ \"2603:1030:a07:402::360/123\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:b04:402::3e0/123\",\r\n \"2603:1030:c06:400::bc0/124\",\r\n
+ \ \"2603:1030:c06:400::be0/123\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\",\r\n \"2603:1030:1005:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3e0/123\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:5:402::3e0/123\",\r\n \"2603:1040:207:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3e0/123\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:407:402::3e0/123\",\r\n \"2603:1040:606:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3e0/123\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:806:402::3e0/123\",\r\n \"2603:1040:904:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3e0/123\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\",\r\n \"2603:1040:b04:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3e0/123\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:c06:402::3e0/123\",\r\n \"2603:1040:d04:400::250/124\",\r\n
+ \ \"2603:1040:d04:400::260/123\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:f05:402::3e0/123\",\r\n \"2603:1040:1104:400::510/124\",\r\n
+ \ \"2603:1040:1104:400::520/123\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:6:402::3e0/123\",\r\n \"2603:1050:403:400::180/123\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.AustraliaCentral\",\r\n \"id\":
+ \"LogicApps.AustraliaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.108.192/27\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:304:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.CanadaCentral\",\r\n
+ \ \"id\": \"LogicApps.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.184.150/32\",\r\n \"13.71.186.1/32\",\r\n
+ \ \"13.88.249.209/32\",\r\n \"20.38.149.144/28\",\r\n \"20.38.149.160/27\",\r\n
+ \ \"40.85.241.105/32\",\r\n \"40.85.250.135/32\",\r\n \"40.85.250.212/32\",\r\n
+ \ \"40.85.252.47/32\",\r\n \"52.228.39.244/32\",\r\n \"52.233.29.79/32\",\r\n
+ \ \"52.233.29.92/32\",\r\n \"52.233.30.218/32\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:f05:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.CentralIndia\",\r\n \"id\": \"LogicApps.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"20.43.121.192/27\",\r\n
+ \ \"20.43.121.224/28\",\r\n \"52.172.154.168/32\",\r\n \"52.172.157.194/32\",\r\n
+ \ \"52.172.184.192/32\",\r\n \"52.172.185.79/32\",\r\n \"52.172.186.159/32\",\r\n
+ \ \"52.172.191.194/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.74.145/32\",\r\n
+ \ \"104.211.90.162/32\",\r\n \"104.211.90.169/32\",\r\n \"104.211.101.108/32\",\r\n
+ \ \"104.211.102.62/32\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:a06:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.GermanyNorth\",\r\n \"id\": \"LogicApps.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"51.116.60.144/28\",\r\n
+ \ \"51.116.60.160/27\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:d04:402::3e0/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"LogicApps.NorthEurope\",\r\n \"id\": \"LogicApps.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"LogicApps\",\r\n \"addressPrefixes\": [\r\n \"13.69.231.160/27\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.79.173.49/32\",\r\n \"40.112.90.39/32\",\r\n
+ \ \"40.112.92.104/32\",\r\n \"40.112.95.216/32\",\r\n \"40.113.1.181/32\",\r\n
+ \ \"40.113.3.202/32\",\r\n \"40.113.4.18/32\",\r\n \"40.113.10.90/32\",\r\n
+ \ \"40.113.11.17/32\",\r\n \"40.113.12.95/32\",\r\n \"40.113.18.211/32\",\r\n
+ \ \"40.113.20.202/32\",\r\n \"40.113.22.12/32\",\r\n \"40.113.94.31/32\",\r\n
+ \ \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n \"52.178.165.215/32\",\r\n
+ \ \"52.178.166.21/32\",\r\n \"168.61.86.120/32\",\r\n \"191.235.180.188/32\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SoutheastAsia\",\r\n
+ \ \"id\": \"LogicApps.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.13.224/27\",\r\n \"13.67.91.135/32\",\r\n
+ \ \"13.67.107.128/32\",\r\n \"13.67.110.109/32\",\r\n \"13.76.4.194/32\",\r\n
+ \ \"13.76.5.96/32\",\r\n \"13.76.133.155/32\",\r\n \"40.78.239.16/28\",\r\n
+ \ \"52.163.93.214/32\",\r\n \"52.163.228.93/32\",\r\n \"52.163.230.166/32\",\r\n
+ \ \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n \"104.215.176.31/32\",\r\n
+ \ \"104.215.176.81/32\",\r\n \"104.215.177.5/32\",\r\n \"104.215.178.204/32\",\r\n
+ \ \"104.215.179.133/32\",\r\n \"104.215.180.203/32\",\r\n
+ \ \"104.215.181.6/32\",\r\n \"111.221.85.72/32\",\r\n \"111.221.85.74/32\",\r\n
+ \ \"2603:1040:5:402::3c0/124\",\r\n \"2603:1040:5:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.SwitzerlandWest\",\r\n
+ \ \"id\": \"LogicApps.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"LogicApps\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.156.160/27\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"2603:1020:b04:402::3c0/124\",\r\n \"2603:1020:b04:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKNorth\",\r\n
+ \ \"id\": \"LogicApps.UKNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uknorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.124.144/28\",\r\n \"13.87.124.160/27\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:305:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.UKSouth2\",\r\n
+ \ \"id\": \"LogicApps.UKSouth2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.87.58.144/28\",\r\n \"13.87.58.160/27\",\r\n
+ \ \"2603:1020:405:402::3c0/124\",\r\n \"2603:1020:405:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestIndia\",\r\n
+ \ \"id\": \"LogicApps.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.128.176/28\",\r\n \"20.38.128.192/27\",\r\n
+ \ \"104.211.154.7/32\",\r\n \"104.211.154.59/32\",\r\n \"104.211.156.153/32\",\r\n
+ \ \"104.211.157.237/32\",\r\n \"104.211.158.123/32\",\r\n
+ \ \"104.211.158.127/32\",\r\n \"104.211.162.205/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.80/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.164.136/32\",\r\n \"104.211.165.81/32\",\r\n
+ \ \"2603:1040:806:402::3c0/124\",\r\n \"2603:1040:806:402::3e0/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicApps.WestUS\",\r\n
+ \ \"id\": \"LogicApps.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.86.221.240/28\",\r\n \"13.86.223.0/27\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"40.83.164.80/32\",\r\n \"40.118.241.243/32\",\r\n
+ \ \"40.118.244.241/32\",\r\n \"52.160.90.237/32\",\r\n \"52.160.92.112/32\",\r\n
+ \ \"104.40.49.140/32\",\r\n \"104.40.54.74/32\",\r\n \"104.40.59.188/32\",\r\n
+ \ \"104.40.61.150/32\",\r\n \"104.40.62.178/32\",\r\n \"104.42.38.32/32\",\r\n
+ \ \"104.42.49.145/32\",\r\n \"104.42.224.227/32\",\r\n \"104.42.236.93/32\",\r\n
+ \ \"138.91.188.137/32\",\r\n \"157.56.160.212/32\",\r\n \"157.56.162.53/32\",\r\n
+ \ \"157.56.167.147/32\",\r\n \"168.62.219.52/32\",\r\n \"168.62.219.83/32\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:a07:402::360/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"LogicAppsManagement\",\r\n
+ \ \"id\": \"LogicAppsManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"LogicApps\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.39.247/32\",\r\n \"13.65.98.39/32\",\r\n \"13.66.128.68/32\",\r\n
+ \ \"13.66.224.169/32\",\r\n \"13.67.236.76/32\",\r\n \"13.69.109.144/28\",\r\n
+ \ \"13.69.233.16/28\",\r\n \"13.71.146.140/32\",\r\n \"13.71.199.160/28\",\r\n
+ \ \"13.73.115.153/32\",\r\n \"13.73.244.144/28\",\r\n \"13.75.89.159/32\",\r\n
+ \ \"13.75.153.66/32\",\r\n \"13.77.55.128/28\",\r\n \"13.78.43.164/32\",\r\n
+ \ \"13.78.62.130/32\",\r\n \"13.78.84.187/32\",\r\n \"13.78.137.247/32\",\r\n
+ \ \"13.79.173.49/32\",\r\n \"13.84.41.46/32\",\r\n \"13.84.43.45/32\",\r\n
+ \ \"13.85.79.155/32\",\r\n \"13.86.221.240/28\",\r\n \"13.87.58.144/28\",\r\n
+ \ \"13.87.124.144/28\",\r\n \"13.88.249.209/32\",\r\n \"13.89.178.48/28\",\r\n
+ \ \"13.91.252.184/32\",\r\n \"13.95.155.53/32\",\r\n \"20.36.108.224/28\",\r\n
+ \ \"20.36.117.128/28\",\r\n \"20.37.76.208/28\",\r\n \"20.38.128.176/28\",\r\n
+ \ \"20.38.149.144/28\",\r\n \"20.42.64.48/28\",\r\n \"20.43.121.224/28\",\r\n
+ \ \"20.44.4.176/28\",\r\n \"20.45.64.29/32\",\r\n \"20.45.64.87/32\",\r\n
+ \ \"20.45.71.213/32\",\r\n \"20.45.75.193/32\",\r\n \"20.72.30.160/28\",\r\n
+ \ \"20.150.172.240/28\",\r\n \"20.192.238.160/28\",\r\n \"20.193.206.48/28\",\r\n
+ \ \"23.97.68.172/32\",\r\n \"40.67.60.176/28\",\r\n \"40.69.110.224/28\",\r\n
+ \ \"40.70.27.253/32\",\r\n \"40.74.66.200/32\",\r\n \"40.74.81.13/32\",\r\n
+ \ \"40.74.85.215/32\",\r\n \"40.74.140.173/32\",\r\n \"40.75.35.240/28\",\r\n
+ \ \"40.77.31.87/32\",\r\n \"40.77.111.254/32\",\r\n \"40.78.196.176/28\",\r\n
+ \ \"40.78.204.208/28\",\r\n \"40.78.239.16/28\",\r\n \"40.78.245.144/28\",\r\n
+ \ \"40.79.44.7/32\",\r\n \"40.79.139.144/28\",\r\n \"40.79.171.240/28\",\r\n
+ \ \"40.79.180.192/28\",\r\n \"40.79.197.48/28\",\r\n \"40.80.180.16/28\",\r\n
+ \ \"40.83.98.194/32\",\r\n \"40.84.25.234/32\",\r\n \"40.84.59.136/32\",\r\n
+ \ \"40.84.138.132/32\",\r\n \"40.85.241.105/32\",\r\n \"40.86.202.42/32\",\r\n
+ \ \"40.112.90.39/32\",\r\n \"40.115.78.70/32\",\r\n \"40.115.78.237/32\",\r\n
+ \ \"40.117.99.79/32\",\r\n \"40.117.100.228/32\",\r\n \"40.120.64.32/28\",\r\n
+ \ \"51.11.97.16/28\",\r\n \"51.12.100.112/28\",\r\n \"51.12.204.112/28\",\r\n
+ \ \"51.104.9.112/28\",\r\n \"51.107.60.192/28\",\r\n \"51.107.156.192/28\",\r\n
+ \ \"51.116.60.144/28\",\r\n \"51.116.158.64/28\",\r\n \"51.116.168.222/32\",\r\n
+ \ \"51.116.171.209/32\",\r\n \"51.116.175.0/32\",\r\n \"51.116.233.40/32\",\r\n
+ \ \"51.120.109.32/28\",\r\n \"51.120.220.160/28\",\r\n \"51.140.78.71/32\",\r\n
+ \ \"51.140.79.109/32\",\r\n \"51.140.84.39/32\",\r\n \"51.140.155.81/32\",\r\n
+ \ \"51.141.48.98/32\",\r\n \"51.141.51.145/32\",\r\n \"51.141.53.164/32\",\r\n
+ \ \"51.141.119.150/32\",\r\n \"51.144.176.185/32\",\r\n \"52.147.97.16/28\",\r\n
+ \ \"52.160.90.237/32\",\r\n \"52.161.8.128/32\",\r\n \"52.161.19.82/32\",\r\n
+ \ \"52.161.26.172/32\",\r\n \"52.162.111.144/28\",\r\n \"52.163.93.214/32\",\r\n
+ \ \"52.167.109.80/28\",\r\n \"52.169.218.253/32\",\r\n \"52.169.220.174/32\",\r\n
+ \ \"52.172.9.47/32\",\r\n \"52.172.49.43/32\",\r\n \"52.172.51.140/32\",\r\n
+ \ \"52.172.157.194/32\",\r\n \"52.172.184.192/32\",\r\n \"52.172.191.194/32\",\r\n
+ \ \"52.174.49.6/32\",\r\n \"52.174.54.218/32\",\r\n \"52.183.30.10/32\",\r\n
+ \ \"52.183.39.67/32\",\r\n \"52.187.65.81/32\",\r\n \"52.187.65.155/32\",\r\n
+ \ \"52.187.231.161/32\",\r\n \"52.189.216.28/32\",\r\n \"52.229.125.57/32\",\r\n
+ \ \"52.231.23.16/28\",\r\n \"52.232.129.143/32\",\r\n \"52.232.133.109/32\",\r\n
+ \ \"52.233.29.79/32\",\r\n \"52.233.30.218/32\",\r\n \"65.52.9.64/32\",\r\n
+ \ \"65.52.211.164/32\",\r\n \"102.133.28.208/28\",\r\n \"102.133.72.145/32\",\r\n
+ \ \"102.133.72.173/32\",\r\n \"102.133.72.184/32\",\r\n \"102.133.72.190/32\",\r\n
+ \ \"102.133.156.176/28\",\r\n \"102.133.224.125/32\",\r\n
+ \ \"102.133.226.199/32\",\r\n \"102.133.228.4/32\",\r\n \"102.133.228.9/32\",\r\n
+ \ \"104.43.243.39/32\",\r\n \"104.210.89.222/32\",\r\n \"104.210.89.244/32\",\r\n
+ \ \"104.210.153.89/32\",\r\n \"104.211.73.195/32\",\r\n \"104.211.157.237/32\",\r\n
+ \ \"104.211.164.25/32\",\r\n \"104.211.164.112/32\",\r\n
+ \ \"104.211.165.81/32\",\r\n \"104.211.225.152/32\",\r\n
+ \ \"104.214.161.96/28\",\r\n \"104.215.181.6/32\",\r\n \"137.116.126.165/32\",\r\n
+ \ \"137.135.106.54/32\",\r\n \"138.91.188.137/32\",\r\n \"157.56.12.202/32\",\r\n
+ \ \"157.56.160.212/32\",\r\n \"168.62.249.81/32\",\r\n \"168.63.200.173/32\",\r\n
+ \ \"191.233.54.240/28\",\r\n \"191.233.207.0/28\",\r\n \"191.234.166.198/32\",\r\n
+ \ \"191.235.86.199/32\",\r\n \"191.235.94.220/32\",\r\n \"191.235.95.229/32\",\r\n
+ \ \"2603:1000:4:402::3c0/124\",\r\n \"2603:1000:104:402::3c0/124\",\r\n
+ \ \"2603:1010:6:402::3c0/124\",\r\n \"2603:1010:101:402::3c0/124\",\r\n
+ \ \"2603:1010:304:402::3c0/124\",\r\n \"2603:1010:404:402::3c0/124\",\r\n
+ \ \"2603:1020:5:402::3c0/124\",\r\n \"2603:1020:206:402::3c0/124\",\r\n
+ \ \"2603:1020:305:402::3c0/124\",\r\n \"2603:1020:405:402::3c0/124\",\r\n
+ \ \"2603:1020:605:402::3c0/124\",\r\n \"2603:1020:705:402::3c0/124\",\r\n
+ \ \"2603:1020:805:402::3c0/124\",\r\n \"2603:1020:905:402::3c0/124\",\r\n
+ \ \"2603:1020:a04:402::3c0/124\",\r\n \"2603:1020:b04:402::3c0/124\",\r\n
+ \ \"2603:1020:c04:402::3c0/124\",\r\n \"2603:1020:d04:402::3c0/124\",\r\n
+ \ \"2603:1020:e04:402::3c0/124\",\r\n \"2603:1020:f04:402::3c0/124\",\r\n
+ \ \"2603:1020:1004:400::250/124\",\r\n \"2603:1020:1104:400::510/124\",\r\n
+ \ \"2603:1030:f:400::bc0/124\",\r\n \"2603:1030:10:402::3c0/124\",\r\n
+ \ \"2603:1030:104:402::3c0/124\",\r\n \"2603:1030:107:400::390/124\",\r\n
+ \ \"2603:1030:210:402::3c0/124\",\r\n \"2603:1030:40b:400::bc0/124\",\r\n
+ \ \"2603:1030:40c:402::3c0/124\",\r\n \"2603:1030:504:402::250/124\",\r\n
+ \ \"2603:1030:608:402::3c0/124\",\r\n \"2603:1030:807:402::3c0/124\",\r\n
+ \ \"2603:1030:a07:402::340/124\",\r\n \"2603:1030:b04:402::3c0/124\",\r\n
+ \ \"2603:1030:c06:400::bc0/124\",\r\n \"2603:1030:f05:402::3c0/124\",\r\n
+ \ \"2603:1030:1005:402::3c0/124\",\r\n \"2603:1040:5:402::3c0/124\",\r\n
+ \ \"2603:1040:207:402::3c0/124\",\r\n \"2603:1040:407:402::3c0/124\",\r\n
+ \ \"2603:1040:606:402::3c0/124\",\r\n \"2603:1040:806:402::3c0/124\",\r\n
+ \ \"2603:1040:904:402::3c0/124\",\r\n \"2603:1040:a06:402::3c0/124\",\r\n
+ \ \"2603:1040:b04:402::3c0/124\",\r\n \"2603:1040:c06:402::3c0/124\",\r\n
+ \ \"2603:1040:d04:400::250/124\",\r\n \"2603:1040:f05:402::3c0/124\",\r\n
+ \ \"2603:1040:1104:400::510/124\",\r\n \"2603:1050:6:402::3c0/124\",\r\n
+ \ \"2603:1050:403:400::250/124\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftCloudAppSecurity\",\r\n \"id\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.64.26.88/32\",\r\n \"13.64.28.87/32\",\r\n
+ \ \"13.64.29.32/32\",\r\n \"13.64.29.161/32\",\r\n \"13.64.30.76/32\",\r\n
+ \ \"13.64.30.117/32\",\r\n \"13.64.30.118/32\",\r\n \"13.64.31.116/32\",\r\n
+ \ \"13.64.196.27/32\",\r\n \"13.64.198.19/32\",\r\n \"13.64.198.97/32\",\r\n
+ \ \"13.64.199.41/32\",\r\n \"13.64.252.115/32\",\r\n \"13.66.134.18/32\",\r\n
+ \ \"13.66.142.80/28\",\r\n \"13.66.158.8/32\",\r\n \"13.66.168.209/32\",\r\n
+ \ \"13.66.173.192/32\",\r\n \"13.66.210.205/32\",\r\n \"13.67.10.192/28\",\r\n
+ \ \"13.67.48.221/32\",\r\n \"13.69.67.96/28\",\r\n \"13.69.107.96/28\",\r\n
+ \ \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n \"13.70.74.160/27\",\r\n
+ \ \"13.71.175.0/27\",\r\n \"13.71.196.192/27\",\r\n \"13.73.242.224/27\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"13.75.39.128/27\",\r\n
+ \ \"13.76.43.73/32\",\r\n \"13.76.129.255/32\",\r\n \"13.77.53.96/27\",\r\n
+ \ \"13.77.80.28/32\",\r\n \"13.77.136.80/32\",\r\n \"13.77.148.229/32\",\r\n
+ \ \"13.77.160.162/32\",\r\n \"13.77.163.148/32\",\r\n \"13.77.165.61/32\",\r\n
+ \ \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n \"13.80.125.22/32\",\r\n
+ \ \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n \"13.81.212.71/32\",\r\n
+ \ \"13.86.176.189/32\",\r\n \"13.86.176.211/32\",\r\n \"13.86.219.224/27\",\r\n
+ \ \"13.86.235.202/32\",\r\n \"13.86.239.236/32\",\r\n \"13.88.224.38/32\",\r\n
+ \ \"13.88.224.211/32\",\r\n \"13.88.224.222/32\",\r\n \"13.88.226.74/32\",\r\n
+ \ \"13.88.227.7/32\",\r\n \"13.89.178.0/28\",\r\n \"13.91.61.249/32\",\r\n
+ \ \"13.91.91.243/32\",\r\n \"13.91.98.185/32\",\r\n \"13.93.32.114/32\",\r\n
+ \ \"13.93.113.192/32\",\r\n \"13.93.196.52/32\",\r\n \"13.93.216.68/32\",\r\n
+ \ \"13.93.233.42/32\",\r\n \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n
+ \ \"13.95.30.46/32\",\r\n \"20.36.220.93/32\",\r\n \"20.36.222.59/32\",\r\n
+ \ \"20.36.222.60/32\",\r\n \"20.36.240.76/32\",\r\n \"20.36.244.208/32\",\r\n
+ \ \"20.36.245.0/32\",\r\n \"20.36.245.182/32\",\r\n \"20.36.245.235/32\",\r\n
+ \ \"20.36.246.188/32\",\r\n \"20.36.248.40/32\",\r\n \"20.40.106.50/31\",\r\n
+ \ \"20.40.107.84/32\",\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"20.40.160.184/32\",\r\n \"20.40.161.119/32\",\r\n
+ \ \"20.40.161.131/32\",\r\n \"20.40.161.132/32\",\r\n \"20.40.161.135/32\",\r\n
+ \ \"20.40.161.140/30\",\r\n \"20.40.161.160/31\",\r\n \"20.40.162.86/32\",\r\n
+ \ \"20.40.162.200/32\",\r\n \"20.40.163.88/32\",\r\n \"20.40.163.96/31\",\r\n
+ \ \"20.40.163.130/32\",\r\n \"20.40.163.133/32\",\r\n \"20.40.163.178/31\",\r\n
+ \ \"20.42.29.162/32\",\r\n \"20.42.31.48/32\",\r\n \"20.42.31.251/32\",\r\n
+ \ \"20.44.8.208/28\",\r\n \"20.44.17.64/28\",\r\n \"20.44.72.173/32\",\r\n
+ \ \"20.44.72.217/32\",\r\n \"20.44.73.253/32\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.184.57.4/32\",\r\n \"20.184.57.218/32\",\r\n \"20.184.58.46/32\",\r\n
+ \ \"20.184.58.110/32\",\r\n \"20.184.60.77/32\",\r\n \"20.184.61.67/32\",\r\n
+ \ \"20.184.61.253/32\",\r\n \"20.184.63.158/32\",\r\n \"20.184.63.216/32\",\r\n
+ \ \"20.184.63.232/32\",\r\n \"20.188.72.248/32\",\r\n \"23.97.54.160/32\",\r\n
+ \ \"23.97.55.165/32\",\r\n \"23.98.83.96/28\",\r\n \"23.100.67.153/32\",\r\n
+ \ \"40.65.169.46/32\",\r\n \"40.65.169.97/32\",\r\n \"40.65.169.196/32\",\r\n
+ \ \"40.65.169.236/32\",\r\n \"40.65.170.17/32\",\r\n \"40.65.170.26/32\",\r\n
+ \ \"40.65.170.80/30\",\r\n \"40.65.170.112/31\",\r\n \"40.65.170.123/32\",\r\n
+ \ \"40.65.170.125/32\",\r\n \"40.65.170.128/32\",\r\n \"40.65.170.133/32\",\r\n
+ \ \"40.65.170.137/32\",\r\n \"40.65.233.253/32\",\r\n \"40.65.235.54/32\",\r\n
+ \ \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n \"40.66.57.203/32\",\r\n
+ \ \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n \"40.66.59.195/32\",\r\n
+ \ \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n \"40.66.60.101/32\",\r\n
+ \ \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n \"40.66.60.185/32\",\r\n
+ \ \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n \"40.66.60.208/31\",\r\n
+ \ \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n \"40.66.60.216/31\",\r\n
+ \ \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n \"40.66.60.222/32\",\r\n
+ \ \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n \"40.66.60.232/32\",\r\n
+ \ \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n \"40.66.61.193/32\",\r\n
+ \ \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n \"40.66.62.9/32\",\r\n
+ \ \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n \"40.66.62.154/32\",\r\n
+ \ \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n \"40.66.63.255/32\",\r\n
+ \ \"40.67.152.91/32\",\r\n \"40.67.152.227/32\",\r\n \"40.67.154.160/32\",\r\n
+ \ \"40.67.155.146/32\",\r\n \"40.67.159.55/32\",\r\n \"40.67.216.253/32\",\r\n
+ \ \"40.67.219.133/32\",\r\n \"40.67.251.0/32\",\r\n \"40.67.254.233/32\",\r\n
+ \ \"40.68.245.184/32\",\r\n \"40.69.108.96/27\",\r\n \"40.70.0.255/32\",\r\n
+ \ \"40.70.29.49/32\",\r\n \"40.70.29.200/32\",\r\n \"40.70.148.112/28\",\r\n
+ \ \"40.70.184.90/32\",\r\n \"40.71.14.16/28\",\r\n \"40.74.1.235/32\",\r\n
+ \ \"40.74.6.204/32\",\r\n \"40.76.78.217/32\",\r\n \"40.78.23.204/32\",\r\n
+ \ \"40.78.56.129/32\",\r\n \"40.78.229.64/28\",\r\n \"40.78.236.160/28\",\r\n
+ \ \"40.78.245.0/28\",\r\n \"40.78.251.128/28\",\r\n \"40.79.132.96/28\",\r\n
+ \ \"40.79.139.16/28\",\r\n \"40.79.146.224/28\",\r\n \"40.79.156.112/28\",\r\n
+ \ \"40.79.180.64/27\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.81.56.80/32\",\r\n \"40.81.57.138/32\",\r\n
+ \ \"40.81.57.141/32\",\r\n \"40.81.57.144/32\",\r\n \"40.81.57.157/32\",\r\n
+ \ \"40.81.57.164/32\",\r\n \"40.81.57.169/32\",\r\n \"40.81.58.180/32\",\r\n
+ \ \"40.81.58.184/32\",\r\n \"40.81.58.193/32\",\r\n \"40.81.59.4/32\",\r\n
+ \ \"40.81.59.90/32\",\r\n \"40.81.59.93/32\",\r\n \"40.81.62.162/32\",\r\n
+ \ \"40.81.62.179/32\",\r\n \"40.81.62.193/32\",\r\n \"40.81.62.199/32\",\r\n
+ \ \"40.81.62.206/32\",\r\n \"40.81.62.209/32\",\r\n \"40.81.62.212/32\",\r\n
+ \ \"40.81.62.220/30\",\r\n \"40.81.62.224/32\",\r\n \"40.81.62.255/32\",\r\n
+ \ \"40.81.63.1/32\",\r\n \"40.81.63.2/32\",\r\n \"40.81.63.4/31\",\r\n
+ \ \"40.81.63.7/32\",\r\n \"40.81.63.8/32\",\r\n \"40.81.63.235/32\",\r\n
+ \ \"40.81.63.245/32\",\r\n \"40.81.63.248/32\",\r\n \"40.81.120.13/32\",\r\n
+ \ \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n \"40.81.120.187/32\",\r\n
+ \ \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n \"40.81.121.66/32\",\r\n
+ \ \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n \"40.81.121.107/32\",\r\n
+ \ \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n \"40.81.121.127/32\",\r\n
+ \ \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n \"40.81.121.175/32\",\r\n
+ \ \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n \"40.81.122.76/32\",\r\n
+ \ \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n \"40.81.123.157/32\",\r\n
+ \ \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n \"40.81.127.25/32\",\r\n
+ \ \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n \"40.81.127.229/32\",\r\n
+ \ \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n \"40.81.152.126/32\",\r\n
+ \ \"40.81.152.171/32\",\r\n \"40.81.152.172/32\",\r\n \"40.81.156.153/32\",\r\n
+ \ \"40.81.156.154/31\",\r\n \"40.81.156.156/32\",\r\n \"40.81.159.35/32\",\r\n
+ \ \"40.81.159.77/32\",\r\n \"40.82.184.80/32\",\r\n \"40.82.185.36/32\",\r\n
+ \ \"40.82.185.117/32\",\r\n \"40.82.185.229/32\",\r\n \"40.82.186.166/32\",\r\n
+ \ \"40.82.186.168/31\",\r\n \"40.82.186.176/31\",\r\n \"40.82.186.180/32\",\r\n
+ \ \"40.82.186.182/32\",\r\n \"40.82.186.185/32\",\r\n \"40.82.186.214/32\",\r\n
+ \ \"40.82.186.231/32\",\r\n \"40.82.187.161/32\",\r\n \"40.82.187.162/31\",\r\n
+ \ \"40.82.187.164/32\",\r\n \"40.82.187.177/32\",\r\n \"40.82.187.178/31\",\r\n
+ \ \"40.82.187.199/32\",\r\n \"40.82.187.200/32\",\r\n \"40.82.187.202/32\",\r\n
+ \ \"40.82.187.204/30\",\r\n \"40.82.187.208/30\",\r\n \"40.82.187.212/31\",\r\n
+ \ \"40.82.187.218/32\",\r\n \"40.82.187.223/32\",\r\n \"40.82.190.163/32\",\r\n
+ \ \"40.82.191.58/32\",\r\n \"40.84.2.83/32\",\r\n \"40.84.4.93/32\",\r\n
+ \ \"40.84.4.119/32\",\r\n \"40.84.5.28/32\",\r\n \"40.84.49.16/32\",\r\n
+ \ \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n \"40.89.142.184/32\",\r\n
+ \ \"40.89.143.43/32\",\r\n \"40.90.184.197/32\",\r\n \"40.90.185.64/32\",\r\n
+ \ \"40.90.191.153/32\",\r\n \"40.90.218.196/31\",\r\n \"40.90.218.198/32\",\r\n
+ \ \"40.90.218.203/32\",\r\n \"40.90.219.121/32\",\r\n \"40.90.219.184/32\",\r\n
+ \ \"40.90.220.37/32\",\r\n \"40.90.220.190/32\",\r\n \"40.90.220.196/32\",\r\n
+ \ \"40.90.222.64/32\",\r\n \"40.91.74.37/32\",\r\n \"40.91.78.105/32\",\r\n
+ \ \"40.91.114.40/29\",\r\n \"40.91.114.48/31\",\r\n \"40.91.122.25/32\",\r\n
+ \ \"40.91.122.38/32\",\r\n \"40.91.126.157/32\",\r\n \"40.91.127.44/32\",\r\n
+ \ \"40.91.198.19/32\",\r\n \"40.113.121.176/32\",\r\n \"40.114.112.147/32\",\r\n
+ \ \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n \"40.115.25.50/32\",\r\n
+ \ \"40.115.71.111/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.118.211.172/32\",\r\n \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n
+ \ \"40.119.154.72/32\",\r\n \"40.119.203.98/31\",\r\n \"40.119.203.158/31\",\r\n
+ \ \"40.119.203.208/31\",\r\n \"40.119.207.131/32\",\r\n \"40.119.207.144/32\",\r\n
+ \ \"40.119.207.164/32\",\r\n \"40.119.207.166/32\",\r\n \"40.119.207.174/32\",\r\n
+ \ \"40.119.207.182/32\",\r\n \"40.119.207.193/32\",\r\n \"40.119.207.200/32\",\r\n
+ \ \"40.119.215.167/32\",\r\n \"40.121.134.1/32\",\r\n \"40.124.53.69/32\",\r\n
+ \ \"51.11.26.92/32\",\r\n \"51.11.26.95/32\",\r\n \"51.104.9.16/28\",\r\n
+ \ \"51.105.37.244/32\",\r\n \"51.105.67.224/28\",\r\n \"51.105.75.176/28\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.1.10/32\",\r\n
+ \ \"51.140.8.108/32\",\r\n \"51.140.8.180/32\",\r\n \"51.140.35.95/32\",\r\n
+ \ \"51.140.52.106/32\",\r\n \"51.140.78.213/32\",\r\n \"51.140.105.124/32\",\r\n
+ \ \"51.140.125.227/32\",\r\n \"51.140.164.179/32\",\r\n \"51.140.191.146/32\",\r\n
+ \ \"51.140.212.128/27\",\r\n \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n
+ \ \"51.141.2.189/32\",\r\n \"51.141.7.11/32\",\r\n \"51.143.58.207/32\",\r\n
+ \ \"51.143.111.58/32\",\r\n \"51.143.120.236/32\",\r\n \"51.143.120.242/32\",\r\n
+ \ \"51.143.122.59/32\",\r\n \"51.143.122.60/32\",\r\n \"51.144.56.60/32\",\r\n
+ \ \"51.145.108.227/32\",\r\n \"51.145.108.250/32\",\r\n \"51.145.181.195/32\",\r\n
+ \ \"51.145.181.214/32\",\r\n \"52.137.56.200/32\",\r\n \"52.137.89.147/32\",\r\n
+ \ \"52.138.227.160/28\",\r\n \"52.139.1.70/32\",\r\n \"52.139.1.156/32\",\r\n
+ \ \"52.139.1.158/31\",\r\n \"52.139.1.200/32\",\r\n \"52.139.1.218/32\",\r\n
+ \ \"52.139.2.0/32\",\r\n \"52.139.16.105/32\",\r\n \"52.139.18.234/32\",\r\n
+ \ \"52.139.18.236/32\",\r\n \"52.139.19.71/32\",\r\n \"52.139.19.187/32\",\r\n
+ \ \"52.139.19.215/32\",\r\n \"52.139.19.247/32\",\r\n \"52.139.20.31/32\",\r\n
+ \ \"52.139.20.118/32\",\r\n \"52.139.21.70/32\",\r\n \"52.139.245.1/32\",\r\n
+ \ \"52.139.245.21/32\",\r\n \"52.139.245.40/32\",\r\n \"52.139.245.48/32\",\r\n
+ \ \"52.139.251.219/32\",\r\n \"52.139.252.105/32\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.143.73.88/32\",\r\n \"52.143.74.31/32\",\r\n \"52.148.115.188/32\",\r\n
+ \ \"52.148.115.194/32\",\r\n \"52.148.115.238/32\",\r\n \"52.148.116.37/32\",\r\n
+ \ \"52.148.161.45/32\",\r\n \"52.148.161.53/32\",\r\n \"52.151.237.243/32\",\r\n
+ \ \"52.151.238.5/32\",\r\n \"52.151.244.65/32\",\r\n \"52.151.247.27/32\",\r\n
+ \ \"52.153.240.107/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.157.19.228/32\",\r\n \"52.157.20.142/32\",\r\n \"52.157.218.219/32\",\r\n
+ \ \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n \"52.157.232.147/32\",\r\n
+ \ \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n \"52.157.233.133/32\",\r\n
+ \ \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n \"52.157.234.222/32\",\r\n
+ \ \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n \"52.157.236.195/32\",\r\n
+ \ \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n \"52.157.237.255/32\",\r\n
+ \ \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n \"52.157.239.132/32\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.167.107.96/28\",\r\n \"52.169.192.237/32\",\r\n
+ \ \"52.174.56.180/32\",\r\n \"52.177.85.43/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.179.155.177/32\",\r\n \"52.179.194.73/32\",\r\n
+ \ \"52.179.198.41/32\",\r\n \"52.182.139.208/28\",\r\n \"52.183.24.254/32\",\r\n
+ \ \"52.183.30.204/32\",\r\n \"52.183.75.62/32\",\r\n \"52.184.165.82/32\",\r\n
+ \ \"52.188.217.236/32\",\r\n \"52.189.208.36/32\",\r\n \"52.189.213.36/32\",\r\n
+ \ \"52.189.213.124/32\",\r\n \"52.189.218.253/32\",\r\n \"52.190.26.220/32\",\r\n
+ \ \"52.190.31.62/32\",\r\n \"52.191.129.65/32\",\r\n \"52.191.237.188/32\",\r\n
+ \ \"52.191.238.65/32\",\r\n \"52.224.188.157/32\",\r\n \"52.224.188.168/32\",\r\n
+ \ \"52.224.190.225/32\",\r\n \"52.224.191.62/32\",\r\n \"52.224.201.216/32\",\r\n
+ \ \"52.224.201.223/32\",\r\n \"52.224.202.86/32\",\r\n \"52.224.202.91/32\",\r\n
+ \ \"52.225.225.218/32\",\r\n \"52.225.231.232/32\",\r\n \"52.232.224.227/32\",\r\n
+ \ \"52.232.225.84/32\",\r\n \"52.232.228.217/32\",\r\n \"52.232.245.96/32\",\r\n
+ \ \"52.236.187.80/28\",\r\n \"52.249.25.160/32\",\r\n \"52.249.25.165/32\",\r\n
+ \ \"65.52.138.123/32\",\r\n \"65.52.229.200/32\",\r\n \"104.40.28.202/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.42.15.41/32\",\r\n \"104.42.34.58/32\",\r\n
+ \ \"104.42.38.254/32\",\r\n \"104.42.54.24/32\",\r\n \"104.42.75.120/32\",\r\n
+ \ \"104.42.211.215/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.45.168.103/32\",\r\n \"104.45.168.104/32\",\r\n \"104.45.168.106/32\",\r\n
+ \ \"104.45.168.108/32\",\r\n \"104.45.168.111/32\",\r\n \"104.45.168.114/32\",\r\n
+ \ \"104.45.170.70/32\",\r\n \"104.45.170.127/32\",\r\n \"104.45.170.161/32\",\r\n
+ \ \"104.45.170.173/32\",\r\n \"104.45.170.174/31\",\r\n \"104.45.170.176/32\",\r\n
+ \ \"104.45.170.178/32\",\r\n \"104.45.170.180/32\",\r\n \"104.45.170.182/31\",\r\n
+ \ \"104.45.170.184/31\",\r\n \"104.45.170.186/32\",\r\n \"104.45.170.188/32\",\r\n
+ \ \"104.45.170.191/32\",\r\n \"104.45.170.194/32\",\r\n \"104.45.170.196/32\",\r\n
+ \ \"104.46.116.211/32\",\r\n \"104.46.121.72/32\",\r\n \"104.46.122.189/32\",\r\n
+ \ \"104.208.216.221/32\",\r\n \"104.209.35.177/32\",\r\n
+ \ \"104.209.168.251/32\",\r\n \"104.210.0.32/32\",\r\n \"104.211.9.226/32\",\r\n
+ \ \"104.214.225.33/32\",\r\n \"137.116.52.31/32\",\r\n \"138.91.147.71/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"40.69.108.96/27\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.39.128/27\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.132.195/32\",\r\n \"20.40.134.79/32\",\r\n
+ \ \"20.40.134.94/32\",\r\n \"40.66.56.158/32\",\r\n \"40.66.57.164/32\",\r\n
+ \ \"40.66.57.203/32\",\r\n \"40.66.59.41/32\",\r\n \"40.66.59.193/32\",\r\n
+ \ \"40.66.59.195/32\",\r\n \"40.66.59.196/32\",\r\n \"40.66.59.246/32\",\r\n
+ \ \"40.66.60.101/32\",\r\n \"40.66.60.118/32\",\r\n \"40.66.60.180/32\",\r\n
+ \ \"40.66.60.185/32\",\r\n \"40.66.60.200/32\",\r\n \"40.66.60.206/31\",\r\n
+ \ \"40.66.60.208/31\",\r\n \"40.66.60.210/32\",\r\n \"40.66.60.215/32\",\r\n
+ \ \"40.66.60.216/31\",\r\n \"40.66.60.219/32\",\r\n \"40.66.60.220/31\",\r\n
+ \ \"40.66.60.222/32\",\r\n \"40.66.60.224/31\",\r\n \"40.66.60.226/32\",\r\n
+ \ \"40.66.60.232/32\",\r\n \"40.66.61.61/32\",\r\n \"40.66.61.158/32\",\r\n
+ \ \"40.66.61.193/32\",\r\n \"40.66.61.226/32\",\r\n \"40.66.62.7/32\",\r\n
+ \ \"40.66.62.9/32\",\r\n \"40.66.62.78/32\",\r\n \"40.66.62.130/32\",\r\n
+ \ \"40.66.62.154/32\",\r\n \"40.66.62.225/32\",\r\n \"40.66.63.148/32\",\r\n
+ \ \"40.66.63.255/32\",\r\n \"40.79.132.96/28\",\r\n \"40.79.139.16/28\",\r\n
+ \ \"40.79.146.224/28\",\r\n \"40.89.136.227/32\",\r\n \"40.89.137.101/32\",\r\n
+ \ \"40.89.142.184/32\",\r\n \"40.89.143.43/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.190.115/32\",\r\n \"13.69.230.48/28\",\r\n
+ \ \"13.74.108.176/28\",\r\n \"13.74.168.152/32\",\r\n \"40.67.251.0/32\",\r\n
+ \ \"40.67.254.233/32\",\r\n \"52.138.227.160/28\",\r\n \"52.142.112.145/32\",\r\n
+ \ \"52.142.112.146/32\",\r\n \"52.142.116.135/32\",\r\n \"52.142.116.174/32\",\r\n
+ \ \"52.142.116.250/32\",\r\n \"52.142.117.183/32\",\r\n \"52.142.118.130/32\",\r\n
+ \ \"52.142.121.6/32\",\r\n \"52.142.121.75/32\",\r\n \"52.142.124.23/32\",\r\n
+ \ \"52.142.127.127/32\",\r\n \"52.155.161.88/32\",\r\n \"52.155.161.91/32\",\r\n
+ \ \"52.155.164.131/32\",\r\n \"52.155.166.50/32\",\r\n \"52.155.167.231/32\",\r\n
+ \ \"52.155.168.45/32\",\r\n \"52.155.177.13/32\",\r\n \"52.155.178.247/32\",\r\n
+ \ \"52.155.179.84/32\",\r\n \"52.155.180.208/30\",\r\n \"52.155.181.180/30\",\r\n
+ \ \"52.155.182.48/31\",\r\n \"52.155.182.50/32\",\r\n \"52.155.182.138/32\",\r\n
+ \ \"52.155.182.141/32\",\r\n \"52.156.197.208/32\",\r\n \"52.156.197.254/32\",\r\n
+ \ \"52.156.198.196/32\",\r\n \"52.156.202.7/32\",\r\n \"52.156.203.22/32\",\r\n
+ \ \"52.156.203.198/31\",\r\n \"52.156.204.24/32\",\r\n \"52.156.204.51/32\",\r\n
+ \ \"52.156.204.99/32\",\r\n \"52.156.204.139/32\",\r\n \"52.156.205.137/32\",\r\n
+ \ \"52.156.205.182/32\",\r\n \"52.156.205.222/32\",\r\n \"52.156.205.226/32\",\r\n
+ \ \"52.156.206.43/32\",\r\n \"52.156.206.45/32\",\r\n \"52.156.206.46/31\",\r\n
+ \ \"52.158.28.235/32\",\r\n \"52.169.192.237/32\",\r\n \"65.52.229.200/32\",\r\n
+ \ \"168.63.38.153/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.242.224/27\",\r\n \"20.45.3.127/32\",\r\n
+ \ \"20.188.72.248/32\",\r\n \"40.80.219.49/32\",\r\n \"40.80.220.215/32\",\r\n
+ \ \"40.80.220.246/32\",\r\n \"40.80.221.77/32\",\r\n \"40.80.222.91/32\",\r\n
+ \ \"40.80.222.197/32\",\r\n \"40.124.53.69/32\",\r\n \"52.153.240.107/32\",\r\n
+ \ \"52.249.25.160/32\",\r\n \"52.249.25.165/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n
+ \ \"id\": \"MicrosoftCloudAppSecurity.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftCloudAppSecurity\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.40.106.50/31\",\r\n \"20.40.107.84/32\",\r\n
+ \ \"40.81.120.13/32\",\r\n \"40.81.120.24/31\",\r\n \"40.81.120.97/32\",\r\n
+ \ \"40.81.120.187/32\",\r\n \"40.81.120.191/32\",\r\n \"40.81.120.192/32\",\r\n
+ \ \"40.81.121.66/32\",\r\n \"40.81.121.76/32\",\r\n \"40.81.121.78/32\",\r\n
+ \ \"40.81.121.107/32\",\r\n \"40.81.121.108/32\",\r\n \"40.81.121.111/32\",\r\n
+ \ \"40.81.121.127/32\",\r\n \"40.81.121.135/32\",\r\n \"40.81.121.140/32\",\r\n
+ \ \"40.81.121.175/32\",\r\n \"40.81.122.4/32\",\r\n \"40.81.122.62/31\",\r\n
+ \ \"40.81.122.76/32\",\r\n \"40.81.122.203/32\",\r\n \"40.81.123.124/32\",\r\n
+ \ \"40.81.123.157/32\",\r\n \"40.81.124.185/32\",\r\n \"40.81.124.219/32\",\r\n
+ \ \"40.81.127.25/32\",\r\n \"40.81.127.139/32\",\r\n \"40.81.127.140/31\",\r\n
+ \ \"40.81.127.229/32\",\r\n \"40.81.127.230/32\",\r\n \"40.81.127.239/32\",\r\n
+ \ \"51.137.136.13/32\",\r\n \"51.137.136.14/32\",\r\n \"51.137.136.34/32\",\r\n
+ \ \"51.137.137.69/32\",\r\n \"51.137.137.118/32\",\r\n \"51.137.137.121/32\",\r\n
+ \ \"51.137.137.200/32\",\r\n \"51.137.137.237/32\",\r\n \"51.140.212.128/27\",\r\n
+ \ \"51.140.230.246/32\",\r\n \"51.140.231.138/32\",\r\n \"51.141.2.189/32\",\r\n
+ \ \"51.141.7.11/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"id\":
+ \"MicrosoftCloudAppSecurity.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftCloudAppSecurity\",\r\n \"addressPrefixes\": [\r\n \"13.69.67.96/28\",\r\n
+ \ \"13.69.107.96/28\",\r\n \"13.80.7.94/32\",\r\n \"13.80.22.71/32\",\r\n
+ \ \"13.80.125.22/32\",\r\n \"13.81.123.49/32\",\r\n \"13.81.204.189/32\",\r\n
+ \ \"13.81.212.71/32\",\r\n \"13.93.32.114/32\",\r\n \"13.93.113.192/32\",\r\n
+ \ \"13.95.1.33/32\",\r\n \"13.95.29.177/32\",\r\n \"13.95.30.46/32\",\r\n
+ \ \"40.67.216.253/32\",\r\n \"40.67.219.133/32\",\r\n \"40.68.245.184/32\",\r\n
+ \ \"40.74.1.235/32\",\r\n \"40.74.6.204/32\",\r\n \"40.91.198.19/32\",\r\n
+ \ \"40.113.121.176/32\",\r\n \"40.114.217.8/32\",\r\n \"40.115.24.65/32\",\r\n
+ \ \"40.115.25.50/32\",\r\n \"40.118.63.137/32\",\r\n \"40.118.97.232/32\",\r\n
+ \ \"40.119.145.130/32\",\r\n \"40.119.147.102/32\",\r\n \"40.119.154.72/32\",\r\n
+ \ \"51.105.124.64/32\",\r\n \"51.105.124.80/32\",\r\n \"51.105.161.5/32\",\r\n
+ \ \"51.105.163.8/32\",\r\n \"51.105.163.43/32\",\r\n \"51.105.164.8/32\",\r\n
+ \ \"51.105.164.234/32\",\r\n \"51.105.164.241/32\",\r\n \"51.105.165.31/32\",\r\n
+ \ \"51.105.165.37/32\",\r\n \"51.105.165.63/32\",\r\n \"51.105.165.116/32\",\r\n
+ \ \"51.105.166.102/31\",\r\n \"51.105.166.106/32\",\r\n \"51.105.179.157/32\",\r\n
+ \ \"51.144.56.60/32\",\r\n \"51.145.181.195/32\",\r\n \"51.145.181.214/32\",\r\n
+ \ \"52.137.56.200/32\",\r\n \"52.142.220.179/32\",\r\n \"52.142.232.120/32\",\r\n
+ \ \"52.157.218.219/32\",\r\n \"52.157.218.232/32\",\r\n \"52.157.232.110/32\",\r\n
+ \ \"52.157.232.147/32\",\r\n \"52.157.233.49/32\",\r\n \"52.157.233.92/32\",\r\n
+ \ \"52.157.233.133/32\",\r\n \"52.157.233.205/32\",\r\n \"52.157.234.160/32\",\r\n
+ \ \"52.157.234.222/32\",\r\n \"52.157.235.27/32\",\r\n \"52.157.235.144/32\",\r\n
+ \ \"52.157.236.195/32\",\r\n \"52.157.237.107/32\",\r\n \"52.157.237.213/32\",\r\n
+ \ \"52.157.237.255/32\",\r\n \"52.157.238.58/32\",\r\n \"52.157.239.110/32\",\r\n
+ \ \"52.157.239.132/32\",\r\n \"52.174.56.180/32\",\r\n \"52.178.44.248/32\",\r\n
+ \ \"52.178.89.44/32\",\r\n \"52.236.187.80/28\",\r\n \"65.52.138.123/32\",\r\n
+ \ \"104.40.129.120/32\",\r\n \"104.45.7.95/32\",\r\n \"104.45.65.169/32\",\r\n
+ \ \"104.214.225.33/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"MicrosoftContainerRegistry\",\r\n \"id\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n \"13.67.8.112/29\",\r\n
+ \ \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"13.69.227.80/29\",\r\n
+ \ \"13.70.72.128/29\",\r\n \"13.71.170.48/29\",\r\n \"13.71.194.120/29\",\r\n
+ \ \"13.74.107.72/29\",\r\n \"13.75.34.152/29\",\r\n \"13.77.50.72/29\",\r\n
+ \ \"13.78.106.192/29\",\r\n \"13.87.56.88/29\",\r\n \"13.87.122.88/29\",\r\n
+ \ \"13.89.170.208/29\",\r\n \"20.37.74.64/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"20.44.2.16/29\",\r\n \"20.44.26.136/29\",\r\n \"20.45.122.136/29\",\r\n
+ \ \"20.49.82.8/29\",\r\n \"20.49.90.8/29\",\r\n \"20.72.26.8/29\",\r\n
+ \ \"20.150.170.16/29\",\r\n \"20.150.178.136/29\",\r\n \"20.150.186.136/29\",\r\n
+ \ \"20.192.98.136/29\",\r\n \"20.192.234.16/29\",\r\n \"20.193.202.8/29\",\r\n
+ \ \"20.194.66.8/29\",\r\n \"23.98.82.104/29\",\r\n \"40.67.58.16/29\",\r\n
+ \ \"40.69.106.72/29\",\r\n \"40.70.146.80/29\",\r\n \"40.71.10.208/29\",\r\n
+ \ \"40.74.100.56/29\",\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n
+ \ \"40.78.194.72/29\",\r\n \"40.78.202.64/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.78.234.40/29\",\r\n \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n
+ \ \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n \"40.79.146.24/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"40.79.162.24/29\",\r\n \"40.79.170.8/29\",\r\n
+ \ \"40.79.178.72/29\",\r\n \"40.79.186.0/29\",\r\n \"40.79.194.88/29\",\r\n
+ \ \"40.80.50.136/29\",\r\n \"40.112.242.152/29\",\r\n \"40.120.74.8/29\",\r\n
+ \ \"51.12.98.16/29\",\r\n \"51.12.202.16/29\",\r\n \"51.12.226.136/29\",\r\n
+ \ \"51.12.234.136/29\",\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.107.58.16/29\",\r\n \"51.107.154.16/29\",\r\n \"51.116.58.16/29\",\r\n
+ \ \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n \"51.116.250.136/29\",\r\n
+ \ \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n \"51.120.210.136/29\",\r\n
+ \ \"51.120.218.16/29\",\r\n \"51.140.146.192/29\",\r\n \"51.140.210.88/29\",\r\n
+ \ \"52.138.90.24/29\",\r\n \"52.138.226.72/29\",\r\n \"52.162.106.152/29\",\r\n
+ \ \"52.167.106.72/29\",\r\n \"52.182.138.200/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"52.231.146.88/29\",\r\n \"52.236.186.72/29\",\r\n \"52.246.154.136/29\",\r\n
+ \ \"65.52.250.8/29\",\r\n \"102.133.26.16/29\",\r\n \"102.133.122.136/29\",\r\n
+ \ \"102.133.154.16/29\",\r\n \"102.133.250.136/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"104.208.144.72/29\",\r\n \"104.211.81.128/29\",\r\n
+ \ \"104.211.146.72/29\",\r\n \"104.214.18.176/29\",\r\n \"191.233.50.8/29\",\r\n
+ \ \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1000:4:402::88/125\",\r\n
+ \ \"2603:1000:104:402::88/125\",\r\n \"2603:1000:104:802::88/125\",\r\n
+ \ \"2603:1000:104:c02::88/125\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\",\r\n
+ \ \"2603:1010:101:402::88/125\",\r\n \"2603:1010:304:402::88/125\",\r\n
+ \ \"2603:1010:404:402::88/125\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\",\r\n \"2603:1020:305:402::88/125\",\r\n
+ \ \"2603:1020:405:402::88/125\",\r\n \"2603:1020:605:402::88/125\",\r\n
+ \ \"2603:1020:705:402::88/125\",\r\n \"2603:1020:705:802::88/125\",\r\n
+ \ \"2603:1020:705:c02::88/125\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\",\r\n
+ \ \"2603:1020:905:402::88/125\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\",\r\n
+ \ \"2603:1020:b04:402::88/125\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\",\r\n
+ \ \"2603:1020:d04:402::88/125\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\",\r\n
+ \ \"2603:1020:f04:402::88/125\",\r\n \"2603:1020:1004:400::88/125\",\r\n
+ \ \"2603:1020:1004:400::3b0/125\",\r\n \"2603:1020:1004:800::148/125\",\r\n
+ \ \"2603:1020:1104:400::88/125\",\r\n \"2603:1030:f:400::888/125\",\r\n
+ \ \"2603:1030:10:402::88/125\",\r\n \"2603:1030:10:802::88/125\",\r\n
+ \ \"2603:1030:10:c02::88/125\",\r\n \"2603:1030:104:402::88/125\",\r\n
+ \ \"2603:1030:107:400::8/125\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\",\r\n
+ \ \"2603:1030:504:402::88/125\",\r\n \"2603:1030:504:402::3b0/125\",\r\n
+ \ \"2603:1030:504:802::148/125\",\r\n \"2603:1030:504:802::3e8/125\",\r\n
+ \ \"2603:1030:608:402::88/125\",\r\n \"2603:1030:807:402::88/125\",\r\n
+ \ \"2603:1030:807:802::88/125\",\r\n \"2603:1030:807:c02::88/125\",\r\n
+ \ \"2603:1030:a07:402::88/125\",\r\n \"2603:1030:b04:402::88/125\",\r\n
+ \ \"2603:1030:c06:400::888/125\",\r\n \"2603:1030:c06:802::88/125\",\r\n
+ \ \"2603:1030:c06:c02::88/125\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\",\r\n
+ \ \"2603:1030:1005:402::88/125\",\r\n \"2603:1040:5:402::88/125\",\r\n
+ \ \"2603:1040:5:802::88/125\",\r\n \"2603:1040:5:c02::88/125\",\r\n
+ \ \"2603:1040:207:402::88/125\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\",\r\n
+ \ \"2603:1040:606:402::88/125\",\r\n \"2603:1040:806:402::88/125\",\r\n
+ \ \"2603:1040:904:402::88/125\",\r\n \"2603:1040:904:802::88/125\",\r\n
+ \ \"2603:1040:904:c02::88/125\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\",\r\n
+ \ \"2603:1040:b04:402::88/125\",\r\n \"2603:1040:c06:402::88/125\",\r\n
+ \ \"2603:1040:d04:400::88/125\",\r\n \"2603:1040:d04:400::3b0/125\",\r\n
+ \ \"2603:1040:d04:800::148/125\",\r\n \"2603:1040:f05:402::88/125\",\r\n
+ \ \"2603:1040:f05:802::88/125\",\r\n \"2603:1040:f05:c02::88/125\",\r\n
+ \ \"2603:1040:1104:400::88/125\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\",\r\n
+ \ \"2603:1050:403:400::90/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.128/29\",\r\n \"40.79.162.24/29\",\r\n
+ \ \"40.79.170.8/29\",\r\n \"2603:1010:6:402::88/125\",\r\n
+ \ \"2603:1010:6:802::88/125\",\r\n \"2603:1010:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.50.72/29\",\r\n \"2603:1010:101:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.BrazilSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"brazilsouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"191.233.203.128/29\",\r\n \"191.234.146.136/29\",\r\n
+ \ \"191.234.154.136/29\",\r\n \"2603:1050:6:402::88/125\",\r\n
+ \ \"2603:1050:6:802::88/125\",\r\n \"2603:1050:6:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.48/29\",\r\n \"20.38.146.136/29\",\r\n
+ \ \"52.246.154.136/29\",\r\n \"2603:1030:f05:402::88/125\",\r\n
+ \ \"2603:1030:f05:802::88/125\",\r\n \"2603:1030:f05:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CanadaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"canadaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.72/29\",\r\n \"2603:1030:1005:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralIndia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.192.98.136/29\",\r\n \"40.80.50.136/29\",\r\n
+ \ \"104.211.81.128/29\",\r\n \"2603:1040:a06:402::88/125\",\r\n
+ \ \"2603:1040:a06:802::88/125\",\r\n \"2603:1040:a06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.208/29\",\r\n \"52.182.138.200/29\",\r\n
+ \ \"104.208.16.72/29\",\r\n \"2603:1030:10:402::88/125\",\r\n
+ \ \"2603:1030:10:802::88/125\",\r\n \"2603:1030:10:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.CentralUSEUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centraluseuap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.64/29\",\r\n \"2603:1030:f:400::888/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.152/29\",\r\n \"2603:1040:207:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.71.10.208/29\",\r\n \"40.78.226.200/29\",\r\n
+ \ \"40.79.154.96/29\",\r\n \"2603:1030:210:402::88/125\",\r\n
+ \ \"2603:1030:210:802::88/125\",\r\n \"2603:1030:210:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.70.146.80/29\",\r\n \"52.167.106.72/29\",\r\n
+ \ \"104.208.144.72/29\",\r\n \"2603:1030:40c:402::88/125\",\r\n
+ \ \"2603:1030:40c:802::88/125\",\r\n \"2603:1030:40c:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.EastUS2EUAP\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.40/29\",\r\n \"40.75.34.24/29\",\r\n \"52.138.90.24/29\",\r\n
+ \ \"2603:1030:40b:400::888/125\",\r\n \"2603:1030:40b:800::88/125\",\r\n
+ \ \"2603:1030:40b:c00::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.48/29\",\r\n \"40.79.138.24/29\",\r\n
+ \ \"40.79.146.24/29\",\r\n \"2603:1020:805:402::88/125\",\r\n
+ \ \"2603:1020:805:802::88/125\",\r\n \"2603:1020:805:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.FranceSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.72/29\",\r\n \"2603:1020:905:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanyn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.16/29\",\r\n \"2603:1020:d04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.154.80/29\",\r\n \"51.116.242.136/29\",\r\n
+ \ \"51.116.250.136/29\",\r\n \"2603:1020:c04:402::88/125\",\r\n
+ \ \"2603:1020:c04:802::88/125\",\r\n \"2603:1020:c04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japaneast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.106.192/29\",\r\n \"40.79.186.0/29\",\r\n
+ \ \"40.79.194.88/29\",\r\n \"2603:1040:407:402::88/125\",\r\n
+ \ \"2603:1040:407:802::88/125\",\r\n \"2603:1040:407:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.JapanWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.56/29\",\r\n \"2603:1040:606:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.KoreaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.136/29\",\r\n \"20.194.66.8/29\",\r\n \"52.231.18.48/29\",\r\n
+ \ \"2603:1040:f05:402::88/125\",\r\n \"2603:1040:f05:802::88/125\",\r\n
+ \ \"2603:1040:f05:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.231.146.88/29\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.152/29\",\r\n \"2603:1030:608:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorthEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"northeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.227.80/29\",\r\n \"13.74.107.72/29\",\r\n
+ \ \"52.138.226.72/29\",\r\n \"2603:1020:5:402::88/125\",\r\n
+ \ \"2603:1020:5:802::88/125\",\r\n \"2603:1020:5:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwaye\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.98.24/29\",\r\n \"51.120.106.136/29\",\r\n
+ \ \"51.120.210.136/29\",\r\n \"2603:1020:e04:402::88/125\",\r\n
+ \ \"2603:1020:e04:802::88/125\",\r\n \"2603:1020:e04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.NorwayWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"norwayw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.218.16/29\",\r\n \"2603:1020:f04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.122.136/29\",\r\n \"102.133.154.16/29\",\r\n
+ \ \"102.133.250.136/29\",\r\n \"2603:1000:104:402::88/125\",\r\n
+ \ \"2603:1000:104:802::88/125\",\r\n \"2603:1000:104:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthAfricaWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.26.16/29\",\r\n \"2603:1000:4:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.45.122.136/29\",\r\n \"20.49.90.8/29\",\r\n \"104.214.18.176/29\",\r\n
+ \ \"2603:1030:807:402::88/125\",\r\n \"2603:1030:807:802::88/125\",\r\n
+ \ \"2603:1030:807:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.112/29\",\r\n \"23.98.82.104/29\",\r\n \"40.78.234.40/29\",\r\n
+ \ \"2603:1040:5:402::88/125\",\r\n \"2603:1040:5:802::88/125\",\r\n
+ \ \"2603:1040:5:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.SouthIndia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southindia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.194.72/29\",\r\n \"2603:1040:c06:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.16/29\",\r\n \"2603:1020:a04:402::88/125\",\r\n
+ \ \"2603:1020:a04:802::88/125\",\r\n \"2603:1020:a04:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.16/29\",\r\n \"2603:1020:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAECentral\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAECentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.64/29\",\r\n \"2603:1040:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UAENorth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UAENorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uaenorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.8/29\",\r\n \"65.52.250.8/29\",\r\n \"2603:1040:904:402::88/125\",\r\n
+ \ \"2603:1040:904:802::88/125\",\r\n \"2603:1040:904:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.136/29\",\r\n \"51.105.74.136/29\",\r\n
+ \ \"51.140.146.192/29\",\r\n \"2603:1020:705:402::88/125\",\r\n
+ \ \"2603:1020:705:802::88/125\",\r\n \"2603:1020:705:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKSouth2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.56.88/29\",\r\n \"2603:1020:405:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.UKWest\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.UKWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"ukwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"51.140.210.88/29\",\r\n \"2603:1020:605:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"MicrosoftContainerRegistry\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.71.194.120/29\",\r\n \"2603:1030:b04:402::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"MicrosoftContainerRegistry.WestEurope\",\r\n
+ \ \"id\": \"MicrosoftContainerRegistry.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.64.80/29\",\r\n \"13.69.106.72/29\",\r\n \"52.236.186.72/29\",\r\n
+ \ \"2603:1020:206:402::88/125\",\r\n \"2603:1020:206:802::88/125\",\r\n
+ \ \"2603:1020:206:c02::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestIndia\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"104.211.146.72/29\",\r\n
+ \ \"2603:1040:806:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"40.112.242.152/29\",\r\n
+ \ \"2603:1030:a07:402::88/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"MicrosoftContainerRegistry.WestUS2\",\r\n \"id\":
+ \"MicrosoftContainerRegistry.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"MicrosoftContainerRegistry\",\r\n \"addressPrefixes\": [\r\n \"13.66.140.64/29\",\r\n
+ \ \"40.78.242.152/29\",\r\n \"40.78.250.88/29\",\r\n \"2603:1030:c06:400::888/125\",\r\n
+ \ \"2603:1030:c06:802::88/125\",\r\n \"2603:1030:c06:c02::88/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerBI\",\r\n
+ \ \"id\": \"PowerBI\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerBI\",\r\n \"addressPrefixes\":
+ [\r\n \"13.73.248.4/31\",\r\n \"13.73.248.48/28\",\r\n \"13.73.248.64/27\",\r\n
+ \ \"20.36.120.122/31\",\r\n \"20.36.120.124/30\",\r\n \"20.36.120.208/29\",\r\n
+ \ \"20.37.64.122/31\",\r\n \"20.37.64.124/30\",\r\n \"20.37.64.208/29\",\r\n
+ \ \"20.37.156.200/30\",\r\n \"20.37.156.240/28\",\r\n \"20.37.157.0/29\",\r\n
+ \ \"20.37.157.16/28\",\r\n \"20.37.157.32/27\",\r\n \"20.37.195.24/31\",\r\n
+ \ \"20.37.195.48/29\",\r\n \"20.37.195.64/28\",\r\n \"20.37.195.128/26\",\r\n
+ \ \"20.37.224.122/31\",\r\n \"20.37.224.124/30\",\r\n \"20.37.224.208/29\",\r\n
+ \ \"20.38.84.104/31\",\r\n \"20.38.84.128/25\",\r\n \"20.38.85.0/25\",\r\n
+ \ \"20.38.86.0/24\",\r\n \"20.38.136.70/31\",\r\n \"20.38.136.208/30\",\r\n
+ \ \"20.38.136.216/29\",\r\n \"20.39.11.26/31\",\r\n \"20.39.11.28/30\",\r\n
+ \ \"20.39.11.48/28\",\r\n \"20.41.4.104/31\",\r\n \"20.41.4.108/30\",\r\n
+ \ \"20.41.4.208/28\",\r\n \"20.41.4.224/27\",\r\n \"20.41.5.0/25\",\r\n
+ \ \"20.41.65.146/31\",\r\n \"20.41.65.148/30\",\r\n \"20.41.65.152/29\",\r\n
+ \ \"20.41.192.122/31\",\r\n \"20.41.192.124/30\",\r\n \"20.41.193.144/29\",\r\n
+ \ \"20.42.0.70/31\",\r\n \"20.42.4.240/29\",\r\n \"20.42.6.0/27\",\r\n
+ \ \"20.42.6.64/26\",\r\n \"20.42.131.32/31\",\r\n \"20.42.131.40/29\",\r\n
+ \ \"20.42.131.48/29\",\r\n \"20.42.131.128/26\",\r\n \"20.42.224.122/31\",\r\n
+ \ \"20.42.227.16/28\",\r\n \"20.42.227.32/29\",\r\n \"20.42.227.64/26\",\r\n
+ \ \"20.43.41.176/31\",\r\n \"20.43.41.184/29\",\r\n \"20.43.41.192/26\",\r\n
+ \ \"20.43.65.152/31\",\r\n \"20.43.65.176/29\",\r\n \"20.43.65.192/28\",\r\n
+ \ \"20.43.65.224/27\",\r\n \"20.43.130.192/31\",\r\n \"20.43.130.196/30\",\r\n
+ \ \"20.43.130.200/29\",\r\n \"20.43.130.208/28\",\r\n \"20.43.130.224/28\",\r\n
+ \ \"20.43.131.0/27\",\r\n \"20.43.131.64/26\",\r\n \"20.45.192.122/31\",\r\n
+ \ \"20.45.192.124/31\",\r\n \"20.45.192.208/30\",\r\n \"20.45.192.216/29\",\r\n
+ \ \"20.45.192.224/28\",\r\n \"20.48.196.232/29\",\r\n \"20.50.0.0/24\",\r\n
+ \ \"20.51.21.160/30\",\r\n \"20.65.133.80/29\",\r\n \"20.72.16.22/31\",\r\n
+ \ \"20.72.16.44/30\",\r\n \"20.72.20.32/29\",\r\n \"20.150.160.110/31\",\r\n
+ \ \"20.150.160.124/30\",\r\n \"20.150.161.144/29\",\r\n \"20.189.104.70/31\",\r\n
+ \ \"20.189.106.224/27\",\r\n \"20.189.108.0/27\",\r\n \"20.192.160.22/31\",\r\n
+ \ \"20.192.161.112/30\",\r\n \"20.192.161.120/29\",\r\n \"20.192.225.34/31\",\r\n
+ \ \"20.192.225.36/30\",\r\n \"20.192.225.192/29\",\r\n \"40.74.24.70/31\",\r\n
+ \ \"40.74.30.128/29\",\r\n \"40.74.30.160/27\",\r\n \"40.74.30.192/26\",\r\n
+ \ \"40.74.31.0/26\",\r\n \"40.80.56.122/31\",\r\n \"40.80.57.144/29\",\r\n
+ \ \"40.80.57.160/28\",\r\n \"40.80.168.122/31\",\r\n \"40.80.168.124/30\",\r\n
+ \ \"40.80.169.144/29\",\r\n \"40.80.184.70/31\",\r\n \"40.80.188.48/28\",\r\n
+ \ \"40.80.188.64/27\",\r\n \"40.80.188.128/25\",\r\n \"40.80.189.0/24\",\r\n
+ \ \"40.82.248.68/31\",\r\n \"40.82.253.96/28\",\r\n \"40.82.253.128/26\",\r\n
+ \ \"40.82.254.0/25\",\r\n \"40.89.16.122/31\",\r\n \"40.89.17.144/28\",\r\n
+ \ \"40.89.17.160/27\",\r\n \"40.119.8.76/30\",\r\n \"40.119.11.64/26\",\r\n
+ \ \"51.12.17.16/30\",\r\n \"51.12.17.24/29\",\r\n \"51.12.25.8/29\",\r\n
+ \ \"51.12.46.230/31\",\r\n \"51.12.47.28/30\",\r\n \"51.12.198.210/31\",\r\n
+ \ \"51.104.25.140/31\",\r\n \"51.104.25.152/30\",\r\n \"51.104.25.176/28\",\r\n
+ \ \"51.104.25.192/29\",\r\n \"51.104.27.0/26\",\r\n \"51.105.88.122/31\",\r\n
+ \ \"51.105.88.124/30\",\r\n \"51.105.88.208/28\",\r\n \"51.107.48.124/31\",\r\n
+ \ \"51.107.48.208/30\",\r\n \"51.107.48.216/29\",\r\n \"51.107.144.122/31\",\r\n
+ \ \"51.107.144.124/30\",\r\n \"51.107.144.208/29\",\r\n \"51.116.48.68/31\",\r\n
+ \ \"51.116.48.128/30\",\r\n \"51.116.48.136/29\",\r\n \"51.116.144.68/31\",\r\n
+ \ \"51.116.144.128/30\",\r\n \"51.116.144.136/29\",\r\n \"51.116.149.232/29\",\r\n
+ \ \"51.120.40.124/31\",\r\n \"51.120.40.208/30\",\r\n \"51.120.40.216/29\",\r\n
+ \ \"51.120.224.122/31\",\r\n \"51.120.224.124/30\",\r\n \"51.120.224.208/29\",\r\n
+ \ \"51.137.160.70/31\",\r\n \"51.137.161.160/27\",\r\n \"51.137.161.192/27\",\r\n
+ \ \"52.136.48.120/31\",\r\n \"52.136.48.124/30\",\r\n \"52.136.48.208/29\",\r\n
+ \ \"52.136.48.224/28\",\r\n \"52.140.105.144/28\",\r\n \"52.140.105.160/28\",\r\n
+ \ \"52.150.139.76/31\",\r\n \"52.150.139.96/30\",\r\n \"52.150.139.112/28\",\r\n
+ \ \"52.150.139.128/28\",\r\n \"52.150.139.160/27\",\r\n \"52.228.81.160/31\",\r\n
+ \ \"52.228.81.168/29\",\r\n \"52.228.81.176/28\",\r\n \"52.228.81.192/27\",\r\n
+ \ \"102.37.160.160/29\",\r\n \"102.133.56.98/31\",\r\n \"102.133.56.100/30\",\r\n
+ \ \"102.133.56.104/29\",\r\n \"102.133.216.104/31\",\r\n
+ \ \"102.133.216.108/30\",\r\n \"102.133.217.64/29\",\r\n
+ \ \"191.233.8.22/31\",\r\n \"191.233.10.32/30\",\r\n \"191.233.10.40/29\",\r\n
+ \ \"191.235.225.152/31\",\r\n \"191.235.225.156/30\",\r\n
+ \ \"191.235.225.176/28\",\r\n \"191.235.225.192/28\",\r\n
+ \ \"191.235.225.224/27\",\r\n \"191.238.72.128/28\",\r\n
+ \ \"2603:1000:4::620/123\",\r\n \"2603:1000:4::640/122\",\r\n
+ \ \"2603:1000:104::100/122\",\r\n \"2603:1000:104::140/123\",\r\n
+ \ \"2603:1000:104::320/123\",\r\n \"2603:1000:104::340/122\",\r\n
+ \ \"2603:1000:104:1::5e0/123\",\r\n \"2603:1000:104:1::600/122\",\r\n
+ \ \"2603:1010:6::/122\",\r\n \"2603:1010:6::40/123\",\r\n
+ \ \"2603:1010:6:1::5e0/123\",\r\n \"2603:1010:6:1::600/122\",\r\n
+ \ \"2603:1010:101::620/123\",\r\n \"2603:1010:101::640/122\",\r\n
+ \ \"2603:1010:304::620/123\",\r\n \"2603:1010:304::640/122\",\r\n
+ \ \"2603:1010:404::620/123\",\r\n \"2603:1010:404::640/122\",\r\n
+ \ \"2603:1020:5::/122\",\r\n \"2603:1020:5::40/123\",\r\n
+ \ \"2603:1020:5:1::5e0/123\",\r\n \"2603:1020:5:1::600/122\",\r\n
+ \ \"2603:1020:206::/122\",\r\n \"2603:1020:206::40/123\",\r\n
+ \ \"2603:1020:206:1::5e0/123\",\r\n \"2603:1020:206:1::600/122\",\r\n
+ \ \"2603:1020:305::620/123\",\r\n \"2603:1020:305::640/122\",\r\n
+ \ \"2603:1020:405::620/123\",\r\n \"2603:1020:405::640/122\",\r\n
+ \ \"2603:1020:605::620/123\",\r\n \"2603:1020:605::640/122\",\r\n
+ \ \"2603:1020:705::/122\",\r\n \"2603:1020:705::40/123\",\r\n
+ \ \"2603:1020:705:1::5e0/123\",\r\n \"2603:1020:705:1::600/122\",\r\n
+ \ \"2603:1020:805::/122\",\r\n \"2603:1020:805::40/123\",\r\n
+ \ \"2603:1020:805:1::5e0/123\",\r\n \"2603:1020:805:1::600/122\",\r\n
+ \ \"2603:1020:905::620/123\",\r\n \"2603:1020:905::640/122\",\r\n
+ \ \"2603:1020:a04::/122\",\r\n \"2603:1020:a04::40/123\",\r\n
+ \ \"2603:1020:a04:1::5e0/123\",\r\n \"2603:1020:a04:1::600/122\",\r\n
+ \ \"2603:1020:b04::620/123\",\r\n \"2603:1020:b04::640/122\",\r\n
+ \ \"2603:1020:c04::/122\",\r\n \"2603:1020:c04::40/123\",\r\n
+ \ \"2603:1020:c04:1::5e0/123\",\r\n \"2603:1020:c04:1::600/122\",\r\n
+ \ \"2603:1020:d04::620/123\",\r\n \"2603:1020:d04::640/122\",\r\n
+ \ \"2603:1020:e04::/122\",\r\n \"2603:1020:e04::40/123\",\r\n
+ \ \"2603:1020:e04:1::5e0/123\",\r\n \"2603:1020:e04:1::600/122\",\r\n
+ \ \"2603:1020:f04::620/123\",\r\n \"2603:1020:f04::640/122\",\r\n
+ \ \"2603:1020:1004::5e0/123\",\r\n \"2603:1020:1004::600/122\",\r\n
+ \ \"2603:1020:1004:1::/122\",\r\n \"2603:1020:1004:1::40/123\",\r\n
+ \ \"2603:1020:1104::6a0/123\",\r\n \"2603:1020:1104::6c0/122\",\r\n
+ \ \"2603:1030:f:1::620/123\",\r\n \"2603:1030:f:1::640/122\",\r\n
+ \ \"2603:1030:10::/122\",\r\n \"2603:1030:10::40/123\",\r\n
+ \ \"2603:1030:10:1::5e0/123\",\r\n \"2603:1030:10:1::600/122\",\r\n
+ \ \"2603:1030:104::/122\",\r\n \"2603:1030:104::40/123\",\r\n
+ \ \"2603:1030:104:1::5e0/123\",\r\n \"2603:1030:104:1::600/122\",\r\n
+ \ \"2603:1030:107::6c0/122\",\r\n \"2603:1030:107::700/123\",\r\n
+ \ \"2603:1030:210::/122\",\r\n \"2603:1030:210::40/123\",\r\n
+ \ \"2603:1030:210:1::5e0/123\",\r\n \"2603:1030:210:1::600/122\",\r\n
+ \ \"2603:1030:40b:1::5e0/123\",\r\n \"2603:1030:40b:1::600/122\",\r\n
+ \ \"2603:1030:40c::/122\",\r\n \"2603:1030:40c::40/123\",\r\n
+ \ \"2603:1030:40c:1::5e0/123\",\r\n \"2603:1030:40c:1::600/122\",\r\n
+ \ \"2603:1030:504::/122\",\r\n \"2603:1030:504::40/123\",\r\n
+ \ \"2603:1030:504:1::5e0/123\",\r\n \"2603:1030:504:1::600/122\",\r\n
+ \ \"2603:1030:608::620/123\",\r\n \"2603:1030:608::640/122\",\r\n
+ \ \"2603:1030:807::/122\",\r\n \"2603:1030:807::40/123\",\r\n
+ \ \"2603:1030:807:1::5e0/123\",\r\n \"2603:1030:807:1::600/122\",\r\n
+ \ \"2603:1030:a07::620/123\",\r\n \"2603:1030:a07::640/122\",\r\n
+ \ \"2603:1030:b04::620/123\",\r\n \"2603:1030:b04::640/122\",\r\n
+ \ \"2603:1030:c06:1::5e0/123\",\r\n \"2603:1030:c06:1::600/122\",\r\n
+ \ \"2603:1030:f05::/122\",\r\n \"2603:1030:f05::40/123\",\r\n
+ \ \"2603:1030:f05:1::5e0/123\",\r\n \"2603:1030:f05:1::600/122\",\r\n
+ \ \"2603:1030:1005::620/123\",\r\n \"2603:1030:1005::640/122\",\r\n
+ \ \"2603:1040:5::100/122\",\r\n \"2603:1040:5::140/123\",\r\n
+ \ \"2603:1040:5:1::5e0/123\",\r\n \"2603:1040:5:1::600/122\",\r\n
+ \ \"2603:1040:207::620/123\",\r\n \"2603:1040:207::640/122\",\r\n
+ \ \"2603:1040:407::/122\",\r\n \"2603:1040:407::40/123\",\r\n
+ \ \"2603:1040:407:1::5e0/123\",\r\n \"2603:1040:407:1::600/122\",\r\n
+ \ \"2603:1040:606::620/123\",\r\n \"2603:1040:606::640/122\",\r\n
+ \ \"2603:1040:806::620/123\",\r\n \"2603:1040:806::640/122\",\r\n
+ \ \"2603:1040:904::/122\",\r\n \"2603:1040:904::40/123\",\r\n
+ \ \"2603:1040:904:1::5e0/123\",\r\n \"2603:1040:904:1::600/122\",\r\n
+ \ \"2603:1040:a06::100/122\",\r\n \"2603:1040:a06::140/123\",\r\n
+ \ \"2603:1040:a06:1::5e0/123\",\r\n \"2603:1040:a06:1::600/122\",\r\n
+ \ \"2603:1040:b04::620/123\",\r\n \"2603:1040:b04::640/122\",\r\n
+ \ \"2603:1040:c06::620/123\",\r\n \"2603:1040:c06::640/122\",\r\n
+ \ \"2603:1040:d04::5e0/123\",\r\n \"2603:1040:d04::600/122\",\r\n
+ \ \"2603:1040:d04:1::/122\",\r\n \"2603:1040:d04:1::40/123\",\r\n
+ \ \"2603:1040:f05::/122\",\r\n \"2603:1040:f05::40/123\",\r\n
+ \ \"2603:1040:f05:1::5e0/123\",\r\n \"2603:1040:f05:1::600/122\",\r\n
+ \ \"2603:1040:1104::6a0/123\",\r\n \"2603:1040:1104::6c0/122\",\r\n
+ \ \"2603:1050:6::/122\",\r\n \"2603:1050:6::40/123\",\r\n
+ \ \"2603:1050:6:1::5e0/123\",\r\n \"2603:1050:6:1::600/122\",\r\n
+ \ \"2603:1050:403::5e0/123\",\r\n \"2603:1050:403::600/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline\",\r\n
+ \ \"id\": \"PowerQueryOnline\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.120.120/31\",\r\n \"20.37.64.120/31\",\r\n
+ \ \"20.37.152.70/31\",\r\n \"20.37.192.70/31\",\r\n \"20.37.224.120/31\",\r\n
+ \ \"20.38.80.70/31\",\r\n \"20.38.136.68/31\",\r\n \"20.39.11.24/31\",\r\n
+ \ \"20.41.0.68/30\",\r\n \"20.41.64.70/31\",\r\n \"20.41.65.144/31\",\r\n
+ \ \"20.41.192.120/31\",\r\n \"20.42.4.200/30\",\r\n \"20.42.128.70/31\",\r\n
+ \ \"20.42.129.184/29\",\r\n \"20.42.224.120/31\",\r\n \"20.43.40.70/31\",\r\n
+ \ \"20.43.64.70/31\",\r\n \"20.43.128.70/31\",\r\n \"20.45.112.120/31\",\r\n
+ \ \"20.45.192.120/31\",\r\n \"20.72.16.20/31\",\r\n \"20.150.160.108/31\",\r\n
+ \ \"20.189.104.68/31\",\r\n \"20.192.160.20/31\",\r\n \"20.192.225.32/31\",\r\n
+ \ \"40.67.48.120/31\",\r\n \"40.74.30.104/30\",\r\n \"40.80.56.120/31\",\r\n
+ \ \"40.80.168.120/31\",\r\n \"40.80.184.68/31\",\r\n \"40.82.253.72/29\",\r\n
+ \ \"40.89.16.120/31\",\r\n \"40.119.8.74/31\",\r\n \"51.12.46.228/31\",\r\n
+ \ \"51.12.198.208/31\",\r\n \"51.104.24.70/31\",\r\n \"51.105.80.120/31\",\r\n
+ \ \"51.105.88.120/31\",\r\n \"51.107.48.70/31\",\r\n \"51.107.144.120/31\",\r\n
+ \ \"51.116.48.70/31\",\r\n \"51.116.144.70/31\",\r\n \"51.120.40.70/31\",\r\n
+ \ \"51.120.224.120/31\",\r\n \"51.137.160.68/31\",\r\n \"51.143.192.120/31\",\r\n
+ \ \"52.140.104.70/31\",\r\n \"52.150.139.72/30\",\r\n \"52.228.80.70/31\",\r\n
+ \ \"102.133.56.96/31\",\r\n \"102.133.216.70/31\",\r\n \"191.233.8.20/31\",\r\n
+ \ \"191.235.224.70/31\",\r\n \"2603:1000:4::200/123\",\r\n
+ \ \"2603:1000:104:1::200/123\",\r\n \"2603:1010:6:1::200/123\",\r\n
+ \ \"2603:1010:101::200/123\",\r\n \"2603:1010:304::200/123\",\r\n
+ \ \"2603:1010:404::200/123\",\r\n \"2603:1020:5:1::200/123\",\r\n
+ \ \"2603:1020:206:1::200/123\",\r\n \"2603:1020:305::200/123\",\r\n
+ \ \"2603:1020:405::200/123\",\r\n \"2603:1020:605::200/123\",\r\n
+ \ \"2603:1020:705:1::200/123\",\r\n \"2603:1020:805:1::200/123\",\r\n
+ \ \"2603:1020:905::200/123\",\r\n \"2603:1020:a04:1::200/123\",\r\n
+ \ \"2603:1020:b04::200/123\",\r\n \"2603:1020:c04:1::200/123\",\r\n
+ \ \"2603:1020:d04::200/123\",\r\n \"2603:1020:e04:1::200/123\",\r\n
+ \ \"2603:1020:f04::200/123\",\r\n \"2603:1020:1004::200/123\",\r\n
+ \ \"2603:1020:1104::200/123\",\r\n \"2603:1030:f:1::200/123\",\r\n
+ \ \"2603:1030:10:1::200/123\",\r\n \"2603:1030:104:1::200/123\",\r\n
+ \ \"2603:1030:107::200/123\",\r\n \"2603:1030:210:1::200/123\",\r\n
+ \ \"2603:1030:40b:1::200/123\",\r\n \"2603:1030:40c:1::200/123\",\r\n
+ \ \"2603:1030:504:1::200/123\",\r\n \"2603:1030:608::200/123\",\r\n
+ \ \"2603:1030:807:1::200/123\",\r\n \"2603:1030:a07::200/123\",\r\n
+ \ \"2603:1030:b04::200/123\",\r\n \"2603:1030:c06:1::200/123\",\r\n
+ \ \"2603:1030:f05:1::200/123\",\r\n \"2603:1030:1005::200/123\",\r\n
+ \ \"2603:1040:5:1::200/123\",\r\n \"2603:1040:207::200/123\",\r\n
+ \ \"2603:1040:407:1::200/123\",\r\n \"2603:1040:606::200/123\",\r\n
+ \ \"2603:1040:806::200/123\",\r\n \"2603:1040:904:1::200/123\",\r\n
+ \ \"2603:1040:a06:1::200/123\",\r\n \"2603:1040:b04::200/123\",\r\n
+ \ \"2603:1040:c06::200/123\",\r\n \"2603:1040:d04::200/123\",\r\n
+ \ \"2603:1040:f05:1::200/123\",\r\n \"2603:1040:1104::200/123\",\r\n
+ \ \"2603:1050:6:1::200/123\",\r\n \"2603:1050:403::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.120/31\",\r\n \"2603:1010:304::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaCentral2\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.120/31\",\r\n \"2603:1010:404::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n
+ \ \"id\": \"PowerQueryOnline.AustraliaSoutheast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiasoutheast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.42.224.120/31\",\r\n \"2603:1010:101::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.CentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.CentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"centralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.152.70/31\",\r\n \"2603:1030:10:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.EastUS2\",\r\n
+ \ \"id\": \"PowerQueryOnline.EastUS2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.0.68/30\",\r\n \"2603:1030:40c:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.FranceCentral\",\r\n
+ \ \"id\": \"PowerQueryOnline.FranceCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"centralfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.43.40.70/31\",\r\n \"2603:1020:805:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.JapanWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.JapanWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.56.120/31\",\r\n \"2603:1040:606::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.KoreaSouth\",\r\n
+ \ \"id\": \"PowerQueryOnline.KoreaSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"koreasouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.80.168.120/31\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.NorwayEast\",\r\n
+ \ \"id\": \"PowerQueryOnline.NorwayEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.40.70/31\",\r\n \"2603:1020:e04:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SouthCentralUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.SouthCentralUS\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.119.8.74/31\",\r\n \"2603:1030:807:1::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.SwitzerlandWest\",\r\n
+ \ \"id\": \"PowerQueryOnline.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.120/31\",\r\n \"2603:1020:b04::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.UKSouth2\",\r\n
+ \ \"id\": \"PowerQueryOnline.UKSouth2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uksouth2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.143.192.120/31\",\r\n \"2603:1020:405::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"PowerQueryOnline.WestUS\",\r\n
+ \ \"id\": \"PowerQueryOnline.WestUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westus\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"PowerQueryOnline\",\r\n \"addressPrefixes\":
+ [\r\n \"40.82.253.72/29\",\r\n \"2603:1030:a07::200/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus\",\r\n
+ \ \"id\": \"ServiceBus\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"5\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.68.110.36/32\",\r\n
+ \ \"13.69.64.64/29\",\r\n \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n
+ \ \"13.69.227.64/29\",\r\n \"13.69.233.192/26\",\r\n \"13.70.72.16/29\",\r\n
+ \ \"13.70.114.0/26\",\r\n \"13.70.186.33/32\",\r\n \"13.71.114.157/32\",\r\n
+ \ \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n \"13.71.194.96/28\",\r\n
+ \ \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n \"13.75.34.128/28\",\r\n
+ \ \"13.76.141.36/32\",\r\n \"13.77.50.16/28\",\r\n \"13.78.94.187/32\",\r\n
+ \ \"13.78.106.80/29\",\r\n \"13.85.81.218/32\",\r\n \"13.87.35.8/32\",\r\n
+ \ \"13.87.56.64/28\",\r\n \"13.87.122.64/28\",\r\n \"13.88.10.93/32\",\r\n
+ \ \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n \"20.36.106.224/27\",\r\n
+ \ \"20.36.114.128/27\",\r\n \"20.36.144.0/26\",\r\n \"20.37.74.32/27\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.42.65.0/26\",\r\n \"20.42.68.0/26\",\r\n
+ \ \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n \"20.43.126.0/26\",\r\n
+ \ \"20.44.2.8/29\",\r\n \"20.44.13.0/26\",\r\n \"20.44.26.128/29\",\r\n
+ \ \"20.44.31.64/26\",\r\n \"20.45.122.128/29\",\r\n \"20.45.126.128/26\",\r\n
+ \ \"20.47.216.0/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n
+ \ \"20.50.201.0/26\",\r\n \"20.52.64.64/26\",\r\n \"20.72.27.144/29\",\r\n
+ \ \"20.72.27.160/28\",\r\n \"20.89.0.0/26\",\r\n \"20.150.160.216/29\",\r\n
+ \ \"20.150.170.8/29\",\r\n \"20.150.175.0/26\",\r\n \"20.150.178.128/29\",\r\n
+ \ \"20.150.182.64/28\",\r\n \"20.150.186.128/29\",\r\n \"20.150.189.48/28\",\r\n
+ \ \"20.150.189.64/26\",\r\n \"20.151.32.0/26\",\r\n \"20.192.32.240/28\",\r\n
+ \ \"20.192.98.128/29\",\r\n \"20.192.101.192/26\",\r\n \"20.192.160.40/29\",\r\n
+ \ \"20.192.225.56/29\",\r\n \"20.192.234.8/29\",\r\n \"20.193.204.104/29\",\r\n
+ \ \"20.193.204.112/28\",\r\n \"20.194.67.208/29\",\r\n \"20.194.68.128/28\",\r\n
+ \ \"20.194.128.128/26\",\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"23.97.120.37/32\",\r\n \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n
+ \ \"23.98.112.128/26\",\r\n \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n
+ \ \"40.67.58.8/29\",\r\n \"40.67.72.0/26\",\r\n \"40.68.127.68/32\",\r\n
+ \ \"40.69.106.16/28\",\r\n \"40.70.146.64/29\",\r\n \"40.70.151.128/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n \"40.75.34.16/29\",\r\n
+ \ \"40.78.194.16/28\",\r\n \"40.78.202.16/28\",\r\n \"40.78.226.192/29\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"40.78.242.144/29\",\r\n \"40.78.247.192/26\",\r\n
+ \ \"40.78.250.80/29\",\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"40.79.154.88/29\",\r\n \"40.79.162.16/29\",\r\n \"40.79.166.128/26\",\r\n
+ \ \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n \"40.79.178.16/28\",\r\n
+ \ \"40.79.186.64/27\",\r\n \"40.79.194.80/29\",\r\n \"40.80.50.128/29\",\r\n
+ \ \"40.86.91.130/32\",\r\n \"40.89.121.192/26\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"40.124.65.0/26\",\r\n \"51.11.192.64/26\",\r\n \"51.12.98.8/29\",\r\n
+ \ \"51.12.101.224/28\",\r\n \"51.12.202.8/29\",\r\n \"51.12.206.0/28\",\r\n
+ \ \"51.12.226.128/29\",\r\n \"51.12.234.128/29\",\r\n \"51.13.0.128/26\",\r\n
+ \ \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n \"51.105.74.128/29\",\r\n
+ \ \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n \"51.107.154.8/29\",\r\n
+ \ \"51.116.58.8/29\",\r\n \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n
+ \ \"51.116.246.128/26\",\r\n \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n
+ \ \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n \"51.120.109.208/28\",\r\n
+ \ \"51.120.210.128/29\",\r\n \"51.120.218.8/29\",\r\n \"51.132.192.128/26\",\r\n
+ \ \"51.140.43.12/32\",\r\n \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n
+ \ \"51.140.210.64/28\",\r\n \"51.141.1.129/32\",\r\n \"51.142.210.16/32\",\r\n
+ \ \"52.138.71.95/32\",\r\n \"52.138.90.16/29\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"52.161.17.198/32\",\r\n \"52.162.106.128/28\",\r\n \"52.167.106.64/29\",\r\n
+ \ \"52.167.109.128/26\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"52.172.220.188/32\",\r\n \"52.178.17.64/26\",\r\n
+ \ \"52.180.178.204/32\",\r\n \"52.182.138.192/29\",\r\n \"52.182.143.0/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"52.231.146.64/28\",\r\n \"52.232.119.191/32\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"52.242.36.0/32\",\r\n \"52.246.154.128/29\",\r\n
+ \ \"52.246.158.192/26\",\r\n \"65.52.219.186/32\",\r\n \"65.52.250.64/27\",\r\n
+ \ \"102.37.64.192/26\",\r\n \"102.37.72.0/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"104.208.16.64/29\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"104.211.81.16/29\",\r\n \"104.211.146.16/28\",\r\n
+ \ \"104.211.190.88/32\",\r\n \"104.214.18.160/29\",\r\n \"168.61.142.56/29\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.8.40/29\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"191.237.224.64/26\",\r\n
+ \ \"207.46.138.15/32\",\r\n \"2603:1000:4::220/123\",\r\n
+ \ \"2603:1000:4:402::170/125\",\r\n \"2603:1000:104:1::220/123\",\r\n
+ \ \"2603:1000:104:402::170/125\",\r\n \"2603:1000:104:802::150/125\",\r\n
+ \ \"2603:1000:104:c02::150/125\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\",\r\n \"2603:1010:404::220/123\",\r\n
+ \ \"2603:1010:404:402::170/125\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\",\r\n \"2603:1020:305::220/123\",\r\n
+ \ \"2603:1020:305:402::170/125\",\r\n \"2603:1020:405::220/123\",\r\n
+ \ \"2603:1020:405:402::170/125\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\",\r\n \"2603:1020:a04:1::220/123\",\r\n
+ \ \"2603:1020:a04:402::170/125\",\r\n \"2603:1020:a04:802::150/125\",\r\n
+ \ \"2603:1020:a04:c02::150/125\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\",\r\n \"2603:1020:1004::220/123\",\r\n
+ \ \"2603:1020:1004:800::e0/124\",\r\n \"2603:1020:1004:800::f0/125\",\r\n
+ \ \"2603:1020:1004:800::358/125\",\r\n \"2603:1020:1004:800::3c0/124\",\r\n
+ \ \"2603:1020:1004:800::3e8/125\",\r\n \"2603:1020:1004:c02::180/123\",\r\n
+ \ \"2603:1020:1004:c02::1a0/125\",\r\n \"2603:1020:1104:400::170/125\",\r\n
+ \ \"2603:1030:f:1::220/123\",\r\n \"2603:1030:f:400::970/125\",\r\n
+ \ \"2603:1030:10:1::220/123\",\r\n \"2603:1030:10:402::170/125\",\r\n
+ \ \"2603:1030:10:802::150/125\",\r\n \"2603:1030:10:c02::150/125\",\r\n
+ \ \"2603:1030:104:1::220/123\",\r\n \"2603:1030:104:402::170/125\",\r\n
+ \ \"2603:1030:107:400::d8/125\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\",\r\n \"2603:1030:504:1::220/123\",\r\n
+ \ \"2603:1030:504:802::e0/124\",\r\n \"2603:1030:504:802::f0/125\",\r\n
+ \ \"2603:1030:504:802::358/125\",\r\n \"2603:1030:608::220/123\",\r\n
+ \ \"2603:1030:608:402::170/125\",\r\n \"2603:1030:807:1::220/123\",\r\n
+ \ \"2603:1030:807:402::170/125\",\r\n \"2603:1030:807:802::150/125\",\r\n
+ \ \"2603:1030:807:c02::150/125\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\",\r\n \"2603:1030:b04::220/123\",\r\n
+ \ \"2603:1030:b04:402::170/125\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\",\r\n \"2603:1040:207::220/123\",\r\n
+ \ \"2603:1040:207:402::170/125\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\",\r\n \"2603:1040:606::220/123\",\r\n
+ \ \"2603:1040:606:402::170/125\",\r\n \"2603:1040:806::220/123\",\r\n
+ \ \"2603:1040:806:402::170/125\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\",\r\n \"2603:1040:c06::220/123\",\r\n
+ \ \"2603:1040:c06:402::170/125\",\r\n \"2603:1040:d04::220/123\",\r\n
+ \ \"2603:1040:d04:800::e0/124\",\r\n \"2603:1040:d04:800::f0/125\",\r\n
+ \ \"2603:1040:d04:800::358/125\",\r\n \"2603:1040:d04:800::3c0/125\",\r\n
+ \ \"2603:1040:d04:800::3e8/125\",\r\n \"2603:1040:f05:1::220/123\",\r\n
+ \ \"2603:1040:f05:402::170/125\",\r\n \"2603:1040:f05:802::150/125\",\r\n
+ \ \"2603:1040:f05:c02::150/125\",\r\n \"2603:1040:1104:400::170/125\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\",\r\n
+ \ \"2603:1050:403::220/123\",\r\n \"2603:1050:403:400::148/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaCentral\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.106.224/27\",\r\n \"2603:1010:304::220/123\",\r\n
+ \ \"2603:1010:304:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaCentral2\",\r\n \"id\":
+ \"ServiceBus.AustraliaCentral2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiacentral2\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.36.114.128/27\",\r\n
+ \ \"2603:1010:404::220/123\",\r\n \"2603:1010:404:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.AustraliaEast\",\r\n
+ \ \"id\": \"ServiceBus.AustraliaEast\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.72.16/29\",\r\n \"13.70.114.0/26\",\r\n \"40.79.162.16/29\",\r\n
+ \ \"40.79.166.128/26\",\r\n \"40.79.170.16/29\",\r\n \"40.79.173.64/26\",\r\n
+ \ \"52.187.192.243/32\",\r\n \"2603:1010:6:1::220/123\",\r\n
+ \ \"2603:1010:6:402::170/125\",\r\n \"2603:1010:6:802::150/125\",\r\n
+ \ \"2603:1010:6:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.AustraliaSoutheast\",\r\n \"id\":
+ \"ServiceBus.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.70.186.33/32\",\r\n
+ \ \"13.77.50.16/28\",\r\n \"2603:1010:101::220/123\",\r\n
+ \ \"2603:1010:101:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.BrazilSouth\",\r\n \"id\": \"ServiceBus.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.195.137.128/26\",\r\n \"20.195.152.0/26\",\r\n
+ \ \"191.232.184.253/32\",\r\n \"191.233.203.16/29\",\r\n
+ \ \"191.234.146.128/29\",\r\n \"191.234.150.128/26\",\r\n
+ \ \"191.234.154.128/29\",\r\n \"191.234.157.144/28\",\r\n
+ \ \"2603:1050:6:1::220/123\",\r\n \"2603:1050:6:402::170/125\",\r\n
+ \ \"2603:1050:6:802::150/125\",\r\n \"2603:1050:6:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.CanadaCentral\",\r\n
+ \ \"id\": \"ServiceBus.CanadaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"canadacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.170.32/29\",\r\n \"13.71.177.64/26\",\r\n
+ \ \"20.38.146.128/29\",\r\n \"20.151.32.0/26\",\r\n \"52.233.33.226/32\",\r\n
+ \ \"52.246.154.128/29\",\r\n \"52.246.158.192/26\",\r\n \"2603:1030:f05:1::220/123\",\r\n
+ \ \"2603:1030:f05:402::170/125\",\r\n \"2603:1030:f05:802::150/125\",\r\n
+ \ \"2603:1030:f05:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CanadaEast\",\r\n \"id\": \"ServiceBus.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.106.16/28\",\r\n \"52.242.36.0/32\",\r\n \"2603:1030:1005::220/123\",\r\n
+ \ \"2603:1030:1005:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralIndia\",\r\n \"id\": \"ServiceBus.CentralIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.126.0/26\",\r\n \"20.192.98.128/29\",\r\n
+ \ \"20.192.101.192/26\",\r\n \"40.80.50.128/29\",\r\n \"52.172.220.188/32\",\r\n
+ \ \"104.211.81.16/29\",\r\n \"2603:1040:a06:1::220/123\",\r\n
+ \ \"2603:1040:a06:402::170/125\",\r\n \"2603:1040:a06:802::150/125\",\r\n
+ \ \"2603:1040:a06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUS\",\r\n \"id\": \"ServiceBus.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.89.170.192/29\",\r\n \"13.89.178.128/26\",\r\n
+ \ \"20.44.13.0/26\",\r\n \"40.86.91.130/32\",\r\n \"52.182.138.192/29\",\r\n
+ \ \"52.182.143.0/26\",\r\n \"104.208.16.64/29\",\r\n \"2603:1030:10:1::220/123\",\r\n
+ \ \"2603:1030:10:402::170/125\",\r\n \"2603:1030:10:802::150/125\",\r\n
+ \ \"2603:1030:10:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.CentralUSEUAP\",\r\n \"id\": \"ServiceBus.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.202.16/28\",\r\n \"52.180.178.204/32\",\r\n
+ \ \"168.61.142.56/29\",\r\n \"2603:1030:f:1::220/123\",\r\n
+ \ \"2603:1030:f:400::970/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastAsia\",\r\n \"id\": \"ServiceBus.EastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.75.34.128/28\",\r\n \"207.46.138.15/32\",\r\n
+ \ \"2603:1040:207::220/123\",\r\n \"2603:1040:207:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.EastUS\",\r\n
+ \ \"id\": \"ServiceBus.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.0/26\",\r\n
+ \ \"20.42.68.0/26\",\r\n \"20.42.72.192/26\",\r\n \"20.42.73.64/26\",\r\n
+ \ \"40.71.10.192/29\",\r\n \"40.78.226.192/29\",\r\n \"40.79.154.88/29\",\r\n
+ \ \"40.114.86.33/32\",\r\n \"52.168.29.86/32\",\r\n \"52.168.112.128/26\",\r\n
+ \ \"52.168.116.192/26\",\r\n \"2603:1030:210:1::220/123\",\r\n
+ \ \"2603:1030:210:402::170/125\",\r\n \"2603:1030:210:802::150/125\",\r\n
+ \ \"2603:1030:210:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2\",\r\n \"id\": \"ServiceBus.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.110.36/32\",\r\n \"20.36.144.0/26\",\r\n \"40.70.146.64/29\",\r\n
+ \ \"40.70.151.128/26\",\r\n \"52.167.106.64/29\",\r\n \"52.167.109.128/26\",\r\n
+ \ \"104.208.144.64/29\",\r\n \"2603:1030:40c:1::220/123\",\r\n
+ \ \"2603:1030:40c:402::170/125\",\r\n \"2603:1030:40c:802::150/125\",\r\n
+ \ \"2603:1030:40c:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.EastUS2EUAP\",\r\n \"id\": \"ServiceBus.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.216.0/26\",\r\n \"40.74.146.32/29\",\r\n \"40.74.150.192/26\",\r\n
+ \ \"40.75.34.16/29\",\r\n \"40.89.121.192/26\",\r\n \"52.138.71.95/32\",\r\n
+ \ \"52.138.90.16/29\",\r\n \"2603:1030:40b:1::220/123\",\r\n
+ \ \"2603:1030:40b:400::970/125\",\r\n \"2603:1030:40b:800::150/125\",\r\n
+ \ \"2603:1030:40b:c00::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceCentral\",\r\n \"id\": \"ServiceBus.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.130.32/29\",\r\n \"40.79.138.16/29\",\r\n
+ \ \"40.79.141.192/26\",\r\n \"40.79.146.16/29\",\r\n \"40.79.149.0/26\",\r\n
+ \ \"51.11.192.64/26\",\r\n \"2603:1020:805:1::220/123\",\r\n
+ \ \"2603:1020:805:402::170/125\",\r\n \"2603:1020:805:802::150/125\",\r\n
+ \ \"2603:1020:805:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.FranceSouth\",\r\n \"id\": \"ServiceBus.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.178.16/28\",\r\n \"2603:1020:905::220/123\",\r\n
+ \ \"2603:1020:905:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyNorth\",\r\n \"id\": \"ServiceBus.GermanyNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"germanyn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.116.58.8/29\",\r\n \"2603:1020:d04::220/123\",\r\n
+ \ \"2603:1020:d04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.GermanyWestCentral\",\r\n \"id\":
+ \"ServiceBus.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"20.52.64.64/26\",\r\n
+ \ \"51.116.154.72/29\",\r\n \"51.116.242.128/29\",\r\n \"51.116.246.128/26\",\r\n
+ \ \"51.116.250.128/29\",\r\n \"51.116.253.192/26\",\r\n \"2603:1020:c04:1::220/123\",\r\n
+ \ \"2603:1020:c04:402::170/125\",\r\n \"2603:1020:c04:802::150/125\",\r\n
+ \ \"2603:1020:c04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanEast\",\r\n \"id\": \"ServiceBus.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.94.187/32\",\r\n \"13.78.106.80/29\",\r\n
+ \ \"20.89.0.0/26\",\r\n \"20.194.128.128/26\",\r\n \"40.79.186.64/27\",\r\n
+ \ \"40.79.194.80/29\",\r\n \"2603:1040:407:1::220/123\",\r\n
+ \ \"2603:1040:407:402::170/125\",\r\n \"2603:1040:407:802::150/125\",\r\n
+ \ \"2603:1040:407:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.JapanWest\",\r\n \"id\": \"ServiceBus.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.100.32/28\",\r\n \"40.74.122.78/32\",\r\n
+ \ \"2603:1040:606::220/123\",\r\n \"2603:1040:606:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaCentral\",\r\n
+ \ \"id\": \"ServiceBus.KoreaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"4\",\r\n \"region\": \"koreacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.26.128/29\",\r\n \"20.44.31.64/26\",\r\n \"20.194.67.208/29\",\r\n
+ \ \"20.194.68.128/28\",\r\n \"52.231.18.32/29\",\r\n \"52.231.23.128/26\",\r\n
+ \ \"2603:1040:f05:1::220/123\",\r\n \"2603:1040:f05:402::170/125\",\r\n
+ \ \"2603:1040:f05:802::150/125\",\r\n \"2603:1040:f05:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.KoreaSouth\",\r\n
+ \ \"id\": \"ServiceBus.KoreaSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"koreasouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"52.231.146.64/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.NorthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"52.162.106.128/28\",\r\n \"65.52.219.186/32\",\r\n
+ \ \"2603:1030:608::220/123\",\r\n \"2603:1030:608:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.NorthEurope\",\r\n
+ \ \"id\": \"ServiceBus.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.227.64/29\",\r\n
+ \ \"13.69.233.192/26\",\r\n \"13.74.107.64/29\",\r\n \"13.74.142.88/32\",\r\n
+ \ \"20.50.72.0/26\",\r\n \"20.50.80.0/26\",\r\n \"52.138.226.64/29\",\r\n
+ \ \"191.235.170.182/32\",\r\n \"2603:1020:5:1::220/123\",\r\n
+ \ \"2603:1020:5:402::170/125\",\r\n \"2603:1020:5:802::150/125\",\r\n
+ \ \"2603:1020:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayEast\",\r\n \"id\": \"ServiceBus.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.0.128/26\",\r\n \"51.120.98.16/29\",\r\n \"51.120.106.128/29\",\r\n
+ \ \"51.120.109.208/28\",\r\n \"51.120.210.128/29\",\r\n \"2603:1020:e04:1::220/123\",\r\n
+ \ \"2603:1020:e04:402::170/125\",\r\n \"2603:1020:e04:802::150/125\",\r\n
+ \ \"2603:1020:e04:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.NorwayWest\",\r\n \"id\": \"ServiceBus.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.120.218.8/29\",\r\n \"2603:1020:f04::220/123\",\r\n
+ \ \"2603:1020:f04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthAfricaNorth\",\r\n \"id\":
+ \"ServiceBus.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"102.37.72.0/26\",\r\n
+ \ \"102.133.122.128/29\",\r\n \"102.133.126.192/26\",\r\n
+ \ \"102.133.154.8/29\",\r\n \"102.133.250.128/29\",\r\n \"102.133.253.192/26\",\r\n
+ \ \"2603:1000:104:1::220/123\",\r\n \"2603:1000:104:402::170/125\",\r\n
+ \ \"2603:1000:104:802::150/125\",\r\n \"2603:1000:104:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthAfricaWest\",\r\n
+ \ \"id\": \"ServiceBus.SouthAfricaWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southafricawest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"102.37.64.192/26\",\r\n \"102.133.26.8/29\",\r\n
+ \ \"2603:1000:4::220/123\",\r\n \"2603:1000:4:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SouthCentralUS\",\r\n
+ \ \"id\": \"ServiceBus.SouthCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.85.81.218/32\",\r\n \"20.45.122.128/29\",\r\n
+ \ \"20.45.126.128/26\",\r\n \"20.49.91.224/29\",\r\n \"20.49.91.240/28\",\r\n
+ \ \"20.49.95.64/26\",\r\n \"40.124.65.0/26\",\r\n \"104.214.18.160/29\",\r\n
+ \ \"2603:1030:807:1::220/123\",\r\n \"2603:1030:807:402::170/125\",\r\n
+ \ \"2603:1030:807:802::150/125\",\r\n \"2603:1030:807:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SoutheastAsia\",\r\n
+ \ \"id\": \"ServiceBus.SoutheastAsia\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.8.96/29\",\r\n \"13.67.20.0/26\",\r\n \"13.76.141.36/32\",\r\n
+ \ \"23.98.82.96/29\",\r\n \"23.98.87.128/26\",\r\n \"23.98.112.128/26\",\r\n
+ \ \"40.78.234.32/29\",\r\n \"2603:1040:5:1::220/123\",\r\n
+ \ \"2603:1040:5:402::170/125\",\r\n \"2603:1040:5:802::150/125\",\r\n
+ \ \"2603:1040:5:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.SouthIndia\",\r\n \"id\": \"ServiceBus.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.114.157/32\",\r\n \"40.78.194.16/28\",\r\n
+ \ \"2603:1040:c06::220/123\",\r\n \"2603:1040:c06:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandNorth\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"3\",\r\n \"region\": \"switzerlandn\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.58.8/29\",\r\n \"51.107.128.192/26\",\r\n
+ \ \"2603:1020:a04:1::220/123\",\r\n \"2603:1020:a04:402::170/125\",\r\n
+ \ \"2603:1020:a04:802::150/125\",\r\n \"2603:1020:a04:c02::150/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.SwitzerlandWest\",\r\n
+ \ \"id\": \"ServiceBus.SwitzerlandWest\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.154.8/29\",\r\n \"2603:1020:b04::220/123\",\r\n
+ \ \"2603:1020:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAECentral\",\r\n \"id\": \"ServiceBus.UAECentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uaecentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.32/27\",\r\n \"2603:1040:b04::220/123\",\r\n
+ \ \"2603:1040:b04:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UAENorth\",\r\n \"id\": \"ServiceBus.UAENorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uaenorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"40.120.74.24/29\",\r\n \"40.120.77.192/26\",\r\n
+ \ \"65.52.250.64/27\",\r\n \"2603:1040:904:1::220/123\",\r\n
+ \ \"2603:1040:904:402::170/125\",\r\n \"2603:1040:904:802::150/125\",\r\n
+ \ \"2603:1040:904:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth\",\r\n \"id\": \"ServiceBus.UKSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"uksouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.66.128/29\",\r\n \"51.105.70.192/26\",\r\n
+ \ \"51.105.74.128/29\",\r\n \"51.132.192.128/26\",\r\n \"51.140.43.12/32\",\r\n
+ \ \"51.140.146.48/29\",\r\n \"51.140.149.128/26\",\r\n \"2603:1020:705:1::220/123\",\r\n
+ \ \"2603:1020:705:402::170/125\",\r\n \"2603:1020:705:802::150/125\",\r\n
+ \ \"2603:1020:705:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.UKSouth2\",\r\n \"id\": \"ServiceBus.UKSouth2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"uksouth2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureServiceBus\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.35.8/32\",\r\n \"13.87.56.64/28\",\r\n
+ \ \"2603:1020:405::220/123\",\r\n \"2603:1020:405:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.UKWest\",\r\n
+ \ \"id\": \"ServiceBus.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"51.140.210.64/28\",\r\n
+ \ \"51.141.1.129/32\",\r\n \"2603:1020:605::220/123\",\r\n
+ \ \"2603:1020:605:402::170/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestCentralUS\",\r\n \"id\": \"ServiceBus.WestCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.194.96/28\",\r\n \"52.161.17.198/32\",\r\n
+ \ \"2603:1030:b04::220/123\",\r\n \"2603:1030:b04:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestEurope\",\r\n
+ \ \"id\": \"ServiceBus.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureServiceBus\",\r\n \"addressPrefixes\": [\r\n \"13.69.64.64/29\",\r\n
+ \ \"13.69.106.64/29\",\r\n \"13.69.111.64/26\",\r\n \"20.50.201.0/26\",\r\n
+ \ \"40.68.127.68/32\",\r\n \"52.178.17.64/26\",\r\n \"52.232.119.191/32\",\r\n
+ \ \"52.236.186.64/29\",\r\n \"2603:1020:206:1::220/123\",\r\n
+ \ \"2603:1020:206:402::170/125\",\r\n \"2603:1020:206:802::150/125\",\r\n
+ \ \"2603:1020:206:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestIndia\",\r\n \"id\": \"ServiceBus.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"104.211.146.16/28\",\r\n \"104.211.190.88/32\",\r\n
+ \ \"2603:1040:806::220/123\",\r\n \"2603:1040:806:402::170/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceBus.WestUS\",\r\n
+ \ \"id\": \"ServiceBus.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.88.10.93/32\",\r\n \"40.112.242.128/28\",\r\n
+ \ \"104.40.15.128/32\",\r\n \"104.45.239.115/32\",\r\n \"2603:1030:a07::220/123\",\r\n
+ \ \"2603:1030:a07:402::8f0/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceBus.WestUS2\",\r\n \"id\": \"ServiceBus.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureServiceBus\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.138.80/29\",\r\n \"13.66.147.192/26\",\r\n
+ \ \"40.64.113.0/26\",\r\n \"40.65.108.146/32\",\r\n \"40.78.242.144/29\",\r\n
+ \ \"40.78.247.192/26\",\r\n \"40.78.250.80/29\",\r\n \"2603:1030:c06:1::220/123\",\r\n
+ \ \"2603:1030:c06:400::970/125\",\r\n \"2603:1030:c06:802::150/125\",\r\n
+ \ \"2603:1030:c06:c02::150/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric\",\r\n \"id\": \"ServiceFabric\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.140.152/29\",\r\n \"13.66.167.194/32\",\r\n
+ \ \"13.66.226.151/32\",\r\n \"13.67.9.136/29\",\r\n \"13.69.64.232/29\",\r\n
+ \ \"13.69.109.136/30\",\r\n \"13.69.227.232/29\",\r\n \"13.70.72.216/29\",\r\n
+ \ \"13.70.78.172/30\",\r\n \"13.71.170.224/29\",\r\n \"13.71.170.248/29\",\r\n
+ \ \"13.71.195.48/29\",\r\n \"13.74.80.74/32\",\r\n \"13.74.111.144/30\",\r\n
+ \ \"13.75.36.80/29\",\r\n \"13.75.41.166/32\",\r\n \"13.75.42.35/32\",\r\n
+ \ \"13.77.52.0/29\",\r\n \"13.78.108.24/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"13.87.32.204/32\",\r\n \"13.87.56.240/29\",\r\n
+ \ \"13.87.98.166/32\",\r\n \"13.87.122.240/29\",\r\n \"13.89.171.104/29\",\r\n
+ \ \"13.91.7.211/32\",\r\n \"13.91.252.58/32\",\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.36.40.70/32\",\r\n \"20.36.72.79/32\",\r\n \"20.36.107.16/29\",\r\n
+ \ \"20.36.114.192/29\",\r\n \"20.37.74.80/29\",\r\n \"20.38.149.192/30\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"20.44.3.24/29\",\r\n
+ \ \"20.44.10.124/30\",\r\n \"20.44.19.0/30\",\r\n \"20.44.29.52/30\",\r\n
+ \ \"20.45.79.240/32\",\r\n \"20.45.123.244/30\",\r\n \"20.49.82.4/30\",\r\n
+ \ \"20.49.90.4/30\",\r\n \"20.72.26.4/30\",\r\n \"20.150.171.72/29\",\r\n
+ \ \"20.150.181.160/30\",\r\n \"20.150.189.28/30\",\r\n \"20.150.225.4/30\",\r\n
+ \ \"20.184.2.84/32\",\r\n \"20.192.32.224/30\",\r\n \"20.192.101.28/30\",\r\n
+ \ \"20.192.235.0/29\",\r\n \"20.193.202.24/29\",\r\n \"20.193.204.100/30\",\r\n
+ \ \"20.194.66.4/30\",\r\n \"23.96.200.228/32\",\r\n \"23.96.210.6/32\",\r\n
+ \ \"23.96.214.100/32\",\r\n \"23.98.86.60/30\",\r\n \"23.99.11.219/32\",\r\n
+ \ \"23.100.199.230/32\",\r\n \"40.67.59.72/29\",\r\n \"40.69.107.0/29\",\r\n
+ \ \"40.69.166.6/32\",\r\n \"40.70.146.232/29\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.74.100.240/29\",\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"40.78.195.0/29\",\r\n
+ \ \"40.78.202.120/29\",\r\n \"40.78.238.60/30\",\r\n \"40.78.245.192/30\",\r\n
+ \ \"40.78.253.64/30\",\r\n \"40.79.114.102/32\",\r\n \"40.79.130.232/29\",\r\n
+ \ \"40.79.139.192/30\",\r\n \"40.79.148.80/30\",\r\n \"40.79.165.80/29\",\r\n
+ \ \"40.79.171.228/30\",\r\n \"40.79.173.0/30\",\r\n \"40.79.179.0/29\",\r\n
+ \ \"40.79.189.60/30\",\r\n \"40.79.197.36/30\",\r\n \"40.80.53.4/30\",\r\n
+ \ \"40.84.62.189/32\",\r\n \"40.84.133.64/32\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"40.86.230.174/32\",\r\n \"40.89.168.15/32\",\r\n \"40.112.243.176/29\",\r\n
+ \ \"40.113.23.157/32\",\r\n \"40.113.88.37/32\",\r\n \"40.115.64.123/32\",\r\n
+ \ \"40.115.113.228/32\",\r\n \"40.120.74.4/30\",\r\n \"40.123.204.26/32\",\r\n
+ \ \"51.12.99.64/29\",\r\n \"51.12.101.168/30\",\r\n \"51.12.203.64/29\",\r\n
+ \ \"51.12.204.240/30\",\r\n \"51.105.69.84/30\",\r\n \"51.105.77.52/30\",\r\n
+ \ \"51.107.59.40/29\",\r\n \"51.107.76.20/32\",\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"51.116.59.40/29\",\r\n \"51.116.155.104/29\",\r\n
+ \ \"51.116.208.26/32\",\r\n \"51.116.232.27/32\",\r\n \"51.116.245.160/30\",\r\n
+ \ \"51.116.253.128/30\",\r\n \"51.120.68.23/32\",\r\n \"51.120.98.240/29\",\r\n
+ \ \"51.120.109.28/30\",\r\n \"51.120.164.23/32\",\r\n \"51.120.219.72/29\",\r\n
+ \ \"51.140.148.24/29\",\r\n \"51.140.184.27/32\",\r\n \"51.140.211.16/29\",\r\n
+ \ \"51.141.8.30/32\",\r\n \"52.136.136.27/32\",\r\n \"52.138.70.82/32\",\r\n
+ \ \"52.138.92.168/30\",\r\n \"52.138.143.55/32\",\r\n \"52.138.229.68/30\",\r\n
+ \ \"52.143.136.15/32\",\r\n \"52.143.184.15/32\",\r\n \"52.151.38.144/32\",\r\n
+ \ \"52.158.236.247/32\",\r\n \"52.162.107.176/29\",\r\n \"52.163.90.165/32\",\r\n
+ \ \"52.163.94.113/32\",\r\n \"52.165.37.188/32\",\r\n \"52.167.0.27/32\",\r\n
+ \ \"52.167.109.68/30\",\r\n \"52.167.227.220/32\",\r\n \"52.174.163.204/32\",\r\n
+ \ \"52.174.164.254/32\",\r\n \"52.178.30.193/32\",\r\n \"52.180.176.84/32\",\r\n
+ \ \"52.182.141.56/30\",\r\n \"52.182.172.232/32\",\r\n \"52.225.184.94/32\",\r\n
+ \ \"52.225.185.159/32\",\r\n \"52.230.8.61/32\",\r\n \"52.231.18.232/29\",\r\n
+ \ \"52.231.32.81/32\",\r\n \"52.231.147.16/29\",\r\n \"52.231.200.124/32\",\r\n
+ \ \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n \"52.246.157.8/30\",\r\n
+ \ \"65.52.250.224/29\",\r\n \"102.37.48.12/32\",\r\n \"102.133.27.24/29\",\r\n
+ \ \"102.133.72.31/32\",\r\n \"102.133.155.24/29\",\r\n \"102.133.160.28/32\",\r\n
+ \ \"102.133.235.169/32\",\r\n \"102.133.251.216/30\",\r\n
+ \ \"104.41.9.53/32\",\r\n \"104.41.187.29/32\",\r\n \"104.42.181.121/32\",\r\n
+ \ \"104.43.213.84/32\",\r\n \"104.45.19.250/32\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"104.210.107.69/32\",\r\n \"104.211.81.216/29\",\r\n \"104.211.103.201/32\",\r\n
+ \ \"104.211.146.240/29\",\r\n \"104.211.164.163/32\",\r\n
+ \ \"104.211.228.68/32\",\r\n \"104.214.19.72/29\",\r\n \"104.215.78.146/32\",\r\n
+ \ \"137.116.252.9/32\",\r\n \"137.135.33.49/32\",\r\n \"168.61.142.48/30\",\r\n
+ \ \"191.233.50.24/29\",\r\n \"191.233.203.216/29\",\r\n \"191.234.149.32/30\",\r\n
+ \ \"191.234.157.128/30\",\r\n \"207.46.234.62/32\",\r\n \"2603:1000:4:402::98/125\",\r\n
+ \ \"2603:1000:104:402::98/125\",\r\n \"2603:1000:104:802::98/125\",\r\n
+ \ \"2603:1000:104:c02::98/125\",\r\n \"2603:1010:6:402::98/125\",\r\n
+ \ \"2603:1010:6:802::98/125\",\r\n \"2603:1010:6:c02::98/125\",\r\n
+ \ \"2603:1010:101:402::98/125\",\r\n \"2603:1010:304:402::98/125\",\r\n
+ \ \"2603:1010:404:402::98/125\",\r\n \"2603:1020:5:402::98/125\",\r\n
+ \ \"2603:1020:5:802::98/125\",\r\n \"2603:1020:5:c02::98/125\",\r\n
+ \ \"2603:1020:206:402::98/125\",\r\n \"2603:1020:206:802::98/125\",\r\n
+ \ \"2603:1020:206:c02::98/125\",\r\n \"2603:1020:305:402::98/125\",\r\n
+ \ \"2603:1020:405:402::98/125\",\r\n \"2603:1020:605:402::98/125\",\r\n
+ \ \"2603:1020:705:402::98/125\",\r\n \"2603:1020:705:802::98/125\",\r\n
+ \ \"2603:1020:705:c02::98/125\",\r\n \"2603:1020:805:402::98/125\",\r\n
+ \ \"2603:1020:805:802::98/125\",\r\n \"2603:1020:805:c02::98/125\",\r\n
+ \ \"2603:1020:905:402::98/125\",\r\n \"2603:1020:a04:402::98/125\",\r\n
+ \ \"2603:1020:a04:802::98/125\",\r\n \"2603:1020:a04:c02::98/125\",\r\n
+ \ \"2603:1020:b04:402::98/125\",\r\n \"2603:1020:c04:402::98/125\",\r\n
+ \ \"2603:1020:c04:802::98/125\",\r\n \"2603:1020:c04:c02::98/125\",\r\n
+ \ \"2603:1020:d04:402::98/125\",\r\n \"2603:1020:e04:402::98/125\",\r\n
+ \ \"2603:1020:e04:802::98/125\",\r\n \"2603:1020:e04:c02::98/125\",\r\n
+ \ \"2603:1020:f04:402::98/125\",\r\n \"2603:1020:1004:400::98/125\",\r\n
+ \ \"2603:1020:1004:800::158/125\",\r\n \"2603:1020:1004:800::350/125\",\r\n
+ \ \"2603:1020:1104:400::98/125\",\r\n \"2603:1030:f:400::898/125\",\r\n
+ \ \"2603:1030:10:402::98/125\",\r\n \"2603:1030:10:802::98/125\",\r\n
+ \ \"2603:1030:10:c02::98/125\",\r\n \"2603:1030:104:402::98/125\",\r\n
+ \ \"2603:1030:107:400::d0/125\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\",\r\n
+ \ \"2603:1030:40b:400::898/125\",\r\n \"2603:1030:40b:800::98/125\",\r\n
+ \ \"2603:1030:40b:c00::98/125\",\r\n \"2603:1030:40c:402::98/125\",\r\n
+ \ \"2603:1030:40c:802::98/125\",\r\n \"2603:1030:40c:c02::98/125\",\r\n
+ \ \"2603:1030:504:402::98/125\",\r\n \"2603:1030:504:802::c8/125\",\r\n
+ \ \"2603:1030:504:802::158/125\",\r\n \"2603:1030:504:802::350/125\",\r\n
+ \ \"2603:1030:608:402::98/125\",\r\n \"2603:1030:807:402::98/125\",\r\n
+ \ \"2603:1030:807:802::98/125\",\r\n \"2603:1030:807:c02::98/125\",\r\n
+ \ \"2603:1030:a07:402::98/125\",\r\n \"2603:1030:b04:402::98/125\",\r\n
+ \ \"2603:1030:c06:400::898/125\",\r\n \"2603:1030:c06:802::98/125\",\r\n
+ \ \"2603:1030:c06:c02::98/125\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\",\r\n
+ \ \"2603:1030:1005:402::98/125\",\r\n \"2603:1040:5:402::98/125\",\r\n
+ \ \"2603:1040:5:802::98/125\",\r\n \"2603:1040:5:c02::98/125\",\r\n
+ \ \"2603:1040:207:402::98/125\",\r\n \"2603:1040:407:402::98/125\",\r\n
+ \ \"2603:1040:407:802::98/125\",\r\n \"2603:1040:407:c02::98/125\",\r\n
+ \ \"2603:1040:606:402::98/125\",\r\n \"2603:1040:806:402::98/125\",\r\n
+ \ \"2603:1040:904:402::98/125\",\r\n \"2603:1040:904:802::98/125\",\r\n
+ \ \"2603:1040:904:c02::98/125\",\r\n \"2603:1040:a06:402::98/125\",\r\n
+ \ \"2603:1040:a06:802::98/125\",\r\n \"2603:1040:a06:c02::98/125\",\r\n
+ \ \"2603:1040:b04:402::98/125\",\r\n \"2603:1040:c06:402::98/125\",\r\n
+ \ \"2603:1040:d04:400::98/125\",\r\n \"2603:1040:d04:800::158/125\",\r\n
+ \ \"2603:1040:d04:800::350/125\",\r\n \"2603:1040:f05:402::98/125\",\r\n
+ \ \"2603:1040:f05:802::98/125\",\r\n \"2603:1040:f05:c02::98/125\",\r\n
+ \ \"2603:1040:1104:400::98/125\",\r\n \"2603:1050:6:402::98/125\",\r\n
+ \ \"2603:1050:6:802::98/125\",\r\n \"2603:1050:6:c02::98/125\",\r\n
+ \ \"2603:1050:403:400::140/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.CanadaCentral\",\r\n \"id\":
+ \"ServiceFabric.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.71.170.224/29\",\r\n
+ \ \"13.71.170.248/29\",\r\n \"20.38.149.192/30\",\r\n \"40.85.224.118/32\",\r\n
+ \ \"52.246.157.8/30\",\r\n \"2603:1030:f05:402::98/125\",\r\n
+ \ \"2603:1030:f05:802::98/125\",\r\n \"2603:1030:f05:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"13.92.124.124/32\",\r\n
+ \ \"20.42.64.40/30\",\r\n \"20.42.72.132/30\",\r\n \"40.71.11.104/29\",\r\n
+ \ \"40.76.203.148/32\",\r\n \"40.76.205.181/32\",\r\n \"2603:1030:210:402::98/125\",\r\n
+ \ \"2603:1030:210:802::98/125\",\r\n \"2603:1030:210:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.EastUS2EUAP\",\r\n
+ \ \"id\": \"ServiceFabric.EastUS2EUAP\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"eastus2euap\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.74.146.56/29\",\r\n \"40.75.35.220/30\",\r\n
+ \ \"40.79.114.102/32\",\r\n \"52.138.70.82/32\",\r\n \"52.138.92.168/30\",\r\n
+ \ \"52.225.184.94/32\",\r\n \"52.225.185.159/32\",\r\n \"2603:1030:40b:400::898/125\",\r\n
+ \ \"2603:1030:40b:800::98/125\",\r\n \"2603:1030:40b:c00::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.FranceSouth\",\r\n
+ \ \"id\": \"ServiceFabric.FranceSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southfrance\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.179.0/29\",\r\n \"52.136.136.27/32\",\r\n
+ \ \"2603:1020:905:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.JapanWest\",\r\n \"id\": \"ServiceFabric.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.74.100.240/29\",\r\n \"104.46.225.57/32\",\r\n
+ \ \"2603:1040:606:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.SwitzerlandWest\",\r\n \"id\":
+ \"ServiceFabric.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\"\r\n ],\r\n \"systemService\":
+ \"ServiceFabric\",\r\n \"addressPrefixes\": [\r\n \"51.107.155.40/29\",\r\n
+ \ \"51.107.239.250/32\",\r\n \"2603:1020:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.UAECentral\",\r\n
+ \ \"id\": \"ServiceFabric.UAECentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"uaecentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"20.37.74.80/29\",\r\n \"20.45.79.240/32\",\r\n \"2603:1040:b04:402::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"ServiceFabric.WestCentralUS\",\r\n
+ \ \"id\": \"ServiceFabric.WestCentralUS\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"westcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\"\r\n
+ \ ],\r\n \"systemService\": \"ServiceFabric\",\r\n \"addressPrefixes\":
+ [\r\n \"13.71.195.48/29\",\r\n \"13.78.147.125/32\",\r\n
+ \ \"2603:1030:b04:402::98/125\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"ServiceFabric.WestEurope\",\r\n \"id\": \"ServiceFabric.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"ServiceFabric\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.64.232/29\",\r\n \"13.69.109.136/30\",\r\n
+ \ \"13.80.117.236/32\",\r\n \"52.174.163.204/32\",\r\n \"52.174.164.254/32\",\r\n
+ \ \"52.178.30.193/32\",\r\n \"52.236.161.75/32\",\r\n \"52.236.189.76/30\",\r\n
+ \ \"104.45.19.250/32\",\r\n \"2603:1020:206:402::98/125\",\r\n
+ \ \"2603:1020:206:802::98/125\",\r\n \"2603:1020:206:c02::98/125\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql\",\r\n \"id\":
+ \"Sql\",\r\n \"properties\": {\r\n \"changeNumber\": \"3\",\r\n
+ \ \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.66.136.0/26\",\r\n \"13.66.136.192/29\",\r\n
+ \ \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n \"13.66.229.222/32\",\r\n
+ \ \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n \"13.66.230.64/32\",\r\n
+ \ \"13.66.230.103/32\",\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n
+ \ \"13.67.17.0/26\",\r\n \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n
+ \ \"13.67.59.217/32\",\r\n \"13.67.215.62/32\",\r\n \"13.68.22.44/32\",\r\n
+ \ \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.70.148.251/32\",\r\n \"13.70.155.163/32\",\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.73.109.251/32\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n
+ \ \"13.77.7.78/32\",\r\n \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n
+ \ \"13.77.49.32/29\",\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n
+ \ \"13.78.104.32/29\",\r\n \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n
+ \ \"13.78.144.57/32\",\r\n \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n
+ \ \"13.78.151.189/32\",\r\n \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n
+ \ \"13.78.178.151/32\",\r\n \"13.78.248.32/27\",\r\n \"13.84.223.76/32\",\r\n
+ \ \"13.85.65.48/32\",\r\n \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n
+ \ \"13.86.216.0/25\",\r\n \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n
+ \ \"13.86.217.0/25\",\r\n \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n
+ \ \"13.86.217.224/29\",\r\n \"13.87.16.64/27\",\r\n \"13.87.17.0/27\",\r\n
+ \ \"13.87.33.234/32\",\r\n \"13.87.34.7/32\",\r\n \"13.87.34.19/32\",\r\n
+ \ \"13.87.38.138/32\",\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"13.89.36.110/32\",\r\n \"13.89.37.61/32\",\r\n
+ \ \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n \"13.89.168.0/26\",\r\n
+ \ \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n
+ \ \"20.36.105.32/29\",\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n
+ \ \"20.36.113.32/29\",\r\n \"20.37.71.64/26\",\r\n \"20.37.71.128/26\",\r\n
+ \ \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n \"20.37.73.64/27\",\r\n
+ \ \"20.37.73.96/29\",\r\n \"20.38.143.64/26\",\r\n \"20.38.143.128/26\",\r\n
+ \ \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n \"20.38.145.0/27\",\r\n
+ \ \"20.38.152.24/29\",\r\n \"20.40.228.128/25\",\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.43.47.192/26\",\r\n \"20.44.0.0/27\",\r\n
+ \ \"20.44.1.0/27\",\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n
+ \ \"20.44.25.0/27\",\r\n \"20.45.120.0/27\",\r\n \"20.45.121.0/27\",\r\n
+ \ \"20.45.121.32/29\",\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n
+ \ \"20.46.11.128/26\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"20.49.80.0/27\",\r\n \"20.49.80.32/29\",\r\n
+ \ \"20.49.81.0/27\",\r\n \"20.49.88.0/27\",\r\n \"20.49.88.32/29\",\r\n
+ \ \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"20.51.17.160/27\",\r\n \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n
+ \ \"20.53.46.128/25\",\r\n \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n
+ \ \"20.53.48.192/26\",\r\n \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n
+ \ \"20.53.56.128/26\",\r\n \"20.58.66.128/25\",\r\n \"20.61.99.192/26\",\r\n
+ \ \"20.61.102.0/26\",\r\n \"20.62.58.128/25\",\r\n \"20.62.132.160/27\",\r\n
+ \ \"20.62.132.192/27\",\r\n \"20.62.133.0/26\",\r\n \"20.65.132.160/27\",\r\n
+ \ \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n \"20.66.3.64/26\",\r\n
+ \ \"20.66.3.128/26\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"20.72.21.224/27\",\r\n \"20.72.24.64/27\",\r\n
+ \ \"20.72.24.128/27\",\r\n \"20.72.25.128/27\",\r\n \"20.88.64.0/27\",\r\n
+ \ \"20.150.168.0/27\",\r\n \"20.150.168.32/29\",\r\n \"20.150.169.0/27\",\r\n
+ \ \"20.150.176.0/27\",\r\n \"20.150.176.32/29\",\r\n \"20.150.177.0/27\",\r\n
+ \ \"20.150.184.0/27\",\r\n \"20.150.184.32/29\",\r\n \"20.150.185.0/27\",\r\n
+ \ \"20.150.241.128/25\",\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"20.191.165.160/27\",\r\n \"20.191.165.192/27\",\r\n
+ \ \"20.191.166.0/26\",\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.48.32/27\",\r\n \"20.192.48.64/27\",\r\n
+ \ \"20.192.48.128/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"20.192.167.224/27\",\r\n \"20.192.232.0/27\",\r\n
+ \ \"20.192.233.0/27\",\r\n \"20.192.233.32/29\",\r\n \"20.193.192.0/27\",\r\n
+ \ \"20.193.192.64/26\",\r\n \"20.193.200.0/27\",\r\n \"20.193.200.32/29\",\r\n
+ \ \"20.193.201.0/27\",\r\n \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n
+ \ \"20.194.65.0/27\",\r\n \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n
+ \ \"20.195.65.32/27\",\r\n \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"20.195.146.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"23.96.178.199/32\",\r\n \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n
+ \ \"23.96.205.215/32\",\r\n \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n
+ \ \"23.96.247.75/32\",\r\n \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.98.55.75/32\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.98.162.75/32\",\r\n
+ \ \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n \"23.98.170.75/32\",\r\n
+ \ \"23.98.170.76/31\",\r\n \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n
+ \ \"23.99.10.185/32\",\r\n \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n
+ \ \"23.99.34.78/32\",\r\n \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n
+ \ \"23.99.57.14/32\",\r\n \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n
+ \ \"23.99.90.75/32\",\r\n \"23.99.91.130/32\",\r\n \"23.99.102.124/32\",\r\n
+ \ \"23.99.118.196/32\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"23.101.64.10/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"23.102.16.130/32\",\r\n \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n
+ \ \"23.102.52.155/32\",\r\n \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n
+ \ \"23.102.69.95/32\",\r\n \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n
+ \ \"23.102.172.251/32\",\r\n \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n
+ \ \"23.102.179.187/32\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.67.53.0/25\",\r\n \"40.67.56.0/27\",\r\n \"40.67.56.32/29\",\r\n
+ \ \"40.67.57.0/27\",\r\n \"40.68.37.158/32\",\r\n \"40.68.215.206/32\",\r\n
+ \ \"40.68.220.16/32\",\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n
+ \ \"40.69.105.32/29\",\r\n \"40.69.132.90/32\",\r\n \"40.69.143.202/32\",\r\n
+ \ \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n \"40.70.144.0/26\",\r\n
+ \ \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n \"40.71.8.0/26\",\r\n
+ \ \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n \"40.71.9.192/26\",\r\n
+ \ \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n \"40.71.211.227/32\",\r\n
+ \ \"40.71.226.18/32\",\r\n \"40.74.51.145/32\",\r\n \"40.74.53.36/32\",\r\n
+ \ \"40.74.60.91/32\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"40.74.144.0/27\",\r\n \"40.74.144.32/29\",\r\n
+ \ \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n \"40.74.254.156/32\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"40.76.2.172/32\",\r\n \"40.76.26.90/32\",\r\n
+ \ \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n \"40.76.66.9/32\",\r\n
+ \ \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n \"40.76.219.185/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.78.192.0/27\",\r\n
+ \ \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n \"40.78.193.32/29\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"40.78.224.0/26\",\r\n
+ \ \"40.78.224.128/26\",\r\n \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n
+ \ \"40.78.232.0/26\",\r\n \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"40.79.152.0/26\",\r\n \"40.79.152.192/26\",\r\n
+ \ \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.79.176.0/27\",\r\n
+ \ \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n \"40.79.177.32/29\",\r\n
+ \ \"40.79.184.0/27\",\r\n \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n
+ \ \"40.79.192.0/27\",\r\n \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n
+ \ \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n \"40.80.49.0/27\",\r\n
+ \ \"40.83.178.165/32\",\r\n \"40.83.186.249/32\",\r\n \"40.84.5.64/32\",\r\n
+ \ \"40.84.54.249/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n \"40.86.75.134/32\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"40.112.139.250/32\",\r\n
+ \ \"40.112.240.0/27\",\r\n \"40.112.246.0/27\",\r\n \"40.113.14.53/32\",\r\n
+ \ \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n \"40.113.20.38/32\",\r\n
+ \ \"40.113.93.91/32\",\r\n \"40.113.200.119/32\",\r\n \"40.114.40.118/32\",\r\n
+ \ \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n \"40.114.46.128/32\",\r\n
+ \ \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.118.12.208/32\",\r\n \"40.118.129.167/32\",\r\n
+ \ \"40.118.170.1/32\",\r\n \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n
+ \ \"40.118.249.123/32\",\r\n \"40.118.250.19/32\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"40.121.143.204/32\",\r\n
+ \ \"40.121.149.49/32\",\r\n \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"40.126.228.153/32\",\r\n \"40.126.230.223/32\",\r\n
+ \ \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n \"40.126.250.24/32\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"51.12.46.32/27\",\r\n
+ \ \"51.12.46.64/27\",\r\n \"51.12.46.128/26\",\r\n \"51.12.96.0/27\",\r\n
+ \ \"51.12.96.32/29\",\r\n \"51.12.97.0/27\",\r\n \"51.12.198.32/27\",\r\n
+ \ \"51.12.198.64/27\",\r\n \"51.12.198.128/26\",\r\n \"51.12.200.0/27\",\r\n
+ \ \"51.12.200.32/29\",\r\n \"51.12.201.0/27\",\r\n \"51.12.201.32/29\",\r\n
+ \ \"51.12.224.0/27\",\r\n \"51.12.224.32/29\",\r\n \"51.12.225.0/27\",\r\n
+ \ \"51.12.232.0/27\",\r\n \"51.12.232.32/29\",\r\n \"51.12.233.0/27\",\r\n
+ \ \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n \"51.13.137.64/26\",\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.152.0/27\",\r\n \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"51.107.250.64/26\",\r\n \"51.107.250.128/26\",\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"51.120.96.0/27\",\r\n
+ \ \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n \"51.120.104.0/27\",\r\n
+ \ \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n \"51.120.208.0/27\",\r\n
+ \ \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n \"51.120.216.0/27\",\r\n
+ \ \"51.120.217.0/27\",\r\n \"51.120.217.32/29\",\r\n \"51.120.232.192/26\",\r\n
+ \ \"51.120.233.0/26\",\r\n \"51.138.210.0/26\",\r\n \"51.140.77.9/32\",\r\n
+ \ \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n \"51.140.144.0/27\",\r\n
+ \ \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n \"51.140.180.9/32\",\r\n
+ \ \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n \"51.140.184.12/32\",\r\n
+ \ \"51.140.208.64/27\",\r\n \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n
+ \ \"51.140.209.32/29\",\r\n \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n
+ \ \"51.141.15.53/32\",\r\n \"51.141.25.212/32\",\r\n \"51.142.211.129/32\",\r\n
+ \ \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n \"51.143.212.64/26\",\r\n
+ \ \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n \"52.136.185.0/25\",\r\n
+ \ \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n \"52.138.89.0/27\",\r\n
+ \ \"52.138.89.32/29\",\r\n \"52.138.224.0/26\",\r\n \"52.138.224.128/26\",\r\n
+ \ \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n \"52.138.229.72/29\",\r\n
+ \ \"52.139.106.192/26\",\r\n \"52.139.107.0/26\",\r\n \"52.146.133.128/25\",\r\n
+ \ \"52.147.112.160/27\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"52.162.104.0/26\",\r\n
+ \ \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n \"52.162.125.1/32\",\r\n
+ \ \"52.162.241.250/32\",\r\n \"52.165.184.67/32\",\r\n \"52.166.76.0/32\",\r\n
+ \ \"52.166.131.195/32\",\r\n \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n
+ \ \"52.167.105.0/26\",\r\n \"52.167.117.226/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.171.56.10/32\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n \"52.173.205.59/32\",\r\n
+ \ \"52.175.33.150/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.177.185.181/32\",\r\n
+ \ \"52.177.197.103/32\",\r\n \"52.177.200.215/32\",\r\n \"52.179.16.95/32\",\r\n
+ \ \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n \"52.179.167.70/32\",\r\n
+ \ \"52.179.178.184/32\",\r\n \"52.180.176.154/31\",\r\n \"52.180.183.226/32\",\r\n
+ \ \"52.182.136.0/26\",\r\n \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n
+ \ \"52.183.250.62/32\",\r\n \"52.184.192.175/32\",\r\n \"52.184.231.0/32\",\r\n
+ \ \"52.185.152.149/32\",\r\n \"52.187.15.214/32\",\r\n \"52.187.76.130/32\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.225.188.46/32\",\r\n \"52.225.188.113/32\",\r\n
+ \ \"52.225.222.124/32\",\r\n \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n
+ \ \"52.228.39.117/32\",\r\n \"52.229.17.93/32\",\r\n \"52.229.122.195/32\",\r\n
+ \ \"52.229.123.147/32\",\r\n \"52.229.124.23/32\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"52.231.144.0/27\",\r\n \"52.231.145.0/27\",\r\n
+ \ \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n \"52.231.206.133/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"52.237.28.86/32\",\r\n
+ \ \"52.237.219.227/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"52.243.32.19/32\",\r\n
+ \ \"52.243.43.186/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"52.246.251.248/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"65.52.208.91/32\",\r\n \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n
+ \ \"65.52.218.82/32\",\r\n \"65.52.225.245/32\",\r\n \"65.52.226.209/32\",\r\n
+ \ \"65.52.248.0/27\",\r\n \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n
+ \ \"102.37.80.96/27\",\r\n \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n
+ \ \"102.37.160.0/27\",\r\n \"102.37.160.64/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"102.133.120.0/27\",\r\n
+ \ \"102.133.120.32/29\",\r\n \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n
+ \ \"102.133.152.32/29\",\r\n \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n
+ \ \"102.133.248.0/27\",\r\n \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n
+ \ \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n \"104.40.54.130/32\",\r\n
+ \ \"104.40.82.151/32\",\r\n \"104.40.155.247/32\",\r\n \"104.40.168.64/26\",\r\n
+ \ \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n \"104.40.169.32/29\",\r\n
+ \ \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n \"104.40.220.28/32\",\r\n
+ \ \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n \"104.40.237.111/32\",\r\n
+ \ \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n \"104.41.13.233/32\",\r\n
+ \ \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n \"104.41.57.82/32\",\r\n
+ \ \"104.41.59.170/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.41.168.103/32\",\r\n \"104.41.169.34/32\",\r\n \"104.41.202.30/32\",\r\n
+ \ \"104.41.205.195/32\",\r\n \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n
+ \ \"104.41.211.98/32\",\r\n \"104.42.120.235/32\",\r\n \"104.42.127.95/32\",\r\n
+ \ \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n \"104.42.192.190/32\",\r\n
+ \ \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n \"104.42.237.198/32\",\r\n
+ \ \"104.42.238.205/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.43.164.21/32\",\r\n \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n
+ \ \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n \"104.45.158.30/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n
+ \ \"104.46.183.0/26\",\r\n \"104.47.157.97/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"104.210.32.128/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"104.211.144.0/27\",\r\n
+ \ \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n \"104.211.145.32/29\",\r\n
+ \ \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n \"104.211.190.46/32\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n
+ \ \"104.214.17.0/26\",\r\n \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n
+ \ \"104.214.73.137/32\",\r\n \"104.214.78.242/32\",\r\n \"104.214.148.156/32\",\r\n
+ \ \"104.214.150.17/32\",\r\n \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n
+ \ \"111.221.106.161/32\",\r\n \"137.116.31.224/27\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"137.116.203.91/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"137.135.109.63/32\",\r\n \"137.135.186.126/32\",\r\n
+ \ \"137.135.189.158/32\",\r\n \"137.135.205.85/32\",\r\n
+ \ \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n \"138.91.58.227/32\",\r\n
+ \ \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n \"138.91.240.14/32\",\r\n
+ \ \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n \"138.91.251.139/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"168.62.115.112/28\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"168.63.13.214/32\",\r\n
+ \ \"168.63.98.91/32\",\r\n \"168.63.175.68/32\",\r\n \"191.233.15.160/27\",\r\n
+ \ \"191.233.15.192/27\",\r\n \"191.233.48.0/27\",\r\n \"191.233.48.32/29\",\r\n
+ \ \"191.233.49.0/27\",\r\n \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n
+ \ \"191.233.200.0/27\",\r\n \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"191.234.142.160/27\",\r\n \"191.234.142.192/27\",\r\n
+ \ \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n \"191.234.145.0/27\",\r\n
+ \ \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n \"191.235.170.58/32\",\r\n
+ \ \"191.235.193.75/32\",\r\n \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n
+ \ \"191.235.193.139/32\",\r\n \"191.235.193.140/31\",\r\n
+ \ \"191.235.209.79/32\",\r\n \"191.236.119.31/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.237.219.202/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"191.237.240.43/32\",\r\n
+ \ \"191.237.240.44/32\",\r\n \"191.237.240.46/32\",\r\n \"191.238.6.43/32\",\r\n
+ \ \"191.238.6.44/31\",\r\n \"191.238.6.46/32\",\r\n \"191.238.68.11/32\",\r\n
+ \ \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"191.239.12.154/32\",\r\n \"191.239.189.48/32\",\r\n
+ \ \"191.239.192.109/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1000:4::280/123\",\r\n \"2603:1000:4:1::200/121\",\r\n
+ \ \"2603:1000:4:400::/123\",\r\n \"2603:1000:4:401::/123\",\r\n
+ \ \"2603:1000:104::640/123\",\r\n \"2603:1000:104::680/121\",\r\n
+ \ \"2603:1000:104:400::/123\",\r\n \"2603:1000:104:401::/123\",\r\n
+ \ \"2603:1000:104:800::/123\",\r\n \"2603:1000:104:801::/123\",\r\n
+ \ \"2603:1000:104:c00::/123\",\r\n \"2603:1000:104:c01::/123\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\",\r\n \"2603:1010:304::280/123\",\r\n
+ \ \"2603:1010:304:1::200/121\",\r\n \"2603:1010:304:400::/123\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\",\r\n
+ \ \"2603:1020:705::320/123\",\r\n \"2603:1020:705::380/121\",\r\n
+ \ \"2603:1020:705:400::/123\",\r\n \"2603:1020:705:401::/123\",\r\n
+ \ \"2603:1020:705:800::/123\",\r\n \"2603:1020:705:801::/123\",\r\n
+ \ \"2603:1020:705:c00::/123\",\r\n \"2603:1020:705:c01::/123\",\r\n
+ \ \"2603:1020:805::320/123\",\r\n \"2603:1020:805::380/121\",\r\n
+ \ \"2603:1020:805:400::/123\",\r\n \"2603:1020:805:401::/123\",\r\n
+ \ \"2603:1020:805:800::/123\",\r\n \"2603:1020:805:801::/123\",\r\n
+ \ \"2603:1020:805:c00::/123\",\r\n \"2603:1020:805:c01::/123\",\r\n
+ \ \"2603:1020:905::280/123\",\r\n \"2603:1020:905:1::200/121\",\r\n
+ \ \"2603:1020:905:400::/123\",\r\n \"2603:1020:a04::320/123\",\r\n
+ \ \"2603:1020:a04::380/121\",\r\n \"2603:1020:a04:400::/123\",\r\n
+ \ \"2603:1020:a04:401::/123\",\r\n \"2603:1020:a04:800::/123\",\r\n
+ \ \"2603:1020:a04:801::/123\",\r\n \"2603:1020:a04:c00::/123\",\r\n
+ \ \"2603:1020:a04:c01::/123\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\",\r\n
+ \ \"2603:1020:c04::320/123\",\r\n \"2603:1020:c04::380/121\",\r\n
+ \ \"2603:1020:c04:400::/123\",\r\n \"2603:1020:c04:401::/123\",\r\n
+ \ \"2603:1020:c04:800::/123\",\r\n \"2603:1020:c04:801::/123\",\r\n
+ \ \"2603:1020:c04:c00::/123\",\r\n \"2603:1020:c04:c01::/123\",\r\n
+ \ \"2603:1020:d04::280/123\",\r\n \"2603:1020:d04:1::200/121\",\r\n
+ \ \"2603:1020:d04:400::/123\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\",\r\n
+ \ \"2603:1020:1004:1::520/123\",\r\n \"2603:1020:1004:1::580/121\",\r\n
+ \ \"2603:1020:1004:400::400/123\",\r\n \"2603:1020:1004:402::/123\",\r\n
+ \ \"2603:1020:1004:403::/123\",\r\n \"2603:1020:1004:802::/123\",\r\n
+ \ \"2603:1020:1004:803::/123\",\r\n \"2603:1020:1004:c03::/123\",\r\n
+ \ \"2603:1020:1004:c04::/123\",\r\n \"2603:1020:1104::500/123\",\r\n
+ \ \"2603:1020:1104:1::300/121\",\r\n \"2603:1020:1104:400::420/123\",\r\n
+ \ \"2603:1020:1104:402::/123\",\r\n \"2603:1030:f:1::280/123\",\r\n
+ \ \"2603:1030:f:2::200/121\",\r\n \"2603:1030:f:402::/122\",\r\n
+ \ \"2603:1030:f:403::/122\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\",\r\n \"2603:1030:104::320/123\",\r\n
+ \ \"2603:1030:104::380/121\",\r\n \"2603:1030:104:400::/123\",\r\n
+ \ \"2603:1030:104:401::/123\",\r\n \"2603:1030:107:1::380/123\",\r\n
+ \ \"2603:1030:107:401::40/122\",\r\n \"2603:1030:107:402::40/123\",\r\n
+ \ \"2603:1030:210::320/123\",\r\n \"2603:1030:210::380/121\",\r\n
+ \ \"2603:1030:210:400::/123\",\r\n \"2603:1030:210:401::/123\",\r\n
+ \ \"2603:1030:210:800::/123\",\r\n \"2603:1030:210:801::/123\",\r\n
+ \ \"2603:1030:210:c00::/123\",\r\n \"2603:1030:210:c01::/123\",\r\n
+ \ \"2603:1030:40b:2::200/123\",\r\n \"2603:1030:40b:2::280/121\",\r\n
+ \ \"2603:1030:40b:402::/122\",\r\n \"2603:1030:40b:403::/122\",\r\n
+ \ \"2603:1030:40b:802::/122\",\r\n \"2603:1030:40b:803::/122\",\r\n
+ \ \"2603:1030:40b:c02::/122\",\r\n \"2603:1030:40b:c03::/122\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\",\r\n
+ \ \"2603:1030:504::520/123\",\r\n \"2603:1030:504::580/121\",\r\n
+ \ \"2603:1030:504:400::/123\",\r\n \"2603:1030:504:401::/123\",\r\n
+ \ \"2603:1030:504:800::/123\",\r\n \"2603:1030:504:801::/123\",\r\n
+ \ \"2603:1030:504:c00::/123\",\r\n \"2603:1030:504:c01::/123\",\r\n
+ \ \"2603:1030:608::280/123\",\r\n \"2603:1030:608:1::200/121\",\r\n
+ \ \"2603:1030:608:400::/123\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\",\r\n \"2603:1030:a07::280/123\",\r\n
+ \ \"2603:1030:a07:1::200/121\",\r\n \"2603:1030:a07:400::/123\",\r\n
+ \ \"2603:1030:b04::280/123\",\r\n \"2603:1030:b04:1::200/121\",\r\n
+ \ \"2603:1030:b04:400::/123\",\r\n \"2603:1030:c06:2::200/123\",\r\n
+ \ \"2603:1030:c06:2::280/121\",\r\n \"2603:1030:c06:401::/123\",\r\n
+ \ \"2603:1030:c06:402::/123\",\r\n \"2603:1030:c06:800::/123\",\r\n
+ \ \"2603:1030:c06:801::/123\",\r\n \"2603:1030:c06:c00::/123\",\r\n
+ \ \"2603:1030:c06:c01::/123\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\",\r\n
+ \ \"2603:1040:5::420/123\",\r\n \"2603:1040:5::480/121\",\r\n
+ \ \"2603:1040:5:400::/123\",\r\n \"2603:1040:5:401::/123\",\r\n
+ \ \"2603:1040:5:800::/123\",\r\n \"2603:1040:5:801::/123\",\r\n
+ \ \"2603:1040:5:c00::/123\",\r\n \"2603:1040:5:c01::/123\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\",\r\n
+ \ \"2603:1040:407::320/123\",\r\n \"2603:1040:407::380/121\",\r\n
+ \ \"2603:1040:407:400::/123\",\r\n \"2603:1040:407:401::/123\",\r\n
+ \ \"2603:1040:407:800::/123\",\r\n \"2603:1040:407:801::/123\",\r\n
+ \ \"2603:1040:407:c00::/123\",\r\n \"2603:1040:407:c01::/123\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\",\r\n
+ \ \"2603:1040:904::320/123\",\r\n \"2603:1040:904::380/121\",\r\n
+ \ \"2603:1040:904:400::/123\",\r\n \"2603:1040:904:401::/123\",\r\n
+ \ \"2603:1040:904:800::/123\",\r\n \"2603:1040:904:801::/123\",\r\n
+ \ \"2603:1040:904:c00::/123\",\r\n \"2603:1040:904:c01::/123\",\r\n
+ \ \"2603:1040:a06::420/123\",\r\n \"2603:1040:a06::480/121\",\r\n
+ \ \"2603:1040:a06:400::/123\",\r\n \"2603:1040:a06:401::/123\",\r\n
+ \ \"2603:1040:a06:800::/123\",\r\n \"2603:1040:a06:801::/123\",\r\n
+ \ \"2603:1040:a06:c00::/123\",\r\n \"2603:1040:a06:c01::/123\",\r\n
+ \ \"2603:1040:b04::280/123\",\r\n \"2603:1040:b04:1::200/121\",\r\n
+ \ \"2603:1040:b04:400::/123\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\",\r\n \"2603:1040:d04:1::520/123\",\r\n
+ \ \"2603:1040:d04:1::580/121\",\r\n \"2603:1040:d04:400::400/123\",\r\n
+ \ \"2603:1040:d04:402::/123\",\r\n \"2603:1040:d04:403::/123\",\r\n
+ \ \"2603:1040:d04:802::/123\",\r\n \"2603:1040:d04:803::/123\",\r\n
+ \ \"2603:1040:d04:c03::/123\",\r\n \"2603:1040:d04:c04::/123\",\r\n
+ \ \"2603:1040:e05::/123\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\",\r\n \"2603:1040:1104::500/123\",\r\n
+ \ \"2603:1040:1104:1::300/121\",\r\n \"2603:1040:1104:400::440/123\",\r\n
+ \ \"2603:1040:1104:402::/123\",\r\n \"2603:1050:6::320/123\",\r\n
+ \ \"2603:1050:6::380/121\",\r\n \"2603:1050:6:400::/123\",\r\n
+ \ \"2603:1050:6:401::/123\",\r\n \"2603:1050:6:800::/123\",\r\n
+ \ \"2603:1050:6:801::/123\",\r\n \"2603:1050:6:c00::/122\",\r\n
+ \ \"2603:1050:6:c01::/122\",\r\n \"2603:1050:403:1::200/123\",\r\n
+ \ \"2603:1050:403:1::280/121\",\r\n \"2603:1050:403:402::/123\",\r\n
+ \ \"2603:1050:403:403::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral\",\r\n \"id\": \"Sql.AustraliaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.104.0/27\",\r\n \"20.36.105.0/27\",\r\n \"20.36.105.32/29\",\r\n
+ \ \"20.53.48.96/27\",\r\n \"20.53.48.128/27\",\r\n \"20.53.48.192/26\",\r\n
+ \ \"2603:1010:304::280/123\",\r\n \"2603:1010:304:1::200/121\",\r\n
+ \ \"2603:1010:304:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaCentral2\",\r\n \"id\": \"Sql.AustraliaCentral2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiacentral2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.36.112.0/27\",\r\n \"20.36.113.0/27\",\r\n \"20.36.113.32/29\",\r\n
+ \ \"20.53.56.32/27\",\r\n \"20.53.56.64/27\",\r\n \"20.53.56.128/26\",\r\n
+ \ \"2603:1010:404::280/123\",\r\n \"2603:1010:404:1::200/121\",\r\n
+ \ \"2603:1010:404:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.AustraliaEast\",\r\n \"id\": \"Sql.AustraliaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.112.0/27\",\r\n \"13.70.112.32/29\",\r\n \"13.70.113.0/27\",\r\n
+ \ \"13.75.149.87/32\",\r\n \"20.53.46.128/25\",\r\n \"40.79.160.0/27\",\r\n
+ \ \"40.79.160.32/29\",\r\n \"40.79.161.0/27\",\r\n \"40.79.168.0/27\",\r\n
+ \ \"40.79.168.32/29\",\r\n \"40.79.169.0/27\",\r\n \"40.126.228.153/32\",\r\n
+ \ \"40.126.230.223/32\",\r\n \"40.126.232.113/32\",\r\n \"40.126.233.152/32\",\r\n
+ \ \"40.126.250.24/32\",\r\n \"52.237.219.227/32\",\r\n \"104.210.105.215/32\",\r\n
+ \ \"2603:1010:6::320/123\",\r\n \"2603:1010:6::380/121\",\r\n
+ \ \"2603:1010:6:400::/123\",\r\n \"2603:1010:6:401::/123\",\r\n
+ \ \"2603:1010:6:800::/123\",\r\n \"2603:1010:6:801::/123\",\r\n
+ \ \"2603:1010:6:c00::/123\",\r\n \"2603:1010:6:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.AustraliaSoutheast\",\r\n
+ \ \"id\": \"Sql.AustraliaSoutheast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiasoutheast\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.70.148.251/32\",\r\n
+ \ \"13.70.155.163/32\",\r\n \"13.73.109.251/32\",\r\n \"13.77.7.78/32\",\r\n
+ \ \"13.77.48.0/27\",\r\n \"13.77.49.0/27\",\r\n \"13.77.49.32/29\",\r\n
+ \ \"40.127.82.69/32\",\r\n \"40.127.83.164/32\",\r\n \"52.255.48.161/32\",\r\n
+ \ \"104.46.179.160/27\",\r\n \"104.46.179.192/27\",\r\n \"104.46.183.0/26\",\r\n
+ \ \"191.239.189.48/32\",\r\n \"191.239.192.109/32\",\r\n
+ \ \"2603:1010:101::280/123\",\r\n \"2603:1010:101:1::200/121\",\r\n
+ \ \"2603:1010:101:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.BrazilSouth\",\r\n \"id\": \"Sql.BrazilSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"brazilsouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"104.41.11.5/32\",\r\n \"104.41.13.213/32\",\r\n
+ \ \"104.41.13.233/32\",\r\n \"104.41.36.39/32\",\r\n \"104.41.56.218/32\",\r\n
+ \ \"104.41.57.82/32\",\r\n \"104.41.59.170/32\",\r\n \"191.233.200.0/27\",\r\n
+ \ \"191.233.200.32/29\",\r\n \"191.233.201.0/27\",\r\n \"191.234.142.160/27\",\r\n
+ \ \"191.234.142.192/27\",\r\n \"191.234.144.0/27\",\r\n \"191.234.144.32/29\",\r\n
+ \ \"191.234.145.0/27\",\r\n \"191.234.152.0/26\",\r\n \"191.234.153.0/26\",\r\n
+ \ \"2603:1050:6::320/123\",\r\n \"2603:1050:6::380/121\",\r\n
+ \ \"2603:1050:6:400::/123\",\r\n \"2603:1050:6:401::/123\",\r\n
+ \ \"2603:1050:6:800::/123\",\r\n \"2603:1050:6:801::/123\",\r\n
+ \ \"2603:1050:6:c00::/122\",\r\n \"2603:1050:6:c01::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CanadaCentral\",\r\n
+ \ \"id\": \"Sql.CanadaCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadacentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.168.0/27\",\r\n
+ \ \"13.71.168.32/29\",\r\n \"13.71.169.0/27\",\r\n \"13.88.249.189/32\",\r\n
+ \ \"13.88.254.42/32\",\r\n \"20.38.144.0/27\",\r\n \"20.38.144.32/29\",\r\n
+ \ \"20.38.145.0/27\",\r\n \"20.48.196.32/27\",\r\n \"20.48.196.64/27\",\r\n
+ \ \"20.48.196.128/26\",\r\n \"40.85.224.249/32\",\r\n \"40.85.225.5/32\",\r\n
+ \ \"52.228.24.103/32\",\r\n \"52.228.35.221/32\",\r\n \"52.228.39.117/32\",\r\n
+ \ \"52.237.28.86/32\",\r\n \"52.246.152.0/27\",\r\n \"52.246.152.32/29\",\r\n
+ \ \"52.246.153.0/27\",\r\n \"2603:1030:f05::320/123\",\r\n
+ \ \"2603:1030:f05::380/121\",\r\n \"2603:1030:f05:400::/123\",\r\n
+ \ \"2603:1030:f05:401::/123\",\r\n \"2603:1030:f05:800::/123\",\r\n
+ \ \"2603:1030:f05:801::/123\",\r\n \"2603:1030:f05:c00::/123\",\r\n
+ \ \"2603:1030:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CanadaEast\",\r\n \"id\": \"Sql.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.69.104.0/27\",\r\n \"40.69.105.0/27\",\r\n \"40.69.105.32/29\",\r\n
+ \ \"40.86.226.166/32\",\r\n \"40.86.226.230/32\",\r\n \"52.139.106.192/26\",\r\n
+ \ \"52.139.107.0/26\",\r\n \"52.229.122.195/32\",\r\n \"52.229.123.147/32\",\r\n
+ \ \"52.229.124.23/32\",\r\n \"52.242.26.53/32\",\r\n \"52.242.29.91/32\",\r\n
+ \ \"52.242.30.154/32\",\r\n \"52.242.36.107/32\",\r\n \"2603:1030:1005::280/123\",\r\n
+ \ \"2603:1030:1005:1::200/121\",\r\n \"2603:1030:1005:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.CentralIndia\",\r\n
+ \ \"id\": \"Sql.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.192.43.160/27\",\r\n \"20.192.43.192/27\",\r\n
+ \ \"20.192.44.0/26\",\r\n \"20.192.96.0/27\",\r\n \"20.192.96.32/29\",\r\n
+ \ \"20.192.97.0/27\",\r\n \"40.80.48.0/27\",\r\n \"40.80.48.32/29\",\r\n
+ \ \"40.80.49.0/27\",\r\n \"52.172.217.233/32\",\r\n \"52.172.221.154/32\",\r\n
+ \ \"104.211.85.0/27\",\r\n \"104.211.86.0/27\",\r\n \"104.211.86.32/29\",\r\n
+ \ \"104.211.96.159/32\",\r\n \"104.211.96.160/32\",\r\n \"2603:1040:a06::420/123\",\r\n
+ \ \"2603:1040:a06::480/121\",\r\n \"2603:1040:a06:400::/123\",\r\n
+ \ \"2603:1040:a06:401::/123\",\r\n \"2603:1040:a06:800::/123\",\r\n
+ \ \"2603:1040:a06:801::/123\",\r\n \"2603:1040:a06:c00::/123\",\r\n
+ \ \"2603:1040:a06:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUS\",\r\n \"id\": \"Sql.CentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.215.62/32\",\r\n \"13.89.36.110/32\",\r\n
+ \ \"13.89.37.61/32\",\r\n \"13.89.57.50/32\",\r\n \"13.89.57.115/32\",\r\n
+ \ \"13.89.168.0/26\",\r\n \"13.89.168.192/29\",\r\n \"13.89.169.0/26\",\r\n
+ \ \"20.40.228.128/25\",\r\n \"23.99.160.139/32\",\r\n \"23.99.160.140/31\",\r\n
+ \ \"23.99.160.142/32\",\r\n \"23.99.205.183/32\",\r\n \"40.69.132.90/32\",\r\n
+ \ \"40.69.143.202/32\",\r\n \"40.69.169.120/32\",\r\n \"40.69.189.48/32\",\r\n
+ \ \"40.77.30.201/32\",\r\n \"40.86.75.134/32\",\r\n \"40.113.200.119/32\",\r\n
+ \ \"40.122.205.105/32\",\r\n \"40.122.215.111/32\",\r\n \"52.165.184.67/32\",\r\n
+ \ \"52.173.205.59/32\",\r\n \"52.176.43.167/32\",\r\n \"52.176.59.12/32\",\r\n
+ \ \"52.176.95.237/32\",\r\n \"52.176.100.98/32\",\r\n \"52.182.136.0/26\",\r\n
+ \ \"52.182.136.192/29\",\r\n \"52.182.137.0/26\",\r\n \"104.43.164.21/32\",\r\n
+ \ \"104.43.164.247/32\",\r\n \"104.43.203.72/32\",\r\n \"104.208.21.0/26\",\r\n
+ \ \"104.208.21.192/29\",\r\n \"104.208.22.0/26\",\r\n \"104.208.28.16/32\",\r\n
+ \ \"104.208.28.53/32\",\r\n \"2603:1030:10::320/123\",\r\n
+ \ \"2603:1030:10::380/121\",\r\n \"2603:1030:10:400::/123\",\r\n
+ \ \"2603:1030:10:401::/123\",\r\n \"2603:1030:10:800::/123\",\r\n
+ \ \"2603:1030:10:801::/123\",\r\n \"2603:1030:10:c00::/123\",\r\n
+ \ \"2603:1030:10:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.CentralUSEUAP\",\r\n \"id\": \"Sql.CentralUSEUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centraluseuap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.46.11.32/27\",\r\n \"20.46.11.64/27\",\r\n \"20.46.11.128/26\",\r\n
+ \ \"40.78.200.128/29\",\r\n \"40.78.201.128/29\",\r\n \"52.180.176.154/31\",\r\n
+ \ \"52.180.183.226/32\",\r\n \"168.61.136.0/27\",\r\n \"168.61.137.0/27\",\r\n
+ \ \"2603:1030:f:1::280/123\",\r\n \"2603:1030:f:2::200/121\",\r\n
+ \ \"2603:1030:f:402::/122\",\r\n \"2603:1030:f:403::/122\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastAsia\",\r\n
+ \ \"id\": \"Sql.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.75.32.0/26\",\r\n
+ \ \"13.75.32.192/29\",\r\n \"13.75.33.0/26\",\r\n \"13.75.33.192/29\",\r\n
+ \ \"13.75.105.141/32\",\r\n \"13.75.106.191/32\",\r\n \"13.75.108.188/32\",\r\n
+ \ \"20.195.72.32/27\",\r\n \"20.195.72.64/27\",\r\n \"20.195.72.128/26\",\r\n
+ \ \"23.97.68.51/32\",\r\n \"23.97.74.21/32\",\r\n \"23.97.78.163/32\",\r\n
+ \ \"23.99.102.124/32\",\r\n \"23.99.118.196/32\",\r\n \"52.175.33.150/32\",\r\n
+ \ \"191.234.2.139/32\",\r\n \"191.234.2.140/31\",\r\n \"191.234.2.142/32\",\r\n
+ \ \"207.46.139.82/32\",\r\n \"207.46.140.180/32\",\r\n \"207.46.153.182/32\",\r\n
+ \ \"2603:1040:207::280/123\",\r\n \"2603:1040:207:1::200/121\",\r\n
+ \ \"2603:1040:207:400::/123\",\r\n \"2603:1040:207:401::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS\",\r\n
+ \ \"id\": \"Sql.EastUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.42.65.64/29\",\r\n
+ \ \"20.42.73.0/29\",\r\n \"20.62.132.160/27\",\r\n \"20.62.132.192/27\",\r\n
+ \ \"20.62.133.0/26\",\r\n \"23.96.89.109/32\",\r\n \"23.96.106.191/32\",\r\n
+ \ \"40.71.8.0/26\",\r\n \"40.71.8.192/26\",\r\n \"40.71.9.0/26\",\r\n
+ \ \"40.71.9.192/26\",\r\n \"40.71.83.113/32\",\r\n \"40.71.196.33/32\",\r\n
+ \ \"40.71.211.227/32\",\r\n \"40.71.226.18/32\",\r\n \"40.76.2.172/32\",\r\n
+ \ \"40.76.26.90/32\",\r\n \"40.76.42.44/32\",\r\n \"40.76.65.222/32\",\r\n
+ \ \"40.76.66.9/32\",\r\n \"40.76.193.221/32\",\r\n \"40.76.209.171/32\",\r\n
+ \ \"40.76.219.185/32\",\r\n \"40.78.224.0/26\",\r\n \"40.78.224.128/26\",\r\n
+ \ \"40.78.225.0/26\",\r\n \"40.78.225.128/26\",\r\n \"40.79.152.0/26\",\r\n
+ \ \"40.79.152.192/26\",\r\n \"40.79.153.0/26\",\r\n \"40.79.153.192/26\",\r\n
+ \ \"40.114.40.118/32\",\r\n \"40.114.43.106/32\",\r\n \"40.114.45.195/32\",\r\n
+ \ \"40.114.46.128/32\",\r\n \"40.114.46.212/32\",\r\n \"40.114.81.142/32\",\r\n
+ \ \"40.117.42.73/32\",\r\n \"40.117.44.71/32\",\r\n \"40.117.90.115/32\",\r\n
+ \ \"40.117.97.189/32\",\r\n \"40.121.143.204/32\",\r\n \"40.121.149.49/32\",\r\n
+ \ \"40.121.154.241/32\",\r\n \"40.121.158.30/32\",\r\n \"52.168.116.64/29\",\r\n
+ \ \"52.168.166.153/32\",\r\n \"52.168.169.124/32\",\r\n \"52.168.183.223/32\",\r\n
+ \ \"52.170.41.199/32\",\r\n \"52.170.97.16/32\",\r\n \"52.170.98.29/32\",\r\n
+ \ \"52.179.16.95/32\",\r\n \"104.41.150.1/32\",\r\n \"104.41.152.74/32\",\r\n
+ \ \"104.45.158.30/32\",\r\n \"137.135.109.63/32\",\r\n \"191.237.20.112/32\",\r\n
+ \ \"191.237.82.74/32\",\r\n \"191.238.6.43/32\",\r\n \"191.238.6.44/31\",\r\n
+ \ \"191.238.6.46/32\",\r\n \"2603:1030:210::320/123\",\r\n
+ \ \"2603:1030:210::380/121\",\r\n \"2603:1030:210:400::/123\",\r\n
+ \ \"2603:1030:210:401::/123\",\r\n \"2603:1030:210:800::/123\",\r\n
+ \ \"2603:1030:210:801::/123\",\r\n \"2603:1030:210:c00::/123\",\r\n
+ \ \"2603:1030:210:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2\",\r\n \"id\": \"Sql.EastUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.22.44/32\",\r\n \"13.68.30.216/32\",\r\n \"13.68.87.133/32\",\r\n
+ \ \"20.62.58.128/25\",\r\n \"23.102.206.35/32\",\r\n \"23.102.206.36/31\",\r\n
+ \ \"40.70.144.0/26\",\r\n \"40.70.144.192/29\",\r\n \"40.70.145.0/26\",\r\n
+ \ \"40.79.84.180/32\",\r\n \"40.84.5.64/32\",\r\n \"40.84.54.249/32\",\r\n
+ \ \"52.167.104.0/26\",\r\n \"52.167.104.192/29\",\r\n \"52.167.105.0/26\",\r\n
+ \ \"52.167.117.226/32\",\r\n \"52.177.185.181/32\",\r\n \"52.177.197.103/32\",\r\n
+ \ \"52.177.200.215/32\",\r\n \"52.179.157.248/32\",\r\n \"52.179.165.160/32\",\r\n
+ \ \"52.179.167.70/32\",\r\n \"52.179.178.184/32\",\r\n \"52.184.192.175/32\",\r\n
+ \ \"52.184.231.0/32\",\r\n \"52.225.222.124/32\",\r\n \"104.46.100.189/32\",\r\n
+ \ \"104.46.108.148/32\",\r\n \"104.208.149.0/26\",\r\n \"104.208.150.0/26\",\r\n
+ \ \"104.208.150.192/29\",\r\n \"104.208.161.78/32\",\r\n
+ \ \"104.208.163.201/32\",\r\n \"104.208.233.240/32\",\r\n
+ \ \"104.208.238.55/32\",\r\n \"104.208.241.224/32\",\r\n
+ \ \"104.209.186.94/32\",\r\n \"191.239.224.107/32\",\r\n
+ \ \"191.239.224.108/31\",\r\n \"191.239.224.110/32\",\r\n
+ \ \"2603:1030:40c::320/123\",\r\n \"2603:1030:40c::380/121\",\r\n
+ \ \"2603:1030:40c:400::/123\",\r\n \"2603:1030:40c:401::/123\",\r\n
+ \ \"2603:1030:40c:800::/123\",\r\n \"2603:1030:40c:801::/123\",\r\n
+ \ \"2603:1030:40c:c00::/123\",\r\n \"2603:1030:40c:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.EastUS2EUAP\",\r\n
+ \ \"id\": \"Sql.EastUS2EUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastus2euap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.51.17.160/27\",\r\n
+ \ \"20.51.17.192/27\",\r\n \"20.51.20.0/26\",\r\n \"40.74.144.0/27\",\r\n
+ \ \"40.74.144.32/29\",\r\n \"40.74.145.0/27\",\r\n \"40.74.145.32/29\",\r\n
+ \ \"40.75.32.0/27\",\r\n \"40.75.32.40/29\",\r\n \"40.75.33.0/27\",\r\n
+ \ \"40.75.33.32/29\",\r\n \"52.138.88.0/27\",\r\n \"52.138.88.32/29\",\r\n
+ \ \"52.138.89.0/27\",\r\n \"52.138.89.32/29\",\r\n \"52.225.188.46/32\",\r\n
+ \ \"52.225.188.113/32\",\r\n \"2603:1030:40b:2::200/123\",\r\n
+ \ \"2603:1030:40b:2::280/121\",\r\n \"2603:1030:40b:402::/122\",\r\n
+ \ \"2603:1030:40b:403::/122\",\r\n \"2603:1030:40b:802::/122\",\r\n
+ \ \"2603:1030:40b:803::/122\",\r\n \"2603:1030:40b:c02::/122\",\r\n
+ \ \"2603:1030:40b:c03::/122\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.EastUS2Stage\",\r\n \"id\": \"Sql.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.31.224/27\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceCentral\",\r\n \"id\": \"Sql.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.43.47.192/26\",\r\n \"40.79.128.0/27\",\r\n \"40.79.128.32/29\",\r\n
+ \ \"40.79.129.0/27\",\r\n \"40.79.136.0/27\",\r\n \"40.79.136.32/29\",\r\n
+ \ \"40.79.137.0/27\",\r\n \"40.79.144.0/27\",\r\n \"40.79.144.32/29\",\r\n
+ \ \"40.79.145.0/27\",\r\n \"51.138.210.0/26\",\r\n \"2603:1020:805::320/123\",\r\n
+ \ \"2603:1020:805::380/121\",\r\n \"2603:1020:805:400::/123\",\r\n
+ \ \"2603:1020:805:401::/123\",\r\n \"2603:1020:805:800::/123\",\r\n
+ \ \"2603:1020:805:801::/123\",\r\n \"2603:1020:805:c00::/123\",\r\n
+ \ \"2603:1020:805:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.FranceSouth\",\r\n \"id\": \"Sql.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.79.176.0/27\",\r\n \"40.79.176.40/29\",\r\n \"40.79.177.0/27\",\r\n
+ \ \"40.79.177.32/29\",\r\n \"52.136.185.0/25\",\r\n \"2603:1020:905::280/123\",\r\n
+ \ \"2603:1020:905:1::200/121\",\r\n \"2603:1020:905:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyNorth\",\r\n
+ \ \"id\": \"Sql.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.54.96/27\",\r\n
+ \ \"51.116.54.128/27\",\r\n \"51.116.54.192/26\",\r\n \"51.116.56.0/27\",\r\n
+ \ \"51.116.57.0/27\",\r\n \"51.116.57.32/29\",\r\n \"2603:1020:d04::280/123\",\r\n
+ \ \"2603:1020:d04:1::200/121\",\r\n \"2603:1020:d04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.GermanyWestCentral\",\r\n
+ \ \"id\": \"Sql.GermanyWestCentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"germanywc\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.116.149.32/27\",\r\n
+ \ \"51.116.149.64/27\",\r\n \"51.116.149.128/26\",\r\n \"51.116.152.0/27\",\r\n
+ \ \"51.116.152.32/29\",\r\n \"51.116.153.0/27\",\r\n \"51.116.240.0/27\",\r\n
+ \ \"51.116.240.32/29\",\r\n \"51.116.241.0/27\",\r\n \"51.116.248.0/27\",\r\n
+ \ \"51.116.248.32/29\",\r\n \"51.116.249.0/27\",\r\n \"2603:1020:c04::320/123\",\r\n
+ \ \"2603:1020:c04::380/121\",\r\n \"2603:1020:c04:400::/123\",\r\n
+ \ \"2603:1020:c04:401::/123\",\r\n \"2603:1020:c04:800::/123\",\r\n
+ \ \"2603:1020:c04:801::/123\",\r\n \"2603:1020:c04:c00::/123\",\r\n
+ \ \"2603:1020:c04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanEast\",\r\n \"id\": \"Sql.JapanEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japaneast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.78.61.196/32\",\r\n \"13.78.104.0/27\",\r\n \"13.78.104.32/29\",\r\n
+ \ \"13.78.105.0/27\",\r\n \"13.78.121.203/32\",\r\n \"20.191.165.160/27\",\r\n
+ \ \"20.191.165.192/27\",\r\n \"20.191.166.0/26\",\r\n \"23.102.69.95/32\",\r\n
+ \ \"23.102.71.13/32\",\r\n \"23.102.74.190/32\",\r\n \"40.79.184.0/27\",\r\n
+ \ \"40.79.184.32/29\",\r\n \"40.79.185.0/27\",\r\n \"40.79.192.0/27\",\r\n
+ \ \"40.79.192.32/29\",\r\n \"40.79.193.0/27\",\r\n \"52.185.152.149/32\",\r\n
+ \ \"52.243.32.19/32\",\r\n \"52.243.43.186/32\",\r\n \"104.41.168.103/32\",\r\n
+ \ \"104.41.169.34/32\",\r\n \"191.237.240.43/32\",\r\n \"191.237.240.44/32\",\r\n
+ \ \"191.237.240.46/32\",\r\n \"2603:1040:407::320/123\",\r\n
+ \ \"2603:1040:407::380/121\",\r\n \"2603:1040:407:400::/123\",\r\n
+ \ \"2603:1040:407:401::/123\",\r\n \"2603:1040:407:800::/123\",\r\n
+ \ \"2603:1040:407:801::/123\",\r\n \"2603:1040:407:c00::/123\",\r\n
+ \ \"2603:1040:407:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.JapanWest\",\r\n \"id\": \"Sql.JapanWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"japanwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.189.225.160/27\",\r\n \"20.189.225.192/27\",\r\n
+ \ \"20.189.228.0/26\",\r\n \"40.74.96.0/27\",\r\n \"40.74.96.32/29\",\r\n
+ \ \"40.74.97.0/27\",\r\n \"40.74.114.22/32\",\r\n \"40.74.115.153/32\",\r\n
+ \ \"40.74.135.185/32\",\r\n \"104.214.148.156/32\",\r\n \"104.214.150.17/32\",\r\n
+ \ \"191.238.68.11/32\",\r\n \"191.238.68.12/31\",\r\n \"191.238.68.14/32\",\r\n
+ \ \"2603:1040:606::280/123\",\r\n \"2603:1040:606:1::200/121\",\r\n
+ \ \"2603:1040:606:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaCentral\",\r\n \"id\": \"Sql.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.44.24.0/27\",\r\n \"20.44.24.32/29\",\r\n \"20.44.25.0/27\",\r\n
+ \ \"20.194.64.0/27\",\r\n \"20.194.64.32/29\",\r\n \"20.194.65.0/27\",\r\n
+ \ \"20.194.73.64/26\",\r\n \"20.194.73.128/26\",\r\n \"52.231.16.0/27\",\r\n
+ \ \"52.231.16.32/29\",\r\n \"52.231.17.0/27\",\r\n \"52.231.32.42/31\",\r\n
+ \ \"52.231.39.56/32\",\r\n \"2603:1040:f05::320/123\",\r\n
+ \ \"2603:1040:f05::380/121\",\r\n \"2603:1040:f05:400::/123\",\r\n
+ \ \"2603:1040:f05:401::/123\",\r\n \"2603:1040:f05:800::/123\",\r\n
+ \ \"2603:1040:f05:801::/123\",\r\n \"2603:1040:f05:c00::/123\",\r\n
+ \ \"2603:1040:f05:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.KoreaSouth\",\r\n \"id\": \"Sql.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.147.112.160/27\",\r\n \"52.231.144.0/27\",\r\n
+ \ \"52.231.145.0/27\",\r\n \"52.231.151.96/27\",\r\n \"52.231.200.86/31\",\r\n
+ \ \"52.231.206.133/32\",\r\n \"2603:1040:e05::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUS\",\r\n
+ \ \"id\": \"Sql.NorthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.49.119.32/27\",\r\n
+ \ \"20.49.119.64/27\",\r\n \"20.49.119.128/26\",\r\n \"23.96.178.199/32\",\r\n
+ \ \"23.96.202.229/32\",\r\n \"23.96.204.249/32\",\r\n \"23.96.205.215/32\",\r\n
+ \ \"23.96.214.69/32\",\r\n \"23.96.243.243/32\",\r\n \"23.96.247.75/32\",\r\n
+ \ \"23.96.249.37/32\",\r\n \"23.96.250.178/32\",\r\n \"23.98.55.75/32\",\r\n
+ \ \"23.101.165.167/32\",\r\n \"23.101.167.45/32\",\r\n \"23.101.170.98/32\",\r\n
+ \ \"52.162.104.0/26\",\r\n \"52.162.105.0/26\",\r\n \"52.162.105.192/29\",\r\n
+ \ \"52.162.125.1/32\",\r\n \"52.162.241.250/32\",\r\n \"65.52.208.91/32\",\r\n
+ \ \"65.52.213.108/32\",\r\n \"65.52.214.127/32\",\r\n \"65.52.218.82/32\",\r\n
+ \ \"157.55.208.150/32\",\r\n \"168.62.232.188/32\",\r\n \"168.62.235.49/32\",\r\n
+ \ \"168.62.235.241/32\",\r\n \"168.62.239.29/32\",\r\n \"191.236.148.44/32\",\r\n
+ \ \"191.236.153.120/32\",\r\n \"2603:1030:608::280/123\",\r\n
+ \ \"2603:1030:608:1::200/121\",\r\n \"2603:1030:608:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.NorthCentralUSStage\",\r\n
+ \ \"id\": \"Sql.NorthCentralUSStage\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"northcentralus\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"168.62.115.112/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.NorthEurope\",\r\n \"id\": \"Sql.NorthEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"northeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.224.0/26\",\r\n \"13.69.224.192/26\",\r\n
+ \ \"13.69.225.0/26\",\r\n \"13.69.225.192/26\",\r\n \"13.69.233.136/29\",\r\n
+ \ \"13.74.104.64/26\",\r\n \"13.74.104.128/26\",\r\n \"13.74.105.0/26\",\r\n
+ \ \"13.74.105.128/26\",\r\n \"13.74.105.192/29\",\r\n \"23.102.16.130/32\",\r\n
+ \ \"23.102.23.219/32\",\r\n \"23.102.25.199/32\",\r\n \"23.102.52.155/32\",\r\n
+ \ \"23.102.57.142/32\",\r\n \"23.102.62.171/32\",\r\n \"40.85.102.50/32\",\r\n
+ \ \"40.113.14.53/32\",\r\n \"40.113.16.190/32\",\r\n \"40.113.17.148/32\",\r\n
+ \ \"40.113.20.38/32\",\r\n \"40.113.93.91/32\",\r\n \"40.127.128.10/32\",\r\n
+ \ \"40.127.135.67/32\",\r\n \"40.127.137.209/32\",\r\n \"40.127.141.194/32\",\r\n
+ \ \"40.127.177.139/32\",\r\n \"40.127.190.50/32\",\r\n \"52.138.224.0/26\",\r\n
+ \ \"52.138.224.128/26\",\r\n \"52.138.225.0/26\",\r\n \"52.138.225.128/26\",\r\n
+ \ \"52.138.229.72/29\",\r\n \"52.146.133.128/25\",\r\n \"65.52.225.245/32\",\r\n
+ \ \"65.52.226.209/32\",\r\n \"104.41.202.30/32\",\r\n \"104.41.205.195/32\",\r\n
+ \ \"104.41.208.104/32\",\r\n \"104.41.210.68/32\",\r\n \"104.41.211.98/32\",\r\n
+ \ \"137.135.186.126/32\",\r\n \"137.135.189.158/32\",\r\n
+ \ \"137.135.205.85/32\",\r\n \"137.135.213.9/32\",\r\n \"138.91.48.99/32\",\r\n
+ \ \"138.91.58.227/32\",\r\n \"191.235.170.58/32\",\r\n \"191.235.193.75/32\",\r\n
+ \ \"191.235.193.76/31\",\r\n \"191.235.193.78/32\",\r\n \"191.235.193.139/32\",\r\n
+ \ \"191.235.193.140/31\",\r\n \"191.235.209.79/32\",\r\n
+ \ \"191.237.219.202/32\",\r\n \"2603:1020:5::320/123\",\r\n
+ \ \"2603:1020:5::380/121\",\r\n \"2603:1020:5:400::/123\",\r\n
+ \ \"2603:1020:5:401::/123\",\r\n \"2603:1020:5:800::/123\",\r\n
+ \ \"2603:1020:5:801::/123\",\r\n \"2603:1020:5:c00::/123\",\r\n
+ \ \"2603:1020:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayEast\",\r\n \"id\": \"Sql.NorwayEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwaye\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.120.96.0/27\",\r\n \"51.120.96.32/29\",\r\n \"51.120.97.0/27\",\r\n
+ \ \"51.120.104.0/27\",\r\n \"51.120.104.32/29\",\r\n \"51.120.105.0/27\",\r\n
+ \ \"51.120.208.0/27\",\r\n \"51.120.208.32/29\",\r\n \"51.120.209.0/27\",\r\n
+ \ \"51.120.232.192/26\",\r\n \"51.120.233.0/26\",\r\n \"2603:1020:e04::320/123\",\r\n
+ \ \"2603:1020:e04::380/121\",\r\n \"2603:1020:e04:400::/123\",\r\n
+ \ \"2603:1020:e04:401::/123\",\r\n \"2603:1020:e04:800::/123\",\r\n
+ \ \"2603:1020:e04:801::/123\",\r\n \"2603:1020:e04:c00::/123\",\r\n
+ \ \"2603:1020:e04:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.NorwayWest\",\r\n \"id\": \"Sql.NorwayWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"norwayw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.13.136.224/27\",\r\n \"51.13.137.0/27\",\r\n
+ \ \"51.13.137.64/26\",\r\n \"51.120.216.0/27\",\r\n \"51.120.217.0/27\",\r\n
+ \ \"51.120.217.32/29\",\r\n \"2603:1020:f04::280/123\",\r\n
+ \ \"2603:1020:f04:1::200/121\",\r\n \"2603:1020:f04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Sql.SouthAfricaNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricanorth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.160.0/27\",\r\n
+ \ \"102.37.160.64/26\",\r\n \"102.133.120.0/27\",\r\n \"102.133.120.32/29\",\r\n
+ \ \"102.133.121.0/27\",\r\n \"102.133.152.0/27\",\r\n \"102.133.152.32/29\",\r\n
+ \ \"102.133.153.0/27\",\r\n \"102.133.221.224/27\",\r\n \"102.133.248.0/27\",\r\n
+ \ \"102.133.248.32/29\",\r\n \"102.133.249.0/27\",\r\n \"2603:1000:104::640/123\",\r\n
+ \ \"2603:1000:104::680/121\",\r\n \"2603:1000:104:400::/123\",\r\n
+ \ \"2603:1000:104:401::/123\",\r\n \"2603:1000:104:800::/123\",\r\n
+ \ \"2603:1000:104:801::/123\",\r\n \"2603:1000:104:c00::/123\",\r\n
+ \ \"2603:1000:104:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthAfricaWest\",\r\n \"id\": \"Sql.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"102.37.80.96/27\",\r\n
+ \ \"102.37.80.128/27\",\r\n \"102.37.80.192/26\",\r\n \"102.133.24.0/27\",\r\n
+ \ \"102.133.25.0/27\",\r\n \"102.133.25.32/29\",\r\n \"2603:1000:4::280/123\",\r\n
+ \ \"2603:1000:4:1::200/121\",\r\n \"2603:1000:4:400::/123\",\r\n
+ \ \"2603:1000:4:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthCentralUS\",\r\n \"id\": \"Sql.SouthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.65.31.249/32\",\r\n \"13.65.39.207/32\",\r\n
+ \ \"13.65.85.183/32\",\r\n \"13.65.200.105/32\",\r\n \"13.65.209.243/32\",\r\n
+ \ \"13.65.253.67/32\",\r\n \"13.66.60.72/32\",\r\n \"13.66.60.111/32\",\r\n
+ \ \"13.66.62.124/32\",\r\n \"13.84.223.76/32\",\r\n \"13.85.65.48/32\",\r\n
+ \ \"13.85.68.115/32\",\r\n \"13.85.69.107/32\",\r\n \"20.45.120.0/27\",\r\n
+ \ \"20.45.121.0/27\",\r\n \"20.45.121.32/29\",\r\n \"20.49.88.0/27\",\r\n
+ \ \"20.49.88.32/29\",\r\n \"20.49.89.0/27\",\r\n \"20.49.89.32/29\",\r\n
+ \ \"20.65.132.160/27\",\r\n \"20.65.132.192/27\",\r\n \"20.65.133.0/26\",\r\n
+ \ \"23.98.162.75/32\",\r\n \"23.98.162.76/31\",\r\n \"23.98.162.78/32\",\r\n
+ \ \"23.98.170.75/32\",\r\n \"23.98.170.76/31\",\r\n \"23.102.172.251/32\",\r\n
+ \ \"23.102.173.220/32\",\r\n \"23.102.174.146/32\",\r\n \"23.102.179.187/32\",\r\n
+ \ \"40.74.254.156/32\",\r\n \"40.84.153.95/32\",\r\n \"40.84.155.210/32\",\r\n
+ \ \"40.84.156.165/32\",\r\n \"40.84.191.1/32\",\r\n \"40.84.193.16/32\",\r\n
+ \ \"40.84.195.189/32\",\r\n \"40.84.231.203/32\",\r\n \"40.124.8.76/32\",\r\n
+ \ \"40.124.64.136/29\",\r\n \"52.171.56.10/32\",\r\n \"52.183.250.62/32\",\r\n
+ \ \"104.214.16.0/26\",\r\n \"104.214.16.192/26\",\r\n \"104.214.17.0/26\",\r\n
+ \ \"104.214.17.192/26\",\r\n \"104.214.67.25/32\",\r\n \"104.214.73.137/32\",\r\n
+ \ \"104.214.78.242/32\",\r\n \"191.238.224.203/32\",\r\n
+ \ \"191.238.230.40/32\",\r\n \"2603:1030:807::320/123\",\r\n
+ \ \"2603:1030:807::380/121\",\r\n \"2603:1030:807:400::/123\",\r\n
+ \ \"2603:1030:807:401::/123\",\r\n \"2603:1030:807:800::/123\",\r\n
+ \ \"2603:1030:807:801::/123\",\r\n \"2603:1030:807:c00::/123\",\r\n
+ \ \"2603:1030:807:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SoutheastAsia\",\r\n \"id\": \"Sql.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"13.67.16.0/26\",\r\n \"13.67.16.192/29\",\r\n \"13.67.17.0/26\",\r\n
+ \ \"13.67.48.255/32\",\r\n \"13.67.56.134/32\",\r\n \"13.67.59.217/32\",\r\n
+ \ \"13.76.90.3/32\",\r\n \"13.76.247.54/32\",\r\n \"20.195.65.32/27\",\r\n
+ \ \"20.195.65.64/27\",\r\n \"20.195.65.128/26\",\r\n \"23.98.80.0/26\",\r\n
+ \ \"23.98.80.192/29\",\r\n \"23.98.81.0/26\",\r\n \"23.100.117.95/32\",\r\n
+ \ \"23.100.119.70/32\",\r\n \"23.101.18.228/32\",\r\n \"40.78.232.0/26\",\r\n
+ \ \"40.78.232.192/29\",\r\n \"40.78.233.0/26\",\r\n \"52.187.15.214/32\",\r\n
+ \ \"52.187.76.130/32\",\r\n \"104.43.10.74/32\",\r\n \"104.43.15.0/32\",\r\n
+ \ \"104.215.195.14/32\",\r\n \"104.215.196.52/32\",\r\n \"111.221.106.161/32\",\r\n
+ \ \"137.116.129.110/32\",\r\n \"168.63.175.68/32\",\r\n \"2603:1040:5::420/123\",\r\n
+ \ \"2603:1040:5::480/121\",\r\n \"2603:1040:5:400::/123\",\r\n
+ \ \"2603:1040:5:401::/123\",\r\n \"2603:1040:5:800::/123\",\r\n
+ \ \"2603:1040:5:801::/123\",\r\n \"2603:1040:5:c00::/123\",\r\n
+ \ \"2603:1040:5:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SouthIndia\",\r\n \"id\": \"Sql.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"40.78.192.0/27\",\r\n \"40.78.192.32/29\",\r\n \"40.78.193.0/27\",\r\n
+ \ \"40.78.193.32/29\",\r\n \"52.172.24.47/32\",\r\n \"52.172.43.208/32\",\r\n
+ \ \"52.172.113.96/27\",\r\n \"52.172.113.128/27\",\r\n \"52.172.113.192/26\",\r\n
+ \ \"104.211.224.146/31\",\r\n \"2603:1040:c06::280/123\",\r\n
+ \ \"2603:1040:c06:1::200/121\",\r\n \"2603:1040:c06:400::/123\",\r\n
+ \ \"2603:1040:c06:401::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.SwitzerlandNorth\",\r\n \"id\": \"Sql.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"51.107.56.0/27\",\r\n \"51.107.56.32/29\",\r\n \"51.107.57.0/27\",\r\n
+ \ \"51.107.242.32/27\",\r\n \"51.107.242.64/27\",\r\n \"51.107.242.128/26\",\r\n
+ \ \"2603:1020:a04::320/123\",\r\n \"2603:1020:a04::380/121\",\r\n
+ \ \"2603:1020:a04:400::/123\",\r\n \"2603:1020:a04:401::/123\",\r\n
+ \ \"2603:1020:a04:800::/123\",\r\n \"2603:1020:a04:801::/123\",\r\n
+ \ \"2603:1020:a04:c00::/123\",\r\n \"2603:1020:a04:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.SwitzerlandWest\",\r\n
+ \ \"id\": \"Sql.SwitzerlandWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"switzerlandw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"51.107.152.0/27\",\r\n
+ \ \"51.107.153.0/27\",\r\n \"51.107.153.32/29\",\r\n \"51.107.250.64/26\",\r\n
+ \ \"51.107.250.128/26\",\r\n \"2603:1020:b04::280/123\",\r\n
+ \ \"2603:1020:b04:1::200/121\",\r\n \"2603:1020:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAECentral\",\r\n
+ \ \"id\": \"Sql.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.37.71.64/26\",\r\n
+ \ \"20.37.71.128/26\",\r\n \"20.37.72.64/27\",\r\n \"20.37.72.96/29\",\r\n
+ \ \"20.37.73.64/27\",\r\n \"20.37.73.96/29\",\r\n \"2603:1040:b04::280/123\",\r\n
+ \ \"2603:1040:b04:1::200/121\",\r\n \"2603:1040:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.UAENorth\",\r\n
+ \ \"id\": \"Sql.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"20.38.143.64/26\",\r\n
+ \ \"20.38.143.128/26\",\r\n \"20.38.152.24/29\",\r\n \"40.120.72.0/27\",\r\n
+ \ \"40.120.72.32/29\",\r\n \"40.120.73.0/27\",\r\n \"65.52.248.0/27\",\r\n
+ \ \"65.52.248.32/29\",\r\n \"65.52.249.0/27\",\r\n \"2603:1040:904::320/123\",\r\n
+ \ \"2603:1040:904::380/121\",\r\n \"2603:1040:904:400::/123\",\r\n
+ \ \"2603:1040:904:401::/123\",\r\n \"2603:1040:904:800::/123\",\r\n
+ \ \"2603:1040:904:801::/123\",\r\n \"2603:1040:904:c00::/123\",\r\n
+ \ \"2603:1040:904:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKNorth\",\r\n \"id\": \"Sql.UKNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"uknorth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\"\r\n ],\r\n \"systemService\": \"AzureSQL\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.87.97.210/32\",\r\n \"13.87.97.228/32\",\r\n
+ \ \"13.87.97.237/32\",\r\n \"13.87.120.0/27\",\r\n \"13.87.121.0/27\",\r\n
+ \ \"51.142.211.129/32\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Sql.UKSouth\",\r\n \"id\": \"Sql.UKSouth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"uksouth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n
+ \ \"51.105.64.0/27\",\r\n \"51.105.64.32/29\",\r\n \"51.105.65.0/27\",\r\n
+ \ \"51.105.72.0/27\",\r\n \"51.105.72.32/29\",\r\n \"51.105.73.0/27\",\r\n
+ \ \"51.140.77.9/32\",\r\n \"51.140.114.26/32\",\r\n \"51.140.115.150/32\",\r\n
+ \ \"51.140.144.0/27\",\r\n \"51.140.144.32/29\",\r\n \"51.140.145.0/27\",\r\n
+ \ \"51.140.180.9/32\",\r\n \"51.140.183.238/32\",\r\n \"51.140.184.11/32\",\r\n
+ \ \"51.140.184.12/32\",\r\n \"51.143.209.224/27\",\r\n \"51.143.212.0/27\",\r\n
+ \ \"51.143.212.64/26\",\r\n \"2603:1020:705::320/123\",\r\n
+ \ \"2603:1020:705::380/121\",\r\n \"2603:1020:705:400::/123\",\r\n
+ \ \"2603:1020:705:401::/123\",\r\n \"2603:1020:705:800::/123\",\r\n
+ \ \"2603:1020:705:801::/123\",\r\n \"2603:1020:705:c00::/123\",\r\n
+ \ \"2603:1020:705:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.UKWest\",\r\n \"id\": \"Sql.UKWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"ukwest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"20.58.66.128/25\",\r\n \"51.140.208.64/27\",\r\n
+ \ \"51.140.208.96/29\",\r\n \"51.140.209.0/27\",\r\n \"51.140.209.32/29\",\r\n
+ \ \"51.141.8.11/32\",\r\n \"51.141.8.12/32\",\r\n \"51.141.15.53/32\",\r\n
+ \ \"51.141.25.212/32\",\r\n \"2603:1020:605::280/123\",\r\n
+ \ \"2603:1020:605:1::200/121\",\r\n \"2603:1020:605:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestCentralUS\",\r\n
+ \ \"id\": \"Sql.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.71.192.0/27\",\r\n
+ \ \"13.71.193.0/27\",\r\n \"13.71.193.32/29\",\r\n \"13.78.144.57/32\",\r\n
+ \ \"13.78.145.25/32\",\r\n \"13.78.148.71/32\",\r\n \"13.78.151.189/32\",\r\n
+ \ \"13.78.151.207/32\",\r\n \"13.78.178.116/32\",\r\n \"13.78.178.151/32\",\r\n
+ \ \"13.78.248.32/27\",\r\n \"20.69.0.32/27\",\r\n \"20.69.0.64/27\",\r\n
+ \ \"20.69.0.128/26\",\r\n \"52.161.15.204/32\",\r\n \"52.161.100.158/32\",\r\n
+ \ \"52.161.105.228/32\",\r\n \"52.161.128.32/27\",\r\n \"2603:1030:b04::280/123\",\r\n
+ \ \"2603:1030:b04:1::200/121\",\r\n \"2603:1030:b04:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestEurope\",\r\n
+ \ \"id\": \"Sql.WestEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.69.104.0/26\",\r\n
+ \ \"13.69.104.192/26\",\r\n \"13.69.105.0/26\",\r\n \"13.69.105.192/26\",\r\n
+ \ \"13.69.112.168/29\",\r\n \"20.61.99.192/26\",\r\n \"20.61.102.0/26\",\r\n
+ \ \"23.97.167.46/32\",\r\n \"23.97.169.19/32\",\r\n \"23.97.219.82/32\",\r\n
+ \ \"23.97.221.176/32\",\r\n \"23.101.64.10/32\",\r\n \"40.68.37.158/32\",\r\n
+ \ \"40.68.215.206/32\",\r\n \"40.68.220.16/32\",\r\n \"40.74.51.145/32\",\r\n
+ \ \"40.74.53.36/32\",\r\n \"40.74.60.91/32\",\r\n \"40.114.240.125/32\",\r\n
+ \ \"40.114.240.162/32\",\r\n \"40.115.37.61/32\",\r\n \"40.115.51.118/32\",\r\n
+ \ \"40.115.52.141/32\",\r\n \"40.115.53.255/32\",\r\n \"40.115.61.208/32\",\r\n
+ \ \"40.118.12.208/32\",\r\n \"52.166.76.0/32\",\r\n \"52.166.131.195/32\",\r\n
+ \ \"52.236.184.0/27\",\r\n \"52.236.184.32/29\",\r\n \"52.236.184.128/25\",\r\n
+ \ \"52.236.185.0/27\",\r\n \"52.236.185.128/25\",\r\n \"104.40.155.247/32\",\r\n
+ \ \"104.40.168.64/26\",\r\n \"104.40.168.192/26\",\r\n \"104.40.169.0/27\",\r\n
+ \ \"104.40.169.32/29\",\r\n \"104.40.169.128/25\",\r\n \"104.40.180.164/32\",\r\n
+ \ \"104.40.220.28/32\",\r\n \"104.40.230.18/32\",\r\n \"104.40.232.54/32\",\r\n
+ \ \"104.40.237.111/32\",\r\n \"104.45.11.99/32\",\r\n \"104.45.14.115/32\",\r\n
+ \ \"104.46.38.143/32\",\r\n \"104.46.40.24/32\",\r\n \"104.47.157.97/32\",\r\n
+ \ \"137.116.203.91/32\",\r\n \"168.63.13.214/32\",\r\n \"168.63.98.91/32\",\r\n
+ \ \"191.233.69.227/32\",\r\n \"191.233.90.117/32\",\r\n \"191.237.232.75/32\",\r\n
+ \ \"191.237.232.76/31\",\r\n \"191.237.232.78/32\",\r\n \"191.237.232.235/32\",\r\n
+ \ \"191.237.232.236/31\",\r\n \"2603:1020:206::320/123\",\r\n
+ \ \"2603:1020:206::380/121\",\r\n \"2603:1020:206:400::/123\",\r\n
+ \ \"2603:1020:206:401::/123\",\r\n \"2603:1020:206:800::/123\",\r\n
+ \ \"2603:1020:206:801::/123\",\r\n \"2603:1020:206:c00::/123\",\r\n
+ \ \"2603:1020:206:c01::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestIndia\",\r\n \"id\": \"Sql.WestIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureSQL\",\r\n \"addressPrefixes\":
+ [\r\n \"52.136.53.160/27\",\r\n \"52.136.53.192/27\",\r\n
+ \ \"104.211.144.0/27\",\r\n \"104.211.144.32/29\",\r\n \"104.211.145.0/27\",\r\n
+ \ \"104.211.145.32/29\",\r\n \"104.211.160.80/31\",\r\n \"104.211.185.58/32\",\r\n
+ \ \"104.211.190.46/32\",\r\n \"2603:1040:806::280/123\",\r\n
+ \ \"2603:1040:806:1::200/121\",\r\n \"2603:1040:806:400::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Sql.WestUS\",\r\n
+ \ \"id\": \"Sql.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.86.216.0/25\",\r\n
+ \ \"13.86.216.128/26\",\r\n \"13.86.216.192/27\",\r\n \"13.86.217.0/25\",\r\n
+ \ \"13.86.217.128/26\",\r\n \"13.86.217.192/27\",\r\n \"13.86.217.224/29\",\r\n
+ \ \"13.88.14.200/32\",\r\n \"13.88.29.70/32\",\r\n \"13.91.4.219/32\",\r\n
+ \ \"13.91.6.136/32\",\r\n \"13.91.41.153/32\",\r\n \"13.91.44.56/32\",\r\n
+ \ \"13.91.46.83/32\",\r\n \"13.91.47.72/32\",\r\n \"13.93.165.251/32\",\r\n
+ \ \"13.93.237.158/32\",\r\n \"20.66.3.64/26\",\r\n \"20.66.3.128/26\",\r\n
+ \ \"23.99.4.210/32\",\r\n \"23.99.4.248/32\",\r\n \"23.99.10.185/32\",\r\n
+ \ \"23.99.34.75/32\",\r\n \"23.99.34.76/31\",\r\n \"23.99.34.78/32\",\r\n
+ \ \"23.99.37.235/32\",\r\n \"23.99.37.236/32\",\r\n \"23.99.57.14/32\",\r\n
+ \ \"23.99.80.243/32\",\r\n \"23.99.89.212/32\",\r\n \"23.99.90.75/32\",\r\n
+ \ \"23.99.91.130/32\",\r\n \"40.78.16.122/32\",\r\n \"40.78.23.252/32\",\r\n
+ \ \"40.78.31.250/32\",\r\n \"40.78.57.109/32\",\r\n \"40.78.101.91/32\",\r\n
+ \ \"40.78.110.18/32\",\r\n \"40.78.111.189/32\",\r\n \"40.83.178.165/32\",\r\n
+ \ \"40.83.186.249/32\",\r\n \"40.112.139.250/32\",\r\n \"40.112.240.0/27\",\r\n
+ \ \"40.112.246.0/27\",\r\n \"40.118.129.167/32\",\r\n \"40.118.170.1/32\",\r\n
+ \ \"40.118.209.206/32\",\r\n \"40.118.244.227/32\",\r\n \"40.118.249.123/32\",\r\n
+ \ \"40.118.250.19/32\",\r\n \"104.40.28.188/32\",\r\n \"104.40.49.103/32\",\r\n
+ \ \"104.40.54.130/32\",\r\n \"104.40.82.151/32\",\r\n \"104.42.120.235/32\",\r\n
+ \ \"104.42.127.95/32\",\r\n \"104.42.136.93/32\",\r\n \"104.42.188.130/32\",\r\n
+ \ \"104.42.192.190/32\",\r\n \"104.42.199.221/32\",\r\n \"104.42.231.253/32\",\r\n
+ \ \"104.42.237.198/32\",\r\n \"104.42.238.205/32\",\r\n \"104.210.32.128/32\",\r\n
+ \ \"137.135.51.212/32\",\r\n \"138.91.145.12/32\",\r\n \"138.91.160.189/32\",\r\n
+ \ \"138.91.240.14/32\",\r\n \"138.91.246.31/32\",\r\n \"138.91.247.51/32\",\r\n
+ \ \"138.91.251.139/32\",\r\n \"191.236.119.31/32\",\r\n \"191.239.12.154/32\",\r\n
+ \ \"2603:1030:a07::280/123\",\r\n \"2603:1030:a07:1::200/121\",\r\n
+ \ \"2603:1030:a07:400::/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"Sql.WestUS2\",\r\n \"id\": \"Sql.WestUS2\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"westus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureSQL\",\r\n \"addressPrefixes\": [\r\n \"13.66.136.0/26\",\r\n
+ \ \"13.66.136.192/29\",\r\n \"13.66.137.0/26\",\r\n \"13.66.226.202/32\",\r\n
+ \ \"13.66.229.222/32\",\r\n \"13.66.230.18/31\",\r\n \"13.66.230.60/32\",\r\n
+ \ \"13.66.230.64/32\",\r\n \"13.66.230.103/32\",\r\n \"20.51.9.128/25\",\r\n
+ \ \"40.78.240.0/26\",\r\n \"40.78.240.192/29\",\r\n \"40.78.241.0/26\",\r\n
+ \ \"40.78.248.0/26\",\r\n \"40.78.248.192/29\",\r\n \"40.78.249.0/26\",\r\n
+ \ \"52.191.144.64/26\",\r\n \"52.191.152.64/26\",\r\n \"52.191.172.187/32\",\r\n
+ \ \"52.191.174.114/32\",\r\n \"52.229.17.93/32\",\r\n \"52.246.251.248/32\",\r\n
+ \ \"2603:1030:c06:2::200/123\",\r\n \"2603:1030:c06:2::280/121\",\r\n
+ \ \"2603:1030:c06:401::/123\",\r\n \"2603:1030:c06:402::/123\",\r\n
+ \ \"2603:1030:c06:800::/123\",\r\n \"2603:1030:c06:801::/123\",\r\n
+ \ \"2603:1030:c06:c00::/123\",\r\n \"2603:1030:c06:c01::/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"SqlManagement\",\r\n
+ \ \"id\": \"SqlManagement\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"SqlManagement\",\r\n \"addressPrefixes\":
+ [\r\n \"13.64.155.40/32\",\r\n \"13.66.140.96/27\",\r\n
+ \ \"13.66.141.192/27\",\r\n \"13.67.8.192/27\",\r\n \"13.67.10.32/27\",\r\n
+ \ \"13.69.64.96/27\",\r\n \"13.69.67.0/27\",\r\n \"13.69.106.96/27\",\r\n
+ \ \"13.69.107.32/27\",\r\n \"13.69.227.96/27\",\r\n \"13.69.229.192/27\",\r\n
+ \ \"13.70.72.160/27\",\r\n \"13.70.73.224/27\",\r\n \"13.71.119.167/32\",\r\n
+ \ \"13.71.123.234/32\",\r\n \"13.71.170.160/27\",\r\n \"13.71.173.96/27\",\r\n
+ \ \"13.71.195.0/27\",\r\n \"13.71.196.96/27\",\r\n \"13.73.240.192/27\",\r\n
+ \ \"13.73.242.0/27\",\r\n \"13.73.249.176/28\",\r\n \"13.74.107.96/27\",\r\n
+ \ \"13.74.107.224/27\",\r\n \"13.75.36.32/27\",\r\n \"13.75.39.32/27\",\r\n
+ \ \"13.77.50.192/27\",\r\n \"13.77.53.0/27\",\r\n \"13.78.106.224/27\",\r\n
+ \ \"13.78.109.64/27\",\r\n \"13.78.181.246/32\",\r\n \"13.78.182.82/32\",\r\n
+ \ \"13.84.52.76/32\",\r\n \"13.86.219.96/27\",\r\n \"13.87.39.133/32\",\r\n
+ \ \"13.87.39.173/32\",\r\n \"13.87.56.192/27\",\r\n \"13.87.58.0/27\",\r\n
+ \ \"13.87.122.192/27\",\r\n \"13.87.124.0/27\",\r\n \"13.89.170.224/27\",\r\n
+ \ \"13.89.174.96/27\",\r\n \"13.92.242.41/32\",\r\n \"13.94.47.38/32\",\r\n
+ \ \"13.104.248.32/27\",\r\n \"13.104.248.96/27\",\r\n \"20.36.46.202/32\",\r\n
+ \ \"20.36.46.220/32\",\r\n \"20.36.75.75/32\",\r\n \"20.36.75.114/32\",\r\n
+ \ \"20.36.108.0/27\",\r\n \"20.36.108.64/27\",\r\n \"20.36.115.160/27\",\r\n
+ \ \"20.36.115.192/27\",\r\n \"20.36.123.0/28\",\r\n \"20.37.67.64/28\",\r\n
+ \ \"20.37.76.0/27\",\r\n \"20.37.76.64/27\",\r\n \"20.37.198.96/28\",\r\n
+ \ \"20.37.227.0/28\",\r\n \"20.38.87.208/28\",\r\n \"20.38.128.0/27\",\r\n
+ \ \"20.38.139.64/28\",\r\n \"20.38.146.192/27\",\r\n \"20.38.147.32/27\",\r\n
+ \ \"20.39.12.240/28\",\r\n \"20.40.200.176/28\",\r\n \"20.41.67.96/28\",\r\n
+ \ \"20.41.197.32/28\",\r\n \"20.42.131.34/31\",\r\n \"20.42.230.96/28\",\r\n
+ \ \"20.43.43.176/28\",\r\n \"20.43.70.80/28\",\r\n \"20.43.120.192/27\",\r\n
+ \ \"20.44.4.0/26\",\r\n \"20.44.8.128/27\",\r\n \"20.44.16.160/27\",\r\n
+ \ \"20.44.26.192/27\",\r\n \"20.44.27.160/27\",\r\n \"20.45.75.228/32\",\r\n
+ \ \"20.45.75.230/32\",\r\n \"20.45.114.208/28\",\r\n \"20.45.122.192/27\",\r\n
+ \ \"20.45.126.32/27\",\r\n \"20.45.197.240/28\",\r\n \"20.49.83.160/27\",\r\n
+ \ \"20.49.83.192/27\",\r\n \"20.49.91.160/27\",\r\n \"20.49.93.96/27\",\r\n
+ \ \"20.49.99.48/28\",\r\n \"20.49.109.64/28\",\r\n \"20.49.113.16/28\",\r\n
+ \ \"20.49.120.48/28\",\r\n \"20.50.1.224/28\",\r\n \"20.72.21.16/28\",\r\n
+ \ \"20.72.28.224/27\",\r\n \"20.72.30.128/27\",\r\n \"20.150.165.160/28\",\r\n
+ \ \"20.150.170.32/27\",\r\n \"20.150.170.128/27\",\r\n \"20.150.172.96/27\",\r\n
+ \ \"20.150.178.192/26\",\r\n \"20.150.186.192/26\",\r\n \"20.187.194.208/28\",\r\n
+ \ \"20.192.98.192/26\",\r\n \"20.192.165.192/28\",\r\n \"20.192.230.16/28\",\r\n
+ \ \"20.192.238.32/27\",\r\n \"20.192.238.64/27\",\r\n \"20.193.205.160/27\",\r\n
+ \ \"20.193.205.192/27\",\r\n \"20.194.67.128/26\",\r\n \"23.96.185.63/32\",\r\n
+ \ \"23.96.243.93/32\",\r\n \"23.97.120.24/32\",\r\n \"23.98.82.128/27\",\r\n
+ \ \"23.98.83.32/27\",\r\n \"23.98.104.144/28\",\r\n \"23.99.97.255/32\",\r\n
+ \ \"40.64.132.112/28\",\r\n \"40.65.124.161/32\",\r\n \"40.67.50.224/28\",\r\n
+ \ \"40.67.58.32/27\",\r\n \"40.67.60.32/27\",\r\n \"40.69.106.192/27\",\r\n
+ \ \"40.69.108.0/27\",\r\n \"40.69.161.215/32\",\r\n \"40.70.72.228/32\",\r\n
+ \ \"40.70.146.96/27\",\r\n \"40.70.148.64/27\",\r\n \"40.71.10.224/27\",\r\n
+ \ \"40.71.13.192/27\",\r\n \"40.71.215.148/32\",\r\n \"40.74.100.192/27\",\r\n
+ \ \"40.74.101.224/27\",\r\n \"40.74.147.0/27\",\r\n \"40.74.147.96/27\",\r\n
+ \ \"40.74.147.128/27\",\r\n \"40.74.254.227/32\",\r\n \"40.75.34.64/27\",\r\n
+ \ \"40.75.35.0/27\",\r\n \"40.78.194.192/27\",\r\n \"40.78.196.0/27\",\r\n
+ \ \"40.78.203.128/27\",\r\n \"40.78.203.192/27\",\r\n \"40.78.226.224/27\",\r\n
+ \ \"40.78.229.0/27\",\r\n \"40.78.234.64/27\",\r\n \"40.78.234.224/27\",\r\n
+ \ \"40.78.242.192/27\",\r\n \"40.78.243.128/27\",\r\n \"40.78.250.128/27\",\r\n
+ \ \"40.78.251.64/27\",\r\n \"40.79.32.162/32\",\r\n \"40.79.130.160/27\",\r\n
+ \ \"40.79.132.0/27\",\r\n \"40.79.138.64/27\",\r\n \"40.79.138.160/27\",\r\n
+ \ \"40.79.146.64/27\",\r\n \"40.79.146.160/27\",\r\n \"40.79.154.0/27\",\r\n
+ \ \"40.79.154.224/27\",\r\n \"40.79.156.0/27\",\r\n \"40.79.162.64/27\",\r\n
+ \ \"40.79.162.160/27\",\r\n \"40.79.170.160/27\",\r\n \"40.79.171.0/27\",\r\n
+ \ \"40.79.178.192/27\",\r\n \"40.79.179.224/27\",\r\n \"40.79.186.96/27\",\r\n
+ \ \"40.79.187.128/27\",\r\n \"40.79.194.0/27\",\r\n \"40.79.195.128/27\",\r\n
+ \ \"40.80.50.192/27\",\r\n \"40.80.51.32/27\",\r\n \"40.80.62.0/28\",\r\n
+ \ \"40.80.172.32/28\",\r\n \"40.89.20.144/28\",\r\n \"40.112.243.128/27\",\r\n
+ \ \"40.120.75.192/26\",\r\n \"40.123.207.224/32\",\r\n \"40.123.219.239/32\",\r\n
+ \ \"40.126.238.47/32\",\r\n \"40.127.3.232/32\",\r\n \"51.12.42.0/28\",\r\n
+ \ \"51.12.98.32/27\",\r\n \"51.12.98.128/27\",\r\n \"51.12.194.0/28\",\r\n
+ \ \"51.12.202.32/27\",\r\n \"51.12.202.128/27\",\r\n \"51.12.226.192/26\",\r\n
+ \ \"51.12.234.192/26\",\r\n \"51.104.8.192/27\",\r\n \"51.104.28.240/28\",\r\n
+ \ \"51.105.66.192/27\",\r\n \"51.105.67.128/27\",\r\n \"51.105.74.192/27\",\r\n
+ \ \"51.105.75.32/27\",\r\n \"51.105.83.0/28\",\r\n \"51.105.90.160/28\",\r\n
+ \ \"51.107.51.0/28\",\r\n \"51.107.58.32/27\",\r\n \"51.107.60.0/27\",\r\n
+ \ \"51.107.147.0/28\",\r\n \"51.107.154.32/27\",\r\n \"51.107.156.0/27\",\r\n
+ \ \"51.116.49.144/28\",\r\n \"51.116.58.32/27\",\r\n \"51.116.60.0/27\",\r\n
+ \ \"51.116.145.144/28\",\r\n \"51.116.154.96/27\",\r\n \"51.116.156.0/27\",\r\n
+ \ \"51.116.242.192/26\",\r\n \"51.116.243.32/27\",\r\n \"51.116.250.192/27\",\r\n
+ \ \"51.116.253.96/27\",\r\n \"51.120.43.64/28\",\r\n \"51.120.98.32/27\",\r\n
+ \ \"51.120.100.0/27\",\r\n \"51.120.106.192/26\",\r\n \"51.120.210.192/26\",\r\n
+ \ \"51.120.218.32/27\",\r\n \"51.120.218.128/27\",\r\n \"51.120.227.64/28\",\r\n
+ \ \"51.137.164.96/28\",\r\n \"51.140.121.92/32\",\r\n \"51.140.127.51/32\",\r\n
+ \ \"51.140.146.224/27\",\r\n \"51.140.210.224/27\",\r\n \"51.140.212.32/27\",\r\n
+ \ \"51.141.38.88/32\",\r\n \"51.141.39.175/32\",\r\n \"51.142.213.97/32\",\r\n
+ \ \"51.142.215.251/32\",\r\n \"51.143.195.0/28\",\r\n \"52.136.51.80/28\",\r\n
+ \ \"52.136.139.224/32\",\r\n \"52.136.140.157/32\",\r\n \"52.138.90.96/27\",\r\n
+ \ \"52.138.226.96/27\",\r\n \"52.138.226.224/27\",\r\n \"52.140.108.80/28\",\r\n
+ \ \"52.143.136.162/32\",\r\n \"52.143.139.82/32\",\r\n \"52.150.139.78/31\",\r\n
+ \ \"52.150.152.32/28\",\r\n \"52.162.107.128/27\",\r\n \"52.162.110.192/27\",\r\n
+ \ \"52.164.200.174/32\",\r\n \"52.165.237.178/32\",\r\n \"52.166.50.138/32\",\r\n
+ \ \"52.167.106.96/27\",\r\n \"52.167.106.224/27\",\r\n \"52.169.6.70/32\",\r\n
+ \ \"52.172.193.99/32\",\r\n \"52.172.204.185/32\",\r\n \"52.173.243.204/32\",\r\n
+ \ \"52.175.156.251/32\",\r\n \"52.182.138.224/27\",\r\n \"52.182.139.96/27\",\r\n
+ \ \"52.183.64.43/32\",\r\n \"52.185.145.40/32\",\r\n \"52.185.154.136/32\",\r\n
+ \ \"52.187.185.17/32\",\r\n \"52.225.130.171/32\",\r\n \"52.228.84.112/28\",\r\n
+ \ \"52.230.122.197/32\",\r\n \"52.231.18.160/27\",\r\n \"52.231.19.224/27\",\r\n
+ \ \"52.231.30.200/32\",\r\n \"52.231.34.21/32\",\r\n \"52.231.146.224/27\",\r\n
+ \ \"52.231.148.32/27\",\r\n \"52.231.202.76/32\",\r\n \"52.231.206.187/32\",\r\n
+ \ \"52.233.30.2/32\",\r\n \"52.233.38.82/32\",\r\n \"52.233.130.100/32\",\r\n
+ \ \"52.235.36.131/32\",\r\n \"52.236.186.96/27\",\r\n \"52.236.187.32/27\",\r\n
+ \ \"52.237.244.169/32\",\r\n \"52.242.36.170/32\",\r\n \"52.243.87.200/32\",\r\n
+ \ \"52.246.154.192/27\",\r\n \"52.246.155.32/27\",\r\n \"52.255.51.21/32\",\r\n
+ \ \"65.52.252.0/27\",\r\n \"65.52.252.64/27\",\r\n \"102.133.27.224/27\",\r\n
+ \ \"102.133.28.32/27\",\r\n \"102.133.58.208/28\",\r\n \"102.133.72.35/32\",\r\n
+ \ \"102.133.72.42/32\",\r\n \"102.133.122.192/27\",\r\n \"102.133.123.192/27\",\r\n
+ \ \"102.133.155.224/27\",\r\n \"102.133.156.32/27\",\r\n
+ \ \"102.133.160.35/32\",\r\n \"102.133.218.128/28\",\r\n
+ \ \"102.133.250.192/27\",\r\n \"102.133.251.32/27\",\r\n
+ \ \"104.42.96.175/32\",\r\n \"104.208.16.96/27\",\r\n \"104.208.144.96/27\",\r\n
+ \ \"104.211.81.160/27\",\r\n \"104.211.146.192/27\",\r\n
+ \ \"104.211.187.232/32\",\r\n \"104.214.19.0/27\",\r\n \"104.214.108.80/32\",\r\n
+ \ \"104.215.17.87/32\",\r\n \"191.232.163.58/32\",\r\n \"191.233.11.128/28\",\r\n
+ \ \"191.233.54.32/27\",\r\n \"191.233.54.192/27\",\r\n \"191.233.203.160/27\",\r\n
+ \ \"191.233.205.32/27\",\r\n \"191.234.136.64/28\",\r\n \"191.234.146.192/26\",\r\n
+ \ \"191.234.154.192/26\",\r\n \"2603:1000:4:402::380/122\",\r\n
+ \ \"2603:1000:104:402::380/122\",\r\n \"2603:1000:104:802::260/123\",\r\n
+ \ \"2603:1000:104:802::280/123\",\r\n \"2603:1000:104:c02::260/123\",\r\n
+ \ \"2603:1000:104:c02::280/123\",\r\n \"2603:1010:6:402::380/122\",\r\n
+ \ \"2603:1010:6:802::260/123\",\r\n \"2603:1010:6:802::280/123\",\r\n
+ \ \"2603:1010:6:c02::260/123\",\r\n \"2603:1010:6:c02::280/123\",\r\n
+ \ \"2603:1010:101:402::380/122\",\r\n \"2603:1010:304:402::380/122\",\r\n
+ \ \"2603:1010:404:402::380/122\",\r\n \"2603:1020:5:402::380/122\",\r\n
+ \ \"2603:1020:5:802::260/123\",\r\n \"2603:1020:5:802::280/123\",\r\n
+ \ \"2603:1020:5:c02::260/123\",\r\n \"2603:1020:5:c02::280/123\",\r\n
+ \ \"2603:1020:206:402::380/122\",\r\n \"2603:1020:206:802::260/123\",\r\n
+ \ \"2603:1020:206:802::280/123\",\r\n \"2603:1020:206:c02::260/123\",\r\n
+ \ \"2603:1020:206:c02::280/123\",\r\n \"2603:1020:305:402::380/122\",\r\n
+ \ \"2603:1020:405:402::380/122\",\r\n \"2603:1020:605:402::380/122\",\r\n
+ \ \"2603:1020:705:402::380/122\",\r\n \"2603:1020:705:802::260/123\",\r\n
+ \ \"2603:1020:705:802::280/123\",\r\n \"2603:1020:705:c02::260/123\",\r\n
+ \ \"2603:1020:705:c02::280/123\",\r\n \"2603:1020:805:402::380/122\",\r\n
+ \ \"2603:1020:805:802::260/123\",\r\n \"2603:1020:805:802::280/123\",\r\n
+ \ \"2603:1020:805:c02::260/123\",\r\n \"2603:1020:805:c02::280/123\",\r\n
+ \ \"2603:1020:905:402::380/122\",\r\n \"2603:1020:a04:402::380/122\",\r\n
+ \ \"2603:1020:a04:802::260/123\",\r\n \"2603:1020:a04:802::280/123\",\r\n
+ \ \"2603:1020:a04:c02::260/123\",\r\n \"2603:1020:a04:c02::280/123\",\r\n
+ \ \"2603:1020:b04:402::380/122\",\r\n \"2603:1020:c04:402::380/122\",\r\n
+ \ \"2603:1020:c04:802::260/123\",\r\n \"2603:1020:c04:802::280/123\",\r\n
+ \ \"2603:1020:c04:c02::260/123\",\r\n \"2603:1020:c04:c02::280/123\",\r\n
+ \ \"2603:1020:d04:402::380/122\",\r\n \"2603:1020:e04:3::400/123\",\r\n
+ \ \"2603:1020:e04:402::380/122\",\r\n \"2603:1020:e04:802::260/123\",\r\n
+ \ \"2603:1020:e04:802::280/123\",\r\n \"2603:1020:e04:c02::260/123\",\r\n
+ \ \"2603:1020:e04:c02::280/123\",\r\n \"2603:1020:f04:402::380/122\",\r\n
+ \ \"2603:1020:1004:1::500/123\",\r\n \"2603:1020:1004:400::200/122\",\r\n
+ \ \"2603:1020:1004:800::300/122\",\r\n \"2603:1020:1004:c02::2c0/122\",\r\n
+ \ \"2603:1020:1104:1::1e0/123\",\r\n \"2603:1020:1104:400::340/122\",\r\n
+ \ \"2603:1030:f:2::6e0/123\",\r\n \"2603:1030:f:400::b80/122\",\r\n
+ \ \"2603:1030:10:402::380/122\",\r\n \"2603:1030:10:802::260/123\",\r\n
+ \ \"2603:1030:10:802::280/123\",\r\n \"2603:1030:10:c02::260/123\",\r\n
+ \ \"2603:1030:10:c02::280/123\",\r\n \"2603:1030:104:402::380/122\",\r\n
+ \ \"2603:1030:107:1::220/123\",\r\n \"2603:1030:107:400::2c0/122\",\r\n
+ \ \"2603:1030:210:402::380/122\",\r\n \"2603:1030:210:802::260/123\",\r\n
+ \ \"2603:1030:210:802::280/123\",\r\n \"2603:1030:210:c02::260/123\",\r\n
+ \ \"2603:1030:210:c02::280/123\",\r\n \"2603:1030:40b:400::b80/122\",\r\n
+ \ \"2603:1030:40b:800::260/123\",\r\n \"2603:1030:40b:800::280/123\",\r\n
+ \ \"2603:1030:40b:c00::260/123\",\r\n \"2603:1030:40b:c00::280/123\",\r\n
+ \ \"2603:1030:40c:402::380/122\",\r\n \"2603:1030:40c:802::260/123\",\r\n
+ \ \"2603:1030:40c:802::280/123\",\r\n \"2603:1030:40c:c02::260/123\",\r\n
+ \ \"2603:1030:40c:c02::280/123\",\r\n \"2603:1030:504::500/123\",\r\n
+ \ \"2603:1030:504:402::200/122\",\r\n \"2603:1030:504:802::300/122\",\r\n
+ \ \"2603:1030:504:c02::2c0/122\",\r\n \"2603:1030:608:402::380/122\",\r\n
+ \ \"2603:1030:807:402::380/122\",\r\n \"2603:1030:807:802::260/123\",\r\n
+ \ \"2603:1030:807:802::280/123\",\r\n \"2603:1030:807:c02::260/123\",\r\n
+ \ \"2603:1030:807:c02::280/123\",\r\n \"2603:1030:a07:402::300/122\",\r\n
+ \ \"2603:1030:b04:402::380/122\",\r\n \"2603:1030:c06:400::b80/122\",\r\n
+ \ \"2603:1030:c06:802::260/123\",\r\n \"2603:1030:c06:802::280/123\",\r\n
+ \ \"2603:1030:c06:c02::260/123\",\r\n \"2603:1030:c06:c02::280/123\",\r\n
+ \ \"2603:1030:f05:402::380/122\",\r\n \"2603:1030:f05:802::260/123\",\r\n
+ \ \"2603:1030:f05:802::280/123\",\r\n \"2603:1030:f05:c02::260/123\",\r\n
+ \ \"2603:1030:f05:c02::280/123\",\r\n \"2603:1030:1005:402::380/122\",\r\n
+ \ \"2603:1040:5:402::380/122\",\r\n \"2603:1040:5:802::260/123\",\r\n
+ \ \"2603:1040:5:802::280/123\",\r\n \"2603:1040:5:c02::260/123\",\r\n
+ \ \"2603:1040:5:c02::280/123\",\r\n \"2603:1040:207:402::380/122\",\r\n
+ \ \"2603:1040:407:402::380/122\",\r\n \"2603:1040:407:802::260/123\",\r\n
+ \ \"2603:1040:407:802::280/123\",\r\n \"2603:1040:407:c02::260/123\",\r\n
+ \ \"2603:1040:407:c02::280/123\",\r\n \"2603:1040:606:402::380/122\",\r\n
+ \ \"2603:1040:806:402::380/122\",\r\n \"2603:1040:904:402::380/122\",\r\n
+ \ \"2603:1040:904:802::260/123\",\r\n \"2603:1040:904:802::280/123\",\r\n
+ \ \"2603:1040:904:c02::260/123\",\r\n \"2603:1040:904:c02::280/123\",\r\n
+ \ \"2603:1040:a06:402::380/122\",\r\n \"2603:1040:a06:802::260/123\",\r\n
+ \ \"2603:1040:a06:802::280/123\",\r\n \"2603:1040:a06:c02::260/123\",\r\n
+ \ \"2603:1040:a06:c02::280/123\",\r\n \"2603:1040:b04:402::380/122\",\r\n
+ \ \"2603:1040:c06:402::380/122\",\r\n \"2603:1040:d04:1::500/123\",\r\n
+ \ \"2603:1040:d04:400::200/122\",\r\n \"2603:1040:d04:800::300/122\",\r\n
+ \ \"2603:1040:d04:c02::2c0/122\",\r\n \"2603:1040:f05:2::240/123\",\r\n
+ \ \"2603:1040:f05:402::380/122\",\r\n \"2603:1040:f05:802::260/123\",\r\n
+ \ \"2603:1040:f05:802::280/123\",\r\n \"2603:1040:f05:c02::260/123\",\r\n
+ \ \"2603:1040:f05:c02::280/123\",\r\n \"2603:1040:1104:1::1e0/123\",\r\n
+ \ \"2603:1040:1104:400::340/122\",\r\n \"2603:1050:6:402::380/122\",\r\n
+ \ \"2603:1050:6:802::260/123\",\r\n \"2603:1050:6:802::280/123\",\r\n
+ \ \"2603:1050:6:c02::260/123\",\r\n \"2603:1050:6:c02::280/123\",\r\n
+ \ \"2603:1050:403:400::260/123\",\r\n \"2603:1050:403:400::280/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage\",\r\n
+ \ \"id\": \"Storage\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\",\r\n
+ \ \"VSE\"\r\n ],\r\n \"systemService\": \"AzureStorage\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n \"13.65.160.16/28\",\r\n
+ \ \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.67.155.16/28\",\r\n
+ \ \"13.68.120.64/28\",\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.69.40.16/28\",\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.71.200.64/28\",\r\n \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n
+ \ \"13.71.202.16/28\",\r\n \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n
+ \ \"13.72.235.64/28\",\r\n \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n
+ \ \"13.72.237.48/28\",\r\n \"13.72.237.64/28\",\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n
+ \ \"13.74.208.144/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"13.76.104.16/28\",\r\n \"13.77.8.16/28\",\r\n
+ \ \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n \"13.77.8.96/28\",\r\n
+ \ \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n \"13.77.8.192/27\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"13.77.184.64/28\",\r\n \"13.78.152.64/28\",\r\n \"13.78.240.16/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n \"13.82.152.48/28\",\r\n
+ \ \"13.82.152.80/28\",\r\n \"13.83.72.16/28\",\r\n \"13.84.56.16/28\",\r\n
+ \ \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n \"13.87.40.64/28\",\r\n
+ \ \"13.87.40.96/28\",\r\n \"13.87.104.64/28\",\r\n \"13.87.104.96/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"13.95.96.176/28\",\r\n
+ \ \"13.95.240.16/28\",\r\n \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n
+ \ \"20.38.96.0/19\",\r\n \"20.47.0.0/18\",\r\n \"20.60.0.0/16\",\r\n
+ \ \"20.150.0.0/17\",\r\n \"20.157.32.0/19\",\r\n \"20.157.128.0/19\",\r\n
+ \ \"23.96.64.64/26\",\r\n \"23.97.112.64/26\",\r\n \"23.98.49.0/26\",\r\n
+ \ \"23.98.49.192/26\",\r\n \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n
+ \ \"23.98.55.144/28\",\r\n \"23.98.56.0/26\",\r\n \"23.98.57.64/26\",\r\n
+ \ \"23.98.160.64/26\",\r\n \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n
+ \ \"23.98.192.64/26\",\r\n \"23.98.255.64/26\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"23.99.160.64/26\",\r\n \"23.99.160.192/28\",\r\n \"23.102.206.0/28\",\r\n
+ \ \"23.102.206.128/28\",\r\n \"23.102.206.192/28\",\r\n \"40.68.176.16/28\",\r\n
+ \ \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n \"40.68.232.48/28\",\r\n
+ \ \"40.69.176.16/28\",\r\n \"40.70.88.0/28\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.78.72.16/28\",\r\n
+ \ \"40.78.112.64/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.79.88.16/28\",\r\n \"40.83.24.16/28\",\r\n \"40.83.24.80/28\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"40.83.104.176/28\",\r\n \"40.83.104.208/28\",\r\n
+ \ \"40.83.225.32/28\",\r\n \"40.83.227.16/28\",\r\n \"40.84.8.32/28\",\r\n
+ \ \"40.84.11.80/28\",\r\n \"40.85.105.32/28\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"40.86.232.64/28\",\r\n
+ \ \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n \"40.86.232.176/28\",\r\n
+ \ \"40.86.232.192/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"40.113.27.176/28\",\r\n \"40.114.152.16/28\",\r\n
+ \ \"40.114.152.48/28\",\r\n \"40.115.169.32/28\",\r\n \"40.115.175.16/28\",\r\n
+ \ \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n \"40.115.229.16/28\",\r\n
+ \ \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n \"40.115.231.112/28\",\r\n
+ \ \"40.115.231.128/28\",\r\n \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n
+ \ \"40.116.232.48/28\",\r\n \"40.116.232.96/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"40.118.72.176/28\",\r\n
+ \ \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n \"40.118.73.208/28\",\r\n
+ \ \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"51.140.16.16/28\",\r\n \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n
+ \ \"51.140.168.112/28\",\r\n \"51.140.168.128/28\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/23\",\r\n \"51.141.130.0/25\",\r\n \"52.161.112.16/28\",\r\n
+ \ \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n \"52.161.168.32/28\",\r\n
+ \ \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n \"52.162.56.64/27\",\r\n
+ \ \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n \"52.163.176.16/28\",\r\n
+ \ \"52.163.232.16/28\",\r\n \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n
+ \ \"52.164.232.32/28\",\r\n \"52.164.232.64/28\",\r\n \"52.165.104.16/28\",\r\n
+ \ \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n \"52.165.104.112/28\",\r\n
+ \ \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n \"52.165.136.32/28\",\r\n
+ \ \"52.165.240.64/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n
+ \ \"52.167.240.16/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.171.144.32/27\",\r\n
+ \ \"52.171.144.80/28\",\r\n \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n
+ \ \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n \"52.174.224.32/28\",\r\n
+ \ \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n \"52.174.224.128/28\",\r\n
+ \ \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.177.208.80/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.179.24.16/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n \"52.182.176.32/28\",\r\n
+ \ \"52.182.176.64/27\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n
+ \ \"52.184.168.32/28\",\r\n \"52.184.168.96/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.80/28\",\r\n
+ \ \"52.185.112.112/28\",\r\n \"52.185.233.0/24\",\r\n \"52.186.112.32/27\",\r\n
+ \ \"52.187.141.32/27\",\r\n \"52.189.177.0/24\",\r\n \"52.190.240.16/28\",\r\n
+ \ \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n \"52.190.240.112/28\",\r\n
+ \ \"52.190.240.128/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.225.40.32/27\",\r\n \"52.225.136.16/28\",\r\n \"52.225.136.32/28\",\r\n
+ \ \"52.225.240.0/28\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.228.232.0/28\",\r\n
+ \ \"52.229.80.64/27\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n
+ \ \"52.231.80.128/28\",\r\n \"52.231.80.160/27\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.232.232.16/28\",\r\n \"52.232.232.32/28\",\r\n
+ \ \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n \"52.232.232.128/27\",\r\n
+ \ \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.236.40.16/28\",\r\n
+ \ \"52.236.40.32/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.238.56.16/28\",\r\n
+ \ \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n \"52.238.56.112/28\",\r\n
+ \ \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n \"52.238.200.32/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.128.0/20\",\r\n
+ \ \"52.239.144.0/22\",\r\n \"52.239.148.0/27\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.149.0/24\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.152.0/21\",\r\n \"52.239.160.0/22\",\r\n \"52.239.164.0/24\",\r\n
+ \ \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.167.0/24\",\r\n \"52.239.168.0/21\",\r\n \"52.239.176.128/25\",\r\n
+ \ \"52.239.177.0/24\",\r\n \"52.239.178.0/23\",\r\n \"52.239.180.0/22\",\r\n
+ \ \"52.239.184.0/22\",\r\n \"52.239.188.0/23\",\r\n \"52.239.190.0/24\",\r\n
+ \ \"52.239.191.0/28\",\r\n \"52.239.192.0/21\",\r\n \"52.239.200.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.206.0/23\",\r\n \"52.239.208.0/20\",\r\n
+ \ \"52.239.224.0/19\",\r\n \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n
+ \ \"52.240.60.16/28\",\r\n \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n
+ \ \"52.241.88.16/28\",\r\n \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n
+ \ \"52.245.40.0/24\",\r\n \"104.41.232.16/28\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.46.31.16/28\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n
+ \ \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n \"104.211.104.128/28\",\r\n
+ \ \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n \"104.211.109.80/28\",\r\n
+ \ \"104.211.109.96/28\",\r\n \"104.211.168.16/28\",\r\n \"104.211.232.16/28\",\r\n
+ \ \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n \"104.211.232.176/28\",\r\n
+ \ \"104.214.40.16/28\",\r\n \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n
+ \ \"104.215.32.64/27\",\r\n \"104.215.35.32/27\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/25\",\r\n \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n
+ \ \"137.116.96.0/25\",\r\n \"137.116.96.128/26\",\r\n \"137.135.192.64/26\",\r\n
+ \ \"137.135.192.192/26\",\r\n \"137.135.193.192/26\",\r\n
+ \ \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.61.120.32/27\",\r\n
+ \ \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n \"168.61.128.192/26\",\r\n
+ \ \"168.61.129.0/25\",\r\n \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n
+ \ \"168.61.131.0/26\",\r\n \"168.61.131.128/25\",\r\n \"168.61.132.0/26\",\r\n
+ \ \"168.62.0.0/26\",\r\n \"168.62.1.128/26\",\r\n \"168.62.32.0/26\",\r\n
+ \ \"168.62.32.192/26\",\r\n \"168.62.33.128/26\",\r\n \"168.62.96.128/25\",\r\n
+ \ \"168.62.128.128/26\",\r\n \"168.63.0.0/26\",\r\n \"168.63.2.64/26\",\r\n
+ \ \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n \"168.63.32.0/26\",\r\n
+ \ \"168.63.33.192/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"168.63.128.0/26\",\r\n
+ \ \"168.63.128.128/25\",\r\n \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n
+ \ \"168.63.130.128/26\",\r\n \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n
+ \ \"168.63.156.192/26\",\r\n \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n
+ \ \"168.63.161.64/26\",\r\n \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n
+ \ \"168.63.162.32/27\",\r\n \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n
+ \ \"168.63.162.192/26\",\r\n \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n
+ \ \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n \"191.232.221.32/28\",\r\n
+ \ \"191.233.128.0/24\",\r\n \"191.235.192.192/26\",\r\n \"191.235.193.32/28\",\r\n
+ \ \"191.235.248.0/23\",\r\n \"191.235.250.0/25\",\r\n \"191.235.255.192/26\",\r\n
+ \ \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n \"191.237.32.240/28\",\r\n
+ \ \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.237.232.32/28\",\r\n \"191.237.232.128/28\",\r\n
+ \ \"191.237.238.32/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\",\r\n
+ \ \"191.238.64.64/26\",\r\n \"191.238.64.192/28\",\r\n \"191.238.66.0/26\",\r\n
+ \ \"191.239.192.0/26\",\r\n \"191.239.203.0/28\",\r\n \"191.239.224.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.35.0/24\",\r\n \"20.150.124.0/24\",\r\n \"52.239.216.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaCentral2\",\r\n
+ \ \"id\": \"Storage.AustraliaCentral2\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.36.0/24\",\r\n \"20.150.103.0/24\",\r\n \"52.239.218.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.AustraliaEast\",\r\n
+ \ \"id\": \"Storage.AustraliaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"australiaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.99.16/28\",\r\n
+ \ \"13.70.99.48/28\",\r\n \"13.70.99.64/28\",\r\n \"13.72.235.64/28\",\r\n
+ \ \"13.72.235.96/27\",\r\n \"13.72.235.144/28\",\r\n \"13.72.237.48/28\",\r\n
+ \ \"13.72.237.64/28\",\r\n \"13.75.240.16/28\",\r\n \"13.75.240.32/28\",\r\n
+ \ \"13.75.240.64/27\",\r\n \"20.38.112.0/23\",\r\n \"20.47.37.0/24\",\r\n
+ \ \"20.60.72.0/22\",\r\n \"20.60.182.0/23\",\r\n \"20.150.66.0/24\",\r\n
+ \ \"20.150.92.0/24\",\r\n \"20.150.117.0/24\",\r\n \"20.157.44.0/24\",\r\n
+ \ \"52.239.130.0/23\",\r\n \"52.239.226.0/24\",\r\n \"104.46.31.16/28\",\r\n
+ \ \"191.238.66.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.AustraliaSoutheast\",\r\n \"id\": \"Storage.AustraliaSoutheast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"australiasoutheast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.77.8.16/28\",\r\n \"13.77.8.32/28\",\r\n \"13.77.8.64/28\",\r\n
+ \ \"13.77.8.96/28\",\r\n \"13.77.8.128/27\",\r\n \"13.77.8.160/28\",\r\n
+ \ \"13.77.8.192/27\",\r\n \"20.47.38.0/24\",\r\n \"20.60.32.0/23\",\r\n
+ \ \"20.150.12.0/23\",\r\n \"20.150.119.0/24\",\r\n \"20.157.45.0/24\",\r\n
+ \ \"52.239.132.0/23\",\r\n \"52.239.225.0/24\",\r\n \"191.239.192.0/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.BrazilSouth\",\r\n
+ \ \"id\": \"Storage.BrazilSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"brazilsouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.39.0/24\",\r\n
+ \ \"20.60.36.0/23\",\r\n \"20.150.111.0/24\",\r\n \"20.157.55.0/24\",\r\n
+ \ \"23.97.112.64/26\",\r\n \"191.232.216.32/27\",\r\n \"191.232.221.16/28\",\r\n
+ \ \"191.232.221.32/28\",\r\n \"191.233.128.0/24\",\r\n \"191.235.248.0/23\",\r\n
+ \ \"191.235.250.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaCentral\",\r\n \"id\": \"Storage.CanadaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.0/25\",\r\n \"20.47.40.0/24\",\r\n \"20.60.42.0/23\",\r\n
+ \ \"20.150.16.0/24\",\r\n \"20.150.31.0/24\",\r\n \"20.150.71.0/24\",\r\n
+ \ \"20.150.100.0/24\",\r\n \"20.157.52.0/24\",\r\n \"40.85.232.64/28\",\r\n
+ \ \"40.85.232.96/28\",\r\n \"40.85.232.144/28\",\r\n \"40.85.235.32/27\",\r\n
+ \ \"40.85.235.80/28\",\r\n \"40.85.235.96/28\",\r\n \"52.239.148.64/26\",\r\n
+ \ \"52.239.189.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.CanadaEast\",\r\n \"id\": \"Storage.CanadaEast\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"canadaeast\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.128/25\",\r\n \"20.47.41.0/24\",\r\n \"20.60.142.0/23\",\r\n
+ \ \"20.150.1.0/25\",\r\n \"20.150.40.128/25\",\r\n \"20.150.113.0/24\",\r\n
+ \ \"40.86.232.64/28\",\r\n \"40.86.232.96/28\",\r\n \"40.86.232.128/28\",\r\n
+ \ \"40.86.232.176/28\",\r\n \"40.86.232.192/28\",\r\n \"52.229.80.64/27\",\r\n
+ \ \"52.239.164.128/26\",\r\n \"52.239.190.0/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralIndia\",\r\n
+ \ \"id\": \"Storage.CentralIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"centralindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.126.0/23\",\r\n
+ \ \"20.47.42.0/24\",\r\n \"20.150.114.0/24\",\r\n \"52.239.135.64/26\",\r\n
+ \ \"52.239.202.0/24\",\r\n \"104.211.104.64/28\",\r\n \"104.211.104.96/28\",\r\n
+ \ \"104.211.104.128/28\",\r\n \"104.211.109.0/28\",\r\n \"104.211.109.32/27\",\r\n
+ \ \"104.211.109.80/28\",\r\n \"104.211.109.96/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUS\",\r\n \"id\":
+ \"Storage.CentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"centralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.67.155.16/28\",\r\n
+ \ \"20.38.96.0/23\",\r\n \"20.38.122.0/23\",\r\n \"20.47.58.0/23\",\r\n
+ \ \"20.60.18.0/24\",\r\n \"20.60.30.0/23\",\r\n \"20.60.178.0/23\",\r\n
+ \ \"20.60.194.0/23\",\r\n \"20.150.43.128/25\",\r\n \"20.150.58.0/24\",\r\n
+ \ \"20.150.63.0/24\",\r\n \"20.150.77.0/24\",\r\n \"20.150.89.0/24\",\r\n
+ \ \"20.150.95.0/24\",\r\n \"20.157.34.0/23\",\r\n \"23.99.160.64/26\",\r\n
+ \ \"23.99.160.192/28\",\r\n \"40.69.176.16/28\",\r\n \"40.83.24.16/28\",\r\n
+ \ \"40.83.24.80/28\",\r\n \"40.122.96.16/28\",\r\n \"40.122.216.16/28\",\r\n
+ \ \"52.165.104.16/28\",\r\n \"52.165.104.32/28\",\r\n \"52.165.104.64/27\",\r\n
+ \ \"52.165.104.112/28\",\r\n \"52.165.136.32/28\",\r\n \"52.165.240.64/28\",\r\n
+ \ \"52.173.152.64/28\",\r\n \"52.173.152.96/28\",\r\n \"52.176.224.64/28\",\r\n
+ \ \"52.176.224.96/28\",\r\n \"52.180.184.16/28\",\r\n \"52.182.176.16/28\",\r\n
+ \ \"52.182.176.32/28\",\r\n \"52.182.176.64/27\",\r\n \"52.185.56.80/28\",\r\n
+ \ \"52.185.56.96/28\",\r\n \"52.185.56.144/28\",\r\n \"52.185.56.160/28\",\r\n
+ \ \"52.185.112.16/28\",\r\n \"52.185.112.48/28\",\r\n \"52.185.112.112/28\",\r\n
+ \ \"52.228.232.0/28\",\r\n \"52.230.240.16/28\",\r\n \"52.230.240.32/28\",\r\n
+ \ \"52.230.240.64/27\",\r\n \"52.230.240.112/28\",\r\n \"52.230.240.128/28\",\r\n
+ \ \"52.230.240.160/27\",\r\n \"52.238.200.32/27\",\r\n \"52.239.150.0/23\",\r\n
+ \ \"52.239.177.32/27\",\r\n \"52.239.177.64/26\",\r\n \"52.239.177.128/25\",\r\n
+ \ \"52.239.195.0/24\",\r\n \"52.239.234.0/23\",\r\n \"104.208.0.16/28\",\r\n
+ \ \"104.208.0.48/28\",\r\n \"168.61.128.192/26\",\r\n \"168.61.129.0/25\",\r\n
+ \ \"168.61.130.64/26\",\r\n \"168.61.130.128/25\",\r\n \"168.61.131.0/26\",\r\n
+ \ \"168.61.131.128/25\",\r\n \"168.61.132.0/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.CentralUSEUAP\",\r\n
+ \ \"id\": \"Storage.CentralUSEUAP\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"centraluseuap\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.5.0/24\",\r\n
+ \ \"20.60.24.0/23\",\r\n \"20.150.23.0/24\",\r\n \"20.150.47.0/25\",\r\n
+ \ \"40.83.24.96/27\",\r\n \"52.165.104.144/28\",\r\n \"52.165.104.160/28\",\r\n
+ \ \"52.185.112.80/28\",\r\n \"52.239.177.0/27\",\r\n \"52.239.238.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastAsia\",\r\n
+ \ \"id\": \"Storage.EastAsia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"eastasia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.43.0/24\",\r\n
+ \ \"20.60.131.0/24\",\r\n \"20.150.1.128/25\",\r\n \"20.150.22.0/24\",\r\n
+ \ \"20.150.96.0/24\",\r\n \"20.157.53.0/24\",\r\n \"40.83.104.176/28\",\r\n
+ \ \"40.83.104.208/28\",\r\n \"52.175.40.128/28\",\r\n \"52.175.112.16/28\",\r\n
+ \ \"52.184.40.16/28\",\r\n \"52.184.40.32/28\",\r\n \"52.239.128.0/24\",\r\n
+ \ \"52.239.224.0/24\",\r\n \"168.63.128.0/26\",\r\n \"168.63.128.128/25\",\r\n
+ \ \"168.63.129.128/25\",\r\n \"168.63.130.0/26\",\r\n \"168.63.130.128/26\",\r\n
+ \ \"168.63.131.0/26\",\r\n \"168.63.156.64/26\",\r\n \"168.63.156.192/26\",\r\n
+ \ \"191.237.238.32/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS\",\r\n \"id\": \"Storage.EastUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"eastus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.68.163.32/28\",\r\n \"13.68.165.64/28\",\r\n
+ \ \"13.68.167.240/28\",\r\n \"13.82.33.32/28\",\r\n \"13.82.152.16/28\",\r\n
+ \ \"13.82.152.48/28\",\r\n \"13.82.152.80/28\",\r\n \"20.38.98.0/24\",\r\n
+ \ \"20.47.1.0/24\",\r\n \"20.47.16.0/23\",\r\n \"20.47.31.0/24\",\r\n
+ \ \"20.60.0.0/24\",\r\n \"20.60.2.0/23\",\r\n \"20.60.6.0/23\",\r\n
+ \ \"20.60.60.0/22\",\r\n \"20.60.128.0/23\",\r\n \"20.60.134.0/23\",\r\n
+ \ \"20.60.146.0/23\",\r\n \"20.150.32.0/23\",\r\n \"20.150.90.0/24\",\r\n
+ \ \"20.157.39.0/24\",\r\n \"23.96.64.64/26\",\r\n \"40.71.104.16/28\",\r\n
+ \ \"40.71.104.32/28\",\r\n \"40.71.240.16/28\",\r\n \"40.117.48.80/28\",\r\n
+ \ \"40.117.48.112/28\",\r\n \"40.117.104.16/28\",\r\n \"52.179.24.16/28\",\r\n
+ \ \"52.186.112.32/27\",\r\n \"52.226.8.32/27\",\r\n \"52.226.8.80/28\",\r\n
+ \ \"52.226.8.96/28\",\r\n \"52.226.8.128/27\",\r\n \"52.234.176.48/28\",\r\n
+ \ \"52.234.176.64/28\",\r\n \"52.234.176.96/27\",\r\n \"52.239.152.0/22\",\r\n
+ \ \"52.239.168.0/22\",\r\n \"52.239.207.192/26\",\r\n \"52.239.214.0/23\",\r\n
+ \ \"52.239.220.0/23\",\r\n \"52.239.246.0/23\",\r\n \"52.239.252.0/24\",\r\n
+ \ \"52.240.48.16/28\",\r\n \"52.240.48.32/28\",\r\n \"52.240.60.16/28\",\r\n
+ \ \"52.240.60.32/28\",\r\n \"52.240.60.64/27\",\r\n \"138.91.96.64/26\",\r\n
+ \ \"138.91.96.128/26\",\r\n \"168.62.32.0/26\",\r\n \"168.62.32.192/26\",\r\n
+ \ \"168.62.33.128/26\",\r\n \"191.237.32.128/28\",\r\n \"191.237.32.208/28\",\r\n
+ \ \"191.237.32.240/28\",\r\n \"191.238.0.0/26\",\r\n \"191.238.0.224/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.EastUS2\",\r\n
+ \ \"id\": \"Storage.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.68.120.64/28\",\r\n
+ \ \"13.77.112.16/28\",\r\n \"13.77.112.32/28\",\r\n \"13.77.112.112/28\",\r\n
+ \ \"13.77.112.128/28\",\r\n \"13.77.115.16/28\",\r\n \"13.77.115.32/28\",\r\n
+ \ \"20.38.100.0/23\",\r\n \"20.47.60.0/23\",\r\n \"20.60.56.0/22\",\r\n
+ \ \"20.60.132.0/23\",\r\n \"20.60.180.0/23\",\r\n \"20.150.29.0/24\",\r\n
+ \ \"20.150.36.0/24\",\r\n \"20.150.50.0/23\",\r\n \"20.150.72.0/24\",\r\n
+ \ \"20.150.82.0/24\",\r\n \"20.150.88.0/24\",\r\n \"20.157.36.0/23\",\r\n
+ \ \"20.157.48.0/23\",\r\n \"23.102.206.0/28\",\r\n \"23.102.206.128/28\",\r\n
+ \ \"23.102.206.192/28\",\r\n \"40.79.8.16/28\",\r\n \"40.79.48.16/28\",\r\n
+ \ \"40.84.8.32/28\",\r\n \"40.84.11.80/28\",\r\n \"40.123.16.16/28\",\r\n
+ \ \"52.167.88.80/28\",\r\n \"52.167.88.112/28\",\r\n \"52.167.240.16/28\",\r\n
+ \ \"52.177.208.80/28\",\r\n \"52.179.144.32/28\",\r\n \"52.179.144.64/28\",\r\n
+ \ \"52.179.240.16/28\",\r\n \"52.179.240.48/28\",\r\n \"52.179.240.64/28\",\r\n
+ \ \"52.179.240.96/27\",\r\n \"52.179.240.144/28\",\r\n \"52.179.240.160/28\",\r\n
+ \ \"52.179.240.192/27\",\r\n \"52.179.240.240/28\",\r\n \"52.179.241.0/28\",\r\n
+ \ \"52.179.241.32/27\",\r\n \"52.184.168.96/27\",\r\n \"52.225.136.16/28\",\r\n
+ \ \"52.225.136.32/28\",\r\n \"52.225.240.0/28\",\r\n \"52.232.232.16/28\",\r\n
+ \ \"52.232.232.32/28\",\r\n \"52.232.232.80/28\",\r\n \"52.232.232.96/28\",\r\n
+ \ \"52.232.232.128/27\",\r\n \"52.232.232.176/28\",\r\n \"52.232.232.192/28\",\r\n
+ \ \"52.239.156.0/24\",\r\n \"52.239.157.0/25\",\r\n \"52.239.157.128/26\",\r\n
+ \ \"52.239.157.192/27\",\r\n \"52.239.172.0/22\",\r\n \"52.239.184.0/25\",\r\n
+ \ \"52.239.184.160/28\",\r\n \"52.239.184.192/27\",\r\n \"52.239.185.32/27\",\r\n
+ \ \"52.239.192.0/26\",\r\n \"52.239.192.64/28\",\r\n \"52.239.192.96/27\",\r\n
+ \ \"52.239.192.160/27\",\r\n \"52.239.192.192/26\",\r\n \"52.239.198.0/25\",\r\n
+ \ \"52.239.198.192/26\",\r\n \"52.239.206.0/24\",\r\n \"52.239.207.32/28\",\r\n
+ \ \"52.239.207.64/26\",\r\n \"52.239.207.128/27\",\r\n \"52.239.222.0/23\",\r\n
+ \ \"104.208.128.16/28\",\r\n \"104.208.248.16/28\",\r\n \"137.116.1.0/25\",\r\n
+ \ \"137.116.2.0/26\",\r\n \"137.116.2.96/29\",\r\n \"137.116.2.104/30\",\r\n
+ \ \"137.116.2.108/32\",\r\n \"137.116.2.110/31\",\r\n \"137.116.2.112/32\",\r\n
+ \ \"137.116.2.114/32\",\r\n \"137.116.2.116/30\",\r\n \"137.116.2.120/29\",\r\n
+ \ \"137.116.3.0/25\",\r\n \"137.116.3.128/26\",\r\n \"137.116.96.0/25\",\r\n
+ \ \"137.116.96.128/26\",\r\n \"191.237.160.64/26\",\r\n \"191.237.160.224/28\",\r\n
+ \ \"191.239.224.0/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2EUAP\",\r\n \"id\": \"Storage.EastUS2EUAP\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"eastus2euap\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.6.0/24\",\r\n \"20.60.154.0/23\",\r\n \"20.60.184.0/23\",\r\n
+ \ \"20.150.108.0/24\",\r\n \"40.70.88.0/30\",\r\n \"40.70.88.4/31\",\r\n
+ \ \"40.70.88.6/32\",\r\n \"40.70.88.8/31\",\r\n \"40.70.88.10/32\",\r\n
+ \ \"40.70.88.12/32\",\r\n \"40.70.88.14/31\",\r\n \"40.79.88.16/30\",\r\n
+ \ \"40.79.88.20/31\",\r\n \"40.79.88.22/32\",\r\n \"40.79.88.24/31\",\r\n
+ \ \"40.79.88.26/32\",\r\n \"40.79.88.28/32\",\r\n \"40.79.88.30/31\",\r\n
+ \ \"52.184.168.32/30\",\r\n \"52.184.168.36/31\",\r\n \"52.184.168.38/32\",\r\n
+ \ \"52.184.168.40/31\",\r\n \"52.184.168.42/32\",\r\n \"52.184.168.44/32\",\r\n
+ \ \"52.184.168.46/31\",\r\n \"52.239.157.224/27\",\r\n \"52.239.165.192/26\",\r\n
+ \ \"52.239.184.176/28\",\r\n \"52.239.184.224/27\",\r\n \"52.239.185.0/28\",\r\n
+ \ \"52.239.192.128/27\",\r\n \"52.239.198.128/27\",\r\n \"52.239.230.0/24\",\r\n
+ \ \"52.239.239.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.EastUS2Stage\",\r\n \"id\": \"Storage.EastUS2Stage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"eastus2\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"137.116.2.64/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceCentral\",\r\n \"id\": \"Storage.FranceCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"centralfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.44.0/24\",\r\n \"20.60.13.0/24\",\r\n \"20.60.156.0/23\",\r\n
+ \ \"20.150.61.0/24\",\r\n \"52.239.134.0/24\",\r\n \"52.239.194.0/24\",\r\n
+ \ \"52.239.241.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.FranceSouth\",\r\n \"id\": \"Storage.FranceSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southfrance\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.28.0/24\",\r\n \"20.60.11.0/24\",\r\n \"20.60.188.0/23\",\r\n
+ \ \"20.150.19.0/24\",\r\n \"52.239.135.0/26\",\r\n \"52.239.196.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyNorth\",\r\n
+ \ \"id\": \"Storage.GermanyNorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"germanyn\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.115.0/24\",\r\n
+ \ \"20.47.45.0/24\",\r\n \"20.150.60.0/24\",\r\n \"20.150.112.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.GermanyWestCentral\",\r\n
+ \ \"id\": \"Storage.GermanyWestCentral\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.118.0/24\",\r\n \"20.47.27.0/24\",\r\n \"20.60.22.0/23\",\r\n
+ \ \"20.150.54.0/24\",\r\n \"20.150.125.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.JapanEast\",\r\n \"id\":
+ \"Storage.JapanEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"japaneast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.73.8.16/28\",\r\n
+ \ \"13.73.8.32/28\",\r\n \"20.38.116.0/23\",\r\n \"20.47.12.0/24\",\r\n
+ \ \"20.60.172.0/23\",\r\n \"20.150.85.0/24\",\r\n \"20.150.105.0/24\",\r\n
+ \ \"20.157.38.0/24\",\r\n \"23.98.57.64/26\",\r\n \"40.115.169.32/28\",\r\n
+ \ \"40.115.175.16/28\",\r\n \"40.115.175.32/28\",\r\n \"40.115.227.80/28\",\r\n
+ \ \"40.115.229.16/28\",\r\n \"40.115.229.32/28\",\r\n \"40.115.231.64/27\",\r\n
+ \ \"40.115.231.112/28\",\r\n \"40.115.231.128/28\",\r\n \"52.239.144.0/23\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.JapanWest\",\r\n
+ \ \"id\": \"Storage.JapanWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"3\",\r\n \"region\": \"japanwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.10.0/24\",\r\n
+ \ \"20.60.12.0/24\",\r\n \"20.60.186.0/23\",\r\n \"20.150.10.0/23\",\r\n
+ \ \"20.157.56.0/24\",\r\n \"23.98.56.0/26\",\r\n \"52.239.146.0/23\",\r\n
+ \ \"104.214.152.16/28\",\r\n \"104.214.152.176/28\",\r\n
+ \ \"104.215.32.16/28\",\r\n \"104.215.32.32/28\",\r\n \"104.215.32.64/27\",\r\n
+ \ \"104.215.35.32/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaCentral\",\r\n \"id\": \"Storage.KoreaCentral\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreacentral\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.46.0/24\",\r\n \"20.60.16.0/24\",\r\n \"20.150.4.0/23\",\r\n
+ \ \"52.231.80.64/27\",\r\n \"52.231.80.112/28\",\r\n \"52.231.80.128/28\",\r\n
+ \ \"52.231.80.160/27\",\r\n \"52.239.148.0/27\",\r\n \"52.239.164.192/26\",\r\n
+ \ \"52.239.190.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.KoreaSouth\",\r\n \"id\": \"Storage.KoreaSouth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"koreasouth\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.47.0/24\",\r\n \"20.150.14.0/23\",\r\n \"52.231.168.64/27\",\r\n
+ \ \"52.231.168.112/28\",\r\n \"52.231.168.128/28\",\r\n \"52.231.208.16/28\",\r\n
+ \ \"52.231.208.32/28\",\r\n \"52.239.165.0/26\",\r\n \"52.239.165.160/27\",\r\n
+ \ \"52.239.190.192/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUS\",\r\n \"id\": \"Storage.NorthCentralUS\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.3.0/24\",\r\n \"20.47.15.0/24\",\r\n \"20.60.28.0/23\",\r\n
+ \ \"20.60.82.0/23\",\r\n \"20.150.17.0/25\",\r\n \"20.150.25.0/24\",\r\n
+ \ \"20.150.49.0/24\",\r\n \"20.150.67.0/24\",\r\n \"20.150.126.0/24\",\r\n
+ \ \"20.157.47.0/24\",\r\n \"23.98.49.0/26\",\r\n \"23.98.49.192/26\",\r\n
+ \ \"23.98.55.0/26\",\r\n \"23.98.55.112/28\",\r\n \"23.98.55.144/28\",\r\n
+ \ \"40.116.120.16/28\",\r\n \"40.116.232.16/28\",\r\n \"40.116.232.48/28\",\r\n
+ \ \"40.116.232.96/28\",\r\n \"52.162.56.16/28\",\r\n \"52.162.56.32/28\",\r\n
+ \ \"52.162.56.64/27\",\r\n \"52.162.56.112/28\",\r\n \"52.162.56.128/28\",\r\n
+ \ \"52.239.149.0/24\",\r\n \"52.239.186.0/24\",\r\n \"52.239.253.0/24\",\r\n
+ \ \"157.56.216.0/26\",\r\n \"168.62.96.128/26\",\r\n \"168.62.96.210/32\",\r\n
+ \ \"168.62.96.224/27\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.NorthCentralUSStage\",\r\n \"id\": \"Storage.NorthCentralUSStage\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"northcentralus\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"168.62.96.192/29\",\r\n \"168.62.96.200/30\",\r\n
+ \ \"168.62.96.204/32\",\r\n \"168.62.96.206/31\",\r\n \"168.62.96.208/32\",\r\n
+ \ \"168.62.96.212/30\",\r\n \"168.62.96.216/29\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorthEurope\",\r\n
+ \ \"id\": \"Storage.NorthEurope\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"northeurope\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.70.208.16/28\",\r\n
+ \ \"13.74.208.64/28\",\r\n \"13.74.208.112/28\",\r\n \"13.74.208.144/28\",\r\n
+ \ \"13.79.176.16/28\",\r\n \"13.79.176.48/28\",\r\n \"13.79.176.80/28\",\r\n
+ \ \"20.38.102.0/23\",\r\n \"20.47.8.0/24\",\r\n \"20.47.20.0/23\",\r\n
+ \ \"20.47.32.0/24\",\r\n \"20.60.19.0/24\",\r\n \"20.60.40.0/23\",\r\n
+ \ \"20.60.144.0/23\",\r\n \"20.150.26.0/24\",\r\n \"20.150.47.128/25\",\r\n
+ \ \"20.150.48.0/24\",\r\n \"20.150.75.0/24\",\r\n \"20.150.84.0/24\",\r\n
+ \ \"20.150.104.0/24\",\r\n \"40.85.105.32/28\",\r\n \"40.113.27.176/28\",\r\n
+ \ \"52.164.112.16/28\",\r\n \"52.164.232.16/28\",\r\n \"52.164.232.32/28\",\r\n
+ \ \"52.164.232.64/28\",\r\n \"52.169.168.32/27\",\r\n \"52.169.240.16/28\",\r\n
+ \ \"52.169.240.32/28\",\r\n \"52.169.240.64/28\",\r\n \"52.178.168.32/27\",\r\n
+ \ \"52.178.168.80/28\",\r\n \"52.178.168.96/28\",\r\n \"52.178.168.128/27\",\r\n
+ \ \"52.236.40.16/28\",\r\n \"52.236.40.32/28\",\r\n \"52.239.136.0/22\",\r\n
+ \ \"52.239.205.0/24\",\r\n \"52.239.248.0/24\",\r\n \"52.245.40.0/24\",\r\n
+ \ \"104.41.232.16/28\",\r\n \"137.135.192.64/26\",\r\n \"137.135.192.192/26\",\r\n
+ \ \"137.135.193.192/26\",\r\n \"137.135.194.0/25\",\r\n \"137.135.194.192/26\",\r\n
+ \ \"168.61.120.32/27\",\r\n \"168.61.120.64/27\",\r\n \"168.61.121.0/26\",\r\n
+ \ \"168.63.32.0/26\",\r\n \"168.63.33.192/26\",\r\n \"191.235.192.192/26\",\r\n
+ \ \"191.235.193.32/28\",\r\n \"191.235.255.192/26\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayEast\",\r\n
+ \ \"id\": \"Storage.NorwayEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwaye\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.120.0/24\",\r\n
+ \ \"20.47.48.0/24\",\r\n \"20.150.53.0/24\",\r\n \"20.150.121.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.NorwayWest\",\r\n
+ \ \"id\": \"Storage.NorwayWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"norwayw\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.49.0/24\",\r\n
+ \ \"20.60.15.0/24\",\r\n \"20.150.0.0/24\",\r\n \"20.150.56.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.SouthAfricaNorth\",\r\n
+ \ \"id\": \"Storage.SouthAfricaNorth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"2\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n ],\r\n
+ \ \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.114.128/25\",\r\n \"20.47.50.0/24\",\r\n \"20.60.190.0/23\",\r\n
+ \ \"20.150.21.0/24\",\r\n \"20.150.62.0/24\",\r\n \"20.150.101.0/24\",\r\n
+ \ \"52.239.232.0/25\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthAfricaWest\",\r\n \"id\": \"Storage.SouthAfricaWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southafricawest\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.38.121.0/25\",\r\n \"20.47.51.0/24\",\r\n \"20.60.8.0/24\",\r\n
+ \ \"20.150.20.0/25\",\r\n \"52.239.232.128/25\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.SouthCentralUS\",\r\n
+ \ \"id\": \"Storage.SouthCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.65.107.32/28\",\r\n
+ \ \"13.65.160.16/28\",\r\n \"13.65.160.48/28\",\r\n \"13.65.160.64/28\",\r\n
+ \ \"13.84.56.16/28\",\r\n \"13.85.88.16/28\",\r\n \"13.85.200.128/28\",\r\n
+ \ \"20.38.104.0/23\",\r\n \"20.47.0.0/27\",\r\n \"20.47.24.0/23\",\r\n
+ \ \"20.47.29.0/24\",\r\n \"20.60.48.0/22\",\r\n \"20.60.64.0/22\",\r\n
+ \ \"20.60.140.0/23\",\r\n \"20.60.148.0/23\",\r\n \"20.60.160.0/23\",\r\n
+ \ \"20.150.20.128/25\",\r\n \"20.150.38.0/23\",\r\n \"20.150.70.0/24\",\r\n
+ \ \"20.150.79.0/24\",\r\n \"20.150.93.0/24\",\r\n \"20.150.94.0/24\",\r\n
+ \ \"20.157.43.0/24\",\r\n \"20.157.54.0/24\",\r\n \"23.98.160.64/26\",\r\n
+ \ \"23.98.162.192/26\",\r\n \"23.98.168.0/24\",\r\n \"23.98.192.64/26\",\r\n
+ \ \"23.98.255.64/26\",\r\n \"52.171.144.32/27\",\r\n \"52.171.144.80/28\",\r\n
+ \ \"52.171.144.96/28\",\r\n \"52.171.144.128/28\",\r\n \"52.185.233.0/24\",\r\n
+ \ \"52.189.177.0/24\",\r\n \"52.239.158.0/23\",\r\n \"52.239.178.0/23\",\r\n
+ \ \"52.239.180.0/22\",\r\n \"52.239.199.0/24\",\r\n \"52.239.200.0/23\",\r\n
+ \ \"52.239.203.0/24\",\r\n \"52.239.208.0/23\",\r\n \"104.214.40.16/28\",\r\n
+ \ \"104.214.80.16/28\",\r\n \"104.214.80.48/28\",\r\n \"104.215.104.64/28\",\r\n
+ \ \"168.62.128.128/26\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SoutheastAsia\",\r\n \"id\": \"Storage.SoutheastAsia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southeastasia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.76.104.16/28\",\r\n \"20.47.9.0/24\",\r\n \"20.47.33.0/24\",\r\n
+ \ \"20.60.136.0/24\",\r\n \"20.60.138.0/23\",\r\n \"20.150.17.128/25\",\r\n
+ \ \"20.150.28.0/24\",\r\n \"20.150.86.0/24\",\r\n \"20.150.127.0/24\",\r\n
+ \ \"52.163.176.16/28\",\r\n \"52.163.232.16/28\",\r\n \"52.187.141.32/27\",\r\n
+ \ \"52.237.104.16/28\",\r\n \"52.237.104.32/28\",\r\n \"52.239.129.0/24\",\r\n
+ \ \"52.239.197.0/24\",\r\n \"52.239.227.0/24\",\r\n \"52.239.249.0/24\",\r\n
+ \ \"104.43.80.16/28\",\r\n \"104.215.240.64/28\",\r\n \"104.215.240.96/28\",\r\n
+ \ \"168.63.160.0/26\",\r\n \"168.63.160.192/26\",\r\n \"168.63.161.64/26\",\r\n
+ \ \"168.63.161.160/27\",\r\n \"168.63.161.192/26\",\r\n \"168.63.162.32/27\",\r\n
+ \ \"168.63.162.64/26\",\r\n \"168.63.162.144/28\",\r\n \"168.63.162.192/26\",\r\n
+ \ \"168.63.163.128/26\",\r\n \"168.63.180.64/26\",\r\n \"191.238.64.64/26\",\r\n
+ \ \"191.238.64.192/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SouthIndia\",\r\n \"id\": \"Storage.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"1\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.52.0/24\",\r\n \"20.60.10.0/24\",\r\n \"20.150.24.0/24\",\r\n
+ \ \"52.172.16.16/28\",\r\n \"52.172.16.80/28\",\r\n \"52.172.16.96/28\",\r\n
+ \ \"52.172.16.128/27\",\r\n \"52.239.135.128/26\",\r\n \"52.239.188.0/24\",\r\n
+ \ \"104.211.232.16/28\",\r\n \"104.211.232.48/28\",\r\n \"104.211.232.80/28\",\r\n
+ \ \"104.211.232.176/28\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandNorth\",\r\n \"id\": \"Storage.SwitzerlandNorth\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandn\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.53.0/24\",\r\n
+ \ \"20.60.174.0/23\",\r\n \"20.150.59.0/24\",\r\n \"20.150.118.0/24\",\r\n
+ \ \"52.239.251.0/24\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.SwitzerlandWest\",\r\n \"id\": \"Storage.SwitzerlandWest\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"switzerlandw\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"20.47.26.0/24\",\r\n \"20.60.176.0/23\",\r\n \"20.150.55.0/24\",\r\n
+ \ \"20.150.116.0/24\",\r\n \"52.239.250.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.UAECentral\",\r\n
+ \ \"id\": \"Storage.UAECentral\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"uaecentral\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.54.0/24\",\r\n
+ \ \"20.150.6.0/23\",\r\n \"20.150.115.0/24\",\r\n \"52.239.233.0/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UAENorth\",\r\n
+ \ \"id\": \"Storage.UAENorth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uaenorth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.124.0/23\",\r\n
+ \ \"20.47.55.0/24\",\r\n \"20.60.21.0/24\",\r\n \"52.239.233.128/25\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKSouth\",\r\n
+ \ \"id\": \"Storage.UKSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"uksouth\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.38.106.0/23\",\r\n
+ \ \"20.47.11.0/24\",\r\n \"20.47.34.0/24\",\r\n \"20.60.17.0/24\",\r\n
+ \ \"20.60.166.0/23\",\r\n \"20.150.18.0/25\",\r\n \"20.150.40.0/25\",\r\n
+ \ \"20.150.41.0/24\",\r\n \"20.150.69.0/24\",\r\n \"51.140.16.16/28\",\r\n
+ \ \"51.140.16.32/28\",\r\n \"51.140.168.64/27\",\r\n \"51.140.168.112/28\",\r\n
+ \ \"51.140.168.128/28\",\r\n \"51.141.128.32/27\",\r\n \"51.141.129.64/26\",\r\n
+ \ \"51.141.130.0/25\",\r\n \"52.239.187.0/25\",\r\n \"52.239.231.0/24\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.UKWest\",\r\n
+ \ \"id\": \"Storage.UKWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"ukwest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.56.0/24\",\r\n
+ \ \"20.60.164.0/23\",\r\n \"20.150.2.0/23\",\r\n \"20.150.52.0/24\",\r\n
+ \ \"20.150.110.0/24\",\r\n \"20.157.46.0/24\",\r\n \"51.140.232.64/27\",\r\n
+ \ \"51.140.232.112/28\",\r\n \"51.140.232.128/28\",\r\n \"51.140.232.160/27\",\r\n
+ \ \"51.141.128.0/27\",\r\n \"51.141.128.64/26\",\r\n \"51.141.128.128/25\",\r\n
+ \ \"51.141.129.128/26\",\r\n \"52.239.240.0/24\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestCentralUS\",\r\n
+ \ \"id\": \"Storage.WestCentralUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westcentralus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.71.200.64/28\",\r\n
+ \ \"13.71.200.96/28\",\r\n \"13.71.200.240/28\",\r\n \"13.71.202.16/28\",\r\n
+ \ \"13.71.202.32/28\",\r\n \"13.71.202.64/27\",\r\n \"13.78.152.64/28\",\r\n
+ \ \"13.78.240.16/28\",\r\n \"20.47.4.0/24\",\r\n \"20.60.4.0/24\",\r\n
+ \ \"20.150.81.0/24\",\r\n \"20.150.98.0/24\",\r\n \"20.157.41.0/24\",\r\n
+ \ \"52.161.112.16/28\",\r\n \"52.161.112.32/28\",\r\n \"52.161.168.16/28\",\r\n
+ \ \"52.161.168.32/28\",\r\n \"52.239.164.0/25\",\r\n \"52.239.167.0/24\",\r\n
+ \ \"52.239.244.0/23\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"Storage.WestEurope\",\r\n \"id\": \"Storage.WestEurope\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"3\",\r\n \"region\":
+ \"westeurope\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"AzureStorage\",\r\n \"addressPrefixes\":
+ [\r\n \"13.69.40.16/28\",\r\n \"13.95.96.176/28\",\r\n \"13.95.240.16/28\",\r\n
+ \ \"13.95.240.32/28\",\r\n \"13.95.240.64/27\",\r\n \"20.38.108.0/23\",\r\n
+ \ \"20.47.7.0/24\",\r\n \"20.47.18.0/23\",\r\n \"20.47.30.0/24\",\r\n
+ \ \"20.60.26.0/23\",\r\n \"20.60.130.0/24\",\r\n \"20.60.150.0/23\",\r\n
+ \ \"20.60.196.0/23\",\r\n \"20.150.8.0/23\",\r\n \"20.150.37.0/24\",\r\n
+ \ \"20.150.42.0/24\",\r\n \"20.150.74.0/24\",\r\n \"20.150.76.0/24\",\r\n
+ \ \"20.150.83.0/24\",\r\n \"20.150.122.0/24\",\r\n \"20.157.33.0/24\",\r\n
+ \ \"40.68.176.16/28\",\r\n \"40.68.176.48/28\",\r\n \"40.68.232.16/28\",\r\n
+ \ \"40.68.232.48/28\",\r\n \"40.114.152.16/28\",\r\n \"40.114.152.48/28\",\r\n
+ \ \"40.118.72.176/28\",\r\n \"40.118.73.48/28\",\r\n \"40.118.73.176/28\",\r\n
+ \ \"40.118.73.208/28\",\r\n \"52.166.80.32/27\",\r\n \"52.166.80.80/28\",\r\n
+ \ \"52.166.80.96/28\",\r\n \"52.174.8.32/28\",\r\n \"52.174.224.16/28\",\r\n
+ \ \"52.174.224.32/28\",\r\n \"52.174.224.64/27\",\r\n \"52.174.224.112/28\",\r\n
+ \ \"52.174.224.128/28\",\r\n \"52.236.240.48/28\",\r\n \"52.236.240.64/28\",\r\n
+ \ \"52.239.140.0/22\",\r\n \"52.239.212.0/23\",\r\n \"52.239.242.0/23\",\r\n
+ \ \"104.214.243.32/28\",\r\n \"168.61.57.64/26\",\r\n \"168.61.57.128/25\",\r\n
+ \ \"168.61.58.0/26\",\r\n \"168.61.58.128/26\",\r\n \"168.61.59.64/26\",\r\n
+ \ \"168.61.61.0/26\",\r\n \"168.61.61.192/26\",\r\n \"168.63.0.0/26\",\r\n
+ \ \"168.63.2.64/26\",\r\n \"168.63.3.32/27\",\r\n \"168.63.3.64/27\",\r\n
+ \ \"168.63.113.32/27\",\r\n \"168.63.113.64/27\",\r\n \"191.237.232.32/28\",\r\n
+ \ \"191.237.232.128/28\",\r\n \"191.239.203.0/28\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"Storage.WestIndia\",\r\n \"id\":
+ \"Storage.WestIndia\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"westindia\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"20.47.57.0/24\",\r\n
+ \ \"20.150.18.128/25\",\r\n \"20.150.43.0/25\",\r\n \"20.150.106.0/24\",\r\n
+ \ \"52.239.135.192/26\",\r\n \"52.239.187.128/25\",\r\n \"104.211.168.16/28\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS\",\r\n
+ \ \"id\": \"Storage.WestUS\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"westus\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.83.72.16/28\",\r\n
+ \ \"13.88.144.112/28\",\r\n \"13.88.144.240/28\",\r\n \"13.88.145.64/28\",\r\n
+ \ \"13.88.145.96/28\",\r\n \"13.88.145.128/28\",\r\n \"13.93.168.80/28\",\r\n
+ \ \"13.93.168.112/28\",\r\n \"13.93.168.144/28\",\r\n \"20.47.2.0/24\",\r\n
+ \ \"20.47.22.0/23\",\r\n \"20.60.1.0/24\",\r\n \"20.60.34.0/23\",\r\n
+ \ \"20.60.52.0/23\",\r\n \"20.60.80.0/23\",\r\n \"20.60.168.0/23\",\r\n
+ \ \"20.150.34.0/23\",\r\n \"20.150.91.0/24\",\r\n \"20.150.102.0/24\",\r\n
+ \ \"20.157.32.0/24\",\r\n \"20.157.57.0/24\",\r\n \"23.99.32.64/26\",\r\n
+ \ \"23.99.34.224/28\",\r\n \"23.99.37.96/28\",\r\n \"23.99.47.32/28\",\r\n
+ \ \"40.78.72.16/28\",\r\n \"40.78.112.64/28\",\r\n \"40.83.225.32/28\",\r\n
+ \ \"40.83.227.16/28\",\r\n \"40.112.152.16/28\",\r\n \"40.112.224.16/28\",\r\n
+ \ \"40.112.224.48/28\",\r\n \"52.180.40.16/28\",\r\n \"52.180.40.32/28\",\r\n
+ \ \"52.190.240.16/28\",\r\n \"52.190.240.32/28\",\r\n \"52.190.240.64/27\",\r\n
+ \ \"52.190.240.112/28\",\r\n \"52.190.240.128/28\",\r\n \"52.225.40.32/27\",\r\n
+ \ \"52.238.56.16/28\",\r\n \"52.238.56.32/28\",\r\n \"52.238.56.64/27\",\r\n
+ \ \"52.238.56.112/28\",\r\n \"52.238.56.128/28\",\r\n \"52.238.56.160/27\",\r\n
+ \ \"52.239.104.16/28\",\r\n \"52.239.104.32/28\",\r\n \"52.239.160.0/22\",\r\n
+ \ \"52.239.228.0/23\",\r\n \"52.239.254.0/23\",\r\n \"52.241.88.16/28\",\r\n
+ \ \"52.241.88.32/28\",\r\n \"52.241.88.64/27\",\r\n \"104.42.200.16/28\",\r\n
+ \ \"138.91.128.128/26\",\r\n \"138.91.129.0/26\",\r\n \"168.62.0.0/26\",\r\n
+ \ \"168.62.1.128/26\",\r\n \"168.63.89.64/26\",\r\n \"168.63.89.128/26\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"Storage.WestUS2\",\r\n
+ \ \"id\": \"Storage.WestUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"westus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\",\r\n
+ \ \"UDR\",\r\n \"FW\"\r\n ],\r\n \"systemService\":
+ \"AzureStorage\",\r\n \"addressPrefixes\": [\r\n \"13.66.176.16/28\",\r\n
+ \ \"13.66.176.48/28\",\r\n \"13.66.232.64/28\",\r\n \"13.66.232.208/28\",\r\n
+ \ \"13.66.232.224/28\",\r\n \"13.66.234.0/27\",\r\n \"13.77.184.64/28\",\r\n
+ \ \"20.38.99.0/24\",\r\n \"20.47.62.0/23\",\r\n \"20.60.20.0/24\",\r\n
+ \ \"20.60.68.0/22\",\r\n \"20.60.152.0/23\",\r\n \"20.150.68.0/24\",\r\n
+ \ \"20.150.78.0/24\",\r\n \"20.150.87.0/24\",\r\n \"20.150.107.0/24\",\r\n
+ \ \"20.157.50.0/23\",\r\n \"52.183.48.16/28\",\r\n \"52.183.104.16/28\",\r\n
+ \ \"52.183.104.32/28\",\r\n \"52.191.176.16/28\",\r\n \"52.191.176.32/28\",\r\n
+ \ \"52.239.148.128/25\",\r\n \"52.239.176.128/25\",\r\n \"52.239.193.0/24\",\r\n
+ \ \"52.239.210.0/23\",\r\n \"52.239.236.0/23\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"StorageSyncService\",\r\n
+ \ \"id\": \"StorageSyncService\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"4\",\r\n \"region\": \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"13.70.176.196/32\",\r\n \"13.73.248.112/29\",\r\n
+ \ \"13.75.153.240/32\",\r\n \"13.76.81.46/32\",\r\n \"20.36.120.216/29\",\r\n
+ \ \"20.37.64.216/29\",\r\n \"20.37.157.80/29\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"20.37.224.216/29\",\r\n \"20.38.85.152/29\",\r\n \"20.38.136.224/29\",\r\n
+ \ \"20.39.11.96/29\",\r\n \"20.41.5.144/29\",\r\n \"20.41.65.184/29\",\r\n
+ \ \"20.41.193.160/29\",\r\n \"20.42.4.248/29\",\r\n \"20.42.131.224/29\",\r\n
+ \ \"20.42.227.128/29\",\r\n \"20.43.42.8/29\",\r\n \"20.43.66.0/29\",\r\n
+ \ \"20.43.131.40/29\",\r\n \"20.45.71.151/32\",\r\n \"20.45.112.216/29\",\r\n
+ \ \"20.45.192.248/29\",\r\n \"20.45.208.0/29\",\r\n \"20.50.1.0/29\",\r\n
+ \ \"20.72.27.184/29\",\r\n \"20.150.172.40/29\",\r\n \"20.189.108.56/29\",\r\n
+ \ \"20.192.32.232/29\",\r\n \"20.193.205.128/29\",\r\n \"23.100.106.151/32\",\r\n
+ \ \"23.102.225.54/32\",\r\n \"40.67.48.208/29\",\r\n \"40.80.57.192/29\",\r\n
+ \ \"40.80.169.176/29\",\r\n \"40.80.188.24/29\",\r\n \"40.82.253.192/29\",\r\n
+ \ \"40.89.17.232/29\",\r\n \"40.112.150.67/32\",\r\n \"40.113.94.67/32\",\r\n
+ \ \"40.123.47.110/32\",\r\n \"40.123.216.130/32\",\r\n \"51.12.101.240/29\",\r\n
+ \ \"51.12.204.248/29\",\r\n \"51.104.25.224/29\",\r\n \"51.105.80.208/29\",\r\n
+ \ \"51.105.88.248/29\",\r\n \"51.107.48.224/29\",\r\n \"51.107.144.216/29\",\r\n
+ \ \"51.116.60.244/30\",\r\n \"51.116.245.168/30\",\r\n \"51.120.40.224/29\",\r\n
+ \ \"51.120.224.216/29\",\r\n \"51.137.161.240/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"51.140.202.34/32\",\r\n \"51.143.192.208/29\",\r\n \"52.136.48.216/29\",\r\n
+ \ \"52.136.131.99/32\",\r\n \"52.140.105.184/29\",\r\n \"52.143.166.54/32\",\r\n
+ \ \"52.150.139.104/29\",\r\n \"52.161.25.233/32\",\r\n \"52.176.149.179/32\",\r\n
+ \ \"52.183.27.204/32\",\r\n \"52.225.171.85/32\",\r\n \"52.228.42.41/32\",\r\n
+ \ \"52.228.81.248/29\",\r\n \"52.231.67.75/32\",\r\n \"52.231.159.38/32\",\r\n
+ \ \"52.235.36.119/32\",\r\n \"65.52.62.167/32\",\r\n \"102.133.56.128/29\",\r\n
+ \ \"102.133.75.173/32\",\r\n \"102.133.175.72/32\",\r\n \"104.40.191.8/32\",\r\n
+ \ \"104.41.148.238/32\",\r\n \"104.41.161.113/32\",\r\n \"104.208.61.223/32\",\r\n
+ \ \"104.210.219.252/32\",\r\n \"104.211.73.56/32\",\r\n \"104.211.231.18/32\",\r\n
+ \ \"191.233.9.96/29\",\r\n \"191.235.225.216/29\",\r\n \"191.237.253.115/32\",\r\n
+ \ \"2603:1000:4::340/123\",\r\n \"2603:1000:104:1::300/123\",\r\n
+ \ \"2603:1010:6:1::300/123\",\r\n \"2603:1010:101::340/123\",\r\n
+ \ \"2603:1010:304::340/123\",\r\n \"2603:1010:404::340/123\",\r\n
+ \ \"2603:1020:5:1::300/123\",\r\n \"2603:1020:206:1::300/123\",\r\n
+ \ \"2603:1020:305::340/123\",\r\n \"2603:1020:405::340/123\",\r\n
+ \ \"2603:1020:605::340/123\",\r\n \"2603:1020:705:1::300/123\",\r\n
+ \ \"2603:1020:805:1::300/123\",\r\n \"2603:1020:905::340/123\",\r\n
+ \ \"2603:1020:a04:1::300/123\",\r\n \"2603:1020:b04::340/123\",\r\n
+ \ \"2603:1020:c04:1::300/123\",\r\n \"2603:1020:d04::340/123\",\r\n
+ \ \"2603:1020:e04:1::300/123\",\r\n \"2603:1020:e04:802::2a0/123\",\r\n
+ \ \"2603:1020:f04::340/123\",\r\n \"2603:1020:1004::300/123\",\r\n
+ \ \"2603:1020:1004:800::120/123\",\r\n \"2603:1020:1104:400::320/123\",\r\n
+ \ \"2603:1030:f:1::340/123\",\r\n \"2603:1030:f:400::dc0/123\",\r\n
+ \ \"2603:1030:10:1::300/123\",\r\n \"2603:1030:104:1::300/123\",\r\n
+ \ \"2603:1030:107:400::2a0/123\",\r\n \"2603:1030:210:1::300/123\",\r\n
+ \ \"2603:1030:40b:1::300/123\",\r\n \"2603:1030:40c:1::300/123\",\r\n
+ \ \"2603:1030:504:1::300/123\",\r\n \"2603:1030:504:802::120/123\",\r\n
+ \ \"2603:1030:608::340/123\",\r\n \"2603:1030:807:1::300/123\",\r\n
+ \ \"2603:1030:a07::340/123\",\r\n \"2603:1030:b04::340/123\",\r\n
+ \ \"2603:1030:c06:1::300/123\",\r\n \"2603:1030:f05:1::300/123\",\r\n
+ \ \"2603:1030:1005::340/123\",\r\n \"2603:1040:5:1::300/123\",\r\n
+ \ \"2603:1040:207::340/123\",\r\n \"2603:1040:407:1::300/123\",\r\n
+ \ \"2603:1040:606::340/123\",\r\n \"2603:1040:806::340/123\",\r\n
+ \ \"2603:1040:904:1::300/123\",\r\n \"2603:1040:a06:1::300/123\",\r\n
+ \ \"2603:1040:b04::340/123\",\r\n \"2603:1040:c06::340/123\",\r\n
+ \ \"2603:1040:d04::300/123\",\r\n \"2603:1040:d04:800::120/123\",\r\n
+ \ \"2603:1040:f05:1::300/123\",\r\n \"2603:1040:f05:802::2a0/123\",\r\n
+ \ \"2603:1040:1104:400::320/123\",\r\n \"2603:1050:6:1::300/123\",\r\n
+ \ \"2603:1050:6:802::2a0/123\",\r\n \"2603:1050:403::300/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.37.224.216/29\",\r\n \"2603:1010:304::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaCentral2\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaCentral2\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"australiacentral2\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"20.36.120.216/29\",\r\n \"2603:1010:404::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.AustraliaEast\",\r\n
+ \ \"id\": \"StorageSyncService.AustraliaEast\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"australiaeast\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.75.153.240/32\",\r\n \"20.37.195.96/29\",\r\n
+ \ \"2603:1010:6:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.CanadaEast\",\r\n \"id\":
+ \"StorageSyncService.CanadaEast\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"canadaeast\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"40.89.17.232/29\",\r\n \"52.235.36.119/32\",\r\n
+ \ \"2603:1030:1005::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.EastUS2\",\r\n \"id\":
+ \"StorageSyncService.EastUS2\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"1\",\r\n \"region\": \"eastus2\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"20.41.5.144/29\",\r\n \"40.123.47.110/32\",\r\n
+ \ \"2603:1030:40c:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.FranceSouth\",\r\n \"id\":
+ \"StorageSyncService.FranceSouth\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southfrance\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.105.88.248/29\",\r\n \"52.136.131.99/32\",\r\n
+ \ \"2603:1020:905::340/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"StorageSyncService.SouthAfricaWest\",\r\n \"id\":
+ \"StorageSyncService.SouthAfricaWest\",\r\n \"properties\": {\r\n \"changeNumber\":
+ \"2\",\r\n \"region\": \"southafricawest\",\r\n \"state\": \"GA\",\r\n
+ \ \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"102.133.56.128/29\",\r\n \"102.133.75.173/32\",\r\n
+ \ \"2603:1000:4::340/123\"\r\n ]\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"StorageSyncService.SouthIndia\",\r\n \"id\": \"StorageSyncService.SouthIndia\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"2\",\r\n \"region\":
+ \"southindia\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\":
+ [\r\n \"API\",\r\n \"NSG\"\r\n ],\r\n \"systemService\":
+ \"StorageSyncService\",\r\n \"addressPrefixes\": [\r\n \"20.41.193.160/29\",\r\n
+ \ \"104.211.231.18/32\",\r\n \"2603:1040:c06::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.SwitzerlandWest\",\r\n
+ \ \"id\": \"StorageSyncService.SwitzerlandWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"2\",\r\n \"region\": \"switzerlandw\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"StorageSyncService\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.107.144.216/29\",\r\n \"2603:1020:b04::340/123\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"StorageSyncService.UKSouth\",\r\n
+ \ \"id\": \"StorageSyncService.UKSouth\",\r\n \"properties\": {\r\n
+ \ \"changeNumber\": \"1\",\r\n \"region\": \"uksouth\",\r\n \"state\":
+ \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n \"NSG\"\r\n
+ \ ],\r\n \"systemService\": \"StorageSyncService\",\r\n \"addressPrefixes\":
+ [\r\n \"51.104.25.224/29\",\r\n \"51.140.67.72/32\",\r\n
+ \ \"2603:1020:705:1::300/123\"\r\n ]\r\n }\r\n },\r\n
+ \ {\r\n \"name\": \"WindowsVirtualDesktop\",\r\n \"id\": \"WindowsVirtualDesktop\",\r\n
+ \ \"properties\": {\r\n \"changeNumber\": \"4\",\r\n \"region\":
+ \"\",\r\n \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n
+ \ \"API\",\r\n \"NSG\",\r\n \"UDR\",\r\n \"FW\"\r\n
+ \ ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n \"addressPrefixes\":
+ [\r\n \"13.66.251.49/32\",\r\n \"13.67.68.78/32\",\r\n \"13.68.76.104/32\",\r\n
+ \ \"13.69.82.138/32\",\r\n \"13.69.156.85/32\",\r\n \"13.70.40.201/32\",\r\n
+ \ \"13.70.120.215/32\",\r\n \"13.71.5.20/32\",\r\n \"13.71.67.87/32\",\r\n
+ \ \"13.71.81.161/32\",\r\n \"13.71.113.6/32\",\r\n \"13.73.237.154/32\",\r\n
+ \ \"13.75.114.143/32\",\r\n \"13.75.171.61/32\",\r\n \"13.75.198.169/32\",\r\n
+ \ \"13.76.88.89/32\",\r\n \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n
+ \ \"13.77.45.213/32\",\r\n \"13.77.140.58/32\",\r\n \"13.79.243.194/32\",\r\n
+ \ \"13.88.221.28/32\",\r\n \"13.88.254.98/32\",\r\n \"20.36.33.29/32\",\r\n
+ \ \"20.36.33.170/32\",\r\n \"20.36.35.190/32\",\r\n \"20.36.38.195/32\",\r\n
+ \ \"20.36.39.50/32\",\r\n \"20.36.39.171/32\",\r\n \"20.36.41.74/32\",\r\n
+ \ \"20.41.77.252/32\",\r\n \"20.45.64.86/32\",\r\n \"20.45.67.112/32\",\r\n
+ \ \"20.45.67.185/32\",\r\n \"20.45.79.3/32\",\r\n \"20.45.79.24/32\",\r\n
+ \ \"20.45.79.91/32\",\r\n \"20.45.79.96/32\",\r\n \"20.45.79.168/32\",\r\n
+ \ \"20.46.45.161/32\",\r\n \"20.46.46.252/32\",\r\n \"20.188.3.1/32\",\r\n
+ \ \"20.188.39.108/32\",\r\n \"20.188.41.240/32\",\r\n \"20.188.45.82/32\",\r\n
+ \ \"20.190.43.99/32\",\r\n \"23.97.108.170/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"23.98.133.187/32\",\r\n \"23.99.141.138/32\",\r\n \"23.100.50.154/32\",\r\n
+ \ \"23.100.98.36/32\",\r\n \"23.101.5.54/32\",\r\n \"23.101.220.135/32\",\r\n
+ \ \"23.102.229.113/32\",\r\n \"40.65.122.222/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.69.31.73/32\",\r\n \"40.69.90.166/32\",\r\n \"40.69.102.46/32\",\r\n
+ \ \"40.69.149.151/32\",\r\n \"40.70.189.87/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"40.75.30.117/32\",\r\n \"40.80.80.48/32\",\r\n \"40.83.79.39/32\",\r\n
+ \ \"40.85.241.159/32\",\r\n \"40.86.204.245/32\",\r\n \"40.86.205.216/32\",\r\n
+ \ \"40.86.208.118/32\",\r\n \"40.86.222.183/32\",\r\n \"40.89.129.146/32\",\r\n
+ \ \"40.89.154.76/32\",\r\n \"40.113.199.138/32\",\r\n \"40.113.200.58/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"40.115.136.175/32\",\r\n \"40.119.163.43/32\",\r\n
+ \ \"40.119.167.95/32\",\r\n \"40.120.39.124/32\",\r\n \"40.122.28.196/32\",\r\n
+ \ \"40.122.212.20/32\",\r\n \"40.123.228.58/32\",\r\n \"40.123.230.81/32\",\r\n
+ \ \"40.123.230.179/32\",\r\n \"40.123.230.249/32\",\r\n \"40.127.3.207/32\",\r\n
+ \ \"51.11.13.248/32\",\r\n \"51.11.241.142/32\",\r\n \"51.104.49.88/32\",\r\n
+ \ \"51.105.54.123/32\",\r\n \"51.107.68.172/32\",\r\n \"51.107.69.35/32\",\r\n
+ \ \"51.107.78.168/32\",\r\n \"51.107.85.67/32\",\r\n \"51.107.85.110/32\",\r\n
+ \ \"51.107.86.7/32\",\r\n \"51.107.86.99/32\",\r\n \"51.116.171.102/32\",\r\n
+ \ \"51.116.182.248/32\",\r\n \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n
+ \ \"51.116.225.55/32\",\r\n \"51.116.236.74/32\",\r\n \"51.116.236.84/32\",\r\n
+ \ \"51.120.69.158/32\",\r\n \"51.120.70.135/32\",\r\n \"51.120.70.141/32\",\r\n
+ \ \"51.120.77.155/32\",\r\n \"51.120.78.142/32\",\r\n \"51.120.79.212/32\",\r\n
+ \ \"51.120.88.120/32\",\r\n \"51.132.29.107/32\",\r\n \"51.136.28.200/32\",\r\n
+ \ \"51.137.89.79/32\",\r\n \"51.140.57.159/32\",\r\n \"51.140.206.110/32\",\r\n
+ \ \"51.140.231.223/32\",\r\n \"51.140.255.55/32\",\r\n \"51.141.30.31/32\",\r\n
+ \ \"51.141.122.89/32\",\r\n \"51.141.173.236/32\",\r\n \"51.143.39.79/32\",\r\n
+ \ \"51.143.164.192/32\",\r\n \"51.143.169.107/32\",\r\n \"51.145.17.75/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"52.138.20.115/32\",\r\n \"52.138.28.23/32\",\r\n
+ \ \"52.141.37.201/32\",\r\n \"52.141.56.101/32\",\r\n \"52.142.161.0/32\",\r\n
+ \ \"52.142.162.226/32\",\r\n \"52.143.96.87/32\",\r\n \"52.143.182.208/32\",\r\n
+ \ \"52.147.3.93/32\",\r\n \"52.147.160.158/32\",\r\n \"52.151.53.196/32\",\r\n
+ \ \"52.155.111.124/32\",\r\n \"52.156.171.127/32\",\r\n \"52.163.209.255/32\",\r\n
+ \ \"52.164.126.124/32\",\r\n \"52.165.218.15/32\",\r\n \"52.167.163.135/32\",\r\n
+ \ \"52.167.171.53/32\",\r\n \"52.169.5.116/32\",\r\n \"52.171.36.33/32\",\r\n
+ \ \"52.172.34.74/32\",\r\n \"52.172.40.215/32\",\r\n \"52.172.133.5/32\",\r\n
+ \ \"52.172.194.109/32\",\r\n \"52.172.210.235/32\",\r\n \"52.172.217.34/32\",\r\n
+ \ \"52.172.223.46/32\",\r\n \"52.173.89.168/32\",\r\n \"52.175.144.120/32\",\r\n
+ \ \"52.175.253.156/32\",\r\n \"52.177.123.162/32\",\r\n \"52.177.172.247/32\",\r\n
+ \ \"52.183.19.64/32\",\r\n \"52.183.130.137/32\",\r\n \"52.185.202.152/32\",\r\n
+ \ \"52.187.127.152/32\",\r\n \"52.189.194.14/32\",\r\n \"52.189.215.151/32\",\r\n
+ \ \"52.189.233.158/32\",\r\n \"52.191.129.231/32\",\r\n \"52.228.29.164/32\",\r\n
+ \ \"52.229.117.254/32\",\r\n \"52.229.125.45/32\",\r\n \"52.229.207.180/32\",\r\n
+ \ \"52.231.13.193/32\",\r\n \"52.231.38.211/32\",\r\n \"52.231.93.224/32\",\r\n
+ \ \"52.231.98.58/32\",\r\n \"52.231.155.130/32\",\r\n \"52.231.156.19/32\",\r\n
+ \ \"52.231.164.163/32\",\r\n \"52.231.166.199/32\",\r\n \"52.231.195.7/32\",\r\n
+ \ \"52.231.197.195/32\",\r\n \"52.231.206.162/32\",\r\n \"52.233.16.198/32\",\r\n
+ \ \"52.237.20.14/32\",\r\n \"52.237.201.246/32\",\r\n \"52.237.253.245/32\",\r\n
+ \ \"52.242.86.101/32\",\r\n \"52.243.65.107/32\",\r\n \"52.243.74.213/32\",\r\n
+ \ \"52.246.165.140/32\",\r\n \"52.246.177.221/32\",\r\n \"52.246.191.98/32\",\r\n
+ \ \"52.247.122.225/32\",\r\n \"52.247.123.0/32\",\r\n \"52.255.40.105/32\",\r\n
+ \ \"52.255.61.145/32\",\r\n \"65.52.71.120/32\",\r\n \"65.52.158.177/32\",\r\n
+ \ \"70.37.83.67/32\",\r\n \"70.37.86.126/32\",\r\n \"70.37.99.24/32\",\r\n
+ \ \"102.37.42.159/32\",\r\n \"102.133.64.36/32\",\r\n \"102.133.64.68/32\",\r\n
+ \ \"102.133.64.91/32\",\r\n \"102.133.64.111/32\",\r\n \"102.133.72.250/32\",\r\n
+ \ \"102.133.75.8/32\",\r\n \"102.133.75.32/32\",\r\n \"102.133.75.35/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\",\r\n
+ \ \"104.40.156.194/32\",\r\n \"104.41.45.182/32\",\r\n \"104.41.166.159/32\",\r\n
+ \ \"104.43.169.4/32\",\r\n \"104.46.237.209/32\",\r\n \"104.208.28.82/32\",\r\n
+ \ \"104.209.233.222/32\",\r\n \"104.210.150.160/32\",\r\n
+ \ \"104.211.78.17/32\",\r\n \"104.211.114.61/32\",\r\n \"104.211.138.88/32\",\r\n
+ \ \"104.211.140.190/32\",\r\n \"104.211.155.114/32\",\r\n
+ \ \"104.211.165.123/32\",\r\n \"104.211.184.150/32\",\r\n
+ \ \"104.211.188.151/32\",\r\n \"104.211.211.213/32\",\r\n
+ \ \"104.211.216.230/32\",\r\n \"104.211.242.104/32\",\r\n
+ \ \"104.214.60.144/32\",\r\n \"104.214.237.23/32\",\r\n \"104.215.51.3/32\",\r\n
+ \ \"104.215.103.51/32\",\r\n \"104.215.112.85/32\",\r\n \"137.116.49.12/32\",\r\n
+ \ \"137.116.248.148/32\",\r\n \"137.117.171.26/32\",\r\n
+ \ \"137.135.243.65/32\",\r\n \"138.91.44.13/32\",\r\n \"168.61.167.193/32\",\r\n
+ \ \"168.63.31.54/32\",\r\n \"168.63.71.119/32\",\r\n \"168.63.137.213/32\",\r\n
+ \ \"191.232.49.74/32\",\r\n \"191.232.166.149/32\",\r\n \"191.232.235.70/32\",\r\n
+ \ \"191.232.238.73/32\",\r\n \"191.234.191.63/32\",\r\n \"191.235.65.127/32\",\r\n
+ \ \"191.235.73.211/32\",\r\n \"191.235.78.126/32\",\r\n \"191.239.248.16/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.GermanyWestCentral\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"germanywc\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"51.116.171.102/32\",\r\n \"51.116.182.248/32\",\r\n
+ \ \"51.116.225.43/32\",\r\n \"51.116.225.44/32\",\r\n \"51.116.225.55/32\",\r\n
+ \ \"51.116.236.74/32\",\r\n \"51.116.236.84/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.JapanWest\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.JapanWest\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"japanwest\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.73.237.154/32\",\r\n \"40.74.84.253/32\",\r\n
+ \ \"40.74.113.202/32\",\r\n \"40.74.118.163/32\",\r\n \"40.74.136.34/32\",\r\n
+ \ \"52.175.144.120/32\",\r\n \"104.46.237.209/32\",\r\n \"104.215.51.3/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SouthAfricaNorth\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southafricanorth\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"40.127.3.207/32\",\r\n \"102.37.42.159/32\",\r\n
+ \ \"102.133.161.220/32\",\r\n \"102.133.166.135/32\",\r\n
+ \ \"102.133.172.191/32\",\r\n \"102.133.175.200/32\",\r\n
+ \ \"102.133.224.81/32\",\r\n \"102.133.234.139/32\"\r\n ]\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.SoutheastAsia\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"southeastasia\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.67.68.78/32\",\r\n \"13.76.88.89/32\",\r\n
+ \ \"13.76.195.19/32\",\r\n \"13.76.230.148/32\",\r\n \"23.98.66.174/32\",\r\n
+ \ \"52.163.209.255/32\",\r\n \"52.187.127.152/32\",\r\n \"138.91.44.13/32\"\r\n
+ \ ]\r\n }\r\n },\r\n {\r\n \"name\": \"WindowsVirtualDesktop.WestEurope\",\r\n
+ \ \"id\": \"WindowsVirtualDesktop.WestEurope\",\r\n \"properties\":
+ {\r\n \"changeNumber\": \"1\",\r\n \"region\": \"westeurope\",\r\n
+ \ \"state\": \"GA\",\r\n \"networkFeatures\": [\r\n \"API\",\r\n
+ \ \"NSG\"\r\n ],\r\n \"systemService\": \"WindowsVirtualDesktop\",\r\n
+ \ \"addressPrefixes\": [\r\n \"13.69.82.138/32\",\r\n \"40.68.18.120/32\",\r\n
+ \ \"40.114.241.90/32\",\r\n \"51.136.28.200/32\",\r\n \"51.137.89.79/32\",\r\n
+ \ \"52.137.2.50/32\",\r\n \"65.52.158.177/32\",\r\n \"104.40.156.194/32\",\r\n
+ \ \"104.214.237.23/32\",\r\n \"137.117.171.26/32\",\r\n \"168.63.31.54/32\"\r\n
+ \ ]\r\n }\r\n }\r\n ],\r\n \"nextLink\": \"\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1580866'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 08:56:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 3b325a88-d26a-4b9d-9a9a-693945015644
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"AzureFrontDoor.Backend","action":"Allow","tag":"ServiceTag","priority":200,"name":"afd"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3840'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:56:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"AzureFrontDoor.Backend","action":"Allow","tag":"ServiceTag","priority":200,"name":"afd"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3840'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:56:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"numberOfWorkers": 1, "defaultDocuments": ["Default.htm",
+ "Default.html", "Default.asp", "index.htm", "index.html", "iisstart.htm", "default.aspx",
+ "index.php", "hostingstart.html"], "netFrameworkVersion": "v4.0", "phpVersion":
+ "5.6", "pythonVersion": "", "nodeVersion": "", "powerShellVersion": "", "linuxFxVersion":
+ "", "requestTracingEnabled": false, "remoteDebuggingEnabled": false, "remoteDebuggingVersion":
+ "VS2019", "httpLoggingEnabled": false, "logsDirectorySizeLimit": 35, "detailedErrorLoggingEnabled":
+ false, "publishingUsername": "$cli-webapp-nwr000002", "scmType": "None", "use32BitWorkerProcess":
+ true, "webSocketsEnabled": false, "alwaysOn": false, "appCommandLine": "", "managedPipelineMode":
+ "Integrated", "virtualApplications": [{"virtualPath": "/", "physicalPath": "site\\wwwroot",
+ "preloadEnabled": false}], "loadBalancing": "LeastRequests", "experiments":
+ {"rampUpRules": []}, "autoHealEnabled": false, "vnetName": "", "vnetRouteAllEnabled":
+ false, "vnetPrivatePortsCount": 0, "localMySqlEnabled": false, "ipSecurityRestrictions":
+ [{"ipAddress": "AzureFrontDoor.Backend", "action": "Allow", "tag": "ServiceTag",
+ "priority": 200, "name": "afd"}, {"ipAddress": "Any", "action": "Deny", "priority":
+ 2147483647, "name": "Deny all", "description": "Deny all access"}, {"ipAddress":
+ "AzureCloud.WestEurope,AzureCloud.NorthEurope", "action": "Allow", "tag": "ServiceTag",
+ "priority": 300, "name": "europe"}], "scmIpSecurityRestrictions": [{"ipAddress":
+ "Any", "action": "Allow", "priority": 1, "name": "Allow all", "description":
+ "Allow all access"}], "scmIpSecurityRestrictionsUseMain": false, "http20Enabled":
+ true, "minTlsVersion": "1.2", "scmMinTlsVersion": "1.0", "ftpsState": "AllAllowed",
+ "preWarmedInstanceCount": 0}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp config access-restriction add
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '1759'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --rule-name --action --service-tag --priority
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
+ method: PATCH
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"AzureFrontDoor.Backend","action":"Allow","tag":"ServiceTag","priority":200,"name":"afd"},{"ipAddress":"AzureCloud.WestEurope,AzureCloud.NorthEurope","action":"Allow","tag":"ServiceTag","priority":300,"name":"europe"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3950'
+ content-type:
+ - application/json
+ date:
+ - Wed, 14 Apr 2021 08:56:51 GMT
+ etag:
+ - '"1D7310C14D08F20"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1193'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml
index 482fd749d5e..4059b463241 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:14 GMT
+ - Wed, 14 Apr 2021 08:56:59 GMT
expires:
- '-1'
pragma:
@@ -46,7 +46,7 @@ interactions:
message: OK
- request:
body: '{"name": "cli-plan-nwr000003", "type": "Microsoft.Web/serverfarms", "location":
- "centralus", "properties": {"skuName": "B1", "capacity": 1}}'
+ "japanwest", "properties": {"skuName": "B1", "capacity": 1}}'
headers:
Accept:
- application/json
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:15 GMT
+ - Wed, 14 Apr 2021 08:57:00 GMT
expires:
- '-1'
pragma:
@@ -95,7 +95,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"centralus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:15 GMT
+ - Wed, 14 Apr 2021 08:57:00 GMT
expires:
- '-1'
pragma:
@@ -147,7 +147,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "centralus", "sku": {"name": "B1", "tier": "BASIC", "capacity":
+ body: '{"location": "japanwest", "sku": {"name": "B1", "tier": "BASIC", "capacity":
1}, "properties": {"perSiteScaling": false, "isXenon": false}}'
headers:
Accept:
@@ -165,24 +165,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"centralus","properties":{"serverFarmId":50246,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central
- US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-189_50246","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":2836,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2836","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1655'
+ - '1653'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:22 GMT
+ - Wed, 14 Apr 2021 08:57:15 GMT
etag:
- - '"1D7266CD083AED5"'
+ - '"1D7310C2842FE4B"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1194'
x-powered-by:
- ASP.NET
status:
@@ -220,23 +220,23 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central
- US","properties":{"serverFarmId":50246,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central
- US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-189_50246","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
+ West","properties":{"serverFarmId":2836,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2836","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1583'
+ - '1581'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:23 GMT
+ - Wed, 14 Apr 2021 08:57:17 GMT
expires:
- '-1'
pragma:
@@ -260,7 +260,7 @@ interactions:
message: OK
- request:
body: '{"name": "cli-webapp-nwr000002", "type": "Microsoft.Web/sites", "location":
- "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003"}}'
+ "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003"}}'
headers:
Accept:
- application/json
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:23 GMT
+ - Wed, 14 Apr 2021 08:57:18 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1195'
x-powered-by:
- ASP.NET
status:
@@ -329,23 +329,23 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central
- US","properties":{"serverFarmId":50246,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-CentralUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central
- US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-189_50246","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
+ West","properties":{"serverFarmId":2836,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2836","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1583'
+ - '1581'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:24 GMT
+ - Wed, 14 Apr 2021 08:57:20 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:25 GMT
+ - Wed, 14 Apr 2021 08:57:20 GMT
expires:
- '-1'
pragma:
@@ -422,7 +422,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003",
+ body: '{"location": "Japan West", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003",
"reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
"v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"}],
"localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
@@ -443,26 +443,26 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Central
- US","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-189.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-CentralUSwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:31:27.76","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:57:29.6833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"20.40.202.5","possibleInboundIpAddresses":"20.40.202.5","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-dm1-189.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.86.38.119,13.89.106.62,40.89.243.166,52.143.244.58,52.154.168.87,52.154.169.9,20.40.202.5","possibleOutboundIpAddresses":"13.86.38.119,13.89.106.62,40.89.243.166,52.143.244.58,52.154.168.87,52.154.169.9,52.154.169.57,52.154.169.86,52.154.169.106,52.154.169.204,52.154.170.25,52.154.170.83,52.154.170.158,52.154.171.81,52.154.171.88,52.154.173.21,40.89.244.137,52.154.173.79,52.154.173.101,52.154.173.180,52.154.174.243,52.154.175.58,52.154.240.147,52.154.240.170,52.154.241.97,52.154.241.132,52.154.241.246,52.154.43.251,52.154.44.21,52.154.44.95,20.40.202.5","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-189","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6529'
+ - '6343'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:44 GMT
+ - Wed, 14 Apr 2021 08:57:48 GMT
etag:
- - '"1D7266CD40B00D5"'
+ - '"1D7310C337A3055"'
expires:
- '-1'
pragma:
@@ -480,7 +480,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '498'
x-powered-by:
- ASP.NET
status:
@@ -504,25 +504,25 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
@@ -534,7 +534,7 @@ interactions:
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:31:45 GMT
+ - Wed, 14 Apr 2021 08:57:51 GMT
expires:
- '-1'
pragma:
@@ -568,13 +568,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Central
- US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
@@ -585,7 +585,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:47 GMT
+ - Wed, 14 Apr 2021 08:57:53 GMT
expires:
- '-1'
pragma:
@@ -621,13 +621,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Central
- US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
@@ -638,7 +638,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:47 GMT
+ - Wed, 14 Apr 2021 08:57:54 GMT
expires:
- '-1'
pragma:
@@ -696,13 +696,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"Central
- US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
@@ -713,9 +713,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:50 GMT
+ - Wed, 14 Apr 2021 08:57:56 GMT
etag:
- - '"1D7266CD40B00D5"'
+ - '"1D7310C337A3055"'
expires:
- '-1'
pragma:
@@ -733,7 +733,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1188'
x-powered-by:
- ASP.NET
status:
@@ -753,13 +753,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Central
- US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites/config","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"130.220.0.0/27","action":"Allow","tag":"Default","priority":200,"name":"developers"},{"ipAddress":"Any","action":"Deny","priority":2147483647,"name":"Deny
all","description":"Deny all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
@@ -770,7 +770,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:50 GMT
+ - Wed, 14 Apr 2021 08:57:59 GMT
expires:
- '-1'
pragma:
@@ -827,13 +827,13 @@ interactions:
ParameterSetName:
- -g -n --rule-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"Central
- US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","location":"Japan
+ West","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":"VS2019","httpLoggingEnabled":false,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":35,"detailedErrorLoggingEnabled":false,"publishingUsername":"$cli-webapp-nwr000002","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":false,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":false,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
headers:
@@ -844,9 +844,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:54 GMT
+ - Wed, 14 Apr 2021 08:58:03 GMT
etag:
- - '"1D7266CE07568B5"'
+ - '"1D7310C435F3300"'
expires:
- '-1'
pragma:
@@ -864,7 +864,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1195'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml
index 661d0085e1b..7ca764f9d3f 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_remove_scm.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:49:21Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:16 GMT
+ - Wed, 14 Apr 2021 08:49:24 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:16 GMT
+ - Wed, 14 Apr 2021 08:49:25 GMT
expires:
- '-1'
pragma:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:12Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:49:21Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:31:17 GMT
+ - Wed, 14 Apr 2021 08:49:25 GMT
expires:
- '-1'
pragma:
@@ -165,13 +165,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":22601,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22601","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":23299,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23299","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -180,9 +180,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:31 GMT
+ - Wed, 14 Apr 2021 08:49:41 GMT
etag:
- - '"1D7266CD3DD3A15"'
+ - '"1D7310B19EC3F35"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1196'
x-powered-by:
- ASP.NET
status:
@@ -220,14 +220,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22601,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22601","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":23299,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23299","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -236,7 +236,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:32 GMT
+ - Wed, 14 Apr 2021 08:49:44 GMT
expires:
- '-1'
pragma:
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:32 GMT
+ - Wed, 14 Apr 2021 08:49:44 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -329,14 +329,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22601,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22601","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":23299,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23299","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -345,7 +345,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:33 GMT
+ - Wed, 14 Apr 2021 08:49:44 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:31:34 GMT
+ - Wed, 14 Apr 2021 08:49:46 GMT
expires:
- '-1'
pragma:
@@ -443,26 +443,26 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:31:42.47","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:49:57.6633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6205'
+ - '6210'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:00 GMT
+ - Wed, 14 Apr 2021 08:50:17 GMT
etag:
- - '"1D7266CDCA35215"'
+ - '"1D7310B26130160"'
expires:
- '-1'
pragma:
@@ -480,7 +480,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '498'
x-powered-by:
- ASP.NET
status:
@@ -504,31 +504,31 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
@@ -540,7 +540,7 @@ interactions:
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:32:02 GMT
+ - Wed, 14 Apr 2021 08:50:19 GMT
expires:
- '-1'
pragma:
@@ -574,7 +574,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -591,7 +591,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:03 GMT
+ - Wed, 14 Apr 2021 08:50:21 GMT
expires:
- '-1'
pragma:
@@ -627,7 +627,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -644,7 +644,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:05 GMT
+ - Wed, 14 Apr 2021 08:50:23 GMT
expires:
- '-1'
pragma:
@@ -702,7 +702,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -719,9 +719,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:07 GMT
+ - Wed, 14 Apr 2021 08:50:26 GMT
etag:
- - '"1D7266CDCA35215"'
+ - '"1D7310B26130160"'
expires:
- '-1'
pragma:
@@ -739,7 +739,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1190'
x-powered-by:
- ASP.NET
status:
@@ -759,7 +759,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -776,7 +776,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:08 GMT
+ - Wed, 14 Apr 2021 08:50:27 GMT
expires:
- '-1'
pragma:
@@ -833,7 +833,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -850,9 +850,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:12 GMT
+ - Wed, 14 Apr 2021 08:50:38 GMT
etag:
- - '"1D7266CEB20BB75"'
+ - '"1D7310B367D46A0"'
expires:
- '-1'
pragma:
@@ -870,7 +870,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1197'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml
index bdf41e8e1cb..03e1eba6020 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_complex.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:32:11Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:50:44Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:32:14 GMT
+ - Wed, 14 Apr 2021 08:50:46 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:14 GMT
+ - Wed, 14 Apr 2021 08:50:48 GMT
expires:
- '-1'
pragma:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:32:11Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:50:44Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:32:15 GMT
+ - Wed, 14 Apr 2021 08:50:48 GMT
expires:
- '-1'
pragma:
@@ -165,13 +165,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":22605,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22605","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":23300,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23300","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -180,9 +180,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:28 GMT
+ - Wed, 14 Apr 2021 08:51:05 GMT
etag:
- - '"1D7266CF5D4B3C0"'
+ - '"1D7310B4BAAB940"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1195'
x-powered-by:
- ASP.NET
status:
@@ -220,14 +220,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22605,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22605","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":23300,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23300","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -236,7 +236,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:30 GMT
+ - Wed, 14 Apr 2021 08:51:06 GMT
expires:
- '-1'
pragma:
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:30 GMT
+ - Wed, 14 Apr 2021 08:51:07 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -329,14 +329,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22605,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22605","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":23300,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23300","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -345,7 +345,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:31 GMT
+ - Wed, 14 Apr 2021 08:51:07 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:31 GMT
+ - Wed, 14 Apr 2021 08:51:08 GMT
expires:
- '-1'
pragma:
@@ -443,15 +443,15 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:32:38.0866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:51:15.1366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
@@ -460,9 +460,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:56 GMT
+ - Wed, 14 Apr 2021 08:51:34 GMT
etag:
- - '"1D7266CFDDE9AAB"'
+ - '"1D7310B542DADC0"'
expires:
- '-1'
pragma:
@@ -480,7 +480,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '499'
+ - '498'
x-powered-by:
- ASP.NET
status:
@@ -504,31 +504,31 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
@@ -540,7 +540,7 @@ interactions:
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:32:57 GMT
+ - Wed, 14 Apr 2021 08:51:36 GMT
expires:
- '-1'
pragma:
@@ -574,7 +574,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -591,7 +591,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:59 GMT
+ - Wed, 14 Apr 2021 08:51:37 GMT
expires:
- '-1'
pragma:
@@ -648,7 +648,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -665,9 +665,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:33:01 GMT
+ - Wed, 14 Apr 2021 08:51:40 GMT
etag:
- - '"1D7266CFDDE9AAB"'
+ - '"1D7310B542DADC0"'
expires:
- '-1'
pragma:
@@ -685,7 +685,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1192'
x-powered-by:
- ASP.NET
status:
@@ -705,7 +705,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -722,7 +722,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:33:03 GMT
+ - Wed, 14 Apr 2021 08:51:43 GMT
expires:
- '-1'
pragma:
@@ -779,7 +779,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -796,9 +796,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:33:06 GMT
+ - Wed, 14 Apr 2021 08:51:45 GMT
etag:
- - '"1D7266D0BB2A4AB"'
+ - '"1D7310B6342A935"'
expires:
- '-1'
pragma:
@@ -816,7 +816,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1189'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml
index 437afaa20b3..5876f886abc 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_set_simple.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:32:14Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:51:50Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:32:19 GMT
+ - Wed, 14 Apr 2021 08:51:52 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:19 GMT
+ - Wed, 14 Apr 2021 08:51:54 GMT
expires:
- '-1'
pragma:
@@ -95,7 +95,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
x-powered-by:
- ASP.NET
status:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:32:14Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:51:50Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:32:20 GMT
+ - Wed, 14 Apr 2021 08:51:53 GMT
expires:
- '-1'
pragma:
@@ -165,13 +165,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":1798,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_1798","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":2832,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2832","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -180,9 +180,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:28 GMT
+ - Wed, 14 Apr 2021 08:52:04 GMT
etag:
- - '"1D7266CF5E70340"'
+ - '"1D7310B6F772700"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1188'
x-powered-by:
- ASP.NET
status:
@@ -220,14 +220,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":1798,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_1798","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":2832,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2832","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -236,7 +236,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:28 GMT
+ - Wed, 14 Apr 2021 08:52:06 GMT
expires:
- '-1'
pragma:
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:28 GMT
+ - Wed, 14 Apr 2021 08:52:08 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -329,14 +329,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":1798,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_1798","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":2832,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2832","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -345,7 +345,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:30 GMT
+ - Wed, 14 Apr 2021 08:52:09 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:30 GMT
+ - Wed, 14 Apr 2021 08:52:09 GMT
expires:
- '-1'
pragma:
@@ -443,26 +443,26 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:32:35.84","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:52:19.4666667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6338'
+ - '6343'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:55 GMT
+ - Wed, 14 Apr 2021 08:52:38 GMT
etag:
- - '"1D7266CFC8A554B"'
+ - '"1D7310B7A8C4515"'
expires:
- '-1'
pragma:
@@ -504,25 +504,25 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
@@ -534,7 +534,7 @@ interactions:
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:32:56 GMT
+ - Wed, 14 Apr 2021 08:52:40 GMT
expires:
- '-1'
pragma:
@@ -568,7 +568,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -585,7 +585,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:58 GMT
+ - Wed, 14 Apr 2021 08:52:41 GMT
expires:
- '-1'
pragma:
@@ -642,7 +642,7 @@ interactions:
ParameterSetName:
- -g -n --use-same-restrictions-for-scm-site
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -659,9 +659,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:33:00 GMT
+ - Wed, 14 Apr 2021 08:52:45 GMT
etag:
- - '"1D7266CFC8A554B"'
+ - '"1D7310B7A8C4515"'
expires:
- '-1'
pragma:
@@ -679,7 +679,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1196'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml
index 31a7db6ca23..512b7e4d9f6 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_show.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:32:09Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:52:50Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:32:13 GMT
+ - Wed, 14 Apr 2021 08:52:53 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:13 GMT
+ - Wed, 14 Apr 2021 08:52:55 GMT
expires:
- '-1'
pragma:
@@ -95,7 +95,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
x-powered-by:
- ASP.NET
status:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:32:09Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:52:50Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:32:13 GMT
+ - Wed, 14 Apr 2021 08:52:55 GMT
expires:
- '-1'
pragma:
@@ -165,24 +165,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":22604,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22604","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":2833,"name":"cli-plan-nwr000003","sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2833","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1655'
+ - '1653'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:25 GMT
+ - Wed, 14 Apr 2021 08:53:09 GMT
etag:
- - '"1D7266CF4880F80"'
+ - '"1D7310B95F8D6B5"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1194'
x-powered-by:
- ASP.NET
status:
@@ -220,23 +220,23 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22604,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22604","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":2833,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2833","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1583'
+ - '1581'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:26 GMT
+ - Wed, 14 Apr 2021 08:53:11 GMT
expires:
- '-1'
pragma:
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:27 GMT
+ - Wed, 14 Apr 2021 08:53:12 GMT
expires:
- '-1'
pragma:
@@ -329,23 +329,23 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22604,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22604","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
+ West","properties":{"serverFarmId":2833,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":3,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-027_2833","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"B1","tier":"Basic","size":"B1","family":"B","capacity":1}}'
headers:
cache-control:
- no-cache
content-length:
- - '1583'
+ - '1581'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:28 GMT
+ - Wed, 14 Apr 2021 08:53:13 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:27 GMT
+ - Wed, 14 Apr 2021 08:53:12 GMT
expires:
- '-1'
pragma:
@@ -443,26 +443,26 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:32:34.15","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:53:22.0566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.137","possibleInboundIpAddresses":"40.74.100.137","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.100.137","possibleOutboundIpAddresses":"40.74.90.160,40.74.94.222,40.74.113.39,40.74.95.132,40.74.113.204,40.74.75.201,40.74.112.41,40.74.113.1,40.74.65.7,40.74.76.184,40.74.79.7,40.74.67.13,40.74.81.157,40.74.86.212,40.74.86.30,40.74.81.231,40.74.80.113,40.74.80.110,40.74.100.137","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
content-length:
- - '6205'
+ - '6343'
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:52 GMT
+ - Wed, 14 Apr 2021 08:53:42 GMT
etag:
- - '"1D7266CFB711015"'
+ - '"1D7310B9FE97F00"'
expires:
- '-1'
pragma:
@@ -504,43 +504,37 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
+ webSystem="WebSites">
headers:
cache-control:
- no-cache
content-length:
- - '2247'
+ - '1667'
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:32:54 GMT
+ - Wed, 14 Apr 2021 08:53:44 GMT
expires:
- '-1'
pragma:
@@ -574,7 +568,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -591,7 +585,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:56 GMT
+ - Wed, 14 Apr 2021 08:53:46 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml
index 2da698fe786..ec99a3ce3d0 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_webapp_access_restriction_slot.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:59Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:53:51Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:32:02 GMT
+ - Wed, 14 Apr 2021 08:53:54 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -77,7 +77,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:03 GMT
+ - Wed, 14 Apr 2021 08:53:55 GMT
expires:
- '-1'
pragma:
@@ -95,7 +95,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -115,15 +115,15 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ - python/3.8.5 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T20:31:59Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"japanwest","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T08:53:51Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -132,7 +132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Wed, 31 Mar 2021 20:32:03 GMT
+ - Wed, 14 Apr 2021 08:53:56 GMT
expires:
- '-1'
pragma:
@@ -165,13 +165,13 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":22603,"name":"cli-plan-nwr000003","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22603","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"japanwest","properties":{"serverFarmId":23303,"name":"cli-plan-nwr000003","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23303","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -180,9 +180,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:18 GMT
+ - Wed, 14 Apr 2021 08:54:10 GMT
etag:
- - '"1D7266CEF971B60"'
+ - '"1D7310BB9FF4035"'
expires:
- '-1'
pragma:
@@ -200,7 +200,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1187'
x-powered-by:
- ASP.NET
status:
@@ -220,14 +220,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22603,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22603","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ West","properties":{"serverFarmId":23303,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23303","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -236,7 +236,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:18 GMT
+ - Wed, 14 Apr 2021 08:54:10 GMT
expires:
- '-1'
pragma:
@@ -277,7 +277,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/validate?api-version=2020-09-01
response:
@@ -291,7 +291,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:19 GMT
+ - Wed, 14 Apr 2021 08:54:11 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -329,14 +329,14 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","name":"cli-plan-nwr000003","type":"Microsoft.Web/serverfarms","kind":"app","location":"Japan
- West","properties":{"serverFarmId":22603,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
- West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_22603","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ West","properties":{"serverFarmId":23303,"name":"cli-plan-nwr000003","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest.rg000001-JapanWestwebspace","subscription":"a6f7834d-3304-4890-82af-ec04cb382539","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Japan
+ West","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest.rg000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-os1-013_23303","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
headers:
cache-control:
- no-cache
@@ -345,7 +345,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:20 GMT
+ - Wed, 14 Apr 2021 08:54:11 GMT
expires:
- '-1'
pragma:
@@ -385,7 +385,7 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
response:
@@ -399,7 +399,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:20 GMT
+ - Wed, 14 Apr 2021 08:54:12 GMT
expires:
- '-1'
pragma:
@@ -443,15 +443,15 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:32:25.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:54:20.5833333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
@@ -460,9 +460,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:44 GMT
+ - Wed, 14 Apr 2021 08:54:40 GMT
etag:
- - '"1D7266CF62BAD60"'
+ - '"1D7310BC2B40D20"'
expires:
- '-1'
pragma:
@@ -480,7 +480,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-resource-requests:
- - '498'
+ - '499'
x-powered-by:
- ASP.NET
status:
@@ -504,31 +504,31 @@ interactions:
ParameterSetName:
- -g -n --plan
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/publishxml?api-version=2020-09-01
response:
body:
string:
@@ -540,7 +540,7 @@ interactions:
content-type:
- application/xml
date:
- - Wed, 31 Mar 2021 20:32:45 GMT
+ - Wed, 14 Apr 2021 08:54:41 GMT
expires:
- '-1'
pragma:
@@ -574,13 +574,13 @@ interactions:
ParameterSetName:
- -g -n --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002","name":"cli-webapp-nwr000002","type":"Microsoft.Web/sites","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:32:25.91","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ West","properties":{"name":"cli-webapp-nwr000002","state":"Running","hostNames":["cli-webapp-nwr000002.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002.azurewebsites.net","cli-webapp-nwr000002.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:54:21.17","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002\\$cli-webapp-nwr000002","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
@@ -589,9 +589,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:45 GMT
+ - Wed, 14 Apr 2021 08:54:43 GMT
etag:
- - '"1D7266CF62BAD60"'
+ - '"1D7310BC2B40D20"'
expires:
- '-1'
pragma:
@@ -627,7 +627,7 @@ interactions:
ParameterSetName:
- -g -n --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/config/web?api-version=2020-09-01
response:
@@ -644,7 +644,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:32:46 GMT
+ - Wed, 14 Apr 2021 08:54:45 GMT
expires:
- '-1'
pragma:
@@ -687,15 +687,15 @@ interactions:
ParameterSetName:
- -g -n --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage?api-version=2020-09-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage","name":"cli-webapp-nwr000002/stage","type":"Microsoft.Web/sites/slots","kind":"app","location":"Japan
- West","properties":{"name":"cli-webapp-nwr000002(stage)","state":"Running","hostNames":["cli-webapp-nwr000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002-stage.azurewebsites.net","cli-webapp-nwr000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T20:32:54.1766667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ West","properties":{"name":"cli-webapp-nwr000002(stage)","state":"Running","hostNames":["cli-webapp-nwr000002-stage.azurewebsites.net"],"webSpace":"clitest.rg000001-JapanWestwebspace","selfLink":"https://waws-prod-os1-013.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rg000001-JapanWestwebspace/sites/cli-webapp-nwr000002","repositorySiteName":"cli-webapp-nwr000002","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cli-webapp-nwr000002-stage.azurewebsites.net","cli-webapp-nwr000002-stage.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"cli-webapp-nwr000002-stage.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cli-webapp-nwr000002-stage.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/serverfarms/cli-plan-nwr000003","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-14T08:54:55.7433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
- all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002__f15d","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002__stage\\$cli-webapp-nwr000002__stage","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002-stage.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cli-webapp-nwr000002__ff83","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"EA90FB08540C6A5AD4F3DC0DFE9A80BDBE4909CF0221945DC9AD904F2BDB1C9A","kind":"app","inboundIpAddress":"40.74.100.129","possibleInboundIpAddresses":"40.74.100.129","ftpUsername":"cli-webapp-nwr000002__stage\\$cli-webapp-nwr000002__stage","ftpsHostName":"ftps://waws-prod-os1-013.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17","possibleOutboundIpAddresses":"40.74.100.129,40.74.85.64,40.74.126.115,40.74.125.67,40.74.128.17,40.74.127.201,40.74.128.130,23.100.108.106,40.74.128.122,40.74.128.53","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-os1-013","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rg000001","defaultHostName":"cli-webapp-nwr000002-stage.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
headers:
cache-control:
- no-cache
@@ -704,9 +704,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:33:13 GMT
+ - Wed, 14 Apr 2021 08:55:35 GMT
etag:
- - '"1D7266CF62BAD60"'
+ - '"1D7310BC2B40D20"'
expires:
- '-1'
pragma:
@@ -744,7 +744,7 @@ interactions:
ParameterSetName:
- -g -n --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2020-09-01
response:
@@ -761,7 +761,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:33:15 GMT
+ - Wed, 14 Apr 2021 08:55:38 GMT
expires:
- '-1'
pragma:
@@ -797,7 +797,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2020-09-01
response:
@@ -814,7 +814,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:33:16 GMT
+ - Wed, 14 Apr 2021 08:55:40 GMT
expires:
- '-1'
pragma:
@@ -850,7 +850,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2020-09-01
response:
@@ -867,7 +867,7 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:33:17 GMT
+ - Wed, 14 Apr 2021 08:55:42 GMT
expires:
- '-1'
pragma:
@@ -925,7 +925,7 @@ interactions:
ParameterSetName:
- -g -n --rule-name --action --ip-address --priority --slot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.5 (Windows-10-10.0.19041-SP0)
method: PATCH
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Web/sites/cli-webapp-nwr000002/slots/stage/config/web?api-version=2020-09-01
response:
@@ -942,9 +942,9 @@ interactions:
content-type:
- application/json
date:
- - Wed, 31 Mar 2021 20:33:20 GMT
+ - Wed, 14 Apr 2021 08:55:45 GMT
etag:
- - '"1D7266D07903120"'
+ - '"1D7310BD7B3B900"'
expires:
- '-1'
pragma:
@@ -962,7 +962,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1190'
x-powered-by:
- ASP.NET
status:
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_windows_to_linux_fail.yaml b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_windows_to_linux_fail.yaml
new file mode 100644
index 00000000000..50b2a0a00d7
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/recordings/test_windows_to_linux_fail.yaml
@@ -0,0 +1,3129 @@
+interactions:
+- request:
+ body: '{"name": "up-nodeapp000003", "type": "Site"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '52'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku --dryrun
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
+ response:
+ body:
+ string: '{"nameAvailable":true,"reason":"","message":""}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '47'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku --dryrun
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&api-version=2020-09-01
+ response:
+ body:
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central
+ US","name":"Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"Central
+ US","description":null,"sortOrder":0,"displayName":"Central US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North
+ Europe","name":"North Europe","type":"Microsoft.Web/geoRegions","properties":{"name":"North
+ Europe","description":null,"sortOrder":1,"displayName":"North Europe","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ Europe","name":"West Europe","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ Europe","description":null,"sortOrder":2,"displayName":"West Europe","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Southeast
+ Asia","name":"Southeast Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"Southeast
+ Asia","description":null,"sortOrder":3,"displayName":"Southeast Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan
+ West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan
+ West","description":null,"sortOrder":7,"displayName":"Japan West","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan
+ East","name":"Japan East","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan
+ East","description":null,"sortOrder":8,"displayName":"Japan East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ US 2","name":"East US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ US 2","description":null,"sortOrder":9,"displayName":"East US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North
+ Central US","name":"North Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"North
+ Central US","description":null,"sortOrder":10,"displayName":"North Central
+ US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South
+ Central US","name":"South Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"South
+ Central US","description":null,"sortOrder":11,"displayName":"South Central
+ US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil
+ South","name":"Brazil South","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil
+ South","description":null,"sortOrder":12,"displayName":"Brazil South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia
+ East","name":"Australia East","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia
+ East","description":null,"sortOrder":13,"displayName":"Australia East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia
+ Southeast","name":"Australia Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia
+ Southeast","description":null,"sortOrder":14,"displayName":"Australia Southeast","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East
+ Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North
+ Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North
+ Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North
+ Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central
+ India","name":"Central India","type":"Microsoft.Web/geoRegions","properties":{"name":"Central
+ India","description":null,"sortOrder":2147483647,"displayName":"Central India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ India","name":"West India","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ India","description":null,"sortOrder":2147483647,"displayName":"West India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South
+ India","name":"South India","type":"Microsoft.Web/geoRegions","properties":{"name":"South
+ India","description":null,"sortOrder":2147483647,"displayName":"South India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada
+ Central","name":"Canada Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Canada
+ Central","description":null,"sortOrder":2147483647,"displayName":"Canada Central","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada
+ East","name":"Canada East","type":"Microsoft.Web/geoRegions","properties":{"name":"Canada
+ East","description":null,"sortOrder":2147483647,"displayName":"Canada East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ Central US","name":"West Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ Central US","description":null,"sortOrder":2147483647,"displayName":"West
+ Central US","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ US 2","name":"West US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ US 2","description":null,"sortOrder":2147483647,"displayName":"West US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK
+ West","name":"UK West","type":"Microsoft.Web/geoRegions","properties":{"name":"UK
+ West","description":null,"sortOrder":2147483647,"displayName":"UK West","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK
+ South","name":"UK South","type":"Microsoft.Web/geoRegions","properties":{"name":"UK
+ South","description":null,"sortOrder":2147483647,"displayName":"UK South","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ US 2 EUAP","name":"East US 2 EUAP","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ US 2 EUAP","description":null,"sortOrder":2147483647,"displayName":"East US
+ 2 EUAP","orgDomain":"EUAP;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central
+ US EUAP","name":"Central US EUAP","type":"Microsoft.Web/geoRegions","properties":{"name":"Central
+ US EUAP","description":null,"sortOrder":2147483647,"displayName":"Central
+ US EUAP","orgDomain":"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea
+ South","name":"Korea South","type":"Microsoft.Web/geoRegions","properties":{"name":"Korea
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea
+ Central","name":"Korea Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Korea
+ Central","description":null,"sortOrder":2147483647,"displayName":"Korea Central","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France
+ South","name":"France South","type":"Microsoft.Web/geoRegions","properties":{"name":"France
+ South","description":null,"sortOrder":2147483647,"displayName":"France South","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France
+ Central","name":"France Central","type":"Microsoft.Web/geoRegions","properties":{"name":"France
+ Central","description":null,"sortOrder":2147483647,"displayName":"France Central","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia
+ Central 2","name":"Australia Central 2","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia
+ Central 2","description":null,"sortOrder":2147483647,"displayName":"Australia
+ Central 2","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia
+ Central","name":"Australia Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia
+ Central","description":null,"sortOrder":2147483647,"displayName":"Australia
+ Central","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South
+ Africa North","name":"South Africa North","type":"Microsoft.Web/geoRegions","properties":{"name":"South
+ Africa North","description":null,"sortOrder":2147483647,"displayName":"South
+ Africa North","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South
+ Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South
+ Africa West","description":null,"sortOrder":2147483647,"displayName":"South
+ Africa West","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland
+ North","name":"Switzerland North","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland
+ North","description":null,"sortOrder":2147483647,"displayName":"Switzerland
+ North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany
+ West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany
+ West Central","description":null,"sortOrder":2147483647,"displayName":"Germany
+ West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland
+ West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland
+ West","description":null,"sortOrder":2147483647,"displayName":"Switzerland
+ West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE
+ Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE
+ Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE
+ North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE
+ North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway
+ West","name":"Norway West","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway
+ West","description":null,"sortOrder":2147483647,"displayName":"Norway West","orgDomain":"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway
+ East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway
+ East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil
+ Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil
+ Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil
+ Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '17895'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku --dryrun
+ User-Agent:
+ - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: HEAD
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Thu, 15 Apr 2021 19:15:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku --dryrun
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2020-09-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 19:15:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku --dryrun
+ User-Agent:
+ - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: HEAD
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Thu, 15 Apr 2021 19:15:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku --dryrun
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2020-09-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 19:15:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "up-nodeapp000003", "type": "Site"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '52'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
+ response:
+ body:
+ string: '{"nameAvailable":true,"reason":"","message":""}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '47'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions?sku=S1&linuxWorkersEnabled=true&api-version=2020-09-01
+ response:
+ body:
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central
+ US","name":"Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"Central
+ US","description":null,"sortOrder":0,"displayName":"Central US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North
+ Europe","name":"North Europe","type":"Microsoft.Web/geoRegions","properties":{"name":"North
+ Europe","description":null,"sortOrder":1,"displayName":"North Europe","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ Europe","name":"West Europe","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ Europe","description":null,"sortOrder":2,"displayName":"West Europe","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;LINUXFREE;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Southeast
+ Asia","name":"Southeast Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"Southeast
+ Asia","description":null,"sortOrder":3,"displayName":"Southeast Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ Asia","name":"East Asia","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ Asia","description":null,"sortOrder":4,"displayName":"East Asia","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;SFCONTAINERS;LINUXDYNAMIC;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ US","name":"West US","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ US","description":null,"sortOrder":5,"displayName":"West US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ US","name":"East US","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ US","description":null,"sortOrder":6,"displayName":"East US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;FAKEORG;LINUXDSERIES;XENON;SFCONTAINERS;LINUXDYNAMIC;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan
+ West","name":"Japan West","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan
+ West","description":null,"sortOrder":7,"displayName":"Japan West","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Japan
+ East","name":"Japan East","type":"Microsoft.Web/geoRegions","properties":{"name":"Japan
+ East","description":null,"sortOrder":8,"displayName":"Japan East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICLINUX;ELASTICPREMIUM;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ US 2","name":"East US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ US 2","description":null,"sortOrder":9,"displayName":"East US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North
+ Central US","name":"North Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"North
+ Central US","description":null,"sortOrder":10,"displayName":"North Central
+ US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;ELASTICLINUX;LINUXDYNAMIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South
+ Central US","name":"South Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"South
+ Central US","description":null,"sortOrder":11,"displayName":"South Central
+ US","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil
+ South","name":"Brazil South","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil
+ South","description":null,"sortOrder":12,"displayName":"Brazil South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia
+ East","name":"Australia East","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia
+ East","description":null,"sortOrder":13,"displayName":"Australia East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;XENON;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia
+ Southeast","name":"Australia Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia
+ Southeast","description":null,"sortOrder":14,"displayName":"Australia Southeast","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ Asia (Stage)","name":"East Asia (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ Asia (Stage)","description":null,"sortOrder":2147483647,"displayName":"East
+ Asia (Stage)","orgDomain":"MSFTINT;DSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;XENON;LINUX;LINUXFREE;LINUXDYNAMIC;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/North
+ Central US (Stage)","name":"North Central US (Stage)","type":"Microsoft.Web/geoRegions","properties":{"name":"North
+ Central US (Stage)","description":null,"sortOrder":2147483647,"displayName":"North
+ Central US (Stage)","orgDomain":"MSFTINT;LINUX;LINUXFREE;LINUXDYNAMIC;DSERIES;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central
+ India","name":"Central India","type":"Microsoft.Web/geoRegions","properties":{"name":"Central
+ India","description":null,"sortOrder":2147483647,"displayName":"Central India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ India","name":"West India","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ India","description":null,"sortOrder":2147483647,"displayName":"West India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South
+ India","name":"South India","type":"Microsoft.Web/geoRegions","properties":{"name":"South
+ India","description":null,"sortOrder":2147483647,"displayName":"South India","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada
+ Central","name":"Canada Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Canada
+ Central","description":null,"sortOrder":2147483647,"displayName":"Canada Central","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Canada
+ East","name":"Canada East","type":"Microsoft.Web/geoRegions","properties":{"name":"Canada
+ East","description":null,"sortOrder":2147483647,"displayName":"Canada East","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ Central US","name":"West Central US","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ Central US","description":null,"sortOrder":2147483647,"displayName":"West
+ Central US","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;ELASTICLINUX;ELASTICPREMIUM;MSFTPUBLIC;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/West
+ US 2","name":"West US 2","type":"Microsoft.Web/geoRegions","properties":{"name":"West
+ US 2","description":null,"sortOrder":2147483647,"displayName":"West US 2","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;DSERIES;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK
+ West","name":"UK West","type":"Microsoft.Web/geoRegions","properties":{"name":"UK
+ West","description":null,"sortOrder":2147483647,"displayName":"UK West","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UK
+ South","name":"UK South","type":"Microsoft.Web/geoRegions","properties":{"name":"UK
+ South","description":null,"sortOrder":2147483647,"displayName":"UK South","orgDomain":"PUBLIC;MSFTPUBLIC;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/East
+ US 2 EUAP","name":"East US 2 EUAP","type":"Microsoft.Web/geoRegions","properties":{"name":"East
+ US 2 EUAP","description":null,"sortOrder":2147483647,"displayName":"East US
+ 2 EUAP","orgDomain":"EUAP;XENON;DSERIES;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;LINUX;LINUXFREE;ELASTICLINUX;WINDOWSV3;XENONV3;LINUXV3;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Central
+ US EUAP","name":"Central US EUAP","type":"Microsoft.Web/geoRegions","properties":{"name":"Central
+ US EUAP","description":null,"sortOrder":2147483647,"displayName":"Central
+ US EUAP","orgDomain":"EUAP;LINUX;DSERIES;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;ELASTICLINUX;LINUXDYNAMIC;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea
+ South","name":"Korea South","type":"Microsoft.Web/geoRegions","properties":{"name":"Korea
+ South","description":null,"sortOrder":2147483647,"displayName":"Korea South","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;LINUX;LINUXDSERIES;LINUXFREE;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Korea
+ Central","name":"Korea Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Korea
+ Central","description":null,"sortOrder":2147483647,"displayName":"Korea Central","orgDomain":"PUBLIC;DREAMSPARK;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;DSERIES;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France
+ South","name":"France South","type":"Microsoft.Web/geoRegions","properties":{"name":"France
+ South","description":null,"sortOrder":2147483647,"displayName":"France South","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/France
+ Central","name":"France Central","type":"Microsoft.Web/geoRegions","properties":{"name":"France
+ Central","description":null,"sortOrder":2147483647,"displayName":"France Central","orgDomain":"PUBLIC;MSFTPUBLIC;DSERIES;DYNAMIC;LINUX;LINUXDSERIES;ELASTICPREMIUM;LINUXFREE;LINUXDYNAMIC;ELASTICLINUX;XENON;XENONV3;WINDOWSV3;LINUXV3"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia
+ Central 2","name":"Australia Central 2","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia
+ Central 2","description":null,"sortOrder":2147483647,"displayName":"Australia
+ Central 2","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Australia
+ Central","name":"Australia Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Australia
+ Central","description":null,"sortOrder":2147483647,"displayName":"Australia
+ Central","orgDomain":"PUBLIC;FUNCTIONS;DYNAMIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;ELASTICPREMIUM"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South
+ Africa North","name":"South Africa North","type":"Microsoft.Web/geoRegions","properties":{"name":"South
+ Africa North","description":null,"sortOrder":2147483647,"displayName":"South
+ Africa North","orgDomain":"PUBLIC;MSFTPUBLIC;FUNCTIONS;DYNAMIC;LINUX;LINUXDSERIES;DSERIES;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/South
+ Africa West","name":"South Africa West","type":"Microsoft.Web/geoRegions","properties":{"name":"South
+ Africa West","description":null,"sortOrder":2147483647,"displayName":"South
+ Africa West","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland
+ North","name":"Switzerland North","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland
+ North","description":null,"sortOrder":2147483647,"displayName":"Switzerland
+ North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Germany
+ West Central","name":"Germany West Central","type":"Microsoft.Web/geoRegions","properties":{"name":"Germany
+ West Central","description":null,"sortOrder":2147483647,"displayName":"Germany
+ West Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;ELASTICPREMIUM;FUNCTIONS;DYNAMIC;ELASTICLINUX;LINUXDYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Switzerland
+ West","name":"Switzerland West","type":"Microsoft.Web/geoRegions","properties":{"name":"Switzerland
+ West","description":null,"sortOrder":2147483647,"displayName":"Switzerland
+ West","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE
+ Central","name":"UAE Central","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE
+ Central","description":null,"sortOrder":2147483647,"displayName":"UAE Central","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/UAE
+ North","name":"UAE North","type":"Microsoft.Web/geoRegions","properties":{"name":"UAE
+ North","description":null,"sortOrder":2147483647,"displayName":"UAE North","orgDomain":"PUBLIC;DSERIES;LINUX;LINUXDSERIES;LINUXFREE;FUNCTIONS;DYNAMIC;LINUXDYNAMIC;ELASTICPREMIUM;ELASTICLINUX"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway
+ West","name":"Norway West","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway
+ West","description":null,"sortOrder":2147483647,"displayName":"Norway West","orgDomain":"PUBLIC;DSERIES;MSFTPUBLIC;LINUX;LINUXDSERIES"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Norway
+ East","name":"Norway East","type":"Microsoft.Web/geoRegions","properties":{"name":"Norway
+ East","description":null,"sortOrder":2147483647,"displayName":"Norway East","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;ELASTICLINUX;ELASTICPREMIUM;FUNCTIONS;DYNAMIC"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/geoRegions/Brazil
+ Southeast","name":"Brazil Southeast","type":"Microsoft.Web/geoRegions","properties":{"name":"Brazil
+ Southeast","description":null,"sortOrder":2147483647,"displayName":"Brazil
+ Southeast","orgDomain":"PUBLIC;LINUX;LINUXDSERIES;DSERIES;LINUXFREE;FUNCTIONS;DYNAMIC"}}],"nextLink":null,"id":null}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '17895'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: HEAD
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Thu, 15 Apr 2021 19:15:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2020-09-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 19:15:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - python/3.8.2 (macOS-10.16-x86_64-i386-64bit) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: HEAD
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest000001?api-version=2020-10-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Thu, 15 Apr 2021 19:15:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms?api-version=2020-09-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 19:15:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "centralus", "sku": {"name": "S1", "tier": "STANDARD"}, "properties":
+ {"perSiteScaling": false, "isXenon": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '127'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"centralus","properties":{"serverFarmId":92889,"name":"up-nodeplan000002","sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1},"workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":0,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central
+ US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-167_92889","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1508'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:30 GMT
+ etag:
+ - '"1D7322BB2E3AC0B"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central
+ US","properties":{"serverFarmId":92889,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central
+ US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":0,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-167_92889","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1434'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "up-nodeapp000003", "type": "Site"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '52'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
+ response:
+ body:
+ string: '{"nameAvailable":true,"reason":"","message":""}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '47'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "Central US", "properties": {"serverFarmId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002",
+ "reserved": false, "isXenon": false, "hyperV": false, "siteConfig": {"netFrameworkVersion":
+ "v4.6", "appSettings": [{"name": "WEBSITE_NODE_DEFAULT_VERSION", "value": "10.14.1"},
+ {"name": "SCM_DO_BUILD_DURING_DEPLOYMENT", "value": "True"}], "alwaysOn": true,
+ "localMySqlEnabled": false, "http20Enabled": true}, "scmSiteAlsoStopped": false,
+ "httpsOnly": true}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '572'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-167.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T19:15:38.2433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"13.89.172.11","possibleInboundIpAddresses":"13.89.172.11","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-167.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37","possibleOutboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37,40.113.224.199,40.122.118.225,40.122.116.133,40.122.126.193,40.122.104.60","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-167","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5963'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:54 GMT
+ etag:
+ - '"1D7322BB8638CB5"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '499'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/metadata/list?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Central
+ US","properties":{}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '265'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"CURRENT_STACK": "node"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '41'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/metadata?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/metadata","name":"metadata","type":"Microsoft.Web/sites/config","location":"Central
+ US","properties":{"CURRENT_STACK":"node"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '287'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:56 GMT
+ etag:
+ - '"1D7322BC2C5A175"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"format": "WebDeploy"}'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '23'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2020-09-01
+ response:
+ body:
+ string:
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2251'
+ content-type:
+ - application/xml
+ date:
+ - Thu, 15 Apr 2021 19:15:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-167.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T19:15:56.3433333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"13.89.172.11","possibleInboundIpAddresses":"13.89.172.11","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-167.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37","possibleOutboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37,40.113.224.199,40.122.118.225,40.122.116.133,40.122.126.193,40.122.104.60","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-167","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5763'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:57 GMT
+ etag:
+ - '"1D7322BC2C5A175"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"applicationLogs": {}, "httpLogs": {"fileSystem": {"retentionInMb":
+ 100, "retentionInDays": 3, "enabled": true}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '130'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/logs","name":"logs","type":"Microsoft.Web/sites/config","location":"Central
+ US","properties":{"applicationLogs":{"fileSystem":{"level":"Off"},"azureTableStorage":{"level":"Off","sasUrl":null},"azureBlobStorage":{"level":"Off","sasUrl":null,"retentionInDays":null}},"httpLogs":{"fileSystem":{"retentionInMb":100,"retentionInDays":3,"enabled":true},"azureBlobStorage":{"sasUrl":null,"retentionInDays":3,"enabled":false}},"failedRequestsTracing":{"enabled":false},"detailedErrorMessages":{"enabled":false}}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '665'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:59 GMT
+ etag:
+ - '"1D7322BC47C9340"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/publishingcredentials/list?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishingcredentials/$up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites/publishingcredentials","location":"Central
+ US","properties":{"name":null,"publishingUserName":"$up-nodeapp000003","publishingPassword":"8b9lwBBJa803eRnmnxczbYNqb7W88x4mr01DpemhZHdpC3rqpRA8oMjn3wg0","publishingPasswordHash":null,"publishingPasswordHashSalt":null,"metadata":null,"isDeleted":false,"scmUri":"https://$up-nodeapp000003:8b9lwBBJa803eRnmnxczbYNqb7W88x4mr01DpemhZHdpC3rqpRA8oMjn3wg0@up-nodeapp000003.scm.azurewebsites.net"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '723'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:15:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-167.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T19:15:59.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"13.89.172.11","possibleInboundIpAddresses":"13.89.172.11","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-167.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37","possibleOutboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37,40.113.224.199,40.122.118.225,40.122.116.133,40.122.126.193,40.122.104.60","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-167","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5758'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:16:00 GMT
+ etag:
+ - '"1D7322BC47C9340"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web","name":"up-nodeapp000003","type":"Microsoft.Web/sites/config","location":"Central
+ US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-nodeapp000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3674'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:16:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"format": "WebDeploy"}'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '23'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2020-09-01
+ response:
+ body:
+ string:
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2251'
+ content-type:
+ - application/xml
+ date:
+ - Thu, 15 Apr 2021 19:16:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: !!binary |
+ UEsDBBQAAAAIAOZhj1JBwXdOjwIAAJ8EAAAsAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvbXlF
+ eHByZXNzQXBwL0xJQ0VOU0VdU81u4jAQvlfqO4w4tVLUve/NBFOsTeLIMe1yDIkhXoUY2aaob78z
+ SaBqJSTk8Xx/Mw4AQC40ZLYxQzCPD48PWIHUnT+9PXYRnppnyG3jXXCHiHV/dr6O1g0vwPoexqYA
+ 3gTjP0z7ciMojT/ZELAPbIDOeLP/hKOvh2jaBA7eGHAHaLraH00C0UE9fMLZ+IAAt4+1HexwhBoa
+ NDIxYnvskIt8XGtvENFCHYJrbI2k0LrmcjJDHM3BwfYmwFPsDCyqGbF4HpVaU/cTpR2AGm73cLWx
+ c5dIaaK3DREl2NT0l5bc3K57e7KzDMGnEUyMSH8JGIhsJ3ByrT3QvxlTni/73oYugdYS//4SsRio
+ OM4+oUS/nIdg+tkg0liMMUb/8jk2ktSZhhznsQWqXDt3+p7Jzs4OFz+guBmBrcMxjtr/TBOpQpiD
+ 63t3paSNG1pLAcPv20I1NtR792HGbNPbGFxE65MbWs35a+nzVehqfCR7M08R1XHm9c94npyEiI/D
+ 1j3gAxulf8a+vy294VDJtX5nioOooFTyTaz4ChaswvMigXehN3KrATsUK/QO5BpYsYM/olglwP+W
+ ilcVSDXxibzMBMcLUaTZdiWKV1giuJD4WQj8OJBZy1F15hO8Isacq3SDR7YUmdC7ZGJbC10Q+1oq
+ YFAypUW6zZiCcqtKWXE0skLuQhRrhVI854V+QWmsAX/DA1QblmWkNxGyLYZRZBdSWe6UeN1o2Mhs
+ xbG45OiRLTM+6WHGNGMiT2DFcvbKR5REqjkq9U5m4X3DqU7KDH+pFrKgVKkstMJjgqGVvuPfRcUT
+ YEpUNJ+1kvmcl+aMMDkyIbjgExXt4PuqsIXO24rfWWHFWYaEFYHviW+Ix4f/UEsDBBQAAAAIAOZh
+ j1JJ6CaIhgQAAAYKAAAvAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvbXlFeHByZXNzQXBwL3dl
+ Yi5jb25maWe1Vl1v2zYUfQ+Q/3CnlwLBZDbbHobMShA0DmCgzbo46TCsW0BJtMVGIlWSsuwO/e87
+ pGRZzpJhLwuMGKJ5P865596r6cWmKmktjJVaJdHp5HVEQmU6l2qVRI1bxj9GF+fHR9Nv4vj4iPzf
+ XSEtZVot5aox3MGOlrIUhFMjPjfSiJzkkqS0SufhuLE4cppMoyic1UZnwlphKRWFVHnveT5fkDbh
+ a7apDW5MiK5xUmkDR2qpTRUCfktraaU7Oz7qLQvnanvG2Eq6okknma6Y+8RV9qV5ZH0iLC11yipu
+ nTDMmoxZXtWlsOwACmuFN/cnx0dxfO4jTA9unPuQU7uFn2qC2wthQN95l4iniT743EJKyAhRV3ZS
+ 2VyFrFLWAq9uLf/SGMG4yQq5Fuy716ffs9NTdvoDk8oZnTeZjxU7HSOE1dmjcDbGQW8dB3P/W4xY
+ wk64rTe0fIYqwudXZBlckG3qWhtHAVlIuB1+E4qnpciTaMlLKyJiuysFV3kJhfTPPcq5ymXGEZtc
+ wR3+CbKBisknOwiCh3r7E5+m10AqqPOXU7oNVjuhVEANqyE1xOF5TopXIon6SxHV3BV4VLnYwG3k
+ pZsm0UnUm9v91SF/9gTA1IjWIJ19HOMth8ce4JVG8g5cQjBLAVZbiCtIXFhnA9k+TiyVrUXm8JiL
+ tFmt0DljEL37HscNLOY7g4AG3tViqxzfJNHszbvLRWZk7SKyTtfvuz4JvehMI6KRV/hFhbOCGlMm
+ 0Z87Rj6ykMXvH9kfF/sadjz4PM6HntnhvJbGOmqF72krc2GoLQQKY7rqYBhUHtL97VsKAYUva11s
+ Lcpf9pVW4S6rm7SUGagpvZsXSVg4SDN7o8Gsck8w8SB8ctsaF2+7QkUdxs77X7ezX+5ni7uH+9v5
+ 1+i/ALwsS9IBEDAgeZSy4nXdzSSf94FGkZLZUq1R95cRXG3x/RIE8JhLj8IenPd6lqpuXBINMK7n
+ b2c3l+9mX6OO3ruAfG6vQWxESqzQY0l056vPDuOwFwL9G4dD4zxL3Phx6BZ22C6jQfcqleoV5Zj4
+ Xs1bNLYFl+TVLSGNSnDllSPVwDAakUA99gdXfhTUJc/8ulAkx0PJiqxByO2oQ7u2AynoFzgdZ1/I
+ PBdqIVYVavGECiMqvfaTKfyYRMj4CfQXrD3sZ0NO2Si7ERnv+CPiYCqTMAbDAOurRmVEJ7hSLB01
+ yukGDZSPoPo1MfMGlsRGWodAt71lEr3n1t4VRjerouvlfbxdnr/pJpAJLWBvlFTolm76vVtoLKk8
+ zC0w7Ndq42dJ0Dx6tNStf9J1kNDZnpQTakOj516D9gzsVTLOdAlNWVFz7EF4LZEs6WUYAP0OaCU6
+ DVXtrcOIzDB8V/6C9ow4bsarYhzSS+RBqPXZ4AZvCTVfhWBOdy8OENjNz1ezh9nNBzTqWhqtfNlo
+ zY3022vscJjGs26xUbwjyR5MuLRBhTHFewOcgrp+Ge5nyUKI/+UtI5DEadkA847SviJd6L1UUPXp
+ blmOC5REe3c/nXTN3VtBrP98UZmypy80fwNQSwMEFAAAAAgA5mGPUrrgEiLdAAAAQQEAAC0AAABu
+ b2RlanMtZG9jcy1oZWxsby13b3JsZC9teUV4cHJlc3NBcHAvaW5kZXguanNVkE1LAzEQQO8L+x/G
+ gDSFdbfag7BSL156U2zBc8gObSBk4mRalbb/3aRLqc5tZt5jPiyFJLAVibAAxs+dY9STkk+mT3VV
+ V/YMJOQ9ckZKp7WMRnB1rmldLEzSZD3FTOMUFs9wqCvIcam1X+wEl2gG/TCbNXBQLxQEg9ytfyKq
+ HpTgt3TRGxfUqYz+Z2MYtFqi9wQfxH64UQU5/V0xEkteMDJZTCkb+/bt9X0NxyPcz+ePmRyPaL1L
+ ebAu/NUnj62njVbjVcC7EFzYgBmf03edJ2v8lpL0t4Nq4KL/AlBLAwQUAAAACADmYY9SqSLla2AB
+ AADNAgAALgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9SRUFETUUubWSV
+ kbFOAzEMhvdKfQcLFjrc3X4TFRJiAYRAYqgQchNfL9UlDokPBE+P04NSKhY2x/7t77dTVdV8FnFD
+ z/IeqYWMPg40nw0YNqOmczufVRDY0jaXaIuvmE1yUbQtsR2NTBL8GBPtgwpjrDKlV2c0aWlqcRxa
+ OHnoXf7igCXPIUtCoQwI4sI7XNEwMDxyGizcKLjeailG6DjBsgyHpb7up+H1iTLLDvPZ6V59MKEU
+ /gMMR8DVAQseaV3YT2e9SMxt01g2ufbOJM7cSW3YN7v1m4P1qzdaL+qdwVO44CDJrUflbvbW9I5b
+ MgI9KtdyFLIgPcHq+nsy3EYKcM9jUhcXahG4K7PK+X/csIryTnPkyWgHd2bSN4saLnUzz3pJF3RJ
+ j+VnIBNN2CMAXC7v/g3p8KVZgGI0IahDVqWxaM5/tT2deXSDcPt3eQFvTnpA/SW01hWfOMDLSLmE
+ eQJ4T0GynvgTUEsDBBQAAAAIAOZhj1KpscZXZQEAAGcCAAAvAAAAbm9kZWpzLWRvY3MtaGVsbG8t
+ d29ybGQvbXlFeHByZXNzQXBwLy5naXRpZ25vcmVdUstqAzEMvC/sPxhyaQubvfealkIJtKQfELy2
+ 4ijxC0tuyN9XziZp6cWy5NFoRrsLtU6O+s5fzqelxL6LOQwWpupa+tR3fbdQmxoZAyirWfddRnuB
+ S2yBAOwMe8EChlM5q10qCiNxqQEig1UeJ1IOIhTd0umsDmTSt6QOxvevVbuKEJwGqc5sq+uzsnfa
+ SnMvp+RJOI+gkFjHqfq+u9HN3fFsFAOx+i0vpbZNlXPlGfNWxJfoZCgBLIoyRTKnzXzYM+fncXQN
+ cqClSWE0BTRjdEP21Ym7RQO3nDUdhx16oEeZcmm5ikgWhpPeiYi4Q1fFPKYoGJ/McTiRKZj55jZk
+ YRB7GLVY1damSHcdjUlkpOJGnXGcX5d7Dl5GThW9HTfgQdPV/gtkiBaiOd/XhyBfrfFsQ7LVt+xA
+ OWyzNkexTHPjR24StVfyHyijzf7P/tsKc/iH27x+rtUe6QZoAwpkv73XfgBQSwMEFAAAAAgA5mGP
+ UqoMbt1MAAAAYQAAADYAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC9teUV4cHJlc3NBcHAvcGFj
+ a2FnZS1sb2NrLmpzb26r5uVSAAKlvMTcVCUrBaXEggLd4tSisszkVN2M1JycfN3y/KKcFCUdqLqy
+ 1KLizPw8kFIDPQM9Q7hETn5ydlpmTmoYXIEhL1ctLxcAUEsDBBQAAAAIAOZhj1KwNkdSrwAAABoB
+ AAAxAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvbXlFeHByZXNzQXBwL3BhY2thZ2UuanNvbj2O
+ sQ6DIBRFdxP/4YW5Grt2c2uHdrFJZyLPSINAHmibmv57QSyE6d7zbs5aFhAe03xCdgLGra0c0iJ7
+ rEZUylQvQ0qww84JdD1J66XREe/kZBXCOZLwiCTcjMD66cDxrRoMQfuZCaG1Fro0necWJLdPNXVT
+ H3NhSS7cRyVPM/5TFW6120Svl3uG+exHQ1sqezLODD53SdeFck1JSj0nHw90sAWpBb6DM0vEtyzC
+ /wFQSwMEFAAAAAgA5mGPUiAQNdS4AAAAUQEAADEAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC9t
+ eUV4cHJlc3NBcHAvcHJvY2Vzcy5qc29uXY89D4IwEIZ3E//DpbNgHFyYGVhITJx0aRo4sNIP0hbR
+ GP+7JygS3qXNPU/vegAAz/UKhjAjNDL4JgHWW9egY5tJ8IWTbWCTEG+lKfEeX/1MksYHYQr0bJB2
+ f6LR1ciVrT8ogeA6/EMq81IE5JV1WtAQ6n+iRHkepSlkWaI1nGdzehGKC1u2GarctkFa44lO2xGr
+ rFK2Pz60kqbxy6ckdB4P5EhTj39fcmkCuptQbNx//0Ov8ULHG1BLAwQUAAAACADmYY9SXTKUHCkA
+ AAApAAAAJgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvT1JJR19IRUFEBcFJAQAgCATA
+ v2nQBYU4nP0jODMvICWlZamExpxuQZu/DB8GX2wjXx9QSwMEFAAAAAgA5mGPUkBMZ5fKAAAAOwEA
+ ACMAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2NvbmZpZ02Qu27DMAxFZ+srDI8pEnUO
+ kK1Lv8HoQMu0TFQPg6QD5O/LWAia8eIe8R5oDJXxx3WMWxXSyo+lcga9IwvV0t/6T9ctlDDXGS0t
+ kARdNwG/pVQjpMS47NsMimKN8m6FPHKi8iv/KMVigwEEX9DIdluxHypTpDKYzM7J2lV1k6v3kXTd
+ p0uo2QdIdyry/eWL6Zxbc4agpioXi+aKGlZ7/WE64leEWfzpeoQ2JL4N+ZMbJ4Zi9JBBFHk4/uGQ
+ ufUNcl1Gjs/8dq7R7g9QSwMEFAAAAAgA5mGPUitpc6cZAAAAFwAAACEAAABub2RlanMtZG9jcy1o
+ ZWxsby13b3JsZC8uZ2l0L0hFQUQrSk2zUihKTSvWz0hNTCnWz00sLkkt4gIAUEsDBBQAAAAIAOZh
+ j1I3iwcfPwAAAEkAAAAoAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9kZXNjcmlwdGlv
+ bgvNy0vMTU1RKEotyC/OLMkvqrRWSE3JLFEoycgsVkjLzElVUE9JLU4uyiwoyczPU1coyVcA6QDK
+ pyJp0uMCAFBLAwQUAAAACADmYY9SPfM7AqkBAACpAgAAIgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdv
+ cmxkLy5naXQvaW5kZXhz8QxyZmBgYAJijvh2+8uqMgwpMJoBDhqXINhM6YEeT9WXP2pb+P6My7Wo
+ +iZHtdpzsxm49NIzSzLT8/KLUmEqUczTjjXBbh7LfEV2gdJDrjPfzVD1L9A+f5Tl7KHSZQzsPp7O
+ rn7BrjBzgPrBtFVzCA53nZ3jIqXp8b5DRkbijV+r4d19P6tnfWPgDHJ1dPF11ctNYYDpj+9aFyH5
+ ZW8LdnMYXRJNa67MeP3xjuXv8OiTvv9v5m/nncvAkZmXklqhl1UMdE8Xu5D4hfoWGI3dHIbENcd/
+ 2d87G75iw1LnvK6Xx5uyzHL0GQQLEpOzE9NTdXPyk7OBxuXnQdzledQARuNwl5TCMlFtKwHbjzmv
+ pjycYHjqBpOPx0wGHqh5EKMQ4U7YvMBffz256u5P5OXxvf9yCn89/2uDLUZA84ryk1OLi9HNi3S6
+ AKOxm8fFFqtUE//Ode/MhN/CK37acBQvTvlTyMBVnpqkl5yfl5aZDlMZEuQKilZJBgsFA674eepz
+ yp59/1bMsrfmyTWeCxObVH5ujOi3XXV6Tk34lvQJX5rMvvN+n1IMAFBLAwQUAAAACADmYY9SOSjV
+ rQsAAAAJAAAAKwAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvQ09NTUlUX0VESVRNU0cL
+ LUhJLElVMOECAFBLAwQUAAAACADmYY9Shy7n2mYAAABuAAAAJwAAAG5vZGVqcy1kb2NzLWhlbGxv
+ LXdvcmxkLy5naXQvRkVUQ0hfSEVBRCXJMRKDIBAF0Nqcgs7KoIQESG2TY6x/MTATwZGN50+R1z54
+ vjmLB68GxgUfRxjyuAdMPBoO7CZvg/VdtxxUkFS/UZN49KquKons7an1O0v6LlfUTYM+Zy7tNetS
+ OQ7/GQiSa2mXH1BLAwQUAAAACADmYY9SeljpW+4AAADpAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxv
+ LXdvcmxkLy5naXQvb2JqZWN0cy82MS8zNTdjZDQ5OGViZjFkYzM5ZmI1NzViYzk0ZGZmZDk2ZmI3
+ MGQ5ZAHpABb/eAFVkM9uwjAMxnfuU5hIE0HqUlgnIRWxCxdumzZeILQWRLKcLDHdJti7L13hMN/8
+ +fv53578HupFfdd6TgJHkQBriPhxchH1dMins1VRjOWEsceYDYNu2ohW8P1P03pgMEmZ4RRyM5zB
+ +hnOBeS4SeYzOsEt2k4/zuclnNXGsyDLw+47oGpACX5JFcg6Vj957j8YudNqi0QeNpZ6x/A0Udk0
+ GK8LBh8lrxeibzElg9yb15e3HVwusKjr5aoYLzDkUh6rB/sN9oSG/EGr8SCIJ2bHB7DjV5qqIt9a
+ OvokzX2nSrjCvy8yak9QSwMEFAAAAAgA5mGPUvZn2USkAAAAnwAAAE4AAABub2RlanMtZG9jcy1o
+ ZWxsby13b3JsZC8uZ2l0L29iamVjdHMvOWIvZjI4Mjg3NTAwOTM5M2Y4ZDEzNDBjNjVhYWJiMWQ3
+ NGQ1ZjZmMDUBnwBg/3gBnY5bCsIwEEX9zipmA8rMNE0bEBG6BheQzExswT4o0fVbXIKf98DhXFnn
+ earA3J7qbgZaYgmh6cyzFpNG2Zgwx0QhdCqaLXQeidyWdlsqIKHXHHrmhKollxYbC1K8KEsjzFGp
+ zxRdetdx3WFIr8+0wDCmBa7yGzL65f6c0/S6yDrfgAJyPKKe4Iwdojvo8bHaf7Z7bJqqAbsvCM9G
+ o1BLAwQUAAAACADmYY9SXlCB8rUAAACwAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n
+ aXQvb2JqZWN0cy81OC8zYTc1NjU5M2JjZTc2ZTI2YzZjYzc0NGMxOWRmMjljYTc2MjdhMAGwAE//
+ eAGVjl0KwjAQhH3uKfYCyubHJgERpU+Cl9huN1psG4mpBU9v8QY+DAMfDN9wGse+gDZuU7IIkLS2
+ C0gGlXHkY7A2qKANe8vOU7eGg2apnpRlKtCK86KiMEVfu73X1igfqUNt1N7XpkXm1jpb0VzuKUND
+ w7uf4MC/5rudTreR+mHHaTyCqlGvshoDbNEhVitd7xX5e1g1WagILCk/4pAWmF/9dIPzZ84CzfXy
+ BQ7qS4JQSwMEFAAAAAgA5mGPUtDJMYY+AQAAOQEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3Js
+ ZC8uZ2l0L29iamVjdHMvMGIvYWFkZjVkNDhiMmMyNmZmYTdjODgxMDAxMGEyYjA4ODBmNmFjYWQB
+ OQHG/ngBKylKTVUwNjFmMDEAAgW99MySjNIkBo3nuZsjQ7/kCelUnN9V6fnxzvIYLkMDAzMTE7CS
+ zPS8/KJUhkCPp+rLH7UtfH/G5VpUfZOjWu252VBVPp7Orn7BrgyK7AKlh1xnvpuh6l+gff4oy9lD
+ pcugSoJcHV18XfVyUxjmuEhperzvkJGReOPXanh338/qWd+gijLzUlIr9LKKGX5JlcXr/lgqt0/C
+ VJI7WP2pq9PtA1A1BYnJ2Ynpqbo5+cnZQKX5eQxrjv+yv3c2fMWGpc55XS+PN2WZ5eijKoaoU1gm
+ qm0lYPsx59WUhxMMT91g8vGYCVNXlJ+cWlwMUffrrydX3f2JvDy+919O4a/nf22wxQiqrjw1SS85
+ Py8tM50hVqkm/p3r3pkJv4VX/LThKF6c8qcQAP7KiK1QSwMEFAAAAAgA5mGPUtUtMSDuAAAA6QAA
+ AE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNjAvZDkxODkwYjA1ZGQ0
+ NzRmYTVmMmNkZGNjYjkwYTIzMjJkMmE0ZTkB6QAW/3gBnY9BbgMhDEW7nlOwyyodwM4AUVVVSjdd
+ 9BAGzDBSBqIZ0vOXNuoFuvT3f//boa7r0gSAfWobs+ApKoKT0aAiakw2TdEaloEMTko59gQciIYb
+ bVyaUMA2TDpG8BIVakkQNbHyYJ1UACkp5BT0n78nGRmdT5GlY9tB1lpBMDqdIiKC6z0G40D3lusm
+ LnT9Woq4ZCriJfwOIWN5m1dars+hrq9CTVI7rR2iOEoj5dDV/lPj/9HDJ28zC79RCVkcVtp70kHU
+ JHJrt/08jvPS8t3/lI+Pi/aP97HUyMfH5kihLbXswzc89mvlUEsDBBQAAAAIAOZhj1JeQjdEIAEA
+ ABsBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzVmLzllMjc5Yzc2
+ ZTZmN2Y2NzMwNGJkN2NlNGQ2MGNkMDkxODIyNGY5ARsB5P54ASspSk1VMDawZDA0MDAzMVHQS88s
+ yUzPyy9KZQj0eKq+/FHbwvdnXK5F1Tc5qtWemw1V5ePp7OoX7MqgyC5Qesh15rsZqv4F2uePspw9
+ VLoMqiTI1dHF11UvN4VhjouUpsf7DhkZiTd+rYZ39/2snvUNqigzLyW1Qi+rmCHRtObKjNcf71j+
+ Do8+6fv/Zv523rlQNQWJydmJ6am6OfnJ2UCl+XkMa47/sr93NnzFhqXOeV0vjzdlmeXooyqGqFNY
+ JqptJWD7MefVlIcTDE/dYPLxmAlTV5SfnFpcDFH3668nV939ibw8vvdfTuGv539tsMUIqq48NUkv
+ OT8vLTOdIVapJv6d696ZCb+FV/y04ShenPKnEABnOn4pUEsDBBQAAAAIAOZhj1KbBWuQPwEAADoB
+ AABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzMzLzQ0ZjNlMWFlZDk1
+ MzNmYzA4ODEyOGZkZGM2YzNmZDI3Y2M3YjQ0AToBxf54ASspSk1VMDYxZjAxAAIFvfTMkozSJIbF
+ jaxe8hOaNrwQXlNxYyvvXce7D7oMDQzMTEzASjLT8/KLUhkCPZ6qL3/UtvD9GZdrUfVNjmq152ZD
+ Vfl4Orv6BbsyKLILlB5ynfluhqp/gfb5oyxnD5UugyoJcnV08XXVy01hmOMipenxvkNGRuKNX6vh
+ 3X0/q2d9gyrKzEtJrdDLKmZINK25MuP1xzuWv8OjT/r+v5m/nXcuVE1BYnJ2Ynqqbk5+cjZQaX4e
+ w5rjv+zvnQ1fsWGpc17Xy+NNWWY5+qiKIeoUlolqWwnYfsx5NeXhBMNTN5h8PGbC1BXlJ6cWF0PU
+ /frryVV3fyIvj+/9l1P46/lfG2wxgqorT03SS87PS8tMZ4hVqol/57p3ZsJv4RU/bTiKF6f8KQQA
+ qAiMXlBLAwQUAAAACADmYY9SPdfgIHgBAABzAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
+ Ly5naXQvb2JqZWN0cy85Yy80NDFhMjk0OGVmODgxYzFjMThlYzRlODUzMWRkYmVmOTdiOWFmNgFz
+ AYz+eAGVkkFP3DAQhXv2rxjBhT0kuVUip64qoV6gqqjEYYWqiT3ZeBV7jD0B0V/f8QbaLeLCKY5n
+ PN97zx5mHuDz5eWnpmlMwj39kudEPRQMaSYzY9wvult600BkR4eiiwM+YrHZJzEps1usHOv4e8mk
+ 5eO3wZSaQvnRWzKO1nbPsYezn5MvLwBwFDgWyShUAEF8fIZvNM8Md5xnBzfKbA9aSglGzrCtDNjq
+ 3+06uz0zVbo5/9t6ctyYj7Cqv1PW7gQDdzRU7P3FJJJK33WObWmDt5kLj9JaDt3ReKdSX403TzRs
+ WhV3Dl85SvbDog73L7I0uwNZgQnVn+Mk5EAmgt3161T4nijCLS/Zkk5wBDzWSTXyf0pYm8qx540e
+ qyd4tGt/t2nhShMMrAH6qGEGFL0QKEQr9g0ArrY/PgwZ8aHbgGKUKqjmdlVdFfLlv6zuLwL6Wbh/
+ v7yBJy8ToL4GdM5XnTjDw0KlLssKCIGilNb8AWuv+8hQSwMEFAAAAAgA5mGPUhwoF1e4AAAAswAA
+ AE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYTQvMmE1YzBjZjA1OGI4
+ NmRlMmY0NjkwY2YxNjVhZGMxZGYxZWM2OGQBswBM/3gBlY5BasMwEAB79iv2Ay1rSbuKoJSWnAK5
+ 9gHSapWY2FZQ5QTy+ob+oKeBgYGRuixTB2P9S2+qUJxmb0MK0VOiZCxbtTaPYrUEr8TJBcs+DdfY
+ dO2A7EUNZWQmkmw44E4sC3rKTEU07ZwLpgxx6+faYB/n27TCu/xRzm79PC1xmt+kLh8wMpowksMA
+ r+gRh6d97nX9dzh8X3PsCvfaLmWud9h+pvUEX4+tKeyPh1/cFktGUEsDBBQAAAAIAOZhj1ILS/VZ
+ OAAAADMAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2EzLzgxMDU0
+ YTFmOTA4MmIwZTgxM2FjNzhkOGI1MGRkZDQxZGRlMDhhATMAzP94ASspSk1VMDZjMDEAAoXy/KLs
+ tJz88mKGmzw5t9SUXL42ZXySt5/2/Eb5XK0wAEzvEQtQSwMEFAAAAAgA5mGPUphnwlRNAAAASAAA
+ AE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZDkvMGM2Y2RhMjYyMjQ0
+ ZjU4MjY4ZjIxZjNmOTZlN2Q4Nzc5ZDJhNTYBSAC3/3gBKylKTVUwNWUwNDAwMzFRyE0sLkktis/L
+ T0nVLc/MS8kvL9ZNz0jUq8zNYSh+xvJ+qc+xmUc2X2K/dF1C5s/L1XYAvd4Zx1BLAwQUAAAACADm
+ YY9S/lEQgVwAAABXAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9h
+ Yy9jN2ZhM2ZkZWNkNTdhOGIwYTU0MzZlOGFlOWM3ODI2YTM2NmMyZgFXAKj/eAFLyslPUrA0Yqjm
+ UgACpbzE3FQlKwWlxIIC3eLUorLM5FTdjNScnHzd8vyinBQlHYiystSi4sz8PJBKAz0DPUOYeE5+
+ cnZaZk5qGFzekKuWCwCnFhx4UEsDBBQAAAAIAOZhj1K19jm91gAAANEAAABOAAAAbm9kZWpzLWRv
+ Y3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2JlLzc4ZTFmZWNhZjg2NzU4MjQzMThmYWQwMjMx
+ NTg2M2IwY2NiNDc0AdEALv94AaWPwU7DMBBEOecr9gdaORvHzkoI0T+o4AscZ5dGjbORcVqVr8dI
+ XDijOc0cZt5ETWku0LXtU8nMQDQwBR9imASNw457450gWSfWB6zW0SjYbCHzWmD0VU66obcGkcS3
+ FKjrvcPRjL2QpUFksn0T9nLRDKevPTOctg3eOd/myPA86ap1e1ser2mOWT9VyjFqeoHWGSTscLBw
+ MN6YpqaVtvB/e5o3TnpjKJe/LFOl0Ef6OXbXfJVF7xB1lfljz6HMuoJkTb8nzppLWI7fhGxn9FBL
+ AwQUAAAACADmYY9SHsOevyABAAAbAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQv
+ b2JqZWN0cy9kZi85ZjY2MzdlNDJkZmVjM2QyZTIxMGI5YTE2NjdkY2RiZTY3NDAxMQEbAeT+eAEr
+ KUpNVTA2sGQwNDAwMzFR0EvPLMlMz8svSmUI9HiqvvxR28L3Z1yuRdU3OarVnpsNVeXj6ezqF+zK
+ oMguUHrIdea7Gar+Bdrnj7KcPVS6DKokyNXRxddVLzeFYY6LlKbH+w4ZGYk3fq2Gd/f9rJ71Daoo
+ My8ltUIvq5jhXdEW6289r/TZTM8wxt471lgXej0FqqYgMTk7MT1VNyc/ORuoND+PYc3xX/b3zoav
+ 2LDUOa/r5fGmLLMcfVTFEHUKy0S1rQRsP+a8mvJwguGpG0w+HjNh6oryk1OLiyHqfv315Kq7P5GX
+ x/f+yyn89fyvDbYYQdWVpybpJefnpWWmM8Qq1cS/c907M+G38IqfNhzFi1P+FAIAgRV80VBLAwQU
+ AAAACADmYY9SvpA1jz4BAAA5AQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2Jq
+ ZWN0cy9hZS9iNGQ5MGEzMDEzN2E4Zjk0NDkxOTIzYzg0Yzc4YWQ3OGFjOTJjZQE5Acb+eAErKUpN
+ VTA2MWYwMQACBb30zJKM0iSGxY2sXvITmja8EF5TcWMr713Huw+6DA0MzExMwEoy0/Pyi1IZAj2e
+ qi9/1Lbw/RmXa1H1TY5qtedmQ1X5eDq7+gW7MiiyC5Qecp35boaqf4H2+aMsZw+VLoMqCXJ1dPF1
+ 1ctNYZjjIqXp8b5DRkbijV+r4d19P6tnfYMqysxLSa3Qyypm+CVVFq/7Y6ncPglTSe5g9aeuTrcP
+ QNUUJCZnJ6an6ubkJ2cDlebnMaw5/sv+3tnwFRuWOud1vTzelGWWo4+qGKJOYZmotpWA7cecV1Me
+ TjA8dYPJx2MmTF1RfnJqcTFE3a+/nlx19yfy8vjefzmFv57/tcEWI6i68tQkveT8vLTMdIZYpZr4
+ d657Zyb8Fl7x04ajeHHKn0IAYjmJBVBLAwQUAAAACADmYY9Sya9lWj4BAAA5AQAATgAAAG5vZGVq
+ cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9mNC9lZDczOWI5YTc1YjViMjM2M2UzM2Qx
+ YzNlZjk3ZTU2YjQ5MzY3YgE5Acb+eAErKUpNVTA2MWYwMQACBb30zJKM0iQGjee5myNDv+QJ6VSc
+ 31Xp+fHO8hguQwMDMxMTsJLM9Lz8olSGQI+n6ssftS18f8blWlR9k6Na7bnZUFU+ns6ufsGuDIrs
+ AqWHXGe+m6HqX6B9/ijL2UOly6BKglwdXXxd9XJTGOa4SGl6vO+QkZF449dqeHffz+pZ36CKMvNS
+ Uiv0sooZ6nTt7e9xXVwnoTJ3Yolq/e6bpYE6UDUFicnZiempujn5ydlApfl5DGuO/7K/dzZ8xYal
+ znldL483ZZnl6KMqhqhTWCaqbSVg+zHn1ZSHEwxP3WDy8ZgJU1eUn5xaXAxR9+uvJ1fd/Ym8PL73
+ X07hr+d/bbDFCKquPDVJLzk/Ly0znSFWqSb+nevemQm/hVf8tOEoXpzypxAAC5iIxFBLAwQUAAAA
+ CADmYY9SR12PMrgAAACzAAAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0
+ cy9lZS82ZTdmYjk2YmFkNDRmN2ZiNTkzNDg5M2Q2MTQxMWMyY2UwODI2NAGzAEz/eAGVjkFqwzAQ
+ AHv2K/YDLbJ2tcpCKS05FXrtA1byKjGxraDKDfT1Df1BTwMDA5Prus4dPMaH3sygkE0RJYnGkELy
+ yGiI05jRikQLnEiQYxqu2mzrwFYOyEGYyDtSoYiaxSWxoFGEhXwoLDbo3s+1wVGX73mD5/zHfKbt
+ 9bTqvDzlur7AyM7LeHCE8Oiic8Pd3ve6/TscPq+TdoNbbZey1BvsX/N2grefvRkcP95/AZGWSstQ
+ SwMEFAAAAAgA5mGPUhXvVkDuAAAA6QAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0
+ L29iamVjdHMvZWUvNzJiNDNiZjY4Y2VhMmYwNjM1Y2MwMTVkZGVjNjgxN2U1NWQ3NjQB6QAW/3gB
+ VZDPbsIwDMZ37lN4kSaC1KVAD5OK4MKF26aNFwitBZEsJySm2wR796UrHOabP38//9uT30M9rx9a
+ z0ngKBJgBRFPZxdRT4Z8Ml0WxVhOGHuM2TDopo1oBT/+NK0HBpOUGU4hN8MprNZwKSDHXTKf0Qlu
+ 0XZ6MZuVcFEbz4Isz7vvgKoBJfglVSDrWP3kuf9g5E6rLRJ52FjqHcPiUWXTYLwtGHyUvF6IvsWU
+ DHJv3l7fd3C9wryuX5bFeIEhl/JYPdjvsCc05A9ajQdBPDM7PoAdv9JUFfnW0tEnaZ46VcIN/gUu
+ KmpNUEsDBBQAAAAIAOZhj1J/fOhIPgEAADkBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQv
+ LmdpdC9vYmplY3RzL2NmL2JlOTQyMTM1MDYxNjQ5NzRlYmI3MmQ5ZmUxYTVjN2YyZTJlZmYwATkB
+ xv54ASspSk1VMDYxZjAxAAIFvfTMkozSJAaN57mbI0O/5AnpVJzfVen58c7yGC5DAwMzExOwksz0
+ vPyiVIZAj6fqyx+1LXx/xuVaVH2To1rtudlQVT6ezq5+wa4MiuwCpYdcZ76boepfoH3+KMvZQ6XL
+ oEqCXB1dfF31clMY5rhIaXq875CRkXjj12p4d9/P6lnfoIoy81JSK/SyihneFW2x/tbzSp/N9Axj
+ 7L1jjXWh11OgagoSk7MT01N1c/KTs4FK8/MY1hz/ZX/vbPiKDUud87peHm/KMsvRR1UMUaewTFTb
+ SsD2Y86rKQ8nGJ66weTjMROmrig/ObW4GKLu119Prrr7E3l5fO+/nMJfz//aYIsRVF15apJecn5e
+ WmY6Q6xSTfw7170zE34Lr/hpw1G8OOVPIQBeg4quUEsDBBQAAAAIAOZhj1L1PcDi1QAAANAAAABO
+ AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2M4L2QzNzRjNmRmMmMyNzk4
+ ZTBjMmE4YzU5YzFkMDJkOWQ3MTg0OTQ4AdAAL/94AaWPTU7DMBBGWecUc4FW/ncsIURvUMEJHHuG
+ Wo0zkXFaldMTJDas2X6L972XuNbSQUv51BsiWAqofEjeoSNPzmthpuwTmuxEyiLIUSlDYVhjw6UD
+ +UnbbPOYQxqFRk0K0WoM0acpktHGaRlEHOLWL9zg9LU1hNO6wju2W0kIz5kX3r/X+fFaS2r8ydSP
+ iesLSCdUUEZZDQfhhRj2dbft+F/O8IaVbwj98tcl7xb8qD9hd25XmvkOiRcqH1uLvfAC1Lj+Rpy5
+ 9TgfvwFhO2jUUEsDBBQAAAAIAOZhj1JaYeNuJTUAAO02AABcAAAAbm9kZWpzLWRvY3MtaGVsbG8t
+ d29ybGQvLmdpdC9vYmplY3RzL3BhY2svcGFjay1jYTVmMjE4OTA1NTM4ZWQ3M2FlODVkY2IzMDhm
+ ZjY1NzI3MzY1MmIzLnBhY2vNt1N05V/w9nli20bHtq3u2HbSsW3bTk7SsZ2Obbtj27aTzqR/73+9
+ Mzcza25mrbk4V99de9Wp56lP1VYQFpUGAACgXz/BLDr3TJ+EUdsCIYDYlbf4luK5La55fKIiLh5a
+ DySeXbSdEKd2dC+d3vOrZD53bLGt6ixvst6WIyKXCLYlbq/YjFJ1cUQ+NYyaC/3i71hywhM+WdJq
+ ONn5W2kkYL5DITP+uGK0yoRk4khd9R32SWYZHwXLvCHqdxG2e48NUDVKAvdBDXJYReeb9i42m8nQ
+ Qj8ink3XJOmN28P3zJ/iOUg3ZGUV+gBqcBIRZ3FQxnghKu8q1ZmnDgi1GT94ZvePqM5PrPGMSlqW
+ 61uC/gZrpMoq9uXV1O9ubz3vKxDE/l5mZJBFQ9GzMbUOGnc4pvU99pJ6Y38Rmh+zlB4N1+avJ08V
+ CfF9XplSkqxoo0KlpqsA0K5EK5Lr+WsOQk9jdCkKmYMC86v4YeSEvFX2txbffBBTVTgN28oaobbk
+ lNEkHctVqgG7MoEHioJaNEr3N4eENY/p4m6eo6Nz5JtGNasFUFflZL/0tj82IV9b0QZp/cp9D3dd
+ kQG8vMVsiCCO+O6TcwfkkfErtFaRz02YHsboWXcOGWcMrCmk67p2/dh2InAcikFnN62o/kDr2J1a
+ bEyvrfbzYYx39OnZku5ybldO6dWpnUf7orNtYbmwhQ5BvpppGlg3DG0W38VFaZBn7hBzaKlDTjj8
+ aYasekaCCk1nJo0/uldte1fx41C/qqxG9Yq1yiatxzcy6/rp3bTfZAF2S4P3ZxNxeHO/PteAv+00
+ 5p2Qgc5dLJQYb2CYwLVyIP2XVRLHE/OZAOJP3uKprCaNBNBkCgv8C8QC8RIQeAQbIDAj0vio4C+v
+ Jx50JYcM8hv1beoN0SCwmnTfkUkxy2AXkn4M//HXyh9hXvgWJFyuDB1BupGfqgvxpzRvJCFjl400
+ Ad8KfA5Iyq9kIk6OmxCBYkgfk4Dusjvb0GOqfj04ntS0I0vTFYgVfG0mz0qRrEtdcVuSUbJbtVd5
+ MGc1V6f9ADRtbXG+YbM4tRNaZFJCKC2FdA8EFzlJWmxFroQY16lsw+54X9j8W2HSHH2E4/6KYdXl
+ zGHQvB7QWb8OJDJk+pwkJw7I1o4wyVicYPMZ11e2S6s2CzhIlM6zvSp18ZwrpB1mrmJB+97yeFJ+
+ R+qDXZ5ffEKa0gMy+n5c7vXZ0nILjjablZmFTcSg9jStoPEtK/PleD8ryOKI4jhgzfrDx9UjmGbF
+ OjYSvIGVoijLmpOVa+IQGysMpDjbIjPODUm763cwohOXe1Kuqjt2vi9pi/JKh9s4WpjNt4AZoaMw
+ ZZVX3PadyR/De+HjPdEaetgDjG1GvJaaeEutFL7eNcOzV5Tog5Ypjy3WvPmS2+EZBvKvuHg5gu45
+ 99AWdy2jZ16WhJe1mcmH7QQcYO9U3z87NKmtCJdJjC9/C77sp9aQXeeaJAx519bwK1r1G2lXRIE5
+ uW6csKD1isCYtHdYeSqq8mTGxNUzCyhv4LhmucnKvZ2rgtbsvPyR9OP4ZXfux0gRwokLAxnYauF1
+ ZyHrB/oUuGOY+h9dZJMymAChV++R6+mwqNBM9Wsr4CiGuujoJp3CP4TGl4x6TmuubNeMS65OsswO
+ ufmNDODtpxyLzeYznKRsorQ4lOiBv6xjHedyeYy5zdKzJH04fqsB1gJDJCwknJIdqi08Tf1WdX79
+ 0oLcWW9wzD6a31fiiCzH8+9/pWkPfGiFkL8/Wzp6NOmo2+Gxag94ePBRyxZnP2RdZd/qXWdyVlZH
+ ERNSY1dNEbBwwgxE6OGNWgAGlXSvjvs11jHWHKF6v+E68AuCa9vBuXZh7fqgtne3gpPZt6NKMVEg
+ DqFEgL6CxM1HjFZo6t5PgkN9hjrU3vqcL3w4pOj8AY97SNQ7H2GuzagmYxq9PhIWJZ/YDHRvPlrv
+ 5L9XTqDoK81088jSAEF/o+Lj6A1W/H7Ea9PaHRw3LHW87CoCMyCYyyMjtePZyBjmsJetxEYQS75K
+ iKkqubG09FqYgDGGAscUd/hbekT1xRyerqSEWY0sN7FIN02XsxMt24DbF10rxy5ZRHnVhUVvtTfz
+ dXTJrbH2Xl2ihG5IY73BjZC/WNYpJAK8/IOlqa4OWTz/eGHvu/6Rj2akgfAsFTC+IP1oeS2FZdQJ
+ YsitxGK2zcU4TVcMSHaiC2pb92BrwnHKo+W6D4azZuyBe4+N6lkhycuxCzCx63/wT6o9fMrqq6oW
+ PVNGiWhwyCG/1llvUHqdm0DA+mSgIPdJgIE0wmLcXNdUfgcFXqwVJ/7nEOm4fCFA8JdDun6pIuOe
+ /zRl9acHo6ICJW0ubveYIObp8H5/dXF9alnhUaV5oUlR+RpAxOhOhTSw+kzgHtX7Tgnf+lpgTVIj
+ dnXGG/iO4qGxZm+LoWRSULCwFBJM6hRUE+wzpH/k15VPwYjehQDNMoBWoDivt+ugSfpSswEuC/5Y
+ rxdn5R54X8Nn7nD9VtonB1NVH3ElOVteMAA8j86CZhYZGJ5IBTt9r/LAbxeg+nAlCqn318juczBS
+ ekYV4vmGHky7CappEfPcZnyun6qn2wkEensVZ/6PS//8Q1at0zElX4ipQYvWS95zwfqquq7ZVVMV
+ Hms0x5+tFs6uVU86N9C2lZ+dAEywTnc1J+l7xboPsrhvk0VdRKtvo+k6ydj12qAvF23OPDjqEUfZ
+ LgXpF+oHRTPJwKocPMKG2Eftfro4tFbzI+wlnVj1eRyticBz+wbBoemfDz1ikYNeO2ov202VVdYN
+ t9Fc7hznD+YPLuyXzEiVG7Ea9n2ltr7pZVuymJe65GeLn32a85YRTvDD95Go+NWzTzI3jYRvWQC5
+ 91RwB2OxqrzMP8FAq9ZF0LL6sToBWgWezErRv78pE9qqhskIhgZTaIYbCmZWJD/6ZQAd+gwp7BJc
+ rhIr3dKHCJCseEWGaQN048dyye91XAM+Hm7fGcIGNfhwm3Bm/2z2TO9VAPTuoIz6cqZ/N78/GQdO
+ LTvZyGOfjDLeoq/aAVncM12+HPKL6Z9DYKU7G0TWDH6VNGgvkJFJ1/1Mig+WteUAmkEbTBzenLVf
+ lDe7MrDiTmYKUHNBoQ8zm6kcRe+phFFIy5orDB/Os7hbGu0zzc27lDaoXNeDzxeH88AUFUMghBp/
+ b3YORtmHiVKWUP42GDrK9dk+rLVbCJPfFmMTjB+lnWGsxdWojLsmWZ4Os0QQYxiCyGIHDn3MveeD
+ 2IdUcgEgPPvL+lEZpcHmkzR25aD8CfjDhDyUYbq8LczKJvtifiYixdBTGT8NBhZ3JHH96PyWjsFC
+ tOxnq/nrQRyS0Hf8wfQvaqUpLfJrPfnKJcdmjh4IbMu97TnqbiyMZvuZR6abPfNmCxwt48OSG907
+ HMlo/VWSR8vAJjOPafujJuspg9MwU4c9RPAb8k0TAlPmLM0vI1XtAU/L7wWSLMFsxK5cOPWRD39p
+ HrNCFK7CXHizESlMzNKf8xV7qjNfLs1Lo6jJ1BuXSsIc+4NHU7/vEHzv332x9xP8yeK3NVyu6WPA
+ PVXP6eLpEtmFTQFXDJhrfqsel0+oyaeTomyX1LaeWk11T/jBEzh7uY2rpq772HyD8rpgqsaOXu2V
+ rOPWaPoM+wfpLRpqL1J//dLkRiqkMmllXQHMxcymUC2nyVJ1bBTolSed/3YgYWAv4hjqdrBA2x8F
+ KoUToycGNtm8Ha2h0tLV5Rn1fYUc+6St58hFcru2jXHUhXBU2UaOTlW89ag0xlVs5lUSRP7sIoIq
+ Z6LjYH9rINk/KjrIlSvLf3ujxwumSwisML9M2BevHLJXUdokU1BIHGc1WCobsOLfJtnCFVQHpd/5
+ R6X7A/Rb57Pmv5nlkjCa+OW3r404JFZSEU37h7UqaxkK/JB7L9zQmixoLXY9Nrjr+0O6TLWkftur
+ aqdyVKqTkCK6gwSzGT45tiXdTK6UbJCy7kFEKHqSBe6QgqX5OC1IqTCG5VCyJY8KTqRMpTEEdfww
+ nRS27Dx4Ge6eTn7nyCnm+d0P78WAYgy73rNr9iuHt+xUtu6/4ae3lP40LM79TM4QHdEz7nQ+syxY
+ u8r2TswXOO5Vp6mcS/pXFgx12R/fpX81jCtf31Km7nkKaLRbIbtXy7vuLL7sosb3dNaTRiGPU/w0
+ tjGtpFyub17UmWZwZ89dbEdDleePa5FFoZVdxS7o4ht/PdCpmRRWJjdwdLEStJ3ZERPBw0nTwVk9
+ Aj3Mz9Dfr9Slf//egXgzbLtDOEGYP8MkiymgFFt3ofvWFA9wHXAi7GlhLxl3VdLiPSzhhBg7io1U
+ dBYZyOntXe8Hht8hYHmrZmdV3teYp7rmeXVJGZwulWBQlPtWpvvVvfXOGljVDD3WZpjQbvY6s74C
+ Ubu732qZlQNHe63w69DFZwo0FenJ/5whes5Xhtd/qIVSXpVl+Ci7/XpAKXfig4ErUqTcpOK6QLxM
+ 4ks9tdE/8cmMNuEG/nSkAyHHxjudKw7QudT4obkq817UqHlNi7PevyMgb+/WYWDy11x0Mst5rv2Q
+ Y5lvVxPbN3iPE6aD4MOL4uNj4kbw7wdwnpMZgw8yH9KE4K4JNA3R2wlU9u9fPHyL5Zdkzi+rKK/Z
+ rgoh+zTP+y0TEXdtw8VmlFvJRJMAwUX9Oy48lzh/L51XIzyfnbH5lM1PjeMTWMRKOE39kKO2R5gc
+ GPmdOV+M2Tsiyw5XksparJVY3JZCNsA8tKyIO2BB30u2cDEa3JKc8WPOJax472cmqowznuJkrc4S
+ E3VeaKBWOiuiWulU6Ygwn/N8w7YXedef6fIfXGh0KUgwFb6ADVx5tklCbQZsi9RiajBtDCUlxECR
+ KW34rqXouUPvzy8A2d34DdVRoIlDSuQcTAYygdb00ob3EweubZg+/lL3B63uk+aD7qQOtttcA3WS
+ F5Th3JwdlXbaiPFwD4mf6EfuO5PTs93dMCUiWKlJc6t3e6VSB5AaGWK/L269Ln3Q2JCxbBZceJsU
+ Q2bCWHSfhd1dvnhrwRTIGWvOiwGbbfBtVmKZZ7hg/8BcJR0/uAdz8g9saOlCXblZeTJQMmghF28J
+ ioE2OkK2O85xlPPLAuWhIoq0p7IAeLDu6d83T367xe17oCzd8Gwax93bwbGjt64DfWngzta96WqP
+ 6Bo0df7YOGs2UBKtxl5cyOqD0FNe60E4aurJyCC6YelyKCr1lE57GMg/JQl0OC8FYXSpnGkbHL2M
+ Vz+ubORMiOUwuSoCDu8AVqoc3M+LCEoLmoOU7BM30vr5xmQzM1dOmQJP9k2UD7XTYO1VV+P16RFB
+ eqg3hf4l9OIqL7fWmC+frjIR2Hm5BTrolZCBUgrzAPbJ1h/x76II36eC863NB9tAQLXMxGUhsPui
+ aF7TyUcBpxrCQn2nDR/Jns/FA/3fdFZJuWEiWsC5D+5RvpbZXUVVGOmBfn1DVQt+y5DI11Rll2UD
+ MqqryH1GvjYlvrFS/I/Uwp8qSGtpu1ij1iReOV/vNJfEUccCIeT/nvQYhBFFmqTnMGAi/iHLDZpt
+ M85BgFp2hMSHh29xNawuo5FYmmGRMhIwIGIJ7pXk0EYgoiSKeaAoZJqJsIH5xchoEBE/tpWrpaks
+ sInDKRWUu7LEdIgNSWjrgKSyaCaayawId6hSteWOoyMM9BC/CkdH7UHWSig2oPXOdsy8aqKSm0R/
+ 1epbaH9C8qFjyCaQ1ASmQejQtVBWwQ1BQ7j2ZqIELBUXFbb7dh5BtEcfC5p5pCGJI+p1Df+2XoLK
+ Iwissnp7tSXS9uOG4rLHi/5fG9VIuIACY1oTDp7VgZJUL5nSU/HZsoPuBjAHwmLo1VjH48lTtKJr
+ mVE2CqxKvzzyLlymbbrkblNFCiIuJ6R6wrNirJLQtC8dS37laAfYpoHR56ISWuC3G9QYNjR15L8T
+ 8b0l7Shh4ywLp6WDiHzmSGf4iOUxs2eheSLNOoFhEo3hTco72o3oztSbi6F47fXcocenhZsHX72c
+ 0tDuXaNmsaTGlrm5Yt+RaNu5EbHZaT0D7cJpHAGx3qu/YkeuQlqxaWp44y5KlLzWsDF5QSpbtVHP
+ bp5Cl4C4d9XVE7gT07gMl2F7JF19Zp2hTTf/sFe9wYiTfTzGxv07xaS7xbT/8vDlQEbCpCsuJOWI
+ qy8jjtEYR7HAPXnNR0ckRu7wAd0XHBb2zl0qsFx9i+u6uDWp/+On6cu4H+XQ4E8DevoM/HgKRlzQ
+ 7BQZy9uN+FrDQQyyZIyTFP/afphvfgDNvIMEoOg/pmnHrfIg+8bNf243CxATk3AqNaqiMezUBZug
+ aWxPOlD0CqEa8/5e0d8SWnClzTLWvH3+ZTfkVL8PGDkpk4j2Ks7SMqBgdlVaiFaeWxQmtyhPDyZz
+ lY+zCTFEDBFz3eqpXRwG1IYqj7O9OuRzu4o27KlcrOHOZC07qkCo3yo4NvSIQ+769x0OVIroO91I
+ vyYo90krFteJjr3zzspsuKpIL6jMq8mqquKylSiBfhdISaKR0I9KBONdEmShQVJ9FzTFGQefVHjr
+ 6kgQRPhT/xndV0bUMvNqct+DUZj76zr8qG2zx0V90xJTfxkSSa+j1YcLd7xiqoRzSZZiruxsNSCO
+ UX7qzcZ/q0CLcPOojtAUdrcs7yBpI0R7D4+3xgFZ4KZ/e1Jewq4/T/dc6/EXY4G4xgTFVBPQK+Kq
+ RsZYtdqV+WSluTNwTIqBszNCQJ+XfWN/wrGZz+ihstubp7euur+1nnNx7Wjl0vu43TkyKwmWkx8P
+ As1vA5YPAidqw5OOQP11mMpRzLIl6SZXSdWtvvmUP3ZpeOFs36XnHAXxIq2lyK1e05ZoXI+py92R
+ DoNsbyVwUr7KXo6zPrUaknCuwufq9pQoZhTRXXP+lYGqyqqrg+6dyYh5Q1xTMS7rctJgtWEUtK/k
+ QaGl86/p2eEO7cWO+IDE38pGbox+K8G1hgmI/fdjO6yM1nZ3rkpOVulGFlYj2ltZ4a1z1fAU/a9U
+ +z8vgbegHh5F4qGRLCDOEAzmmt7+BwGRW0yo5Pmo5OThu/Vi4OqgyNRRDZ7mdpPg7N5CaZGJSfHA
+ 8SlK8jZeZC4zM6GYeSBZd/rkA+MDHM+P0YE0W07qiON31hFdqtWU492nSFEs1kXMnprk92/NdsjN
+ rPEXYZw/Vp+CY3cJe4bDkcueP6azrMiwkTOUkEu3ZhpiF4WJ6v4qwyXfsnyHT0KbynVCRwANMQdF
+ QYAbh1owgQ8hPuhHz8HF2BMiDggE9Ik7Ujo802WQ+pUu+XDG2Wf4H7+Dp+oZLaUjumdmRUnD9jGh
+ A564xR8DO94zsJBR1j0j2K4GIa2VZsOXmvV6N5j6o6fomPeR61gtETMjRmgIUDoie1m1phWLMgOn
+ jKKyzuIJG90AP0pLZKQU64aQJ61jnpDjFbW/m4t5xxW5eBzZRLR7J9MwngzXKNlZSXZe0Mc5WZ6p
+ 0pTQL1P7p1H+Aez+tsIJ+lwXJ0skyo7TcfKIZHz2kojPQv96J0fzyw8wIYu9vUemUKH0WvHqz8Jk
+ ifViKChf8ZxJB6NBDTNcbqEh5xfiTXZwckcILT13HWWvJXS4DWledsAPwYMlHn17jB2gKeeQqjM1
+ kODnshGrVQ9GcCvsmMuyQMgfCi39APnrPlBLMoCZRWUCjI9WQuBl/hmmB93qtNgWKZVtFGi2QrG6
+ 46K3s9/lBFxyWiG/eMBNst5R0z/iw6jW1ckGXPzBNfaq2tGzKCov0D3MJO8dz2QM2bmvyPpcKOeU
+ VA+oCgZICkSd41yyPaNjjexdGE9HEHKO2Xr2lEsNe3f0iYuEXxMqY3cDQu3N7VO/5HCJEv6SAxlw
+ 5TPoKySZ0WAhNBCUi4TMd1WMR98k0bQW1N18vLLGNFHKJGruuKT43SaOmzKNL2RiphWb3lSrVnpk
+ 0+BBZKcENKHKuJwAbwzSRhREVs7Fvqq+qQnB6A2BRudeD5zBJHDvjbmC+Lzhc8YQNzG59edGMctF
+ 7+syz5HP79/MvUDLxrncMdAS4Wm43kvNYP29N3u8+64/OVWo2S4IOxN7GttaP88FqdO+V6WjfBko
+ TtsSjBle/LMT1oZ4MPa7rxBViMhTnoajGTEaVExo/IbbKvn9lSPD0R4wEkAynDiXQr4tBlHG5DaR
+ ZEZWzf+SrRXH3QZVto6gRddrHEliYvkD3bKXWhLjVAYfSGUafXBq3uxB5Y3o07vkvim2M/u69ayR
+ VmyMt7G5qrFFIrMwHPmCv7Nf/3SZe2ZE8Tm/8deAxfA3iHwdR9AJwx+XSqHy+1f+pm++JwZ3jp+b
+ iHQ9RrOIkx+A09+aGSn/Ja9rGfpV7i3+Qb1cooihASHqEJGrhHOkxlLaUakXW/0TlFcO+Il+DePQ
+ eJZbkQQ+Y9RpVEmqhZBDLkjJZPHihGK2zKIbQ6Y3LeYlnpnECmkdI0RUo3tfOsXw39f4K615Oo9F
+ CAIN/DvKfhy215G3UFdvkbLtkfwKT5zXJO3UYdwm7g4ntnbtNabv095UYjL2HOKXHzcbDwBNTkjl
+ 0vLFqhQ0BSTtOOkaxIGj4umPv3i+ILbgWt+B/zWu4j+nQHw6ReoIeaxRWICRBm7zc4wWY65KGIl1
+ dA5+e74xwD5spMkfrTt3Ck62QZYIA0ecYAIrqnaaCoUeP+1VbSoWpWDxOi0LowTiD8T2YmNJXJEG
+ JaKA5O+qt6eV1xT53ld1YJW9ot8hMZzhW3mkrsfWVprJDhXcMfHfg4DlurZPVY3muA1SS85Kpxd7
+ /JrHggX7zpGM8ZVbdK/UABN28JVP5PqjiuzsuywpaeT2ZJL8NWW6tZvFL3JZzfsTXQj9nv4eJu+t
+ BljoQ/NkMg7T/eN1AEa8EzhCbAMJnIlJdEY7nHqlLFewA3REuIq9ASmwd9QbTtiTU0RJanVVUKDW
+ TaKfqderBiQrLFdEYpfYJtGTCTulJPaJI4VGT/oD3e6ApyByGOg3fucY2WhN3tyukUqZF31XQFjV
+ nJ+mNnbZxFCyeC3f6fWdXyR4zCpzwHDnwtUFmTxqr0zW63mGUK/rMfJvUNp49IUvPcxRlTy57Uew
+ B8NH4zy3y1ahu5VAwpcINuPa/0QQmvmsNuIwkFztgCUNzLXtgZApVq6KKxygXt1Yg3j22NGhnvD/
+ IUEbNcRViKy1mBAWsNzUyzHkuaiHwq4hq8EFE2ygOIjpdQF5X1W3qtmk+BbrqRbddQI9+Ueda5we
+ i2u/rofZL1vHQNrqfEsa9T2xDG0csQEmyyoTCYRjjFZV0bdTIiElR4J7GqWJGis7e/wvz5hN7APs
+ X+sFk1NFbIpCKL3Wrm6nVxCKInGx/yWPtNwXViGeuEPc6mGf0dysg5GhIwho5f6c2MqzSO0m7JmD
+ l1ASO4C4yheVq0eFs8RmpqB3uFBhjpoP5+KQRpAw8dSd6Yb7OA2SWqmOgp+Qgkeq4RlAGeBoaqNe
+ j0pc2WDVSl8fhW0rIiGuCPVtWtj1RBHJEEWIwz1yzO44BXkROCnWtHqXN3v/Kir9LtW955Feuk9f
+ 4vndw0OpGA6FTuhP+ULn4qRwWpnai9lmhzR3FC5sNVv5XOCag4sSd9mdyrDP8+g/eUgvoBiWNJve
+ 2Ot1mlJZbS6o7jLXtBlYObdslSx5/0cey/5/8vjVGHEosCbi8xMnC+WdQLb537gnc8mSFURLdr55
+ gnx02FdzoDDFZqXgIy0maBgF2d5yvQwYLePJJMExFP+hny+kWmZ2QhYsjKfWJGKGQkUj/zMCxWuf
+ PMENdWK+YGVzrbgGmfPgkgb5fXPvfj1ylhHJB8UHinVgv+op/DoUpHbv1X2inFdw+rUx1p6ucdRx
+ Sy5Ns+Zs+Wo7p+pNj0IpIOQ5jGF2K7vxHeRtSxwvDemfQopSoszIgK/m7vRPLJTkAKEWyXv6sajr
+ vdwS11LUsUbrCfYZGoCjPYEMmYIrEpkX4l1OWJtbqCYvY/NT5lvcUKdJ89NgDqQDNEnavIJnVJFn
+ 71Qey6MwN0U5HVng+evGpkuv+BKIus+6ey/cKGPHVEyqb9ky6wmf6I/GFA2px+v9Ga8n4yPToc8J
+ gukNxOd2f+rl1WOwTffuk50uEKEmWfYLCH8K98y3qecAh8Cy0JCiBM06k/wQhwzhSOG6dHHH/JAQ
+ i/IAzXyHjHRDpUiP8jwLR8tE4dUBjW+YaN/g+iOSqlKEGgKrA1oDQLDUTfVMJU2NYkUcfaXKRRwl
+ LB2bbE0JsQAoSHjWGajumY2Twoh9xF8q+sgzY/0G0TIlZh6qgtvrQwMQ0EXQIxTB2dkV3EDbbu1+
+ agGFPTfgYAlqI/ZHC2L7qNmWv9HYkJ8KKzPVaurstIowtglr4wYy0xnBK7URE3idFRBGh1f+0Uys
+ dtAmcAqwgiWv4VZroefr57cjZ8IvITrSXULKbk4ZX51qvb71boxTGZ5sJpGnjO+sLUVPDAwiJsnQ
+ LVGh/azY0jlUSfLqc7uHbPQ0YvyflG2D/hmPvwQIh+4Bed6rhOGyJp4sLs8EdKhFZ2IxTViDYh9D
+ afOJ+rRShPh5jsyrKBga4YkWIhlSGTOAMiqfJQfmUrxSeKzV6/FT3udqMPcBpcoEixtZyxB/BhIG
+ 7bWX3XGeG6ulWOE22zhkrZj2fb8APGT6YPJl/gOpO1Z3fLO69djVr6G7bGp4ObRDB/DWy0s6DCkA
+ jzeX2Vao9dD9OvmUYZnI2yEhXwhpcJYN755ZNCEMK0KC7L/T+S9njthi5JlqrYZzwJWsHEx67t2l
+ PnJW7sVnfwm/GTSHlvSoieFVvuiwSAAr3OzkN880sikx62Jxoqr+Inu7goi+2mOL9B0exzBdgvyn
+ /D0FP7/JqktDUWaIAWTSyvNFrbuyxtLDT3InXwz6ObSufTzDIhHIOjJ3EFXFcVtQZviOI1pSB+of
+ 7V5XGOVSGEq0ryBUv4DII9K1ygNbS5ABq9Koa3s37nV/1nYVxbnVvunTLLFxAdvTzIvmRa48i+OF
+ eEUlFrbBR7FyoLfBa2EQ6FJcF8JmnUd+VFGOgMsNMxU8xufhwBxVCOTRC+J7AgW6lm5V4HG5qFWa
+ wZcavBxdOziVqFHSr+F5iNP5nkoJVWYzatTQiE/MHPfnu5zLs8CvN93RUr//QW3pCWSrs0x/dCQr
+ r5nbh3Dsm0llW4EMFXkUjdm4U4IDkZaBnO4nEespwrUjaL4Z7LVnhiLMQep10+NKrlyW8CJkMNcu
+ 5cQ4S6R5qsMiwWua4FJnEcD4WWwIUvQyOs+0UbGXoKRT3hp2XEwgxgTN4gSGURdkXSPfDZqLGutD
+ U10v5tKX8biwzHoVMXuvKQ6MyOjW0jaO85tQ+0b5GeBqp6/t87P/xauVZgLBcl1QqXume2y/W9I9
+ U1d50naXCblL/ZQ3mqtRab7zahJcuVJ2d4T5whE+gkQvBHuluNSum1Uy15KcbP/G248VESDEwPaz
+ iVmUKQ4pDkkjYD5LsJPfFSU7w2zEZk/XPizcxc+1K3YRgbHnlXCoGLAJvico8+b4jSpGcAX5N5K1
+ /5R7/WdwQU2Y+So44ia2PZR52yqRLOiMML9338qzP6A5rpHg3D4YF5eNhdnI6zw+ylvHyg55RoQg
+ 0Mo6pvBP26Ejiyj+ZG/vI0WP8jk8XTlOrTthipbyE1oRgT+u7ZN9Y61T2g+L/GYEFPLl+fu01PX1
+ ai+vunr43hIUmegffjDY4daU9o5V/H+6cZSzGd82QxkCFlE//6LWYpdyTQnkiXVnhhm8rhDPakQz
+ S3zecnMkzqeH4h/VQpTr8Lq9Zo9OTSFiCea24ARU9TPHrn7KoJWJAIPOvNyKCmPwtKRB+q/WRNg5
+ 5r2eDIes59awdcTOkvC0Jl+sTu5Ujy29ybxY5VEWHA4fpt2zM4PD4/oX+bfB8Ir8hrq66Tt3FEYb
+ fc0ig0pzVW5lK59hMSv77kgD3PI4HStAeNFp7xH3cTVqgwTzNch7PlMj1TF+sN9EdEyAD8MpFq64
+ kkeqa5C2xD9rQr9zxWuOK7oconWQDmVWOAd9b0JP/9P+00gbThf5TYvGQIGlSLxtEhjoWCGl6cBW
+ J3Ipgm4VosR3FOIrbFEJ4tcPpoKXalLIiVJHH6r4E0tJ8zLZfcN8ecR6sLZl/ziBnlXgxHCIzZhU
+ 3mDQ8XHse7JYOTfNg5zpjk9/mdwYvF8ZZl2uShldQ59xYF5K196W+CCagZQKW05j4ktm2mE0EzcL
+ Scs2GsbF9lv575CptcgtTcNBzdBgjICrCLvw4bDPnRDzqG4id5CUBH67r9YPdSP7G0SOabtta0Yj
+ IqJrrqoYsTOAjKrPeIwatqw+//f11fNDTLeNe8xKMC4JZz2h/3bAPkr3+++S9daTnzwe1vxgv+J5
+ wMMCSKU5AuEhB4bTchzCib7JSP1RCPUsGkS8q2+G9uILzEa6UyO7qSvH12QIak4H4lLTh4x1POLQ
+ 2uhfLze2bNdSQcXhVFJLPQ7r1crrm1LPwVQJWc2PKKI6E9OLdH7gwz/BfDsvnaapVRPNNQUeeNJu
+ sRSS+E7rUGte5A7FvpRTGRZEQYxBC5zG9oaXQEdzGdUAfmvyv+PNAp1U/Y2SaSTSKqDahfcPl5wI
+ Dnuf5cxfnlxAsBjpsT/I9jKJ+GShjgg9qDzAg/0VW7zBokGbay7gAoi/hu20d2qjnrp6WloFMTM/
+ e1dhHfGCVB4XczMxZUoaLSUzYyc6lY714HhRRXxaTmKGKryRCXkqOSYllglmMqAR46AkmSJNKJlM
+ LQWzqA+nLQICom2wTNwkfVSoN1klPHXinY8Woig+esKolB8WTRXD+d0/9MwEgxbQSFV4gEXNFQiv
+ YA9+G0gCeUwNMgnRmpRm1ZcfA7eHne7eCmB/4FttQvvCd3yvJSgzcujVG/qcEHNfRuODgsaMNOOm
+ llbeUTwBGzLLyc8G+lU3u93TvNaD6SfmzwHFCVCvBHBag3c+dwn+sqdR5xW2y9vMhLgRiNJWh2i1
+ 649EC12CiVlM7hKRPXQ1Ky52hSl6Fv1zCE5zqA+unGZ7pWl0iIKJJkEYVSSpa+029Mq40+aJD0pj
+ /IZVA2hwogHDFuWQ0vlGXdLUWXpm7okVA76MpbRm+szp698afPS/artgBNLS23Y500EzhHirhmz8
+ kZhfW8B4fSW3XAIyEbzGZreQykMq3qG49swUupHdM9lj+ZECmdDF3XwHpc1IWtpqT3LhKKYQfIIz
+ ZjlqIGKCP20Fj/Gu+K8OrTGCjTOmRxh6WhobRbUO/B+CpdJfjX/AuI4BhTjjG/RwCU70ptRIdL5B
+ 10D39UNbbyLiyy+YQ7dtiUBnNf45OqhrIm01LrNZPdRxlHY8EHh117qGVnWfZ5DctJsOvB2UD1Wi
+ gmKZiu5SWZkPsZUWRuSnJHIg4BO2DNgyGEf9re71AJUcIjfYgP7F+7hOxD4m+GC37L4xmShsDR63
+ YyWYCJhUKssN1Awu1UQl5N0NmI8UzyAoP7McBMD1Si+xhMi3IEmY35vLkPRr0+sYak3Z9HwCP2hu
+ MATXTxP2O3JBCfD4hiHMG9gdTU4FJXvWELEw2zrQCT1MKjFJSOi6IcU9CIuof2rms68vxus9705x
+ SIdScFalher432mDqEpQz+lvaklarpsyXU/tcGuQLewt4NGNFvjADg51y6O9XA69ghniKhG1ZoJ8
+ bVJqinZrHMi+TzUtN0VCTOmTTWEk9ajgMWDY5nUMcjzwZ2oKqDa1CT9iCitbRD/fBJTqrO1GHxuI
+ fxBHuj1tuG1tWLjeqKg3JCxSFyi78vhM/jhdR5eqUV58Vb3lb+fKmeiSSoQJyXlT4h6L0StzsQoJ
+ w6hSIYcpUfs7Q0MLp0SrNGahPLC3uDOCV1dV7L6okSR9VFggkyqF1bk3aCQ5NOR3VzK025d8jEvZ
+ WHtdoD60yLy51KAo91IvaafuudXCOrU0lmbDMSk7+UGZdzd98Y1I4bqSBacm5G7W0czpUmxDZfam
+ gM+dMsiDK51s9OUnC6+nT6w9a3NInGfkL2mL3lWPAeTlvCcQFTEwJugW17lVDB7QMfcwPtmjgaNF
+ KQZrvfKY/a0OgY/UnOzbuauW2c2M/EnRwoFf4CiZo0RFbjCIkGdkGWFuMEaSnBjVHvkLrPgovn6Q
+ I8eBOmtsQ56wmuIdG89SlgmqdT9WpFTkWHb7Y5SO8wNpXodJBkMYVBiQgd7UfH9/OCaEnlBylgsN
+ kIYl+TOjCyTNt9NSrUlUZPFYFsJXEDAEo4gLa82zmPQTSMRckxO6kORsp0DUmlLzGgY1rulvBBwN
+ H5upuWJqDBFzAC+yQ9er4e297KFjKsmWz3NLqCxOOqLIwrAjZqsTWoeNSepdOyVy8LeJMpGo1/sM
+ atuJ0AKcOtctGbOVOPycnFonqiz5vh3J3lXbRS27bzYlXmT10Z9mpM2v0ph0X7U893wL1Re83mIY
+ mn2AB0c/StpDr0lxyebBWV0qE9E6lYpwXO6iOH7l+Xln/5RqxIYTuZKsHZavLurj0jH+i6NCBVGt
+ fPuw6D2N0GhiC9u+/MOBh5Qm672pt7O9S6BSvubp42jjvSTs5fbvXv/GLtzb9DpDRaTMBMR1AB5E
+ pfjcfRKlkAAq+fYyPTvkgi/K+wLmp74QEigcBqp92HCQd4qtVk4dc8DZ4NrLxcHkO9yZRWccN+M6
+ O7RJ4QEuQUrdm4KDL3qIINHhVgte+z5OH2KOa1ZvnJax4ISeiVR3Pugc3w+3qL8uBvGByRgNCtJ5
+ QSrJhB7iwyjQw7bIPM7eyhF8laCypwbXXOnN4c0bzUZbBtugVSBpUL+lVdGVGA/aID+H4TU0f8li
+ C9zojvk/cu0d2Yi2TYf8uuGv5ofi3EUhYbKX1IryHZayVIBdqahIpJWveiwWL0B/g+8HBYa9xe4n
+ ORIKX0L2J3eiTW2kLTacsTyeYVsDnqMsvvlR8S0KixedHLtqFBT1nlLvaoCWGco2GaqJORQg0c6F
+ UM6JdWbG6GQqYHm1Qjs6mW1Xqkna0kCPjEoYNPdaQOT+VKsdDtvZpHZGP+XSGAYBGldX90OgjVz3
+ EV76B4ULoxEVbWbG6P2+xauNre04+dqAS9eIag6JjpqvZuLwTGIQB/NjftOcF4L57RVmPa1FJhKI
+ XpoHm9CfRsLwY2+jdyDg2XIypir9ZcyBTyAWrsCEuTrGj0T5Fgcq3GjW/uGmkZF8kfVhP/tkbwfu
+ 8Xev3njo89HhFiu1mejyFC4e97/JG/r/p8nb7ydBoccA8MbnLa5FdwfRjZtEDGRCDr7iGwytR+4E
+ mufDcPJvQ6BNI9ApKa+aNucmXF82veuc195Nnk8gB/jVYtIPfQ8PaYT59lA3UChcJHPLUVjuzmqM
+ 4Sg5y2PhnAu3ohViD0PMBwrNqWz4amTALNlIMtJFQPJzUYSZssaCH5VRcs351+Win3QdFsO9w/yO
+ o9aLVEZJ4stDV36+U0zeH/I0chyORm3yefmyhE4OmYOjrC693OkSH89rLEoTHbmJtb/45+CtBjOb
+ sErqzzdvmMZsEoKpF5oxpcjuIKxsTEyszIp/pKfpRmWmxxmlTKDv3cu73hXX+p7MdKrFFzi5yxey
+ f9lAKx7snZyfYp2PbdO7qGrlXMWtHFUPUtQf4r13lWmcIqqi7p8e756Vp/3q+/1zMul5VDZsml/z
+ +l5xu1f0znd8/zyYZmxCWrLqzziNaelcY3P3sItDVvDYegR5+UO7XSrkqdACOhmFGWVxCajqwREz
+ FR3aQhPq7w/gneVYP0xoiS3Ti/tEcBntmLwcPUNo6dvDUlLF5V8xPcKtN8aS66W7bo5lI3BV9eyM
+ wrTMnLTU9CnkChW0zymXq4ngrT5a31V7dEa5F2VogM+B+dQliL+be+aZwalBBjK5o7pIR/BFaZJg
+ wWyCD2z6hAMvBdaq7MQvCECWEBxKPuL/JxUymJwYaHi/j432SxLg4Cmtzipi7KvDKqdiZSRvFGGs
+ AAr3nU7ePd9Z0uHeNIYR+v1ysMk4tgZmBA7snw/cq+SWv/OFFk2nqZ8ebHnXK39mPNd18Q4Tkr0N
+ CE/SUP0/VghA3amZ/PX/Vd0zQQgBO5+7ILsg8b7o1yGXNMuzV9kRvRzu+J4r+XErqCkJiQofRMhc
+ /+2Z8uNy/UzIHUe0mNKl1eiZIkg/yjxLW+4hA//6p1hrSy+uVnLuzNxeLUdw/W7OWllJx6Hv1yTr
+ w8TeghouxTLRp+NUZTdlIYkbSWcoPcGu2l4LPtkTymoRaqNilszSL8Sm2kFlUIXw+Au465Wzj2ta
+ QqpQRcB6QP8Rv395jaHYmAsuWBSxyaMkuPKWg122ZBm3CbXsgxTNWV5Ia6Y8gK3h2DOS158MP2uu
+ l62PZN/Z9+H50VJ2iDjUnkzvws04y0CJQBiDRFl1KNUDllCAppH+2iS7J2r2wU1mYeel2k/3F0Kj
+ 3SxyB8Tf3D1zbaghy6IPcvH6PT8zOUIbD6cVICAGmXAFlc78D0vrU2NVFRXj46qJ+vHp1uwJinTs
+ /2jExszfuByZJi0srE5CW0tXy9VKVZ8L3jc9Li85SXN48E8TalmGAGqnShp6KVV7OioFaDl6mnEZ
+ OXFMRHlZUEkQlwD6vYPV65yEiDQ4gLM8mcklSCju/7Yoi8fBqyQvhpwfk2F0t+3k7W0UrujrUoRH
+ PWCUGmFoDypD9l9u779CtP9DJlk3MeuKJWmBxk85Iz1PCyNPy1oMxrTAwGoRNSNNIwdHRVNhGEZ1
+ YUVfKQtHGJmx2vIGKtXe2lwhEq7GUjpWbgxNLj52GDLViXGIJv//zT6ERJKi/69wIdpKw2/MuJTT
+ T2BNQje8Npjk/REnjGFyWFSodmyCwTp/srq2tdfWIidicjmAuvC6wSkN5pJrCYuaVI82pxxQfnuH
+ jZ4aYakNs+w74cF+sAPer8wJ9OYz7ZvHOKAswcQSnf94PRtVdfMjZYy7+khTfj570cezZg4sp5WX
+ nZWempYelzELVy2P8DtqczPts9vBELThisQqeacGB2St/VS9gAwDc8/0GljuZcubOhQ9463CS9uc
+ PuMzVyNRdnFS/JTNKwuFhDSloICFiBhdiTgp89QcfPGAj0jzJbqYPsukJ2DST7nI6+KZfqe8RHOz
+ KBVeSC2hOCE/OioyKWYdoFkY6Hba4GXdab6OzOHAH4xS/osOClCeYZi/BHH/Hwf8lhEzTC9tSvG/
+ GM5UVyaUY+JzCRodNj4c0PUF1KPBzx2C+5N+9bMEoPUzHDQcNN6Xz5deUHATdqYamywrwZncr33F
+ RZGOmYmJg42N2N7Q2MrQzITB0snOFkBcjEHLg8x/Y32avBPPPLYMKvMjPaFNLjsOz/YAPNzz61Jx
+ QNsXJP5d+n8HCYr/udjNxIjB2M7W1MIMoEvqrX8p3plu8IZW+sIH7VTw891Bb4hI+RA0ht89k3fE
+ GWjRp4wjxwBBpTD21SOqdUoKdfXsc/XzrCq7mc9bMIBBAVioM5AIr391fw536ONOgGTVDT16SttE
+ 98yj0E25Vqv3DLzQAVTdwtu3/ZvI8YJIfcTIg26CgyGasvg6QN4WIJCrjDl4vj7fns1fzfh1o3Px
+ L/MmIHirfZgXANhE02sBtwjb9YKMJ6YhssUeaDhiRiqWyQpszUMTOFriooEfLKQeXg4nowtVC8sT
+ MvGZQYahXncw8K6Q48njedtme6t/iLVq0puug1ejPcE/H/5Ok3UbFW+PDYYPVY9Jo0+xR11XShQ7
+ zOtl5dPow211vPh7C33iCoWTjlnFe+7TUBSmX3TN1Rdm/FL91LWGkqi0SYXki8r2/5vKbf+oTDGS
+ 7BBmlT53eUo9fwOHKeA8ujWakEh1gIxkdglC/z9n2/7XWYTHTXgc9LrPjnqN/m2mJLGRJT7dr7ML
+ 2IgadpEi/4Et5v8KNhBmIsiQU1Dcf1+cwyxEOkQcffUcfOXK9eR820ITvxvpScmZ6rWJKFgaWlg6
+ RCQWPwyMtAMUrZGmzkD8qb6iBluiHPpYEmSn230ex+pVhqY1KiuHJrWNCAv2v/pmH+baOoHmn9YN
+ YRZ9bsU89RGfmSDfyCESvsLN/s/wNhwiIlgf1XbGh0u19YxiU+YrSogSQBckIrltgsV/4Wlf4ak8
+ rPx7XxcA6Owh7k9BgrD/+QLISSJVKGtyVwS00rdjkZR0YBb8dN16gQ8CAHIH4LKsCn/+R0V/i70+
+ rv8QRlADVvPzy3/jd5nbMABwAEhCMah75v9LoCEAoOOQscf0SSIglGOXeI51x5niHtUpOZTq/w9Q
+ SwMEFAAAAAgA5mGPUioldayrBwAAFAsAAFsAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0
+ L29iamVjdHMvcGFjay9wYWNrLWNhNWYyMTg5MDU1MzhlZDczYWU4NWRjYjMwOGZmNjU3MjczNjUy
+ YjMuaWR4ndZ5NNTrHwfwMU0SxtjGMCjriMKgxjpkuUkmiqsFMygkEbqUkDVbumMtayTbKOpK1ohr
+ uxlSCE1ijDi2GHtlyO85v+MPx+He2/2e8zrf5zzf83zO8/3r/V73Nr8IgUCgkP/2sO0AumHXBhiw
+ e5M92+DYwd5tcG6D6ydwbwP+N3i2QOyAbwv+fyC4CRIQ+geonyS8CXoHYhvEd7Bvw35AchtSgPQm
+ MoDsNjA/QQ44AChscmiD4t9QApR3gN1EZQvVLdT+g8PbOALgtlDfRGMLzR1obaG9DR0A/y/obkMP
+ vjzILSL4fL2m9FzjEDbR6HWfDlGgUembhdZwES/evjeD0cL7QF0jGfkUmc9Lt5mEwjmrHxqLSznb
+ 1FujBPi0Jmq6jq5cm5S1k5uT754OxQprfRmze4uBHbC71fB5OaX3PjK9VvTXPY2Bsf7+TrOPXByd
+ ZeOdegJiRVtCBCXjLYNvXFpM0W0t8y6rmrwnkY88qMWLn3ObTGLEqVA/QAnHUzGvk7wir6R2z0zK
+ v5/jEtL1bqW3HlwNdExeSXBB+DHIfjUWBPLqeiCWtqZwXEMqeWzvJb3Yot9n3UfiSrV3QaEFbZUu
+ PxLmQo7KFqcpC8Jqj+LP33pNRqzyFaGn0pc+IIZdk9HGGeO9nV+C9i3T+yp7LpjfylpQVDdF94gq
+ 86ziFu7kHE7LwrJokj7Gp4+PyhUMR2Qz2416rYNC9TG3OtJPv2x9iY/+IzA/adGZT8FjgDp6FWKF
+ uG80TiMtzvOkDTrh/4D6B/2wJkoF2M38UptqzxKgfNfh+C3HcdWLmIA29yjILrve331HX8bH62a+
+ Xal9MCyR2ayhqrPo9mX+pIWs5rcXBIcuVnPs1eh00VNZsuwMZTnurBHjy6gEozS283NW1782IAtE
+ kdQ3IhE+32Ji3J+t6pgGTailolk/UqgjnL5ypzg+YNb4Phni+0fUPVPGZYhhvidK7syUPHM6Xivi
+ Zes/GymmWR4XqKinN8jZ+VRY5kG8t2zQS5rP6UOBKXMM/iUMHT3zkVQUGiZkOuJJDcYpQsboeTT+
+ cYyon/20vH8c/kGETGmXbe8SDYpGc+4aW6YbtkN4o6y5tDo9CrCnnUZLbr4ZmryWkbsWjWml6MG5
+ XahRJPacZdE+hu0UIvp7lqVo5tqAvkKwV2Hg7cDst63K5HLtHitRch7JMHghmLQ3YojYdSNWKIo2
+ c4INxdTR6+90HfJJlZkeToBVywZdJVZn7a47q8u9jmzvk65ILHyWUCXRNnuYza5PGzaxiIFcWkrB
+ H6K2ua5LnUgqmkcpqKFiWDVBOe1TuVOfF4XqHKxTJn2YF+XLHfVzi0bsEkMbO0Yejg6f/rMhkyXm
+ VpXXHXllEHkinDKw5A23pi0j3BZ+yxsruKnkQftSpdyLyid/ahm6SCBR1FsaSJ/0lafbT6HNPJin
+ PvgWl1EeFX7M97LRSfKWlpyuYT2zO3Jl5nETr7WR6+swxqv1DstwmbMMz3aFEnFrPocOiHZ2DsSm
+ Q8uEnF3RRHg+FkOo3Q+7aZeSI43hgnur20oZVEr7XXKp5VxtjGL/FfZXJOrCSfOWl/wZ0kN1nMiK
+ h6tyOBV+5GMH+YY6vpNL8dh4GGs0xuhKtNtDcbMh7saQ3ReF/Jofi4Qfm5hcKxZ/rG4Z824KDdHN
+ VbxLsY+zlay9kwn/HXKthyzc/eKJkG5Ak0lmSWbvlPde7upezaFwQ60I+6dvRcRwF4oTglmeXz+m
+ GIzkTaQqDS+U1E0/2fNO2szh3oAwypu92cCcTarplcTlXaTKRC9dhgBHpPq5Hx7N4Y2XY8ISlQqZ
+ 1IkxfdoToqIF5awNaaVB7i5xrPS52NS+89coJOxz9us6VYnOuO+dpm+iZsNnFD50MTOj/8T5ivnR
+ HsXS+O/NkU1cWiWEup0Vi6EdTvP3LExyl1fWTDgD6fFw7pP0iSREEGIK+0J1fWqkKGS19W60fVgF
+ 44pP00zdZJqkNyqpieVk1Z/WmZnMphk/z3LuWTDoKw9FvBI0MW4eRA8ydKIyTAzpCJHgwIYwJTGH
+ Yr9is/Xj3N2f6dq8N9rKE87yfQkiRKzY5+ZGKUoTxiLU+Cq14JYUD7n8+9U4RMjeoJm0LvMX/nXw
+ p4exqfksf74ztarpUkbrggQpplkf0Taj3r2MGiXwtj6uvqiKZ+i2iVubC5S9MPP9sCcPjAQnwMUN
+ b5sf8IFTA9azmJ+nKwyO4bGarYo+a02HBPBccPe1y/WQRjEuZWMoZ5zV++eymImkQTVJpivhiMuZ
+ umu8ZyR8s+4QV9KzpXUE2h0beO1xBzVW30vNct6wBpFEAQaACyCO0kA0toM3EQAdAHMM7JNB7FuC
+ mgQyX/ohiH53EGW/gKgHvWt/HqgS70Bk9oGILge1zhWcA/MOg36xH3QB5SxQY14AoHvIOoJvRuAb
+ OI+7DYGILoK51SAqm8AadDAEHazB3EMgz9jvgrUHiOZOEOFUsNcP+X8ng5uA+4AMFcoHM0BvVAGz
+ UOcgEBE3cA/Ql1QMQM0EOcrxFFQZK1A96sF5cAfVN6Bege6CBXcRKwb/9R3UAwrVTjJ6tyW5T2uc
+ 2IaNXT4rh7MoLTO95FfZcKDtKz+jDT8+1QfbF8D+P1BLAwQUAAAACADmYY9SQR6qpKAAAACbAAAA
+ TgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8xZi84MmM0ZTZjZjA4MzUy
+ ZjJmOGQ0NWJkOTY5OWVmYjcxMzM1MTE3YgGbAGT/eAGdjlsKwjAUBf3OKu4GlJvbJI0gInQlJy9b
+ 6IuSun6DS/DnwBwYmLgty1RJxF7qkTNxAFKxyfggUVwp6KP3mlkzJLD3XBwiktpx5LUSis2wxjI4
+ owTtXIIY16zQpkH2znmtFc46bgcNmD/TSsOIlR7xB3E06+u9YJpvcVuepB3LXbRIR1fumVV7W2PN
+ /9nq3BNqpk59AWeJR0VQSwMEFAAAAAgA5mGPUgI3WvLgAQAA2wEAAE4AAABub2RlanMtZG9jcy1o
+ ZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNzMvZTYwNGVmYTU0Y2M2OTljNGIzZDIwN2QyZDcxODFj
+ ZmNlOWFiM2UB2wEk/ngBfVPJbtswEO1ZXzFACvgSSlG8NNbJKQK0lxYBcugxoKSxxUQWCQ5po03z
+ 7x2Ssgq7QH3wIj++TU91r2tYl/MPV/CgG4KttuA6hPtf3iL8wBrujSF4QNPrnyAbp/RQQeecoaoo
+ dsp1vs4bvS/igeKItWS8aCM+u4Jvmmm+KPfVM1M8nTQi/D9ESYmybJB7rGD22au+BTm0kKjhu24x
+ fyFgOXD63G8FA/8rjmpo9ZHErpOzLGPfGYDx1IVPgNrKoemQ0i8Be0kObZa96Dpeq4OiYMUxTMJZ
+ P5AIFZzIe+mQXGSMb0zC1cSvAjwx/9gaFazWvGrvNiepYENASviEDryZYh3QElcdeeCCh9B5I0LE
+ zaEcEUe+E0k1kMb4IwWXV97k5SIvZxE7Wkuqg9mDGsjJvr+GmPg6ljxlAuDEFfweZZj674mzawxL
+ BCCE2gpjkXBIvURHfCxAAvE54szPbBza5R1N1qciwjgvtrY53I5+YhUwmeOBiHFE/64iWAsv6rU7
+ oYzVrY9TPamG2dS9oo5j6a3qeZAf396AsLHoKI9b5sfkCe1BNfj8mMCPCfvcypu7T7iqV3KxXSxw
+ ebcsV826XCznt8v1vG3h/X0ya2TzKnfMn2d/AHOuHFxQSwMEFAAAAAgA5mGPUnE/ZZO1AAAAsAAA
+ AE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvODAvYjJkMGMyNTYyN2Rj
+ NDk5MGVlZDliZGZkMGUwODExOWVkMGUyNWQBsABP/3gBlY5bCsIwEEX97ipmA0qaSfMAEaVfgpuY
+ SadabBuJqYKrt7gDvw5cONwT0zQNBTS6Tcki0BvpHAYO5BpuWKNFQezqiNIHJ41lE9A6rh6UZS4Q
+ 2SpyyvSixUePpDWy04FZ+2jE1x2uhqeKlnJLGVoaX8MM+/hjvJn5eJ1oGHcxTQeordKhXh8a2Cqn
+ VLWua16Rv8WqzUJF4J3yvR/TG5bnMF/h9FmyQHs5fwEy2Uu5UEsDBBQAAAAIAOZhj1Kh+mme3wEA
+ ANoBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzc0L2NlYTZkZjJi
+ MzYwZTE3MWViNWRlMGQwZDBiMGUxMWVjZmUzZjVjAdoBJf54AX1Ty27bMBDsWV+xQAr4EkqRE9uJ
+ Tk4RoL20CJBDjgFFrS0mskhoSRttmn/vkpRV2AXqgx/ycF4a1Z2p4a68/nQBD0YRbMwArkW4/+UH
+ hGes4d5agge0nfkJUjlt+gpa5yxVRbHVrvV1rsyuiAeKA9aS8aKJ+OwCvhum+ardN89M8XTSiPD/
+ ECUlyrJe7rCC2RevuwZk30Cihh+mwfyVgOXAmVO/FfT8rzjovjEHEttWzrKMfWcA1lMbPgHqQfaq
+ RUq/BOwkORyy7NXU8VodFAUrjmESbvA9iVDBkbyTDslFxvjGJFxN/CrAE/OPrVHBaurNeLc+SgUb
+ AlLCJ3Tg7RRrjwNx1ZEHzngInbciRFzvyxFx4DuRVANpjD9ScHnlVV7e5OUsYkdrSbW3O9A9Odl1
+ lxATX8aSp0wAnLiC36MMU/89cXKNYYkAhNAbYQck7FMv0REfC5BAfIo48TMbh3Z+R5P1qYgwzrOt
+ rffz0U+sAiZzPBAxjujfVQRr4UWdcUeUHUzj41SPqmE2daep5Vhmozse5Of3dyBUAzrK45b5MXnC
+ Ya8Vvjwm8GPCvixvb1cLucLFcrm6mV9dy/quWTYK54tSqQVu4ONjMmulepNb5s+zP3PMHMBQSwME
+ FAAAAAgA5mGPUl9QMjA5AAAANAAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i
+ amVjdHMvMjgvZTc2ZGIzNTk1NWY0NmUxMjJjNzhjZmJhNzk0OWYxZGNhNzVjMGEBNADL/3gBKylK
+ TVUwNmMwMQAChfL8ouy0nPzyYoZVlyb9WvT0e8j6bafXu55qPLCqNfQTAHrBFLtQSwMEFAAAAAgA
+ 5mGPUjgZl+84AAAAMwAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMv
+ NGMvN2RiNTAzMmNmNDVmYmE2ZWMwMjI3Yjc1OWM5ZDBjODA4MTk3ZGMBMwDM/3gBKylKTVUwNmMw
+ MQAChfL8ouy0nPzyYoZ7Zww1fuzkUzjhs99+wsG8ijUyZ9gAVEkRAVBLAwQUAAAACADmYY9S11lM
+ V64CAACpAgAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8yMS8wNzEw
+ NzVjMjQ1OTllZTk4MjU0ZjcwMmJjZmM1MDRjZGMyNzVhNgGpAlb9eAFdU0uPmzAQ7nl/xSinXQlt
+ tT300JsDzsYqYGScTXPk4QRXBEe22Wj/fccm2aqNkCLGM99rTDuaFl5evn/7AvgrmIRcd2py6uEh
+ FFJz+bD6NHh47J6g0J01zhw91u3F2MZrMz0DGUeITQ6scsq+q/55Ga+UPWvnsAu0g0FZ1X7AyTaT
+ V30CR6sUmCN0Q2NPKgFvoJk+4KKswwHT+kZPejpBAx3KiHqw2w8IFURcG6twoIfGOdPpBjGhN918
+ VpOPyuCoR+Xg0Q8KVvVtYvUUiXrVjBFRT4io4H4MV+0HM/vgxFvdBYcJ6Kkb5z5ouR+P+qxvLGF8
+ sR8B0cXs0E3QnMDZ9PoY/lW0eJnbUbshgV4H+Hb22OlCMYaeBD9fjQWnxkUeomj0EH3/VRn7Ql6Y
+ Feq4ReZC5TqY87+OtIu6jrOdkBpDwq7eYISR+bfqfKgEF0czjuYabHZm6nXw7n4sm5R43LTmXUVf
+ y5WYjEfZcQVxKVHMsu3bkRsavButugWI3Bg3lqKguzV0O7fO46XQzQh4rSLv/5ZvN0puKdR8I/dE
+ UGA1VIK/sYxmsCI1vq8S2DO55TsJ2CFIKQ/AN0DKA/xkZZYA/VUJWtfARdTAiipnFOusTPNdxspX
+ WONsyfE7YPg1ILDkEEhvcIzi7AYKKtItopM1y5k8JBFsw2QZsDdcAIGKCMnSXU4EVDtR8ZqijAyh
+ S1ZuBDLRgpbyGZmxBvQNX6DekjwPdBGP7NCJCFoh5dVBsNethC3PM4rFNUWFZJ3ThQ4NpjlhRQIZ
+ KchrUCmAI9LiM7QuSmG/paEceAk+qWS8DJZSXkqBrwk6FvJzfM9qmgARrA7hbAQvFrMhYpxCFgTC
+ 2ZIuSCH+GNjnlrAlBLjDAO6aIKMkRzxcWflp9z7w8AfO2WoDUEsDBBQAAAAIAOZhj1J8IHppTQAA
+ AEgAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzIxL2RhYzM1NWJi
+ MzdkOGEwYmUyMDQ5ODVmNzE5MmUwZGMyYzMwYTRmAUgAt/94ASspSk1VMDVlMDQwMDMxUchNLC5J
+ LdLNy09J1S3PzEvJLy/WTc9I1KvMzWEoObfsvrYZn7jc1nu8vNx8gm/+2ccAAJDIFcVQSwMEFAAA
+ AAgA5mGPUmRK9TS4AAAAswAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVj
+ dHMvNmUvZjgzNjU5NjQ0MjA0YTk0NzNhYzkwYjllNWE3OTk2OTQyNWY2OWUBswBM/3gBlY5NasMw
+ EEaz9inmAg36lwUhtGRV6DYHGI1GjoltBVWuoaePyQ2y+ngPHnxU5nlsoLQ/tMoM2XDyOsSA3kYb
+ lXaatU6SNOfg2bpognY+dg+svDRAo9CSoCxsH3uXWGXjws7SWUwkU5ZMrk8dru1WKlxw+hsXONFr
+ 6WaWz2HGcTpSmc8gnVBBWtsH+BBeiG63+73Gb4fd9ZGwMWyl3vNUNlh/x2WAr/+1Mlx+vp+NK0xk
+ UEsDBBQAAAAIAOZhj1IYzOjsoQAAAJwAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp
+ dC9vYmplY3RzLzAxLzA0ZGI2ODIyYTBkZGZiZjUwM2U2Y2Y0Y2QyYzNjMjI5ZDE4YjE5AZwAY/94
+ AZ2OWwrCMBBF/c4qsgElmcQ8QEToSmYmE1voi5K6foNL8PNcOJfD27JMTQO4SztEdCkxM5hMwcfq
+ g2PLcMeSsNosZGOtOVmiqHY8ZG2aKRiMxlcBSZwc9ieKkIkgsZdkiyOfEyo827gdesD5M616GHHV
+ D/4Bj359vRec5htvy1PbYCD3BMj6aqIxqq+9scl/tjr3gk3UF3FDRnpQSwMEFAAAAAgA5mGPUgv+
+ 5my5AAAAtAAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvMDYvN2Nl
+ MjVkMDY2NTVjZDI2OTA4YzM2YzA3NWQ2NWZjZWI4NDQ5MmYBtABL/3gBlY5BasMwEEW79inmAikj
+ yZIyUEqCV4FscwBJM05MbCsocgw5fUxv0NV/PHjwU56moYI2/qsWEehbYW8oUvA22qiNM2IMq2Sk
+ Jy/WxZaM87F5hCJzhT1GzZi0ddpzaolQhClyzyi4V4pkA225CUu95QJdGF/DDD/pb9OtnQ/XKQzj
+ d8rTLyiHmpRVSsEOPWKz2e1elX+HzeXBoQqsudz7Ma+wPIf5Csf3UgS68+kDRdtL31BLAwQUAAAA
+ CADmYY9SVfMDvB8BAAAaAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0
+ cy85OS84ZTlhN2FjYWRmMjA2MjNlNTA3NmYyOTQ2ZjQ3YTJlNTA2OWJmMgEaAeX+eAErKUpNVTA2
+ sGQwNDAwMzFR0EvPLMlMz8svSmUI9HiqvvxR28L3Z1yuRdU3OarVnpsNVeXj6ezqF+zKoMguUHrI
+ dea7Gar+Bdrnj7KcPVS6DKokyNXRxddVLzeFYY6LlKbH+w4ZGYk3fq2Gd/f9rJ71DaooMy8ltUIv
+ q5jhl1RZvO6PpXL7JEwluYPVn7o63T4AVVOQmJydmJ6qm5OfnA1Ump/HsOb4L/t7Z8NXbFjqnNf1
+ 8nhTllmOPqpiiDqFZaLaVgK2H3NeTXk4wfDUDSYfj5kwdUX5yanFxRB1v/56ctXdn8jL43v/5RT+
+ ev7XBluMoOrKU5P0kvPz0jLTGWKVauLfue6dmfBbeMVPG47ixSl/CgEha3rQUEsDBBQAAAAIAOZh
+ j1IpopOGIAEAABsBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2Rk
+ Lzc5YzIwOWI2NDdmNDYzYzFjMjVhZDhhZjE5ZWIxN2ZmOTgxYmI3ARsB5P54ASspSk1VMDawZDA0
+ MDAzMVHQS88syUzPyy9KZQj0eKq+/FHbwvdnXK5F1Tc5qtWemw1V5ePp7OoX7MqgyC5Qesh15rsZ
+ qv4F2uePspw9VLoMqiTI1dHF11UvN4VhjouUpsf7DhkZiTd+rYZ39/2snvUNqigzLyW1Qi+rmMFx
+ 0oK3lS9nHrklI7PX5Az318Lts7ZC1RQkJmcnpqfq5uQnZwOV5ucxrDn+y/7e2fAVG5Y653W9PN6U
+ ZZajj6oYok5hmai2lYDtx5xXUx5OMDx1g8nHYyZMXVF+cmpxMUTdr7+eXHX3J/Ly+N5/OYW/nv+1
+ wRYjqLry1CS95Py8tMx0hlilmvh3rntnJvwWXvHThqN4ccqfQgAXN320UEsDBBQAAAAIAOZhj1Jx
+ FsVMTQAAAEgAAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2FhL2Qy
+ OTJmYWEyZTVmNzU0YWZiNmNiYWY0NWNhODFjMGFhODU1NWYyAUgAt/94ASspSk1VMDVlMDQwMDMx
+ UchNLC5JLYrPy09J1S3PzEvJLy/WTc9I1KvMzWHoKz98f+6xZqWOx9yal5+yBp1/XDQDALngGUlQ
+ SwMEFAAAAAgA5mGPUgTLF0HtAAAA6AAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0
+ L29iamVjdHMvYWYvNWVhNTQ1MGEwZWFmYjE2NmRhMjQ2YTdjYjZhNzZkYWU4NjY4MTEB6AAX/3gB
+ nU9LTsMwEGWdU3jXVcj4b1cIIZUNCw7hz0wcqbGrxOX8BCouwG7em3mfSW1dl86kdE99Q2SJInol
+ uNRguFHeKozRiuwJedDJkkCBRDDcwoa1Mx9JOOGsBvDSS3KZSwXJ6BBi5NmqrMkQ6L97RIOWojcx
+ ZKXoGLWXynmZDVecJ5EQnDBqCPde2sYu4fq1VHYpobKX9AtSUfVtXsNyfU5tfWXcgPCCcw5sBAsw
+ HOzxU8f/qYdP3GZkcQs1FXZaw344nVgjVnq/7edpmpde7vEnfHo02j/ep9oyjo/NGFJfWt2HbwXk
+ a5tQSwMEFAAAAAgA5mGPUqvAvCDYAAAA0wAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u
+ Z2l0L29iamVjdHMvYjcvYjdiNmYzODU0MDIyOWY3MTlhOTM1NzYyYjBiNWY5NDk4ZmZkNDUB0wAs
+ /3gBlY/RacQwEETz7Sq2gRxaS7ZkCCEmDQRSwWq1OouzLCPkO5Lq46SDfA0MzJsZLjmnBr1zT62K
+ QLRmQu/00IvyOkSPYWIanTVKC3l0gmbw1nY7VdkaoO4FLXrmSFHxgGE0YdBOkaDXJwMHQyymo6Mt
+ pcI7rfe0wQv/KS9me7tmSuuFS34FHFU/9RqVhWdllepO95zX5N/Bbg4Bzr5jD9QE2iIw7zt8Sr0n
+ Fgiyr+Ur/z54lHqLa3kAly2m61GppbJBrCXD/H1UgY9SG62XH0XQXxVQSwMEFAAAAAgA5mGPUon+
+ aDpMAAAARwAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZGUvY2Mz
+ MTI4ZjhiOTBlMjBjODRjYmYzZjkwYzE2ZTc4YWMxY2NjMDYBRwC4/3gBKylKTVUwNWUwNDAwMzFR
+ yE0sLkktis/LT0nVLc/MS8kvL9ZNz0jUq8zNYZBlUt3AqSMU7HpA+I08180jX7IZswGAYxVTUEsD
+ BBQAAAAIAOZhj1J9Cl6iPgEAADkBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9v
+ YmplY3RzL2U2L2QxYTM1NzIzMWQ0MjRmOGY2ZDg3ZTBjYTc0NjExOWViYTNlY2FhATkBxv54ASsp
+ Sk1VMDYxZjAxAAIFvfTMkozSJIb6RwvmLY3YG3a7YuX8156LIr6WTyoxNDAwMzEBK8lMz8svSmUI
+ 9HiqvvxR28L3Z1yuRdU3OarVnpsNVeXj6ezqF+zKoMguUHrIdea7Gar+Bdrnj7KcPVS6DKokyNXR
+ xddVLzeFYY6LlKbH+w4ZGYk3fq2Gd/f9rJ71DaooMy8ltUIvq5jhl1RZvO6PpXL7JEwluYPVn7o6
+ 3T4AVVOQmJydmJ6qm5OfnA1Ump/HsOb4L/t7Z8NXbFjqnNf18nhTllmOPqpiiDqFZaLaVgK2H3Ne
+ TXk4wfDUDSYfj5kwdUX5yanFxRB1v/56ctXdn8jL43v/5RT+ev7XBluMoOrKU5P0kvPz0jLTGWKV
+ auLfue6dmfBbeMVPG47ixSl/CgFFPYp9UEsDBBQAAAAIAOZhj1KxYrW+OAAAADMAAABOAAAAbm9k
+ ZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2YwL2FhZDEwNjBmZmU4M2FiMzVhMDll
+ YzhkZDJiZTBkYmQzOTliMmZjATMAzP94ASspSk1VMDZjMDEAAoXy/KLstJz88mKGDycWZ0fdCjII
+ Oi4h7/EzaUXki83lAFfVEb5QSwMEFAAAAAgA5mGPUvO185ZoAAAAYwAAAE4AAABub2RlanMtZG9j
+ cy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZjAvYzhhMzZiNWFkYTUyMzA1MmM3MTgxZjQ4Zjk2
+ MmE4NTllOGIzNzcBYwCc/3gBKylKTVUwNDRgMDQwMDMxUchNLC5JLdLNy09J1S3PzEvJLy/WTc9I
+ 1KvMzWEoObfsvrYZn7jc1nu8vNx8gm/+2cegaIvHqq2v/PD9ucealToec2tefsoadP5x0QwAhKIs
+ +1BLAwQUAAAACADmYY9S4C0vmT4BAAA5AQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n
+ aXQvb2JqZWN0cy9mNy80OTFiODM1MmUwYjNkZmIxZDljYTY4NzQwM2VhYjE4ZTE0NWI3NwE5Acb+
+ eAErKUpNVTA2MWYwMQACBb30zJKM0iQGn9qtzDpf4nflHVCqLp0zl6ehcfodQwMDMxMTsJLM9Lz8
+ olSGQI+n6ssftS18f8blWlR9k6Na7bnZUFU+ns6ufsGuDIrsAqWHXGe+m6HqX6B9/ijL2UOly6BK
+ glwdXXxd9XJTGOa4SGl6vO+QkZF449dqeHffz+pZ36CKMvNSUiv0sooZfkmVxev+WCq3T8JUkjtY
+ /amr0+0DUDUFicnZiempujn5ydlApfl5DGuO/7K/dzZ8xYalznldL483ZZnl6KMqhqhTWCaqbSVg
+ +zHn1ZSHEwxP3WDy8ZgJU1eUn5xaXAxR9+uvJ1fd/Ym8PL73X07hr+d/bbDFCKquPDVJLzk/Ly0z
+ nSFWqSb+nevemQm/hVf8tOEoXpzypxAAeQ6IRlBLAwQUAAAACADmYY9SeGMuc6MAAACeAAAATgAA
+ AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9mNy9iMzVkNWQ4ZDljODAzZTNm
+ MmVlNTNlOWE3Y2JhZjQzNDYzMTkwYQGeAGH/eAGdjtsJAjEQAP1OFduAksfmkoCIYA0WsNndeAfe
+ gyNav2IJfs7AwPA6z1MH7+Oh76oQAmIL6kilxBAa25ydz02EBw5NfGJOFdFstOvSIbNgEhmal6rq
+ CrUSpSQrNdpcB8JYs2ZFQ68+rjvc6PmeFriNtMCZf8AjLtfHTNPzxOt8ATdYXzy6aOFok7Xma7+P
+ Xf+rzX0T6gpoPlsZRz1QSwMEFAAAAAgA5mGPUlFYie/uAAAA6QAAAE4AAABub2RlanMtZG9jcy1o
+ ZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZmEvMWE3NjVmMmRmOGE1MWViZTE4MzUxOTBiNTMyN2U1
+ NDU0MmRiYzAB6QAW/3gBVZDPbsIwDMZ37lN4kSaC1KVADpOK4MKF26aNFwitBZGiOCSm2wR79yUr
+ HOabP38//9s72oOe64eOfGI4MgdYQcTT2UaUk5JPpsuqGssJ44AxG4quuoiG8eNPk7IwmLjOcAq5
+ GU5htYZLBTnukvqMlnGLppeL2ayGi9iQZ/T8vPsOKFoQjF/cBGesFz957j8YfS/FFp0j2Bg3WA/6
+ UWRTMd4WDBQ5rxcidZiSQj+ot9f3HVyvMNf6ZVmNFyhnUx4ri/0Ok0Pl6CDFeBDEs/fWH8CMX2mb
+ xlFn3JESt0+9qOEG/wIurmpOUEsDBBQAAAAIAOZhj1IeGiQvggAAAH0AAABOAAAAbm9kZWpzLWRv
+ Y3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2NiLzYwYTcwNGZlMmU4YzgzYTIyM2I3MjliYjI4
+ YzRlODFkM2I0OThhAX0Agv94AZ2NbQoCIRQA++0p3gUK9a0fQUSwJ3k+NYXVBbPO39IR+jkDw/De
+ Wp2g3HKaIyXQGJh9joa0D9lGlYx3FqMxmCS7YDkmJIyC3rPsA1baPrXDWqjDjX/AZemPZ6O6XXhv
+ d1BW6qtS0iGcpZNSHPZ4zvRfLXIdrym+8qM4klBLAwQUAAAACADmYY9SVxA9trUAAACwAAAATgAA
+ AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9lMC9jNzBkOWJmZGUwOWU4MmRk
+ ZTIyMTNjNzJmNWQ0NDQzOTc0Njc0ZAGwAE//eAGVjkEKwjAQAD33FfsBZZM0TQIiSk+Cn0g2Gy22
+ jcTUgq9X/IGngYGBoTxNQwWpzKYWZrBKtUYZrdlRTCgC6Yio0DrspAgmkI8u+tQ8fOG5gkhWUssd
+ JbRKyySTja0O0XXOcQpGKKWFMKHxS73lAr0fX8MMe/qRbu18vE5+GHeUpwOIDqWTUqOBLRrE5mu/
+ e5X/Dpu+sK8May73NOYVlucwX+H0XgpDfzl/ANeDS0dQSwMEFAAAAAgA5mGPUnThnirtAAAA6AAA
+ AE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNDEvOTJhMGVkNzllOTk5
+ YzRkYTFjMWNiZDM0Y2MwYmY1NzFiNzlhYjUB6AAX/3gBVZDBTsMwEEQ55ysWS6iuFJymOSClKpde
+ egNBf8BNVq2lldfY2wBq+Xcc0h7wzbPzPLPeE++hqeu7jn0SOIoEWEPEj5OLqGfjfTZfFcU0ThgH
+ jNkw6qaLaAXf/zStRwaTlBlOIT+Gc1g/w7mAfG6S+YxOcIu218vFooSz2rAX9PK4+w6oWlCCX1IF
+ ss6rn5z7D0bfa7VFIoaNpcH5e5Uto+1aL3CUXC5E7jAlg34wry9vO7hcoG6ap1Ux9TfkUg7Vo/0G
+ M6EhPmg1rQPx5L3zB7DTn7RVRdxZOnKS9qFXJVzhX4NBaflQSwMEFAAAAAgA5mGPUvf4ZyQ/AQAA
+ OgEAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvODMvMzQ3Mzc1NWU5
+ Y2RmMDFiYzVkMDAzMDg5MDYyMWI3YmNhZDlkYWYBOgHF/ngBKylKTVUwNjFmMDEAAgW99MySjNIk
+ hg+rLrLx/2tebbpg3om72g9uX5656Y+hgYGZiQlYSWZ6Xn5RKkOgx1P15Y/aFr4/43Itqr7JUa32
+ 3GyoKh9PZ1e/YFcGRXaB0kOuM9/NUPUv0D5/lOXsodJlUCVBro4uvq56uSkMc1ykND3ed8jISLzx
+ azW8u+9n9axvUEWZeSmpFXpZxQy/pMridX8sldsnYSrJHaz+1NXp9gGomoLE5OzE9FTdnPzkbKDS
+ /DyGNcd/2d87G75iw1LnvK6Xx5uyzHL0URVD1CksE9W2ErD9mPNqysMJhqduMPl4zISpK8pPTi0u
+ hqj79deTq+7+RF4e3/svp/DX87822GIEVVeemqSXnJ+XlpnOEKtUE//Ode/MhN/CK37acBQvTvlT
+ CABKTYtXUEsDBBQAAAAIAOZhj1KZl83wHwEAABoBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29y
+ bGQvLmdpdC9vYmplY3RzLzIzL2JjYzhmZDVhMjhiZjZkMWU1ODc2M2Q1NTNlMGM3YjZjZGUzYTNk
+ ARoB5f54ASspSk1VMDawZDA0MDAzMVHQS88syUzPyy9KZQj0eKq+/FHbwvdnXK5F1Tc5qtWemw1V
+ 5ePp7OoX7MqgyC5Qesh15rsZqv4F2uePspw9VLoMqiTI1dHF11UvN4VhjouUpsf7DhkZiTd+rYZ3
+ 9/2snvUNqigzLyW1Qi+rmKFO197+HtfFdRIqcyeWqNbvvlkaqANVU5CYnJ2Ynqqbk5+cDVSan8ew
+ 5vgv+3tnw1dsWOqc1/XyeFOWWY4+qmKIOoVlotpWArYfc15NeTjB8NQNJh+PmTB1RfnJqcXFEHW/
+ /npy1d2fyMvje//lFP56/tcGW4yg6spTk/SS8/PSMtMZYpVq4t+57p2Z8Ft4xU8bjuLFKX8KAS4q
+ eudQSwMEFAAAAAgA5mGPUtG2vNy2AAAAsQAAAE4AAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u
+ Z2l0L29iamVjdHMvOGMvZDQ3ZGQ2ZjJkYmVlMTlhZjk1ZDk3MGRiNTA4YjZhNDViOGU4ZTQBsQBO
+ /3gBlY5BCsIwEEVd9xRzASVN0kwHRBRXglsPME6nWmybElMFT2/xBi4+Hx583pc4DF0G63CVkyqw
+ Xn1Dhp0pHXLdkvdUknVSe8GamyVCVrSYOOmYoaodYxUqcldRDGqDBBH0XkpqWkvCGCyyKXjO95jg
+ yP2rG2Erv5a7H/e3gbt+I3HYQRmMXWSEBtYGjSkWutzL+vewuEwNZ4V3TI+2j2+Yn914g8NnTgrH
+ 8+kL7s1LcVBLAwQUAAAACADmYY9SgYo4CdkBAADUAQAATgAAAG5vZGVqcy1kb2NzLWhlbGxvLXdv
+ cmxkLy5naXQvb2JqZWN0cy8xZC8wMjI1YjAwOTJjMTI1MzQ1YzAxM2VjMWYwYWQ5YzRmNDZiMDE2
+ YgHUASv+eAF9k8Fu2zAQRHvWVyyQArqEktU6qa2TUwRoLy0C5JBjQEprS4lMElzSRpvm37sipQR2
+ gZ5kScM3O6O1GoyC9WL54QJuTUOwNQ58h3DzOziEB1RwYy3BLdrB/ALZ+N7oGjrvLdVluet9F1TR
+ mH0ZD5RHVJL1oo367AJ+GMZ86/33wKR4OnlE+X9AyYmyTMs91vA19EMLUreQyPDTtFg8EbAbeHM6
+ LgjQ/Foce92aI4ldJ7OMx84AbKBuvAIoJ3XTIaU74DN7SR5dlj0ZFZ+q0VOw55QmKV3QJMYOZvog
+ PZLPIpQB3Ev8KSAQ06fKqGSv5tkEv5ltxiF40BjvHj0E+xbqgI6458iBMw6hD1aM+TaHalIc+TPM
+ OSBlnxA15NWiqJZFlacJZ0dt99Br8nIYLiEmvYz1xizjaACctIY/kwVj30+cPGNZAoAQ/VZYh4Ta
+ /yMZwaeKKJnnyacNO/+W+QSayhy38mzJNodPk+a0Bt4MkdrNz7dhhgLQYPysss60Ia7o+3sb1NBT
+ x6nMth94ET++vABh49BTEXeY/x736A59g493SXyXtI+rxWpxXW0lXsv1cn2Fqy+rZq3aJVZV8/mq
+ UvD6+taSlc2z3DG/+AuluhtnUEsDBBQAAAAIAOZhj1Jqp/ImrwAAAKoAAABOAAAAbm9kZWpzLWRv
+ Y3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzEzL2U4YzYyZGQzYjA0MTQyMGEzZDJhZTFiMzg5
+ MDEzM2ZmMTRlZmMyAaoAVf94AZ2OUWoDIRBA++0p5gIpOrq6A6UEcoPeYHRnskLUsjU5f5ceoZ/v
+ wYNXRmt1Anp6m4cIEK1CnLjwpmgjellsiooUoobEeGKkrGi++ZA+wemKJUgsale/oKKuW1jyRpFI
+ NCfn/eJcyoafcx8H3Pjxqh1uO3f4KH9Q9tCv98b18V5G+wQXLRIiWQcXm6w1pz0fp/yvNl/Sxks2
+ uNe5PzNwmXX0H/MLdUFLn1BLAwQUAAAACADmYY9SE3jEH64AAACpAAAATgAAAG5vZGVqcy1kb2Nz
+ LWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8xMy8yZTE3MWJjY2ZhZjBjNTFkNjRkNTM4MGFlMWIz
+ ZTBiMTU0YWNlNAGpAFb/eAGdjlGKAjEMQP3uKXIBJWY6rYFlEbzB3iCTpk7Btsts9fw7eAQ/34MH
+ T3utZQBNfBibGTBfjCWKSsqEgSabMYZM7EP2UWjHwEsm9yubtQEBE58vjAvOKfnos8yZNCXVhVFo
+ Ikok3tjJc6x9g5s8XqXBbZUGX/oGXX273quUx0l7/YZzQGKacPZwxIjodrs/Dvusdj9W+8sS3MtY
+ nwuIjtLbn/sHtiRMElBLAwQUAAAACADmYY9SdFy6CTgAAAAzAAAATgAAAG5vZGVqcy1kb2NzLWhl
+ bGxvLXdvcmxkLy5naXQvb2JqZWN0cy83Zi9lMmEwOWVhNTU4YmQ1NmRiNzhhOTlmZWI0OWEyNThm
+ NTc3OTI3NAEzAMz/eAErKUpNVTA2YzAxAAKF8vyi7LSc/PJiBsVbh0N3m99YsE/Bs/W7pB7vocNc
+ /gBRhxCOUEsDBBQAAAAIAOZhj1IxgJVR3gEAANkBAABOAAAAbm9kZWpzLWRvY3MtaGVsbG8td29y
+ bGQvLmdpdC9vYmplY3RzLzhlLzc3YzNkZjlkYzY4MzIyODhlMzBiMjlkM2U1MDU1MmNmZTM3Mjk4
+ AdkBJv54AX1TTW/aMBjeOb/ilVqJSx0IMAE50arSdtlUqYcdK9sxxG2wrbw2aOv63/faDplg0jjw
+ ER4/X3kiOitgUy0+3cCjlQg724NvFdz/Cr2CH0rAvXMIj8p19idw6bU1NbTeO6yn0732bRCltIdp
+ OjA9KcEJz5qEL27gmyWaL9p/DcSUTmeNBP8PUVbCojD8oGqYPATdNcBNA5kavttGla8IJAfeXvqt
+ wdC/7KRNY0/I9i2fFAX5LgBcwDZ+AoieG9kqzL8YHDh61RfFqxXpmoiKjBSHMBnXB4MsVnAm77hX
+ 6BNjeiMSqiZ9ZRCQ+IfWcEpq8s0Gvz1LRRsMcsJn5SG4MdZR9UhVJx644kHlg2Mx4vZYDYgT3Yms
+ GklT/IGCyqtmZbUsq0nCDtayqnEH0AY977o7SInvUsljJgBKXMPvQYao/564uEawTACM6R1zvUJl
+ ci/JER2LkEh8ibjwMxmGdn1Hs/WxiDjOq61tj/PBT6oCRnM0EDaM6N9VRGvxhZ31Z5TrbRPSVM+q
+ cTai09hSLLvTHQ3y9v0dUMleeSzTlukxeVb9UUv18pTBTxn7sm7EciHXYrWcz5arRm6ajRSb1az6
+ LBfrecXh42M067h843viL4s/d/EchFBLAwQUAAAACADmYY9Sdz3NIa0AAADwAAAAKQAAAG5vZGVq
+ cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaW5mby9leGNsdWRlLY1BCsIwFET3nmKgi6rYdi+4Elx5
+ A3ER2582kuSX5IfYjWc3le6Gx7yZCqMR2NhoYymiaVgmCmugT2/TQI0O7C5taXXGa+42vKtwN74Y
+ MilBFBUE2ciEuqqhAqFn58hLbEvzxgEKc+A39QLHUewC43E9FZ2g2VrOxo/InOyAF5X2yDwgkoB1
+ WdheMSsRCj5in/z2sE44GI2FE7JaASNF+vPDucjH9sHquYbv7gdQSwMEFAAAAAgA5mGPUvCAxP02
+ AgAAdQcAACYAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2xvZ3MvSEVBRJ2VzWpcMQyF
+ 152n8C7tokGW5b9QSiHQXTeFPoAsycmF+Qkzd1Ly9nVDKSSk4Ond2dicz0dHugBzn5OWgDNQN7Qi
+ JTBiaBlra1iErHgNjWphd8vbx2Xvbu957z7J80Luaf/lbsfL9loOu8/OJ8DqPeTgPkIGeDd2d8vq
+ 3i/7ZV14++HG9eV4WjfTouCBtKWCyKDaW48QLEknUZQgiFV9ab5O0yFUrC/obtz5QXm1zbRWbR0L
+ lhwBaqihF/WBQFJkbs1rJo09dYjzUEPZv4L68QzlcDOtxj0aR4rAYNybT0kZKXEebnMeCyspFe8v
+ wBq1/IP1cN5ub9w3O96Z27Gaa09uvTd3dTQ5H0/Lo12503ocyHdP15tpFN8LjoIPl6GEiB3H8yg2
+ ralW6y37EKL3uV3APKL0Zn1d2Eyr+TBimVBHDEdlCIGDIptvoVQYp3r3ZF1wHgvHvVdY3213eDR1
+ d8t6f26OZV0O+9NmWjuBVj/2GkRVytQ5dhRVkVaBMSCOe2QX9AZWov+q9zSKD2g++ybSuYNEr2nk
+ NxR4fqBB85FYjOaZA0SaNXZSO46BlGOKNTSxnAyTJJFMJL5qxyojwpgZLoCslF4Y+5VP68d+OP7k
+ o26m9YoMc1VTR21mvnKvUWsGbRHK6KyR5WLlEvdGwOjfYNN6PbcQNWrRKmVMzdDRLAarvzueOwVK
+ wY8kXAIW4e2JSJtpNSkaMkkaJgrmWgwEuUis4hVQq2ZfqFK5AIv+/j3e8OsXUEsDBBQAAAAIAOZh
+ j1LwgMT9NgIAAHUHAAAzAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9sb2dzL3JlZnMv
+ aGVhZHMvbWFzdGVynZXNalwxDIXXnafwLu2iQZblv1BKIdBdN4U+gCzJyYX5CTN3UvL2dUMpJKTg
+ 6d3Z2JzPR0e6AHOfk5aAM1A3tCIlMGJoGWtrWISseA2NamF3y9vHZe9u73nvPsnzQu5p/+Vux8v2
+ Wg67z84nwOo95OA+QgZ4N3Z3y+reL/tlXXj74cb15XhaN9Oi4IG0pYLIoNpbjxAsSSdRlCCIVX1p
+ vk7TIVSsL+hu3PlBebXNtFZtHQuWHAFqqKEX9YFAUmRuzWsmjT11iPNQQ9m/gvrxDOVwM63GPRpH
+ isBg3JtPSRkpcR5ucx4LKykV7y/AGrX8g/Vw3m5v3Dc73pnbsZprT269N3d1NDkfT8ujXbnTehzI
+ d0/Xm2kU3wuOgg+XoYSIHcfzKDatqVbrLfsQove5XcA8ovRmfV3YTKv5MGKZUEcMR2UIgYMim2+h
+ VBinevdkXXAeC8e9V1jfbXd4NHV3y3p/bo5lXQ7702ZaO4FWP/YaRFXK1Dl2FFWRVoExII57ZBf0
+ Blai/6r3NIoPaD77JtK5g0SvaeQ3FHh+oEHzkViM5pkDRJo1dlI7joGUY4o1NLGcDJMkkUwkvmrH
+ KiPCmBkugKyUXhj7lU/rx344/uSjbqb1igxzVVNHbWa+cq9RawZtEcrorJHlYuUS90bA6N9g03o9
+ txA1atEqZUzN0NEsBqu/O547BUrBjyRcAhbh7YlIm2k1KRoySRomCuZaDAS5SKziFVCrZl+oUrkA
+ i/7+Pd7w6xdQSwMEFAAAAAgA5mGPUoSX6YG6AQAAewYAADwAAABub2RlanMtZG9jcy1oZWxsby13
+ b3JsZC8uZ2l0L2xvZ3MvcmVmcy9yZW1vdGVzL29yaWdpbi9tYXN0ZXKVk1tqHTEMhp+bVcwGUiRZ
+ tqVQSiErkSW5CZychFxauvs6pY8nYcZPYxj4P/8XgH1n89HAOvBMSnEpRlRGJx2DxDkFowxWse3W
+ Tr/uz9vtnZ23b/7v4nd8/vHzwe5PX/3x4fuGDUgREXi7hg7w5e0p7DW38Wd7enu5u9qtldmyz6Ft
+ WDDP9Vm1sGiJhozo5AlCjXdD0TvVf6int9PpZpv28no9H59/23Nc7dazWdMqVzBImwNbCyNu1tfT
+ rK9LSmuCeASM4LJbu7VwCi37mk+QUmnSlOA6QptqztGxlIrYxwEoIrkMtVsrwTuEjhkJmkIRSYTF
+ O826POainVvn2A9FyvxJhHv12voLRWFAjeDO0+okj3AfCkaFKMg49QhYxctu7dbCQokdh/u0CV4x
+ GkctApY4SsLAyuZ5oPAF2ge92q1V10J7bWsKw7O3pObNvTM7akxSXy2kbnAASrl9HOFuPfFlZkSb
+ FCMT1abW0BX/qCBrHKuQknLELcbPurVbb/ZRatSQUBcoWSZl1pL6PlqbXLgVXMkfAav1coy7tVyi
+ dPa2LHTqKmspZOJVHQMoNDoKK8sBKCb92K2/UEsDBBQAAAAIAOZhj1Lp+MoQ9wEAAIADAAA0AAAA
+ bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9jb21taXQtbXNnLnNhbXBsZX2SX2/T
+ MBTFn5tPcUgr0lZNo/KItEqDItgLk1j3ROnkJjeJtcTObIfxp3x3rh2qFSbxEkXX9/7OPccev8gO
+ UmW2jsbRGJcK9E20XUOotb6HzY3sHJxGXlN+D1cTct220qHRFVqyVlS05Mm3ommowOE74opPh6YY
+ j9LV0IogTNW3pNwiMJRoCboM/6VsiAGuFg61sOcaJz6wrU8b1bpvCt6SjwNcaZX+IKMZYZ1wvYUo
+ HRlIa3upKggF0XVGd0YKRyckZAlPEMpZb8863Xllpgza55qSmU2jH9kft1LBg8+XDD6WIcUtNylx
+ 4BBdzbOesYChYDpUfKtHxQMibW0VLyOevFW+wjEFgQOxqO8TRQGBG1kpKlJdlinH3EgVGL7x7B42
+ 2psOKpKdPxnAQRSQBQlfr0iREc0Ch36Q6gx1wlD6tBCzTrOtNgRO0w0BcDjB5s31m4vJ1N/2V2Hw
+ /mp7d3m7/XD96e5q8+7jFkdY7k8VEpvtd9PlfL2bLeeT7C8br7FbZV0yY1zFKyB9sIj3E0bHiCer
+ GMcjKK85qqG2Xoeyz2rrPZ5eay4cv1CLou8amfuLfp6W5YgdWYc4xgVjpkEx2f+zUPJHOBrBauPY
+ R6/kA9L85IiQZPvPGH2Zr/w3K5JZ2PNnNAqrrl++wub/e4zC+11Fv6LfUEsDBBQAAAAIAOZhj1KE
+ 7FhR3wcAACITAAA0AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9wcmUtcmVi
+ YXNlLnNhbXBsZZ1Ya2/bRhb9LP6KW0Wtpawetj4U27iO4dhBm+1uAmSNFovEsUfkUGJNcrgzwyhq
+ 7P/ec2eGIi0r6WIFyObjvu+5j9GTb2aLrJyZVfQkekLnqtrobLmyNIxHND88/H7Mf/9O/6jLTNE5
+ /SwKUSpHe7mS1K+0nGi5EEb2aaXULWWGdF3S77WxtJCp0iBaZpYaImOFtoYSlZVLCMlw/btajEmU
+ CcWiJAj8KEtLFtJjVRT8PNWqYKkleGixIfkps3y5zizMplKVkz+kVizb1ma6ta4xKBZ5LhNH7uSm
+ Ks/VmiVUQotCWqnNM8c1OKLJxNHUlbFaisLdGKkzaWgtDHj1rfQmTZlh3jAstCjjFXxmud7bhIZK
+ kywqu6H1Spb+Mb933tVas6eecdSYDXuNKKocWldqbeDEmqxq46KqLA48MMmuhCWBIIsc1iYbiCik
+ XkI1eA5K+ckeNJa5KC6ltR0Dx7A3FrVh/hCSzELGWtV5AiJT55ayjuFBDVX1Is/MCnpgsFV6M42i
+ 8OyEtUYs3is+6Q+O+lGWkpXARH/wpE8nNI8QgjLqOXdO+lqmZraCZDMbzPuRzI1s3t0wesymWKg8
+ i4G1lH5+eXZxQ3d3UY+BQId0DIMlIAUksLVIp64r2xqdSCtitpU5ozSLohjWwRSnoQ+WqGPA6ens
+ 6SjqHR9H/O/rKhS80EAcU0sj4gixe42EgZaTkkiRN0Al8SB3D4ECNlXye1IpFcJA/pTolUE26M0v
+ nEtPiPtT1nGhXO5lEImc5LmrC4P3LmCAjQvW5L+tn3d39BkexStFz7+bU/81SqZmU7xFgSz4fBTd
+ sybY4HWkNatoweWtPI0QkOusvPa3PluA6gRIsCgNwNbazYkqJQIh6YMn25p0s8XF5A88fCCrHyDS
+ 2uuZuKL3G3OMoFoWr2WhPnKwpltvQgZjB2wHdrwG/GvXapArSC1RZuhLduow0vEdpac72hjgp0hP
+ SkbRRtUcbRbL2FjIFnfQH6ky31wzw/XRTnC2sfjQ5GfwOZTQPd1BtLY3Hfb5F9jbzx72tuo6dnD9
+ dR/Mm0iH8HfqbqutNdKrvYl6+zLXIMjL25u6poPUFYcyEVb68miS3vu/EtbzLSOUa9RDAv2TYBg7
+ +pfg7ASwBWhvVhvtZmQldU4TSQfQU2xCuSCWg7O3P/367vDqODwvzJIj/LShWGFs8CjjWdd434LJ
+ qWy6wrP3ZT+IGX7bMX0EgYWouHx7vdmH4bvDyQ9ikl79bUQzpu8NMblOntPRiO/uyVR5Zoez9+Vs
+ HMw7unKvML6IbZS5LGi4Fbkjczh9Ohp4wb13XvJg7vzbK3t+NRp5OcDE8BvXhgwNOvZ/dgonzxGl
+ +0DqaDlWzX2v0kgl/fvy4uXbty6K3oBeXSZoZO2D++gRdZ8aBUdXIYSODN+Dtv/1uyb1H/ebpvFx
+ 9f/44/uLN+fXL19fRFF3KLudwohULmuhE7N3Hq8Ems9CogTaMemmb9PzMV7LZMqCAX4sFCmjWxhT
+ FzxQPbifRRE9pTdlLHcnB68gxgvsB9PH2ytXFtyvInSEgDIESvEkEUuBWT6UGRcQJZmWsUUbBSSy
+ srnDHvIlvdu+GyMGEMurWVfD1hhWDXWgT5AVK5Opa5bcKUvpUb+oM5R1O/My3mwgWLMVzC+FzjPu
+ usCSuJUGGyKY148silFP0MBrIcfF7ShOgJuOmRPOl41xMMWl03UPzEmrMxeEUsbSGKE3rsUEDwrW
+ zBcSDR3GwMRbKSv2RDeLD5mMgeHD9hv6nhsWXV9dl0SQAxg8d7wS5ZIBo7xLrLFB0diHle0uQmg9
+ Yj1BAI6JdVZxR3SgwuosPzmIjoE/ncQqCStCozbErMTCG3EGZJDqe6rPF6LxMRO5H6m3PEGRkzLN
+ lrUWC6AfL6PBT68ury9evZ35N7CVfckM9uHoN79iQ1ID67ELhd8n18ItsHRbqjXgPTwa0XQ6JTSC
+ HaRxx3Rh5CLq9EpvMFL4HxTQkkO2W398hHDlZ2xdZckWPh0rtGD4O+Y4l6DHJAonlRAqxNMfSCxf
+ dovaT3gUNu1Ul1sEH5qBADNsgK3mNMBzTnlwkUhTIJ0z51krqRhFRC+QDMXV5zOy7SCdQDoBbEoT
+ UHQUVLDbN6Lh/GtRdQHd3Z62teEEX/JJhXWxE76AWTLRvzhEADs2C+jNN+Od3cdx7ylsHJC6PgJZ
+ m+0cDB74bLiSaIKuZe4Kmwtku+jCg0pYF2LXzFBYXE2Ove2F2MqyTrtJa+3Uh5Ibh8iGXTEo5+bR
+ UTTEsF+JyrSHRvR/6YpnhNzhZBQOVHjlcehbTRvK6J/SHhjKeV4I64siVCiw3+uBR00mk7/8BtA7
+ jlnY9Jr/j66Zih8IcPJ3QWd7iWY7z/bQdJ7yN4a07ZdePKacdb7t5/0jwi7dwpl4/oAy0M3o6yJn
+ Lur/SwDbQDZzPorOxnCBK/zcndMeNhHfys9cvWA3pDT7hCYfSpJ/AwiV4zfY0JMczwvHk2alq1ie
+ evYLVRd4m6HNpoRuzH7xLf+Q4krE9+pmkjo9504qd4Dd3shQw7LMrVjudF2/Q58HedsfAHBI5PP/
+ me94ssTCrcVSRi8eKb7kAV1UNfoBWjeDeO+B5IOPpvsVYD9F+DgKf45A1LkvoLLH1C7NHQextzB5
+ 617XmPljY8IZeupna1Dix777PaZpAl9uhVGz/v0JUEsDBBQAAAAIAOZhj1LvszIMjAMAAGsGAAA0
+ AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9wcmUtY29tbWl0LnNhbXBsZW1U
+ YW/bNhD9bP2KqxMkDWA6ST9mdQDDy7AAQQesAfahLQZaPFmcJVIlKTsuiv32vaNkdwH6TRSPd++9
+ e3dnb67X1l3HujgrzmjpiF902zVMtfdbimWwXaLkacfBVgfa1zqRjaTXvs//10ylb1ubEps5Mqx0
+ 07Ch9YGmG5vGuyntbarJedJh07fsUpwTPdfHKrXvG4PH/IInY6hT3zh4ikmnHvWqxAGFY2/dhrQj
+ 3XXBd8HqxNRyjHrDZCvkkAwaBQRcTL6jVB8hzjPHZ0/s9BoUUw0mgmBGAb/a8U9l5c7TtAusRgLz
+ orAVCaPAO9XpEJmUGkX5/WH5K91fG95du75p6N39xW2Bsq6Y6I22LqaFhBTcRC4mZ/TobLK6GVHd
+ kbFVRWOkcOO2SwdKgZn8+h8u0488528FQ61jrYYrUmmIPJW/KipbgOdjRQffZzGEDfri91nX5cfV
+ 42NmKZwjRU4D8Z2GnuuBfAo9z4v8CG90LK0di5feVXYD9unQ8WLtfZM1jPNXwVcC4U82NghImKUb
+ /BKT4RDmBb9wSbf3F+8kbhV8jNQ1OlU+tITOCjW0kJ3J2Hfemp9h/wWxvIOfkASCt1QF38KT2STG
+ cH4tBgjc+WiTD4c5/cUwWtd4m/JVpUv50PmEPDCVS1mGoB1cBQcGYBnuKXa6hJ9qHfAMltRACJRx
+ sG2yjYFssMonmp6/EmRKbxY0FVmn9IUuLsQIH3ziU2nq4Slf0RqZtywVg++RXaMXIxT0CONSc+AZ
+ vbXpMkoS4Q9+X3tIbWYEBanzAQxsY8VGnj76Bp2NdHtzGem6jyGPfApXM4rWldmTmdvXXgc+AsAM
+ J7ijxqShANJU4EPW5VDD0W4chs8M0ObFBMGJBotkQytV6rJGgFLSK+Vdc8C33Ck0EOItlqS+0fnR
+ +d+LCdHT6u/l09NiJaSVoctPpP798vnmkr7TviRVXomMN+N0lVDu/fvPD3/8VjyE4MMdLbGH2mFj
+ of/Q7rVpSJBglp/F7iVGrdSiOgyHfrcRG+TVzOx92A6N7djLUvSOPEqHk1ejJMtbcNAcMXZYkGZn
+ 43GYTtuFMwq8GYdz6zCTeafKScQ3XrwrJ4Fnjjky3prLLVyCgLuiIPrfMP5kAPMEFyLNJK/V2x9r
+ QRhwrravLdqWLc0iYJwN9s9QfVXB2QLnJF3Mfq+0bcYJPnZbWWf4RXqeQZ56f2quUsV/UEsDBBQA
+ AAAIAOZhj1KFT/gJFwEAAN4BAAA4AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29r
+ cy9hcHBseXBhdGNoLW1zZy5zYW1wbGVVkF1OAzEMhN9zCpOuKhCkFa9ISHAHLpBuvZuo+VPspS2I
+ u+O0bFtex+Nvxl7crTc+rcmphVrAewI82FgCgst5B9RXXxg4Q++w3wE7hD7H6BlCHiEikR0R2O4w
+ weYoBFtKOBbLvYOh5ghWiCZaH2bz6hT04eYEl6ewlVRB7j07SDmZL6wZiC1PBHZgrOCJJp9GwZ0z
+ ai7VW8ZLBT9AI9jE1OoS53LTdgXXRE8NEULe47ZZcSuLN4fNxMGHuayYkt3IU9h5OlGeoIoU/5Rm
+ bSh9vd5EGvVKqRWMng05Q8hTUecMmb3q7l4mgvk0xVZCMKY5ZdmdEmh99jbQg1aMxGAOoLsLQsNy
+ KY/D/r/YfT8/6u5N/6gX9QtQSwMEFAAAAAgA5mGPUlC5mGP/BgAALxIAADwAAABub2RlanMtZG9j
+ cy1oZWxsby13b3JsZC8uZ2l0L2hvb2tzL2ZzbW9uaXRvci13YXRjaG1hbi5zYW1wbGWtV1lvGzkS
+ fpZ+RaUjQFIgdTvZl4EUe2eQzJHFIDFybBaIMwLVTUmMW2SHZFsRPJrfPlVFtg7LcZzdzYOjZh38
+ 6i4+fJDVzmZTpbNK2rLdrp0E563K/Zh/r4TVSs9d+Hpx/mw0elVJ/WTcbj+EnzTIL2JZlRIWxlyC
+ y62qPHgDSns5t8JLeC98vlgKjey9hfeVG2XZTORyigLpXPlFPU2VyVaRLevDCg8BKaTHVVIWUFdQ
+ SC9zj0hQj5YrELqApSnUTCF9pkrp0vZDpL1dRCzKQSWcQ6qAK2mdMhp6eW2t1L5cw5M+qyiF86i+
+ IKTeXEqCOTN2KbwnSYfC5A09Z25T+6r2joH5Ar+QTGD2FRAjKhFlGWCBXwgPC3ElYSqRvAXtlM5R
+ BvHui6dwLvzCwbJ2HtVMJVhZCq+uiM7c1hgPZsa/V8ZeEjhvpWSETlaC3F7AdE3YkYjBefnu9+gd
+ A1KLaUn3ooPIUQO8QItlPCHIdFHyuZZ2PWyikkTlBKlLocmNnqk5/mdlOnNLo5U3FiieGSl12aF8
+ F29frqHXiZEYQIc8PwmWT9jyPpzCjz+9/vXfnFrvdG6WS4wVhQOjP63n8xD9CsPh4c3b5z+/fg1J
+ 5wQapbfovNAJa3u2kPkleyzkBmanpSRsMqOtZjtwGFJKj+t2q1ASknfa1VVlLDk1WLUzmLU1Yt1G
+ QTfFeyFttwD/Jb9gKlCMpoIgYObkQlNJpWnK8DZtck0HXTehcE44lqcwl+EbOSeFsr3+OPBZ6e0a
+ 6Y/j9ydn9KS6nI/b8kqUhNrKz7WyEv715tXL0eg/b8bt1pYLBZPmHO9uoZYNkIPNseT5+e2S5+eE
+ Gq8vRa3zxaQJMkN09RRunJNmQmpQRXM2YU+SRItcr9zO9iAni17H9DkKrVB2EytdXXo8Hp5d56XJ
+ LzcD+PGaP7nSNhtStyGHEooDqYih12FBVaAky3DSTRB366spt8UcNRKrwRYIPTJqthhAcpbgH07+
+ hncYeFP8LyFUWMlKY+nLKDGq/eyHhAkhn/EYkzmiu9ABHecHsuCxY0kC2ijCCnj17u2+rqgpKtke
+ JBcnRMVTzI/OgAIZTgI5XDVu3LaNEKtpYoderIx2lJifv2ythMCTHCZvko1j6fwiUHVBSY/ZHJkV
+ tlGqlQORbcW0vlEugNnS+Sc8OIUT8gUWQ231rgiGZ9iOh2fkkOFZIXP0U2+LvX9sI2dhY2OF0E45
+ tE96F4+e/fb78wk7OP5+8XIA3a3lw08wHGozrBCCX3f77RblDBkdFPRhxsaPoPMg2vbNTkChfqG5
+ TQVg8guqd9xcprI0K1jJLpancNz0KUupczuaBrtZwwmzEHq+nTHHfRGmOLs0zpGZNUu+kLIXNZaF
+ tAj1ISnBYSFyLImqVG7B42EQAdSOhw6KJXxDgvHVEucOIkK7aFNAIumwMpc6X2PHLeQXtlmWOMcB
+ LS8UTz2NMXI8XhIci2XhEmIr1ZIWgKAk1BId83iKNutyndK418egdn5DZdKihYb0zGqLZEvDC4e6
+ UMHVoUHg+sCdCNMDab1jlw3gZACP+yA/Q5InoTHd4lgqruSWQZQk3Js40UJwT+Hp06T188vnRGl9
+ CBOXGsmNahrwVa3o6dEt0RwwPXpvBB8S8lDyMRzv+YJJxqPGDwmOFOaKjSv5+BG5N/gHAd3ZDXnt
+ aKqAMd+vITJrSoUaG+Ku7wWHHHe6wBGLb8cVeOLx+Kg/0SiLvS4bw9Omjs82d3f5rV3Q6NrZ9VWj
+ Gtav2NWQj03jTtGsxiMgSFQCoZ9h4WoTsz69X/Pgvrh1AuVoMv72LUrjyqCavXa003DPS2uNTcft
+ e/8vyP64uM7+h9582yqwnd4BaDO0OfLSWozjKUQaLgN8sombRdyXzuCEe0xk3/uJkJdZHZdiQ8E3
+ 5VXcstNH2NKxhWFfw9vTR316VVDbjLiy2Ab4juGQ6viOYRmy67ZheXNaLsXlXpEFua9OzHssmQdT
+ E/HGhnp6/+Cg0B2Ovplogfe7ZjpLUNp8zyL232xiNysRv99vPa3w1SbKlVi7WCR77zgTxsVMWXwy
+ hhbuDMtHVqbSezKR+BBY48BEzJgwmEJ+ncCsFHNehXCwUf4VJsy3fQBB7Sd8+zVLEzIb1BYexRpX
+ AGdw3uHDT3c9PnDXLE835waFcKTFh3NJLxN8N0uBuYPTV12pohbBljTm6cFCzttZ71uh/j/H+o7N
+ vpdkST/AuW3K7vGypvD4ufn0wDWM8zNG6IRn8FFfPDThuyyIih9v29eNZ1uzW+4dNY3pj1fUe7pL
+ t3Zd+PNPaA7y9XyldDe2ln1dp/Be6X88GY1+lf7ZqojBOuD4C7zNLi6yi4z6ygZkiZl+zR4ITzuU
+ O5ai09Eojyo3e837APem/TdQSwMEFAAAAAgA5mGPUpLE+JZJAQAAIAIAADUAAABub2RlanMtZG9j
+ cy1oZWxsby13b3JsZC8uZ2l0L2hvb2tzL3ByZS1yZWNlaXZlLnNhbXBsZXVQy07DMBA8x18xuBF9
+ QFvKkSpIiAP00lYivSFVbrqRTRM7it0HQvw7dsqjCHHZ1XpnxjPbOhuulB5ayVqshTsNOoiyKgjS
+ mA1sVqvKwRmUYkPYWoLJUW2thKmcMtoOPCuV9E2zyrdXUCYNWYii+IWGk8LBOlE77JWTaAfgSmSb
+ pO2FhF6jphfK3A/Vq+wlac8k8OOSn2pC2eBrPWgCpAakxcobcdIvQohLL6lF+fmSq7Az4FVN/Zoy
+ UjviA8ZUDkfWoa/B44dJupwvnh6Xs3k6mU2X97PFNOXMW9AsUskVi/ay0QkMHiuOfuH+50Vrw6KI
+ dqIA92VLyfMfqBfxmEz4C/O4AXEoHWhfB+p1/dSM4E3Na1M2ZzmJ0g+JbxC/NRKtXvLOcXt+HZjj
+ sa/HAx6VDsphFH6wIvNNJXGno3CBUbcbLGtiuWIfUEsDBBQAAAAIAOZhj1LtEzYw6AIAANQFAAA8
+ AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9wcmVwYXJlLWNvbW1pdC1tc2cu
+ c2FtcGxlhVTRUtswEHxuvuJwMoSQyC7tW5l0hlJKM1NKh6RvGYJin2MVW3IlGQrDx/ckOWmgmTaT
+ B0f27u3tbtzdS5ZCJqbodDtdOJGAv3hVlwiFUrdgUi1qC1ZBrbHmGsEWCKmqKmGhVCuo0Bi+wpiw
+ p7wsMYPlA0QruhseiuBe2MKjJK8QVO6vc1E6Km6h4MadEL5lbRlHkKuyVPeB0WEyDGqEkmuaACFs
+ C+obMKrRKcYAsyLsQGd1o2tlEIRxm2BGU3ahvSpCTgK5NyDnojRhBw5SSfaIWoGx3DZmRNAtO4id
+ L5W2mMXeyxmNknzpF6V7jm4EGr0N/iSYoCBqvWWBiFVmFcUdx7DGgZBp2ZABBNSI64xM7LfMhTYW
+ lERir9Qdrg2NuvCtRE6Lo7Sot7WuY4vjCAos660c/VwEg6mS2fZgCq+xdWOd+T7hTOQ5MOYWYsER
+ YDoivJC0lQNssvzRkMIl5qptkMcHTNTSOuOdiW0TnGSKHlPeuORomkIj+65XNYZAGKPJpFHp8Nv8
+ bLgpMNt0yfxZhwzX2abbPMsoLJiKlcSMqTxn1LFSSB/HM+G+oymXRGOsKEtS5AtEIUPIh76awisf
+ iHClFFmWIaf4Ti8vLiazxcX0fPFp8uVs3DtaH00vv1+d0sGbzvTzydG497bTSRqj/f+wRl0CE/GS
+ 3wIjPf1ak5vQSErbHFTJdfy/TJM4pse6vWTQh6j3QkXkapU6+OZWUDPqOS0RRUcPwOjJIhnFLY4G
+ 7jfAboGURD/cp09QGs1lBDHcbBUk5Sml8ldTbgj5CkQOpDaB/X3o+SIPhzAew+td4uH42E07HIQL
+ NDx1+0wvP4x7B27gHddwTogAnJ1dLSYfz77O4InqTAIk9E1yPT+ID9/PB/FhL3lWgHcwP0rqvlvY
+ cQnnL/0zLbOaXgKoSTMTkpEtKdJle0oyaX60y+quW84iNZ89vvQ7Cu8O7/Y/zN3ylLj2gkML19Th
+ cGe8XXobdH4DUEsDBBQAAAAIAOZhj1KaDPfAigAAAL0AAAA1AAAAbm9kZWpzLWRvY3MtaGVsbG8t
+ d29ybGQvLmdpdC9ob29rcy9wb3N0LXVwZGF0ZS5zYW1wbGUtzVESgjAMBND/nmKFX4EzeAcvECCV
+ DtJ0kuDg7a3o5+7OvG0vw5jyYEtoQ4tbBh+0lSdjEVlhk6bicEFRLqQMQqFp5Rk1iyUXfSOKYjeG
+ vFgrMu/bCFfKVkTd+lO+CzjTWGFfkp36tRqZtn8T03cTNJX1bi8zOTd9CHzwhEdy/KrOWOtNl3KU
+ 8AFQSwMEFAAAAAgA5mGPUkQ/817/AAAAoAEAADoAAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u
+ Z2l0L2hvb2tzL3ByZS1tZXJnZS1jb21taXQuc2FtcGxlfY9PT4QwEMXv/RRPMHsSuHszmpi9Gu6m
+ wEAboW06g8v66R128WqP0/d7f8qHpvOhYWdKU+IlgDa7pJngYvwC99kngUR8U/bjFRdnBZ5hu7je
+ 7h2hj8viRWio1eHVzjMN6K4oJi9YKE9U4OLFIUTYPK0LBeEaaN1fiIvrPChLmxKHNFQ/lCNYrKwa
+ NwplzeXVhwk2wKaUY8reCmkGs51I26gHy0BZpSN2L6tRe0uWmCCO7n2OxvVtchtBwXa6WJwO2xs9
+ IetpOS6j3/8iipSpuvHVnS9qY2royopdxSRrMkIsqDYUj+/n9vPt/NHsftzs6AHhdDI4Hm3U/6c1
+ z+YXUEsDBBQAAAAIAOZhj1LPwEwCCQEAAKgBAAA4AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQv
+ LmdpdC9ob29rcy9wcmUtYXBwbHlwYXRjaC5zYW1wbGVVkFtOAzEMRf+ziks6qkCQVvxWQoI9sIHM
+ 1NNETCZR7OkDxN7x9AHi99o+x/bibt3Gcc3BLMwCbyPo6FMZCCHnD3BXYxFIxp5q7E84BC+IDN/m
+ 6Zy3hC6nFEVoq4D2BF/KcCpeuoC+5gSvTJd8HJCI2e9odVa9h5sj5GnYqjcKDlECxjy6T6oZLF4m
+ dfVCVaU8xXGnOB1WR82lRi90oyL2mAl+FJ4XY8kFEm7rXaUZNPpWz5OgV8z+J1SN0jXp41zLsKWS
+ +7vEroxZYRfFcXBMMhWjDRfyi23utaKYvSu+MsG5uVMHw9nA6xl2aX6wRogF7gjb/CIslkt9AHX/
+ w+br+dE2r/bbbMwPUEsDBBQAAAAIAOZhj1IE2I+xnQIAAEQFAAAyAAAAbm9kZWpzLWRvY3MtaGVs
+ bG8td29ybGQvLmdpdC9ob29rcy9wcmUtcHVzaC5zYW1wbGWNVGFr2zAQ/Rz9ipsT1g2atCn7VJbC
+ KIwVRhljZR/Gtsr2ORKVJU+S67a/fneSnaRjsBVCZenu3XvvTpq/OCm1PQlKiDm8s4APsu0MgnLu
+ DkLldRchOrhHr5tHGJSMoAPI0vVpv0To+qCwXgFcSmOwhvIRiq2OBMcnBcgmogcdQckAlcLqjoKi
+ QvDYuogQoox9OIaSEEtsnEeQ9jEqbbcppUS0I1gqc9VQNnEYyeGDjgEGHRVIsM4un9C7EZS+M86g
+ jTngKuYE+IVBkkz6X2XuCYa5Nc4YN3BqJ71skSSE85S2WMNyCde0B6451EFuDEpXOZ8LMW6JjFE7
+ i5x6xqk3nz/+O5aiSSefZPpRseF94C+SSdXrXV3lAlnmt32LNlmRteKvXpos9cqSra2M2tmpdVS3
+ cm2bvEtMJPmeGWSTmFHou85oWlMbjLYYiDjBcTIZbGvpKcx2hKftaJtvs00Ab40jV4llczGtg5Jr
+ +hiJ55NpCvho35eQpzAoN3CTBnas83hPCrNf5P2eP3pM5Y3bQoshyG0i6GMgvNTT4uvVpwJeDc7f
+ MdfOu62nwNcrITKBTbFYF6L3hhZnhRBPb043p//5JwRZaFiQrCEp/UnaxhUJGzuVNscl7YraiZlu
+ 4BsUi11oARtYUG34LmakyIrZbA4fyGqCr9HQHNLOuZihCbwa0/egh/kTACFc4wCll7ZSx+mGUy+B
+ Jn6ykIPodMsu7KnQ7liGEG66WuYhpwsXIs/Jn4CWivwFcE9utXqO3miR9F3yo8CzA9SlEYIO8mJz
+ S48J2Xa/NFQXlhb4AlL3Ojj6QfFHrJ9LFbeTIRRTLHJ28cwIrJSDi5dnULx3va0PyvFQLHatO+aH
+ Y7p9RcqkVwbWmTP/0i0VafdU/AZQSwMEFAAAAAgA5mGPUohk77V4BAAAMw4AADAAAABub2RlanMt
+ ZG9jcy1oZWxsby13b3JsZC8uZ2l0L2hvb2tzL3VwZGF0ZS5zYW1wbGWtV1Fv2zYQfrZ+xVU24tqw
+ 5SR7S5oMXYINfRgwbOnTUAS0TFlcZNITqbjqtv++j6RkS7IbJ0iMAKFJ3t13d9/d0f13s7mQM50G
+ /aBPHyXxr2y1zjilSj2QjnOxNmQUzTMVP1AhmZTKMMMXZNhSU5KrFXFpeC7kMoKGG5ZlOJyXFC6F
+ oZzHXDzy6ZrFDyFthEmJ5ctiBRF9gdNEshUnnbKzqcoWfiH5xoG5U9DM5sBiUqEdoAlEnITbSYQ9
+ UxQW6wUghZETu1EyEUsspu6DhZXUEYCpTcMBHBDdWT1zpTLOJGluNG1SblKe77u6EVlGc05ODzaF
+ hGlcdXpyvlZaGJWXEdFPJS14worM2POSNkoODUSjNpYFz7jh0H0EibuH8H4PxqtArNRCJOVxEMxa
+ pxUrrW0nJGCcJcg8xTlnRigZNYw6dSDAk77Pcybj9Lnu+9v8LUOw4LJ06J8HJecrZXhWVh4fwgSN
+ ouKWh/UEJJjBX+WFJa8nLRi8WjG5oExIHlQ1chUOzsIANZLzR6zPwwBl4tc/hLXgHyzhBuhSHj8E
+ IqE/afqNwsEvn+7ubz/9HtKXS4tIBj0epyibWxePvJAeS1XsrqQt8LgBIwrp+uS8FqT3UF6qgjZM
+ molbxaqw9Vus1whPZdAZs/rbwjQ4pQ9w65o+eH+w8M5cj+qbX0GdsyARQcONKhIhTZXf8NK7717J
+ npuFZkt+8YTVfaN1Hlwn6TaOq8F729pid4qLplzzK8uX7zSaUbBH+WepaAqMgi5Vj6no3m+hQC2/
+ AAJuV9LbbvEs6e3tkY2oYyUlKiepUASebegawTpXf/HY2C2o1SjoKafh2d/DHXVnjfvhKIiZ5jhs
+ CIaotiD8LC1BFo2SC8f0L4UQqbgwHo/pNy/WxOBHScq0bxDc1X2bFr3Ly4BrFm/J4dyxfmvsgKUV
+ /WxJn+ITRZH9N0ETHKLIXTUJN0p9ULEFNkbBN56rq/D0mZ/Q18OO61dYWxUN1vuje5cSbyvgmebt
+ gyp/zEyd61NT4x+5AqgiXJfcpDbohF2wezjTMzuSZuOJdw5R7vUxOKetyYlNnarc3NedbPBPter3
+ dzr+w7XKtW79hPQOXpq84A0ne42E3qFZda1OaNCyOrF5wXl7aGCvwRWf76bmz4jC0AbKDj+0IQY2
+ TTV9GToeu3lct0GbWRByzZaAEO10VezpIao9y6FW3Hx6fNwqWviINUOxLcKjgbitR6Wf1i/w+EmU
+ roItxG5emyi3xd5CSScn5N+Bj3gD5ghnzSm6JlT140wWGJzn1yfW+oHUwo1hLTKEK+hoixKPVKGN
+ jg5k7FcH4wUxOJqqFBa7HK9eC9sI1JNoV42gSjjo9mB34Yn83dTPClZZeH0Ka/QHmNZ1Ym/ovIRv
+ b4XXP7G68TY5fj/s3luHBQ4V057cW/ja0foqp8ce70dZQgYqbafG80pbBDmGRHP/R3u30Zzcrx43
+ cC/Q/x6k2kg3kEgl5H8S2aaEKO2KDifuRrude3RbcJ1J97OQQqd41LoLp8H/UEsDBBQAAAAIAOZh
+ j1Kz9TinKQAAACkAAAAuAAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9yZWZzL2hlYWRz
+ L21hc3RlcgXBwREAIAgDsL/TAKKUcbxW9x/BhNCs5NYLRjWuMQ64mi4LtcqRnRgfUEsDBBQAAAAI
+ AOZhj1Kz9TinKQAAACkAAAA3AAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9yZWZzL3Jl
+ bW90ZXMvb3JpZ2luL21hc3RlcgXBwREAIAgDsL/TAKKUcbxW9x/BhNCs5NYLRjWuMQ64mi4LtcqR
+ nRgfUEsBAhQDFAAAAAgA5mGPUkHBd06PAgAAnwQAACwAAAAAAAAAAAAAAKSBAAAAAG5vZGVqcy1k
+ b2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9MSUNFTlNFUEsBAhQDFAAAAAgA5mGPUknoJoiG
+ BAAABgoAAC8AAAAAAAAAAAAAAKSB2QIAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVz
+ c0FwcC93ZWIuY29uZmlnUEsBAhQDFAAAAAgA5mGPUrrgEiLdAAAAQQEAAC0AAAAAAAAAAAAAAKSB
+ rAcAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9pbmRleC5qc1BLAQIUAxQA
+ AAAIAOZhj1KpIuVrYAEAAM0CAAAuAAAAAAAAAAAAAACkgdQIAABub2RlanMtZG9jcy1oZWxsby13
+ b3JsZC9teUV4cHJlc3NBcHAvUkVBRE1FLm1kUEsBAhQDFAAAAAgA5mGPUqmxxldlAQAAZwIAAC8A
+ AAAAAAAAAAAAAKSBgAoAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC8uZ2l0
+ aWdub3JlUEsBAhQDFAAAAAgA5mGPUqoMbt1MAAAAYQAAADYAAAAAAAAAAAAAAKSBMgwAAG5vZGVq
+ cy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9wYWNrYWdlLWxvY2suanNvblBLAQIUAxQA
+ AAAIAOZhj1KwNkdSrwAAABoBAAAxAAAAAAAAAAAAAACkgdIMAABub2RlanMtZG9jcy1oZWxsby13
+ b3JsZC9teUV4cHJlc3NBcHAvcGFja2FnZS5qc29uUEsBAhQDFAAAAAgA5mGPUiAQNdS4AAAAUQEA
+ ADEAAAAAAAAAAAAAAKSB0A0AAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkL215RXhwcmVzc0FwcC9w
+ cm9jZXNzLmpzb25QSwECFAMUAAAACADmYY9SXTKUHCkAAAApAAAAJgAAAAAAAAAAAAAApIHXDgAA
+ bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9PUklHX0hFQURQSwECFAMUAAAACADmYY9SQExn
+ l8oAAAA7AQAAIwAAAAAAAAAAAAAApIFEDwAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9j
+ b25maWdQSwECFAMUAAAACADmYY9SK2lzpxkAAAAXAAAAIQAAAAAAAAAAAAAApIFPEAAAbm9kZWpz
+ LWRvY3MtaGVsbG8td29ybGQvLmdpdC9IRUFEUEsBAhQDFAAAAAgA5mGPUjeLBx8/AAAASQAAACgA
+ AAAAAAAAAAAAAKSBpxAAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvZGVzY3JpcHRpb25Q
+ SwECFAMUAAAACADmYY9SPfM7AqkBAACpAgAAIgAAAAAAAAAAAAAApIEsEQAAbm9kZWpzLWRvY3Mt
+ aGVsbG8td29ybGQvLmdpdC9pbmRleFBLAQIUAxQAAAAIAOZhj1I5KNWtCwAAAAkAAAArAAAAAAAA
+ AAAAAACkgRUTAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L0NPTU1JVF9FRElUTVNHUEsB
+ AhQDFAAAAAgA5mGPUocu59pmAAAAbgAAACcAAAAAAAAAAAAAAKSBaRMAAG5vZGVqcy1kb2NzLWhl
+ bGxvLXdvcmxkLy5naXQvRkVUQ0hfSEVBRFBLAQIUAxQAAAAIAOZhj1J6WOlb7gAAAOkAAABOAAAA
+ AAAAAAAAAACkgRQUAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNjEvMzU3
+ Y2Q0OThlYmYxZGMzOWZiNTc1YmM5NGRmZmQ5NmZiNzBkOWRQSwECFAMUAAAACADmYY9S9mfZRKQA
+ AACfAAAATgAAAAAAAAAAAAAApIFuFQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmpl
+ Y3RzLzliL2YyODI4NzUwMDkzOTNmOGQxMzQwYzY1YWFiYjFkNzRkNWY2ZjA1UEsBAhQDFAAAAAgA
+ 5mGPUl5QgfK1AAAAsAAAAE4AAAAAAAAAAAAAAKSBfhYAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxk
+ Ly5naXQvb2JqZWN0cy81OC8zYTc1NjU5M2JjZTc2ZTI2YzZjYzc0NGMxOWRmMjljYTc2MjdhMFBL
+ AQIUAxQAAAAIAOZhj1LQyTGGPgEAADkBAABOAAAAAAAAAAAAAACkgZ8XAABub2RlanMtZG9jcy1o
+ ZWxsby13b3JsZC8uZ2l0L29iamVjdHMvMGIvYWFkZjVkNDhiMmMyNmZmYTdjODgxMDAxMGEyYjA4
+ ODBmNmFjYWRQSwECFAMUAAAACADmYY9S1S0xIO4AAADpAAAATgAAAAAAAAAAAAAApIFJGQAAbm9k
+ ZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzYwL2Q5MTg5MGIwNWRkNDc0ZmE1ZjJj
+ ZGRjY2I5MGEyMzIyZDJhNGU5UEsBAhQDFAAAAAgA5mGPUl5CN0QgAQAAGwEAAE4AAAAAAAAAAAAA
+ AKSBoxoAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy81Zi85ZTI3OWM3NmU2
+ ZjdmNjczMDRiZDdjZTRkNjBjZDA5MTgyMjRmOVBLAQIUAxQAAAAIAOZhj1KbBWuQPwEAADoBAABO
+ AAAAAAAAAAAAAACkgS8cAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvMzMv
+ NDRmM2UxYWVkOTUzM2ZjMDg4MTI4ZmRkYzZjM2ZkMjdjYzdiNDRQSwECFAMUAAAACADmYY9SPdfg
+ IHgBAABzAQAATgAAAAAAAAAAAAAApIHaHQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9v
+ YmplY3RzLzljLzQ0MWEyOTQ4ZWY4ODFjMWMxOGVjNGU4NTMxZGRiZWY5N2I5YWY2UEsBAhQDFAAA
+ AAgA5mGPUhwoF1e4AAAAswAAAE4AAAAAAAAAAAAAAKSBvh8AAG5vZGVqcy1kb2NzLWhlbGxvLXdv
+ cmxkLy5naXQvb2JqZWN0cy9hNC8yYTVjMGNmMDU4Yjg2ZGUyZjQ2OTBjZjE2NWFkYzFkZjFlYzY4
+ ZFBLAQIUAxQAAAAIAOZhj1ILS/VZOAAAADMAAABOAAAAAAAAAAAAAACkgeIgAABub2RlanMtZG9j
+ cy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYTMvODEwNTRhMWY5MDgyYjBlODEzYWM3OGQ4YjUw
+ ZGRkNDFkZGUwOGFQSwECFAMUAAAACADmYY9SmGfCVE0AAABIAAAATgAAAAAAAAAAAAAApIGGIQAA
+ bm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2Q5LzBjNmNkYTI2MjI0NGY1ODI2
+ OGYyMWYzZjk2ZTdkODc3OWQyYTU2UEsBAhQDFAAAAAgA5mGPUv5REIFcAAAAVwAAAE4AAAAAAAAA
+ AAAAAKSBPyIAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9hYy9jN2ZhM2Zk
+ ZWNkNTdhOGIwYTU0MzZlOGFlOWM3ODI2YTM2NmMyZlBLAQIUAxQAAAAIAOZhj1K19jm91gAAANEA
+ AABOAAAAAAAAAAAAAACkgQcjAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMv
+ YmUvNzhlMWZlY2FmODY3NTgyNDMxOGZhZDAyMzE1ODYzYjBjY2I0NzRQSwECFAMUAAAACADmYY9S
+ HsOevyABAAAbAQAATgAAAAAAAAAAAAAApIFJJAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdp
+ dC9vYmplY3RzL2RmLzlmNjYzN2U0MmRmZWMzZDJlMjEwYjlhMTY2N2RjZGJlNjc0MDExUEsBAhQD
+ FAAAAAgA5mGPUr6QNY8+AQAAOQEAAE4AAAAAAAAAAAAAAKSB1SUAAG5vZGVqcy1kb2NzLWhlbGxv
+ LXdvcmxkLy5naXQvb2JqZWN0cy9hZS9iNGQ5MGEzMDEzN2E4Zjk0NDkxOTIzYzg0Yzc4YWQ3OGFj
+ OTJjZVBLAQIUAxQAAAAIAOZhj1LJr2VaPgEAADkBAABOAAAAAAAAAAAAAACkgX8nAABub2RlanMt
+ ZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZjQvZWQ3MzliOWE3NWI1YjIzNjNlMzNkMWMz
+ ZWY5N2U1NmI0OTM2N2JQSwECFAMUAAAACADmYY9SR12PMrgAAACzAAAATgAAAAAAAAAAAAAApIEp
+ KQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2VlLzZlN2ZiOTZiYWQ0NGY3
+ ZmI1OTM0ODkzZDYxNDExYzJjZTA4MjY0UEsBAhQDFAAAAAgA5mGPUhXvVkDuAAAA6QAAAE4AAAAA
+ AAAAAAAAAKSBTSoAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9lZS83MmI0
+ M2JmNjhjZWEyZjA2MzVjYzAxNWRkZWM2ODE3ZTU1ZDc2NFBLAQIUAxQAAAAIAOZhj1J/fOhIPgEA
+ ADkBAABOAAAAAAAAAAAAAACkgacrAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVj
+ dHMvY2YvYmU5NDIxMzUwNjE2NDk3NGViYjcyZDlmZTFhNWM3ZjJlMmVmZjBQSwECFAMUAAAACADm
+ YY9S9T3A4tUAAADQAAAATgAAAAAAAAAAAAAApIFRLQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQv
+ LmdpdC9vYmplY3RzL2M4L2QzNzRjNmRmMmMyNzk4ZTBjMmE4YzU5YzFkMDJkOWQ3MTg0OTQ4UEsB
+ AhQDFAAAAAgA5mGPUlph424lNQAA7TYAAFwAAAAAAAAAAAAAAKSBki4AAG5vZGVqcy1kb2NzLWhl
+ bGxvLXdvcmxkLy5naXQvb2JqZWN0cy9wYWNrL3BhY2stY2E1ZjIxODkwNTUzOGVkNzNhZTg1ZGNi
+ MzA4ZmY2NTcyNzM2NTJiMy5wYWNrUEsBAhQDFAAAAAgA5mGPUioldayrBwAAFAsAAFsAAAAAAAAA
+ AAAAAKSBMWQAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9wYWNrL3BhY2st
+ Y2E1ZjIxODkwNTUzOGVkNzNhZTg1ZGNiMzA4ZmY2NTcyNzM2NTJiMy5pZHhQSwECFAMUAAAACADm
+ YY9SQR6qpKAAAACbAAAATgAAAAAAAAAAAAAApIFVbAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQv
+ LmdpdC9vYmplY3RzLzFmLzgyYzRlNmNmMDgzNTJmMmY4ZDQ1YmQ5Njk5ZWZiNzEzMzUxMTdiUEsB
+ AhQDFAAAAAgA5mGPUgI3WvLgAQAA2wEAAE4AAAAAAAAAAAAAAKSBYW0AAG5vZGVqcy1kb2NzLWhl
+ bGxvLXdvcmxkLy5naXQvb2JqZWN0cy83My9lNjA0ZWZhNTRjYzY5OWM0YjNkMjA3ZDJkNzE4MWNm
+ Y2U5YWIzZVBLAQIUAxQAAAAIAOZhj1JxP2WTtQAAALAAAABOAAAAAAAAAAAAAACkga1vAABub2Rl
+ anMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvODAvYjJkMGMyNTYyN2RjNDk5MGVlZDli
+ ZGZkMGUwODExOWVkMGUyNWRQSwECFAMUAAAACADmYY9Sofppnt8BAADaAQAATgAAAAAAAAAAAAAA
+ pIHOcAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzc0L2NlYTZkZjJiMzYw
+ ZTE3MWViNWRlMGQwZDBiMGUxMWVjZmUzZjVjUEsBAhQDFAAAAAgA5mGPUl9QMjA5AAAANAAAAE4A
+ AAAAAAAAAAAAAKSBGXMAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8yOC9l
+ NzZkYjM1OTU1ZjQ2ZTEyMmM3OGNmYmE3OTQ5ZjFkY2E3NWMwYVBLAQIUAxQAAAAIAOZhj1I4GZfv
+ OAAAADMAAABOAAAAAAAAAAAAAACkgb5zAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29i
+ amVjdHMvNGMvN2RiNTAzMmNmNDVmYmE2ZWMwMjI3Yjc1OWM5ZDBjODA4MTk3ZGNQSwECFAMUAAAA
+ CADmYY9S11lMV64CAACpAgAATgAAAAAAAAAAAAAApIFidAAAbm9kZWpzLWRvY3MtaGVsbG8td29y
+ bGQvLmdpdC9vYmplY3RzLzIxLzA3MTA3NWMyNDU5OWVlOTgyNTRmNzAyYmNmYzUwNGNkYzI3NWE2
+ UEsBAhQDFAAAAAgA5mGPUnwgemlNAAAASAAAAE4AAAAAAAAAAAAAAKSBfHcAAG5vZGVqcy1kb2Nz
+ LWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8yMS9kYWMzNTViYjM3ZDhhMGJlMjA0OTg1ZjcxOTJl
+ MGRjMmMzMGE0ZlBLAQIUAxQAAAAIAOZhj1JkSvU0uAAAALMAAABOAAAAAAAAAAAAAACkgTV4AABu
+ b2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvNmUvZjgzNjU5NjQ0MjA0YTk0NzNh
+ YzkwYjllNWE3OTk2OTQyNWY2OWVQSwECFAMUAAAACADmYY9SGMzo7KEAAACcAAAATgAAAAAAAAAA
+ AAAApIFZeQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzAxLzA0ZGI2ODIy
+ YTBkZGZiZjUwM2U2Y2Y0Y2QyYzNjMjI5ZDE4YjE5UEsBAhQDFAAAAAgA5mGPUgv+5my5AAAAtAAA
+ AE4AAAAAAAAAAAAAAKSBZnoAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8w
+ Ni83Y2UyNWQwNjY1NWNkMjY5MDhjMzZjMDc1ZDY1ZmNlYjg0NDkyZlBLAQIUAxQAAAAIAOZhj1JV
+ 8wO8HwEAABoBAABOAAAAAAAAAAAAAACkgYt7AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0
+ L29iamVjdHMvOTkvOGU5YTdhY2FkZjIwNjIzZTUwNzZmMjk0NmY0N2EyZTUwNjliZjJQSwECFAMU
+ AAAACADmYY9SKaKThiABAAAbAQAATgAAAAAAAAAAAAAApIEWfQAAbm9kZWpzLWRvY3MtaGVsbG8t
+ d29ybGQvLmdpdC9vYmplY3RzL2RkLzc5YzIwOWI2NDdmNDYzYzFjMjVhZDhhZjE5ZWIxN2ZmOTgx
+ YmI3UEsBAhQDFAAAAAgA5mGPUnEWxUxNAAAASAAAAE4AAAAAAAAAAAAAAKSBon4AAG5vZGVqcy1k
+ b2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9hYS9kMjkyZmFhMmU1Zjc1NGFmYjZjYmFmNDVj
+ YTgxYzBhYTg1NTVmMlBLAQIUAxQAAAAIAOZhj1IEyxdB7QAAAOgAAABOAAAAAAAAAAAAAACkgVt/
+ AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvYWYvNWVhNTQ1MGEwZWFmYjE2
+ NmRhMjQ2YTdjYjZhNzZkYWU4NjY4MTFQSwECFAMUAAAACADmYY9Sq8C8INgAAADTAAAATgAAAAAA
+ AAAAAAAApIG0gAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2I3L2I3YjZm
+ Mzg1NDAyMjlmNzE5YTkzNTc2MmIwYjVmOTQ5OGZmZDQ1UEsBAhQDFAAAAAgA5mGPUon+aDpMAAAA
+ RwAAAE4AAAAAAAAAAAAAAKSB+IEAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0
+ cy9kZS9jYzMxMjhmOGI5MGUyMGM4NGNiZjNmOTBjMTZlNzhhYzFjY2MwNlBLAQIUAxQAAAAIAOZh
+ j1J9Cl6iPgEAADkBAABOAAAAAAAAAAAAAACkgbCCAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8u
+ Z2l0L29iamVjdHMvZTYvZDFhMzU3MjMxZDQyNGY4ZjZkODdlMGNhNzQ2MTE5ZWJhM2VjYWFQSwEC
+ FAMUAAAACADmYY9SsWK1vjgAAAAzAAAATgAAAAAAAAAAAAAApIFahAAAbm9kZWpzLWRvY3MtaGVs
+ bG8td29ybGQvLmdpdC9vYmplY3RzL2YwL2FhZDEwNjBmZmU4M2FiMzVhMDllYzhkZDJiZTBkYmQz
+ OTliMmZjUEsBAhQDFAAAAAgA5mGPUvO185ZoAAAAYwAAAE4AAAAAAAAAAAAAAKSB/oQAAG5vZGVq
+ cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy9mMC9jOGEzNmI1YWRhNTIzMDUyYzcxODFm
+ NDhmOTYyYTg1OWU4YjM3N1BLAQIUAxQAAAAIAOZhj1LgLS+ZPgEAADkBAABOAAAAAAAAAAAAAACk
+ gdKFAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvZjcvNDkxYjgzNTJlMGIz
+ ZGZiMWQ5Y2E2ODc0MDNlYWIxOGUxNDViNzdQSwECFAMUAAAACADmYY9SeGMuc6MAAACeAAAATgAA
+ AAAAAAAAAAAApIF8hwAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2Y3L2Iz
+ NWQ1ZDhkOWM4MDNlM2YyZWU1M2U5YTdjYmFmNDM0NjMxOTBhUEsBAhQDFAAAAAgA5mGPUlFYie/u
+ AAAA6QAAAE4AAAAAAAAAAAAAAKSBi4gAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2Jq
+ ZWN0cy9mYS8xYTc2NWYyZGY4YTUxZWJlMTgzNTE5MGI1MzI3ZTU0NTQyZGJjMFBLAQIUAxQAAAAI
+ AOZhj1IeGiQvggAAAH0AAABOAAAAAAAAAAAAAACkgeWJAABub2RlanMtZG9jcy1oZWxsby13b3Js
+ ZC8uZ2l0L29iamVjdHMvY2IvNjBhNzA0ZmUyZThjODNhMjIzYjcyOWJiMjhjNGU4MWQzYjQ5OGFQ
+ SwECFAMUAAAACADmYY9SVxA9trUAAACwAAAATgAAAAAAAAAAAAAApIHTigAAbm9kZWpzLWRvY3Mt
+ aGVsbG8td29ybGQvLmdpdC9vYmplY3RzL2UwL2M3MGQ5YmZkZTA5ZTgyZGRlMjIxM2M3MmY1ZDQ0
+ NDM5NzQ2NzRkUEsBAhQDFAAAAAgA5mGPUnThnirtAAAA6AAAAE4AAAAAAAAAAAAAAKSB9IsAAG5v
+ ZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy80MS85MmEwZWQ3OWU5OTljNGRhMWMx
+ Y2JkMzRjYzBiZjU3MWI3OWFiNVBLAQIUAxQAAAAIAOZhj1L3+GckPwEAADoBAABOAAAAAAAAAAAA
+ AACkgU2NAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvODMvMzQ3Mzc1NWU5
+ Y2RmMDFiYzVkMDAzMDg5MDYyMWI3YmNhZDlkYWZQSwECFAMUAAAACADmYY9SmZfN8B8BAAAaAQAA
+ TgAAAAAAAAAAAAAApIH4jgAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzIz
+ L2JjYzhmZDVhMjhiZjZkMWU1ODc2M2Q1NTNlMGM3YjZjZGUzYTNkUEsBAhQDFAAAAAgA5mGPUtG2
+ vNy2AAAAsQAAAE4AAAAAAAAAAAAAAKSBg5AAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQv
+ b2JqZWN0cy84Yy9kNDdkZDZmMmRiZWUxOWFmOTVkOTcwZGI1MDhiNmE0NWI4ZThlNFBLAQIUAxQA
+ AAAIAOZhj1KBijgJ2QEAANQBAABOAAAAAAAAAAAAAACkgaWRAABub2RlanMtZG9jcy1oZWxsby13
+ b3JsZC8uZ2l0L29iamVjdHMvMWQvMDIyNWIwMDkyYzEyNTM0NWMwMTNlYzFmMGFkOWM0ZjQ2YjAx
+ NmJQSwECFAMUAAAACADmYY9SaqfyJq8AAACqAAAATgAAAAAAAAAAAAAApIHqkwAAbm9kZWpzLWRv
+ Y3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3RzLzEzL2U4YzYyZGQzYjA0MTQyMGEzZDJhZTFiMzg5
+ MDEzM2ZmMTRlZmMyUEsBAhQDFAAAAAgA5mGPUhN4xB+uAAAAqQAAAE4AAAAAAAAAAAAAAKSBBZUA
+ AG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvb2JqZWN0cy8xMy8yZTE3MWJjY2ZhZjBjNTFk
+ NjRkNTM4MGFlMWIzZTBiMTU0YWNlNFBLAQIUAxQAAAAIAOZhj1J0XLoJOAAAADMAAABOAAAAAAAA
+ AAAAAACkgR+WAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L29iamVjdHMvN2YvZTJhMDll
+ YTU1OGJkNTZkYjc4YTk5ZmViNDlhMjU4ZjU3NzkyNzRQSwECFAMUAAAACADmYY9SMYCVUd4BAADZ
+ AQAATgAAAAAAAAAAAAAApIHDlgAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9vYmplY3Rz
+ LzhlLzc3YzNkZjlkYzY4MzIyODhlMzBiMjlkM2U1MDU1MmNmZTM3Mjk4UEsBAhQDFAAAAAgA5mGP
+ Unc9zSGtAAAA8AAAACkAAAAAAAAAAAAAAKSBDZkAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n
+ aXQvaW5mby9leGNsdWRlUEsBAhQDFAAAAAgA5mGPUvCAxP02AgAAdQcAACYAAAAAAAAAAAAAAKSB
+ AZoAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvbG9ncy9IRUFEUEsBAhQDFAAAAAgA5mGP
+ UvCAxP02AgAAdQcAADMAAAAAAAAAAAAAAKSBe5wAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n
+ aXQvbG9ncy9yZWZzL2hlYWRzL21hc3RlclBLAQIUAxQAAAAIAOZhj1KEl+mBugEAAHsGAAA8AAAA
+ AAAAAAAAAACkgQKfAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2xvZ3MvcmVmcy9yZW1v
+ dGVzL29yaWdpbi9tYXN0ZXJQSwECFAMUAAAACADmYY9S6fjKEPcBAACAAwAANAAAAAAAAAAAAAAA
+ pIEWoQAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9jb21taXQtbXNnLnNhbXBs
+ ZVBLAQIUAxQAAAAIAOZhj1KE7FhR3wcAACITAAA0AAAAAAAAAAAAAACkgV+jAABub2RlanMtZG9j
+ cy1oZWxsby13b3JsZC8uZ2l0L2hvb2tzL3ByZS1yZWJhc2Uuc2FtcGxlUEsBAhQDFAAAAAgA5mGP
+ Uu+zMgyMAwAAawYAADQAAAAAAAAAAAAAAKSBkKsAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n
+ aXQvaG9va3MvcHJlLWNvbW1pdC5zYW1wbGVQSwECFAMUAAAACADmYY9ShU/4CRcBAADeAQAAOAAA
+ AAAAAAAAAAAApIFurwAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9hcHBseXBh
+ dGNoLW1zZy5zYW1wbGVQSwECFAMUAAAACADmYY9SULmYY/8GAAAvEgAAPAAAAAAAAAAAAAAApIHb
+ sAAAbm9kZWpzLWRvY3MtaGVsbG8td29ybGQvLmdpdC9ob29rcy9mc21vbml0b3Itd2F0Y2htYW4u
+ c2FtcGxlUEsBAhQDFAAAAAgA5mGPUpLE+JZJAQAAIAIAADUAAAAAAAAAAAAAAKSBNLgAAG5vZGVq
+ cy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaG9va3MvcHJlLXJlY2VpdmUuc2FtcGxlUEsBAhQDFAAA
+ AAgA5mGPUu0TNjDoAgAA1AUAADwAAAAAAAAAAAAAAKSB0LkAAG5vZGVqcy1kb2NzLWhlbGxvLXdv
+ cmxkLy5naXQvaG9va3MvcHJlcGFyZS1jb21taXQtbXNnLnNhbXBsZVBLAQIUAxQAAAAIAOZhj1Ka
+ DPfAigAAAL0AAAA1AAAAAAAAAAAAAACkgRK9AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0
+ L2hvb2tzL3Bvc3QtdXBkYXRlLnNhbXBsZVBLAQIUAxQAAAAIAOZhj1JEP/Ne/wAAAKABAAA6AAAA
+ AAAAAAAAAACkge+9AABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L2hvb2tzL3ByZS1tZXJn
+ ZS1jb21taXQuc2FtcGxlUEsBAhQDFAAAAAgA5mGPUs/ATAIJAQAAqAEAADgAAAAAAAAAAAAAAKSB
+ Rr8AAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5naXQvaG9va3MvcHJlLWFwcGx5cGF0Y2guc2Ft
+ cGxlUEsBAhQDFAAAAAgA5mGPUgTYj7GdAgAARAUAADIAAAAAAAAAAAAAAKSBpcAAAG5vZGVqcy1k
+ b2NzLWhlbGxvLXdvcmxkLy5naXQvaG9va3MvcHJlLXB1c2guc2FtcGxlUEsBAhQDFAAAAAgA5mGP
+ Uohk77V4BAAAMw4AADAAAAAAAAAAAAAAAKSBksMAAG5vZGVqcy1kb2NzLWhlbGxvLXdvcmxkLy5n
+ aXQvaG9va3MvdXBkYXRlLnNhbXBsZVBLAQIUAxQAAAAIAOZhj1Kz9TinKQAAACkAAAAuAAAAAAAA
+ AAAAAACkgVjIAABub2RlanMtZG9jcy1oZWxsby13b3JsZC8uZ2l0L3JlZnMvaGVhZHMvbWFzdGVy
+ UEsBAhQDFAAAAAgA5mGPUrP1OKcpAAAAKQAAADcAAAAAAAAAAAAAAKSBzcgAAG5vZGVqcy1kb2Nz
+ LWhlbGxvLXdvcmxkLy5naXQvcmVmcy9yZW1vdGVzL29yaWdpbi9tYXN0ZXJQSwUGAAAAAFkAWQBZ
+ JwAAS8kAAAAA
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '61626'
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - AZURECLI/2.22.0
+ method: POST
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/zipdeploy?isAsync=true
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Thu, 15 Apr 2021 19:16:09 GMT
+ expires:
+ - '-1'
+ location:
+ - https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest?deployer=ZipDeploy&time=2021-04-15_19-16-09Z
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ set-cookie:
+ - ARRAffinity=677ccf51ddbc35769908cc4f1d3bf6727dd496b2b396a5ba3254b729dd1c8513;Path=/;HttpOnly;Secure;Domain=up-nodeappem23h6sngyclmz.scm.azurewebsites.net
+ - ARRAffinitySameSite=677ccf51ddbc35769908cc4f1d3bf6727dd496b2b396a5ba3254b729dd1c8513;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappem23h6sngyclmz.scm.azurewebsites.net
+ x-aspnet-version:
+ - 4.0.30319
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - AZURECLI/2.22.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"0f140ae3f33c4c52ac601237149a736d","status":1,"status_text":"Building
+ and Deploying ''0f140ae3f33c4c52ac601237149a736d''.","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"Running deployment command...","received_time":"2021-04-15T19:16:10.1839778Z","start_time":"2021-04-15T19:16:10.4183622Z","end_time":null,"last_success_end_time":null,"complete":false,"active":false,"is_temp":false,"is_readonly":true,"url":null,"log_url":null,"site_name":"up-nodeapp000003","provisioningState":"InProgress"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '572'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 19:16:13 GMT
+ expires:
+ - '-1'
+ location:
+ - https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ set-cookie:
+ - ARRAffinity=677ccf51ddbc35769908cc4f1d3bf6727dd496b2b396a5ba3254b729dd1c8513;Path=/;HttpOnly;Secure;Domain=up-nodeappem23h6sngyclmz.scm.azurewebsites.net
+ - ARRAffinitySameSite=677ccf51ddbc35769908cc4f1d3bf6727dd496b2b396a5ba3254b729dd1c8513;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappem23h6sngyclmz.scm.azurewebsites.net
+ x-aspnet-version:
+ - 4.0.30319
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Cache-Control:
+ - no-cache
+ Connection:
+ - keep-alive
+ Content-Type:
+ - application/octet-stream
+ User-Agent:
+ - AZURECLI/2.22.0
+ method: GET
+ uri: https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/mock-deployment
+ response:
+ body:
+ string: '{"id":"0f140ae3f33c4c52ac601237149a736d","status":4,"status_text":"","author_email":"N/A","author":"N/A","deployer":"ZipDeploy","message":"Created
+ via a push deployment","progress":"","received_time":"2021-04-15T19:16:10.1839778Z","start_time":"2021-04-15T19:16:10.4183622Z","end_time":"2021-04-15T19:16:14.9134678Z","last_success_end_time":"2021-04-15T19:16:14.9134678Z","complete":true,"active":true,"is_temp":false,"is_readonly":true,"url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest","log_url":"https://up-nodeapp000003.scm.azurewebsites.net/api/deployments/latest/log","site_name":"up-nodeapp000003","provisioningState":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '688'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 19:16:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ set-cookie:
+ - ARRAffinity=677ccf51ddbc35769908cc4f1d3bf6727dd496b2b396a5ba3254b729dd1c8513;Path=/;HttpOnly;Secure;Domain=up-nodeappem23h6sngyclmz.scm.azurewebsites.net
+ - ARRAffinitySameSite=677ccf51ddbc35769908cc4f1d3bf6727dd496b2b396a5ba3254b729dd1c8513;Path=/;HttpOnly;SameSite=None;Secure;Domain=up-nodeappem23h6sngyclmz.scm.azurewebsites.net
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-167.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T19:15:59.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"13.89.172.11","possibleInboundIpAddresses":"13.89.172.11","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-167.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37","possibleOutboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37,40.113.224.199,40.122.118.225,40.122.116.133,40.122.126.193,40.122.104.60","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-167","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5758'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:16:16 GMT
+ etag:
+ - '"1D7322BC47C9340"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp show
+ Connection:
+ - keep-alive
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-167.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":null,"csrs":[],"cers":null,"siteMode":null,"hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":null,"serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T19:15:59.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"13.89.172.11","possibleInboundIpAddresses":"13.89.172.11","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-167.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37","possibleOutboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37,40.113.224.199,40.122.118.225,40.122.116.133,40.122.126.193,40.122.104.60","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-167","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":[],"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5758'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:16:17 GMT
+ etag:
+ - '"1D7322BC47C9340"'
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp show
+ Connection:
+ - keep-alive
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/config/web","name":"up-nodeapp000003","type":"Microsoft.Web/sites/config","location":"Central
+ US","properties":{"numberOfWorkers":1,"defaultDocuments":["Default.htm","Default.html","Default.asp","index.htm","index.html","iisstart.htm","default.aspx","index.php","hostingstart.html"],"netFrameworkVersion":"v4.0","phpVersion":"5.6","pythonVersion":"","nodeVersion":"","powerShellVersion":"","linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":false,"remoteDebuggingEnabled":false,"remoteDebuggingVersion":null,"httpLoggingEnabled":true,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":100,"detailedErrorLoggingEnabled":false,"publishingUsername":"$up-nodeapp000003","publishingPassword":null,"appSettings":null,"azureStorageAccounts":{},"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":"None","use32BitWorkerProcess":true,"webSocketsEnabled":false,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":"","managedPipelineMode":"Integrated","virtualApplications":[{"virtualPath":"/","physicalPath":"site\\wwwroot","preloadEnabled":true,"virtualDirectories":null}],"winAuthAdminState":0,"winAuthTenantState":0,"customAppPoolIdentityAdminState":false,"customAppPoolIdentityTenantState":false,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":"LeastRequests","routingRules":[],"experiments":{"rampUpRules":[]},"limits":null,"autoHealEnabled":false,"autoHealRules":null,"tracingOptions":null,"vnetName":"","vnetRouteAllEnabled":false,"vnetPrivatePortsCount":0,"siteAuthEnabled":false,"siteAuthSettings":{"enabled":null,"configVersion":null,"unauthenticatedClientAction":null,"tokenStoreEnabled":null,"allowedExternalRedirectUrls":null,"defaultProvider":null,"clientId":null,"clientSecret":null,"clientSecretSettingName":null,"clientSecretCertificateThumbprint":null,"issuer":null,"allowedAudiences":null,"additionalLoginParams":null,"isAadAutoProvisioned":false,"aadClaimsAuthorization":null,"googleClientId":null,"googleClientSecret":null,"googleClientSecretSettingName":null,"googleOAuthScopes":null,"facebookAppId":null,"facebookAppSecret":null,"facebookAppSecretSettingName":null,"facebookOAuthScopes":null,"gitHubClientId":null,"gitHubClientSecret":null,"gitHubClientSecretSettingName":null,"gitHubOAuthScopes":null,"twitterConsumerKey":null,"twitterConsumerSecret":null,"twitterConsumerSecretSettingName":null,"microsoftAccountClientId":null,"microsoftAccountClientSecret":null,"microsoftAccountClientSecretSettingName":null,"microsoftAccountOAuthScopes":null},"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":false,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictions":[{"ipAddress":"Any","action":"Allow","priority":1,"name":"Allow
+ all","description":"Allow all access"}],"scmIpSecurityRestrictionsUseMain":false,"http20Enabled":true,"minTlsVersion":"1.2","scmMinTlsVersion":"1.0","ftpsState":"AllAllowed","preWarmedInstanceCount":0,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":false,"functionsRuntimeScaleMonitoringEnabled":false,"websiteTimeZone":null,"minimumElasticInstanceCount":0}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3674'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:16:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"format": "WebDeploy"}'
+ headers:
+ Accept:
+ - application/xml
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp show
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '23'
+ Content-Type:
+ - application/json
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003/publishxml?api-version=2020-09-01
+ response:
+ body:
+ string:
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2251'
+ content-type:
+ - application/xml
+ date:
+ - Thu, 15 Apr 2021 19:16:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-resource-requests:
+ - '11999'
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"name": "up-nodeapp000003", "type": "Site"}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '52'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/checknameavailability?api-version=2020-09-01
+ response:
+ body:
+ string: '{"nameAvailable":false,"reason":"AlreadyExists","message":"Hostname
+ ''up-nodeapp000003'' already exists. Please select a different name."}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '144'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:16:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web/sites?api-version=2020-09-01
+ response:
+ body:
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgorw6cz4jw2ltpnuqw6bk7c3nh6lci43xgmkn76dfcrh5narrbjrucasdh4hqubc7n/providers/Microsoft.Web/sites/functionappkeysbywja6bgvx3kamtiup5j54rce","name":"functionappkeysbywja6bgvx3kamtiup5j54rce","type":"Microsoft.Web/sites","kind":"functionapp","location":"France
+ Central","properties":{"name":"functionappkeysbywja6bgvx3kamtiup5j54rce","state":"Running","hostNames":["functionappkeysbywja6bgvx3kamtiup5j54rce.azurewebsites.net"],"webSpace":"clitest.rgorw6cz4jw2ltpnuqw6bk7c3nh6lci43xgmkn76dfcrh5narrbjrucasdh4hqubc7n-FranceCentralwebspace","selfLink":"https://waws-prod-par-009.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgorw6cz4jw2ltpnuqw6bk7c3nh6lci43xgmkn76dfcrh5narrbjrucasdh4hqubc7n-FranceCentralwebspace/sites/functionappkeysbywja6bgvx3kamtiup5j54rce","repositorySiteName":"functionappkeysbywja6bgvx3kamtiup5j54rce","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["functionappkeysbywja6bgvx3kamtiup5j54rce.azurewebsites.net","functionappkeysbywja6bgvx3kamtiup5j54rce.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"functionappkeysbywja6bgvx3kamtiup5j54rce.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"functionappkeysbywja6bgvx3kamtiup5j54rce.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgorw6cz4jw2ltpnuqw6bk7c3nh6lci43xgmkn76dfcrh5narrbjrucasdh4hqubc7n/providers/Microsoft.Web/serverfarms/functionappkeysplanikjpvdua6abepduomy3v6","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T06:57:02.7566667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"functionappkeysbywja6bgvx3kamtiup5j54rce","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"40.79.130.130","possibleInboundIpAddresses":"40.79.130.130","ftpUsername":"functionappkeysbywja6bgvx3kamtiup5j54rce\\$functionappkeysbywja6bgvx3kamtiup5j54rce","ftpsHostName":"ftps://waws-prod-par-009.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143","possibleOutboundIpAddresses":"40.79.130.130,40.89.166.214,40.89.172.87,20.188.45.116,40.89.133.143,40.89.148.203,20.188.44.60,20.188.45.105,20.188.44.152,20.188.43.156","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-par-009","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgorw6cz4jw2ltpnuqw6bk7c3nh6lci43xgmkn76dfcrh5narrbjrucasdh4hqubc7n","defaultHostName":"functionappkeysbywja6bgvx3kamtiup5j54rce.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-RG/providers/Microsoft.Web/sites/sisirap-test-app-multicontainer","name":"sisirap-test-app-multicontainer","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East
+ US","properties":{"name":"sisirap-test-app-multicontainer","state":"Running","hostNames":["sisiraptestdomains.com","foo.sisiraptestdomains.com","sisirap-test-app-multicontainer.azurewebsites.net"],"webSpace":"sisirap-RG-EastUSwebspace","selfLink":"https://waws-prod-blu-191.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/sisirap-RG-EastUSwebspace/sites/sisirap-test-app-multicontainer","repositorySiteName":"sisirap-test-app-multicontainer","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["foo.sisiraptestdomains.com","sisiraptestdomains.com","sisirap-test-app-multicontainer.azurewebsites.net","sisirap-test-app-multicontainer.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcDoxLjAiCiAgICBwb3J0czoKICAgICAtICI1MDAwOjUwMDAiCiAgcmVkaXM6CiAgICBpbWFnZTogInJlZGlzOmFscGluZSIK"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"foo.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisirap-test-app-multicontainer.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisirap-test-app-multicontainer.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-RG/providers/Microsoft.Web/serverfarms/sisirap-test-multicontainet","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-08T03:57:30.12","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"sisirap-test-app-multicontainer","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"20.49.104.3","possibleInboundIpAddresses":"20.49.104.3","ftpUsername":"sisirap-test-app-multicontainer\\$sisirap-test-app-multicontainer","ftpsHostName":"ftps://waws-prod-blu-191.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225,20.49.104.3","possibleOutboundIpAddresses":"52.188.143.242,40.71.235.172,40.71.236.147,40.71.236.232,40.71.238.92,52.142.34.225,52.149.246.34,52.179.115.42,52.179.118.77,52.191.94.124,52.224.89.255,52.224.92.113,52.226.52.76,52.226.52.105,52.226.52.106,52.226.53.47,52.226.53.100,52.226.54.47,20.49.104.3","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-blu-191","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"sisirap-RG","defaultHostName":"sisirap-test-app-multicontainer.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnrv4x6izhip6zys5xkce45dl7p3ilq5jnquy3o56hhuhidn7ldu5d4fdtp7np7tfo/providers/Microsoft.Web/sites/sisirap-multi-container","name":"sisirap-multi-container","type":"Microsoft.Web/sites","kind":"app,linux,container","location":"East
+ US 2","properties":{"name":"sisirap-multi-container","state":"Running","hostNames":["sisirap-multi-container.azurewebsites.net"],"webSpace":"clitest.rgnrv4x6izhip6zys5xkce45dl7p3ilq5jnquy3o56hhuhidn7ldu5d4fdtp7np7tfo-EastUS2webspace","selfLink":"https://waws-prod-bn1-065.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest.rgnrv4x6izhip6zys5xkce45dl7p3ilq5jnquy3o56hhuhidn7ldu5d4fdtp7np7tfo-EastUS2webspace/sites/sisirap-multi-container","repositorySiteName":"sisirap-multi-container","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["sisirap-multi-container.azurewebsites.net","sisirap-multi-container.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"COMPOSE|dmVyc2lvbjogJzMnCnNlcnZpY2VzOgogIHdlYjoKICAgIGltYWdlOiAicGF0bGUvcHl0aG9uX2FwcF9zbG90OmxhdGVzdCIKICAgIHBvcnRzOgogICAgIC0gIjUwMDA6NTAwMCIKICByZWRpczoKICAgIGltYWdlOiAicmVkaXM6YWxwaW5lIgo="},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"sisirap-multi-container.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisirap-multi-container.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgnrv4x6izhip6zys5xkce45dl7p3ilq5jnquy3o56hhuhidn7ldu5d4fdtp7np7tfo/providers/Microsoft.Web/serverfarms/plan-linux-multis5wqscaw","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-29T21:17:39.0066667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"sisirap-multi-container","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux,container","inboundIpAddress":"40.70.147.11","possibleInboundIpAddresses":"40.70.147.11","ftpUsername":"sisirap-multi-container\\$sisirap-multi-container","ftpsHostName":"ftps://waws-prod-bn1-065.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136","possibleOutboundIpAddresses":"40.70.147.11,52.177.23.145,52.184.147.38,52.177.119.222,52.177.22.136,104.209.253.237,104.46.96.136,40.70.28.239,52.177.127.186,52.184.147.42","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bn1-065","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest.rgnrv4x6izhip6zys5xkce45dl7p3ilq5jnquy3o56hhuhidn7ldu5d4fdtp7np7tfo","defaultHostName":"sisirap-multi-container.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-testRG/providers/Microsoft.Web/sites/sisirap-test-apexdomaintest","name":"sisirap-test-apexdomaintest","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US EUAP","properties":{"name":"sisirap-test-apexdomaintest","state":"Running","hostNames":["sisirap-test-apexdomaintest.azurewebsites.net"],"webSpace":"sisirap-testRG-CentralUSEUAPwebspace","selfLink":"https://waws-prod-euapdm1-505.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/sisirap-testRG-CentralUSEUAPwebspace/sites/sisirap-test-apexdomaintest","repositorySiteName":"sisirap-test-apexdomaintest","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["sisirap-test-apexdomaintest.azurewebsites.net","sisirap-test-apexdomaintest.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"sisirap-test-apexdomaintest.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisirap-test-apexdomaintest.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-testRG/providers/Microsoft.Web/serverfarms/ASP-sisiraptestRG-9559","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-05T19:38:49.9866667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":1,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":"","windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":true,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"publicNetworkAccess":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":false,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":0,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"sisirap-test-apexdomaintest","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.180.178.6","possibleInboundIpAddresses":"52.180.178.6,104.208.48.107","ftpUsername":"sisirap-test-apexdomaintest\\$sisirap-test-apexdomaintest","ftpsHostName":"ftps://waws-prod-euapdm1-505.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.180.180.111,52.180.178.55,52.180.181.60,52.180.180.253","possibleOutboundIpAddresses":"52.180.180.111,52.180.178.55,52.180.181.60,52.180.180.253,104.208.48.107,52.180.178.6","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-euapdm1-505","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"sisirap-testRG","defaultHostName":"sisirap-test-apexdomaintest.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false,"virtualNetworkSubnetId":null}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap_rg_Linux_westus/providers/Microsoft.Web/sites/mywebapp-SISIRAP","name":"mywebapp-SISIRAP","type":"Microsoft.Web/sites","kind":"app,linux","location":"West
+ US","properties":{"name":"mywebapp-SISIRAP","state":"Running","hostNames":["mywebapp-sisirap.azurewebsites.net"],"webSpace":"sisirap_rg_Linux_westus-WestUSwebspace","selfLink":"https://waws-prod-bay-143.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/sisirap_rg_Linux_westus-WestUSwebspace/sites/mywebapp-SISIRAP","repositorySiteName":"mywebapp-SISIRAP","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["mywebapp-sisirap.azurewebsites.net","mywebapp-sisirap.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":"NODE|12-lts"},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"mywebapp-sisirap.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"mywebapp-sisirap.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap_rg_Linux_westus/providers/Microsoft.Web/serverfarms/sisirap_asp_Linux_westus_0","reserved":true,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-01-14T19:46:24.3966667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"mywebapp-SISIRAP","slotName":null,"trafficManagerHostNames":null,"sku":"Basic","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app,linux","inboundIpAddress":"40.112.243.46","possibleInboundIpAddresses":"40.112.243.46","ftpUsername":"mywebapp-SISIRAP\\$mywebapp-SISIRAP","ftpsHostName":"ftps://waws-prod-bay-143.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83","possibleOutboundIpAddresses":"40.112.243.46,40.118.230.174,104.42.150.243,40.118.225.132,40.112.135.83,40.118.227.215,40.118.231.14,13.64.101.180,104.42.56.180,40.118.225.130","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-bay-143","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"sisirap_rg_Linux_westus","defaultHostName":"mywebapp-sisirap.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-RG/providers/Microsoft.Web/sites/sisirap-funcapp1","name":"sisirap-funcapp1","type":"Microsoft.Web/sites","kind":"functionapp","location":"Central
+ US","tags":{},"properties":{"name":"sisirap-funcapp1","state":"Running","hostNames":["sisirap-funcapp1.azurewebsites.net"],"webSpace":"cliTestApp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cliTestApp-CentralUSwebspace/sites/sisirap-funcapp1","repositorySiteName":"sisirap-funcapp1","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["sisirap-funcapp1.azurewebsites.net","sisirap-funcapp1.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"sisirap-funcapp1.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisirap-funcapp1.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/serverfarms/sisirap-testAsp3","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-03-31T05:00:28.6366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"sisirap-funcapp1","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":false,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"functionapp","inboundIpAddress":"52.173.249.137","possibleInboundIpAddresses":"52.173.249.137","ftpUsername":"sisirap-funcapp1\\$sisirap-funcapp1","ftpsHostName":"ftps://waws-prod-dm1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28","possibleOutboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28,52.173.202.202,52.173.200.111","containerSize":1536,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":{},"resourceGroup":"sisirap-RG","defaultHostName":"sisirap-funcapp1.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"FunctionAppLogs","storageAccountRequired":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sisirap-RG/providers/Microsoft.Web/sites/cliTestApp","name":"cliTestApp","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","tags":{"foo":"bar"},"properties":{"name":"cliTestApp","state":"Running","hostNames":["hi.sisiraptestdomains.com","sisiraptestdomains.com","clitestapp.azurewebsites.net"],"webSpace":"cliTestApp-CentralUSwebspace","selfLink":"https://waws-prod-dm1-027.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cliTestApp-CentralUSwebspace/sites/cliTestApp","repositorySiteName":"cliTestApp","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["hi.sisiraptestdomains.com","sisiraptestdomains.com","clitestapp.azurewebsites.net","clitestapp.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"clitestapp.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"hi.sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"sisiraptestdomains.com","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"clitestapp.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliTestApp/providers/Microsoft.Web/serverfarms/sisirap-testAsp3","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T06:31:44.0366667","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"clitestapp__2e80","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.173.249.137","possibleInboundIpAddresses":"52.173.249.137","ftpUsername":"cliTestApp\\$cliTestApp","ftpsHostName":"ftps://waws-prod-dm1-027.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28","possibleOutboundIpAddresses":"52.173.249.137,52.176.59.177,52.173.201.190,52.173.203.66,52.173.251.28,52.173.202.202,52.173.200.111","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-027","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"foo":"bar"},"resourceGroup":"sisirap-RG","defaultHostName":"clitestapp.azurewebsites.net","slotSwapStatus":{"timestampUtc":"2021-03-30T02:55:49.912Z","sourceSlotName":"slot1","destinationSlotName":"Production"},"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"e1f4848c-4bb2-4815-8f7b-590263daba4c"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/sites/up-nodeapp000003","name":"up-nodeapp000003","type":"Microsoft.Web/sites","kind":"app","location":"Central
+ US","properties":{"name":"up-nodeapp000003","state":"Running","hostNames":["up-nodeapp000003.azurewebsites.net"],"webSpace":"clitest000001-CentralUSwebspace","selfLink":"https://waws-prod-dm1-167.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/clitest000001-CentralUSwebspace/sites/up-nodeapp000003","repositorySiteName":"up-nodeapp000003","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["up-nodeapp000003.azurewebsites.net","up-nodeapp000003.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"up-nodeapp000003.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"up-nodeapp000003.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-15T19:15:59.22","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"up-nodeapp000003","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"13.89.172.11","possibleInboundIpAddresses":"13.89.172.11","ftpUsername":"up-nodeapp000003\\$up-nodeapp000003","ftpsHostName":"ftps://waws-prod-dm1-167.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37","possibleOutboundIpAddresses":"13.89.172.11,40.78.130.218,40.78.131.170,40.122.52.191,40.122.27.37,40.113.224.199,40.122.118.225,40.122.116.133,40.122.126.193,40.122.104.60","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-dm1-167","cloningInfo":null,"hostingEnvironmentId":null,"tags":null,"resourceGroup":"clitest000001","defaultHostName":"up-nodeapp000003.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":true,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","type":"Microsoft.Web/sites","kind":"app","location":"North
+ Central US","tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"properties":{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","state":"Running","hostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net"],"webSpace":"cleanupservice-NorthCentralUSwebspace","selfLink":"https://waws-prod-ch1-037.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/cleanupservice-NorthCentralUSwebspace/sites/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","repositorySiteName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","owner":null,"usageState":"Normal","enabled":true,"adminEnabled":true,"enabledHostNames":["cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","cln9106d9e7-97c4-4a8f-beae-c49b4977560a.scm.azurewebsites.net"],"siteProperties":{"metadata":null,"properties":[{"name":"LinuxFxVersion","value":""},{"name":"WindowsFxVersion","value":null}],"appSettings":null},"availabilityState":"Normal","sslCertificates":[],"csrs":[],"cers":null,"siteMode":"Limited","hostNameSslStates":[{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Standard"},{"name":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.scm.azurewebsites.net","sslState":"Disabled","ipBasedSslResult":null,"virtualIP":null,"thumbprint":null,"toUpdate":null,"toUpdateIpBasedSsl":null,"ipBasedSslState":"NotConfigured","hostType":"Repository"}],"computeMode":"Dedicated","serverFarm":null,"serverFarmId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a","reserved":false,"isXenon":false,"hyperV":false,"lastModifiedTimeUtc":"2021-04-12T00:35:55.5633333","storageRecoveryDefaultState":"Running","contentAvailabilityState":"Normal","runtimeAvailabilityState":"Normal","siteConfig":{"numberOfWorkers":null,"defaultDocuments":null,"netFrameworkVersion":null,"phpVersion":null,"pythonVersion":null,"nodeVersion":null,"powerShellVersion":null,"linuxFxVersion":null,"windowsFxVersion":null,"requestTracingEnabled":null,"remoteDebuggingEnabled":null,"remoteDebuggingVersion":null,"httpLoggingEnabled":null,"azureMonitorLogCategories":null,"acrUseManagedIdentityCreds":false,"acrUserManagedIdentityID":null,"logsDirectorySizeLimit":null,"detailedErrorLoggingEnabled":null,"publishingUsername":null,"publishingPassword":null,"appSettings":null,"azureStorageAccounts":null,"metadata":null,"connectionStrings":null,"machineKey":null,"handlerMappings":null,"documentRoot":null,"scmType":null,"use32BitWorkerProcess":null,"webSocketsEnabled":null,"alwaysOn":null,"javaVersion":null,"javaContainer":null,"javaContainerVersion":null,"appCommandLine":null,"managedPipelineMode":null,"virtualApplications":null,"winAuthAdminState":null,"winAuthTenantState":null,"customAppPoolIdentityAdminState":null,"customAppPoolIdentityTenantState":null,"runtimeADUser":null,"runtimeADUserPassword":null,"loadBalancing":null,"routingRules":null,"experiments":null,"limits":null,"autoHealEnabled":null,"autoHealRules":null,"tracingOptions":null,"vnetName":null,"vnetRouteAllEnabled":null,"vnetPrivatePortsCount":null,"cors":null,"push":null,"apiDefinition":null,"apiManagementConfig":null,"autoSwapSlotName":null,"localMySqlEnabled":null,"managedServiceIdentityId":null,"xManagedServiceIdentityId":null,"keyVaultReferenceIdentity":null,"ipSecurityRestrictions":null,"scmIpSecurityRestrictions":null,"scmIpSecurityRestrictionsUseMain":null,"http20Enabled":null,"minTlsVersion":null,"scmMinTlsVersion":null,"ftpsState":null,"preWarmedInstanceCount":null,"functionAppScaleLimit":null,"healthCheckPath":null,"fileChangeAuditEnabled":null,"functionsRuntimeScaleMonitoringEnabled":null,"websiteTimeZone":null,"minimumElasticInstanceCount":0},"deploymentId":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a","slotName":null,"trafficManagerHostNames":null,"sku":"Standard","scmSiteAlsoStopped":false,"targetSwapSlot":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"clientAffinityEnabled":true,"clientCertEnabled":false,"clientCertMode":"Required","clientCertExclusionPaths":null,"hostNamesDisabled":false,"domainVerificationIdentifiers":null,"customDomainVerificationId":"30E3673979DFB5673924412D39370809E608E2DE4E889BD01C7B80FC38A57EED","kind":"app","inboundIpAddress":"52.240.149.243","possibleInboundIpAddresses":"52.240.149.243","ftpUsername":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a\\$cln9106d9e7-97c4-4a8f-beae-c49b4977560a","ftpsHostName":"ftps://waws-prod-ch1-037.ftp.azurewebsites.windows.net/site/wwwroot","outboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224","possibleOutboundIpAddresses":"52.240.149.243,52.240.148.108,52.240.148.85,52.240.148.25,52.162.220.224,52.240.148.114,52.240.148.110,52.240.148.107","containerSize":0,"dailyMemoryTimeQuota":0,"suspendedTill":null,"siteDisabledReason":0,"functionExecutionUnitsCache":null,"maxNumberOfWorkers":null,"homeStamp":"waws-prod-ch1-037","cloningInfo":null,"hostingEnvironmentId":null,"tags":{"hidden-related:/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cleanupservice/providers/Microsoft.Web/serverfarms/cln9106d9e7-97c4-4a8f-beae-c49b4977560a":"empty"},"resourceGroup":"cleanupservice","defaultHostName":"cln9106d9e7-97c4-4a8f-beae-c49b4977560a.azurewebsites.net","slotSwapStatus":null,"keyVaultReferenceIdentity":"SystemAssigned","httpsOnly":false,"redundancyMode":"None","inProgressOperationId":null,"geoDistributions":null,"privateEndpointConnections":null,"buildVersion":null,"targetBuildVersion":null,"migrationState":null,"eligibleLogCategories":"AppServiceAppLogs,AppServiceAuditLogs,AppServiceConsoleLogs,AppServiceHTTPLogs,AppServiceIPSecAuditLogs,AppServicePlatformLogs,ScanLogs","storageAccountRequired":false},"identity":{"type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"d5ff1e04-850a-486e-8614-5c9fbaaf4326"}}]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '54568'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 19:16:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-original-request-ids:
+ - 2334fb84-782f-4abb-9826-e29f8dd41010
+ - 56a4e640-b64b-424b-b0ce-e54b087704ba
+ - b6cfa537-bbb3-47d8-a44b-8ea87ccec3ab
+ - ceb22b37-50b9-4174-802d-49ba3d41a669
+ - b862c5dc-3d17-40e9-92b0-c98af2d0b881
+ - aa99e3a1-27ff-4dfd-b681-1f0fd112fce9
+ - 146118c8-7626-45a7-a1f1-21b148a3ff49
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - webapp up
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --plan --os --runtime --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-web/2.0.0 Python/3.8.2 (macOS-10.16-x86_64-i386-64bit)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002?api-version=2020-09-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000001/providers/Microsoft.Web/serverfarms/up-nodeplan000002","name":"up-nodeplan000002","type":"Microsoft.Web/serverfarms","kind":"app","location":"Central
+ US","properties":{"serverFarmId":92889,"name":"up-nodeplan000002","workerSize":"Default","workerSizeId":0,"workerTierName":null,"numberOfWorkers":1,"currentWorkerSize":"Default","currentWorkerSizeId":0,"currentNumberOfWorkers":1,"status":"Ready","webSpace":"clitest000001-CentralUSwebspace","subscription":"e483435e-282d-4ac1-92b5-d6123f2aa360","adminSiteName":null,"hostingEnvironment":null,"hostingEnvironmentProfile":null,"maximumNumberOfWorkers":10,"planName":"VirtualDedicatedPlan","adminRuntimeSiteName":null,"computeMode":"Dedicated","siteMode":null,"geoRegion":"Central
+ US","perSiteScaling":false,"maximumElasticWorkerCount":1,"numberOfSites":1,"hostingEnvironmentId":null,"isSpot":false,"spotExpirationTime":null,"freeOfferExpirationTime":null,"tags":null,"kind":"app","resourceGroup":"clitest000001","reserved":false,"isXenon":false,"hyperV":false,"mdmId":"waws-prod-dm1-167_92889","targetWorkerCount":0,"targetWorkerSizeId":0,"provisioningState":"Succeeded","webSiteId":null,"existingServerFarmIds":null,"kubeEnvironmentProfile":null,"azBalancing":false},"sku":{"name":"S1","tier":"Standard","size":"S1","family":"S","capacity":1}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1434'
+ content-type:
+ - application/json
+ date:
+ - Thu, 15 Apr 2021 19:16:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-IIS/10.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-aspnet-version:
+ - 4.0.30319
+ x-content-type-options:
+ - nosniff
+ x-powered-by:
+ - ASP.NET
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_access_restriction_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_access_restriction_commands.py
index aa946e05318..6c8248c7499 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_access_restriction_commands.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_access_restriction_commands.py
@@ -9,6 +9,8 @@
import json
import unittest
import jmespath
+from azure.cli.core.azclierror import (ResourceNotFoundError, ArgumentUsageError, InvalidArgumentValueError,
+ MutuallyExclusiveArgumentError)
from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, JMESPathCheck, StorageAccountPreparer)
from knack.cli import CLIError
from knack.log import get_logger
@@ -148,10 +150,6 @@ def test_functionapp_access_restriction_add_service_endpoint(self, resource_grou
JMESPathCheck('subnets[0].serviceEndpoints', None)
])
- # Subnet name cannot be provided without vNet name - only when subnet refers to full subnet resource id
- with self.assertRaisesRegexp(CLIError, "Usage error: --subnet ID | --subnet NAME --vnet-name NAME"):
- self.cmd('functionapp config access-restriction add -g {rg} -n {app_name} --rule-name vnet-integration --action Allow --subnet endpoint-subnet --priority 150')
-
self.cmd('functionapp config access-restriction add -g {rg} -n {app_name} --rule-name vnet-integration --action Allow --vnet-name {vnet_name} --subnet endpoint-subnet --priority 150', checks=[
JMESPathCheck('length(@)', 2),
JMESPathCheck('[0].name', 'vnet-integration'),
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands.py
index 1beb323d721..3c6be72487e 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_functionapp_commands.py
@@ -261,6 +261,56 @@ def test_functionapp_on_linux_app_service_java_with_runtime_version(self, resour
self.cmd('functionapp config show -g {} -n {}'.format(resource_group, functionapp), checks=[
JMESPathCheck('linuxFxVersion', 'Java|11')])
+ @ResourceGroupPreparer(location=LINUX_ASP_LOCATION_FUNCTIONAPP)
+ @StorageAccountPreparer()
+ def test_functionapp_on_linux_app_service_powershell(self, resource_group, storage_account):
+ plan = self.create_random_name(prefix='funcapplinplan', length=24)
+ functionapp = self.create_random_name(
+ prefix='functionapp-linux', length=24)
+ self.cmd('functionapp plan create -g {} -n {} --sku S1 --is-linux'.format(resource_group, plan), checks=[
+ # this weird field means it is a linux
+ JMESPathCheck('reserved', True),
+ JMESPathCheck('sku.name', 'S1'),
+ ])
+ self.cmd('functionapp create -g {} -n {} --plan {} -s {} --runtime powershell --functions-version 3'
+ .format(resource_group, functionapp, plan, storage_account),
+ checks=[
+ JMESPathCheck('name', functionapp)
+ ])
+ result = self.cmd('functionapp list -g {}'.format(resource_group), checks=[
+ JMESPathCheck('length([])', 1),
+ JMESPathCheck('[0].name', functionapp)
+ ]).get_output_in_json()
+ self.assertTrue('functionapp,linux' in result[0]['kind'])
+
+ self.cmd('functionapp config show -g {} -n {}'.format(resource_group, functionapp), checks=[
+ JMESPathCheck('linuxFxVersion', 'PowerShell|7')])
+
+ @ResourceGroupPreparer(location=LINUX_ASP_LOCATION_FUNCTIONAPP)
+ @StorageAccountPreparer()
+ def test_functionapp_on_linux_app_service_powershell_with_runtime_version(self, resource_group, storage_account):
+ plan = self.create_random_name(prefix='funcapplinplan', length=24)
+ functionapp = self.create_random_name(
+ prefix='functionapp-linux', length=24)
+ self.cmd('functionapp plan create -g {} -n {} --sku S1 --is-linux'.format(resource_group, plan), checks=[
+ # this weird field means it is a linux
+ JMESPathCheck('reserved', True),
+ JMESPathCheck('sku.name', 'S1'),
+ ])
+ self.cmd('functionapp create -g {} -n {} --plan {} -s {} --runtime powershell --runtime-version 7.0 --functions-version 3'
+ .format(resource_group, functionapp, plan, storage_account),
+ checks=[
+ JMESPathCheck('name', functionapp)
+ ])
+ result = self.cmd('functionapp list -g {}'.format(resource_group), checks=[
+ JMESPathCheck('length([])', 1),
+ JMESPathCheck('[0].name', functionapp)
+ ]).get_output_in_json()
+ self.assertTrue('functionapp,linux' in result[0]['kind'])
+
+ self.cmd('functionapp config show -g {} -n {}'.format(resource_group, functionapp), checks=[
+ JMESPathCheck('linuxFxVersion', 'PowerShell|7')])
+
@ResourceGroupPreparer(location=LINUX_ASP_LOCATION_FUNCTIONAPP)
@StorageAccountPreparer()
def test_functionapp_on_linux_app_service_dotnet_isolated(self, resource_group, storage_account):
@@ -340,7 +390,8 @@ def test_functionapp_consumption_e2e(self, resource_group, storage_account):
.format(resource_group, functionapp_name, WINDOWS_ASP_LOCATION_FUNCTIONAPP, storage_account)).assert_with_checks([
JMESPathCheck('state', 'Running'),
JMESPathCheck('name', functionapp_name),
- JMESPathCheck('hostNames[0]', functionapp_name + '.azurewebsites.net')])
+ JMESPathCheck('hostNames[0]', functionapp_name + '.azurewebsites.net'),
+ JMESPathCheck('clientCertMode', 'Required')])
self.cmd('functionapp list -g {}'.format(resource_group), checks=[
JMESPathCheck('[0].kind', 'functionapp'),
@@ -350,8 +401,8 @@ def test_functionapp_consumption_e2e(self, resource_group, storage_account):
JMESPathCheck('kind', 'functionapp'),
JMESPathCheck('name', functionapp_name)
])
- self.cmd('functionapp update -g {} -n {} --set clientAffinityEnabled=true'.format(resource_group, functionapp_name),
- checks=[self.check('clientAffinityEnabled', True)]
+ self.cmd('functionapp update -g {} -n {} --set clientCertMode=Optional'.format(resource_group, functionapp_name),
+ checks=[self.check('clientCertMode', 'Optional')]
)
self.cmd(
@@ -410,6 +461,26 @@ def test_functionapp_consumption_linux_java(self, resource_group, storage_accoun
self.cmd('functionapp config appsettings list -g {} -n {}'.format(resource_group, functionapp_name), checks=[
JMESPathCheck("[?name=='FUNCTIONS_WORKER_RUNTIME'].value|[0]", 'java')])
+ @ResourceGroupPreparer(name_prefix='azurecli-functionapp-linux', location=LINUX_ASP_LOCATION_FUNCTIONAPP)
+ @StorageAccountPreparer()
+ def test_functionapp_consumption_linux_powershell(self, resource_group, storage_account):
+ functionapp_name = self.create_random_name(
+ 'functionapplinuxconsumption', 40)
+
+ self.cmd('functionapp create -g {} -n {} -c {} -s {} --os-type Linux --runtime powershell --functions-version 3'
+ .format(resource_group, functionapp_name, LINUX_ASP_LOCATION_FUNCTIONAPP, storage_account)).assert_with_checks([
+ JMESPathCheck('state', 'Running'),
+ JMESPathCheck('name', functionapp_name),
+ JMESPathCheck('reserved', True),
+ JMESPathCheck('kind', 'functionapp,linux'),
+ JMESPathCheck('hostNames[0]', functionapp_name + '.azurewebsites.net')])
+
+ self.cmd('functionapp config appsettings list -g {} -n {}'.format(resource_group, functionapp_name), checks=[
+ JMESPathCheck("[?name=='FUNCTIONS_WORKER_RUNTIME'].value|[0]", 'powershell')])
+
+ self.cmd('functionapp config show -g {} -n {}'.format(resource_group, functionapp_name), checks=[
+ JMESPathCheck('linuxFxVersion', 'PowerShell|7')])
+
@ResourceGroupPreparer(name_prefix='azurecli-functionapp-linux', location=LINUX_ASP_LOCATION_FUNCTIONAPP)
@StorageAccountPreparer()
def test_functionapp_consumption_linux_dotnet_isolated(self, resource_group, storage_account):
@@ -1198,7 +1269,7 @@ def test_functionapp_function_delete(self, resource_group, storage_account):
self.cmd('functionapp function delete -g {} -n {} --function-name {}'.format(resource_group, functionapp_name, function_name))
self.cmd('functionapp function show -g {} -n {} --function-name {}'.format(resource_group, functionapp_name, function_name)).assert_with_checks([
- JMESPathCheck('config', {})])
+ JMESPathCheck('config.bindings[0].type', 'httpTrigger')])
# LiveScenarioTest due to issue https://github.com/Azure/azure-cli/issues/10705
diff --git a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_access_restriction_commands.py b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_access_restriction_commands.py
index 7b280fdeb46..b34789ab804 100644
--- a/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_access_restriction_commands.py
+++ b/src/azure-cli/azure/cli/command_modules/appservice/tests/latest/test_webapp_access_restriction_commands.py
@@ -9,6 +9,9 @@
import json
import unittest
import jmespath
+from azure_devtools.scenario_tests import AllowLargeResponse
+from azure.cli.core.azclierror import (ResourceNotFoundError, ArgumentUsageError, InvalidArgumentValueError,
+ MutuallyExclusiveArgumentError)
from azure.cli.testsdk import (ScenarioTest, ResourceGroupPreparer, JMESPathCheck)
from knack.cli import CLIError
from knack.log import get_logger
@@ -101,8 +104,8 @@ def test_webapp_access_restriction_add(self, resource_group):
JMESPathCheck('[1].action', 'Deny')
])
- @ResourceGroupPreparer(parameter_name_for_location='location', location=WINDOWS_ASP_LOCATION_WEBAPP)
- def test_webapp_access_restriction_add_ip_address_validation(self, resource_group, location):
+ @ResourceGroupPreparer(location=WINDOWS_ASP_LOCATION_WEBAPP)
+ def test_webapp_access_restriction_add_ip_address_validation(self, resource_group):
self.kwargs.update({
'app_name': self.create_random_name(prefix='cli-webapp-nwr', length=24),
'plan_name': self.create_random_name(prefix='cli-plan-nwr', length=24)
@@ -129,7 +132,85 @@ def test_webapp_access_restriction_add_ip_address_validation(self, resource_grou
JMESPathCheck('[1].ipAddress', '2004::1000/128')
])
- @ResourceGroupPreparer(location='centralus')
+ self.cmd('webapp config access-restriction add -g {rg} -n {app_name} --rule-name multi-source --action Allow --ip-address "2004::1000/120,192.168.0.0/24" --priority 200', checks=[
+ JMESPathCheck('length(@)', 4),
+ JMESPathCheck('[2].name', 'multi-source'),
+ JMESPathCheck('[2].action', 'Allow'),
+ JMESPathCheck('[2].ipAddress', '2004::1000/120,192.168.0.0/24')
+ ])
+
+ @AllowLargeResponse(8192)
+ @ResourceGroupPreparer(location=WINDOWS_ASP_LOCATION_WEBAPP)
+ def test_webapp_access_restriction_add_service_tag_validation(self, resource_group):
+ self.kwargs.update({
+ 'app_name': self.create_random_name(prefix='cli-webapp-nwr', length=24),
+ 'plan_name': self.create_random_name(prefix='cli-plan-nwr', length=24)
+ })
+
+ self.cmd('appservice plan create -g {rg} -n {plan_name}')
+ self.cmd('webapp create -g {rg} -n {app_name} --plan {plan_name}', checks=[
+ JMESPathCheck('state', 'Running')
+ ])
+
+ self.cmd('webapp config access-restriction add -g {rg} -n {app_name} --rule-name afd --action Allow --service-tag AzureFrontDoor.Backend --priority 200', checks=[
+ JMESPathCheck('length(@)', 2),
+ JMESPathCheck('[0].name', 'afd'),
+ JMESPathCheck('[0].action', 'Allow'),
+ JMESPathCheck('[0].ipAddress', 'AzureFrontDoor.Backend'),
+ JMESPathCheck('[0].tag', 'ServiceTag'),
+ JMESPathCheck('[1].name', 'Deny all'),
+ JMESPathCheck('[1].action', 'Deny')
+ ])
+
+ self.cmd('webapp config access-restriction add -g {rg} -n {app_name} --rule-name europe --action Allow --service-tag "AzureCloud.WestEurope,AzureCloud.NorthEurope" --priority 300', checks=[
+ JMESPathCheck('length(@)', 3),
+ JMESPathCheck('[1].name', 'europe'),
+ JMESPathCheck('[1].action', 'Allow'),
+ JMESPathCheck('[1].ipAddress', 'AzureCloud.WestEurope,AzureCloud.NorthEurope')
+ ])
+
+ @AllowLargeResponse(8192)
+ @ResourceGroupPreparer(location=LINUX_ASP_LOCATION_WEBAPP)
+ def test_webapp_access_restriction_add_http_header(self, resource_group):
+ self.kwargs.update({
+ 'app_name': self.create_random_name(prefix='cli-webapp-nwr', length=24),
+ 'plan_name': self.create_random_name(prefix='cli-plan-nwr', length=24)
+ })
+
+ self.cmd('appservice plan create -g {rg} -n {plan_name} --is-linux')
+ self.cmd('webapp create -g {rg} -n {app_name} --plan {plan_name} --runtime "DOTNETCORE|3.1"', checks=[
+ JMESPathCheck('state', 'Running')
+ ])
+
+ self.cmd('webapp config access-restriction add -g {rg} -n {app_name} --rule-name afd --action Allow --service-tag AzureFrontDoor.Backend --priority 200 --http-header x-azure-fdid=12345678-abcd-1234-abcd-12345678910a', checks=[
+ JMESPathCheck('length(@)', 2),
+ JMESPathCheck('[0].name', 'afd'),
+ JMESPathCheck('[0].action', 'Allow'),
+ JMESPathCheck('[0].ipAddress', 'AzureFrontDoor.Backend'),
+ JMESPathCheck('[0].tag', 'ServiceTag'),
+ JMESPathCheck('length([0].headers)', 1),
+ JMESPathCheck('[1].name', 'Deny all'),
+ JMESPathCheck('[1].action', 'Deny')
+ ])
+
+ self.cmd('webapp config access-restriction remove -g {rg} -n {app_name} --service-tag AzureFrontDoor.Backend', checks=[
+ JMESPathCheck('length(@)', 1),
+ JMESPathCheck('[0].name', 'Allow all'),
+ JMESPathCheck('[0].action', 'Allow')
+ ])
+
+ self.cmd('webapp config access-restriction add -g {rg} -n {app_name} --rule-name afd-extended --action Allow --service-tag AzureFrontDoor.Backend --priority 200 --http-header x-azure-fdid=12345678-abcd-1234-abcd-12345678910a x-azure-FDID=next-id x-forwarded-host=contoso.com', checks=[
+ JMESPathCheck('length(@)', 2),
+ JMESPathCheck('[0].name', 'afd-extended'),
+ JMESPathCheck('[0].action', 'Allow'),
+ JMESPathCheck('[0].ipAddress', 'AzureFrontDoor.Backend'),
+ JMESPathCheck('[0].tag', 'ServiceTag'),
+ JMESPathCheck('length([0].headers)', 2),
+ JMESPathCheck('length([0].headers.\"x-azure-fdid\")', 2),
+ JMESPathCheck('length([0].headers.\"x-forwarded-host\")', 1)
+ ])
+
+ @ResourceGroupPreparer(location=WINDOWS_ASP_LOCATION_WEBAPP)
def test_webapp_access_restriction_add_service_endpoint(self, resource_group):
self.kwargs.update({
'app_name': self.create_random_name(prefix='cli-webapp-nwr', length=24),
@@ -146,10 +227,6 @@ def test_webapp_access_restriction_add_service_endpoint(self, resource_group):
JMESPathCheck('subnets[0].serviceEndpoints', None)
])
- # Subnet name cannot be provided without vNet name - only when subnet refers to full subnet resource id
- with self.assertRaisesRegexp(CLIError, "Usage error: --subnet ID | --subnet NAME --vnet-name NAME"):
- self.cmd('webapp config access-restriction add -g {rg} -n {app_name} --rule-name vnet-integration --action Allow --subnet endpoint-subnet --priority 150')
-
self.cmd('webapp config access-restriction add -g {rg} -n {app_name} --rule-name vnet-integration --action Allow --vnet-name {vnet_name} --subnet endpoint-subnet --priority 150', checks=[
JMESPathCheck('length(@)', 2),
JMESPathCheck('[0].name', 'vnet-integration'),
@@ -158,7 +235,7 @@ def test_webapp_access_restriction_add_service_endpoint(self, resource_group):
JMESPathCheck('[1].action', 'Deny')
])
- @ResourceGroupPreparer(location='centralus')
+ @ResourceGroupPreparer(location=WINDOWS_ASP_LOCATION_WEBAPP)
def test_webapp_access_restriction_remove(self, resource_group):
self.kwargs.update({
'app_name': self.create_random_name(prefix='cli-webapp-nwr', length=24),
diff --git a/src/azure-cli/azure/cli/command_modules/resource/_bicep.py b/src/azure-cli/azure/cli/command_modules/resource/_bicep.py
index d8e4caef7cc..05ece5183bd 100644
--- a/src/azure-cli/azure/cli/command_modules/resource/_bicep.py
+++ b/src/azure-cli/azure/cli/command_modules/resource/_bicep.py
@@ -38,6 +38,7 @@
_bicep_installation_dir = os.path.join(_config_dir, "bin")
_bicep_version_check_file_path = os.path.join(_config_dir, "bicepVersionCheck.json")
_bicep_version_check_cache_ttl = timedelta(minutes=10)
+_bicep_version_check_time_format = "%Y-%m-%dT%H:%M:%S.%f"
_logger = get_logger(__name__)
@@ -149,7 +150,7 @@ def _load_bicep_version_check_result_from_cache():
with open(_bicep_version_check_file_path, "r") as version_check_file:
version_check_data = json.load(version_check_file)
latest_release_tag = version_check_data["latestReleaseTag"]
- last_check_time = datetime.fromisoformat(version_check_data["lastCheckTime"])
+ last_check_time = datetime.strptime(version_check_data["lastCheckTime"], _bicep_version_check_time_format)
cache_expired = datetime.now() - last_check_time > _bicep_version_check_cache_ttl
return latest_release_tag, cache_expired
@@ -160,7 +161,7 @@ def _load_bicep_version_check_result_from_cache():
def _refresh_bicep_version_check_cache(lastest_release_tag):
with open(_bicep_version_check_file_path, "w+") as version_check_file:
version_check_data = {
- "lastCheckTime": datetime.now().isoformat(timespec="microseconds"),
+ "lastCheckTime": datetime.now().strftime(_bicep_version_check_time_format),
"latestReleaseTag": lastest_release_tag,
}
json.dump(version_check_data, version_check_file)
diff --git a/src/azure-cli/azure/cli/command_modules/sql/_help.py b/src/azure-cli/azure/cli/command_modules/sql/_help.py
index dc41773f96d..e2ea8f41af4 100644
--- a/src/azure-cli/azure/cli/command_modules/sql/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/sql/_help.py
@@ -752,7 +752,7 @@
- name: Create managed instance with specified parameters and backup storage redundancy specified
text: az sql mi create -g mygroup -n myinstance -l mylocation -i -u myusername -p mypassword --license-type LicenseIncluded --subnet /subscriptions/{SubID}/resourceGroups/{ResourceGroup}/providers/Microsoft.Network/virtualNetworks/{VNETName}/subnets/{SubnetName} --capacity 8 --storage 32GB --edition GeneralPurpose --family Gen5 --backup-storage-redundancy Local
- name: Create a managed instance with maintenance configuration
- text: az sql mi create -g mygroup -n myinstance -l mylocation -i -u myusername -p mypassword --subnet /subscriptions/{SubID}/resourceGroups/{ResourceGroup}/providers/Microsoft.Network/virtualNetworks/{VNETName}/subnets/{SubnetName} -m /subscriptions/{SubID}/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_{Region}_{MaintenanceConfigName}
+ text: az sql mi create -g mygroup -n myinstance -l mylocation -i -u myusername -p mypassword --subnet /subscriptions/{SubID}/resourceGroups/{ResourceGroup}/providers/Microsoft.Network/virtualNetworks/{VNETName}/subnets/{SubnetName} -m SQL_{Region}_{MaintenanceConfigName}
"""
helps['sql mi delete'] = """
@@ -845,9 +845,9 @@
text: az sql mi update --name myinstance --public-data-endpoint-enabled true --resource-group mygroup --subscription MySubscription
crafted: true
- name: Update a managed instance with maintenance configuration
- text: az sql mi update -g mygroup -n myinstance -m /subscriptions/{SubID}/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_{Region}_{MaintenanceConfigName}
+ text: az sql mi update -g mygroup -n myinstance -m SQL_{Region}_{MaintenanceConfigName}
- name: Remove maintenance configuration from managed instance
- text: az sql mi update -g mygroup -n myinstance -m /subscriptions/{SubID}/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default
+ text: az sql mi update -g mygroup -n myinstance -m SQL_Default
"""
helps['sql midb'] = """
diff --git a/src/azure-cli/azure/cli/command_modules/sql/custom.py b/src/azure-cli/azure/cli/command_modules/sql/custom.py
index 759cc390c54..e902ce0bae5 100644
--- a/src/azure-cli/azure/cli/command_modules/sql/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/sql/custom.py
@@ -3764,6 +3764,7 @@ def managed_instance_create(
kwargs['location'] = location
kwargs['sku'] = _find_managed_instance_sku_from_capabilities(cmd.cli_ctx, kwargs['location'], sku)
kwargs['subnet_id'] = virtual_network_subnet_id
+ kwargs['maintenance_configuration_id'] = _complete_maintenance_configuration_id(cmd.cli_ctx, kwargs['maintenance_configuration_id'])
if not kwargs['yes'] and kwargs['location'].lower() in ['southeastasia', 'brazilsouth', 'eastasia']:
if kwargs['storage_account_type'] == 'GRS':
@@ -3857,7 +3858,7 @@ def managed_instance_update(
if tags is not None:
instance.tags = tags
- instance.maintenance_configuration_id = maintenance_configuration_id
+ instance.maintenance_configuration_id = _complete_maintenance_configuration_id(cmd.cli_ctx, maintenance_configuration_id)
return instance
diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_instance_mgmt.yaml b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_instance_mgmt.yaml
index ff03f88bcb8..83af3fd51bf 100644
--- a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_instance_mgmt.yaml
+++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/recordings/test_sql_managed_instance_mgmt.yaml
@@ -15,26 +15,26 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus2euap/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westeurope/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
response:
body:
- string: '{"name":"East US 2 EUAP","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ string: '{"name":"West Europe","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
headers:
cache-control:
- no-cache
content-length:
- - '11974'
+ - '10985'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:49:47 GMT
+ - Wed, 14 Apr 2021 17:05:32 GMT
expires:
- '-1'
pragma:
@@ -53,9 +53,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2euap", "tags": {"tagName1": "tagValue1", "tagName2":
+ body: '{"location": "westeurope", "tags": {"tagName1": "tagValue1", "tagName2":
"tagValue2"}, "sku": {"name": "GP_Gen5"}, "properties": {"administratorLogin":
- "admin123", "administratorLoginPassword": "SecretPassword123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
+ "admin123", "administratorLoginPassword": "SecretPassword123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
"licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
"Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
"Proxy", "timezoneId": "Central European Standard Time", "minimalTlsVersion":
@@ -70,7 +70,7 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '671'
+ - '673'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
@@ -78,25 +78,25 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
string: '{"identity":{"type":"None"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"SystemDefault","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS"},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ European Standard Time","maintenanceConfigurationId":"SystemDefault","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS"},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '817'
+ - '819'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:49:58 GMT
+ - Wed, 14 Apr 2021 17:05:39 GMT
expires:
- '-1'
pragma:
@@ -128,23 +128,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:50:58 GMT
+ - Wed, 14 Apr 2021 17:06:39 GMT
expires:
- '-1'
pragma:
@@ -178,23 +178,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:51:28 GMT
+ - Wed, 14 Apr 2021 17:07:10 GMT
expires:
- '-1'
pragma:
@@ -228,23 +228,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:51:59 GMT
+ - Wed, 14 Apr 2021 17:07:40 GMT
expires:
- '-1'
pragma:
@@ -278,23 +278,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:52:29 GMT
+ - Wed, 14 Apr 2021 17:08:09 GMT
expires:
- '-1'
pragma:
@@ -328,23 +328,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:52:58 GMT
+ - Wed, 14 Apr 2021 17:08:40 GMT
expires:
- '-1'
pragma:
@@ -378,23 +378,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:53:29 GMT
+ - Wed, 14 Apr 2021 17:09:10 GMT
expires:
- '-1'
pragma:
@@ -428,23 +428,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:53:59 GMT
+ - Wed, 14 Apr 2021 17:09:40 GMT
expires:
- '-1'
pragma:
@@ -478,23 +478,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:54:29 GMT
+ - Wed, 14 Apr 2021 17:10:10 GMT
expires:
- '-1'
pragma:
@@ -528,23 +528,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:55:00 GMT
+ - Wed, 14 Apr 2021 17:10:40 GMT
expires:
- '-1'
pragma:
@@ -578,23 +578,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:55:30 GMT
+ - Wed, 14 Apr 2021 17:11:10 GMT
expires:
- '-1'
pragma:
@@ -628,23 +628,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:56:00 GMT
+ - Wed, 14 Apr 2021 17:11:40 GMT
expires:
- '-1'
pragma:
@@ -678,23 +678,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:56:30 GMT
+ - Wed, 14 Apr 2021 17:12:10 GMT
expires:
- '-1'
pragma:
@@ -728,23 +728,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:57:00 GMT
+ - Wed, 14 Apr 2021 17:12:40 GMT
expires:
- '-1'
pragma:
@@ -778,23 +778,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:57:31 GMT
+ - Wed, 14 Apr 2021 17:13:11 GMT
expires:
- '-1'
pragma:
@@ -828,23 +828,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:58:01 GMT
+ - Wed, 14 Apr 2021 17:13:41 GMT
expires:
- '-1'
pragma:
@@ -878,23 +878,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:58:31 GMT
+ - Wed, 14 Apr 2021 17:14:11 GMT
expires:
- '-1'
pragma:
@@ -928,23 +928,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:59:02 GMT
+ - Wed, 14 Apr 2021 17:14:41 GMT
expires:
- '-1'
pragma:
@@ -978,23 +978,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 16:59:32 GMT
+ - Wed, 14 Apr 2021 17:15:11 GMT
expires:
- '-1'
pragma:
@@ -1028,23 +1028,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:00:01 GMT
+ - Wed, 14 Apr 2021 17:15:41 GMT
expires:
- '-1'
pragma:
@@ -1078,23 +1078,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:00:31 GMT
+ - Wed, 14 Apr 2021 17:16:11 GMT
expires:
- '-1'
pragma:
@@ -1128,23 +1128,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:01:02 GMT
+ - Wed, 14 Apr 2021 17:16:42 GMT
expires:
- '-1'
pragma:
@@ -1178,23 +1178,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:01:32 GMT
+ - Wed, 14 Apr 2021 17:17:11 GMT
expires:
- '-1'
pragma:
@@ -1228,23 +1228,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:02:02 GMT
+ - Wed, 14 Apr 2021 17:17:42 GMT
expires:
- '-1'
pragma:
@@ -1278,23 +1278,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:02:33 GMT
+ - Wed, 14 Apr 2021 17:18:13 GMT
expires:
- '-1'
pragma:
@@ -1328,23 +1328,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:03:03 GMT
+ - Wed, 14 Apr 2021 17:18:43 GMT
expires:
- '-1'
pragma:
@@ -1378,23 +1378,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:03:33 GMT
+ - Wed, 14 Apr 2021 17:19:13 GMT
expires:
- '-1'
pragma:
@@ -1428,23 +1428,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:04:03 GMT
+ - Wed, 14 Apr 2021 17:19:43 GMT
expires:
- '-1'
pragma:
@@ -1478,23 +1478,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:04:33 GMT
+ - Wed, 14 Apr 2021 17:20:13 GMT
expires:
- '-1'
pragma:
@@ -1528,23 +1528,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:05:04 GMT
+ - Wed, 14 Apr 2021 17:20:43 GMT
expires:
- '-1'
pragma:
@@ -1578,23 +1578,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:05:34 GMT
+ - Wed, 14 Apr 2021 17:21:13 GMT
expires:
- '-1'
pragma:
@@ -1628,23 +1628,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:06:04 GMT
+ - Wed, 14 Apr 2021 17:21:44 GMT
expires:
- '-1'
pragma:
@@ -1678,23 +1678,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:06:34 GMT
+ - Wed, 14 Apr 2021 17:22:13 GMT
expires:
- '-1'
pragma:
@@ -1728,23 +1728,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:07:05 GMT
+ - Wed, 14 Apr 2021 17:22:44 GMT
expires:
- '-1'
pragma:
@@ -1778,23 +1778,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:07:34 GMT
+ - Wed, 14 Apr 2021 17:23:14 GMT
expires:
- '-1'
pragma:
@@ -1828,23 +1828,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:08:04 GMT
+ - Wed, 14 Apr 2021 17:23:44 GMT
expires:
- '-1'
pragma:
@@ -1878,23 +1878,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:08:35 GMT
+ - Wed, 14 Apr 2021 17:24:14 GMT
expires:
- '-1'
pragma:
@@ -1928,23 +1928,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:09:05 GMT
+ - Wed, 14 Apr 2021 17:24:44 GMT
expires:
- '-1'
pragma:
@@ -1978,23 +1978,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:09:35 GMT
+ - Wed, 14 Apr 2021 17:25:15 GMT
expires:
- '-1'
pragma:
@@ -2028,23 +2028,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:10:05 GMT
+ - Wed, 14 Apr 2021 17:25:44 GMT
expires:
- '-1'
pragma:
@@ -2078,23 +2078,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:10:36 GMT
+ - Wed, 14 Apr 2021 17:26:14 GMT
expires:
- '-1'
pragma:
@@ -2128,23 +2128,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1118'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:11:06 GMT
+ - Wed, 14 Apr 2021 17:26:44 GMT
expires:
- '-1'
pragma:
@@ -2178,23 +2178,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1227'
+ - '1123'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:11:36 GMT
+ - Wed, 14 Apr 2021 17:27:14 GMT
expires:
- '-1'
pragma:
@@ -2228,23 +2228,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1227'
+ - '1148'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:12:06 GMT
+ - Wed, 14 Apr 2021 17:27:45 GMT
expires:
- '-1'
pragma:
@@ -2278,23 +2278,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1227'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:12:37 GMT
+ - Wed, 14 Apr 2021 17:28:15 GMT
expires:
- '-1'
pragma:
@@ -2328,23 +2328,15533 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--minimal-tls-version --tags --backup-storage-redundancy
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1225'
+ - '1232'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:13:06 GMT
+ - Wed, 14 Apr 2021 17:28:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --minimal-tls-version --tags --backup-storage-redundancy
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1232'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:29:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --minimal-tls-version --tags --backup-storage-redundancy
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1232'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:29:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --minimal-tls-version --tags --backup-storage-redundancy
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1232'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:30:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --minimal-tls-version --tags --backup-storage-redundancy
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1232'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:30:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --minimal-tls-version --tags --backup-storage-redundancy
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1230'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:31:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westeurope/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ response:
+ body:
+ string: '{"name":"West Europe","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '10985'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:31:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westeurope", "sku": {"name": "GP_Gen5"}, "properties": {"administratorLogin":
+ "admin123", "administratorLoginPassword": "SecretPassword123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
+ "licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
+ "Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
+ "Proxy", "timezoneId": "Central European Standard Time", "maintenanceConfigurationId":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '725'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"identity":{"type":"None"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"MI_1","privateEndpointConnections":[],"storageAccountType":"GRS"},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '729'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:32:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:33:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:33:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:34:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:34:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:35:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:35:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:36:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:36:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:37:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:37:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:38:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:38:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:39:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:39:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:40:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:40:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:41:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:41:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:42:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:42:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:43:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:43:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:44:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:44:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:45:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:45:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:46:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:46:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:47:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:47:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:48:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:48:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:49:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:49:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:50:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:50:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:51:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:51:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:52:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:52:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:53:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:53:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:54:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:54:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:55:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:55:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:56:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:56:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:57:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:57:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:58:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:58:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:59:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 17:59:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:00:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:00:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:01:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:01:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:02:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:02:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:03:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:03:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:04:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:04:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:05:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:05:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:06:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:08:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:08:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:09:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:09:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:10:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:10:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:11:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:11:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:12:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:12:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:13:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:13:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:14:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:14:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:15:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:15:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:16:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:16:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:17:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:17:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:18:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:18:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:19:28 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:19:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:20:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:21:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:21:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:21:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:22:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:23:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:23:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:23:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:24:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:25:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:25:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:26:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:26:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:27:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:27:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:28:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:28:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:29:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:29:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:30:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:30:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:31:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:31:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:32:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:32:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:33:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:33:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:34:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:34:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:35:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:35:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:36:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:36:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:37:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:37:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:38:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:38:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:39:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:39:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:40:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:40:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:41:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:41:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:42:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:42:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:43:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:43:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:44:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:44:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:45:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:45:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:46:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:46:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:47:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:47:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:48:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:48:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:49:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:49:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:50:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:50:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:51:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:51:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:52:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:52:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:53:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:53:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:54:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:54:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:55:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:55:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"error":{"code":"BadGatewayConnection","message":"The network connectivity
+ issue encountered for ''Microsoft.Sql''; cannot fulfill the request."}}'
+ headers:
+ cache-control:
+ - no-cache
+ connection:
+ - close
+ content-length:
+ - '145'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:57:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-failure-cause:
+ - service
+ status:
+ code: 502
+ message: Bad Gateway
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:58:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:59:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 18:59:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:00:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:00:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:01:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:01:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:02:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:02:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:03:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:03:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:04:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:05:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:05:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:05:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:06:29 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:07:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:07:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:08:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:08:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:09:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:09:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:10:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:10:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:11:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:11:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:12:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:12:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:13:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:13:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:14:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:14:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:15:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:15:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:16:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:16:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:17:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:17:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:18:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:18:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:19:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:19:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:20:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:20:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:21:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:21:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:22:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:22:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:23:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:23:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:24:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:24:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:25:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:25:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:26:05 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:28:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:28:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:29:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:29:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:30:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:30:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:31:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:31:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:32:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:32:45 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:33:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:33:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:34:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:34:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:35:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:35:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:36:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:36:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:37:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:37:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:38:16 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:38:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:39:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:39:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:40:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:40:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:41:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:41:47 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:42:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:42:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:43:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:43:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:44:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:44:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:45:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:45:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:46:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:46:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:47:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:47:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:48:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:48:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:49:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:49:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:50:27 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:51:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:51:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:52:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:52:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:53:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:53:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:54:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:54:49 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:55:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:55:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:56:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:56:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:57:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:57:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:58:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:58:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:59:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 19:59:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:00:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:00:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:01:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:01:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:02:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:02:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:03:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:03:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:04:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:04:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:05:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:05:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:06:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:06:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:07:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:07:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:08:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:08:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:09:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:09:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:10:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:10:53 GMT
expires:
- '-1'
pragma:
@@ -2378,26 +17888,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--maint-config-id
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
- accept-language:
- - en-US
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus2euap/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
response:
body:
- string: '{"name":"East US 2 EUAP","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '11974'
+ - '1050'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:13:09 GMT
+ - Wed, 14 Apr 2021 20:11:23 GMT
expires:
- '-1'
pragma:
@@ -2416,12 +17923,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2euap", "sku": {"name": "GP_Gen5"}, "properties": {"administratorLogin":
- "admin123", "administratorLoginPassword": "SecretPassword123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
- "licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
- "Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
- "Proxy", "timezoneId": "Central European Standard Time", "maintenanceConfigurationId":
- "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2"}}'
+ body: null
headers:
Accept:
- application/json
@@ -2431,34 +17933,78 @@ interactions:
- sql mi create
Connection:
- keep-alive
- Content-Length:
- - '724'
- Content-Type:
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
- application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:11:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
ParameterSetName:
- -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--maint-config-id
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
- accept-language:
- - en-US
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"type":"None"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"MI_2","privateEndpointConnections":[],"storageAccountType":"GRS"},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '727'
+ - '1050'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:13:16 GMT
+ - Wed, 14 Apr 2021 20:12:24 GMT
expires:
- '-1'
pragma:
@@ -2467,13 +18013,165 @@ interactions:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
x-content-type-options:
- nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
status:
- code: 201
- message: Created
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:12:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:13:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n -l -u -p --subnet --license-type --capacity --storage --edition --family
+ --collation --proxy-override --public-data-endpoint-enabled --timezone-id
+ --maint-config-id
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ response:
+ body:
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1050'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 20:13:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
- request:
body: null
headers:
@@ -2490,23 +18188,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--maint-config-id
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000002.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1155'
+ - '1075'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:14:17 GMT
+ - Wed, 14 Apr 2021 20:14:24 GMT
expires:
- '-1'
pragma:
@@ -2540,23 +18238,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--maint-config-id
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000002.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000002.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1155'
+ - '1159'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:14:47 GMT
+ - Wed, 14 Apr 2021 20:14:53 GMT
expires:
- '-1'
pragma:
@@ -2590,23 +18288,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--maint-config-id
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000002.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000002.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1155'
+ - '1159'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:15:17 GMT
+ - Wed, 14 Apr 2021 20:15:24 GMT
expires:
- '-1'
pragma:
@@ -2640,23 +18338,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--maint-config-id
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000002.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmi000002.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1155'
+ - '1159'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:15:47 GMT
+ - Wed, 14 Apr 2021 20:15:54 GMT
expires:
- '-1'
pragma:
@@ -2690,23 +18388,23 @@ interactions:
--collation --proxy-override --public-data-endpoint-enabled --timezone-id
--maint-config-id
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000002.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000002.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1153'
+ - '1157'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:16:17 GMT
+ - Wed, 14 Apr 2021 20:16:25 GMT
expires:
- '-1'
pragma:
@@ -2738,25 +18436,25 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1225'
+ - '1230'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:16:19 GMT
+ - Wed, 14 Apr 2021 20:16:25 GMT
expires:
- '-1'
pragma:
@@ -2788,25 +18486,25 @@ interactions:
ParameterSetName:
- --id
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1225'
+ - '1230'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:16:19 GMT
+ - Wed, 14 Apr 2021 20:16:25 GMT
expires:
- '-1'
pragma:
@@ -2838,25 +18536,25 @@ interactions:
ParameterSetName:
- -g -n --admin-password -i
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1225'
+ - '1230'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:16:20 GMT
+ - Wed, 14 Apr 2021 20:16:25 GMT
expires:
- '-1'
pragma:
@@ -2888,26 +18586,26 @@ interactions:
ParameterSetName:
- -g -n --admin-password -i
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus2euap/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westeurope/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
response:
body:
- string: '{"name":"East US 2 EUAP","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ string: '{"name":"West Europe","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
headers:
cache-control:
- no-cache
content-length:
- - '11974'
+ - '10985'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:16:21 GMT
+ - Wed, 14 Apr 2021 20:16:25 GMT
expires:
- '-1'
pragma:
@@ -2926,10 +18624,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2euap", "tags": {"tagName1": "tagValue1", "tagName2":
+ body: '{"location": "westeurope", "tags": {"tagName1": "tagValue1", "tagName2":
"tagValue2"}, "identity": {"type": "SystemAssigned"}, "sku": {"name": "GP_Gen5"},
"properties": {"administratorLogin": "admin123", "administratorLoginPassword":
- "SecretPassword456", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
+ "SecretPassword456", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
"licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
"Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
"Proxy", "timezoneId": "Central European Standard Time", "minimalTlsVersion":
@@ -2944,33 +18642,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '735'
+ - '737'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -g -n --admin-password -i
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
string: '{"identity":{"principalId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned","tenantId":"00000000-0000-0000-0000-000000000000"},"sku":{"name":"GP_Gen5","capacity":8},"properties":{"provisioningState":"Updating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/20219acc-f0aa-4753-8779-fb2eba89397d?api-version=2020-02-02-preview
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/d4404d5d-294f-4f1e-b151-4e0956ff83e5?api-version=2020-02-02-preview
cache-control:
- no-cache
content-length:
- - '867'
+ - '869'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:16:26 GMT
+ - Wed, 14 Apr 2021 20:16:28 GMT
expires:
- '-1'
pragma:
@@ -3004,22 +18702,22 @@ interactions:
ParameterSetName:
- -g -n --admin-password -i
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/20219acc-f0aa-4753-8779-fb2eba89397d?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/d4404d5d-294f-4f1e-b151-4e0956ff83e5?api-version=2020-02-02-preview
response:
body:
- string: '{"name":"20219acc-f0aa-4753-8779-fb2eba89397d","status":"Succeeded","startTime":"2021-01-28T17:16:24.45Z"}'
+ string: '{"name":"d4404d5d-294f-4f1e-b151-4e0956ff83e5","status":"Succeeded","startTime":"2021-04-14T20:16:28.477Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '106'
+ - '107'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:17:26 GMT
+ - Wed, 14 Apr 2021 20:17:28 GMT
expires:
- '-1'
pragma:
@@ -3051,23 +18749,23 @@ interactions:
ParameterSetName:
- -g -n --admin-password -i
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1365'
+ - '1370'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:17:27 GMT
+ - Wed, 14 Apr 2021 20:17:28 GMT
expires:
- '-1'
pragma:
@@ -3099,25 +18797,25 @@ interactions:
ParameterSetName:
- --id --admin-password
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1365'
+ - '1370'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:17:28 GMT
+ - Wed, 14 Apr 2021 20:17:29 GMT
expires:
- '-1'
pragma:
@@ -3149,26 +18847,26 @@ interactions:
ParameterSetName:
- --id --admin-password
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus2euap/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westeurope/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
response:
body:
- string: '{"name":"East US 2 EUAP","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ string: '{"name":"West Europe","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
headers:
cache-control:
- no-cache
content-length:
- - '11974'
+ - '10985'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:17:29 GMT
+ - Wed, 14 Apr 2021 20:17:29 GMT
expires:
- '-1'
pragma:
@@ -3187,10 +18885,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2euap", "tags": {"tagName1": "tagValue1", "tagName2":
+ body: '{"location": "westeurope", "tags": {"tagName1": "tagValue1", "tagName2":
"tagValue2"}, "identity": {"type": "SystemAssigned"}, "sku": {"name": "GP_Gen5"},
"properties": {"administratorLogin": "admin123", "administratorLoginPassword":
- "SecretPassword123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
+ "SecretPassword123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
"licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
"Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
"Proxy", "timezoneId": "Central European Standard Time", "minimalTlsVersion":
@@ -3205,33 +18903,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '735'
+ - '737'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- --id --admin-password
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
string: '{"identity":{"principalId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned","tenantId":"00000000-0000-0000-0000-000000000000"},"sku":{"name":"GP_Gen5","capacity":8},"properties":{"provisioningState":"Updating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/18031dcd-b93e-48dc-ad83-8e230d31b0fb?api-version=2020-02-02-preview
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/c440ced5-7ce2-4407-b02b-5e5e8bec678d?api-version=2020-02-02-preview
cache-control:
- no-cache
content-length:
- - '867'
+ - '869'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:17:34 GMT
+ - Wed, 14 Apr 2021 20:17:30 GMT
expires:
- '-1'
pragma:
@@ -3265,13 +18963,13 @@ interactions:
ParameterSetName:
- --id --admin-password
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/18031dcd-b93e-48dc-ad83-8e230d31b0fb?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/c440ced5-7ce2-4407-b02b-5e5e8bec678d?api-version=2020-02-02-preview
response:
body:
- string: '{"name":"18031dcd-b93e-48dc-ad83-8e230d31b0fb","status":"Succeeded","startTime":"2021-01-28T17:17:32.253Z"}'
+ string: '{"name":"c440ced5-7ce2-4407-b02b-5e5e8bec678d","status":"Succeeded","startTime":"2021-04-14T20:17:30.553Z"}'
headers:
cache-control:
- no-cache
@@ -3280,7 +18978,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:18:34 GMT
+ - Wed, 14 Apr 2021 20:18:30 GMT
expires:
- '-1'
pragma:
@@ -3312,23 +19010,23 @@ interactions:
ParameterSetName:
- --id --admin-password
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1365'
+ - '1370'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:18:35 GMT
+ - Wed, 14 Apr 2021 20:18:30 GMT
expires:
- '-1'
pragma:
@@ -3360,25 +19058,25 @@ interactions:
ParameterSetName:
- -g -n --minimal-tls-version
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1365'
+ - '1370'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:18:36 GMT
+ - Wed, 14 Apr 2021 20:18:30 GMT
expires:
- '-1'
pragma:
@@ -3410,26 +19108,26 @@ interactions:
ParameterSetName:
- -g -n --minimal-tls-version
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus2euap/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westeurope/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
response:
body:
- string: '{"name":"East US 2 EUAP","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ string: '{"name":"West Europe","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
headers:
cache-control:
- no-cache
content-length:
- - '11974'
+ - '10985'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:18:36 GMT
+ - Wed, 14 Apr 2021 20:18:31 GMT
expires:
- '-1'
pragma:
@@ -3448,9 +19146,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2euap", "tags": {"tagName1": "tagValue1", "tagName2":
+ body: '{"location": "westeurope", "tags": {"tagName1": "tagValue1", "tagName2":
"tagValue2"}, "identity": {"type": "SystemAssigned"}, "sku": {"name": "GP_Gen5"},
- "properties": {"administratorLogin": "admin123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
+ "properties": {"administratorLogin": "admin123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
"licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
"Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
"Proxy", "timezoneId": "Central European Standard Time", "minimalTlsVersion":
@@ -3465,33 +19163,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '684'
+ - '686'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -g -n --minimal-tls-version
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
string: '{"identity":{"principalId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned","tenantId":"00000000-0000-0000-0000-000000000000"},"sku":{"name":"GP_Gen5","capacity":8},"properties":{"provisioningState":"Updating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/1244ffaf-cb58-4fbb-aa1b-7216c3d4c9ed?api-version=2020-02-02-preview
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/9c949f7b-3978-4d4c-892c-fc84e594ac8c?api-version=2020-02-02-preview
cache-control:
- no-cache
content-length:
- - '867'
+ - '869'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:18:41 GMT
+ - Wed, 14 Apr 2021 20:18:32 GMT
expires:
- '-1'
pragma:
@@ -3525,22 +19223,22 @@ interactions:
ParameterSetName:
- -g -n --minimal-tls-version
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/1244ffaf-cb58-4fbb-aa1b-7216c3d4c9ed?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/9c949f7b-3978-4d4c-892c-fc84e594ac8c?api-version=2020-02-02-preview
response:
body:
- string: '{"name":"1244ffaf-cb58-4fbb-aa1b-7216c3d4c9ed","status":"Succeeded","startTime":"2021-01-28T17:18:39.47Z"}'
+ string: '{"name":"9c949f7b-3978-4d4c-892c-fc84e594ac8c","status":"Succeeded","startTime":"2021-04-14T20:18:32.577Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '106'
+ - '107'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:19:42 GMT
+ - Wed, 14 Apr 2021 20:19:32 GMT
expires:
- '-1'
pragma:
@@ -3572,23 +19270,23 @@ interactions:
ParameterSetName:
- -g -n --minimal-tls-version
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1365'
+ - '1370'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:19:42 GMT
+ - Wed, 14 Apr 2021 20:19:32 GMT
expires:
- '-1'
pragma:
@@ -3620,25 +19318,25 @@ interactions:
ParameterSetName:
- -g -n --set
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1365'
+ - '1370'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:19:42 GMT
+ - Wed, 14 Apr 2021 20:19:33 GMT
expires:
- '-1'
pragma:
@@ -3670,26 +19368,26 @@ interactions:
ParameterSetName:
- -g -n --set
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus2euap/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westeurope/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
response:
body:
- string: '{"name":"East US 2 EUAP","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ string: '{"name":"West Europe","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
headers:
cache-control:
- no-cache
content-length:
- - '11974'
+ - '10985'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:19:43 GMT
+ - Wed, 14 Apr 2021 20:19:33 GMT
expires:
- '-1'
pragma:
@@ -3708,10 +19406,10 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2euap", "tags": {"tagName1": "tagValue1", "tagName2":
+ body: '{"location": "westeurope", "tags": {"tagName1": "tagValue1", "tagName2":
"tagValue2", "tagName3": "tagValue3"}, "identity": {"type": "SystemAssigned"},
"sku": {"name": "GP_Gen5"}, "properties": {"administratorLogin": "admin123",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
"licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
"Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
"Proxy", "timezoneId": "Central European Standard Time", "minimalTlsVersion":
@@ -3726,33 +19424,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '709'
+ - '711'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -g -n --set
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
string: '{"identity":{"principalId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned","tenantId":"00000000-0000-0000-0000-000000000000"},"sku":{"name":"GP_Gen5","capacity":8},"properties":{"provisioningState":"Updating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/1d088f7c-6119-44e6-8b97-5fbee237234e?api-version=2020-02-02-preview
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/73a585bf-a237-40ac-ad59-ecd63d71a8e4?api-version=2020-02-02-preview
cache-control:
- no-cache
content-length:
- - '890'
+ - '892'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:19:48 GMT
+ - Wed, 14 Apr 2021 20:19:34 GMT
expires:
- '-1'
pragma:
@@ -3786,13 +19484,13 @@ interactions:
ParameterSetName:
- -g -n --set
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/1d088f7c-6119-44e6-8b97-5fbee237234e?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/73a585bf-a237-40ac-ad59-ecd63d71a8e4?api-version=2020-02-02-preview
response:
body:
- string: '{"name":"1d088f7c-6119-44e6-8b97-5fbee237234e","status":"Succeeded","startTime":"2021-01-28T17:19:46.94Z"}'
+ string: '{"name":"73a585bf-a237-40ac-ad59-ecd63d71a8e4","status":"Succeeded","startTime":"2021-04-14T20:19:34.82Z"}'
headers:
cache-control:
- no-cache
@@ -3801,7 +19499,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:20:48 GMT
+ - Wed, 14 Apr 2021 20:20:35 GMT
expires:
- '-1'
pragma:
@@ -3833,23 +19531,23 @@ interactions:
ParameterSetName:
- -g -n --set
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1388'
+ - '1393'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:20:49 GMT
+ - Wed, 14 Apr 2021 20:20:35 GMT
expires:
- '-1'
pragma:
@@ -3881,25 +19579,25 @@ interactions:
ParameterSetName:
- -g -n --remove
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1","tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1388'
+ - '1393'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:20:50 GMT
+ - Wed, 14 Apr 2021 20:20:35 GMT
expires:
- '-1'
pragma:
@@ -3931,26 +19629,26 @@ interactions:
ParameterSetName:
- -g -n --remove
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus2euap/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westeurope/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
response:
body:
- string: '{"name":"East US 2 EUAP","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ string: '{"name":"West Europe","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
headers:
cache-control:
- no-cache
content-length:
- - '11974'
+ - '10985'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:20:51 GMT
+ - Wed, 14 Apr 2021 20:20:35 GMT
expires:
- '-1'
pragma:
@@ -3969,9 +19667,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2euap", "tags": {"tagName2": "tagValue2", "tagName3":
+ body: '{"location": "westeurope", "tags": {"tagName2": "tagValue2", "tagName3":
"tagValue3"}, "identity": {"type": "SystemAssigned"}, "sku": {"name": "GP_Gen5"},
- "properties": {"administratorLogin": "admin123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
+ "properties": {"administratorLogin": "admin123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
"licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
"Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
"Proxy", "timezoneId": "Central European Standard Time", "minimalTlsVersion":
@@ -3986,33 +19684,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '684'
+ - '686'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -g -n --remove
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
string: '{"identity":{"principalId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned","tenantId":"00000000-0000-0000-0000-000000000000"},"sku":{"name":"GP_Gen5","capacity":8},"properties":{"provisioningState":"Updating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/2a5b030d-a21b-4262-b38a-996b98817123?api-version=2020-02-02-preview
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/d2156a18-063c-4ed4-931b-b3ea33c24f77?api-version=2020-02-02-preview
cache-control:
- no-cache
content-length:
- - '867'
+ - '869'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:20:55 GMT
+ - Wed, 14 Apr 2021 20:20:37 GMT
expires:
- '-1'
pragma:
@@ -4046,22 +19744,22 @@ interactions:
ParameterSetName:
- -g -n --remove
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/2a5b030d-a21b-4262-b38a-996b98817123?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/d2156a18-063c-4ed4-931b-b3ea33c24f77?api-version=2020-02-02-preview
response:
body:
- string: '{"name":"2a5b030d-a21b-4262-b38a-996b98817123","status":"Succeeded","startTime":"2021-01-28T17:20:54.003Z"}'
+ string: '{"name":"d2156a18-063c-4ed4-931b-b3ea33c24f77","status":"Succeeded","startTime":"2021-04-14T20:20:36.78Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '107'
+ - '106'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:21:56 GMT
+ - Wed, 14 Apr 2021 20:21:37 GMT
expires:
- '-1'
pragma:
@@ -4093,23 +19791,23 @@ interactions:
ParameterSetName:
- -g -n --remove
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1365'
+ - '1370'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:21:56 GMT
+ - Wed, 14 Apr 2021 20:21:37 GMT
expires:
- '-1'
pragma:
@@ -4141,25 +19839,25 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName2":"tagValue2","tagName3":"tagValue3"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1365'
+ - '1370'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:21:57 GMT
+ - Wed, 14 Apr 2021 20:21:37 GMT
expires:
- '-1'
pragma:
@@ -4191,26 +19889,26 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus2euap/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westeurope/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
response:
body:
- string: '{"name":"East US 2 EUAP","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ string: '{"name":"West Europe","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
headers:
cache-control:
- no-cache
content-length:
- - '11974'
+ - '10985'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:21:57 GMT
+ - Wed, 14 Apr 2021 20:21:38 GMT
expires:
- '-1'
pragma:
@@ -4229,9 +19927,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2euap", "tags": {"tagName1": "tagValue1"}, "identity":
+ body: '{"location": "westeurope", "tags": {"tagName1": "tagValue1"}, "identity":
{"type": "SystemAssigned"}, "sku": {"name": "GP_Gen5"}, "properties": {"administratorLogin":
- "admin123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
+ "admin123", "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
"licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
"Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
"Proxy", "timezoneId": "Central European Standard Time", "minimalTlsVersion":
@@ -4246,33 +19944,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '659'
+ - '661'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
string: '{"identity":{"principalId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned","tenantId":"00000000-0000-0000-0000-000000000000"},"sku":{"name":"GP_Gen5","capacity":8},"properties":{"provisioningState":"Updating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/98d8b4e2-604b-424d-9371-592a5b4ea522?api-version=2020-02-02-preview
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/033388a1-836d-4914-8e41-212d7fd703fc?api-version=2020-02-02-preview
cache-control:
- no-cache
content-length:
- - '844'
+ - '846'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:22:02 GMT
+ - Wed, 14 Apr 2021 20:21:39 GMT
expires:
- '-1'
pragma:
@@ -4306,22 +20004,22 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/98d8b4e2-604b-424d-9371-592a5b4ea522?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/033388a1-836d-4914-8e41-212d7fd703fc?api-version=2020-02-02-preview
response:
body:
- string: '{"name":"98d8b4e2-604b-424d-9371-592a5b4ea522","status":"Succeeded","startTime":"2021-01-28T17:22:00.853Z"}'
+ string: '{"name":"033388a1-836d-4914-8e41-212d7fd703fc","status":"Succeeded","startTime":"2021-04-14T20:21:38.93Z"}'
headers:
cache-control:
- no-cache
content-length:
- - '107'
+ - '106'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:23:03 GMT
+ - Wed, 14 Apr 2021 20:22:39 GMT
expires:
- '-1'
pragma:
@@ -4353,23 +20051,23 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1342'
+ - '1347'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:23:03 GMT
+ - Wed, 14 Apr 2021 20:22:39 GMT
expires:
- '-1'
pragma:
@@ -4401,25 +20099,25 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{"tagName1":"tagValue1"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1342'
+ - '1347'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:23:04 GMT
+ - Wed, 14 Apr 2021 20:22:40 GMT
expires:
- '-1'
pragma:
@@ -4451,26 +20149,26 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/eastus2euap/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/locations/westeurope/capabilities?include=supportedManagedInstanceVersions&api-version=2020-08-01-preview
response:
body:
- string: '{"name":"East US 2 EUAP","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
- is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_EastUS2EUAP_MI_1","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_2","status":"Available"},{"name":"SQL_EastUS2EUAP_MI_Test","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ string: '{"name":"West Europe","supportedManagedInstanceVersions":[{"name":"12.0","supportedEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","sku":"GP_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"2","value":2,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":640,"unit":"Gigabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":false,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":8,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
+ is available in multi-az regions"}],"zoneRedundant":false,"status":"Default"},{"name":"BusinessCritical","supportedFamilies":[{"name":"Gen5","sku":"BC_Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"4","value":4,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"8","value":8,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Default"},{"name":"16","value":16,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":1,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"24","value":24,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":2,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"32","value":32,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"40","value":40,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"64","value":64,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"},{"name":"80","value":80,"includedMaxSize":{"limit":262144,"unit":"Megabytes"},"supportedStorageSizes":[{"minValue":{"limit":32,"unit":"Gigabytes"},"maxValue":{"limit":4,"unit":"Terabytes"},"scaleSize":{"limit":32,"unit":"Gigabytes"},"status":"Available"}],"instancePoolSupported":true,"standaloneSupported":true,"supportedMaintenanceConfigurations":[{"name":"SQL_Default","status":"Default"},{"name":"SQL_WestEurope_MI_1","status":"Available"},{"name":"SQL_WestEurope_MI_2","status":"Available"}],"status":"Available"}],"status":"Default"}],"supportedStorageCapabilities":[{"storageAccountType":"GRS","status":"Default"},{"storageAccountType":"LRS","status":"Available"},{"storageAccountType":"ZRS","status":"Available","reason":"ZRS
is available in multi-az regions"}],"zoneRedundant":false,"status":"Available"}],"supportedInstancePoolEditions":[{"name":"GeneralPurpose","supportedFamilies":[{"name":"Gen5","supportedLicenseTypes":[{"name":"LicenseIncluded","status":"Default"},{"name":"BasePrice","status":"Available"}],"supportedVcoresValues":[{"name":"GP_Gen5_8","value":8,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Default"},{"name":"GP_Gen5_16","value":16,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_24","value":24,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_32","value":32,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_40","value":40,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_64","value":64,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"},{"name":"GP_Gen5_80","value":80,"storageLimit":{"limit":8388608,"unit":"Megabytes"},"status":"Available"}],"status":"Default"}],"status":"Default"}],"status":"Default"}],"status":"Available"}'
headers:
cache-control:
- no-cache
content-length:
- - '11974'
+ - '10985'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:23:04 GMT
+ - Wed, 14 Apr 2021 20:22:40 GMT
expires:
- '-1'
pragma:
@@ -4489,9 +20187,9 @@ interactions:
code: 200
message: OK
- request:
- body: '{"location": "eastus2euap", "tags": {}, "identity": {"type": "SystemAssigned"},
+ body: '{"location": "westeurope", "tags": {}, "identity": {"type": "SystemAssigned"},
"sku": {"name": "GP_Gen5"}, "properties": {"administratorLogin": "admin123",
- "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
+ "subnetId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance",
"licenseType": "LicenseIncluded", "vCores": 8, "storageSizeInGB": 128, "collation":
"Serbian_Cyrillic_100_CS_AS", "publicDataEndpointEnabled": true, "proxyOverride":
"Proxy", "timezoneId": "Central European Standard Time", "minimalTlsVersion":
@@ -4506,33 +20204,33 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '636'
+ - '638'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
string: '{"identity":{"principalId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned","tenantId":"00000000-0000-0000-0000-000000000000"},"sku":{"name":"GP_Gen5","capacity":8},"properties":{"provisioningState":"Updating","administratorLogin":"admin123","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ European Standard Time","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/9c67d11f-ac6e-44ab-bcc4-046255736739?api-version=2020-02-02-preview
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/a2135f98-ad40-458e-b353-097bd93da4b5?api-version=2020-02-02-preview
cache-control:
- no-cache
content-length:
- - '822'
+ - '824'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:23:09 GMT
+ - Wed, 14 Apr 2021 20:22:41 GMT
expires:
- '-1'
pragma:
@@ -4566,13 +20264,13 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/locations/eastus2euap/managedInstanceAzureAsyncOperation/9c67d11f-ac6e-44ab-bcc4-046255736739?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/locations/westeurope/managedInstanceAzureAsyncOperation/a2135f98-ad40-458e-b353-097bd93da4b5?api-version=2020-02-02-preview
response:
body:
- string: '{"name":"9c67d11f-ac6e-44ab-bcc4-046255736739","status":"Succeeded","startTime":"2021-01-28T17:23:07.953Z"}'
+ string: '{"name":"a2135f98-ad40-458e-b353-097bd93da4b5","status":"Succeeded","startTime":"2021-04-14T20:22:41.177Z"}'
headers:
cache-control:
- no-cache
@@ -4581,7 +20279,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:24:10 GMT
+ - Wed, 14 Apr 2021 20:23:41 GMT
expires:
- '-1'
pragma:
@@ -4613,23 +20311,23 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
- string: '{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
+ string: '{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"}'
headers:
cache-control:
- no-cache
content-length:
- - '1320'
+ - '1325'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:24:10 GMT
+ - Wed, 14 Apr 2021 20:23:41 GMT
expires:
- '-1'
pragma:
@@ -4659,42 +20357,40 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql/managedInstances?api-version=2020-02-02-preview
response:
body:
- string: '{"value":[{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"mi-masredic-test-2.18d1233eb37d.database.windows.net","administratorLogin":"mi-masredic-test-admin","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Network/virtualNetworks/mi-masredic-test-vnet/subnets/mi-masredic-test-subnet-2","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"18d1233eb37d","publicDataEndpointEnabled":false,"timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_Test","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Sql/managedInstances/mi-masredic-test-2","name":"mi-masredic-test-2","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"7f1095f5-fc95-4404-aaa8-33595125e996","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwm2/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmikhqkov6cqot","name":"clitestmikhqkov6cqot","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"f3664fb1-1db4-45a3-96e5-b9edf731b022","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"fmwnopolicy.cb6f0d077092.database.windows.net","administratorLogin":"ivkulezi","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"BasePrice","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":false,"proxyOverride":"Proxy","timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/fmwnopolicy","name":"fmwnopolicy","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"ec98c25b-0c63-4a6f-84d2-6bb2933a227d","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"fmwpolicym2test.cb6f0d077092.database.windows.net","administratorLogin":"ivkulezi","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":false,"proxyOverride":"Proxy","timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/fmwpolicym2test","name":"fmwpolicym2test","type":"Microsoft.Sql/managedInstances"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi2u2ndsvfbqx.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi2u2ndsvfbqx","name":"clitestmi2u2ndsvfbqx","type":"Microsoft.Sql/managedInstances"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000002.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
- European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"mi-masredic-test.3bb7caa7fbd0.database.windows.net","administratorLogin":"mi-masredic-test-admin","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Network/virtualNetworks/mi-masredic-test-vnet/subnets/mi-masredic-test-subnet","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"3bb7caa7fbd0","publicDataEndpointEnabled":false,"timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_Test","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Sql/managedInstances/mi-masredic-test","name":"mi-masredic-test","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"1530c2bb-ec32-47eb-b26f-21479465253a","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"fmwprazan.cb6f0d077092.database.windows.net","administratorLogin":"ivkulezi","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":false,"proxyOverride":"Proxy","timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_1","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/fmwprazan","name":"fmwprazan","type":"Microsoft.Sql/managedInstances"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Failed","administratorLogin":"mi-masredic-test-admin","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Network/virtualNetworks/mi-masredic-test-vnet/subnets/mi-masredic-test-subnet","state":"CreationFailed","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","publicDataEndpointEnabled":false,"timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Sql/managedInstances/mi-masredic-test-tst","name":"mi-masredic-test-tst","type":"Microsoft.Sql/managedInstances"}]}'
+ string: '{"value":[{"identity":{"principalId":"799333ee-3cdb-42d7-927f-6ba54af8cb54","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"fmwm1.2791c0d1c878.database.windows.net","administratorLogin":"ivkulezi","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":false,"proxyOverride":"Proxy","timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/fmwm1","name":"fmwm1","type":"Microsoft.Sql/managedInstances"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000002.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_WestEurope_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002","name":"clitestmi000002","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"828febca-96a8-478a-8350-d2f580d090b8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"clitestmi000001.2791c0d1c878.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.1","storageAccountType":"LRS","zoneRedundant":false},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001","name":"clitestmi000001","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"ebef2087-bf74-4368-82f6-f3dee356bf18","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"fmwnopolicy.2791c0d1c878.database.windows.net","administratorLogin":"ivkulezi","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"2791c0d1c878","publicDataEndpointEnabled":false,"proxyOverride":"Proxy","timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"GRS","zoneRedundant":false},"location":"westeurope","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/fmwnopolicy","name":"fmwnopolicy","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"6ebc5648-37d2-4595-a03c-b498d1a974a6","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"BC_Gen5","tier":"BusinessCritical","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"mi14.cb6f0d077092.database.windows.net","administratorLogin":"ivkulezi","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":false,"proxyOverride":"Proxy","timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/mi14","name":"mi14","type":"Microsoft.Sql/managedInstances"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"mi-masredic-test-2.18d1233eb37d.database.windows.net","administratorLogin":"mi-masredic-test-admin","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Network/virtualNetworks/mi-masredic-test-vnet/subnets/mi-masredic-test-subnet-2","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"18d1233eb37d","publicDataEndpointEnabled":false,"timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_Test","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Sql/managedInstances/mi-masredic-test-2","name":"mi-masredic-test-2","type":"Microsoft.Sql/managedInstances"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Creating","fullyQualifiedDomainName":"clitestmimwa3gircerr.cb6f0d077092.database.windows.net","administratorLogin":"admin123","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Creating","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":128,"collation":"Serbian_Cyrillic_100_CS_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":true,"proxyOverride":"Proxy","timezoneId":"Central
+ European Standard Time","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_Default","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"LRS","zoneRedundant":false},"location":"eastus2euap","tags":{"tagName1":"tagValue1","tagName2":"tagValue2"},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmimwa3gircerr","name":"clitestmimwa3gircerr","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"ec98c25b-0c63-4a6f-84d2-6bb2933a227d","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"fmwpolicym2test.cb6f0d077092.database.windows.net","administratorLogin":"ivkulezi","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":false,"proxyOverride":"Proxy","timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2","privateEndpointConnections":[],"minimalTlsVersion":"1.2","storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","tags":{},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/fmwpolicym2test","name":"fmwpolicym2test","type":"Microsoft.Sql/managedInstances"},{"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"mi-masredic-test.3bb7caa7fbd0.database.windows.net","administratorLogin":"mi-masredic-test-admin","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Network/virtualNetworks/mi-masredic-test-vnet/subnets/mi-masredic-test-subnet","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"3bb7caa7fbd0","publicDataEndpointEnabled":false,"timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_Test","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mi-masredic-test-rg/providers/Microsoft.Sql/managedInstances/mi-masredic-test","name":"mi-masredic-test","type":"Microsoft.Sql/managedInstances"},{"identity":{"principalId":"98e0b1a2-b2d6-4716-857c-c073ee3b38d8","type":"SystemAssigned","tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47"},"sku":{"name":"GP_Gen5","tier":"GeneralPurpose","family":"Gen5","capacity":8},"properties":{"provisioningState":"Succeeded","fullyQualifiedDomainName":"testcreateshort.cb6f0d077092.database.windows.net","administratorLogin":"ivkulezi","subnetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance","state":"Ready","licenseType":"LicenseIncluded","vCores":8,"storageSizeInGB":256,"collation":"SQL_Latin1_General_CP1_CI_AS","dnsZone":"cb6f0d077092","publicDataEndpointEnabled":false,"timezoneId":"UTC","maintenanceConfigurationId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_1","privateEndpointConnections":[],"storageAccountType":"GRS","zoneRedundant":false},"location":"eastus2euap","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/testcreateshort","name":"testcreateshort","type":"Microsoft.Sql/managedInstances"}]}'
headers:
cache-control:
- no-cache
content-length:
- - '11930'
+ - '12340'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:24:12 GMT
+ - Wed, 14 Apr 2021 20:23:42 GMT
expires:
- '-1'
pragma:
- no-cache
- server:
- - Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-original-request-ids:
+ - e21c45ec-eb91-40ec-b16e-b02b4ba5aceb
+ - 717c2f91-f033-4255-ac46-199ef8763239
status:
code: 200
message: OK
@@ -4714,12 +20410,57 @@ interactions:
ParameterSetName:
- --id --yes
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: DELETE
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ date:
+ - Wed, 14 Apr 2021 20:23:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-deletes:
+ - '14999'
+ status:
+ code: 204
+ message: No Content
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sql mi delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '0'
+ ParameterSetName:
+ - --id --yes
+ User-Agent:
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000002?api-version=2020-02-02-preview
response:
body:
string: ''
@@ -4727,7 +20468,7 @@ interactions:
cache-control:
- no-cache
date:
- - Thu, 28 Jan 2021 17:24:16 GMT
+ - Wed, 14 Apr 2021 20:23:46 GMT
expires:
- '-1'
pragma:
@@ -4757,26 +20498,26 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.18.0
+ - python/3.8.6 (Windows-10-10.0.17763-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-sql/0.26.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtest/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fmwtestweu/providers/Microsoft.Sql/managedInstances/clitestmi000001?api-version=2020-02-02-preview
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Sql/managedInstances/clitestmi000001''
- under resource group ''fmwtest'' was not found. For more details please go
- to https://aka.ms/ARMResourceNotFoundFix"}}'
+ under resource group ''fmwtestweu'' was not found. For more details please
+ go to https://aka.ms/ARMResourceNotFoundFix"}}'
headers:
cache-control:
- no-cache
content-length:
- - '230'
+ - '233'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 28 Jan 2021 17:24:17 GMT
+ - Wed, 14 Apr 2021 20:23:46 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py
index 919094cedd5..43503e69d9a 100644
--- a/src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py
+++ b/src/azure-cli/azure/cli/command_modules/sql/tests/latest/test_sql_commands.py
@@ -3951,19 +3951,25 @@ def test_sql_server_trust_groups(self):
class SqlManagedInstanceMgmtScenarioTest(ScenarioTest):
+ DEFAULT_MC = "SQL_Default"
+ MMI1 = "SQL_WestEurope_MI_1"
+
+ def _get_full_maintenance_id(self, name):
+ return "/subscriptions/{}/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/{}".format(self.get_subscription_id(), name)
+
@AllowLargeResponse()
def test_sql_managed_instance_mgmt(self):
managed_instance_name_1 = self.create_random_name(managed_instance_name_prefix, managed_instance_name_max_length)
admin_login = 'admin123'
admin_passwords = ['SecretPassword123', 'SecretPassword456']
families = ['Gen5']
- subnet = '/subscriptions/a295933f-f7f5-4994-a109-8fa51241a5d6/resourceGroups/fmwtest/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance'
+ subnet = '/subscriptions/a295933f-f7f5-4994-a109-8fa51241a5d6/resourceGroups/fmwtestweu/providers/Microsoft.Network/virtualNetworks/vnet-fmwnopolicy/subnets/ManagedInstance'
license_type = 'LicenseIncluded'
- loc = 'eastus2euap'
+ loc = 'westeurope'
v_cores = 8
storage_size_in_gb = '128'
edition = 'GeneralPurpose'
- resource_group_1 = "fmwtest"
+ resource_group_1 = "fmwtestweu"
collation = "Serbian_Cyrillic_100_CS_AS"
proxy_override = "Proxy"
# proxy_override_update = "Redirect"
@@ -3998,28 +4004,29 @@ def test_sql_managed_instance_mgmt(self):
JMESPathCheck('timezoneId', timezone_id),
JMESPathCheck('minimalTlsVersion', tls1_2),
JMESPathCheck('tags', "{'tagName1': 'tagValue1', 'tagName2': 'tagValue2'}"),
- JMESPathCheck('storageAccountType', backup_storage_redundancy_internal)]).get_output_in_json()
+ JMESPathCheck('storageAccountType', backup_storage_redundancy_internal),
+ JMESPathCheck('maintenanceConfigurationId', self._get_full_maintenance_id(self.DEFAULT_MC))]).get_output_in_json()
- maintenance_configuration_id = '/subscriptions/a295933f-f7f5-4994-a109-8fa51241a5d6/providers/Microsoft.Maintenance/publicMaintenanceConfigurations/SQL_EastUS2EUAP_MI_2'
managed_instance_name_2 = self.create_random_name(managed_instance_name_prefix, managed_instance_name_max_length)
# test create sql managed_instance with FMW
- self.cmd('sql mi create -g {} -n {} -l {} '
- '-u {} -p {} --subnet {} --license-type {} --capacity {} --storage {} --edition {} --family {} --collation {} --proxy-override {} --public-data-endpoint-enabled --timezone-id "{}" --maint-config-id "{}"'
- .format(resource_group_1, managed_instance_name_2, loc, user, admin_passwords[0], subnet, license_type, v_cores, storage_size_in_gb, edition, families[0], collation, proxy_override, timezone_id, maintenance_configuration_id),
- checks=[
- JMESPathCheck('resourceGroup', resource_group_1),
- JMESPathCheck('name', managed_instance_name_2),
- JMESPathCheck('administratorLogin', user),
- JMESPathCheck('licenseType', license_type),
- JMESPathCheck('vCores', v_cores),
- JMESPathCheck('storageSizeInGb', storage_size_in_gb),
- JMESPathCheck('sku.tier', edition),
- JMESPathCheck('sku.family', families[0]),
- JMESPathCheck('collation', collation),
- JMESPathCheck('proxyOverride', proxy_override),
- JMESPathCheck('publicDataEndpointEnabled', 'True'),
- JMESPathCheck('timezoneId', timezone_id)]).get_output_in_json()
+ managed_instance_2 = self.cmd('sql mi create -g {} -n {} -l {} '
+ '-u {} -p {} --subnet {} --license-type {} --capacity {} --storage {} --edition {} --family {} --collation {} --proxy-override {} --public-data-endpoint-enabled --timezone-id "{}" --maint-config-id "{}"'
+ .format(resource_group_1, managed_instance_name_2, loc, user, admin_passwords[0], subnet, license_type, v_cores, storage_size_in_gb, edition, families[0], collation, proxy_override, timezone_id, self.MMI1),
+ checks=[
+ JMESPathCheck('resourceGroup', resource_group_1),
+ JMESPathCheck('name', managed_instance_name_2),
+ JMESPathCheck('administratorLogin', user),
+ JMESPathCheck('licenseType', license_type),
+ JMESPathCheck('vCores', v_cores),
+ JMESPathCheck('storageSizeInGb', storage_size_in_gb),
+ JMESPathCheck('sku.tier', edition),
+ JMESPathCheck('sku.family', families[0]),
+ JMESPathCheck('collation', collation),
+ JMESPathCheck('proxyOverride', proxy_override),
+ JMESPathCheck('publicDataEndpointEnabled', 'True'),
+ JMESPathCheck('timezoneId', timezone_id),
+ JMESPathCheck('maintenanceConfigurationId', self._get_full_maintenance_id(self.MMI1))]).get_output_in_json()
# test show sql managed instance 1
self.cmd('sql mi show -g {} -n {}'
@@ -4037,7 +4044,7 @@ def test_sql_managed_instance_mgmt(self):
JMESPathCheck('resourceGroup', resource_group_1),
JMESPathCheck('administratorLogin', user)])
- # test update sql managed_instance
+ # test update sql managed_instance 1
self.cmd('sql mi update -g {} -n {} --admin-password {} -i'
.format(resource_group_1, managed_instance_name_1, admin_passwords[1]),
checks=[
@@ -4112,10 +4119,14 @@ def test_sql_managed_instance_mgmt(self):
# test list sql managed_instance in the subscription should be at least 1
self.cmd('sql mi list', checks=[JMESPathCheckGreaterThan('length(@)', 0)])
- # test delete sql managed instance
+ # test delete sql managed instance 1
self.cmd('sql mi delete --id {} --yes'
.format(managed_instance_1['id']), checks=NoneCheck())
+ # test delete sql managed instance 2
+ self.cmd('sql mi delete --id {} --yes'
+ .format(managed_instance_2['id']), checks=NoneCheck())
+
# test show sql managed instance doesn't return anything
self.cmd('sql mi show -g {} -n {}'
.format(resource_group_1, managed_instance_name_1),
diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params.py b/src/azure-cli/azure/cli/command_modules/storage/_params.py
index 9327beb7cb8..8b37a059584 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py
@@ -6,7 +6,7 @@
from azure.cli.core.profiles import ResourceType
from azure.cli.core.commands.validators import get_default_location_from_resource_group
from azure.cli.core.commands.parameters import (tags_type, file_type, get_location_type, get_enum_type,
- get_three_state_flag)
+ get_three_state_flag, edge_zone_type)
from azure.cli.core.local_context import LocalContextAttribute, LocalContextAction, ALL
from ._validators import (get_datetime_type, validate_metadata, get_permission_validator, get_permission_help_string,
@@ -270,6 +270,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem
help='The minimum TLS version to be permitted on requests to storage. '
'The default interpretation is TLS 1.0 for this property')
c.argument('allow_shared_key_access', allow_shared_key_access_type)
+ c.argument('edge_zone', edge_zone_type, min_api='2020-08-01-preview')
with self.argument_context('storage account private-endpoint-connection',
resource_type=ResourceType.MGMT_STORAGE) as c:
diff --git a/src/azure-cli/azure/cli/command_modules/storage/operations/account.py b/src/azure-cli/azure/cli/command_modules/storage/operations/account.py
index b97b1a024b9..56a0754fa92 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/operations/account.py
+++ b/src/azure-cli/azure/cli/command_modules/storage/operations/account.py
@@ -54,7 +54,7 @@ def create_storage_account(cmd, resource_group_name, account_name, sku=None, loc
encryption_key_type_for_table=None, encryption_key_type_for_queue=None,
routing_choice=None, publish_microsoft_endpoints=None, publish_internet_endpoints=None,
require_infrastructure_encryption=None, allow_blob_public_access=None,
- min_tls_version=None, allow_shared_key_access=None):
+ min_tls_version=None, allow_shared_key_access=None, edge_zone=None):
StorageAccountCreateParameters, Kind, Sku, CustomDomain, AccessTier, Identity, Encryption, NetworkRuleSet = \
cmd.get_models('StorageAccountCreateParameters', 'Kind', 'Sku', 'CustomDomain', 'AccessTier', 'Identity',
'Encryption', 'NetworkRuleSet')
@@ -155,6 +155,11 @@ def create_storage_account(cmd, resource_group_name, account_name, sku=None, loc
if allow_shared_key_access is not None:
params.allow_shared_key_access = allow_shared_key_access
+ if edge_zone is not None:
+ ExtendedLocation, ExtendedLocationTypes = cmd.get_models('ExtendedLocation', 'ExtendedLocationTypes')
+ params.extended_location = ExtendedLocation(name=edge_zone,
+ type=ExtendedLocationTypes.EDGE_ZONE)
+
return scf.storage_accounts.begin_create(resource_group_name, account_name, params)
diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_account_extended_location.yaml b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_account_extended_location.yaml
new file mode 100644
index 00000000000..cbbdfa13f97
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/recordings/test_storage_account_extended_location.yaml
@@ -0,0 +1,243 @@
+interactions:
+- request:
+ body: '{"sku": {"name": "Premium_LRS"}, "kind": "StorageV2", "location": "eastus2euap",
+ "extendedLocation": {"name": "microsoftrrdclab1", "type": "EdgeZone"}, "properties":
+ {"encryption": {"services": {"blob": {}}, "keySource": "Microsoft.Storage"}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage account create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '243'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --edge-zone -l --sku
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliedgezone000001/providers/Microsoft.Storage/storageAccounts/edge1000002?api-version=2021-01-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ content-type:
+ - text/plain; charset=utf-8
+ date:
+ - Wed, 31 Mar 2021 09:21:32 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/32693f32-3ca8-42f1-909d-7502a8dc43bd?monitor=true&api-version=2021-01-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage account create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --edge-zone -l --sku
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/32693f32-3ca8-42f1-909d-7502a8dc43bd?monitor=true&api-version=2021-01-01
+ response:
+ body:
+ string: '{"extendedLocation":{"type":"EdgeZone","name":"microsoftrrdclab1"},"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliedgezone000001/providers/Microsoft.Storage/storageAccounts/edge1000002","name":"edge1000002","type":"Microsoft.Storage/storageAccounts","location":"eastus2euap","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T09:21:32.0697122Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T09:21:32.0697122Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-31T09:21:31.9634141Z","primaryEndpoints":{"web":"https://edge1000002.web.microsoftrrdclab1.edgestorage.azure.net/","blob":"https://edge1000002.blob.microsoftrrdclab1.edgestorage.azure.net/"},"primaryLocation":"eastus2euap","statusOfPrimary":"available"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1197'
+ content-type:
+ - application/json
+ date:
+ - Wed, 31 Mar 2021 09:21:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage account create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --edge-zone --sku
+ User-Agent:
+ - python/3.7.7 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cliedgezone000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliedgezone000001","name":"cliedgezone000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-31T09:21:23Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 31 Mar 2021 09:21:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"sku": {"name": "Premium_LRS"}, "kind": "StorageV2", "location": "westus",
+ "extendedLocation": {"name": "microsoftlosangeles1", "type": "EdgeZone"}, "properties":
+ {"encryption": {"services": {"blob": {}}, "keySource": "Microsoft.Storage"}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage account create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '241'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -n -g --edge-zone --sku
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliedgezone000001/providers/Microsoft.Storage/storageAccounts/edge2000003?api-version=2021-01-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ content-type:
+ - text/plain; charset=utf-8
+ date:
+ - Wed, 31 Mar 2021 09:21:56 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c547edc5-994e-4791-994f-f4a4f1ef0c90?monitor=true&api-version=2021-01-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - storage account create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g --edge-zone --sku
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.7.7 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/westus/asyncoperations/c547edc5-994e-4791-994f-f4a4f1ef0c90?monitor=true&api-version=2021-01-01
+ response:
+ body:
+ string: '{"extendedLocation":{"type":"EdgeZone","name":"microsoftlosangeles1"},"sku":{"name":"Premium_LRS","tier":"Premium"},"kind":"StorageV2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cliedgezone000001/providers/Microsoft.Storage/storageAccounts/edge2000003","name":"edge2000003","type":"Microsoft.Storage/storageAccounts","location":"westus","tags":{},"properties":{"privateEndpointConnections":[],"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T09:21:55.9811523Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2021-03-31T09:21:55.9811523Z"}},"keySource":"Microsoft.Storage"},"accessTier":"Hot","provisioningState":"Succeeded","creationTime":"2021-03-31T09:21:55.9030063Z","primaryEndpoints":{"web":"https://edge2000003.web.microsoftlosangeles1.edgestorage.azure.net/","blob":"https://edge2000003.blob.microsoftlosangeles1.edgestorage.azure.net/"},"primaryLocation":"westus"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1166'
+ content-type:
+ - application/json
+ date:
+ - Wed, 31 Mar 2021 09:22:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_account_scenarios.py b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_account_scenarios.py
index 779e6beaefc..d34e815341b 100644
--- a/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_account_scenarios.py
+++ b/src/azure-cli/azure/cli/command_modules/storage/tests/latest/test_storage_account_scenarios.py
@@ -962,6 +962,25 @@ def test_update_storage_account_with_files_adds_true(self, resource_group):
self.assertEqual(activeDirectoryProperties['forestName'], self.kwargs['forest_name'])
self.assertEqual(activeDirectoryProperties['netBiosDomainName'], self.kwargs['net_bios_domain_name'])
+ @api_version_constraint(ResourceType.MGMT_STORAGE, min_api='2020-08-01-preview')
+ @ResourceGroupPreparer(location='westus', name_prefix='cliedgezone')
+ def test_storage_account_extended_location(self, resource_group):
+ self.kwargs = {
+ 'sa1': self.create_random_name(prefix='edge1', length=12),
+ 'sa2': self.create_random_name(prefix='edge2', length=12),
+ 'rg': resource_group
+ }
+ self.cmd('storage account create -n {sa1} -g {rg} --edge-zone microsoftrrdclab1 -l eastus2euap --sku Premium_LRS',
+ checks=[
+ JMESPathCheck('extendedLocation.name', 'microsoftrrdclab1'),
+ JMESPathCheck('extendedLocation.type', 'EdgeZone')
+ ])
+ self.cmd('storage account create -n {sa2} -g {rg} --edge-zone microsoftlosangeles1 --sku Premium_LRS',
+ checks=[
+ JMESPathCheck('extendedLocation.name', 'microsoftlosangeles1'),
+ JMESPathCheck('extendedLocation.type', 'EdgeZone')
+ ])
+
class RoleScenarioTest(LiveScenarioTest):
def run_under_service_principal(self):
diff --git a/src/azure-cli/azure/cli/command_modules/vm/_help.py b/src/azure-cli/azure/cli/command_modules/vm/_help.py
index 4c7f47fbd79..3a0035bee1b 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/_help.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/_help.py
@@ -679,6 +679,9 @@
- name: Add a new image version using disks with target regions and customer managed keys for encryption. You specify which disks in the image version to encrypt. Disks encrypted in one region must be encrypted in another region with a different disk encryption set.
text: >
az sig image-version create -g MyResourceGroup --gallery-image-version 1.0.0 --target-regions westus=2=standard eastus --target-region-encryption WestUSDiskEncryptionSet1,0,WestUSDiskEncryptionSet2 EastUSDiskEncryptionSet1,0,EastUSDiskEncryptionSet2 --gallery-name MyGallery --gallery-image-definition MyImage --os-snapshot /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyOSDisk --data-snapshots /subscriptions/00000000-0000-0000-0000-00000000xxxx/resourceGroups/imageGroups/providers/Microsoft.Compute/disks/MyDataDisk --data-snapshot-luns 0
+ - name: Add a new image version from a VHD of an OS disk.
+ text: >
+ az sig image-version create -g MyResourceGroup --gallery-name MyGallery --gallery-image-definition MyImage --gallery-image-version 1.0.0 --os-vhd-uri --os-vhd-storage-account account
"""
helps['sig image-version update'] = """
diff --git a/src/azure-cli/azure/cli/command_modules/vm/_params.py b/src/azure-cli/azure/cli/command_modules/vm/_params.py
index 2345a4bf907..9eaacfc82ec 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/_params.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py
@@ -30,7 +30,7 @@
from azure.cli.command_modules.monitor.actions import get_period_type
-# pylint: disable=too-many-statements, too-many-branches, too-many-locals
+# pylint: disable=too-many-statements, too-many-branches, too-many-locals, too-many-lines
def load_arguments(self, _):
# Model imports
StorageAccountTypes = self.get_models('StorageAccountTypes')
@@ -97,6 +97,12 @@ def load_arguments(self, _):
help='Specify the scale-in policy (space delimited) that decides which virtual machines are chosen for removal when a Virtual Machine Scale Set is scaled-in.'
)
+ edge_zone_type = CLIArgumentType(
+ help='Name of edge zone extended location.',
+ min_api='2020-12-01',
+ is_preview=True
+ )
+
# region MixedScopes
for scope in ['vm', 'disk', 'snapshot', 'image', 'sig']:
with self.argument_context(scope) as c:
@@ -149,6 +155,7 @@ def load_arguments(self, _):
c.argument('gallery_image_reference_lun', type=int, help='If the disk is created from an image\'s data disk, this is an index that indicates which of the data disks in the image to use. For OS disks, this field is null')
c.argument('logical_sector_size', type=int, help='Logical sector size in bytes for Ultra disks. Supported values are 512 ad 4096. 4096 is the default.')
c.argument('tier', help='Performance tier of the disk (e.g, P4, S10) as described here: https://azure.microsoft.com/en-us/pricing/details/managed-disks/. Does not apply to Ultra disks.')
+ c.argument('edge_zone', edge_zone_type)
# endregion
# region Snapshots
@@ -158,6 +165,7 @@ def load_arguments(self, _):
c.argument('sku', arg_type=snapshot_sku)
c.argument('incremental', arg_type=get_three_state_flag(), min_api='2019-03-01',
help='Whether a snapshot is incremental. Incremental snapshots on the same disk occupy less space than full snapshots and can be diffed')
+ c.argument('edge_zone', edge_zone_type)
# endregion
# region Images
@@ -179,6 +187,7 @@ def load_arguments(self, _):
help="Storage caching type for the image's data disk.")
c.argument('hyper_v_generation', arg_type=hyper_v_gen_sku, min_api="2019-03-01", help='The hypervisor generation of the Virtual Machine created from the image.')
c.ignore('source_virtual_machine', 'os_blob_uri', 'os_disk', 'os_snapshot', 'data_blob_uris', 'data_disks', 'data_snapshots')
+ c.argument('edge_zone', edge_zone_type, )
# endregion
# region Image Templates
@@ -727,6 +736,7 @@ def load_arguments(self, _):
c.argument('secrets', multi_ids_type, help='One or many Key Vault secrets as JSON strings or files via `@{path}` containing `[{ "sourceVault": { "id": "value" }, "vaultCertificates": [{ "certificateUrl": "value", "certificateStore": "cert store name (only on windows)"}] }]`', type=file_type, completer=FilesCompleter())
c.argument('assign_identity', nargs='*', arg_group='Managed Service Identity', help="accept system or user assigned identities separated by spaces. Use '[system]' to refer system assigned identity, or a resource id to refer user assigned identity. Check out help for more examples")
c.ignore('aux_subscriptions')
+ c.argument('edge_zone', edge_zone_type)
with self.argument_context(scope, arg_group='Authentication') as c:
c.argument('generate_ssh_keys', action='store_true', help='Generate SSH public and private key files if missing. The keys will be stored in the ~/.ssh directory')
@@ -921,7 +931,7 @@ def load_arguments(self, _):
c.argument('gallery_image_version_name', options_list=['--gallery-image-version', '-e', deprecated_option],
help='Gallery image version in semantic version pattern. The allowed characters are digit and period. Digits must be within the range of a 32-bit integer, e.g. `..`')
- with self.argument_context('sig image-version create') as c:
+ with self.argument_context('sig image-version create', resource_type=ResourceType.MGMT_COMPUTE, operation_group='gallery_image_versions') as c:
c.argument('gallery_image_version', options_list=['--gallery-image-version', '-e'],
help='Gallery image version in semantic version pattern. The allowed characters are digit and period. Digits must be within the range of a 32-bit integer, e.g. `..`')
c.argument('description', help='the description of the gallery image version')
@@ -936,6 +946,8 @@ def load_arguments(self, _):
arg_type=get_enum_type(["Standard_LRS", "Standard_ZRS", "Premium_LRS"]), min_api='2019-03-01')
c.argument('target_region_encryption', nargs='+',
help='Space-separated list of customer managed keys for encrypting the OS and data disks in the gallery artifact for each region. Format for each region: `,,,,`. Use "null" as a placeholder.')
+ c.argument('os_vhd_uri', help='Source VHD URI of OS disk')
+ c.argument('os_vhd_storage_account', help='Name or ID of storage account of source VHD URI of OS disk')
with self.argument_context('sig image-version show') as c:
c.argument('expand', help="The expand expression to apply on the operation, e.g. 'ReplicationStatus'")
diff --git a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py
index c4054fbf97b..7ca95836355 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py
@@ -279,7 +279,7 @@ def build_vm_resource( # pylint: disable=too-many-locals, too-many-statements
enable_agent=None, vmss=None, os_disk_encryption_set=None, data_disk_encryption_sets=None, specialized=None,
encryption_at_host=None, dedicated_host_group=None, enable_auto_update=None, patch_mode=None,
enable_hotpatching=None, platform_fault_domain=None, security_type=None, enable_secure_boot=None,
- enable_vtpm=None, count=None):
+ enable_vtpm=None, count=None, edge_zone=None):
os_caching = disk_info['os'].get('caching')
@@ -528,8 +528,10 @@ def _build_storage_profile():
'dependsOn': [],
'properties': vm_properties,
}
+
if zone:
vm['zones'] = zone
+
if count:
vm['copy'] = {
'name': 'vmcopy',
@@ -537,6 +539,10 @@ def _build_storage_profile():
'count': count
}
vm['name'] = "[concat('{}', copyIndex())]".format(name)
+
+ if edge_zone:
+ vm['extendedLocation'] = edge_zone
+
return vm
@@ -760,7 +766,7 @@ def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision,
specialized=None, os_disk_size_gb=None, encryption_at_host=None, host_group=None,
max_batch_instance_percent=None, max_unhealthy_instance_percent=None,
max_unhealthy_upgraded_instance_percent=None, pause_time_between_batches=None,
- enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None):
+ enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None, edge_zone=None):
# Build IP configuration
ip_configuration = {
@@ -1010,8 +1016,13 @@ def build_vmss_resource(cmd, name, naming_prefix, location, tags, overprovision,
},
'properties': vmss_properties
}
+
if zones:
vmss['zones'] = zones
+
+ if edge_zone:
+ vmss['extendedLocation'] = edge_zone
+
return vmss
diff --git a/src/azure-cli/azure/cli/command_modules/vm/_validators.py b/src/azure-cli/azure/cli/command_modules/vm/_validators.py
index c63687d8d74..1b8f5aba602 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/_validators.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/_validators.py
@@ -1176,6 +1176,7 @@ def _resolve_role_id(cli_ctx, role, scope):
def process_vm_create_namespace(cmd, namespace):
validate_tags(namespace)
_validate_location(cmd, namespace, namespace.zone, namespace.size)
+ validate_edge_zone(cmd, namespace)
if namespace.count is not None:
_validate_count(namespace)
validate_asg_names_or_ids(cmd, namespace)
@@ -1440,6 +1441,7 @@ def process_vmss_create_namespace(cmd, namespace):
else:
namespace.vm_sku = 'Standard_D1_v2'
_validate_location(cmd, namespace, namespace.zones, namespace.vm_sku)
+ validate_edge_zone(cmd, namespace)
validate_asg_names_or_ids(cmd, namespace)
_validate_vm_create_storage_profile(cmd, namespace, for_scale_set=True)
_validate_vm_vmss_create_vnet(cmd, namespace, for_scale_set=True)
@@ -1496,6 +1498,7 @@ def validate_vmss_disk(cmd, namespace):
def process_disk_or_snapshot_create_namespace(cmd, namespace):
from msrestazure.azure_exceptions import CloudError
validate_tags(namespace)
+ validate_edge_zone(cmd, namespace)
if namespace.source:
usage_error = 'usage error: --source {SNAPSHOT | DISK} | --source VHD_BLOB_URI [--source-storage-account-id ID]'
try:
@@ -1510,6 +1513,7 @@ def process_disk_or_snapshot_create_namespace(cmd, namespace):
def process_image_create_namespace(cmd, namespace):
from msrestazure.tools import parse_resource_id
validate_tags(namespace)
+ validate_edge_zone(cmd, namespace)
source_from_vm = False
try:
# try capturing from VM, a most common scenario
@@ -1766,7 +1770,8 @@ def _validate_vmss_create_host_group(cmd, namespace):
def _validate_count(namespace):
if namespace.count < 2 or namespace.count > 250:
- raise ValidationError('--count should be in [2, 250]')
+ raise ValidationError(
+ '--count should be in [2, 250]. Please make sure your subscription has enough quota of resources')
banned_params = [
namespace.attach_data_disks,
namespace.attach_os_disk,
@@ -1781,9 +1786,7 @@ def _validate_count(namespace):
namespace.public_ip_address_dns_name,
namespace.storage_account,
namespace.storage_container_name,
- namespace.subnet,
namespace.use_unmanaged_disk,
- namespace.vnet_name
]
params_str = [
'--attach-data-disks',
@@ -1805,3 +1808,11 @@ def _validate_count(namespace):
]
if any(param for param in banned_params):
raise ValidationError('When --count is specified, {} are not allowed'.format(', '.join(params_str)))
+
+
+def validate_edge_zone(cmd, namespace): # pylint: disable=unused-argument
+ if namespace.edge_zone:
+ namespace.edge_zone = {
+ 'name': namespace.edge_zone,
+ 'type': 'EdgeZone'
+ }
diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py
index abd2a5ee5e4..c49171dea08 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/custom.py
+++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py
@@ -26,8 +26,10 @@
from knack.log import get_logger
from knack.util import CLIError
+from azure.cli.core.azclierror import CLIInternalError
from azure.cli.command_modules.vm._validators import _get_resource_group_from_vault_name
+from azure.cli.core.azclierror import ValidationError
from azure.cli.core.commands.validators import validate_file_or_dict
from azure.cli.core.commands import LongRunningOperation, DeploymentOutputLongRunningOperation
@@ -292,7 +294,7 @@ def create_managed_disk(cmd, resource_group_name, disk_name, location=None, # p
image_reference=None, image_reference_lun=None,
gallery_image_reference=None, gallery_image_reference_lun=None,
network_access_policy=None, disk_access=None, logical_sector_size=None,
- tier=None, enable_bursting=None):
+ tier=None, enable_bursting=None, edge_zone=None):
from msrestazure.tools import resource_id, is_valid_resource_id
from azure.cli.core.commands.client_factory import get_subscription_id
@@ -396,6 +398,8 @@ def create_managed_disk(cmd, resource_group_name, disk_name, location=None, # p
disk.tier = tier
if enable_bursting is not None:
disk.bursting_enabled = enable_bursting
+ if edge_zone:
+ disk.extended_location = edge_zone
client = _compute_client_factory(cmd.cli_ctx)
return sdk_no_wait(no_wait, client.disks.begin_create_or_update, resource_group_name, disk_name, disk)
@@ -416,7 +420,7 @@ def list_managed_disks(cmd, resource_group_name=None):
def update_managed_disk(cmd, resource_group_name, instance, size_gb=None, sku=None, disk_iops_read_write=None,
disk_mbps_read_write=None, encryption_type=None, disk_encryption_set=None,
network_access_policy=None, disk_access=None, max_shares=None, disk_iops_read_only=None,
- disk_mbps_read_only=None, enable_bursting=False):
+ disk_mbps_read_only=None, enable_bursting=None):
from msrestazure.tools import resource_id, is_valid_resource_id
from azure.cli.core.commands.client_factory import get_subscription_id
@@ -465,7 +469,7 @@ def create_image(cmd, resource_group_name, name, source, os_type=None, data_disk
os_blob_uri=None, data_blob_uris=None,
os_snapshot=None, data_snapshots=None,
os_disk=None, os_disk_caching=None, data_disks=None, data_disk_caching=None,
- tags=None, zone_resilient=None):
+ tags=None, zone_resilient=None, edge_zone=None):
ImageOSDisk, ImageDataDisk, ImageStorageProfile, Image, SubResource, OperatingSystemStateTypes = cmd.get_models(
'ImageOSDisk', 'ImageDataDisk', 'ImageStorageProfile', 'Image', 'SubResource', 'OperatingSystemStateTypes')
@@ -507,6 +511,9 @@ def create_image(cmd, resource_group_name, name, source, os_type=None, data_disk
if hyper_v_generation:
image.hyper_v_generation = hyper_v_generation
+ if edge_zone:
+ image.extended_location = edge_zone
+
client = _compute_client_factory(cmd.cli_ctx)
return client.images.begin_create_or_update(resource_group_name, name, image)
@@ -532,7 +539,7 @@ def create_snapshot(cmd, resource_group_name, snapshot_name, location=None, size
# below are generated internally from 'source'
source_blob_uri=None, source_disk=None, source_snapshot=None, source_storage_account_id=None,
hyper_v_generation=None, tags=None, no_wait=False, disk_encryption_set=None,
- encryption_type=None, network_access_policy=None, disk_access=None):
+ encryption_type=None, network_access_policy=None, disk_access=None, edge_zone=None):
from msrestazure.tools import resource_id, is_valid_resource_id
from azure.cli.core.commands.client_factory import get_subscription_id
@@ -583,6 +590,8 @@ def create_snapshot(cmd, resource_group_name, snapshot_name, location=None, size
snapshot.network_access_policy = network_access_policy
if disk_access is not None:
snapshot.disk_access_id = disk_access
+ if edge_zone:
+ snapshot.extended_location = edge_zone
client = _compute_client_factory(cmd.cli_ctx)
return sdk_no_wait(no_wait, client.snapshots.begin_create_or_update, resource_group_name, snapshot_name, snapshot)
@@ -670,6 +679,10 @@ def setter(vm, external_identities=external_identities):
vm.identity = VirtualMachineIdentity(type=identity_types)
if external_identities:
vm.identity.user_assigned_identities = {}
+ if not cmd.supported_api_version(min_api='2018-06-01', resource_type=ResourceType.MGMT_COMPUTE):
+ raise CLIInternalError("Usage error: user assigned identity is not available under current profile.",
+ "You can set the cloud's profile to latest with 'az cloud set --profile latest"
+ " --name '")
for identity in external_identities:
vm.identity.user_assigned_identities[identity] = UserAssignedIdentitiesValue()
@@ -720,7 +733,7 @@ def create_vm(cmd, vm_name, resource_group_name, image=None, size='Standard_DS1_
os_disk_encryption_set=None, data_disk_encryption_sets=None, specialized=None,
encryption_at_host=None, enable_auto_update=None, patch_mode=None, ssh_key_name=None,
enable_hotpatching=None, platform_fault_domain=None, security_type=None, enable_secure_boot=None,
- enable_vtpm=None, count=None):
+ enable_vtpm=None, count=None, edge_zone=None):
from azure.cli.core.commands.client_factory import get_subscription_id
from azure.cli.core.util import random_string, hash_string
from azure.cli.core.commands.arm import ArmTemplateBuilder
@@ -914,7 +927,7 @@ def create_vm(cmd, vm_name, resource_group_name, image=None, size='Standard_DS1_
encryption_at_host=encryption_at_host, dedicated_host_group=dedicated_host_group,
enable_auto_update=enable_auto_update, patch_mode=patch_mode, enable_hotpatching=enable_hotpatching,
platform_fault_domain=platform_fault_domain, security_type=security_type, enable_secure_boot=enable_secure_boot,
- enable_vtpm=enable_vtpm, count=count)
+ enable_vtpm=enable_vtpm, count=count, edge_zone=edge_zone)
vm_resource['dependsOn'] = vm_dependencies
@@ -2421,7 +2434,7 @@ def create_vmss(cmd, vmss_name, resource_group_name, image=None,
automatic_repairs_grace_period=None, specialized=None, os_disk_size_gb=None, encryption_at_host=None,
host_group=None, max_batch_instance_percent=None, max_unhealthy_instance_percent=None,
max_unhealthy_upgraded_instance_percent=None, pause_time_between_batches=None,
- enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None):
+ enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None, edge_zone=None):
from azure.cli.core.commands.client_factory import get_subscription_id
from azure.cli.core.util import random_string, hash_string
from azure.cli.core.commands.arm import ArmTemplateBuilder
@@ -2660,7 +2673,7 @@ def _get_public_ip_address_allocation(value, sku):
max_unhealthy_instance_percent=max_unhealthy_instance_percent,
max_unhealthy_upgraded_instance_percent=max_unhealthy_upgraded_instance_percent,
pause_time_between_batches=pause_time_between_batches, enable_cross_zone_upgrade=enable_cross_zone_upgrade,
- prioritize_unhealthy_instances=prioritize_unhealthy_instances)
+ prioritize_unhealthy_instances=prioritize_unhealthy_instances, edge_zone=edge_zone)
vmss_resource['dependsOn'] = vmss_dependencies
@@ -3266,7 +3279,7 @@ def set_orchestration_service_state(cmd, resource_group_name, vm_scale_set_name,
def upgrade_vmss_extension(cmd, resource_group_name, vm_scale_set_name, no_wait=False):
client = _compute_client_factory(cmd.cli_ctx)
- return sdk_no_wait(no_wait, client.virtual_machine_scale_set_rolling_upgrades.start_extension_upgrade,
+ return sdk_no_wait(no_wait, client.virtual_machine_scale_set_rolling_upgrades.begin_start_extension_upgrade,
resource_group_name, vm_scale_set_name)
# endregion
@@ -3383,7 +3396,7 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n
location=None, target_regions=None, storage_account_type=None,
end_of_life_date=None, exclude_from_latest=None, replica_count=None, tags=None,
os_snapshot=None, data_snapshots=None, managed_image=None, data_snapshot_luns=None,
- target_region_encryption=None):
+ target_region_encryption=None, os_vhd_uri=None, os_vhd_storage_account=None):
# print(target_regions)
from msrestazure.tools import resource_id, is_valid_resource_id
from azure.cli.core.commands.client_factory import get_subscription_id
@@ -3414,8 +3427,8 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n
source=source, replica_count=replica_count,
storage_account_type=storage_account_type)
if cmd.supported_api_version(min_api='2019-07-01', operation_group='gallery_image_versions'):
- if managed_image is None and os_snapshot is None:
- raise CLIError('usage error: Please provide --managed-image or --os-snapshot')
+ if managed_image is None and os_snapshot is None and os_vhd_uri is None:
+ raise CLIError('usage error: Please provide --managed-image or --os-snapshot or --vhd')
GalleryImageVersionStorageProfile = cmd.get_models('GalleryImageVersionStorageProfile')
GalleryArtifactVersionSource = cmd.get_models('GalleryArtifactVersionSource')
GalleryOSDiskImage = cmd.get_models('GalleryOSDiskImage')
@@ -3436,6 +3449,18 @@ def create_image_version(cmd, resource_group_name, gallery_name, gallery_image_n
for i, s in enumerate(data_snapshots):
data_disk_images.append(GalleryDataDiskImage(source=GalleryArtifactVersionSource(id=s),
lun=data_snapshot_luns[i]))
+ # from vhd, only support os image now
+ if cmd.supported_api_version(min_api='2020-09-30', operation_group='gallery_image_versions'):
+ if os_vhd_uri and os_vhd_storage_account is None or os_vhd_uri is None and os_vhd_storage_account:
+ raise ValidationError('--vhd and --vhd-storage-account should be used together.')
+ if os_vhd_uri and os_vhd_storage_account:
+ if not is_valid_resource_id(os_vhd_storage_account):
+ os_vhd_storage_account = resource_id(
+ subscription=get_subscription_id(cmd.cli_ctx), resource_group=resource_group_name,
+ namespace='Microsoft.Storage', type='storageAccounts', name=os_vhd_storage_account)
+ os_disk_image = GalleryOSDiskImage(source=GalleryArtifactVersionSource(
+ id=os_vhd_storage_account, uri=os_vhd_uri))
+
storage_profile = GalleryImageVersionStorageProfile(source=source, os_disk_image=os_disk_image,
data_disk_images=data_disk_images)
image_version = ImageVersion(publishing_profile=profile, location=location, tags=(tags or {}),
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_access.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_access.yaml
index 5b2159e5b83..9035a604d54 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_access.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_access.yaml
@@ -17,7 +17,7 @@ interactions:
ParameterSetName:
- -g -l -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01
response:
@@ -26,7 +26,7 @@ interactions:
\ \"location\": \"centraluseuap\"\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/87b809b8-626a-44c5-a0ab-1f8881f34b4f?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8165b85b-f03b-47e1-aff5-6d2a866fa126?api-version=2020-05-01
cache-control:
- no-cache
content-length:
@@ -34,11 +34,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:55:37 GMT
+ - Tue, 13 Apr 2021 07:28:33 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/87b809b8-626a-44c5-a0ab-1f8881f34b4f?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8165b85b-f03b-47e1-aff5-6d2a866fa126?monitor=true&api-version=2020-05-01
pragma:
- no-cache
server:
@@ -67,24 +67,24 @@ interactions:
ParameterSetName:
- -g -l -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/87b809b8-626a-44c5-a0ab-1f8881f34b4f?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8165b85b-f03b-47e1-aff5-6d2a866fa126?api-version=2020-05-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T05:55:38.0801944+00:00\",\r\n \"endTime\":
- \"2021-04-08T05:55:39.3101506+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"properties\": {\r\n \"output\": {\"name\":\"mydiskaccess\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\"type\":\"Microsoft.Compute/diskAccesses\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2021-04-08T05:55:38.0851541+00:00\"}}\r\n
- \ },\r\n \"name\": \"87b809b8-626a-44c5-a0ab-1f8881f34b4f\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:28:33.6254072+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:28:35.2175692+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"properties\": {\r\n \"output\": {\"name\":\"mydiskaccess\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\"type\":\"Microsoft.Compute/diskAccesses\",\"location\":\"centraluseuap\",\"properties\":{\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2021-04-13T07:28:33.665409+00:00\"}}\r\n
+ \ },\r\n \"name\": \"8165b85b-f03b-47e1-aff5-6d2a866fa126\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '616'
+ - '615'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:08 GMT
+ - Tue, 13 Apr 2021 07:29:05 GMT
expires:
- '-1'
pragma:
@@ -101,7 +101,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998
+ - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399985
status:
code: 200
message: OK
@@ -119,7 +119,7 @@ interactions:
ParameterSetName:
- -g -l -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01
response:
@@ -127,16 +127,16 @@ interactions:
string: "{\r\n \"name\": \"mydiskaccess\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"centraluseuap\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\":
- \"2021-04-08T05:55:38.0851541+00:00\"\r\n }\r\n}"
+ \"2021-04-13T07:28:33.665409+00:00\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '436'
+ - '435'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:08 GMT
+ - Tue, 13 Apr 2021 07:29:05 GMT
expires:
- '-1'
pragma:
@@ -169,7 +169,7 @@ interactions:
ParameterSetName:
- -g
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses?api-version=2020-05-01
response:
@@ -178,17 +178,17 @@ interactions:
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\":
\"centraluseuap\",\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"timeCreated\": \"2021-04-08T05:55:38.0851541+00:00\"\r\n
+ \"Succeeded\",\r\n \"timeCreated\": \"2021-04-13T07:28:33.665409+00:00\"\r\n
\ }\r\n }\r\n ]\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '501'
+ - '500'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:09 GMT
+ - Tue, 13 Apr 2021 07:29:07 GMT
expires:
- '-1'
pragma:
@@ -223,7 +223,7 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01
response:
@@ -231,16 +231,16 @@ interactions:
string: "{\r\n \"name\": \"mydiskaccess\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"centraluseuap\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\":
- \"2021-04-08T05:55:38.0851541+00:00\"\r\n }\r\n}"
+ \"2021-04-13T07:28:33.665409+00:00\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '436'
+ - '435'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:11 GMT
+ - Tue, 13 Apr 2021 07:29:08 GMT
expires:
- '-1'
pragma:
@@ -274,14 +274,14 @@ interactions:
- -g -n --tags
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_access_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T05:55:24Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:28:21Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -290,7 +290,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:11 GMT
+ - Tue, 13 Apr 2021 07:29:08 GMT
expires:
- '-1'
pragma:
@@ -322,7 +322,7 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01
response:
@@ -332,7 +332,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2421ef6a-f64a-4238-ae6b-aded11e8d65f?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/adf228e4-2656-4e12-8c6b-f74786cdc30d?api-version=2020-05-01
cache-control:
- no-cache
content-length:
@@ -340,11 +340,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:14 GMT
+ - Tue, 13 Apr 2021 07:29:11 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2421ef6a-f64a-4238-ae6b-aded11e8d65f?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/adf228e4-2656-4e12-8c6b-f74786cdc30d?monitor=true&api-version=2020-05-01
pragma:
- no-cache
server:
@@ -355,7 +355,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1197'
status:
code: 202
message: Accepted
@@ -373,24 +373,24 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/2421ef6a-f64a-4238-ae6b-aded11e8d65f?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/adf228e4-2656-4e12-8c6b-f74786cdc30d?api-version=2020-05-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T05:56:15.0888728+00:00\",\r\n \"endTime\":
- \"2021-04-08T05:56:15.1788745+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"properties\": {\r\n \"output\": {\"name\":\"mydiskaccess\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\"type\":\"Microsoft.Compute/diskAccesses\",\"location\":\"centraluseuap\",\"tags\":{\"tag1\":\"val1\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2021-04-08T05:55:38.0851541+00:00\"}}\r\n
- \ },\r\n \"name\": \"2421ef6a-f64a-4238-ae6b-aded11e8d65f\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:29:12.1005644+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:29:12.1955472+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"properties\": {\r\n \"output\": {\"name\":\"mydiskaccess\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\"type\":\"Microsoft.Compute/diskAccesses\",\"location\":\"centraluseuap\",\"tags\":{\"tag1\":\"val1\"},\"properties\":{\"provisioningState\":\"Succeeded\",\"timeCreated\":\"2021-04-13T07:28:33.665409+00:00\"}}\r\n
+ \ },\r\n \"name\": \"adf228e4-2656-4e12-8c6b-f74786cdc30d\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '639'
+ - '638'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:44 GMT
+ - Tue, 13 Apr 2021 07:29:42 GMT
expires:
- '-1'
pragma:
@@ -407,7 +407,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996
+ - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399983
status:
code: 200
message: OK
@@ -425,7 +425,7 @@ interactions:
ParameterSetName:
- -g -n --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01
response:
@@ -433,17 +433,17 @@ interactions:
string: "{\r\n \"name\": \"mydiskaccess\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"centraluseuap\",\r\n
\ \"tags\": {\r\n \"tag1\": \"val1\"\r\n },\r\n \"properties\": {\r\n
- \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2021-04-08T05:55:38.0851541+00:00\"\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2021-04-13T07:28:33.665409+00:00\"\r\n
\ }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '475'
+ - '474'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:45 GMT
+ - Tue, 13 Apr 2021 07:29:42 GMT
expires:
- '-1'
pragma:
@@ -476,7 +476,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01
response:
@@ -484,17 +484,17 @@ interactions:
string: "{\r\n \"name\": \"mydiskaccess\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"type\": \"Microsoft.Compute/diskAccesses\",\r\n \"location\": \"centraluseuap\",\r\n
\ \"tags\": {\r\n \"tag1\": \"val1\"\r\n },\r\n \"properties\": {\r\n
- \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2021-04-08T05:55:38.0851541+00:00\"\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": \"2021-04-13T07:28:33.665409+00:00\"\r\n
\ }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '475'
+ - '474'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:46 GMT
+ - Tue, 13 Apr 2021 07:29:43 GMT
expires:
- '-1'
pragma:
@@ -528,14 +528,14 @@ interactions:
- -g -n --size-gb --network-access-policy --disk-access
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_access_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T05:55:24Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:28:21Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -544,7 +544,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:47 GMT
+ - Tue, 13 Apr 2021 07:29:43 GMT
expires:
- '-1'
pragma:
@@ -578,7 +578,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --network-access-policy --disk-access
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk?api-version=2020-12-01
response:
@@ -591,7 +591,7 @@ interactions:
\ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/eb8c70f3-1f87-4c97-9565-a74d4912e82f?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69ff7652-6c32-45fb-9a77-4a5f8f3fa47f?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -599,11 +599,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:56 GMT
+ - Tue, 13 Apr 2021 07:29:51 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/eb8c70f3-1f87-4c97-9565-a74d4912e82f?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69ff7652-6c32-45fb-9a77-4a5f8f3fa47f?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -614,9 +614,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999
+ - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7998
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
status:
code: 202
message: Accepted
@@ -634,13 +634,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb --network-access-policy --disk-access
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/eb8c70f3-1f87-4c97-9565-a74d4912e82f?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69ff7652-6c32-45fb-9a77-4a5f8f3fa47f?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T05:56:56.2931486+00:00\",\r\n \"endTime\":
- \"2021-04-08T05:56:56.6781959+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:29:51.6612241+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:29:52.0078384+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"mydisk\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n
@@ -649,12 +649,12 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T05:56:56.2931486+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-13T07:29:51.6661968+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"0e8f2681-aafe-4d14-bfff-251561b454af\",\r\n \"diskAccessId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
+ \ \"uniqueId\": \"a24f9470-650b-4fa2-888d-a6e7a514c42a\",\r\n \"diskAccessId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"networkAccessPolicy\": \"AllowPrivate\",\r\n \"tier\": \"P3\"\r\n
- \ }\r\n}\r\n },\r\n \"name\": \"eb8c70f3-1f87-4c97-9565-a74d4912e82f\"\r\n}"
+ \ }\r\n}\r\n },\r\n \"name\": \"69ff7652-6c32-45fb-9a77-4a5f8f3fa47f\"\r\n}"
headers:
cache-control:
- no-cache
@@ -663,7 +663,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:58 GMT
+ - Tue, 13 Apr 2021 07:29:54 GMT
expires:
- '-1'
pragma:
@@ -680,7 +680,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995
+ - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399982
status:
code: 200
message: OK
@@ -698,7 +698,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --network-access-policy --disk-access
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk?api-version=2020-12-01
response:
@@ -710,10 +710,10 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T05:56:56.2931486+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-13T07:29:51.6661968+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"0e8f2681-aafe-4d14-bfff-251561b454af\",\r\n \"diskAccessId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
+ \ \"uniqueId\": \"a24f9470-650b-4fa2-888d-a6e7a514c42a\",\r\n \"diskAccessId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"networkAccessPolicy\": \"AllowPrivate\",\r\n \"tier\": \"P3\"\r\n
\ }\r\n}"
headers:
@@ -724,7 +724,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:58 GMT
+ - Tue, 13 Apr 2021 07:29:54 GMT
expires:
- '-1'
pragma:
@@ -741,7 +741,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999
+ - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119980
status:
code: 200
message: OK
@@ -759,7 +759,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk?api-version=2020-12-01
response:
@@ -771,10 +771,10 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T05:56:56.2931486+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-13T07:29:51.6661968+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"0e8f2681-aafe-4d14-bfff-251561b454af\",\r\n \"diskAccessId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
+ \ \"uniqueId\": \"a24f9470-650b-4fa2-888d-a6e7a514c42a\",\r\n \"diskAccessId\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"networkAccessPolicy\": \"AllowPrivate\",\r\n \"tier\": \"P3\"\r\n
\ }\r\n}"
headers:
@@ -785,7 +785,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:56:59 GMT
+ - Tue, 13 Apr 2021 07:29:55 GMT
expires:
- '-1'
pragma:
@@ -802,7 +802,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998
+ - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119979
status:
code: 200
message: OK
@@ -821,14 +821,14 @@ interactions:
- -g -n --size-gb --network-access-policy --disk-access
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_access_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T05:55:24Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001","name":"cli_test_disk_access_000001","type":"Microsoft.Resources/resourceGroups","location":"centraluseuap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:28:21Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -837,7 +837,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:57:00 GMT
+ - Tue, 13 Apr 2021 07:29:55 GMT
expires:
- '-1'
pragma:
@@ -871,9 +871,9 @@ interactions:
ParameterSetName:
- -g -n --size-gb --network-access-policy --disk-access
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"sku\":
@@ -884,7 +884,7 @@ interactions:
\ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/693abb00-d363-4626-9ccb-2bb9ab10fcc2?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9df9fe32-4fa6-472e-940d-80fc158a1234?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -892,11 +892,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:57:10 GMT
+ - Tue, 13 Apr 2021 07:30:04 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/693abb00-d363-4626-9ccb-2bb9ab10fcc2?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9df9fe32-4fa6-472e-940d-80fc158a1234?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -907,9 +907,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999
+ - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1195'
status:
code: 202
message: Accepted
@@ -927,13 +927,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb --network-access-policy --disk-access
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/693abb00-d363-4626-9ccb-2bb9ab10fcc2?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9df9fe32-4fa6-472e-940d-80fc158a1234?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T05:57:10.1639703+00:00\",\r\n \"endTime\":
- \"2021-04-08T05:57:10.6389928+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:30:03.9733962+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:30:04.2911798+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"mysnapshot\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"centraluseuap\",\r\n
@@ -941,12 +941,12 @@ interactions:
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T05:57:10.1689751+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:30:03.9783472+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ed1a6b92-11bb-4841-bb74-153a313e74db\",\r\n
- \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"691e5fa1-2462-475a-8143-69c8d2bcd20e\",\r\n
+ \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"693abb00-d363-4626-9ccb-2bb9ab10fcc2\"\r\n}"
+ \"9df9fe32-4fa6-472e-940d-80fc158a1234\"\r\n}"
headers:
cache-control:
- no-cache
@@ -955,7 +955,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:57:12 GMT
+ - Tue, 13 Apr 2021 07:30:06 GMT
expires:
- '-1'
pragma:
@@ -972,7 +972,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993
+ - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399980
status:
code: 200
message: OK
@@ -990,9 +990,9 @@ interactions:
ParameterSetName:
- -g -n --size-gb --network-access-policy --disk-access
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"mysnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot\",\r\n
@@ -1001,10 +1001,10 @@ interactions:
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T05:57:10.1689751+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:30:03.9783472+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ed1a6b92-11bb-4841-bb74-153a313e74db\",\r\n
- \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"691e5fa1-2462-475a-8143-69c8d2bcd20e\",\r\n
+ \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}"
headers:
cache-control:
@@ -1014,7 +1014,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:57:12 GMT
+ - Tue, 13 Apr 2021 07:30:06 GMT
expires:
- '-1'
pragma:
@@ -1031,7 +1031,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119995
+ - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119977
status:
code: 200
message: OK
@@ -1049,9 +1049,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"mysnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot\",\r\n
@@ -1060,10 +1060,10 @@ interactions:
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T05:57:10.1689751+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:30:03.9783472+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ed1a6b92-11bb-4841-bb74-153a313e74db\",\r\n
- \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"691e5fa1-2462-475a-8143-69c8d2bcd20e\",\r\n
+ \ \"diskAccessId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ACCESS_NSTJMSA7T4C6IWFJSDKIULAKMU52ZIRQJLNS5HPTBR4NOT25SZPKNC/providers/Microsoft.Compute/diskAccesses/mydiskaccess\",\r\n
\ \"networkAccessPolicy\": \"AllowPrivate\"\r\n }\r\n}"
headers:
cache-control:
@@ -1073,7 +1073,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:57:14 GMT
+ - Tue, 13 Apr 2021 07:30:07 GMT
expires:
- '-1'
pragma:
@@ -1090,7 +1090,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119994
+ - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119974
status:
code: 200
message: OK
@@ -1110,7 +1110,7 @@ interactions:
ParameterSetName:
- -g -n --yes
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/disks/mydisk?api-version=2020-12-01
response:
@@ -1118,17 +1118,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8a07ce47-4629-4568-9a56-2f3b22e5a41a?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/824d074f-3953-443b-9219-1d812805b310?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 05:57:16 GMT
+ - Tue, 13 Apr 2021 07:30:10 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8a07ce47-4629-4568-9a56-2f3b22e5a41a?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/824d074f-3953-443b-9219-1d812805b310?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1139,7 +1139,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23999
+ - Microsoft.Compute/DeleteDisks3Min;2999,Microsoft.Compute/DeleteDisks30Min;23997
x-ms-ratelimit-remaining-subscription-deletes:
- '14999'
status:
@@ -1159,23 +1159,23 @@ interactions:
ParameterSetName:
- -g -n --yes
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/8a07ce47-4629-4568-9a56-2f3b22e5a41a?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/824d074f-3953-443b-9219-1d812805b310?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T05:57:16.9841795+00:00\",\r\n \"endTime\":
- \"2021-04-08T05:57:17.2597981+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"8a07ce47-4629-4568-9a56-2f3b22e5a41a\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:30:10.704308+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:30:10.9192559+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"824d074f-3953-443b-9219-1d812805b310\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '184'
+ - '183'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:57:46 GMT
+ - Tue, 13 Apr 2021 07:30:40 GMT
expires:
- '-1'
pragma:
@@ -1192,7 +1192,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399990
+ - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399977
status:
code: 200
message: OK
@@ -1212,25 +1212,25 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/snapshots/mysnapshot?api-version=2020-12-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/49ff0e0b-90d0-48e5-9287-cd32be40cc9e?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/07ab682e-e0ca-4ee7-8646-0786816720a3?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 05:57:50 GMT
+ - Tue, 13 Apr 2021 07:30:43 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/49ff0e0b-90d0-48e5-9287-cd32be40cc9e?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/07ab682e-e0ca-4ee7-8646-0786816720a3?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1241,7 +1241,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/DeleteDisks3Min;2998,Microsoft.Compute/DeleteDisks30Min;23998
+ - Microsoft.Compute/DeleteDisks3Min;2998,Microsoft.Compute/DeleteDisks30Min;23996
x-ms-ratelimit-remaining-subscription-deletes:
- '14999'
status:
@@ -1261,23 +1261,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/49ff0e0b-90d0-48e5-9287-cd32be40cc9e?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/07ab682e-e0ca-4ee7-8646-0786816720a3?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T05:57:50.16187+00:00\",\r\n \"endTime\":
- \"2021-04-08T05:57:50.4218701+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"49ff0e0b-90d0-48e5-9287-cd32be40cc9e\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:30:43.4858849+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:30:43.7515826+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"07ab682e-e0ca-4ee7-8646-0786816720a3\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '182'
+ - '184'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:58:20 GMT
+ - Tue, 13 Apr 2021 07:31:13 GMT
expires:
- '-1'
pragma:
@@ -1294,7 +1294,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988
+ - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399975
status:
code: 200
message: OK
@@ -1314,7 +1314,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses/mydiskaccess?api-version=2020-05-01
response:
@@ -1322,7 +1322,7 @@ interactions:
string: 'null'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e0293536-377c-4ddf-8d7a-6e1d14f5f778?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/09f0b6fe-0c64-4420-9301-28588a7adef4?api-version=2020-05-01
cache-control:
- no-cache
content-length:
@@ -1330,11 +1330,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:58:23 GMT
+ - Tue, 13 Apr 2021 07:31:16 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e0293536-377c-4ddf-8d7a-6e1d14f5f778?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/09f0b6fe-0c64-4420-9301-28588a7adef4?monitor=true&api-version=2020-05-01
pragma:
- no-cache
server:
@@ -1363,14 +1363,14 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e0293536-377c-4ddf-8d7a-6e1d14f5f778?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/09f0b6fe-0c64-4420-9301-28588a7adef4?api-version=2020-05-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T05:58:23.2589267+00:00\",\r\n \"endTime\":
- \"2021-04-08T05:58:23.4338766+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"e0293536-377c-4ddf-8d7a-6e1d14f5f778\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:31:16.3472539+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:31:16.5822785+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"09f0b6fe-0c64-4420-9301-28588a7adef4\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1379,7 +1379,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:58:53 GMT
+ - Tue, 13 Apr 2021 07:31:46 GMT
expires:
- '-1'
pragma:
@@ -1396,7 +1396,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399986
+ - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399973
status:
code: 200
message: OK
@@ -1414,7 +1414,7 @@ interactions:
ParameterSetName:
- -g
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_access_000001/providers/Microsoft.Compute/diskAccesses?api-version=2020-05-01
response:
@@ -1428,7 +1428,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 05:58:54 GMT
+ - Tue, 13 Apr 2021 07:31:46 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_encryption_set_snapshot.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_encryption_set_snapshot.yaml
index bfb65e5b113..41f3c3e1249 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_encryption_set_snapshot.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_disk_encryption_set_snapshot.yaml
@@ -14,14 +14,14 @@ interactions:
- -g -n --enable-purge-protection --enable-soft-delete
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:06:34 GMT
+ - Tue, 13 Apr 2021 07:24:19 GMT
expires:
- '-1'
pragma:
@@ -75,19 +75,19 @@ interactions:
dataserviceversion:
- 3.0;
date:
- - Thu, 08 Apr 2021 03:06:35 GMT
+ - Tue, 13 Apr 2021 07:24:21 GMT
duration:
- - '2459008'
+ - '4286704'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - 5DY/KckzC7oMLZXzRXRscYjp1lPh7/559CbGvcrhIJ8=
+ - 7RoRr865WHF4i/HNaMTyIVO1V0OMqDqTAX7f35Kommc=
ocp-aad-session-key:
- - i04sgNx0o0v6AqCYqGw8MckATfsDag5VXJMkYb9QAVkx4Z4lL6YJ8_PoeX0A2AotJ_3QoXIZfwE1_JDV1g6IYUatX2qqpnLkktnofQX3A3Y158Lj_xuoydmeyYfH02K3.2nJfq9b0ga0z8FAsc4rmxjaXubmXDuA_C9r25oAG3u0
+ - s5oRFQtsSVM5COKFDKRJSOLXHBk2k01mNTNgAMZpD7UL_l3HF9rHGi5s1ZU03JJT_ASeBaXG4S5el0d0VF_RWOa1wzVkESmO9_5UIGeppmVdhyu9xFBiQIwLLl6jQINW.itILQ4Px0b2R2B3uSonNjYZCrWI6rlVnjmj1OIhpiBo
pragma:
- no-cache
request-id:
- - 900ba536-f9bc-44bc-880c-d1eb04817835
+ - ccd11c22-08ab-4404-ad4d-3eb282dec718
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -129,7 +129,7 @@ interactions:
ParameterSetName:
- -g -n --enable-purge-protection --enable-soft-delete
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01
response:
@@ -143,7 +143,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:06:45 GMT
+ - Tue, 13 Apr 2021 07:24:31 GMT
expires:
- '-1'
pragma:
@@ -161,9 +161,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -183,7 +183,7 @@ interactions:
ParameterSetName:
- -g -n --enable-purge-protection --enable-soft-delete
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01
response:
@@ -197,7 +197,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:16 GMT
+ - Tue, 13 Apr 2021 07:25:01 GMT
expires:
- '-1'
pragma:
@@ -215,7 +215,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-powered-by:
- ASP.NET
status:
@@ -253,7 +253,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:17 GMT
+ - Tue, 13 Apr 2021 07:25:02 GMT
expires:
- '-1'
pragma:
@@ -298,7 +298,7 @@ interactions:
uri: https://vault4-000002.vault.azure.net/keys/key-000003/create?api-version=7.0
response:
body:
- string: '{"key":{"kid":"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"pQDqxf4uA3uG6HWMVLtlukN9fAmt0scBvfq2btAmjfVES7GBrRI5TgbTv0-4lUuf5m2n0NyC_Zpftt__uAhNjMEB0rGfws1pnJh9UgsIc6yzVoz6L3u2etf_Q8Fi5C7nHp5OIxRwsbb3GAbBKe5DaDuBIHBQzAQtqz1kFXZMrvcIf1Jvrau3c6bWzYmPDapceeu8hmjGudpjoIWr-mXruiQKuQ97QHyqvY0cuSV2Nw3MBMBHg8P6-nvvQZcgy4NDJD6Y3_mbyBwrMsMfLfljNo2E9Icm6VNoOe6CLWCZfQ0t8TPZdWllpsaHuStREqDvdA9AwiDRLitBimQ5JOJ6LQ","e":"AQAB"},"attributes":{"enabled":true,"created":1617851238,"updated":1617851238,"recoveryLevel":"Recoverable"}}'
+ string: '{"key":{"kid":"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"qzP6KVQ70X9m9wdl90WQgiyJUdj_l0FqyIxRM6ovfY5exoie_J7z_Jn-aOlyq5XzJH4hFNTIhwdrQqKVbKSo2p8h5tZNKSlvOh0LRyv_L52XwLZWGAqcoNjlNo8iYbs02cE_9NYV7S_u0jjBRxFD3lqetKBn0ANgQa79140Qq3dQAbFQ6TtJyuxblFx3P_eNoJOIwknJ-JgT_HTIAEQ0aNh-H1ruPnojG8mwbAeJFXB-eKYz15JLs-CaNB-1_0CZBL4-wxzBQ80Mj4sl0BwpEoYYv2aPLEkxCJCgvcg07rf2u_iI_e_Asfbj9V5Bp-uH7o4nm4lRnRhWb9rD6D-TLQ","e":"AQAB"},"attributes":{"enabled":true,"created":1618298704,"updated":1618298704,"recoveryLevel":"Recoverable"}}'
headers:
cache-control:
- no-cache
@@ -307,7 +307,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:18 GMT
+ - Tue, 13 Apr 2021 07:25:04 GMT
expires:
- '-1'
pragma:
@@ -342,14 +342,14 @@ interactions:
- -g -n --key-url --source-vault
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -358,7 +358,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:18 GMT
+ - Tue, 13 Apr 2021 07:25:05 GMT
expires:
- '-1'
pragma:
@@ -375,7 +375,7 @@ interactions:
- request:
body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties":
{"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002"},
- "keyUrl": "https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad"}}}'
+ "keyUrl": "https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4"}}}'
headers:
Accept:
- application/json
@@ -392,7 +392,7 @@ interactions:
ParameterSetName:
- -g -n --key-url --source-vault
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004?api-version=2020-12-01
response:
@@ -400,11 +400,11 @@ interactions:
string: "{\r\n \"location\": \"westcentralus\",\r\n \"identity\": {\r\n \"type\":
\"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n
\ \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n
- \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n
+ \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n
\ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/716c8b96-e622-407f-b509-510e732ca710?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ccd60b9-0f03-43b3-9f68-09081215540e?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -412,11 +412,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:28 GMT
+ - Tue, 13 Apr 2021 07:25:18 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/716c8b96-e622-407f-b509-510e732ca710?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ccd60b9-0f03-43b3-9f68-09081215540e?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -427,9 +427,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostDiskEncryptionSet3Min;97,Microsoft.Compute/HighCostDiskEncryptionSet30Min;297
+ - Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1198'
status:
code: 202
message: Accepted
@@ -447,24 +447,24 @@ interactions:
ParameterSetName:
- -g -n --key-url --source-vault
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/716c8b96-e622-407f-b509-510e732ca710?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/1ccd60b9-0f03-43b3-9f68-09081215540e?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:07:28.9850122+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:07:29.0318635+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"westcentralus\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"},\"keyUrl\":\"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n
- \ },\r\n \"name\": \"716c8b96-e622-407f-b509-510e732ca710\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:25:18.6097459+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:25:18.703511+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000004\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"westcentralus\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"8b6cfac3-316e-463b-a179-dc031dab05eb\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"},\"keyUrl\":\"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n
+ \ },\r\n \"name\": \"1ccd60b9-0f03-43b3-9f68-09081215540e\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1137'
+ - '1136'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:59 GMT
+ - Tue, 13 Apr 2021 07:25:48 GMT
expires:
- '-1'
pragma:
@@ -481,7 +481,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984
+ - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399998
status:
code: 200
message: OK
@@ -499,7 +499,7 @@ interactions:
ParameterSetName:
- -g -n --key-url --source-vault
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004?api-version=2020-12-01
response:
@@ -507,10 +507,10 @@ interactions:
string: "{\r\n \"name\": \"des1-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\",\r\n
\ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"westcentralus\",\r\n
\ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\":
- \"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
+ \"8b6cfac3-316e-463b-a179-dc031dab05eb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
\ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n
- \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n
+ \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n
\ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
@@ -521,7 +521,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:59 GMT
+ - Tue, 13 Apr 2021 07:25:48 GMT
expires:
- '-1'
pragma:
@@ -538,7 +538,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14977,Microsoft.Compute/LowCostGet30Min;119977
+ - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119997
status:
code: 200
message: OK
@@ -556,7 +556,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004?api-version=2020-12-01
response:
@@ -564,10 +564,10 @@ interactions:
string: "{\r\n \"name\": \"des1-000004\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\",\r\n
\ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"westcentralus\",\r\n
\ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\":
- \"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
+ \"8b6cfac3-316e-463b-a179-dc031dab05eb\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
\ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n
- \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n
+ \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n
\ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
@@ -578,7 +578,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:01 GMT
+ - Tue, 13 Apr 2021 07:25:49 GMT
expires:
- '-1'
pragma:
@@ -595,7 +595,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14980,Microsoft.Compute/LowCostGet30Min;119976
+ - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996
status:
code: 200
message: OK
@@ -614,14 +614,14 @@ interactions:
- -g -n --key-url --source-vault
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -630,7 +630,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:01 GMT
+ - Tue, 13 Apr 2021 07:25:49 GMT
expires:
- '-1'
pragma:
@@ -647,7 +647,7 @@ interactions:
- request:
body: '{"location": "westcentralus", "identity": {"type": "SystemAssigned"}, "properties":
{"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002"},
- "keyUrl": "https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad"}}}'
+ "keyUrl": "https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4"}}}'
headers:
Accept:
- application/json
@@ -664,7 +664,7 @@ interactions:
ParameterSetName:
- -g -n --key-url --source-vault
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005?api-version=2020-12-01
response:
@@ -672,11 +672,11 @@ interactions:
string: "{\r\n \"location\": \"westcentralus\",\r\n \"identity\": {\r\n \"type\":
\"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n
\ \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n
- \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n
+ \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n
\ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/4edc225c-5e11-4849-86a1-6c0ebdde0d97?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d247ef97-395a-41bf-b573-0dbb6ed93369?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -684,11 +684,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:12 GMT
+ - Tue, 13 Apr 2021 07:26:01 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/4edc225c-5e11-4849-86a1-6c0ebdde0d97?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d247ef97-395a-41bf-b573-0dbb6ed93369?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -699,9 +699,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostDiskEncryptionSet3Min;96,Microsoft.Compute/HighCostDiskEncryptionSet30Min;295
+ - Microsoft.Compute/HighCostDiskEncryptionSet3Min;98,Microsoft.Compute/HighCostDiskEncryptionSet30Min;298
x-ms-ratelimit-remaining-subscription-writes:
- - '1193'
+ - '1197'
status:
code: 202
message: Accepted
@@ -719,15 +719,15 @@ interactions:
ParameterSetName:
- -g -n --key-url --source-vault
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/4edc225c-5e11-4849-86a1-6c0ebdde0d97?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/d247ef97-395a-41bf-b573-0dbb6ed93369?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:08:12.3127872+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:08:12.3596878+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"properties\": {\r\n \"output\": {\"name\":\"des2-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"westcentralus\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"c8f2be4d-689e-472e-b8e8-e5f05fc61984\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"},\"keyUrl\":\"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n
- \ },\r\n \"name\": \"4edc225c-5e11-4849-86a1-6c0ebdde0d97\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:26:01.7816495+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:26:01.8441573+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"properties\": {\r\n \"output\": {\"name\":\"des2-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"westcentralus\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"dd3040e5-355f-4e0e-a9ab-1ce8162359ad\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"},\"keyUrl\":\"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n
+ \ },\r\n \"name\": \"d247ef97-395a-41bf-b573-0dbb6ed93369\"\r\n}"
headers:
cache-control:
- no-cache
@@ -736,7 +736,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:42 GMT
+ - Tue, 13 Apr 2021 07:26:32 GMT
expires:
- '-1'
pragma:
@@ -753,7 +753,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399981
+ - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996
status:
code: 200
message: OK
@@ -771,7 +771,7 @@ interactions:
ParameterSetName:
- -g -n --key-url --source-vault
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005?api-version=2020-12-01
response:
@@ -779,10 +779,10 @@ interactions:
string: "{\r\n \"name\": \"des2-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\",\r\n
\ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"westcentralus\",\r\n
\ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\":
- \"c8f2be4d-689e-472e-b8e8-e5f05fc61984\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
+ \"dd3040e5-355f-4e0e-a9ab-1ce8162359ad\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
\ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n
- \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n
+ \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n
\ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
@@ -793,7 +793,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:42 GMT
+ - Tue, 13 Apr 2021 07:26:32 GMT
expires:
- '-1'
pragma:
@@ -810,7 +810,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14974,Microsoft.Compute/LowCostGet30Min;119970
+ - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119993
status:
code: 200
message: OK
@@ -828,7 +828,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005?api-version=2020-12-01
response:
@@ -836,10 +836,10 @@ interactions:
string: "{\r\n \"name\": \"des2-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\",\r\n
\ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"westcentralus\",\r\n
\ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\":
- \"c8f2be4d-689e-472e-b8e8-e5f05fc61984\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
+ \"dd3040e5-355f-4e0e-a9ab-1ce8162359ad\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
\ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002\"\r\n
- \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/21859b6430944dcdb6a3b3bbe32347ad\"\r\n
+ \ },\r\n \"keyUrl\": \"https://vault4-000002.vault.azure.net/keys/key-000003/22b70fc779b94a098b60938a3e5c89f4\"\r\n
\ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
@@ -850,7 +850,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:43 GMT
+ - Tue, 13 Apr 2021 07:26:33 GMT
expires:
- '-1'
pragma:
@@ -867,7 +867,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14973,Microsoft.Compute/LowCostGet30Min;119969
+ - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119992
status:
code: 200
message: OK
@@ -885,21 +885,21 @@ interactions:
ParameterSetName:
- -n --object-id --key-permissions
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_hxomxn3sszztb6w7ylmqdj372xpfigsh7mzbcxi/providers/Microsoft.KeyVault/vaults/vault1-hltrn32odlgql","name":"vault1-hltrn32odlgql","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/houk-test/providers/Microsoft.KeyVault/vaults/houk-kv2","name":"houk-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ljin-test/providers/Microsoft.KeyVault/vaults/kv-ljin-sni","name":"kv-ljin-sni","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '2307'
+ - '2430'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:45 GMT
+ - Tue, 13 Apr 2021 07:26:34 GMT
expires:
- '-1'
pragma:
@@ -927,7 +927,7 @@ interactions:
ParameterSetName:
- -n --object-id --key-permissions
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01
response:
@@ -941,7 +941,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:46 GMT
+ - Tue, 13 Apr 2021 07:26:36 GMT
expires:
- '-1'
pragma:
@@ -959,7 +959,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-powered-by:
- ASP.NET
status:
@@ -975,7 +975,7 @@ interactions:
"import", "update", "managecontacts", "getissuers", "listissuers", "setissuers",
"deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete",
"set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}},
- {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29",
+ {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "8b6cfac3-316e-463b-a179-dc031dab05eb",
"permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://vault4-000002.vault.azure.net/",
"enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays":
90, "enablePurgeProtection": true}}'
@@ -995,12 +995,12 @@ interactions:
ParameterSetName:
- -n --object-id --key-permissions
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"8b6cfac3-316e-463b-a179-dc031dab05eb","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1009,7 +1009,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:47 GMT
+ - Tue, 13 Apr 2021 07:26:36 GMT
expires:
- '-1'
pragma:
@@ -1027,9 +1027,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -1049,21 +1049,21 @@ interactions:
ParameterSetName:
- -n --object-id --key-permissions
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_update_hxomxn3sszztb6w7ylmqdj372xpfigsh7mzbcxi/providers/Microsoft.KeyVault/vaults/vault1-hltrn32odlgql","name":"vault1-hltrn32odlgql","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/houk-test/providers/Microsoft.KeyVault/vaults/houk-kv2","name":"houk-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ljin-test/providers/Microsoft.KeyVault/vaults/kv-ljin-sni","name":"kv-ljin-sni","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '2307'
+ - '2430'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:47 GMT
+ - Tue, 13 Apr 2021 07:26:36 GMT
expires:
- '-1'
pragma:
@@ -1091,12 +1091,12 @@ interactions:
ParameterSetName:
- -n --object-id --key-permissions
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"8b6cfac3-316e-463b-a179-dc031dab05eb","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1105,7 +1105,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:48 GMT
+ - Tue, 13 Apr 2021 07:26:38 GMT
expires:
- '-1'
pragma:
@@ -1123,7 +1123,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-powered-by:
- ASP.NET
status:
@@ -1139,9 +1139,9 @@ interactions:
"import", "update", "managecontacts", "getissuers", "listissuers", "setissuers",
"deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete",
"set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}},
- {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29",
+ {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "8b6cfac3-316e-463b-a179-dc031dab05eb",
"permissions": {"keys": ["get", "unwrapKey", "wrapKey"]}}, {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a",
- "objectId": "c8f2be4d-689e-472e-b8e8-e5f05fc61984", "permissions": {"keys":
+ "objectId": "dd3040e5-355f-4e0e-a9ab-1ce8162359ad", "permissions": {"keys":
["get", "unwrapKey", "wrapKey"]}}], "vaultUri": "https://vault4-000002.vault.azure.net/",
"enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays":
90, "enablePurgeProtection": true}}'
@@ -1161,12 +1161,12 @@ interactions:
ParameterSetName:
- -n --object-id --key-permissions
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002?api-version=2019-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","permissions":{"keys":["get","unwrapKey","wrapKey"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"c8f2be4d-689e-472e-b8e8-e5f05fc61984","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","name":"vault4-000002","type":"Microsoft.KeyVault/vaults","location":"westcentralus","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"8b6cfac3-316e-463b-a179-dc031dab05eb","permissions":{"keys":["get","unwrapKey","wrapKey"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"dd3040e5-355f-4e0e-a9ab-1ce8162359ad","permissions":{"keys":["get","unwrapKey","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault4-000002.vault.azure.net/","provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1175,7 +1175,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:49 GMT
+ - Tue, 13 Apr 2021 07:26:38 GMT
expires:
- '-1'
pragma:
@@ -1193,7 +1193,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-ms-ratelimit-remaining-subscription-writes:
- '1196'
x-powered-by:
@@ -1216,7 +1216,7 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
@@ -1233,7 +1233,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:04 GMT
+ - Tue, 13 Apr 2021 07:26:54 GMT
expires:
- '-1'
pragma:
@@ -1266,11 +1266,11 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29%27%29&api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%278b6cfac3-316e-463b-a179-dc031dab05eb%27%29&api-version=1.6
response:
body:
string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}'
@@ -1286,19 +1286,19 @@ interactions:
dataserviceversion:
- 3.0;
date:
- - Thu, 08 Apr 2021 03:09:05 GMT
+ - Tue, 13 Apr 2021 07:26:55 GMT
duration:
- - '2324305'
+ - '3805238'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - Xlgv9dz5vIr8di0889LWEd5JNMHvSiwPTMrD+o9K2xg=
+ - gNskm5ItSJmEj0BN5oH+0Tr7DEY2sjymkrW1Eml4ng0=
ocp-aad-session-key:
- - 4XhsRwTscCa4VTlkL67QMmKmCC0MQtPavxGXSLRWuj8kyk9T5pfdAVBEhGyZBka4F7ILnLKs0BI3RDmEzK2LzhyYBOlC1dmTlCLXpsPcAH8KlTDiBNVNpIT-rjmbp11n.LUxPpuBZGk8MAxfeXB_hDzktb3lfgorXRMUsmG7qQ0g
+ - EWSNY18CgcYufQxILtOQpL5fKgFszZ9m7aEw6-QSjmlcCUIS8_bJ_BPyguysu7IRKveLe9lbGC9TsZx-0Gr6J4LRpxWXBUVBSR1Qu1YHi0WZLpr0uGwGw-QwEH03agbh.0rfinH8JG7MsBUGyKUR5tkXKzqjVgvltEzjiDgpKcSE
pragma:
- no-cache
request-id:
- - 04b28565-83cb-4164-b0b6-39b4a4076800
+ - 8a1d9dcf-18e4-41b3-96b9-38478f8ef1e2
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -1313,7 +1313,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"objectIds": ["fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29"], "includeDirectoryObjectReferences":
+ body: '{"objectIds": ["8b6cfac3-316e-463b-a179-dc031dab05eb"], "includeDirectoryObjectReferences":
true}'
headers:
Accept:
@@ -1332,14 +1332,14 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004"],"appDisplayName":null,"appId":"2804d688-47eb-40d5-99a4-cc75882d627e","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000004","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"44007AA0F4D653EA011BDADF2390D7456C15DD76","endDate":"2021-07-07T03:02:00Z","keyId":"50a0929a-f0da-4162-9705-5ce0e78d2249","startDate":"2021-04-08T03:02:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["2804d688-47eb-40d5-99a4-cc75882d627e","https://identity.azure.net/RG8cPMrr4n/DMEBUidjpxalAjUw4oE0gaEK+UH0KZZw="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
+ string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"8b6cfac3-316e-463b-a179-dc031dab05eb","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000004"],"appDisplayName":null,"appId":"7faa153e-cdb4-4fa4-a789-1fa3310bcebd","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000004","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"73ABCB7CE99615EED416BA61779E8BEEB1AF9D55","endDate":"2021-07-12T07:20:00Z","keyId":"2e361432-afc9-498d-90f6-e7ec0b930198","startDate":"2021-04-13T07:20:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["7faa153e-cdb4-4fa4-a789-1fa3310bcebd","https://identity.azure.net/bj8lDqIBGFSkExGQylwItmOZQ8IEfLZdsJMuX4T5Jiw="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
headers:
access-control-allow-origin:
- '*'
@@ -1352,19 +1352,19 @@ interactions:
dataserviceversion:
- 3.0;
date:
- - Thu, 08 Apr 2021 03:09:06 GMT
+ - Tue, 13 Apr 2021 07:26:55 GMT
duration:
- - '2647954'
+ - '3727371'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - 0ne6VVkYZRIaH+6HTKLZMwf0y9fUX539S95rqwV8csQ=
+ - tDnzyJl0rbvwKg1ePY2VwE8JZRca3iMn7k9TMUtJqrk=
ocp-aad-session-key:
- - UR-JBHtgtU6UHwCcfInkC0a3mbMOdzxvkNzh1NowB7ymrshHvoSn8917xWcuCUTSK1kyAcUl41Fj09nEp_5zxpt-PRjUfvK-K18jzBOzdx81nriT0Cw8yWFvQXiJlHXR.8ghx2cfMDAMlF5phlEvdo87NKUCzfQhS6kR-EonJO9Y
+ - KeWeo0gdUrKf3zXK3stU_Srq8wB6kiC5fSavattLFA4_R9hdHgaj4YwfW0HSH52dcoCn36bh5tZk7u8jktRlj65Fvyts8EmVcx33xmzF5QwbG8IZmB1BZd_DgS0GhcTL.wZ9Mi5FYhQ6Ym2RcR-MQmgXkUmijH2Wi_l7uKVJ0yuA
pragma:
- no-cache
request-id:
- - 8d394f2d-8dce-49be-a6a8-54d75f7cab80
+ - 875b42a2-4a6d-40ab-b150-0c61f50f1489
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -1380,7 +1380,7 @@ interactions:
message: OK
- request:
body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7",
- "principalId": "fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29"}}'
+ "principalId": "8b6cfac3-316e-463b-a179-dc031dab05eb"}}'
headers:
Accept:
- application/json
@@ -1400,14 +1400,14 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview
response:
body:
- string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"fd62edbc-8d7a-40ce-a0a1-2f79a0c04a29","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","condition":null,"conditionVersion":null,"createdOn":"2021-04-08T03:09:06.7456176Z","updatedOn":"2021-04-08T03:09:07.5867260Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}'
+ string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"8b6cfac3-316e-463b-a179-dc031dab05eb","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T07:26:56.4436707Z","updatedOn":"2021-04-13T07:26:56.9156380Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}'
headers:
cache-control:
- no-cache
@@ -1416,7 +1416,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:11 GMT
+ - Tue, 13 Apr 2021 07:27:00 GMT
expires:
- '-1'
pragma:
@@ -1428,7 +1428,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1197'
status:
code: 201
message: Created
@@ -1447,7 +1447,7 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
@@ -1464,7 +1464,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:11 GMT
+ - Tue, 13 Apr 2021 07:27:01 GMT
expires:
- '-1'
pragma:
@@ -1497,11 +1497,11 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27c8f2be4d-689e-472e-b8e8-e5f05fc61984%27%29&api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27dd3040e5-355f-4e0e-a9ab-1ce8162359ad%27%29&api-version=1.6
response:
body:
string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}'
@@ -1517,19 +1517,19 @@ interactions:
dataserviceversion:
- 3.0;
date:
- - Thu, 08 Apr 2021 03:09:13 GMT
+ - Tue, 13 Apr 2021 07:27:02 GMT
duration:
- - '2414649'
+ - '3564619'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - vt8ZuMY4ZxP3ImqFg/6t9hvuc1YhQwzZOI9ZNyhW7HY=
+ - FwnLzu0CDNpH11piVVZfAI02/FV6uqUU3tQShmIvs9Y=
ocp-aad-session-key:
- - gMJN0YVzBnlZJ8KAsdyxV3441lzh7V00YBVI5PqCzhzBh-qFTRxx-qn40DXopQMYQ2o-BPKpK-yptiurP1ZsKNietNNPd-hZVGKph7nonNa5vUqecJ9g7jr1e-GXJR3n.i0-9QZlCW0IW7awbLQ692Otv7aCfOCWww7WCB2m0xcs
+ - oY-9X-yqtS7yljYHeoUEr7Z8G4GAdSNYRfnUeRda6fqFQJ8cqMI7jfeJ7_XLAcm6iiNvQw13y1tHHPBVRWPx_hBNLyq0u9Nf0HJ8BlrjW9Gy2KrE6fZMbkk-JbH61CKx.N7i8SwxbAqGn2DQ1wrreBQkeGOtCsYutA-sH0eNk2p4
pragma:
- no-cache
request-id:
- - b7e9d2ed-eb7e-4318-a4cf-9ba3c3d11f3a
+ - 8f31fb34-d8f1-4934-85ee-d7c78799f97f
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -1544,7 +1544,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"objectIds": ["c8f2be4d-689e-472e-b8e8-e5f05fc61984"], "includeDirectoryObjectReferences":
+ body: '{"objectIds": ["dd3040e5-355f-4e0e-a9ab-1ce8162359ad"], "includeDirectoryObjectReferences":
true}'
headers:
Accept:
@@ -1563,14 +1563,14 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"c8f2be4d-689e-472e-b8e8-e5f05fc61984","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005"],"appDisplayName":null,"appId":"30eea131-cbb1-4b26-b861-1b38c471362f","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des2-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"017777B9D19456C4FC28FD45AC32CD7C16EF7F90","endDate":"2021-07-07T03:03:00Z","keyId":"3582800c-4d96-4f96-b9b4-1366c44427dd","startDate":"2021-04-08T03:03:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["30eea131-cbb1-4b26-b861-1b38c471362f","https://identity.azure.net/40XOVPGGUM/vXZvXVXa9pA35e4pdICE4mn44d26mCD4="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
+ string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"dd3040e5-355f-4e0e-a9ab-1ce8162359ad","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005"],"appDisplayName":null,"appId":"1f19d2c8-f197-444a-a5d6-568d01627c90","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des2-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"57FA9AD61A3B07D294AED83E1251710E8FF036AC","endDate":"2021-07-12T07:20:00Z","keyId":"b22749d5-f917-4d66-a602-56460be9ea2d","startDate":"2021-04-13T07:20:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["1f19d2c8-f197-444a-a5d6-568d01627c90","https://identity.azure.net/75iCkf0akO6R8NrSA5e+QtE3IZKUyXxifNftQ+naU4I="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
headers:
access-control-allow-origin:
- '*'
@@ -1583,19 +1583,19 @@ interactions:
dataserviceversion:
- 3.0;
date:
- - Thu, 08 Apr 2021 03:09:13 GMT
+ - Tue, 13 Apr 2021 07:27:02 GMT
duration:
- - '2682609'
+ - '3864815'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - wgm8G2/1p+ONlu8utNSc/MHfwmdCjZ/ViRDYETLSoGg=
+ - dVmDM5ta5usG3TsBZSZZ/UM+53m+p/jp2nq/KXLkGVQ=
ocp-aad-session-key:
- - 0JKslhtL7Q_xsnjdjhmnQ4ZzwU7RqLdnHwslY-F8Qfus7_hRNViIaowt0swfqy5hSLE6Spu62gnCsyqvK8VrxTGEsj2johxH0btPTZQKnDy06xRNygbxOc_-mKguEVo1.2ciInIyK0v7JjOoHYn1PPo5Yl24DUAZJaFUInsmAaf4
+ - 5jZ6JjkKK0sQol43Dot5cr6oH_9i1ZMy-Rijz1_IupKEoU48LWSO5dm6GQ6wvkADIcGHZw00dp7IFCo_sCrpBfIW4OlZKSa4bx7Roa5PzSQ4zfX5Yxm0grlb-jV8ZFYn._ftbC1h11meG1sbPWmfH39HBTuw1Pvq84xm9265baaE
pragma:
- no-cache
request-id:
- - 3a3a4436-0ce4-4f3b-9f06-56a4d33a37f1
+ - 983875ea-e5ba-4a6e-a3e3-9121b425e30e
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -1611,7 +1611,7 @@ interactions:
message: OK
- request:
body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7",
- "principalId": "c8f2be4d-689e-472e-b8e8-e5f05fc61984"}}'
+ "principalId": "dd3040e5-355f-4e0e-a9ab-1ce8162359ad"}}'
headers:
Accept:
- application/json
@@ -1631,14 +1631,14 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002?api-version=2020-04-01-preview
response:
body:
- string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"c8f2be4d-689e-472e-b8e8-e5f05fc61984","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","condition":null,"conditionVersion":null,"createdOn":"2021-04-08T03:09:14.0547743Z","updatedOn":"2021-04-08T03:09:38.1721065Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}'
+ string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"dd3040e5-355f-4e0e-a9ab-1ce8162359ad","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002","condition":null,"conditionVersion":null,"createdOn":"2021-04-13T07:27:03.1744884Z","updatedOn":"2021-04-13T07:27:05.0769782Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.KeyVault/vaults/vault4-000002/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000002","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000002"}'
headers:
cache-control:
- no-cache
@@ -1647,7 +1647,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:42 GMT
+ - Tue, 13 Apr 2021 07:27:08 GMT
expires:
- '-1'
pragma:
@@ -1659,7 +1659,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1198'
status:
code: 201
message: Created
@@ -1678,14 +1678,14 @@ interactions:
- -g -n --encryption-type --disk-encryption-set --size-gb
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1694,7 +1694,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:57 GMT
+ - Tue, 13 Apr 2021 07:27:23 GMT
expires:
- '-1'
pragma:
@@ -1729,9 +1729,9 @@ interactions:
ParameterSetName:
- -g -n --encryption-type --disk-encryption-set --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\":
@@ -1743,7 +1743,7 @@ interactions:
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/46a8eeb8-dd28-4afa-8bf2-8de0b55ae2f2?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e623e588-ac47-4d99-82b9-b1e90c1cd30f?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1751,11 +1751,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:05 GMT
+ - Tue, 13 Apr 2021 07:27:32 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/46a8eeb8-dd28-4afa-8bf2-8de0b55ae2f2?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e623e588-ac47-4d99-82b9-b1e90c1cd30f?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1786,13 +1786,13 @@ interactions:
ParameterSetName:
- -g -n --encryption-type --disk-encryption-set --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/46a8eeb8-dd28-4afa-8bf2-8de0b55ae2f2?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/e623e588-ac47-4d99-82b9-b1e90c1cd30f?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:10:05.4059246+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:10:07.7027591+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:27:31.7853715+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:27:34.5666533+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshot1-000006\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n
@@ -1800,12 +1800,12 @@ interactions:
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithCustomerKey\",\r\n
- \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:05.8277777+00:00\",\r\n
+ \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\"\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:32.9416205+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"755ae7f8-bfef-48d9-aef5-01601fb0cc95\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"6c3309eb-394d-4671-b7f4-04e1d2db0bfe\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"46a8eeb8-dd28-4afa-8bf2-8de0b55ae2f2\"\r\n}"
+ \"e623e588-ac47-4d99-82b9-b1e90c1cd30f\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1814,7 +1814,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:07 GMT
+ - Tue, 13 Apr 2021 07:27:34 GMT
expires:
- '-1'
pragma:
@@ -1831,7 +1831,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399978
+ - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995
status:
code: 200
message: OK
@@ -1849,9 +1849,9 @@ interactions:
ParameterSetName:
- -g -n --encryption-type --disk-encryption-set --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"snapshot1-000006\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot1-000006\",\r\n
@@ -1860,10 +1860,10 @@ interactions:
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithCustomerKey\",\r\n
- \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:05.8277777+00:00\",\r\n
+ \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/diskEncryptionSets/des1-000004\"\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:32.9416205+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"755ae7f8-bfef-48d9-aef5-01601fb0cc95\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"6c3309eb-394d-4671-b7f4-04e1d2db0bfe\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1873,7 +1873,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:07 GMT
+ - Tue, 13 Apr 2021 07:27:35 GMT
expires:
- '-1'
pragma:
@@ -1890,7 +1890,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119964
+ - Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119991
status:
code: 200
message: OK
@@ -1909,14 +1909,14 @@ interactions:
- -g -n --size-gb
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_disk_encryption_set_snapshot_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:06:31Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001","name":"cli_test_disk_encryption_set_snapshot_000001","type":"Microsoft.Resources/resourceGroups","location":"westcentralus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1925,7 +1925,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:09 GMT
+ - Tue, 13 Apr 2021 07:27:35 GMT
expires:
- '-1'
pragma:
@@ -1958,9 +1958,9 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\":
@@ -1970,7 +1970,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/407f2aea-4acf-40f6-8ee0-92deedf81555?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3f0e2731-9156-4fcf-9be8-c9e76e9f1cb5?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1978,11 +1978,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:14 GMT
+ - Tue, 13 Apr 2021 07:27:42 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/407f2aea-4acf-40f6-8ee0-92deedf81555?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3f0e2731-9156-4fcf-9be8-c9e76e9f1cb5?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -2013,13 +2013,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/407f2aea-4acf-40f6-8ee0-92deedf81555?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/3f0e2731-9156-4fcf-9be8-c9e76e9f1cb5?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:10:16.0308415+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:27:42.7072866+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:27:43.1603851+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshot2-000007\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n
@@ -2027,11 +2027,11 @@ interactions:
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:42.7228835+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"407f2aea-4acf-40f6-8ee0-92deedf81555\"\r\n}"
+ \"3f0e2731-9156-4fcf-9be8-c9e76e9f1cb5\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2040,7 +2040,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:16 GMT
+ - Tue, 13 Apr 2021 07:27:44 GMT
expires:
- '-1'
pragma:
@@ -2057,7 +2057,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399976
+ - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993
status:
code: 200
message: OK
@@ -2075,9 +2075,9 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"snapshot2-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n
@@ -2086,9 +2086,9 @@ interactions:
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:42.7228835+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -2098,7 +2098,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:17 GMT
+ - Tue, 13 Apr 2021 07:27:44 GMT
expires:
- '-1'
pragma:
@@ -2115,7 +2115,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14980,Microsoft.Compute/LowCostGet30Min;119962
+ - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119988
status:
code: 200
message: OK
@@ -2133,9 +2133,9 @@ interactions:
ParameterSetName:
- -g -n --encryption-type --disk-encryption-set
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"snapshot2-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n
@@ -2144,9 +2144,9 @@ interactions:
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:42.7228835+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -2156,7 +2156,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:19 GMT
+ - Tue, 13 Apr 2021 07:27:47 GMT
expires:
- '-1'
pragma:
@@ -2173,7 +2173,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14978,Microsoft.Compute/LowCostGet30Min;119960
+ - Microsoft.Compute/LowCostGet3Min;14986,Microsoft.Compute/LowCostGet30Min;119986
status:
code: 200
message: OK
@@ -2198,9 +2198,9 @@ interactions:
ParameterSetName:
- -g -n --encryption-type --disk-encryption-set
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"sku\":
@@ -2213,7 +2213,7 @@ interactions:
\"AllowAll\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cf3e19a5-51db-4068-b5e6-f0878eef9ab1?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/385ff893-3e9e-4472-9c40-378402dbda13?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -2221,11 +2221,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:21 GMT
+ - Tue, 13 Apr 2021 07:27:50 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cf3e19a5-51db-4068-b5e6-f0878eef9ab1?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/385ff893-3e9e-4472-9c40-378402dbda13?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -2238,7 +2238,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1197'
status:
code: 202
message: Accepted
@@ -2256,13 +2256,13 @@ interactions:
ParameterSetName:
- -g -n --encryption-type --disk-encryption-set
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cf3e19a5-51db-4068-b5e6-f0878eef9ab1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/385ff893-3e9e-4472-9c40-378402dbda13?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:10:21.1245604+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"cf3e19a5-51db-4068-b5e6-f0878eef9ab1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:27:49.8947632+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"385ff893-3e9e-4472-9c40-378402dbda13\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2271,7 +2271,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:24 GMT
+ - Tue, 13 Apr 2021 07:27:52 GMT
expires:
- '-1'
pragma:
@@ -2288,7 +2288,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399974
+ - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991
status:
code: 200
message: OK
@@ -2306,35 +2306,24 @@ interactions:
ParameterSetName:
- -g -n --encryption-type --disk-encryption-set
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/cf3e19a5-51db-4068-b5e6-f0878eef9ab1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westcentralus/DiskOperations/385ff893-3e9e-4472-9c40-378402dbda13?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:10:21.1245604+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:10:34.2650812+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"snapshot2-000007\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n
- \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westcentralus\",\r\n
- \ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
- \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
- \ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
- \ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithCustomerKey\",\r\n
- \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n
- \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n
- \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"cf3e19a5-51db-4068-b5e6-f0878eef9ab1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:27:49.8947632+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:27:54.5979021+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"properties\": {\r\n \"output\": {\"name\":\"snapshot2-000007\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westcentralus\",\"tags\":{},\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":10,\"encryption\":{\"type\":\"EncryptionAtRestWithCustomerKey\",\"diskEncryptionSetId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\"},\"incremental\":false,\"timeCreated\":\"2021-04-13T07:27:42.7228835+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n
+ \ },\r\n \"name\": \"385ff893-3e9e-4472-9c40-378402dbda13\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1355'
+ - '1187'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:34 GMT
+ - Tue, 13 Apr 2021 07:28:02 GMT
expires:
- '-1'
pragma:
@@ -2351,7 +2340,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399972
+ - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989
status:
code: 200
message: OK
@@ -2369,9 +2358,9 @@ interactions:
ParameterSetName:
- -g -n --encryption-type --disk-encryption-set
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"snapshot2-000007\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/snapshots/snapshot2-000007\",\r\n
@@ -2380,10 +2369,10 @@ interactions:
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithCustomerKey\",\r\n
- \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:10:15.1402426+00:00\",\r\n
+ \ \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/diskEncryptionSets/des2-000005\"\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:27:42.7228835+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9784db50-2251-44d7-9dd7-04e10df055db\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"bc2968f2-2b54-474f-b76d-6c23fbfa6234\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -2393,7 +2382,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:34 GMT
+ - Tue, 13 Apr 2021 07:28:03 GMT
expires:
- '-1'
pragma:
@@ -2410,7 +2399,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14979,Microsoft.Compute/LowCostGet30Min;119956
+ - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119982
status:
code: 200
message: OK
@@ -2428,12 +2417,12 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_disk_encryption_set_snapshot_000001/providers/Microsoft.Compute/diskEncryptionSets/des2-000005/associatedResources?api-version=2020-12-01
response:
body:
- string: "{\r\n \"value\": [\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_NKGL6R5PYIT2GCY5UC5ABTG3NAVUDEBFBSUJW/providers/Microsoft.Compute/snapshots/SNAPSHOT2-UVQQDEKD5O\"\r\n
+ string: "{\r\n \"value\": [\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_DISK_ENCRYPTION_SET_SNAPSHOT_ASOFCTETCMMD7BV4FI3N5NZCMZJL23GRYPBTC/providers/Microsoft.Compute/snapshots/SNAPSHOT2-GJ7ISXRC46\"\r\n
\ ]\r\n}"
headers:
cache-control:
@@ -2443,7 +2432,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:36 GMT
+ - Tue, 13 Apr 2021 07:28:04 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml
index ce86b8b8702..895fe4b80a7 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_e2e.yaml
@@ -14,14 +14,14 @@ interactions:
- -g --gallery-name
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:33 GMT
+ - Wed, 14 Apr 2021 09:18:56 GMT
expires:
- '-1'
pragma:
@@ -62,7 +62,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
response:
@@ -70,11 +70,11 @@ interactions:
string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3SFZ6IRIAMDZ\"\r\n },\r\n
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n },\r\n
\ \"provisioningState\": \"Creating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/01693fb9-d9a6-4b2d-b968-f011775d3127?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/cb0f2d65-f554-4bff-b710-ecd9c093803f?api-version=2019-12-01
cache-control:
- no-cache
content-length:
@@ -82,7 +82,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:41 GMT
+ - Wed, 14 Apr 2021 09:19:04 GMT
expires:
- '-1'
pragma:
@@ -115,14 +115,14 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/01693fb9-d9a6-4b2d-b968-f011775d3127?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/cb0f2d65-f554-4bff-b710-ecd9c093803f?api-version=2019-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:40.3381041+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:40.5724379+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"01693fb9-d9a6-4b2d-b968-f011775d3127\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:19:03.3538981+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:19:03.9476996+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"cb0f2d65-f554-4bff-b710-ecd9c093803f\"\r\n}"
headers:
cache-control:
- no-cache
@@ -131,7 +131,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:11 GMT
+ - Wed, 14 Apr 2021 09:19:34 GMT
expires:
- '-1'
pragma:
@@ -166,7 +166,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
response:
@@ -174,7 +174,7 @@ interactions:
string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3SFZ6IRIAMDZ\"\r\n },\r\n
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n },\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
@@ -184,7 +184,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:11 GMT
+ - Wed, 14 Apr 2021 09:19:34 GMT
expires:
- '-1'
pragma:
@@ -219,16 +219,16 @@ interactions:
ParameterSetName:
- -g
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries?api-version=2019-12-01
response:
body:
string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"gallery_000002\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RGDRRIGOK5WI7WI3DS45D6KD65ECTYDCWTVSDRILUBNK43BYRIJDLW25LKT5UL2VFOX/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLITEST.RG4IAXNRLBW7DB7Y353VCCPB335N7E3VNBWULTAHGMSRHTVSPPIY2GFUMNVDZL46J5X/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\":
- {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3SFZ6IRIAMDZ\"\r\n
+ {\r\n \"uniqueName\": \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n
\ },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n
\ }\r\n ]\r\n}"
headers:
@@ -239,7 +239,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:13 GMT
+ - Wed, 14 Apr 2021 09:19:37 GMT
expires:
- '-1'
pragma:
@@ -274,7 +274,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
response:
@@ -282,7 +282,7 @@ interactions:
string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3SFZ6IRIAMDZ\"\r\n },\r\n
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_3TXBVSIM5PP7\"\r\n },\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
@@ -292,7 +292,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:14 GMT
+ - Wed, 14 Apr 2021 09:19:37 GMT
expires:
- '-1'
pragma:
@@ -309,7 +309,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2492
+ - Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2491
status:
code: 200
message: OK
@@ -328,14 +328,14 @@ interactions:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -344,7 +344,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:15 GMT
+ - Wed, 14 Apr 2021 09:19:39 GMT
expires:
- '-1'
pragma:
@@ -378,7 +378,7 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -392,7 +392,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/065d856b-c6d8-45ea-99dc-ef2886aeb8cb?api-version=2020-09-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/05c7d7c7-fda7-4c16-b75c-b2901cd3846d?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -400,7 +400,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:23 GMT
+ - Wed, 14 Apr 2021 09:19:46 GMT
expires:
- '-1'
pragma:
@@ -415,7 +415,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1199'
status:
code: 201
message: Created
@@ -433,23 +433,23 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/065d856b-c6d8-45ea-99dc-ef2886aeb8cb?api-version=2020-09-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/05c7d7c7-fda7-4c16-b75c-b2901cd3846d?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:02:21.6834754+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:02:21.8084348+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"065d856b-c6d8-45ea-99dc-ef2886aeb8cb\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:19:44.6054847+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:19:44.839861+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"05c7d7c7-fda7-4c16-b75c-b2901cd3846d\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '184'
+ - '183'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:53 GMT
+ - Wed, 14 Apr 2021 09:20:16 GMT
expires:
- '-1'
pragma:
@@ -466,7 +466,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4193
+ - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192
status:
code: 200
message: OK
@@ -484,7 +484,7 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -504,7 +504,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:53 GMT
+ - Wed, 14 Apr 2021 09:20:17 GMT
expires:
- '-1'
pragma:
@@ -521,7 +521,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImage3Min;593,Microsoft.Compute/GetGalleryImage30Min;2993
+ - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992
status:
code: 200
message: OK
@@ -539,7 +539,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images?api-version=2020-09-30
response:
@@ -553,7 +553,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:56 GMT
+ - Wed, 14 Apr 2021 09:20:19 GMT
expires:
- '-1'
pragma:
@@ -565,42 +565,42 @@ interactions:
x-content-type-options:
- nosniff
x-ms-original-request-ids:
- - 6876112b-b0c9-4bbb-9e73-d2c0f2a04979
- - e9491868-f955-45dd-b5e1-2fd7af25475e
- - 73433d9b-a5fa-4fa1-937d-885926a1a881
- - 19cf89e2-5d23-4532-9273-3534bc9d111e
- - e08deed5-43e9-4df5-a568-0a064f5a7e66
- - c60376b0-1586-4018-b431-01b2e0278f82
- - 029e309c-c58b-4bf4-bb75-0c99a9b34d0e
- - be4c67d5-a3b3-4823-bd60-9e0d5303a21d
- - 9cbabc07-b9dd-4ce4-97ac-d8502f0149cb
- - 9eb9b8e1-6091-4de1-8654-4bf9a309fba7
- - ba2525e5-a2f2-4632-a7f2-569a17cb9bd7
- - fccd44eb-eeb0-4657-b696-b483ce52dcf9
- - f46a349c-7f9f-4d0b-b2f1-8d1c3d0db4b1
- - 01637949-ed77-45ad-b091-cb5f062cff35
- - 5b1995f6-391e-470c-8bed-9e46caf9f1cf
- - 7b372a1e-0359-4824-ae5b-90283f87dfe6
- - 16e16600-67d9-4fe2-ba38-e6a73333dfbc
- - 16f3aacf-1ba8-4e6a-b33e-15bad3d85da4
- - 772d9973-32ac-4239-aae2-a04d0122da6c
- - 1b494379-0bc3-4f61-a4ac-2f5b67ca842e
- - 18d7f5d9-357e-4ab9-af8a-999a511476a3
- - eaf2058f-f33a-4cd8-bca1-b39a7c298181
- - 3fdcf96b-ae27-4c4f-8c13-6e0fcc8001fe
- - e5d8dca7-ef78-4537-a134-d1ed837557d8
- - 0a943de6-4e68-46ac-96e6-62936fd1aae0
- - 2e54d73a-a460-43d2-8e88-4c76c3d65910
- - 01c8b641-2dd8-4ea9-8321-9753ae28cd97
- - 7060d4b3-7321-4e02-a74c-afc36e6e38cb
- - 515c402f-1f28-4a83-acbf-8abcf93a63e9
- - 4926683f-1f56-42be-9047-a9b8e0bd8d7e
- - 101d6397-49d9-4afc-899d-cbeef0370f40
- - 82a2156a-8e61-4f2a-a36f-4271d1566584
- - 30892071-e60f-49f9-8c1c-e645b40fee8b
- - 5ec86d4d-d9a9-4c7a-aa90-9c7c05ced261
- - 8a2a80f7-c65a-46b0-9cb9-f1c5a53a6211
- - d08449e4-6564-4059-8eeb-1810c437b834
+ - a81a34af-bfc2-4e70-ab45-1af6d227b514
+ - 0ddc2c55-2d95-4fa3-880c-58681a5e7d22
+ - 5d4e845f-274a-4ffd-863d-f7927bc55fef
+ - 21ac4ec8-387c-4586-95ef-22b7bded2323
+ - 757825ad-3d3b-43e6-9d7b-c27e1a3ea262
+ - 74b873db-97d0-497a-bfb1-e12ae215f0aa
+ - 97c52abe-bb18-4aca-b45d-87b21ddbf457
+ - daa55035-573b-4fd8-85df-018bef296e26
+ - 17573dd8-ad74-4df0-b5e8-bfc9b442679d
+ - 902456b7-e28a-4fe6-bc04-7c82539fb8bb
+ - be579484-5417-4794-87d1-7152f9936e7d
+ - 1d866cb8-5f18-47b6-9215-c98adcc195e6
+ - 694487bb-267f-4b23-886c-b7238db27b53
+ - 7686b635-5dcf-4338-aee9-cb5be975ebee
+ - 7ab25e5f-e32e-4e97-8f44-e1ed4c11b466
+ - 8435a5f2-239f-4a1a-a311-a0e3d9406b6f
+ - 3618e37a-a7a6-4cc7-8bdf-d70c130ca3dd
+ - 6a7a07e9-32e7-40e9-af98-a60e298a81dd
+ - 96e40d06-436a-4c3c-ad76-8954440a77fa
+ - da3f2163-d623-4e46-8574-b6d21f0c918b
+ - 06bcb29a-2e76-4f4f-b650-7d1515246474
+ - d0afe5d8-650d-4edc-8afa-8861910914b1
+ - 50eaeb79-8141-4aa1-aa2f-2e41cb36eabc
+ - 783f1f3f-7612-44d2-bb46-70f2c6bccedd
+ - 42a2516f-94f8-4acf-9713-4e708a2a3bff
+ - 8ffd716b-16a0-42a3-b4db-05bcbb0c7f25
+ - 5533daaa-fe13-4f7a-8a4a-090e14d2b5dc
+ - 243c97dd-9110-4a8b-a94c-1e3d1e1cf8de
+ - f8869430-de97-41aa-8573-2ca4b30af302
+ - 5cd48238-0f6c-4e2b-bf22-1a3c20013f65
+ - 6b1a2bda-449d-43ce-a090-b1b29fe38023
+ - 2b5f9668-3ee3-40b3-9572-3096e703aefe
+ - 7702645b-ebfc-45c0-a5d2-491793b84372
+ - 151ccb36-9d15-41e5-b05f-67b283c8189b
+ - 00534a4e-7289-4f8a-ae0e-92d7e958d218
+ - 355c364d-7296-4e7a-bcc0-aada81cdcb77
status:
code: 200
message: OK
@@ -618,7 +618,7 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -638,7 +638,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:56 GMT
+ - Wed, 14 Apr 2021 09:20:20 GMT
expires:
- '-1'
pragma:
@@ -655,7 +655,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992
+ - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2991
status:
code: 200
message: OK
@@ -674,14 +674,14 @@ interactions:
- -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -690,7 +690,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:57 GMT
+ - Wed, 14 Apr 2021 09:20:20 GMT
expires:
- '-1'
pragma:
@@ -769,13 +769,13 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:58 GMT
+ - Wed, 14 Apr 2021 09:20:22 GMT
etag:
- W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
expires:
- - Thu, 08 Apr 2021 03:07:58 GMT
+ - Wed, 14 Apr 2021 09:25:22 GMT
source-age:
- - '0'
+ - '72'
strict-transport-security:
- max-age=31536000
vary:
@@ -789,15 +789,15 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 843f0ab840bd09ece58f94e5b61757ce6f01ae10
+ - 6e7ce76cff23917dce6dd5b0f205cb5f45e830de
x-frame-options:
- deny
x-github-request-id:
- - 1190:87A4:204620:263068:606E0A67
+ - B82A:0EF1:2D6432:361BB8:60763DA4
x-served-by:
- - cache-qpg1283-QPG
+ - cache-qpg1252-QPG
x-timer:
- - S1617850978.781213,VS0,VE229
+ - S1618392022.003966,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -817,7 +817,7 @@ interactions:
ParameterSetName:
- -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
@@ -831,7 +831,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:58 GMT
+ - Wed, 14 Apr 2021 09:20:21 GMT
expires:
- '-1'
pragma:
@@ -892,25 +892,25 @@ interactions:
- -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy","name":"vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16759368686505382757","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:03:02.9253984Z","duration":"PT2.6391619S","correlationId":"3be4cdac-b10f-445d-898c-7ed94b5626b2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","name":"vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8948302080996803651","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:20:27.2331918Z","duration":"PT2.9257266S","correlationId":"9dd91f90-5693-4b6e-8994-3af0c257897a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy/operationStatuses/08585837559051914265?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx/operationStatuses/08585832148611701683?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '2748'
+ - '2747'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:04 GMT
+ - Wed, 14 Apr 2021 09:20:28 GMT
expires:
- '-1'
pragma:
@@ -920,7 +920,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 201
message: Created
@@ -939,9 +939,9 @@ interactions:
- -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837559051914265?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148611701683?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -953,7 +953,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:35 GMT
+ - Wed, 14 Apr 2021 09:20:59 GMT
expires:
- '-1'
pragma:
@@ -982,9 +982,9 @@ interactions:
- -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837559051914265?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832148611701683?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -996,7 +996,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:05 GMT
+ - Wed, 14 Apr 2021 09:21:30 GMT
expires:
- '-1'
pragma:
@@ -1025,21 +1025,21 @@ interactions:
- -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy","name":"vm_deploy_1nJrX15qApWympdFscjSXT4TqpVo1YWy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16759368686505382757","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:03:50.4563863Z","duration":"PT50.1701498S","correlationId":"3be4cdac-b10f-445d-898c-7ed94b5626b2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","name":"vm_deploy_reEynIeV4pQPIpEVqbAnnTtgssAMveMx","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8948302080996803651","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:21:16.7950596Z","duration":"PT52.4875944S","correlationId":"9dd91f90-5693-4b6e-8994-3af0c257897a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["eastus2"]},{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3813'
+ - '3812'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:06 GMT
+ - Wed, 14 Apr 2021 09:21:31 GMT
expires:
- '-1'
pragma:
@@ -1067,28 +1067,28 @@ interactions:
ParameterSetName:
- -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"414b5dbf-4842-4326-9635-8fe4c5badd8c\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c3c90b30-5cbe-49e3-8119-d01b4c9d2fb2\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
\"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
\"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
- \"Linux\",\r\n \"name\": \"vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\",\r\n
+ \"Linux\",\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\",\r\n
+ [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n
\ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n
\ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\":
false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
\"vm1\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\":
@@ -1107,20 +1107,20 @@ interactions:
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
\ \"message\": \"Guest Agent is running\",\r\n \"time\":
- \"2021-04-08T03:04:03+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
- []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\",\r\n
+ \"2021-04-14T09:21:28+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:03:37.5916074+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-14T09:20:54.9117502+00:00\"\r\n
\ }\r\n ]\r\n },\r\n {\r\n \"name\":
- \"vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\",\r\n \"statuses\":
+ \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:03:37.5916074+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-14T09:20:54.9117502+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:03:48.8416275+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-14T09:21:13.9598089+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -1132,7 +1132,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:07 GMT
+ - Wed, 14 Apr 2021 09:21:33 GMT
expires:
- '-1'
pragma:
@@ -1167,18 +1167,18 @@ interactions:
ParameterSetName:
- -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
- \ \"etag\": \"W/\\\"b48ef775-5dc0-472f-ae4f-a9985e365491\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"1b099bed-b7ea-4dd1-942a-c0cee4695702\\\"\",\r\n \"location\":
\"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"7f66d37b-9b41-4112-b2f7-1a507cdc801e\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"1a515bcf-2b03-46b1-931f-a497151013fc\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n
- \ \"etag\": \"W/\\\"b48ef775-5dc0-472f-ae4f-a9985e365491\\\"\",\r\n
+ \ \"etag\": \"W/\\\"1b099bed-b7ea-4dd1-942a-c0cee4695702\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
@@ -1187,8 +1187,8 @@ interactions:
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"hwhmfvyaq5seln1byd12ibrqqa.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-0D-3A-7C-66-B1\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"c0tepdj3q2yutoxptvzcz3dsuc.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-22-48-4C-09-CF\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
@@ -1202,9 +1202,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:07 GMT
+ - Wed, 14 Apr 2021 09:21:33 GMT
etag:
- - W/"b48ef775-5dc0-472f-ae4f-a9985e365491"
+ - W/"1b099bed-b7ea-4dd1-942a-c0cee4695702"
expires:
- '-1'
pragma:
@@ -1221,7 +1221,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 36d7480f-b1d0-4256-9cb7-270c12730f0e
+ - 7960c784-9d77-4b89-8788-bfa056097eba
status:
code: 200
message: OK
@@ -1239,17 +1239,17 @@ interactions:
ParameterSetName:
- -g -n --image --data-disk-sizes-gb --admin-username --generate-ssh-key --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n
- \ \"etag\": \"W/\\\"7c47f4cb-5713-45ee-9121-caf70f8c69a4\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"0b735981-05c2-42f7-ad36-744f7014c086\\\"\",\r\n \"location\":
\"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"d087e1c5-e63e-4856-b85f-d7420b86b7a1\",\r\n
- \ \"ipAddress\": \"52.252.107.124\",\r\n \"publicIPAddressVersion\":
- \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"d071a775-2c73-4b09-8349-3533441291df\",\r\n
+ \ \"ipAddress\": \"20.96.13.253\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
@@ -1257,13 +1257,13 @@ interactions:
cache-control:
- no-cache
content-length:
- - '999'
+ - '997'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:08 GMT
+ - Wed, 14 Apr 2021 09:21:33 GMT
etag:
- - W/"7c47f4cb-5713-45ee-9121-caf70f8c69a4"
+ - W/"0b735981-05c2-42f7-ad36-744f7014c086"
expires:
- '-1'
pragma:
@@ -1280,7 +1280,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ca1bb192-e278-48fe-a488-6b76a354d4b3
+ - fe06c225-c836-4e02-92a6-686d3cac343e
status:
code: 200
message: OK
@@ -1303,7 +1303,7 @@ interactions:
ParameterSetName:
- -g -n --command-id --scripts
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/runCommand?api-version=2020-12-01
response:
@@ -1311,17 +1311,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30e55c95-c7ce-4699-bd5b-b10360c52b76?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 03:04:09 GMT
+ - Wed, 14 Apr 2021 09:21:34 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30e55c95-c7ce-4699-bd5b-b10360c52b76?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1352,17 +1352,17 @@ interactions:
ParameterSetName:
- -g -n --command-id --scripts
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30e55c95-c7ce-4699-bd5b-b10360c52b76?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:04:10.3887022+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:04:25.3106769+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-14T09:21:35.3203514+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:21:45.7737894+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\"value\":[{\"code\":\"ProvisioningState/succeeded\",\"level\":\"Info\",\"displayStatus\":\"Provisioning
succeeded\",\"message\":\"Enable succeeded: \\n[stdout]\\n\\n[stderr]\\nwarning:
- commands will be executed using /bin/sh\\njob 1 at Thu Apr 8 03:05:00 2021\\n\"}]}\r\n
- \ },\r\n \"name\": \"30e55c95-c7ce-4699-bd5b-b10360c52b76\"\r\n}"
+ commands will be executed using /bin/sh\\njob 1 at Wed Apr 14 09:22:00 2021\\n\"}]}\r\n
+ \ },\r\n \"name\": \"f73a030a-3017-4604-94bb-55813121a908\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1371,7 +1371,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:40 GMT
+ - Wed, 14 Apr 2021 09:22:05 GMT
expires:
- '-1'
pragma:
@@ -1406,14 +1406,14 @@ interactions:
ParameterSetName:
- -g -n --command-id --scripts
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/30e55c95-c7ce-4699-bd5b-b10360c52b76?monitor=true&api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/f73a030a-3017-4604-94bb-55813121a908?monitor=true&api-version=2020-12-01
response:
body:
string: '{"value":[{"code":"ProvisioningState/succeeded","level":"Info","displayStatus":"Provisioning
succeeded","message":"Enable succeeded: \n[stdout]\n\n[stderr]\nwarning: commands
- will be executed using /bin/sh\njob 1 at Thu Apr 8 03:05:00 2021\n"}]}'
+ will be executed using /bin/sh\njob 1 at Wed Apr 14 09:22:00 2021\n"}]}'
headers:
cache-control:
- no-cache
@@ -1422,7 +1422,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:40 GMT
+ - Wed, 14 Apr 2021 09:22:06 GMT
expires:
- '-1'
pragma:
@@ -1459,7 +1459,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/deallocate?api-version=2020-12-01
response:
@@ -1467,17 +1467,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 03:05:52 GMT
+ - Wed, 14 Apr 2021 09:23:16 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1508,13 +1508,13 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:05:52.2643414+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"7d5cd6ca-31c7-4862-a234-9c1b1779a9e0\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:23:17.1051932+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"b778870e-d409-4dd0-a44d-0a55ecf9c0da\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1523,7 +1523,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:06:02 GMT
+ - Wed, 14 Apr 2021 09:23:27 GMT
expires:
- '-1'
pragma:
@@ -1558,14 +1558,14 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:05:52.2643414+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:06:16.8269667+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"7d5cd6ca-31c7-4862-a234-9c1b1779a9e0\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:23:17.1051932+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:23:47.3876472+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"b778870e-d409-4dd0-a44d-0a55ecf9c0da\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1574,7 +1574,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:06:38 GMT
+ - Wed, 14 Apr 2021 09:24:03 GMT
expires:
- '-1'
pragma:
@@ -1591,7 +1591,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29991
+ - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29990
status:
code: 200
message: OK
@@ -1609,9 +1609,9 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/7d5cd6ca-31c7-4862-a234-9c1b1779a9e0?monitor=true&api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/b778870e-d409-4dd0-a44d-0a55ecf9c0da?monitor=true&api-version=2020-12-01
response:
body:
string: ''
@@ -1621,7 +1621,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 03:06:39 GMT
+ - Wed, 14 Apr 2021 09:24:03 GMT
expires:
- '-1'
pragma:
@@ -1634,7 +1634,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29990
+ - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29989
status:
code: 200
message: OK
@@ -1654,7 +1654,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1/generalize?api-version=2020-12-01
response:
@@ -1666,7 +1666,7 @@ interactions:
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 03:06:39 GMT
+ - Wed, 14 Apr 2021 09:24:04 GMT
expires:
- '-1'
pragma:
@@ -1699,26 +1699,26 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"414b5dbf-4842-4326-9635-8fe4c5badd8c\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c3c90b30-5cbe-49e3-8119-d01b4c9d2fb2\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
\"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
\"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
- \"Linux\",\r\n \"name\": \"vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\",\r\n
+ \"Linux\",\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
- \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\"\r\n
+ \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n
\ }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\":
- 0,\r\n \"name\": \"vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\",\r\n
+ 0,\r\n \"name\": \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n
\ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n
- \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\"\r\n
+ \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n
\ },\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n
\ },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\":
\"clitest1\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
@@ -1731,21 +1731,21 @@ interactions:
true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"disks\":
- [\r\n {\r\n \"name\": \"vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\",\r\n
+ [\r\n {\r\n \"name\": \"vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:06:14.7332351+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-14T09:23:45.3093656+00:00\"\r\n
\ }\r\n ]\r\n },\r\n {\r\n \"name\":
- \"vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\",\r\n \"statuses\":
+ \"vm1_disk2_4d42740e01a145b78c38ed39709f2290\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:06:14.7332351+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-14T09:23:45.3093656+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/generalized\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM generalized\"\r\n
\ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:06:14.7488602+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-14T09:23:45.3249912+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/deallocated\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM deallocated\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -1757,7 +1757,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:06:40 GMT
+ - Wed, 14 Apr 2021 09:24:04 GMT
expires:
- '-1'
pragma:
@@ -1793,14 +1793,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1809,7 +1809,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:06:40 GMT
+ - Wed, 14 Apr 2021 09:24:05 GMT
expires:
- '-1'
pragma:
@@ -1843,7 +1843,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01
response:
@@ -1854,10 +1854,10 @@ interactions:
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n
\ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\":
\"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"managedDisk\":
- {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\":
\"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\":
- 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\"\r\n
+ 0,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n
\ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\":
\"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\":
\"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}"
@@ -1865,7 +1865,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/90a8dd5d-f6a8-4cd0-80f8-1b12647704d1?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/acc3e0aa-5674-473a-8798-2a206f743e44?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1873,7 +1873,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:06:48 GMT
+ - Wed, 14 Apr 2021 09:24:13 GMT
expires:
- '-1'
pragma:
@@ -1888,7 +1888,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1196'
status:
code: 201
message: Created
@@ -1906,23 +1906,23 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/90a8dd5d-f6a8-4cd0-80f8-1b12647704d1?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/operations/acc3e0aa-5674-473a-8798-2a206f743e44?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:06:47.0303123+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:06:52.1240989+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"90a8dd5d-f6a8-4cd0-80f8-1b12647704d1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:24:11.185392+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:24:16.3261615+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"acc3e0aa-5674-473a-8798-2a206f743e44\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '184'
+ - '183'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:19 GMT
+ - Wed, 14 Apr 2021 09:24:43 GMT
expires:
- '-1'
pragma:
@@ -1939,7 +1939,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29988
+ - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29987
status:
code: 200
message: OK
@@ -1957,7 +1957,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1?api-version=2020-12-01
response:
@@ -1968,11 +1968,11 @@ interactions:
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n
\ },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\":
\"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"diskSizeGB\":
- 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_373b5b1640ac48b880f4d849fa57fae5\"\r\n
+ 30,\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk1_a9ebcddecf804119bb33f2a238f5e735\"\r\n
\ },\r\n \"caching\": \"ReadWrite\",\r\n \"storageAccountType\":
\"Premium_LRS\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\":
0,\r\n \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5f47edf9d5a24f6ba4c0352a17f2adec\"\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4d42740e01a145b78c38ed39709f2290\"\r\n
\ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\":
\"Premium_LRS\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\":
\"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n }\r\n}"
@@ -1984,7 +1984,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:19 GMT
+ - Wed, 14 Apr 2021 09:24:43 GMT
expires:
- '-1'
pragma:
@@ -2021,14 +2021,14 @@ interactions:
--replica-count
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2037,7 +2037,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:20 GMT
+ - Wed, 14 Apr 2021 09:24:44 GMT
expires:
- '-1'
pragma:
@@ -2072,9 +2072,9 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n
@@ -2083,13 +2083,13 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East
US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n
\ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -2097,7 +2097,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:26 GMT
+ - Wed, 14 Apr 2021 09:24:49 GMT
expires:
- '-1'
pragma:
@@ -2112,7 +2112,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1195'
status:
code: 201
message: Created
@@ -2131,13 +2131,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2146,7 +2146,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:26 GMT
+ - Wed, 14 Apr 2021 09:25:50 GMT
expires:
- '-1'
pragma:
@@ -2163,7 +2163,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4183
+ - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4182
status:
code: 200
message: OK
@@ -2182,13 +2182,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2197,7 +2197,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:28 GMT
+ - Wed, 14 Apr 2021 09:26:50 GMT
expires:
- '-1'
pragma:
@@ -2233,13 +2233,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2248,7 +2248,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:27 GMT
+ - Wed, 14 Apr 2021 09:27:51 GMT
expires:
- '-1'
pragma:
@@ -2284,13 +2284,64 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 09:28:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
+ --replica-count
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2299,7 +2350,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:11:29 GMT
+ - Wed, 14 Apr 2021 09:29:54 GMT
expires:
- '-1'
pragma:
@@ -2316,7 +2367,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4173
+ - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4168
status:
code: 200
message: OK
@@ -2335,13 +2386,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2350,7 +2401,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:12:30 GMT
+ - Wed, 14 Apr 2021 09:30:53 GMT
expires:
- '-1'
pragma:
@@ -2367,7 +2418,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4170
+ - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4164
status:
code: 200
message: OK
@@ -2386,13 +2437,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2401,7 +2452,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:13:31 GMT
+ - Wed, 14 Apr 2021 09:31:55 GMT
expires:
- '-1'
pragma:
@@ -2418,7 +2469,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4166
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4159
status:
code: 200
message: OK
@@ -2437,14 +2488,14 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c3555428-b75f-4cfd-826c-f4df2714fcec?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/0f378fef-d2e1-4943-8917-cf4d4703e391?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:07:25.0394472+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:14:11.4616464+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"c3555428-b75f-4cfd-826c-f4df2714fcec\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:24:47.9201677+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:31:56.2509304+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"0f378fef-d2e1-4943-8917-cf4d4703e391\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2453,7 +2504,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:14:31 GMT
+ - Wed, 14 Apr 2021 09:32:54 GMT
expires:
- '-1'
pragma:
@@ -2470,7 +2521,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4163
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4156
status:
code: 200
message: OK
@@ -2489,9 +2540,9 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --managed-image
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n
@@ -2500,7 +2551,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East
US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n
\ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
@@ -2516,7 +2567,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:14:31 GMT
+ - Wed, 14 Apr 2021 09:32:55 GMT
expires:
- '-1'
pragma:
@@ -2533,7 +2584,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9989
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1993,Microsoft.Compute/GetGalleryImageVersion30Min;9986
status:
code: 200
message: OK
@@ -2551,13 +2602,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30
response:
body:
string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East
- US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-08T03:07:25.0550396+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}'
+ US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-14T09:24:47.9357926+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}'
headers:
cache-control:
- no-cache
@@ -2566,7 +2617,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:14:34 GMT
+ - Wed, 14 Apr 2021 09:32:57 GMT
expires:
- '-1'
pragma:
@@ -2578,42 +2629,42 @@ interactions:
x-content-type-options:
- nosniff
x-ms-original-request-ids:
- - bd900704-f77f-43fc-98f5-28f4a92e6da3
- - 80da7187-e1fa-45ea-8642-25ba724d27f8
- - ccc241d9-d41e-4e31-91a5-57146af24a9b
- - d893637d-b212-4c58-8638-df14fe975a98
- - d1024cbd-2fe1-47de-89c1-2869034dec5f
- - 7b8389e7-7f10-4f9d-a4ef-71408e731786
- - da680bc4-c21f-40db-9f6b-9fb9ea481f6c
- - b3278d4a-c9a9-4886-856a-dcea3a43ff98
- - 95e61608-dbee-46f7-b12e-ca2f4354c257
- - a3d29503-f75f-46b4-8c3a-fef466a0dbc9
- - ecca8dd4-d3c2-49cf-b1ff-b9e6603f815c
- - 08d99160-5825-4f97-98f6-d54c80a1f6ab
- - 546077d2-0de4-44c5-b5c3-fb9ae1cf6c25
- - 51b5b111-0fe6-4523-9499-1186e4a65cc8
- - f4aa744c-f3ad-42ef-99e8-40bf7498b25a
- - 139ebee6-ebd2-4599-8329-89688dcde50c
- - 8e36936e-5239-4558-8f4a-b6222fb5ed7d
- - d787ee4b-0aee-4633-a31d-5ce142375b27
- - 6e67870f-de4f-4cbb-91d6-50db0c578023
- - 55a771eb-35e9-4263-b16a-0fbf35019892
- - 700dfbd7-d334-4f2e-8bb7-a69590b21b74
- - 9f2beed8-fd6b-4755-a822-d7b227b80955
- - 90bef442-f1e4-4efd-8d22-506976b8d164
- - e61f98ac-f333-429d-bfc7-8b79418d882d
- - 013f402a-f59e-4496-ac04-3ef7f57e253b
- - 1453964e-4315-4e0b-a03c-d7c0f442e175
- - ea5bf80f-0ee5-4a8e-91a7-e60ff249afda
- - a52d9682-6a37-409c-a4a0-ffe02af0504c
- - fca44b1b-5a6c-4e3c-bf1e-51581f72ef87
- - 622a269b-c71b-4261-8b93-6fa246b4e279
- - 39b8efa1-d924-4e30-a8ba-ec5c705e2d09
- - 17fa3d3d-1209-491f-b282-f2419647ede0
- - db0b240e-78e9-4b57-bbcb-d9ce8814dc04
- - 7a3a76ac-62b8-4548-9934-5e64dcd43b7b
- - 4f547f66-da9f-4478-ab8c-2567b3a8cf7c
- - d9da7db1-5436-4b35-97fb-f70871fd6718
+ - e77e5f61-d4f2-4954-98ee-fe01f8dedbd4
+ - fcbaf940-5542-4c3b-940e-f692f62302dd
+ - 1d3aca94-6955-4da8-8c06-e8d9cf3853be
+ - 5a07e9f6-67fd-4693-8bf9-b0e5dfcea5f4
+ - bfda1470-6480-49d9-8de8-046f148cbd38
+ - 774073d1-949a-4a59-957d-a72358b48a40
+ - c666c349-9d00-4780-bc4a-3af3cd33536c
+ - c7638ecd-d7b8-4c4a-978d-279f484d455d
+ - 7434a0bb-1ee6-4a43-adc1-06479f0b181b
+ - 4aed1195-17d9-4f36-892c-0a244d9807ab
+ - bd4a4150-2f82-453b-b626-8d354f7c88d2
+ - 197fb7c9-a815-4dd0-bb0f-7cdfd6e6863e
+ - ad7a9b37-da4d-4208-9582-183af478ce64
+ - fbd87cdd-d101-4490-b12d-16ed977a69d2
+ - cee4ecbd-6124-4bed-914d-7c3bbf87f6c4
+ - 70d72ec2-80b6-4fa0-a7e7-67eb68768dee
+ - d4da8899-081b-4001-ac24-3be988537d6d
+ - b00e522f-c5f8-459b-9222-d400327af99a
+ - 1cb76b09-87c7-4745-83ef-0300bf2e86a7
+ - 0f3a5ced-80fd-4da4-bf5f-f5116c6ea9ec
+ - 3413f732-0c8a-4030-aeea-319a9c83df58
+ - 49c823d3-4c30-4097-a687-f752f177ef3e
+ - d085e0b7-fc6c-4b2f-8423-8697fc754ce3
+ - f41712fd-c46b-4c4d-b21c-f2fb61d38d4b
+ - 40003990-791a-43c9-bcad-b100bb8b76de
+ - 43597654-2536-4f44-ba95-49281530a549
+ - 162629f5-cc6a-4431-af86-d15ddcad7e4d
+ - bb681ff1-3d91-4854-822a-5ccae6d1eef2
+ - 3eadaec1-edcc-4fdf-a791-e9f104f19fbb
+ - f2f7c13f-9f1f-435c-aaf5-84ea6604a75f
+ - 7f39d104-8b6b-4769-93e1-f376e5ae72f8
+ - eb9451c3-99ca-4c79-9583-f6a9af1bce80
+ - 307a39c8-403d-4745-93b9-1ed36a724241
+ - edab7c4e-fb31-4840-aff5-0da21c181ad3
+ - 910542eb-0338-4f5c-9cd2-0dec29a2ac61
+ - a409f186-9b32-4caf-b2dc-e9bfa50dd6f0
status:
code: 200
message: OK
@@ -2631,9 +2682,9 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n
@@ -2642,7 +2693,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East
US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n
\ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
@@ -2658,7 +2709,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:14:34 GMT
+ - Wed, 14 Apr 2021 09:32:59 GMT
expires:
- '-1'
pragma:
@@ -2675,7 +2726,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9988
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9985
status:
code: 200
message: OK
@@ -2694,9 +2745,9 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n
@@ -2705,7 +2756,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East
US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n
\ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
@@ -2721,7 +2772,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:14:35 GMT
+ - Wed, 14 Apr 2021 09:32:59 GMT
expires:
- '-1'
pragma:
@@ -2738,7 +2789,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9987
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9984
status:
code: 200
message: OK
@@ -2765,9 +2816,9 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n
@@ -2778,843 +2829,25 @@ interactions:
\"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East
US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
- {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n
- \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
- \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\":
- [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n
- \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n
- \ \"provisioningState\": \"Updating\"\r\n }\r\n}"
- headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- cache-control:
- - no-cache
- content-length:
- - '1474'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:14:37 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197
- x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:15:38 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4161
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:16:39 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4159
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:17:40 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4157
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:18:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4155
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:19:42 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4153
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:20:42 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4151
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:21:44 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:22:46 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4147
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:23:46 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4145
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:24:47 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4143
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:25:48 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4141
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:26:49 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4139
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:27:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4137
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:28:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4135
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:29:51 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4133
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - sig image-version update
- Connection:
- - keep-alive
- ParameterSetName:
- - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
- --replica-count
- User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
+ {\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n
+ \ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
+ \"ReadWrite\",\r\n \"source\": {}\r\n },\r\n \"dataDiskImages\":
+ [\r\n {\r\n \"lun\": 0,\r\n \"sizeInGB\": 10,\r\n
+ \ \"hostCaching\": \"None\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisioningState\": \"Updating\"\r\n }\r\n}"
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30
cache-control:
- no-cache
content-length:
- - '134'
+ - '1474'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:30:53 GMT
+ - Wed, 14 Apr 2021 09:33:00 GMT
expires:
- '-1'
pragma:
@@ -3631,7 +2864,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4139
+ - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
status:
code: 200
message: OK
@@ -3650,13 +2885,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}"
headers:
cache-control:
- no-cache
@@ -3665,7 +2900,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:31:54 GMT
+ - Wed, 14 Apr 2021 09:34:00 GMT
expires:
- '-1'
pragma:
@@ -3682,7 +2917,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4137
+ - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4155
status:
code: 200
message: OK
@@ -3701,13 +2936,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}"
headers:
cache-control:
- no-cache
@@ -3716,7 +2951,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:32:54 GMT
+ - Wed, 14 Apr 2021 09:35:02 GMT
expires:
- '-1'
pragma:
@@ -3733,7 +2968,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4135
+ - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4153
status:
code: 200
message: OK
@@ -3752,13 +2987,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}"
headers:
cache-control:
- no-cache
@@ -3767,7 +3002,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:33:55 GMT
+ - Wed, 14 Apr 2021 09:36:02 GMT
expires:
- '-1'
pragma:
@@ -3784,7 +3019,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4133
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4151
status:
code: 200
message: OK
@@ -3803,13 +3038,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}"
headers:
cache-control:
- no-cache
@@ -3818,7 +3053,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:34:56 GMT
+ - Wed, 14 Apr 2021 09:37:02 GMT
expires:
- '-1'
pragma:
@@ -3835,7 +3070,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4131
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4149
status:
code: 200
message: OK
@@ -3854,13 +3089,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}"
headers:
cache-control:
- no-cache
@@ -3869,7 +3104,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:35:57 GMT
+ - Wed, 14 Apr 2021 09:38:04 GMT
expires:
- '-1'
pragma:
@@ -3886,7 +3121,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4143
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4147
status:
code: 200
message: OK
@@ -3905,13 +3140,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}"
headers:
cache-control:
- no-cache
@@ -3920,7 +3155,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:36:58 GMT
+ - Wed, 14 Apr 2021 09:39:04 GMT
expires:
- '-1'
pragma:
@@ -3937,7 +3172,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4141
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4145
status:
code: 200
message: OK
@@ -3956,13 +3191,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}"
headers:
cache-control:
- no-cache
@@ -3971,7 +3206,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:37:59 GMT
+ - Wed, 14 Apr 2021 09:40:06 GMT
expires:
- '-1'
pragma:
@@ -3988,7 +3223,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4139
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4143
status:
code: 200
message: OK
@@ -4007,14 +3242,14 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/6b594365-5e96-4f3e-a356-2c51aafd7a52?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/e8c4c43a-5437-40c1-ade5-5519a7a55543?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:14:37.6501879+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:38:08.8783673+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"6b594365-5e96-4f3e-a356-2c51aafd7a52\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:33:01.0325905+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:40:47.4574311+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"e8c4c43a-5437-40c1-ade5-5519a7a55543\"\r\n}"
headers:
cache-control:
- no-cache
@@ -4023,7 +3258,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:39:00 GMT
+ - Wed, 14 Apr 2021 09:41:06 GMT
expires:
- '-1'
pragma:
@@ -4040,7 +3275,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4137
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4141
status:
code: 200
message: OK
@@ -4059,9 +3294,9 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.1.2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2\",\r\n
@@ -4072,7 +3307,7 @@ interactions:
\"Standard_LRS\"\r\n },\r\n {\r\n \"name\": \"East
US 2\",\r\n \"regionalReplicaCount\": 2,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 2,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:07:25.0550396+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-14T09:24:47.9357926+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n
\ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
@@ -4088,7 +3323,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:39:00 GMT
+ - Wed, 14 Apr 2021 09:41:06 GMT
expires:
- '-1'
pragma:
@@ -4105,7 +3340,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1997,Microsoft.Compute/GetGalleryImageVersion30Min;9981
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9982
status:
code: 200
message: OK
@@ -4124,14 +3359,14 @@ interactions:
- -g -n --enable-purge-protection --enable-soft-delete
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -4140,7 +3375,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:39:01 GMT
+ - Wed, 14 Apr 2021 09:41:08 GMT
expires:
- '-1'
pragma:
@@ -4185,19 +3420,19 @@ interactions:
dataserviceversion:
- 3.0;
date:
- - Thu, 08 Apr 2021 03:39:01 GMT
+ - Wed, 14 Apr 2021 09:41:09 GMT
duration:
- - '2472912'
+ - '4386885'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - h+h5kje/T6z5E1IbrlFN9u7Vv2x6l9jfeDQMPucdrvE=
+ - sHt0aHppBP2z8G93yj+JCdu8HrOizpiLsuKNO0oK2FA=
ocp-aad-session-key:
- - 5jAYwrnaGR0L1YMBN4I4scpjGqI1OYVGHUl4_w9-Bxb1iJhNxcvnoD0vrsvzpJ5bODJXCKLxlc0DowmsbSvmZ7H8fmr9_SOe8EI-sngoKxMeyNbTyf7af4AkQW7eiMBp.V1pmy5Os-wKIujZUAj9utw8vegNMs8APa4WvPttp154
+ - 7DWBjP_sr0GVHWyrR5sgwfWEcYsaweS80Rm_V0lpjIZ4shCp9CUQq9Vd49CQj238loUZf8RbmkH1Otmi2OX9miK8pU_obsW2YL-wxXqiVxI4wINQeB6Ti8wjxP5Y5skr.hn7KSshAR7BzjIulfi9Roa-Gex33NWI3Z1BKATdEzhU
pragma:
- no-cache
request-id:
- - 94ebb67c-84b9-4c37-b012-19b0b0fbd8e7
+ - 095a241d-dd0a-4aad-b620-ed76761290fd
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -4239,7 +3474,7 @@ interactions:
ParameterSetName:
- -g -n --enable-purge-protection --enable-soft-delete
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01
response:
@@ -4253,7 +3488,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:39:13 GMT
+ - Wed, 14 Apr 2021 09:41:17 GMT
expires:
- '-1'
pragma:
@@ -4271,9 +3506,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -4293,7 +3528,7 @@ interactions:
ParameterSetName:
- -g -n --enable-purge-protection --enable-soft-delete
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01
response:
@@ -4307,7 +3542,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:39:43 GMT
+ - Wed, 14 Apr 2021 09:41:48 GMT
expires:
- '-1'
pragma:
@@ -4325,7 +3560,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-powered-by:
- ASP.NET
status:
@@ -4363,7 +3598,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:39:44 GMT
+ - Wed, 14 Apr 2021 09:41:50 GMT
expires:
- '-1'
pragma:
@@ -4408,7 +3643,7 @@ interactions:
uri: https://vault-000003.vault.azure.net/keys/key-000004/create?api-version=7.0
response:
body:
- string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"vG5XMqvPImv9S-N4Oew0ulhglDEwr3DXP_1wt5MKhl8L6wWI9RuCRPp9ZJtGop_ZdZ7PrpMsSprd3W8_7V6qltz7PQDO4r_r72U-b4dv4Jl_qsD7sdmvD4bJvwsjfC6HdwgURcqqLq2_PSJq6c__Akbr_2b78yeSWz-jP__rtMvYJPPUxL8RpW197pKh2DiPTWywqgQ0bC0niW0xgptV_c1GfUyrSIMhDtkYzi-gX0TH2AyFVnd_QBLGjnwx0YdqZwrZHivzZr44ybfNHRTi5e8Z3gjr6KgwD1iq6xTyauuVHZw6Hx0FgOqZtigvyPa_KGAWOxqfCzvmy6QQjVbF2Q","e":"AQAB"},"attributes":{"enabled":true,"created":1617853187,"updated":1617853187,"recoveryLevel":"Recoverable"}}'
+ string: '{"key":{"kid":"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8","kty":"RSA","key_ops":["encrypt","decrypt","sign","verify","wrapKey","unwrapKey"],"n":"0tdv9IydO-CFc2H3BcmiHUOr8r5abjhIT4kNQqNuP4kxNGcDKIEIdZfgvZqSwRcCAMbwwz1nQdUqGeP0OUUrUzhaTehDYHim-G0TlvMaUyln4hDQUiWJXR53CZhF-Kxf0AeKN0M8TJGTaJ-_jfcjrh144OJjuXVtunBq5E6ZNr9pCYQYmVG6ZIAOYyT_glUtVeLB9NJgsLyRFtTgzKJzjBXlAmworGOOCwhg-XkJsvL700EKGFsp8BdKRW59kf_prFzC366TdozAItLNXCjLWCgCxBSyfDHgAOunDkN5EmQYJiyvxSJE6ZEy3o56DrEQBLJ5oyZovHFFWLdCxeaesQ","e":"AQAB"},"attributes":{"enabled":true,"created":1618393311,"updated":1618393311,"recoveryLevel":"Recoverable"}}'
headers:
cache-control:
- no-cache
@@ -4417,7 +3652,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:39:46 GMT
+ - Wed, 14 Apr 2021 09:41:52 GMT
expires:
- '-1'
pragma:
@@ -4452,14 +3687,14 @@ interactions:
- -g -n --key-url --source-vault
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -4468,7 +3703,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:39:47 GMT
+ - Wed, 14 Apr 2021 09:41:52 GMT
expires:
- '-1'
pragma:
@@ -4485,7 +3720,7 @@ interactions:
- request:
body: '{"location": "eastus2", "identity": {"type": "SystemAssigned"}, "properties":
{"activeKey": {"sourceVault": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003"},
- "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e"}}}'
+ "keyUrl": "https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8"}}}'
headers:
Accept:
- application/json
@@ -4502,7 +3737,7 @@ interactions:
ParameterSetName:
- -g -n --key-url --source-vault
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-12-01
response:
@@ -4510,11 +3745,11 @@ interactions:
string: "{\r\n \"location\": \"eastus2\",\r\n \"identity\": {\r\n \"type\":
\"SystemAssigned\"\r\n },\r\n \"properties\": {\r\n \"activeKey\": {\r\n
\ \"sourceVault\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n
- \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e\"\r\n
+ \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"\r\n
\ },\r\n \"provisioningState\": \"Updating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7f96b1ab-803d-4f15-90c5-45488f2d39da?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/5c19e3ef-a44d-400a-9ee4-45535e5ddfb6?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -4522,11 +3757,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:39:54 GMT
+ - Wed, 14 Apr 2021 09:42:02 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7f96b1ab-803d-4f15-90c5-45488f2d39da?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/5c19e3ef-a44d-400a-9ee4-45535e5ddfb6?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -4539,7 +3774,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostDiskEncryptionSet3Min;99,Microsoft.Compute/HighCostDiskEncryptionSet30Min;299
x-ms-ratelimit-remaining-subscription-writes:
- - '1188'
+ - '1198'
status:
code: 202
message: Accepted
@@ -4557,15 +3792,15 @@ interactions:
ParameterSetName:
- -g -n --key-url --source-vault
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/7f96b1ab-803d-4f15-90c5-45488f2d39da?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/5c19e3ef-a44d-400a-9ee4-45535e5ddfb6?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:39:54.2064676+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:39:54.3002121+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"1f2d9329-31d4-4703-923f-4cdb4889d51f\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n
- \ },\r\n \"name\": \"7f96b1ab-803d-4f15-90c5-45488f2d39da\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:42:03.2318429+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:42:03.3255468+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"properties\": {\r\n \"output\": {\"name\":\"des1-000005\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\"type\":\"Microsoft.Compute/diskEncryptionSets\",\"location\":\"eastus2\",\"identity\":{\"type\":\"SystemAssigned\",\"principalId\":\"1d8fb725-3405-4a8a-92de-9336c73524fa\",\"tenantId\":\"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"},\"properties\":{\"activeKey\":{\"sourceVault\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"},\"keyUrl\":\"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"},\"encryptionType\":\"EncryptionAtRestWithCustomerKey\",\"provisioningState\":\"Succeeded\"}}\r\n
+ \ },\r\n \"name\": \"5c19e3ef-a44d-400a-9ee4-45535e5ddfb6\"\r\n}"
headers:
cache-control:
- no-cache
@@ -4574,7 +3809,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:40:24 GMT
+ - Wed, 14 Apr 2021 09:42:32 GMT
expires:
- '-1'
pragma:
@@ -4591,7 +3826,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399980
+ - Microsoft.Compute/GetOperation3Min;49998,Microsoft.Compute/GetOperation30Min;399990
status:
code: 200
message: OK
@@ -4609,7 +3844,7 @@ interactions:
ParameterSetName:
- -g -n --key-url --source-vault
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-12-01
response:
@@ -4617,10 +3852,10 @@ interactions:
string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n
\ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n
\ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\":
- \"1f2d9329-31d4-4703-923f-4cdb4889d51f\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
+ \"1d8fb725-3405-4a8a-92de-9336c73524fa\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
\ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n
- \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e\"\r\n
+ \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"\r\n
\ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
@@ -4631,7 +3866,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:40:24 GMT
+ - Wed, 14 Apr 2021 09:42:33 GMT
expires:
- '-1'
pragma:
@@ -4648,7 +3883,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119980
+ - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119994
status:
code: 200
message: OK
@@ -4666,7 +3901,7 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005?api-version=2020-12-01
response:
@@ -4674,10 +3909,10 @@ interactions:
string: "{\r\n \"name\": \"des1-000005\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\",\r\n
\ \"type\": \"Microsoft.Compute/diskEncryptionSets\",\r\n \"location\": \"eastus2\",\r\n
\ \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\":
- \"1f2d9329-31d4-4703-923f-4cdb4889d51f\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
+ \"1d8fb725-3405-4a8a-92de-9336c73524fa\",\r\n \"tenantId\": \"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a\"\r\n
\ },\r\n \"properties\": {\r\n \"activeKey\": {\r\n \"sourceVault\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003\"\r\n
- \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/b3100bd4b754420fbd5b0709b6f50e1e\"\r\n
+ \ },\r\n \"keyUrl\": \"https://vault-000003.vault.azure.net/keys/key-000004/5183b2423dea4264871a281e5f2e52c8\"\r\n
\ },\r\n \"encryptionType\": \"EncryptionAtRestWithCustomerKey\",\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
@@ -4688,7 +3923,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:40:25 GMT
+ - Wed, 14 Apr 2021 09:42:34 GMT
expires:
- '-1'
pragma:
@@ -4705,7 +3940,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119979
+ - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119993
status:
code: 200
message: OK
@@ -4723,21 +3958,21 @@ interactions:
ParameterSetName:
- -n --object-id --key-permissions
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01
response:
body:
- string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}'
+ string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv2","name":"azps-test-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/azps-test-group/providers/Microsoft.KeyVault/vaults/azps-test-kv4","name":"azps-test-kv4","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_certggzs7nxo5hjulhbph77kpvp354aj2g76gnb4o6vaxi6syrqnv6ggq/providers/Microsoft.KeyVault/vaults/cli-test-kv-ct-jf3usxgrl","name":"cli-test-kv-ct-jf3usxgrl","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_pecls2h5rxvfaqqkvye55nhoori3r3dmwaqfb7lzom54axazkkm4is7ke/providers/Microsoft.KeyVault/vaults/cli-test-kv-pec-x4mreb6v","name":"cli-test-kv-pec-x4mreb6v","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_sdmncdngmrvbbjhfs6a2sosy2kv22fuft3gi3yy6yqcgh53atiqp7iu6m/providers/Microsoft.KeyVault/vaults/cli-test-kv-sd-bii62ul25","name":"cli-test-kv-sd-bii62ul25","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secret_soft_deletemq3pggvjub2evjp5lm4u3p6pogoqzenw3teewhk/providers/Microsoft.KeyVault/vaults/cli-test-kv-se-sd-oftopu","name":"cli-test-kv-se-sd-oftopu","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_keyvault_secretf6hut52qzfmqwtgebrz7mtpsdiu7jd2kq2enndadzgrvtk5prq6/providers/Microsoft.KeyVault/vaults/cli-test-kv-se-ewh7pirby","name":"cli-test-kv-se-ewh7pirby","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/fytest/providers/Microsoft.KeyVault/vaults/vault1569","name":"vault1569","type":"Microsoft.KeyVault/vaults","location":"centraluseuap","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/houk-test/providers/Microsoft.KeyVault/vaults/houk-kv2","name":"houk-kv2","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jiasli-cli-dev/providers/Microsoft.KeyVault/vaults/cli-sni-kv","name":"cli-sni-kv","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ljin-test/providers/Microsoft.KeyVault/vaults/kv-ljin-sni","name":"kv-ljin-sni","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-testdevice-020dc7b13","name":"ase-testdevice-020dc7b13","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"testdevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ase-ysgatewayd-e2960da93","name":"ase-ysgatewayd-e2960da93","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{"dbe-resource":"ysgatewaydevice"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ysvault","name":"ysvault","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}}]}'
headers:
cache-control:
- no-cache
content-length:
- - '1990'
+ - '3986'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:40:25 GMT
+ - Wed, 14 Apr 2021 09:42:34 GMT
expires:
- '-1'
pragma:
@@ -4765,7 +4000,7 @@ interactions:
ParameterSetName:
- -n --object-id --key-permissions
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01
response:
@@ -4779,7 +4014,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:40:28 GMT
+ - Wed, 14 Apr 2021 09:42:36 GMT
expires:
- '-1'
pragma:
@@ -4797,7 +4032,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-powered-by:
- ASP.NET
status:
@@ -4813,8 +4048,8 @@ interactions:
"import", "update", "managecontacts", "getissuers", "listissuers", "setissuers",
"deleteissuers", "manageissuers", "recover"], "storage": ["get", "list", "delete",
"set", "update", "regeneratekey", "setsas", "listsas", "getsas", "deletesas"]}},
- {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "1f2d9329-31d4-4703-923f-4cdb4889d51f",
- "permissions": {"keys": ["unwrapKey", "get", "wrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/",
+ {"tenantId": "54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", "objectId": "1d8fb725-3405-4a8a-92de-9336c73524fa",
+ "permissions": {"keys": ["wrapKey", "get", "unwrapKey"]}}], "vaultUri": "https://vault-000003.vault.azure.net/",
"enabledForDeployment": false, "enableSoftDelete": true, "softDeleteRetentionInDays":
90, "enablePurgeProtection": true}}'
headers:
@@ -4833,12 +4068,12 @@ interactions:
ParameterSetName:
- -n --object-id --key-permissions
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-keyvault/8.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003?api-version=2019-09-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"1f2d9329-31d4-4703-923f-4cdb4889d51f","permissions":{"keys":["unwrapKey","get","wrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","name":"vault-000003","type":"Microsoft.KeyVault/vaults","location":"eastus2","tags":{},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"181c08fa-7ac8-48a6-a869-342ab74566a4","permissions":{"keys":["get","create","delete","list","update","import","backup","restore","recover"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"],"storage":["get","list","delete","set","update","regeneratekey","setsas","listsas","getsas","deletesas"]}},{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"1d8fb725-3405-4a8a-92de-9336c73524fa","permissions":{"keys":["wrapKey","get","unwrapKey"]}}],"enabledForDeployment":false,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enablePurgeProtection":true,"vaultUri":"https://vault-000003.vault.azure.net/","provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -4847,7 +4082,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:40:30 GMT
+ - Wed, 14 Apr 2021 09:42:37 GMT
expires:
- '-1'
pragma:
@@ -4865,9 +4100,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-keyvault-service-version:
- - 1.1.286.0
+ - 1.1.292.0
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
x-powered-by:
- ASP.NET
status:
@@ -4888,7 +4123,7 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
@@ -4905,7 +4140,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:40:45 GMT
+ - Wed, 14 Apr 2021 09:42:53 GMT
expires:
- '-1'
pragma:
@@ -4938,11 +4173,11 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271f2d9329-31d4-4703-923f-4cdb4889d51f%27%29&api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%271d8fb725-3405-4a8a-92de-9336c73524fa%27%29&api-version=1.6
response:
body:
string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[]}'
@@ -4958,19 +4193,19 @@ interactions:
dataserviceversion:
- 3.0;
date:
- - Thu, 08 Apr 2021 03:40:46 GMT
+ - Wed, 14 Apr 2021 09:42:54 GMT
duration:
- - '2305898'
+ - '3562551'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - vCf1yv8EBbvwkoImhY8PEFOKq+b0ZYevaPwrzwcb+GU=
+ - senIUAIzmIpAAHXt/NjwiUH8YenTZdR21Uaj8u7XsWM=
ocp-aad-session-key:
- - ywBzjOTtV45JvUXbW8CtOMxNwrPBr6ooHj_kb8CpayzgX0BNHvBFGt2kQYMhEcdxdIIIRW3L__pxPsWL3nib5GU0lLLoc8_bZRk28GyYifVTv_LAgYeeu6NPJsrkmYr2.Cr0N3X72KfkyXNsbbhRtJUiaLjyjtuQ2esCwf-B7eZs
+ - lvrtr0AKjNp9IOujtazb6K-FH5fQIe9V35VUGZHOfBM_mSEFrEOU5ANJJrcTZm4ZD4EJpHZdFR7SK3knxt5OOoOFJki1ankwdZixsn5OS8QWj5hwO26qAp_iqRNGh4Zy.EgjDHfZ9lfa0rVV7vvMuuh29hInYQEBKs1yg1myAQVo
pragma:
- no-cache
request-id:
- - 8551f094-e3d9-4fb9-9bbd-5838675b5a70
+ - f54e8a27-cf3a-4cd0-a325-cb8df1687e60
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -4985,7 +4220,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"objectIds": ["1f2d9329-31d4-4703-923f-4cdb4889d51f"], "includeDirectoryObjectReferences":
+ body: '{"objectIds": ["1d8fb725-3405-4a8a-92de-9336c73524fa"], "includeDirectoryObjectReferences":
true}'
headers:
Accept:
@@ -5004,14 +4239,14 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: POST
uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/getObjectsByObjectIds?api-version=1.6
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1f2d9329-31d4-4703-923f-4cdb4889d51f","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"522d140f-cdfa-4a3b-ba7e-5ff3674f78d6","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"41E4074D6B1DB72D3F7847323917319C1E8DEA70","endDate":"2021-07-07T03:34:00Z","keyId":"843028f2-ab1b-4cbb-a0ff-4b0a88dd8e11","startDate":"2021-04-08T03:34:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["522d140f-cdfa-4a3b-ba7e-5ff3674f78d6","https://identity.azure.net/Ig9t7ghj19aBK2CfcfU+wYA7weL5Lntuh3g8IA0+bIc="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
+ string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"1d8fb725-3405-4a8a-92de-9336c73524fa","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=False","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"],"appDisplayName":null,"appId":"432e6688-28b8-4c3e-874f-5c30b79baa64","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"des1-000005","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"EBF82DD6BD083C732FF7F4986A00EE1942C02A09","endDate":"2021-07-13T09:36:00Z","keyId":"b9f148ad-d947-42ca-9cba-2b32b11cd5bc","startDate":"2021-04-14T09:36:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["432e6688-28b8-4c3e-874f-5c30b79baa64","https://identity.azure.net/3KOg/oqEthAiZVUqALL3kZzHSjHNS/P1dYh0W1loc1I="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
headers:
access-control-allow-origin:
- '*'
@@ -5024,19 +4259,19 @@ interactions:
dataserviceversion:
- 3.0;
date:
- - Thu, 08 Apr 2021 03:40:47 GMT
+ - Wed, 14 Apr 2021 09:42:55 GMT
duration:
- - '2364920'
+ - '3668425'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - msWoWTodNdcHx3TaIqjEN4YkdY2FmEXm5FzV0ZQBgpA=
+ - bwiMwB116ZrEIuwEbfQgIegc1Rx2/DCI0B8wZCFUMrQ=
ocp-aad-session-key:
- - _rXh9axcALcQkyNR4_XK-1xaSljhzKALzKGR-ik0EyvQd5mEj4GqUCAaDhI2-mgEPYYO56p8cPxaeRdnD0gFwEuKO-DSCHjc-YdsQnfgnCjpEsAu3zbuTs9wT_ThF611.s6HmlIoB7cFYEP-W9trcDeHoxGkW2l6osjpAyhaJKQE
+ - IjJYZ9M8AgsYPFPkHiBQbqKe7NPjHxrA-Cu7mgDVQCuN9TMAW3zhjuHGXTajq1HsRegK01GaR-mPHU9b_ODDUCERU05gXpXZL0JJYMxXGBrkqWPGo_aqrw_acsiPL5Dx.0OnOPEBbWA3b7AHL1cMrYvSDZh_LU9kJNjtnOWQpjVc
pragma:
- no-cache
request-id:
- - d89b066f-dc21-4355-938b-373eb2263589
+ - 3b934ca2-349b-4889-a6d3-1a36c5b7e0e0
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -5052,7 +4287,7 @@ interactions:
message: OK
- request:
body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7",
- "principalId": "1f2d9329-31d4-4703-923f-4cdb4889d51f"}}'
+ "principalId": "1d8fb725-3405-4a8a-92de-9336c73524fa"}}'
headers:
Accept:
- application/json
@@ -5072,14 +4307,14 @@ interactions:
- --assignee --role --scope
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview
response:
body:
- string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"1f2d9329-31d4-4703-923f-4cdb4889d51f","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-04-08T03:40:47.9297739Z","updatedOn":"2021-04-08T03:40:48.9933859Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}'
+ string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7","principalId":"1d8fb725-3405-4a8a-92de-9336c73524fa","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003","condition":null,"conditionVersion":null,"createdOn":"2021-04-14T09:42:55.9198198Z","updatedOn":"2021-04-14T09:42:57.6936327Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/vault-000003/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}'
headers:
cache-control:
- no-cache
@@ -5088,7 +4323,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:40:52 GMT
+ - Wed, 14 Apr 2021 09:43:02 GMT
expires:
- '-1'
pragma:
@@ -5100,7 +4335,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1197'
status:
code: 201
message: Created
@@ -5120,14 +4355,14 @@ interactions:
--target-region-encryption --managed-image --replica-count
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -5136,7 +4371,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:41:08 GMT
+ - Wed, 14 Apr 2021 09:43:17 GMT
expires:
- '-1'
pragma:
@@ -5173,9 +4408,9 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--target-region-encryption --managed-image --replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3\",\r\n
@@ -5189,13 +4424,13 @@ interactions:
\ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n ],\r\n
\ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\":
- \"2021-04-08T03:41:13.8858574+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n
+ \"2021-04-14T09:43:23.9271399+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n
\ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n
\ }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -5203,7 +4438,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:41:14 GMT
+ - Wed, 14 Apr 2021 09:43:24 GMT
expires:
- '-1'
pragma:
@@ -5216,7 +4451,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199
+ - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1196
x-ms-ratelimit-remaining-subscription-writes:
- '1197'
status:
@@ -5237,13 +4472,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--target-region-encryption --managed-image --replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5252,7 +4487,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:42:15 GMT
+ - Wed, 14 Apr 2021 09:44:26 GMT
expires:
- '-1'
pragma:
@@ -5269,7 +4504,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4151
+ - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4138
status:
code: 200
message: OK
@@ -5288,13 +4523,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--target-region-encryption --managed-image --replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5303,7 +4538,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:43:16 GMT
+ - Wed, 14 Apr 2021 09:45:27 GMT
expires:
- '-1'
pragma:
@@ -5320,7 +4555,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4150
+ - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4140
status:
code: 200
message: OK
@@ -5339,13 +4574,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--target-region-encryption --managed-image --replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5354,7 +4589,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:44:17 GMT
+ - Wed, 14 Apr 2021 09:46:28 GMT
expires:
- '-1'
pragma:
@@ -5371,7 +4606,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4148
+ - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4138
status:
code: 200
message: OK
@@ -5390,13 +4625,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--target-region-encryption --managed-image --replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5405,7 +4640,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:45:18 GMT
+ - Wed, 14 Apr 2021 09:47:29 GMT
expires:
- '-1'
pragma:
@@ -5422,7 +4657,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4156
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4137
status:
code: 200
message: OK
@@ -5441,13 +4676,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--target-region-encryption --managed-image --replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5456,7 +4691,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:46:18 GMT
+ - Wed, 14 Apr 2021 09:48:30 GMT
expires:
- '-1'
pragma:
@@ -5473,7 +4708,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4135
status:
code: 200
message: OK
@@ -5492,13 +4727,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--target-region-encryption --managed-image --replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
headers:
cache-control:
- no-cache
@@ -5507,7 +4742,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:47:20 GMT
+ - Wed, 14 Apr 2021 09:49:30 GMT
expires:
- '-1'
pragma:
@@ -5524,7 +4759,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4133
status:
code: 200
message: OK
@@ -5543,23 +4778,176 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--target-region-encryption --managed-image --replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:41:13.8702024+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:48:00.042444+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"9d46b7d4-5a99-4fb3-9cef-fcfbe2d996a1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '183'
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 09:50:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4199
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
+ --target-region-encryption --managed-image --replica-count
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 09:51:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4197
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
+ --target-region-encryption --managed-image --replica-count
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Wed, 14 Apr 2021 09:52:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
+ --target-region-encryption --managed-image --replica-count
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/44fb81d0-2c51-4f24-bc02-77c9f77e33dd?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-14T09:43:23.9115137+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:53:24.5174416+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"44fb81d0-2c51-4f24-bc02-77c9f77e33dd\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '184'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:48:20 GMT
+ - Wed, 14 Apr 2021 09:53:34 GMT
expires:
- '-1'
pragma:
@@ -5576,7 +4964,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4150
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4193
status:
code: 200
message: OK
@@ -5595,9 +4983,9 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --target-regions
--target-region-encryption --managed-image --replica-count
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.1.3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3\",\r\n
@@ -5611,7 +4999,7 @@ interactions:
\ \"lun\": 0,\r\n \"diskEncryptionSetId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n ],\r\n
\ \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n \"publishedDate\":
- \"2021-04-08T03:41:13.8858574+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n
+ \"2021-04-14T09:43:23.9271399+00:00\",\r\n \"storageAccountType\": \"Standard_LRS\"\r\n
\ },\r\n \"storageProfile\": {\r\n \"source\": {\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1\"\r\n
\ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
@@ -5627,7 +5015,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:48:21 GMT
+ - Wed, 14 Apr 2021 09:53:34 GMT
expires:
- '-1'
pragma:
@@ -5644,7 +5032,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9990
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9996
status:
code: 200
message: OK
@@ -5663,14 +5051,14 @@ interactions:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-14T09:18:53Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -5679,7 +5067,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:48:22 GMT
+ - Wed, 14 Apr 2021 09:53:34 GMT
expires:
- '-1'
pragma:
@@ -5707,7 +5095,7 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -5727,7 +5115,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:48:22 GMT
+ - Wed, 14 Apr 2021 09:53:36 GMT
expires:
- '-1'
pragma:
@@ -5744,7 +5132,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2997
+ - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2999
status:
code: 200
message: OK
@@ -5762,15 +5150,15 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions?api-version=2020-09-30
response:
body:
string: '{"value":[{"name":"1.1.2","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"West
US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS"},{"name":"East
- US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-04-08T03:07:25.0550396+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East
- US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-08T03:41:13.8858574+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}'
+ US 2","regionalReplicaCount":2,"storageAccountType":"Standard_LRS"}],"replicaCount":2,"excludeFromLatest":false,"publishedDate":"2021-04-14T09:24:47.9357926+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}},{"name":"1.1.3","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3","type":"Microsoft.Compute/galleries/images/versions","location":"eastus2","tags":{},"properties":{"publishingProfile":{"targetRegions":[{"name":"East
+ US 2","regionalReplicaCount":1,"storageAccountType":"Standard_LRS","encryption":{"osDiskImage":{"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"},"dataDiskImages":[{"lun":0,"diskEncryptionSetId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005"}]}}],"replicaCount":1,"excludeFromLatest":false,"publishedDate":"2021-04-14T09:43:23.9271399+00:00","storageAccountType":"Standard_LRS"},"storageProfile":{"source":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/images/managedImage1"},"osDiskImage":{"sizeInGB":30,"hostCaching":"ReadWrite","source":{}},"dataDiskImages":[{"lun":0,"sizeInGB":10,"hostCaching":"None"}]},"provisioningState":"Succeeded"}}]}'
headers:
cache-control:
- no-cache
@@ -5779,7 +5167,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:48:23 GMT
+ - Wed, 14 Apr 2021 09:53:37 GMT
expires:
- '-1'
pragma:
@@ -5791,42 +5179,42 @@ interactions:
x-content-type-options:
- nosniff
x-ms-original-request-ids:
- - 519970d9-e5d3-4f7f-8a99-b2aaaf7692c4
- - a502b0e0-4a2f-445b-800d-ee1a7dd567dc
- - 19a93274-0cc0-412b-93c6-c6af18686812
- - b9f8195d-8361-4e4d-b213-01ab147775f6
- - 0b53a650-2d9b-42ef-bdc2-74ab6cdafa18
- - f5398d4b-9749-4ee0-a981-fce1f20ae4d1
- - a6ba5438-d155-46ba-af4f-b1012ec356b8
- - e7913eaf-df51-4afa-975c-46a8de9a92be
- - 5709efe7-53a0-4605-839f-b6c082ac6bfb
- - ac57e16f-cce1-4cb6-9855-0e33c124e996
- - 9b4d7e46-b2d5-4c35-a08d-0c6f0066588d
- - 08f79910-4984-42e1-aa92-59efb7381950
- - f2fda2e6-8864-4aab-bbff-5fdb4272dc0e
- - da901030-ca23-43c6-9231-8cec83239eb0
- - 720d3604-29af-40ee-aecc-7bdf9a3608a9
- - 539055fc-7b22-48b4-91ed-a266867cf324
- - 2d8231ff-b2d9-452d-9796-3ca0ee4ccc07
- - fd11fe61-e3d6-4329-91be-f681008000c2
- - 3a8c56bc-8214-4645-bd78-cceab4fd806b
- - d091395d-26ea-41cb-84ee-dafd2e128d5d
- - ea374293-083d-495b-9ca6-00a5878c7c89
- - 97e8510d-4f61-4376-b7c8-2c936c044ded
- - 8e95f551-2c04-43f7-a52a-f332ef984087
- - 700308f6-794b-4037-85f6-185ca9bc6fda
- - 3107b5bd-acb0-4644-a2ab-d784d8f76655
- - 9ac7b5f6-8a76-46a6-a632-b8b1b2ca4495
- - 813f2811-5704-4209-82e1-1fd234ef94e0
- - 71d52d10-4582-4292-ba2b-c7eac9066203
- - a0b3e53d-f2c0-49a9-84e1-ab8e1128791b
- - 930e171f-346d-4176-abf9-70c19254b940
- - 6197c690-62de-4a09-a11e-0293f051136b
- - 7f6bdb34-738b-4aec-aa4c-d8aa1b943649
- - b1e7c166-90da-4933-a985-a468aca89cb7
- - 92c08a31-6a1e-470c-a68b-d7b1180b225c
- - 375c473c-4fc2-4210-8cff-30950ad386c6
- - 0d54f349-1848-49f0-95c4-52ef3896df1f
+ - 32f502ea-3b4e-45d9-b566-da82ce17ac82
+ - 1415cf53-45ba-4055-9f68-36b9c7a95529
+ - 5d7fda2b-1c0f-4670-bccb-5c68964d1e82
+ - 4d9d1a39-9930-401e-aa94-93042ff51566
+ - e6c6e27c-5f5c-4e84-ad62-05d3660a5766
+ - 4d946d61-9b9e-4c3f-ac70-494b7a9235c2
+ - 48544d36-8dcb-414c-9ec0-a053dee5611d
+ - b60c2c19-e51e-4b58-b07b-5bda59e62ce3
+ - f3de4243-f5d1-43d0-938e-7826fd438b07
+ - 7d5a727a-52ae-4c2a-8559-eae8387f294f
+ - ebd5cee4-cfbd-447f-bb51-79991bffdc79
+ - 99abb0d6-6767-4f79-8310-4b0019a7049a
+ - 79c13a4e-c854-4aca-b26b-1e71ee0d3517
+ - 534fb42a-e9bf-4dfd-b572-a9fb57f6b323
+ - 583d2ab1-ba49-4725-a30a-adc52dcb7214
+ - 068e1d88-c197-4c14-98a2-ae9d081223cd
+ - 77004088-186a-49a1-ab6b-b9e5cb5b8a8a
+ - b534f879-38a2-43c0-8691-f0b5e60c3713
+ - d0e8f8b4-b54e-4846-b9d2-5d6f56bb19fa
+ - e1d8d70d-52cf-4b4f-b533-2ca69d875cb9
+ - 372f2be9-cd3e-4fcc-b5d2-3ed8d7bc231f
+ - fcf253f3-0432-4da4-85f7-a7b0284e46c7
+ - cde09a2b-aeee-4ad0-ad12-816f62c34f90
+ - 50b65f22-81fe-471c-887a-f35c7a1e8517
+ - a9650c52-113f-4c3d-963b-a21eeca8bed0
+ - 3c564a42-6157-4ed8-b89b-ef47ab24db13
+ - 9d65e386-0d6c-4f4b-8b23-dbda898687e5
+ - 81b842e2-42e3-44a0-95d1-4fbd963b2e5c
+ - a55bd92c-f216-438b-83e6-ef18ce88b061
+ - aac8afcf-5e00-41ae-b8a0-5a71a093dd8f
+ - ea5c222b-6d62-41c9-9894-83b3300af8d4
+ - 559143a7-4e52-4792-b3ec-6992714bf034
+ - d8394bc9-63bb-4bef-a345-63a173f41e4e
+ - bd186ba2-cc18-4443-92e4-1884c99ba0c2
+ - f1666ddd-7b45-4412-bf60-0e506bd97360
+ - cf864102-9015-4bc3-971f-3601d00ec66d
status:
code: 200
message: OK
@@ -5844,21 +5232,21 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
body:
string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n
- \ \"etag\": \"W/\\\"a32105bd-6b12-4c2f-8506-9473ea94291d\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"a20d6c74-5763-4633-b8b5-8e9a0bdc5d03\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"d7c28e3d-8700-45e4-b761-c0f7c4063080\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"8d47a616-873d-4931-baef-9d722cf472a2\",\r\n
\ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n
\ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\":
\"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n
- \ \"etag\": \"W/\\\"a32105bd-6b12-4c2f-8506-9473ea94291d\\\"\",\r\n
+ \ \"etag\": \"W/\\\"a20d6c74-5763-4633-b8b5-8e9a0bdc5d03\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\":
[\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
@@ -5874,7 +5262,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:48:24 GMT
+ - Wed, 14 Apr 2021 09:53:38 GMT
expires:
- '-1'
pragma:
@@ -5891,7 +5279,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9a7bd736-e317-4acb-9443-2c36f443602f
+ - 8f762ab0-6061-4ef5-b5b9-fdba3273dce8
status:
code: 200
message: OK
@@ -5940,17 +5328,17 @@ interactions:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu","name":"vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17498370696575021293","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:48:29.9678023Z","duration":"PT2.8690824S","correlationId":"179c3743-27d7-4455-8852-0158240594bb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","name":"vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15019600982873647752","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-14T09:53:43.6527588Z","duration":"PT2.7346265S","correlationId":"3f53256c-8971-4059-9f29-02d0675acb72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu/operationStatuses/08585837531783789120?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP/operationStatuses/08585832128645594991?api-version=2020-10-01
cache-control:
- no-cache
content-length:
@@ -5958,7 +5346,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:48:31 GMT
+ - Wed, 14 Apr 2021 09:53:44 GMT
expires:
- '-1'
pragma:
@@ -5968,7 +5356,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1194'
+ - '1197'
status:
code: 201
message: Created
@@ -5987,95 +5375,9 @@ interactions:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837531783789120?api-version=2020-10-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:49:02 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vm create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --image --admin-username --generate-ssh-keys --nsg-rule
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837531783789120?api-version=2020-10-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 03:49:33 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vm create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --image --admin-username --generate-ssh-keys --nsg-rule
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837531783789120?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832128645594991?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -6087,7 +5389,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:50:03 GMT
+ - Wed, 14 Apr 2021 09:54:15 GMT
expires:
- '-1'
pragma:
@@ -6116,9 +5418,9 @@ interactions:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837531783789120?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585832128645594991?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -6130,7 +5432,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:50:33 GMT
+ - Wed, 14 Apr 2021 09:54:46 GMT
expires:
- '-1'
pragma:
@@ -6159,21 +5461,21 @@ interactions:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu","name":"vm_deploy_SnJdsVcjUc18F9XflFS220UWOlZT1OUu","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17498370696575021293","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:50:03.6884221Z","duration":"PT1M36.5897022S","correlationId":"179c3743-27d7-4455-8852-0158240594bb","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","name":"vm_deploy_IYJFao13QRM7qJY4vxvgYZjkPDReQoxP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15019600982873647752","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-14T09:54:45.2990873Z","duration":"PT1M4.380955S","correlationId":"3f53256c-8971-4059-9f29-02d0675acb72","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["eastus2"]},{"resourceType":"publicIPAddresses","locations":["eastus2"]},{"resourceType":"networkInterfaces","locations":["eastus2"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["eastus2"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmFromImagePublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmFromImageVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmFromImage"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3384'
+ - '3382'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:50:34 GMT
+ - Wed, 14 Apr 2021 09:54:47 GMT
expires:
- '-1'
pragma:
@@ -6201,31 +5503,31 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage?$expand=instanceView&api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vmFromImage\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vmFromImage\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1aeccb94-6330-48a0-b0da-ad967658128a\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"30accb0b-e180-4d06-b1f8-68c92b6dde4d\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n
\ \"exactVersion\": \"1.1.3\"\r\n },\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_cd38230430474c5fb63bb4b89992190f\",\r\n
+ \ \"osType\": \"Linux\",\r\n \"name\": \"vmFromImage_OsDisk_1_b8910c292e7b447eb8f379406f7f6ce3\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
\ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n
\ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_cd38230430474c5fb63bb4b89992190f\"\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_OsDisk_1_b8910c292e7b447eb8f379406f7f6ce3\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_87543948ccc24454a516c733519996a2\",\r\n
+ [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vmFromImage_lun_0_2_438b413a0573424ca2e2d02b168761a4\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n
\ \"managedDisk\": {\r\n \"diskEncryptionSet\": {\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/diskEncryptionSets/des1-000005\"\r\n
\ },\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_87543948ccc24454a516c733519996a2\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vmFromImage_lun_0_2_438b413a0573424ca2e2d02b168761a4\"\r\n
\ },\r\n \"diskSizeGB\": 10,\r\n \"toBeDetached\":
false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
\"vmFromImage\",\r\n \"adminUsername\": \"clitest1\",\r\n \"linuxConfiguration\":
@@ -6244,20 +5546,20 @@ interactions:
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
\ \"message\": \"Guest Agent is running\",\r\n \"time\":
- \"2021-04-08T03:50:31+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
- []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_cd38230430474c5fb63bb4b89992190f\",\r\n
+ \"2021-04-14T09:54:48+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmFromImage_OsDisk_1_b8910c292e7b447eb8f379406f7f6ce3\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:49:20.6876919+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-14T09:54:12.5010074+00:00\"\r\n
\ }\r\n ]\r\n },\r\n {\r\n \"name\":
- \"vmFromImage_lun_0_2_87543948ccc24454a516c733519996a2\",\r\n \"statuses\":
+ \"vmFromImage_lun_0_2_438b413a0573424ca2e2d02b168761a4\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:49:20.6876919+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-14T09:54:12.5010074+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:50:02.1098147+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-14T09:54:42.1425254+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -6269,7 +5571,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:50:35 GMT
+ - Wed, 14 Apr 2021 09:54:48 GMT
expires:
- '-1'
pragma:
@@ -6286,7 +5588,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31989
+ - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31982
status:
code: 200
message: OK
@@ -6304,18 +5606,18 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vmFromImageVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic\",\r\n
- \ \"etag\": \"W/\\\"21628558-5122-45ad-a196-1f0938265cf4\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"f8056229-150a-4f4e-9222-df37cb00b4cd\\\"\",\r\n \"location\":
\"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"e60d4267-3e80-4760-b674-f0ce6b76d29b\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"7cf0d1da-9a1d-476b-ae71-18442bdb1ec0\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmFromImage\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\",\r\n
- \ \"etag\": \"W/\\\"21628558-5122-45ad-a196-1f0938265cf4\\\"\",\r\n
+ \ \"etag\": \"W/\\\"f8056229-150a-4f4e-9222-df37cb00b4cd\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\":
@@ -6324,8 +5626,8 @@ interactions:
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"hwhmfvyaq5seln1byd12ibrqqa.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-0D-3A-7B-20-3D\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"c0tepdj3q2yutoxptvzcz3dsuc.cx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-00-4B-80\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vmFromImageNSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
@@ -6339,9 +5641,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:50:35 GMT
+ - Wed, 14 Apr 2021 09:54:48 GMT
etag:
- - W/"21628558-5122-45ad-a196-1f0938265cf4"
+ - W/"f8056229-150a-4f4e-9222-df37cb00b4cd"
expires:
- '-1'
pragma:
@@ -6358,7 +5660,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 7babb613-9533-4ff2-ab02-6d6ea3d4a5f9
+ - 343e9b4b-9d5b-4a37-8ffe-8f35b9933269
status:
code: 200
message: OK
@@ -6376,17 +5678,17 @@ interactions:
ParameterSetName:
- -g -n --image --admin-username --generate-ssh-keys --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vmFromImagePublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vmFromImagePublicIP\",\r\n
- \ \"etag\": \"W/\\\"8d246cd8-e7a2-40d9-82b3-f58882a985a0\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"40e9de5d-0e1c-40fe-9b21-6bc4a8b99582\\\"\",\r\n \"location\":
\"eastus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"1eaf9a19-92c1-4e4f-aa82-e4b212bc44d6\",\r\n
- \ \"ipAddress\": \"40.70.20.23\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
- \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"172dc1cc-63d3-4588-b629-389697d7432c\",\r\n
+ \ \"ipAddress\": \"52.247.126.161\",\r\n \"publicIPAddressVersion\":
+ \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vmFromImageVMNic/ipConfigurations/ipconfigvmFromImage\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
@@ -6394,13 +5696,13 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1028'
+ - '1031'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:50:36 GMT
+ - Wed, 14 Apr 2021 09:54:48 GMT
etag:
- - W/"8d246cd8-e7a2-40d9-82b3-f58882a985a0"
+ - W/"40e9de5d-0e1c-40fe-9b21-6bc4a8b99582"
expires:
- '-1'
pragma:
@@ -6417,7 +5719,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 93a064e6-e2f1-4297-a425-fc99f9c6e521
+ - e4f66d6d-6abf-4102-88c5-3754021d923c
status:
code: 200
message: OK
@@ -6437,25 +5739,25 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.2?api-version=2020-09-30
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9f394f9a-73a5-42a1-8fbf-b797387a53e9?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?api-version=2020-09-30
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 03:50:38 GMT
+ - Wed, 14 Apr 2021 09:54:50 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9f394f9a-73a5-42a1-8fbf-b797387a53e9?monitor=true&api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?monitor=true&api-version=2020-09-30
pragma:
- no-cache
server:
@@ -6468,7 +5770,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/DeleteGalleryImageVersion3Min;149,Microsoft.Compute/DeleteGalleryImageVersion30Min;999
x-ms-ratelimit-remaining-subscription-deletes:
- - '14998'
+ - '14999'
status:
code: 202
message: Accepted
@@ -6486,13 +5788,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9f394f9a-73a5-42a1-8fbf-b797387a53e9?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:50:38.6423665+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"9f394f9a-73a5-42a1-8fbf-b797387a53e9\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:54:50.4327129+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"d635873b-ba22-4011-9abf-89015d04f92b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -6501,7 +5803,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:51:39 GMT
+ - Wed, 14 Apr 2021 09:55:50 GMT
expires:
- '-1'
pragma:
@@ -6518,7 +5820,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1199,Microsoft.Compute/GetOperationStatus30Min;4158
+ - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4191
status:
code: 200
message: OK
@@ -6536,14 +5838,14 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/9f394f9a-73a5-42a1-8fbf-b797387a53e9?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/d635873b-ba22-4011-9abf-89015d04f92b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:50:38.6423665+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:52:09.6148924+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"9f394f9a-73a5-42a1-8fbf-b797387a53e9\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:54:50.4327129+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:56:22.3464228+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"d635873b-ba22-4011-9abf-89015d04f92b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -6552,7 +5854,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:52:40 GMT
+ - Wed, 14 Apr 2021 09:56:50 GMT
expires:
- '-1'
pragma:
@@ -6569,7 +5871,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4156
+ - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4189
status:
code: 200
message: OK
@@ -6589,25 +5891,25 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: DELETE
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.1.3?api-version=2020-09-30
response:
body:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/de881410-2008-4751-b312-f291df0fd444?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?api-version=2020-09-30
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 03:52:42 GMT
+ - Wed, 14 Apr 2021 09:56:53 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/de881410-2008-4751-b312-f291df0fd444?monitor=true&api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?monitor=true&api-version=2020-09-30
pragma:
- no-cache
server:
@@ -6620,7 +5922,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/DeleteGalleryImageVersion3Min;148,Microsoft.Compute/DeleteGalleryImageVersion30Min;998
x-ms-ratelimit-remaining-subscription-deletes:
- - '14999'
+ - '14998'
status:
code: 202
message: Accepted
@@ -6638,13 +5940,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/de881410-2008-4751-b312-f291df0fd444?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:52:42.7883046+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"de881410-2008-4751-b312-f291df0fd444\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:56:53.3789038+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84\"\r\n}"
headers:
cache-control:
- no-cache
@@ -6653,7 +5955,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:53:43 GMT
+ - Wed, 14 Apr 2021 09:57:53 GMT
expires:
- '-1'
pragma:
@@ -6670,7 +5972,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4154
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187
status:
code: 200
message: OK
@@ -6688,23 +5990,23 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/de881410-2008-4751-b312-f291df0fd444?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:52:42.7883046+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:54:12.9635869+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"de881410-2008-4751-b312-f291df0fd444\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:56:53.3789038+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:58:26.036809+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"17a00e0e-801b-4b2e-9bc6-e46d1ed5ed84\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '184'
+ - '183'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:54:44 GMT
+ - Wed, 14 Apr 2021 09:58:54 GMT
expires:
- '-1'
pragma:
@@ -6721,7 +6023,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4152
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185
status:
code: 200
message: OK
@@ -6741,7 +6043,7 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -6749,17 +6051,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ffdd8ef-3c0b-4d60-baf4-b6cda656c232?api-version=2020-09-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/083dcd93-2771-44bc-bac7-79a462f05180?api-version=2020-09-30
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 03:55:46 GMT
+ - Wed, 14 Apr 2021 09:59:57 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ffdd8ef-3c0b-4d60-baf4-b6cda656c232?monitor=true&api-version=2020-09-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/083dcd93-2771-44bc-bac7-79a462f05180?monitor=true&api-version=2020-09-30
pragma:
- no-cache
server:
@@ -6772,7 +6074,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/DeleteGalleryImage3Min;49,Microsoft.Compute/DeleteGalleryImage30Min;299
x-ms-ratelimit-remaining-subscription-deletes:
- - '14997'
+ - '14999'
status:
code: 202
message: Accepted
@@ -6790,14 +6092,14 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/5ffdd8ef-3c0b-4d60-baf4-b6cda656c232?api-version=2020-09-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/083dcd93-2771-44bc-bac7-79a462f05180?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:55:47.1548208+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:55:47.8424101+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"5ffdd8ef-3c0b-4d60-baf4-b6cda656c232\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T09:59:57.1360229+00:00\",\r\n \"endTime\":
+ \"2021-04-14T09:59:59.3392075+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"083dcd93-2771-44bc-bac7-79a462f05180\"\r\n}"
headers:
cache-control:
- no-cache
@@ -6806,7 +6108,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:56:18 GMT
+ - Wed, 14 Apr 2021 10:00:27 GMT
expires:
- '-1'
pragma:
@@ -6823,7 +6125,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4158
+ - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4182
status:
code: 200
message: OK
@@ -6843,7 +6145,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: DELETE
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
response:
@@ -6851,17 +6153,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b8bfc580-b833-4a2a-864f-edcc4d7c9b21?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/129594fa-032d-4ec2-9704-d93c91c05902?api-version=2019-12-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 03:56:19 GMT
+ - Wed, 14 Apr 2021 10:00:30 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b8bfc580-b833-4a2a-864f-edcc4d7c9b21?monitor=true&api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/129594fa-032d-4ec2-9704-d93c91c05902?monitor=true&api-version=2019-12-01
pragma:
- no-cache
server:
@@ -6892,14 +6194,14 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/b8bfc580-b833-4a2a-864f-edcc4d7c9b21?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/129594fa-032d-4ec2-9704-d93c91c05902?api-version=2019-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:56:20.6406276+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:56:20.7656373+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"b8bfc580-b833-4a2a-864f-edcc4d7c9b21\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-14T10:00:29.7622682+00:00\",\r\n \"endTime\":
+ \"2021-04-14T10:00:31.0591963+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"129594fa-032d-4ec2-9704-d93c91c05902\"\r\n}"
headers:
cache-control:
- no-cache
@@ -6908,7 +6210,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:56:50 GMT
+ - Wed, 14 Apr 2021 10:01:00 GMT
expires:
- '-1'
pragma:
@@ -6925,7 +6227,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4156
+ - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4180
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml
new file mode 100644
index 00000000000..6f58cfa398f
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_image_version_vhd.yaml
@@ -0,0 +1,1923 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:32:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python-requests/2.22.0
+ method: GET
+ uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
+ response:
+ body:
+ string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n
+ \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\":
+ {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\":
+ \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\":
+ {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n
+ \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n
+ \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\":
+ \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n
+ \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n
+ \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\":
+ \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\":
+ \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\":
+ \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\":
+ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n
+ \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n
+ \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\":
+ \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n
+ \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n
+ \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n
+ \ \"version\": \"latest\"\n }\n },\n \"Windows\":
+ {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
+ \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n
+ \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\":
+ {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
+ \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\":
+ \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\":
+ \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\":
+ \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n
+ \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
+ \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n
+ \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\":
+ {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
+ \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\":
+ \"latest\"\n }\n }\n }\n }\n }\n}\n"
+ headers:
+ accept-ranges:
+ - bytes
+ access-control-allow-origin:
+ - '*'
+ cache-control:
+ - max-age=300
+ connection:
+ - keep-alive
+ content-length:
+ - '2501'
+ content-security-policy:
+ - default-src 'none'; style-src 'unsafe-inline'; sandbox
+ content-type:
+ - text/plain; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:32:43 GMT
+ etag:
+ - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
+ expires:
+ - Fri, 09 Apr 2021 03:37:43 GMT
+ source-age:
+ - '24'
+ strict-transport-security:
+ - max-age=31536000
+ vary:
+ - Authorization,Accept-Encoding
+ via:
+ - 1.1 varnish
+ x-cache:
+ - HIT
+ x-cache-hits:
+ - '1'
+ x-content-type-options:
+ - nosniff
+ x-fastly-request-id:
+ - 1c26184c5d84d4b93dcba7ed7b863a7b456a7229
+ x-frame-options:
+ - deny
+ x-github-request-id:
+ - C62E:4586:4AE6C2:58C97E:606FB659
+ x-served-by:
+ - cache-qpg1282-QPG
+ x-timer:
+ - S1617939164.573393,VS0,VE0
+ x-xss-protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-storage/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:32:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:32:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources":
+ [{"type": "Microsoft.Storage/storageAccounts", "name": "vhdstorage1a626868697e4c",
+ "apiVersion": "2015-06-15", "location": "westus", "tags": {}, "dependsOn": [],
+ "properties": {"accountType": "Premium_LRS"}}, {"name": "vm1VNET", "type": "Microsoft.Network/virtualNetworks",
+ "location": "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {},
+ "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets":
+ [{"name": "vm1Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type":
+ "Microsoft.Network/networkSecurityGroups", "name": "vm1NSG", "apiVersion": "2015-06-15",
+ "location": "westus", "tags": {}, "dependsOn": []}, {"apiVersion": "2018-01-01",
+ "type": "Microsoft.Network/publicIPAddresses", "name": "vm1PublicIP", "location":
+ "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod":
+ null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces",
+ "name": "vm1VMNic", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm1VNET",
+ "Microsoft.Network/networkSecurityGroups/vm1NSG", "Microsoft.Network/publicIpAddresses/vm1PublicIP"],
+ "properties": {"ipConfigurations": [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod":
+ "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}],
+ "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}},
+ {"apiVersion": "2020-12-01", "type": "Microsoft.Compute/virtualMachines", "name":
+ "vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c",
+ "Microsoft.Network/networkInterfaces/vm1VMNic"], "properties": {"hardwareProfile":
+ {"vmSize": "Standard_DS1_v2"}, "networkProfile": {"networkInterfaces": [{"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
+ "storageProfile": {"osDisk": {"createOption": "fromImage", "name": "osdisk_1a62686869",
+ "caching": "ReadWrite", "vhd": {"uri": "https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd"}},
+ "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku": "7.5",
+ "version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername":
+ "fey", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh":
+ {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\n", "path": "/home/fey/.ssh/authorized_keys"}]}}}, "securityProfile":
+ {}}}], "outputs": {}}, "parameters": {}, "mode": "Incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '3744'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","name":"vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8744553287868360303","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T03:32:48.2358949Z","duration":"PT2.1773726S","correlationId":"c17a7c27-81c9-435c-ba0b-9c6492fb3986","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage1a626868697e4c"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD/operationStatuses/08585836677194191191?api-version=2020-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '3166'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:32:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:33:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:33:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:34:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836677194191191?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:34:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Resources/deployments/vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","name":"vm_deploy_U7gWui2V4NaBhgRthSL2wToZkmDbYJxD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8744553287868360303","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T03:34:27.4553531Z","duration":"PT1M41.3968308S","correlationId":"c17a7c27-81c9-435c-ba0b-9c6492fb3986","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"vhdstorage1a626868697e4c"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4454'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:34:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95c07b69-8300-4fc0-b675-d73a492a0fe4\",\r\n
+ \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
+ \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
+ \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
+ \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
+ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
+ \"osdisk_1a62686869\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\":
+ {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\"\r\n
+ \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
+ 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\":
+ {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n
+ \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
+ true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
+ \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
+ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
+ \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
+ \"vm1\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\":
+ [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
+ \ \"message\": \"Guest Agent is running\",\r\n \"time\":
+ \"2021-04-09T03:34:48+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"osdisk_1a62686869\",\r\n
+ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-09T03:33:23.4167434+00:00\"\r\n
+ \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
+ \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-09T03:34:25.9977213+00:00\"\r\n
+ \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
+ \ }\r\n ]\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3580'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:34:53 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;3968,Microsoft.Compute/LowCostGet30Min;31606
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
+ \ \"etag\": \"W/\\\"11477d04-5dab-4a8e-a37b-b23f25da92d2\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"5479f59b-839c-4ff7-be9e-4db8434ce67d\",\r\n
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n
+ \ \"etag\": \"W/\\\"11477d04-5dab-4a8e-a37b-b23f25da92d2\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
+ \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
+ \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
+ [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
+ \"ygsgdt4h3p5uxav342wlmfodag.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-59-5F-DD\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2568'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:34:53 GMT
+ etag:
+ - W/"11477d04-5dab-4a8e-a37b-b23f25da92d2"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - e88b37ff-bc7f-4a37-b16e-b1890b383081
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --use-unmanaged-disk --nsg-rule --generate-ssh-key
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n
+ \ \"etag\": \"W/\\\"6b1eb47d-548c-4da5-b77e-39b7c07d820f\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"41d9c647-161e-4d9e-bda6-aa65db775602\",\r\n
+ \ \"ipAddress\": \"13.93.176.85\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '996'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:34:53 GMT
+ etag:
+ - W/"6b1eb47d-548c-4da5-b77e-39b7c07d820f"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - a518a27b-90de-4343-991a-976ab7eedcc2
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"95c07b69-8300-4fc0-b675-d73a492a0fe4\",\r\n
+ \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
+ \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
+ \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
+ \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
+ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
+ \"osdisk_1a62686869\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\":
+ {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\"\r\n
+ \ },\r\n \"caching\": \"ReadWrite\",\r\n \"diskSizeGB\":
+ 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\":
+ {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"fey\",\r\n
+ \ \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
+ true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
+ \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
+ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
+ \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2311'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:34:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;3967,Microsoft.Compute/LowCostGet30Min;31605
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:34:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus", "tags": {}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '34'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --gallery-name
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
+ \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AQCU7QAV5BVB\"\r\n },\r\n
+ \ \"provisioningState\": \"Creating\"\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/07a6d42c-7c99-4f8c-b194-7998dc1c9116?api-version=2019-12-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '506'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:35:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;297
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/07a6d42c-7c99-4f8c-b194-7998dc1c9116?api-version=2019-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:35:02.0714854+00:00\",\r\n \"endTime\":
+ \"2021-04-09T03:35:02.1808508+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"07a6d42c-7c99-4f8c-b194-7998dc1c9116\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '184'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:35:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4186
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
+ \ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AQCU7QAV5BVB\"\r\n },\r\n
+ \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '507'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:35:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetGallery3Min;335,Microsoft.Compute/GetGallery30Min;2474
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-definition create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --os-type -p -f -s
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:35:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus", "tags": {}, "properties": {"osType": "Linux", "osState":
+ "Generalized", "hyperVGeneration": "V1", "identifier": {"publisher": "publisher1",
+ "offer": "offer1", "sku": "sku1"}, "disallowed": {}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-definition create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '216'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --os-type -p -f -s
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n
+ \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n
+ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\":
+ {\r\n \"publisher\": \"publisher1\",\r\n \"offer\": \"offer1\",\r\n
+ \ \"sku\": \"sku1\"\r\n },\r\n \"provisioningState\": \"Creating\"\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ffb5c40a-d8f6-4d21-86c5-bcd21622b979?api-version=2020-09-30
+ cache-control:
+ - no-cache
+ content-length:
+ - '599'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:35:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;747
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-definition create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --os-type -p -f -s
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/ffb5c40a-d8f6-4d21-86c5-bcd21622b979?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:35:40.7127051+00:00\",\r\n \"endTime\":
+ \"2021-04-09T03:35:40.8220775+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"ffb5c40a-d8f6-4d21-86c5-bcd21622b979\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '184'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:36:11 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4182
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-definition create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --os-type -p -f -s
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"name\": \"image1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1\",\r\n
+ \ \"type\": \"Microsoft.Compute/galleries/images\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"hyperVGeneration\": \"V1\",\r\n
+ \ \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n \"identifier\":
+ {\r\n \"publisher\": \"publisher1\",\r\n \"offer\": \"offer1\",\r\n
+ \ \"sku\": \"sku1\"\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '600'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:36:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2975
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_image_version_vhd000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001","name":"cli_test_gallery_image_version_vhd000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:32:38Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:36:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus", "tags": {}, "properties": {"publishingProfile":
+ {"targetRegions": [{"name": "westus"}], "replicaCount": 1}, "storageProfile":
+ {"osDiskImage": {"source": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c",
+ "uri": "https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd"}}}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '493'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n
+ \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\":
+ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\":
+ {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West
+ US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
+ \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:36:17.0098546+00:00\",\r\n
+ \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n
+ \ \"source\": {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c\"\r\n
+ \ }\r\n }\r\n },\r\n \"provisioningState\": \"Creating\"\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ cache-control:
+ - no-cache
+ content-length:
+ - '1271'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:36:17 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1197
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:37:18 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4178
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:38:19 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4175
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:39:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:40:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:41:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1187,Microsoft.Compute/GetOperationStatus30Min;4165
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:42:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4159
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:43:21 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4153
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:44:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4147
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:45:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1183,Microsoft.Compute/GetOperationStatus30Min;4141
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/8cbab3e0-ff64-40a1-84c7-25827dd157f7?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-09T03:36:16.9942143+00:00\",\r\n \"endTime\":
+ \"2021-04-09T03:45:32.8711971+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"8cbab3e0-ff64-40a1-84c7-25827dd157f7\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '184'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:46:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1185,Microsoft.Compute/GetOperationStatus30Min;4137
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-vhd
+ --os-vhd-storage-account --replica-count
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n
+ \ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\":
+ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"publishingProfile\":
+ {\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West
+ US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
+ \"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-09T03:36:17.0098546+00:00\",\r\n
+ \ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n
+ \ \"source\": {\r\n \"uri\": \"https://vhdstorage1a626868697e4c.blob.core.windows.net/vhds/osdisk_1a62686869.vhd\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_image_version_vhd000001/providers/Microsoft.Storage/storageAccounts/vhdstorage1a626868697e4c\"\r\n
+ \ }\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1272'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 09 Apr 2021 03:46:25 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9985
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml
index aac7f22a66c..a656d1a52da 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_gallery_specialized.yaml
@@ -14,14 +14,14 @@ interactions:
- -g --gallery-name
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:42 GMT
+ - Thu, 15 Apr 2021 06:08:44 GMT
expires:
- '-1'
pragma:
@@ -62,7 +62,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
response:
@@ -70,11 +70,11 @@ interactions:
string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AUZJR5TQ77W2\"\r\n },\r\n
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BFZJM7WCTZ36\"\r\n },\r\n
\ \"provisioningState\": \"Creating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a49c0d57-1cc4-43e4-b07b-e2c3c06b8433?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/20593719-5ea3-422c-a4c2-939c0870f32e?api-version=2019-12-01
cache-control:
- no-cache
content-length:
@@ -82,7 +82,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:50 GMT
+ - Thu, 15 Apr 2021 06:08:53 GMT
expires:
- '-1'
pragma:
@@ -95,9 +95,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298
+ - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1195'
status:
code: 201
message: Created
@@ -115,23 +115,23 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/a49c0d57-1cc4-43e4-b07b-e2c3c06b8433?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/20593719-5ea3-422c-a4c2-939c0870f32e?api-version=2019-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:49.0727515+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:49.18213+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\":
- \"a49c0d57-1cc4-43e4-b07b-e2c3c06b8433\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:08:51.4988018+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:08:52.264514+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"20593719-5ea3-422c-a4c2-939c0870f32e\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '182'
+ - '183'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:20 GMT
+ - Thu, 15 Apr 2021 06:09:23 GMT
expires:
- '-1'
pragma:
@@ -148,7 +148,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196
+ - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198
status:
code: 200
message: OK
@@ -166,7 +166,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
response:
@@ -174,7 +174,7 @@ interactions:
string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_AUZJR5TQ77W2\"\r\n },\r\n
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_BFZJM7WCTZ36\"\r\n },\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
@@ -184,7 +184,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:20 GMT
+ - Thu, 15 Apr 2021 06:09:23 GMT
expires:
- '-1'
pragma:
@@ -201,7 +201,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGallery3Min;341,Microsoft.Compute/GetGallery30Min;2491
+ - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496
status:
code: 200
message: OK
@@ -221,14 +221,14 @@ interactions:
-p -f -s
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -237,7 +237,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:21 GMT
+ - Thu, 15 Apr 2021 06:09:24 GMT
expires:
- '-1'
pragma:
@@ -272,7 +272,7 @@ interactions:
- -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation
-p -f -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -286,7 +286,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4eece08a-0219-49e4-8481-ce5a6f8ba1ea?api-version=2020-09-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/973a7f90-f6ff-44ef-9082-99f21cd0448c?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -294,7 +294,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:29 GMT
+ - Thu, 15 Apr 2021 06:09:34 GMT
expires:
- '-1'
pragma:
@@ -307,7 +307,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748
+ - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749
x-ms-ratelimit-remaining-subscription-writes:
- '1196'
status:
@@ -328,23 +328,23 @@ interactions:
- -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation
-p -f -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/4eece08a-0219-49e4-8481-ce5a6f8ba1ea?api-version=2020-09-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/973a7f90-f6ff-44ef-9082-99f21cd0448c?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:02:27.4805329+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:02:27.574293+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"4eece08a-0219-49e4-8481-ce5a6f8ba1ea\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:09:33.1254138+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:09:33.3285479+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"973a7f90-f6ff-44ef-9082-99f21cd0448c\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '183'
+ - '184'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:59 GMT
+ - Thu, 15 Apr 2021 06:10:04 GMT
expires:
- '-1'
pragma:
@@ -361,7 +361,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192
+ - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196
status:
code: 200
message: OK
@@ -380,7 +380,7 @@ interactions:
- -g --gallery-name --gallery-image-definition --os-type --os-state --hyper-v-generation
-p -f -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -400,7 +400,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:59 GMT
+ - Thu, 15 Apr 2021 06:10:04 GMT
expires:
- '-1'
pragma:
@@ -417,7 +417,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2991
+ - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996
status:
code: 200
message: OK
@@ -436,14 +436,14 @@ interactions:
- -g -n --size-gb
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -452,7 +452,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:01 GMT
+ - Thu, 15 Apr 2021 06:10:05 GMT
expires:
- '-1'
pragma:
@@ -485,7 +485,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -497,7 +497,7 @@ interactions:
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/024e38dc-329c-4326-84b3-d353d44bf50a?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d8cf5420-35cf-42e3-a28d-194f23519d4a?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -505,11 +505,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:06 GMT
+ - Thu, 15 Apr 2021 06:10:14 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/024e38dc-329c-4326-84b3-d353d44bf50a?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d8cf5420-35cf-42e3-a28d-194f23519d4a?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -520,9 +520,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998
+ - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1194'
status:
code: 202
message: Accepted
@@ -540,13 +540,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/024e38dc-329c-4326-84b3-d353d44bf50a?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/d8cf5420-35cf-42e3-a28d-194f23519d4a?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:06.5657487+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:06.6439098+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:10:15.6034725+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n
@@ -555,10 +555,10 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:06.5657487+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\",\r\n \"networkAccessPolicy\":
- \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"024e38dc-329c-4326-84b3-d353d44bf50a\"\r\n}"
+ \ \"uniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\",\r\n \"networkAccessPolicy\":
+ \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"d8cf5420-35cf-42e3-a28d-194f23519d4a\"\r\n}"
headers:
cache-control:
- no-cache
@@ -567,7 +567,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:09 GMT
+ - Thu, 15 Apr 2021 06:10:17 GMT
expires:
- '-1'
pragma:
@@ -584,7 +584,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399996
+ - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999
status:
code: 200
message: OK
@@ -602,7 +602,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -614,9 +614,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:06.5657487+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
@@ -626,7 +626,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:09 GMT
+ - Thu, 15 Apr 2021 06:10:17 GMT
expires:
- '-1'
pragma:
@@ -643,7 +643,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119993
+ - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999
status:
code: 200
message: OK
@@ -662,14 +662,14 @@ interactions:
- -g -n --size-gb
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -678,7 +678,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:09 GMT
+ - Thu, 15 Apr 2021 06:10:18 GMT
expires:
- '-1'
pragma:
@@ -711,7 +711,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01
response:
@@ -723,7 +723,7 @@ interactions:
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/b02ff47e-f403-40d6-a63b-a5c29a95cf46?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e9c0b716-4356-427b-abff-6d7c8db48db1?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -731,11 +731,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:15 GMT
+ - Thu, 15 Apr 2021 06:10:22 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/b02ff47e-f403-40d6-a63b-a5c29a95cf46?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e9c0b716-4356-427b-abff-6d7c8db48db1?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -746,7 +746,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997
+ - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998
x-ms-ratelimit-remaining-subscription-writes:
- '1198'
status:
@@ -766,13 +766,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/b02ff47e-f403-40d6-a63b-a5c29a95cf46?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e9c0b716-4356-427b-abff-6d7c8db48db1?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:16.0355769+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:16.1449916+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:10:23.2600449+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n
@@ -781,10 +781,10 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:16.0355769+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\",\r\n \"networkAccessPolicy\":
- \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"b02ff47e-f403-40d6-a63b-a5c29a95cf46\"\r\n}"
+ \ \"uniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\",\r\n \"networkAccessPolicy\":
+ \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"e9c0b716-4356-427b-abff-6d7c8db48db1\"\r\n}"
headers:
cache-control:
- no-cache
@@ -793,7 +793,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:18 GMT
+ - Thu, 15 Apr 2021 06:10:25 GMT
expires:
- '-1'
pragma:
@@ -810,7 +810,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49994,Microsoft.Compute/GetOperation30Min;399994
+ - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997
status:
code: 200
message: OK
@@ -828,7 +828,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01
response:
@@ -840,9 +840,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:16.0355769+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
@@ -852,7 +852,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:18 GMT
+ - Thu, 15 Apr 2021 06:10:25 GMT
expires:
- '-1'
pragma:
@@ -869,7 +869,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14991,Microsoft.Compute/LowCostGet30Min;119991
+ - Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119997
status:
code: 200
message: OK
@@ -888,14 +888,14 @@ interactions:
- -g -n --size-gb
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -904,7 +904,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:19 GMT
+ - Thu, 15 Apr 2021 06:10:26 GMT
expires:
- '-1'
pragma:
@@ -937,7 +937,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01
response:
@@ -949,7 +949,7 @@ interactions:
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e8c71d1b-90b4-4db6-bca5-9d0e6330fc32?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3c2fcd16-809c-4c4b-812b-dc4fb8dfe108?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -957,11 +957,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:24 GMT
+ - Thu, 15 Apr 2021 06:10:34 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e8c71d1b-90b4-4db6-bca5-9d0e6330fc32?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3c2fcd16-809c-4c4b-812b-dc4fb8dfe108?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -972,7 +972,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996
+ - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997
x-ms-ratelimit-remaining-subscription-writes:
- '1196'
status:
@@ -992,13 +992,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/e8c71d1b-90b4-4db6-bca5-9d0e6330fc32?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3c2fcd16-809c-4c4b-812b-dc4fb8dfe108?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:25.1145197+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:25.2239415+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:34.651055+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:10:34.7916835+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n
@@ -1007,19 +1007,19 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:25.1145197+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:34.651055+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\",\r\n \"networkAccessPolicy\":
- \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"e8c71d1b-90b4-4db6-bca5-9d0e6330fc32\"\r\n}"
+ \ \"uniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\",\r\n \"networkAccessPolicy\":
+ \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"3c2fcd16-809c-4c4b-812b-dc4fb8dfe108\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1112'
+ - '1110'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:26 GMT
+ - Thu, 15 Apr 2021 06:10:36 GMT
expires:
- '-1'
pragma:
@@ -1036,7 +1036,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399992
+ - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995
status:
code: 200
message: OK
@@ -1054,7 +1054,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01
response:
@@ -1066,19 +1066,19 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:25.1145197+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:34.651055+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '887'
+ - '886'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:27 GMT
+ - Thu, 15 Apr 2021 06:10:37 GMT
expires:
- '-1'
pragma:
@@ -1095,7 +1095,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14988,Microsoft.Compute/LowCostGet30Min;119988
+ - Microsoft.Compute/LowCostGet3Min;14993,Microsoft.Compute/LowCostGet30Min;119993
status:
code: 200
message: OK
@@ -1113,9 +1113,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1''
@@ -1129,7 +1129,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:28 GMT
+ - Thu, 15 Apr 2021 06:10:37 GMT
expires:
- '-1'
pragma:
@@ -1157,7 +1157,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -1169,9 +1169,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:06.5657487+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:15.4628389+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
@@ -1181,7 +1181,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:29 GMT
+ - Thu, 15 Apr 2021 06:10:38 GMT
expires:
- '-1'
pragma:
@@ -1198,7 +1198,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14987,Microsoft.Compute/LowCostGet30Min;119987
+ - Microsoft.Compute/LowCostGet3Min;14992,Microsoft.Compute/LowCostGet30Min;119992
status:
code: 200
message: OK
@@ -1217,14 +1217,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1233,7 +1233,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:28 GMT
+ - Thu, 15 Apr 2021 06:10:39 GMT
expires:
- '-1'
pragma:
@@ -1266,20 +1266,20 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\":
{\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\":
{\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8d206329-3f1d-4bfd-9d01-5505a8aac839?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/41d1b1c7-4a2e-4fe5-9e53-0432effeccb0?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1287,11 +1287,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:35 GMT
+ - Thu, 15 Apr 2021 06:10:43 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8d206329-3f1d-4bfd-9d01-5505a8aac839?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/41d1b1c7-4a2e-4fe5-9e53-0432effeccb0?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1304,7 +1304,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1194'
status:
code: 202
message: Accepted
@@ -1322,26 +1322,26 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8d206329-3f1d-4bfd-9d01-5505a8aac839?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/41d1b1c7-4a2e-4fe5-9e53-0432effeccb0?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:36.0528019+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:36.9590908+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:44.6045708+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:10:45.6514905+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:36.0684184+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:44.6201998+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ff738999-5836-4085-9eb5-89769921518c\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2ec4ecc1-bfd7-4511-956c-1b6c1f04bf84\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"8d206329-3f1d-4bfd-9d01-5505a8aac839\"\r\n}"
+ \"41d1b1c7-4a2e-4fe5-9e53-0432effeccb0\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1350,7 +1350,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:37 GMT
+ - Thu, 15 Apr 2021 06:10:47 GMT
expires:
- '-1'
pragma:
@@ -1367,7 +1367,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49990,Microsoft.Compute/GetOperation30Min;399990
+ - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993
status:
code: 200
message: OK
@@ -1385,9 +1385,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -1395,11 +1395,11 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"6d5ec1f2-d32b-49e1-b6aa-609038508f98\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"e889427e-8091-45be-b1ae-38a39e9076f5\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:36.0684184+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:44.6201998+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ff738999-5836-4085-9eb5-89769921518c\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2ec4ecc1-bfd7-4511-956c-1b6c1f04bf84\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1409,7 +1409,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:37 GMT
+ - Thu, 15 Apr 2021 06:10:47 GMT
expires:
- '-1'
pragma:
@@ -1426,7 +1426,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14981,Microsoft.Compute/LowCostGet30Min;119981
+ - Microsoft.Compute/LowCostGet3Min;14990,Microsoft.Compute/LowCostGet30Min;119990
status:
code: 200
message: OK
@@ -1444,9 +1444,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d2?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d2?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d2''
@@ -1460,7 +1460,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:39 GMT
+ - Thu, 15 Apr 2021 06:10:48 GMT
expires:
- '-1'
pragma:
@@ -1488,7 +1488,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01
response:
@@ -1500,9 +1500,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:16.0355769+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:23.1193843+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
@@ -1512,7 +1512,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:40 GMT
+ - Thu, 15 Apr 2021 06:10:48 GMT
expires:
- '-1'
pragma:
@@ -1529,7 +1529,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14980,Microsoft.Compute/LowCostGet30Min;119980
+ - Microsoft.Compute/LowCostGet3Min;14989,Microsoft.Compute/LowCostGet30Min;119989
status:
code: 200
message: OK
@@ -1548,14 +1548,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1564,7 +1564,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:39 GMT
+ - Thu, 15 Apr 2021 06:10:48 GMT
expires:
- '-1'
pragma:
@@ -1597,20 +1597,20 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\":
{\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\":
{\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n
- \ \"sourceUniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8b2efc19-4573-4810-b8b6-e97d025b5607?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3ec45b0f-5457-4376-966f-8abff8ade1cf?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1618,11 +1618,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:45 GMT
+ - Thu, 15 Apr 2021 06:10:57 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8b2efc19-4573-4810-b8b6-e97d025b5607?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3ec45b0f-5457-4376-966f-8abff8ade1cf?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1635,7 +1635,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1197'
status:
code: 202
message: Accepted
@@ -1653,26 +1653,26 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8b2efc19-4573-4810-b8b6-e97d025b5607?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/3ec45b0f-5457-4376-966f-8abff8ade1cf?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:45.8502105+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:46.4908926+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:57.3550577+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:10:58.0425843+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s2\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n
- \ \"sourceUniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:45.8658341+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:57.3550577+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9641e474-e9b9-49e1-93d3-ed1f91b3777e\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a2bfa89c-f5d1-475e-b4d7-eb8f5038501e\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"8b2efc19-4573-4810-b8b6-e97d025b5607\"\r\n}"
+ \"3ec45b0f-5457-4376-966f-8abff8ade1cf\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1681,7 +1681,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:48 GMT
+ - Thu, 15 Apr 2021 06:10:59 GMT
expires:
- '-1'
pragma:
@@ -1698,7 +1698,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399987
+ - Microsoft.Compute/GetOperation3Min;49991,Microsoft.Compute/GetOperation30Min;399991
status:
code: 200
message: OK
@@ -1716,9 +1716,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s2\",\r\n
@@ -1726,11 +1726,11 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d2\",\r\n
- \ \"sourceUniqueId\": \"be546afd-ca8a-4bf3-942c-392987450e41\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"4e354b26-9a12-48d0-810e-78b62c8a1fbe\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:45.8658341+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:57.3550577+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"9641e474-e9b9-49e1-93d3-ed1f91b3777e\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a2bfa89c-f5d1-475e-b4d7-eb8f5038501e\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1740,7 +1740,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:48 GMT
+ - Thu, 15 Apr 2021 06:10:59 GMT
expires:
- '-1'
pragma:
@@ -1757,7 +1757,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14976,Microsoft.Compute/LowCostGet30Min;119976
+ - Microsoft.Compute/LowCostGet3Min;14985,Microsoft.Compute/LowCostGet30Min;119985
status:
code: 200
message: OK
@@ -1775,9 +1775,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d3?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/d3?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d3''
@@ -1791,7 +1791,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:49 GMT
+ - Thu, 15 Apr 2021 06:11:00 GMT
expires:
- '-1'
pragma:
@@ -1819,7 +1819,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01
response:
@@ -1831,19 +1831,19 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:25.1145197+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:34.651055+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '887'
+ - '886'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:49 GMT
+ - Thu, 15 Apr 2021 06:11:00 GMT
expires:
- '-1'
pragma:
@@ -1860,7 +1860,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14975,Microsoft.Compute/LowCostGet30Min;119975
+ - Microsoft.Compute/LowCostGet3Min;14984,Microsoft.Compute/LowCostGet30Min;119984
status:
code: 200
message: OK
@@ -1879,14 +1879,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1895,7 +1895,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:49 GMT
+ - Thu, 15 Apr 2021 06:11:01 GMT
expires:
- '-1'
pragma:
@@ -1928,20 +1928,20 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\":
{\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\":
{\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n
- \ \"sourceUniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/bd4e6896-d0b7-4e4f-84d3-95ee4370832f?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/c6da64f8-0b11-4ef8-818e-330fcbb353da?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1949,11 +1949,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:55 GMT
+ - Thu, 15 Apr 2021 06:11:08 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/bd4e6896-d0b7-4e4f-84d3-95ee4370832f?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/c6da64f8-0b11-4ef8-818e-330fcbb353da?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1964,7 +1964,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;996,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7996
+ - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
@@ -1984,35 +1984,35 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/bd4e6896-d0b7-4e4f-84d3-95ee4370832f?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/c6da64f8-0b11-4ef8-818e-330fcbb353da?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:55.9757392+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:56.5694832+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:08.371103+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:11:09.0117454+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s3\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n
- \ \"sourceUniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:55.9913638+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:08.3867209+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2b429c94-8f55-4941-888e-c1c755d37a71\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f128dcbc-7c38-4c0c-bb92-ea94238c76f4\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"bd4e6896-d0b7-4e4f-84d3-95ee4370832f\"\r\n}"
+ \"c6da64f8-0b11-4ef8-818e-330fcbb353da\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1343'
+ - '1342'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:57 GMT
+ - Thu, 15 Apr 2021 06:11:10 GMT
expires:
- '-1'
pragma:
@@ -2029,7 +2029,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49983,Microsoft.Compute/GetOperation30Min;399983
+ - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399989
status:
code: 200
message: OK
@@ -2047,9 +2047,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s3\",\r\n
@@ -2057,11 +2057,11 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/disks/d3\",\r\n
- \ \"sourceUniqueId\": \"eb2fbfdc-9faf-4702-901b-8d72317387a7\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"c2034da4-d9df-43f0-8bd4-43830e55c4c5\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:55.9913638+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:08.3867209+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2b429c94-8f55-4941-888e-c1c755d37a71\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"f128dcbc-7c38-4c0c-bb92-ea94238c76f4\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -2071,7 +2071,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:58 GMT
+ - Thu, 15 Apr 2021 06:11:10 GMT
expires:
- '-1'
pragma:
@@ -2088,7 +2088,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14968,Microsoft.Compute/LowCostGet30Min;119968
+ - Microsoft.Compute/LowCostGet3Min;14981,Microsoft.Compute/LowCostGet30Min;119981
status:
code: 200
message: OK
@@ -2108,14 +2108,14 @@ interactions:
--data-snapshots --data-snapshot-luns
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_gallery_specialized_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:39Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001","name":"cli_test_gallery_specialized_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2124,7 +2124,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:58 GMT
+ - Thu, 15 Apr 2021 06:11:11 GMT
expires:
- '-1'
pragma:
@@ -2162,9 +2162,9 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
--data-snapshots --data-snapshot-luns
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n
@@ -2173,7 +2173,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East
US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:20.8014564+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n
\ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n
@@ -2186,7 +2186,7 @@ interactions:
\"Creating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -2194,7 +2194,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:07 GMT
+ - Thu, 15 Apr 2021 06:11:22 GMT
expires:
- '-1'
pragma:
@@ -2209,7 +2209,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 201
message: Created
@@ -2228,13 +2228,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
--data-snapshots --data-snapshot-luns
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2243,7 +2243,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:05:08 GMT
+ - Thu, 15 Apr 2021 06:12:22 GMT
expires:
- '-1'
pragma:
@@ -2260,7 +2260,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4190
+ - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4194
status:
code: 200
message: OK
@@ -2279,13 +2279,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
--data-snapshots --data-snapshot-luns
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2294,7 +2294,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:06:09 GMT
+ - Thu, 15 Apr 2021 06:13:23 GMT
expires:
- '-1'
pragma:
@@ -2311,7 +2311,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4188
+ - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4192
status:
code: 200
message: OK
@@ -2330,13 +2330,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
--data-snapshots --data-snapshot-luns
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2345,7 +2345,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:10 GMT
+ - Thu, 15 Apr 2021 06:14:24 GMT
expires:
- '-1'
pragma:
@@ -2362,7 +2362,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187
+ - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4190
status:
code: 200
message: OK
@@ -2381,13 +2381,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
--data-snapshots --data-snapshot-luns
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2396,7 +2396,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:10 GMT
+ - Thu, 15 Apr 2021 06:15:24 GMT
expires:
- '-1'
pragma:
@@ -2413,7 +2413,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189
status:
code: 200
message: OK
@@ -2432,13 +2432,13 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
--data-snapshots --data-snapshot-luns
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2447,7 +2447,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:12 GMT
+ - Thu, 15 Apr 2021 06:16:24 GMT
expires:
- '-1'
pragma:
@@ -2464,7 +2464,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4181
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187
status:
code: 200
message: OK
@@ -2483,23 +2483,23 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
--data-snapshots --data-snapshot-luns
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/c549fc5c-88b8-49f2-b830-f1fb75e05665?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/capsOperations/92fec6a6-0d8a-45d9-99f0-494b442fd458?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:09:42.4980292+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"c549fc5c-88b8-49f2-b830-f1fb75e05665\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:20.7858293+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:17:22.331107+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"92fec6a6-0d8a-45d9-99f0-494b442fd458\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '184'
+ - '183'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:13 GMT
+ - Thu, 15 Apr 2021 06:17:25 GMT
expires:
- '-1'
pragma:
@@ -2516,7 +2516,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4177
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185
status:
code: 200
message: OK
@@ -2535,9 +2535,9 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
--data-snapshots --data-snapshot-luns
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n
@@ -2546,7 +2546,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"East
US 2\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:04:05.3593661+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:20.8014564+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\":
\"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_gallery_specialized_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n
@@ -2566,7 +2566,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:10:13 GMT
+ - Thu, 15 Apr 2021 06:17:26 GMT
expires:
- '-1'
pragma:
@@ -2583,7 +2583,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9995
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml
index fde7c2a3da9..ad828774813 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_image_build_shared_image.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:52:16 GMT
+ - Fri, 09 Apr 2021 03:51:00 GMT
expires:
- '-1'
pragma:
@@ -62,15 +62,15 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1?api-version=2015-08-31-preview
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"677aec5b-31a6-41e0-8d4c-2acccfa88c74","clientId":"98abfd59-3fb3-4a09-ae18-50b7f917b4d9","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=677aec5b-31a6-41e0-8d4c-2acccfa88c74&aid=98abfd59-3fb3-4a09-ae18-50b7f917b4d9"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1","name":"ide1","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"80f6582d-515b-4f3f-8ee4-50b303edcc28","clientId":"b37a0046-e33d-4131-8346-40e4001e71b8","clientSecretUrl":"https://control-westus.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=80f6582d-515b-4f3f-8ee4-50b303edcc28&aid=b37a0046-e33d-4131-8346-40e4001e71b8"}}'
headers:
cache-control:
- no-cache
@@ -79,7 +79,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:52:24 GMT
+ - Fri, 09 Apr 2021 03:51:06 GMT
expires:
- '-1'
location:
@@ -91,7 +91,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 201
message: Created
@@ -109,8 +109,8 @@ interactions:
ParameterSetName:
- --assignee --role --scope
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
@@ -128,7 +128,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:53:09 GMT
+ - Fri, 09 Apr 2021 03:51:52 GMT
expires:
- '-1'
pragma:
@@ -160,15 +160,15 @@ interactions:
ParameterSetName:
- --assignee --role --scope
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-graphrbac/0.60.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
- uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%2798abfd59-3fb3-4a09-ae18-50b7f917b4d9%27%29&api-version=1.6
+ uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/servicePrincipals?$filter=servicePrincipalNames%2Fany%28c%3Ac%20eq%20%27b37a0046-e33d-4131-8346-40e4001e71b8%27%29&api-version=1.6
response:
body:
- string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"677aec5b-31a6-41e0-8d4c-2acccfa88c74","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"98abfd59-3fb3-4a09-ae18-50b7f917b4d9","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"BE6570B8B0D24F572D007DE4A80E0DC19555BDCA","endDate":"2021-05-23T02:47:00Z","keyId":"4d4f67d2-cea5-4bdf-bcde-8d7c938a3428","startDate":"2021-02-22T02:47:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["98abfd59-3fb3-4a09-ae18-50b7f917b4d9","https://identity.azure.net/TLugDfusXCa98Tuyx3e6WiQ8OJQou2o3eG6NJDyMO/0="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
+ string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects","value":[{"odata.type":"Microsoft.DirectoryServices.ServicePrincipal","objectType":"ServicePrincipal","objectId":"80f6582d-515b-4f3f-8ee4-50b303edcc28","deletionTimestamp":null,"accountEnabled":true,"addIns":[],"alternativeNames":["isExplicit=True","/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1"],"appDisplayName":null,"appId":"b37a0046-e33d-4131-8346-40e4001e71b8","applicationTemplateId":null,"appOwnerTenantId":null,"appRoleAssignmentRequired":false,"appRoles":[],"displayName":"ide1","errorUrl":null,"homepage":null,"informationalUrls":null,"keyCredentials":[{"customKeyIdentifier":"DCEBEAAD4534F11AF381099DB56430122562127E","endDate":"2021-07-08T03:46:00Z","keyId":"ceed056a-3619-490d-8841-9a7bf697f2fc","startDate":"2021-04-09T03:46:00Z","type":"AsymmetricX509Cert","usage":"Verify","value":null}],"logoutUrl":null,"notificationEmailAddresses":[],"oauth2Permissions":[],"passwordCredentials":[],"preferredSingleSignOnMode":null,"preferredTokenSigningKeyEndDateTime":null,"preferredTokenSigningKeyThumbprint":null,"publisherName":null,"replyUrls":[],"samlMetadataUrl":null,"samlSingleSignOnSettings":null,"servicePrincipalNames":["b37a0046-e33d-4131-8346-40e4001e71b8","https://identity.azure.net//Ns9DGGfcspLgAl19UXLFwf0xRAXDoQBn6roWl8MiUU="],"servicePrincipalType":"ManagedIdentity","signInAudience":null,"tags":[],"tokenEncryptionKeyId":null}]}'
headers:
access-control-allow-origin:
- '*'
@@ -181,19 +181,19 @@ interactions:
dataserviceversion:
- 3.0;
date:
- - Mon, 22 Feb 2021 02:53:12 GMT
+ - Fri, 09 Apr 2021 03:51:54 GMT
duration:
- - '2866457'
+ - '2697597'
expires:
- '-1'
ocp-aad-diagnostics-server-name:
- - HG673A//CUsaBJjYU7dGqFuMFMGBdHQeLAu9+IIx3hY=
+ - hn4+Y/ki4Au2E6lYATTJU9ebCK1i2JxaIJcTRdfG6tY=
ocp-aad-session-key:
- - 5uEGMmUCgO7mIbpfLzfG7kANB-5a9Ehn6OioxF8TiGPrNMTeTs7F5fsM1z2Fbu5iay2_9I7YmOGK2_cPjXj8ZTfdrbbqzRZ_9dLZnDSR4OF2N3_cVOqkEIa8_v6lddzx.Tv-auhWI7zD2Wjf2AqythzIASrTSjJcx1t4sRzNhdB0
+ - a10vXlvuUO_GNP6ylbf-k1x81FGmdbbiEVHd7UeDGRwJ7MNJRUESOyAEYm-NDCIXFl_XXrd_DjfcphiECy4qTwbLnvoPRMrS3E6cZUS39O5p5UwqZHtNFlhsHbZpg5xq.5_boS1wQq5pYS-SialdRjka1PQAeq_K3M_57rY3vuf8
pragma:
- no-cache
request-id:
- - 365ad9a1-1d98-4b2b-b5e4-8d55c667c560
+ - 2336f8e9-6c1c-48a4-b66f-8d10d26dd3ed
strict-transport-security:
- max-age=31536000; includeSubDomains
x-aspnet-version:
@@ -209,7 +209,7 @@ interactions:
message: OK
- request:
body: '{"properties": {"roleDefinitionId": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c",
- "principalId": "677aec5b-31a6-41e0-8d4c-2acccfa88c74"}}'
+ "principalId": "80f6582d-515b-4f3f-8ee4-50b303edcc28"}}'
headers:
Accept:
- application/json
@@ -228,15 +228,15 @@ interactions:
ParameterSetName:
- --assignee --role --scope
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-authorization/0.61.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001?api-version=2020-04-01-preview
response:
body:
- string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"677aec5b-31a6-41e0-8d4c-2acccfa88c74","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2021-02-22T02:53:12.6906760Z","updatedOn":"2021-02-22T02:53:13.6256891Z","createdBy":null,"updatedBy":"0a592c45-613e-4f1b-9023-7c4414fd53bf","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}'
+ string: '{"properties":{"roleDefinitionId":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c","principalId":"80f6582d-515b-4f3f-8ee4-50b303edcc28","principalType":"ServicePrincipal","scope":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","condition":null,"conditionVersion":null,"createdOn":"2021-04-09T03:51:54.3302607Z","updatedOn":"2021-04-09T03:51:55.8887239Z","createdBy":null,"updatedBy":"181c08fa-7ac8-48a6-a869-342ab74566a4","delegatedManagedIdentityResourceId":null,"description":null},"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Authorization/roleAssignments/88888888-0000-0000-0000-000000000001","type":"Microsoft.Authorization/roleAssignments","name":"88888888-0000-0000-0000-000000000001"}'
headers:
cache-control:
- no-cache
@@ -245,7 +245,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:53:14 GMT
+ - Fri, 09 Apr 2021 03:51:58 GMT
expires:
- '-1'
pragma:
@@ -257,7 +257,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 201
message: Created
@@ -275,15 +275,15 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -292,7 +292,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:53:16 GMT
+ - Fri, 09 Apr 2021 03:51:59 GMT
expires:
- '-1'
pragma:
@@ -324,7 +324,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003?api-version=2019-12-01
response:
@@ -332,11 +332,11 @@ interactions:
string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGVGTV\"\r\n },\r\n \"provisioningState\":
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIG2JMC\"\r\n },\r\n \"provisioningState\":
\"Creating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bff8c096-f95a-491d-81f5-0b33fa0e587e?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/126c5d5f-af54-42d9-92d7-59fe3ebbaf32?api-version=2019-12-01
cache-control:
- no-cache
content-length:
@@ -344,7 +344,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:53:21 GMT
+ - Fri, 09 Apr 2021 03:52:04 GMT
expires:
- '-1'
pragma:
@@ -357,9 +357,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299
+ - Microsoft.Compute/CreateUpdateGallery3Min;47,Microsoft.Compute/CreateUpdateGallery30Min;295
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
status:
code: 201
message: Created
@@ -377,14 +377,14 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bff8c096-f95a-491d-81f5-0b33fa0e587e?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/126c5d5f-af54-42d9-92d7-59fe3ebbaf32?api-version=2019-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-02-22T02:53:20.6055437+00:00\",\r\n \"endTime\":
- \"2021-02-22T02:53:20.8399128+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"bff8c096-f95a-491d-81f5-0b33fa0e587e\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-09T03:52:04.0121892+00:00\",\r\n \"endTime\":
+ \"2021-04-09T03:52:04.1059384+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"126c5d5f-af54-42d9-92d7-59fe3ebbaf32\"\r\n}"
headers:
cache-control:
- no-cache
@@ -393,7 +393,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:53:52 GMT
+ - Fri, 09 Apr 2021 03:52:35 GMT
expires:
- '-1'
pragma:
@@ -410,7 +410,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198
+ - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4108
status:
code: 200
message: OK
@@ -428,7 +428,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003?api-version=2019-12-01
response:
@@ -436,7 +436,7 @@ interactions:
string: "{\r\n \"name\": \"ib_sig000003\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIGVGTV\"\r\n },\r\n \"provisioningState\":
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-IB_SIG2JMC\"\r\n },\r\n \"provisioningState\":
\"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
@@ -446,7 +446,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:53:52 GMT
+ - Fri, 09 Apr 2021 03:52:35 GMT
expires:
- '-1'
pragma:
@@ -463,7 +463,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496
+ - Microsoft.Compute/GetGallery3Min;334,Microsoft.Compute/GetGallery30Min;2452
status:
code: 200
message: OK
@@ -481,15 +481,15 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -498,7 +498,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:53:53 GMT
+ - Fri, 09 Apr 2021 03:52:36 GMT
expires:
- '-1'
pragma:
@@ -532,7 +532,7 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30
response:
@@ -546,7 +546,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/37d5e4bb-4485-4d3f-a3a0-f4b99730d30f?api-version=2020-09-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/30055e7a-dff9-4226-8fa9-6702246de536?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -554,7 +554,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:54:00 GMT
+ - Fri, 09 Apr 2021 03:52:42 GMT
expires:
- '-1'
pragma:
@@ -567,7 +567,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749
+ - Microsoft.Compute/CreateUpdateGalleryImage3Min;147,Microsoft.Compute/CreateUpdateGalleryImage30Min;744
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
@@ -587,23 +587,23 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/37d5e4bb-4485-4d3f-a3a0-f4b99730d30f?api-version=2020-09-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/30055e7a-dff9-4226-8fa9-6702246de536?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-02-22T02:53:59.355777+00:00\",\r\n \"endTime\":
- \"2021-02-22T02:53:59.4495465+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"37d5e4bb-4485-4d3f-a3a0-f4b99730d30f\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-09T03:52:41.8560049+00:00\",\r\n \"endTime\":
+ \"2021-04-09T03:52:41.9653741+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"30055e7a-dff9-4226-8fa9-6702246de536\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '183'
+ - '184'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:54:30 GMT
+ - Fri, 09 Apr 2021 03:53:12 GMT
expires:
- '-1'
pragma:
@@ -620,7 +620,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196
+ - Microsoft.Compute/GetOperationStatus3Min;1188,Microsoft.Compute/GetOperationStatus30Min;4105
status:
code: 200
message: OK
@@ -638,7 +638,7 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30
response:
@@ -658,7 +658,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:54:30 GMT
+ - Fri, 09 Apr 2021 03:53:12 GMT
expires:
- '-1'
pragma:
@@ -675,7 +675,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996
+ - Microsoft.Compute/GetGalleryImage3Min;586,Microsoft.Compute/GetGalleryImage30Min;2947
status:
code: 200
message: OK
@@ -693,15 +693,15 @@ interactions:
ParameterSetName:
- -n -g --scripts --image-source --identity --defer
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -710,7 +710,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:54:32 GMT
+ - Fri, 09 Apr 2021 03:53:13 GMT
expires:
- '-1'
pragma:
@@ -738,8 +738,8 @@ interactions:
ParameterSetName:
- -n -g --scripts --image-source --identity --defer
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
@@ -770,7 +770,9 @@ interactions:
Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan
East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia
Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo,
- Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea
+ Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest","name":"jioindiawest","displayName":"JIO
+ India West","regionalDisplayName":"(Asia Pacific) JIO India West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia
+ Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea
Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia
Pacific","longitude":"126.9780","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada
Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France
@@ -810,7 +812,9 @@ interactions:
Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan
West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
- Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea
+ Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral","name":"jioindiacentral","displayName":"JIO
+ India Central","regionalDisplayName":"(Asia Pacific) JIO India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
+ Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea
South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South
India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
@@ -832,11 +836,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '25532'
+ - '26522'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:54:33 GMT
+ - Fri, 09 Apr 2021 03:53:14 GMT
expires:
- '-1'
pragma:
@@ -865,8 +869,8 @@ interactions:
- -n -g --gallery-name --gallery-image-definition --gallery-replication-regions
--defer
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
@@ -897,7 +901,9 @@ interactions:
Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan
East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia
Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo,
- Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea
+ Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest","name":"jioindiawest","displayName":"JIO
+ India West","regionalDisplayName":"(Asia Pacific) JIO India West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia
+ Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea
Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia
Pacific","longitude":"126.9780","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada
Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France
@@ -937,7 +943,9 @@ interactions:
Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan
West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
- Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea
+ Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral","name":"jioindiacentral","displayName":"JIO
+ India Central","regionalDisplayName":"(Asia Pacific) JIO India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
+ Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea
South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South
India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
@@ -959,11 +967,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '25532'
+ - '26522'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 02:54:34 GMT
+ - Fri, 09 Apr 2021 03:53:15 GMT
expires:
- '-1'
pragma:
@@ -1003,8 +1011,8 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: PUT
@@ -1027,7 +1035,7 @@ interactions:
\"location\": \"westus\",\n \"tags\": {}\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/03dc3c61-9398-48cc-9303-d8a9a0bbdf94?api-version=2020-02-14
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/14031a56-5632-44c6-81f8-6a4a721b3f59?api-version=2020-02-14
cache-control:
- no-cache
content-length:
@@ -1035,7 +1043,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:54:40 GMT
+ - Fri, 09 Apr 2021 03:53:25 GMT
expires:
- '-1'
pragma:
@@ -1065,15 +1073,63 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/14031a56-5632-44c6-81f8-6a4a721b3f59?api-version=2020-02-14
+ response:
+ body:
+ string: "{\n \"name\": \"14031A56-5632-44C6-81F8-6A4A721B3F59\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:53:23.3333333Z\"\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '122'
+ content-type:
+ - application/json
+ date:
+ - Fri, 09 Apr 2021 03:53:56 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - nginx
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image builder update
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/03dc3c61-9398-48cc-9303-d8a9a0bbdf94?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/14031a56-5632-44c6-81f8-6a4a721b3f59?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"03DC3C61-9398-48CC-9303-D8A9A0BBDF94\",\n \"status\":
- \"Succeeded\",\n \"startTime\": \"2021-02-22T02:54:40.1590039Z\",\n \"endTime\":
- \"2021-02-22T02:55:11.5370327Z\"\n}"
+ string: "{\n \"name\": \"14031A56-5632-44C6-81F8-6A4A721B3F59\",\n \"status\":
+ \"Succeeded\",\n \"startTime\": \"2021-04-09T03:53:23.3333333Z\",\n \"endTime\":
+ \"2021-04-09T03:53:58.0031026Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1082,7 +1138,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:55:13 GMT
+ - Fri, 09 Apr 2021 03:54:26 GMT
expires:
- '-1'
pragma:
@@ -1114,8 +1170,8 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01?api-version=2020-02-14
response:
@@ -1132,8 +1188,8 @@ interactions:
\"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\":
\"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n
\ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\":
- {\n \"principalId\": \"677aec5b-31a6-41e0-8d4c-2acccfa88c74\",\n \"clientId\":
- \"98abfd59-3fb3-4a09-ae18-50b7f917b4d9\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n
+ {\n \"principalId\": \"80f6582d-515b-4f3f-8ee4-50b303edcc28\",\n \"clientId\":
+ \"b37a0046-e33d-4131-8346-40e4001e71b8\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01\",\n
\"name\": \"template01\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n
\"location\": \"westus\",\n \"tags\": {}\n}"
headers:
@@ -1144,7 +1200,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:55:13 GMT
+ - Fri, 09 Apr 2021 03:54:27 GMT
expires:
- '-1'
pragma:
@@ -1178,8 +1234,8 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: POST
@@ -1189,17 +1245,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
cache-control:
- no-cache
content-length:
- '0'
date:
- - Mon, 22 Feb 2021 02:55:16 GMT
+ - Fri, 09 Apr 2021 03:54:29 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
pragma:
- no-cache
server:
@@ -1227,14 +1283,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1243,7 +1299,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:55:46 GMT
+ - Fri, 09 Apr 2021 03:55:01 GMT
expires:
- '-1'
pragma:
@@ -1275,14 +1331,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1291,7 +1347,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:56:17 GMT
+ - Fri, 09 Apr 2021 03:55:32 GMT
expires:
- '-1'
pragma:
@@ -1323,14 +1379,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1339,7 +1395,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:56:47 GMT
+ - Fri, 09 Apr 2021 03:56:03 GMT
expires:
- '-1'
pragma:
@@ -1371,14 +1427,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1387,7 +1443,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:57:18 GMT
+ - Fri, 09 Apr 2021 03:56:33 GMT
expires:
- '-1'
pragma:
@@ -1419,14 +1475,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1435,7 +1491,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:57:48 GMT
+ - Fri, 09 Apr 2021 03:57:03 GMT
expires:
- '-1'
pragma:
@@ -1467,14 +1523,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1483,7 +1539,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:58:19 GMT
+ - Fri, 09 Apr 2021 03:57:34 GMT
expires:
- '-1'
pragma:
@@ -1515,14 +1571,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1531,7 +1587,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:58:50 GMT
+ - Fri, 09 Apr 2021 03:58:05 GMT
expires:
- '-1'
pragma:
@@ -1563,14 +1619,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1579,7 +1635,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:59:20 GMT
+ - Fri, 09 Apr 2021 03:58:35 GMT
expires:
- '-1'
pragma:
@@ -1611,14 +1667,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1627,7 +1683,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 02:59:50 GMT
+ - Fri, 09 Apr 2021 03:59:06 GMT
expires:
- '-1'
pragma:
@@ -1659,14 +1715,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1675,7 +1731,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:00:22 GMT
+ - Fri, 09 Apr 2021 03:59:36 GMT
expires:
- '-1'
pragma:
@@ -1707,14 +1763,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1723,7 +1779,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:00:52 GMT
+ - Fri, 09 Apr 2021 04:00:07 GMT
expires:
- '-1'
pragma:
@@ -1755,14 +1811,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1771,7 +1827,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:01:23 GMT
+ - Fri, 09 Apr 2021 04:00:38 GMT
expires:
- '-1'
pragma:
@@ -1803,14 +1859,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1819,7 +1875,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:01:53 GMT
+ - Fri, 09 Apr 2021 04:01:08 GMT
expires:
- '-1'
pragma:
@@ -1851,14 +1907,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1867,7 +1923,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:02:23 GMT
+ - Fri, 09 Apr 2021 04:01:39 GMT
expires:
- '-1'
pragma:
@@ -1899,14 +1955,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1915,7 +1971,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:02:54 GMT
+ - Fri, 09 Apr 2021 04:02:09 GMT
expires:
- '-1'
pragma:
@@ -1947,14 +2003,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -1963,7 +2019,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:03:24 GMT
+ - Fri, 09 Apr 2021 04:02:40 GMT
expires:
- '-1'
pragma:
@@ -1995,14 +2051,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2011,7 +2067,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:03:55 GMT
+ - Fri, 09 Apr 2021 04:03:10 GMT
expires:
- '-1'
pragma:
@@ -2043,14 +2099,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2059,7 +2115,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:04:26 GMT
+ - Fri, 09 Apr 2021 04:03:41 GMT
expires:
- '-1'
pragma:
@@ -2091,14 +2147,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2107,7 +2163,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:04:56 GMT
+ - Fri, 09 Apr 2021 04:04:12 GMT
expires:
- '-1'
pragma:
@@ -2139,14 +2195,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2155,7 +2211,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:05:27 GMT
+ - Fri, 09 Apr 2021 04:04:42 GMT
expires:
- '-1'
pragma:
@@ -2187,14 +2243,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2203,7 +2259,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:05:58 GMT
+ - Fri, 09 Apr 2021 04:05:13 GMT
expires:
- '-1'
pragma:
@@ -2235,14 +2291,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2251,7 +2307,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:06:29 GMT
+ - Fri, 09 Apr 2021 04:05:44 GMT
expires:
- '-1'
pragma:
@@ -2283,14 +2339,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2299,7 +2355,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:06:59 GMT
+ - Fri, 09 Apr 2021 04:06:14 GMT
expires:
- '-1'
pragma:
@@ -2331,14 +2387,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2347,7 +2403,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:07:29 GMT
+ - Fri, 09 Apr 2021 04:06:45 GMT
expires:
- '-1'
pragma:
@@ -2379,14 +2435,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2395,7 +2451,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:07:59 GMT
+ - Fri, 09 Apr 2021 04:07:15 GMT
expires:
- '-1'
pragma:
@@ -2427,14 +2483,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2443,7 +2499,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:08:30 GMT
+ - Fri, 09 Apr 2021 04:07:46 GMT
expires:
- '-1'
pragma:
@@ -2475,14 +2531,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2491,7 +2547,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:09:01 GMT
+ - Fri, 09 Apr 2021 04:08:16 GMT
expires:
- '-1'
pragma:
@@ -2523,14 +2579,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2539,7 +2595,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:09:31 GMT
+ - Fri, 09 Apr 2021 04:08:47 GMT
expires:
- '-1'
pragma:
@@ -2571,14 +2627,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2587,7 +2643,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:10:02 GMT
+ - Fri, 09 Apr 2021 04:09:18 GMT
expires:
- '-1'
pragma:
@@ -2619,14 +2675,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2635,7 +2691,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:10:33 GMT
+ - Fri, 09 Apr 2021 04:09:48 GMT
expires:
- '-1'
pragma:
@@ -2667,14 +2723,14 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"InProgress\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2683,7 +2739,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:11:03 GMT
+ - Fri, 09 Apr 2021 04:10:19 GMT
expires:
- '-1'
pragma:
@@ -2715,15 +2771,159 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/b8f0d58d-8e66-4262-a197-0685996bafb7?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"B8F0D58D-8E66-4262-A197-0685996BAFB7\",\n \"status\":
- \"Succeeded\",\n \"startTime\": \"2021-02-22T02:55:15.7059827Z\",\n \"endTime\":
- \"2021-02-22T03:11:33.9585908Z\"\n}"
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '122'
+ content-type:
+ - application/json
+ date:
+ - Fri, 09 Apr 2021 04:10:50 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - nginx
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image builder run
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
+ response:
+ body:
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '122'
+ content-type:
+ - application/json
+ date:
+ - Fri, 09 Apr 2021 04:11:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - nginx
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image builder run
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
+ response:
+ body:
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"InProgress\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\"\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '122'
+ content-type:
+ - application/json
+ date:
+ - Fri, 09 Apr 2021 04:11:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - nginx
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image builder run
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -n -g
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/cc9e49a7-2a8d-465b-9dea-4c8ad4ec390b?api-version=2020-02-14
+ response:
+ body:
+ string: "{\n \"name\": \"CC9E49A7-2A8D-465B-9DEA-4C8AD4EC390B\",\n \"status\":
+ \"Succeeded\",\n \"startTime\": \"2021-04-09T03:54:30.2466666Z\",\n \"endTime\":
+ \"2021-04-09T04:12:04.2225932Z\"\n}"
headers:
cache-control:
- no-cache
@@ -2732,7 +2932,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:11:34 GMT
+ - Fri, 09 Apr 2021 04:12:21 GMT
expires:
- '-1'
pragma:
@@ -2764,26 +2964,26 @@ interactions:
ParameterSetName:
- -n -g --output-name
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1?api-version=2020-02-14
response:
body:
- string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\n
+ string: "{\n \"properties\": {\n \"artifactId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\n
\ \"provisioningState\": \"Succeeded\"\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template01/runOutputs/image1\",\n
\"name\": \"image1\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates/runOutputs\"\n}"
headers:
cache-control:
- no-cache
content-length:
- - '631'
+ - '632'
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:11:35 GMT
+ - Fri, 09 Apr 2021 04:12:23 GMT
expires:
- '-1'
pragma:
@@ -2815,15 +3015,15 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2832,7 +3032,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:11:35 GMT
+ - Fri, 09 Apr 2021 04:12:24 GMT
expires:
- '-1'
pragma:
@@ -2860,7 +3060,7 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1?api-version=2020-09-30
response:
@@ -2880,7 +3080,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:11:36 GMT
+ - Fri, 09 Apr 2021 04:12:24 GMT
expires:
- '-1'
pragma:
@@ -2897,7 +3097,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImage3Min;599,Microsoft.Compute/GetGalleryImage30Min;2987
+ - Microsoft.Compute/GetGalleryImage3Min;597,Microsoft.Compute/GetGalleryImage30Min;2949
status:
code: 200
message: OK
@@ -2915,21 +3115,21 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687?api-version=2020-09-30
response:
body:
- string: "{\r\n \"name\": \"0.24627.7817\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\r\n
+ string: "{\r\n \"name\": \"0.24687.53687\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\r\n
\ \"type\": \"Microsoft.Compute/galleries/images/versions\",\r\n \"location\":
- \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"af8a9de1-31cf-44c1-8d99-95cb05c2036f\"\r\n
+ \"westus\",\r\n \"tags\": {\r\n \"correlationId\": \"9d394cb3-e16d-4af0-8b9f-5f3e4de03f13\"\r\n
\ },\r\n \"properties\": {\r\n \"publishingProfile\": {\r\n \"targetRegions\":
[\r\n {\r\n \"name\": \"West US\",\r\n \"regionalReplicaCount\":
1,\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n
\ ],\r\n \"replicaCount\": 1,\r\n \"excludeFromLatest\": false,\r\n
- \ \"publishedDate\": \"2021-02-22T03:01:30.8118886+00:00\",\r\n \"storageAccountType\":
+ \ \"publishedDate\": \"2021-04-09T04:02:00.7017234+00:00\",\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n },\r\n \"storageProfile\": {\r\n \"source\":
- {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sigsjytdmnod72md6g3opg6ewauhf3t_53b8f212-d9ac-4702-87a1-0608c76ca391/providers/Microsoft.Compute/images/IntermediateSnapImg_af8a9de1-31cf-44c1-8d99-95cb05c2036f_0\"\r\n
+ {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/IT_img_tmpl_sig4kr6gnzxpbdtvqghtlqptana6mku_85bb2f24-36e2-47c0-83ae-2f55a4223ac3/providers/Microsoft.Compute/images/IntermediateSnapImg_9d394cb3-e16d-4af0-8b9f-5f3e4de03f13_0\"\r\n
\ },\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
\"None\",\r\n \"source\": {}\r\n }\r\n },\r\n \"provisioningState\":
\"Succeeded\"\r\n }\r\n}"
@@ -2937,11 +3137,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1305'
+ - '1307'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:11:37 GMT
+ - Fri, 09 Apr 2021 04:12:25 GMT
expires:
- '-1'
pragma:
@@ -2958,7 +3158,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1994,Microsoft.Compute/GetGalleryImageVersion30Min;9992
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9951
status:
code: 200
message: OK
@@ -2976,7 +3176,7 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
@@ -2990,7 +3190,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:11:37 GMT
+ - Fri, 09 Apr 2021 04:12:25 GMT
expires:
- '-1'
pragma:
@@ -3032,12 +3232,12 @@ interactions:
{"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"}]},
"storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching":
"ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference":
- {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817"}},
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687"}},
"osProfile": {"computerName": "custom-vm", "adminUsername": "azureuser", "linuxConfiguration":
{"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa
AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
- fey@DESKTOP-ARGPJS4\n", "path": "/home/azureuser/.ssh/authorized_keys"}]}}}}}],
- "outputs": {}}, "parameters": {}, "mode": "Incremental"}}'
+ fey@DESKTOP-ARGPJS4\n", "path": "/home/azureuser/.ssh/authorized_keys"}]}}},
+ "securityProfile": {}}}], "outputs": {}}, "parameters": {}, "mode": "Incremental"}}'
headers:
Accept:
- application/json
@@ -3048,24 +3248,24 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3928'
+ - '3952'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","name":"vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17761373393567448849","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-22T03:11:44.1591279Z","duration":"PT2.6770805S","correlationId":"90055d61-e851-41fe-96c9-f31c2511b8c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","name":"vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17660426104562918173","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-09T04:12:30.1410396Z","duration":"PT2.4762032S","correlationId":"f9df6429-66a9-4350-91a4-096b0a6a1164","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3/operationStatuses/08585876433839955877?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t/operationStatuses/08585836653378127949?api-version=2020-10-01
cache-control:
- no-cache
content-length:
@@ -3073,7 +3273,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:11:45 GMT
+ - Fri, 09 Apr 2021 04:12:30 GMT
expires:
- '-1'
pragma:
@@ -3083,7 +3283,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
status:
code: 201
message: Created
@@ -3101,10 +3301,10 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -3116,7 +3316,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:12:15 GMT
+ - Fri, 09 Apr 2021 04:13:03 GMT
expires:
- '-1'
pragma:
@@ -3144,10 +3344,10 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -3159,7 +3359,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:12:45 GMT
+ - Fri, 09 Apr 2021 04:13:33 GMT
expires:
- '-1'
pragma:
@@ -3187,10 +3387,10 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -3202,7 +3402,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:13:17 GMT
+ - Fri, 09 Apr 2021 04:14:03 GMT
expires:
- '-1'
pragma:
@@ -3230,10 +3430,10 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585876433839955877?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585836653378127949?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -3245,7 +3445,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:13:48 GMT
+ - Fri, 09 Apr 2021 04:14:34 GMT
expires:
- '-1'
pragma:
@@ -3273,13 +3473,13 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","name":"vm_deploy_NOmMne4qvIkaESdmoDaNZfVow0F46aR3","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17761373393567448849","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-22T03:13:34.5800845Z","duration":"PT1M53.0980371S","correlationId":"90055d61-e851-41fe-96c9-f31c2511b8c9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Resources/deployments/vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","name":"vm_deploy_GPni5MCclwXzn0o70J3IY0M6d3GYV71t","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17660426104562918173","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-09T04:14:12.6418343Z","duration":"PT1M44.9769979S","correlationId":"f9df6429-66a9-4350-91a4-096b0a6a1164","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"custom-vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"custom-vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"custom-vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"custom-vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/virtualNetworks/custom-vmVNET"}]}}'
headers:
cache-control:
- no-cache
@@ -3288,7 +3488,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:13:49 GMT
+ - Fri, 09 Apr 2021 04:14:34 GMT
expires:
- '-1'
pragma:
@@ -3316,22 +3516,22 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm?$expand=instanceView&api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8c546c62-8482-4684-8b62-2429a2657faa\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0fd32fa3-5677-48c0-8f82-eab0b419652b\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\r\n
- \ \"exactVersion\": \"0.24627.7817\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\r\n
+ \ \"exactVersion\": \"0.24687.53687\"\r\n },\r\n \"osDisk\":
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
[]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n
\ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n
@@ -3348,16 +3548,16 @@ interactions:
\ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n
\ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not
Ready\",\r\n \"message\": \"VM status blob is found but not yet
- populated.\",\r\n \"time\": \"2021-02-22T03:13:49+00:00\"\r\n }\r\n
+ populated.\",\r\n \"time\": \"2021-04-09T04:14:35+00:00\"\r\n }\r\n
\ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\":
- \"custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\",\r\n \"statuses\":
+ \"custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-02-22T03:12:15.6854314+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-09T04:12:49.5876436+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-02-22T03:13:27.279245+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-09T04:14:11.31012+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -3365,11 +3565,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '3923'
+ - '3924'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:13:49 GMT
+ - Fri, 09 Apr 2021 04:14:35 GMT
expires:
- '-1'
pragma:
@@ -3386,7 +3586,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31988
+ - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31786
status:
code: 200
message: OK
@@ -3404,18 +3604,18 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"custom-vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic\",\r\n
- \ \"etag\": \"W/\\\"7c157d75-9804-4805-b070-856eb3780194\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"683e0032-c633-4e67-b3ea-3fe452b7ac0a\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"c0da5358-1e8a-4806-9b87-f58e12a5f4ba\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"bd101088-dd05-4a0c-9457-c54af23e6c04\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigcustom-vm\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\",\r\n
- \ \"etag\": \"W/\\\"7c157d75-9804-4805-b070-856eb3780194\\\"\",\r\n
+ \ \"etag\": \"W/\\\"683e0032-c633-4e67-b3ea-3fe452b7ac0a\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
@@ -3424,8 +3624,8 @@ interactions:
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"t5itqj3irlfedmzjklrmoi5e5h.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-22-48-04-DA-6A\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"ywnzowq3vbievctehfsjkoyaih.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-22-48-09-87-0E\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkSecurityGroups/custom-vmNSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
@@ -3439,9 +3639,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:13:50 GMT
+ - Fri, 09 Apr 2021 04:14:36 GMT
etag:
- - W/"7c157d75-9804-4805-b070-856eb3780194"
+ - W/"683e0032-c633-4e67-b3ea-3fe452b7ac0a"
expires:
- '-1'
pragma:
@@ -3458,7 +3658,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - a2466871-d2be-415a-bab8-9de8ece3c28c
+ - bc496ca8-95b8-4218-8fa2-512dc7cc6677
status:
code: 200
message: OK
@@ -3476,16 +3676,16 @@ interactions:
ParameterSetName:
- --name -g --image --generate-ssh-keys --admin-username
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"custom-vmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/publicIPAddresses/custom-vmPublicIP\",\r\n
- \ \"etag\": \"W/\\\"57a6557d-b111-4118-a158-42d53846647f\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"215005cd-5d3b-4951-acad-e78f615996da\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"bc900f8e-bb12-47de-8485-0be268f38ea6\",\r\n
- \ \"ipAddress\": \"40.78.67.159\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"33456a4e-d1cd-4bd7-aa22-bac620be6fb6\",\r\n
+ \ \"ipAddress\": \"138.91.93.0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
\ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Network/networkInterfaces/custom-vmVMNic/ipConfigurations/ipconfigcustom-vm\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
@@ -3494,13 +3694,13 @@ interactions:
cache-control:
- no-cache
content-length:
- - '1020'
+ - '1019'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:13:50 GMT
+ - Fri, 09 Apr 2021 04:14:36 GMT
etag:
- - W/"57a6557d-b111-4118-a158-42d53846647f"
+ - W/"215005cd-5d3b-4951-acad-e78f615996da"
expires:
- '-1'
pragma:
@@ -3517,7 +3717,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 5301825d-ee7e-49aa-b33c-a313f337af7f
+ - bff01ab2-f6db-4ad1-ab32-7751943cb354
status:
code: 200
message: OK
@@ -3535,22 +3735,22 @@ interactions:
ParameterSetName:
- -n -g
User-Agent:
- - AZURECLI/2.19.1 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"custom-vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/virtualMachines/custom-vm\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8c546c62-8482-4684-8b62-2429a2657faa\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0fd32fa3-5677-48c0-8f82-eab0b419652b\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\r\n
- \ \"exactVersion\": \"0.24627.7817\"\r\n },\r\n \"osDisk\":
- {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\",\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\r\n
+ \ \"exactVersion\": \"0.24687.53687\"\r\n },\r\n \"osDisk\":
+ {\r\n \"osType\": \"Linux\",\r\n \"name\": \"custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_76173987332f49f5b79050ca790efc0b\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/disks/custom-vm_OsDisk_1_c7899724f90846c4aa306af19eee6e32\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
[]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"custom-vm\",\r\n
\ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n
@@ -3567,11 +3767,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '2712'
+ - '2714'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:13:50 GMT
+ - Fri, 09 Apr 2021 04:14:37 GMT
expires:
- '-1'
pragma:
@@ -3588,7 +3788,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31987
+ - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31785
status:
code: 200
message: OK
@@ -3606,15 +3806,15 @@ interactions:
ParameterSetName:
- -n -g --image-source --identity --shared-image-destinations --scripts
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-22T02:52:13Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001","name":"img_tmpl_sig000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-09T03:50:58Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -3623,7 +3823,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:13:51 GMT
+ - Fri, 09 Apr 2021 04:14:37 GMT
expires:
- '-1'
pragma:
@@ -3651,8 +3851,8 @@ interactions:
ParameterSetName:
- -n -g --image-source --identity --shared-image-destinations --scripts
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: GET
@@ -3683,7 +3883,9 @@ interactions:
Kong","pairedRegion":[{"name":"southeastasia","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast","name":"japaneast","displayName":"Japan
East","regionalDisplayName":"(Asia Pacific) Japan East","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia
Pacific","longitude":"139.77","latitude":"35.68","physicalLocation":"Tokyo,
- Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea
+ Saitama","pairedRegion":[{"name":"japanwest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest","name":"jioindiawest","displayName":"JIO
+ India West","regionalDisplayName":"(Asia Pacific) JIO India West","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia
+ Pacific","longitude":"70.05773","latitude":"22.470701","physicalLocation":"Jamnagar","pairedRegion":[{"name":"jioindiacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral","name":"koreacentral","displayName":"Korea
Central","regionalDisplayName":"(Asia Pacific) Korea Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Asia
Pacific","longitude":"126.9780","latitude":"37.5665","physicalLocation":"Seoul","pairedRegion":[{"name":"koreasouth","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral","name":"canadacentral","displayName":"Canada
Central","regionalDisplayName":"(Canada) Canada Central","metadata":{"regionType":"Physical","regionCategory":"Recommended","geographyGroup":"Canada","longitude":"-79.383","latitude":"43.653","physicalLocation":"Toronto","pairedRegion":[{"name":"canadaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral","name":"francecentral","displayName":"France
@@ -3723,7 +3925,9 @@ interactions:
Southeast","regionalDisplayName":"(Asia Pacific) Australia Southeast","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
Pacific","longitude":"144.9631","latitude":"-37.8136","physicalLocation":"Victoria","pairedRegion":[{"name":"australiaeast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest","name":"japanwest","displayName":"Japan
West","regionalDisplayName":"(Asia Pacific) Japan West","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
- Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea
+ Pacific","longitude":"135.5022","latitude":"34.6939","physicalLocation":"Osaka","pairedRegion":[{"name":"japaneast","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiacentral","name":"jioindiacentral","displayName":"JIO
+ India Central","regionalDisplayName":"(Asia Pacific) JIO India Central","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
+ Pacific","longitude":"79.08886","latitude":"21.146633","physicalLocation":"Nagpur","pairedRegion":[{"name":"jioindiawest","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/jioindiawest"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth","name":"koreasouth","displayName":"Korea
South","regionalDisplayName":"(Asia Pacific) Korea South","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
Pacific","longitude":"129.0756","latitude":"35.1796","physicalLocation":"Busan","pairedRegion":[{"name":"koreacentral","id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral"}]}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia","name":"southindia","displayName":"South
India","regionalDisplayName":"(Asia Pacific) South India","metadata":{"regionType":"Physical","regionCategory":"Other","geographyGroup":"Asia
@@ -3745,11 +3949,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '25532'
+ - '26522'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 22 Feb 2021 03:13:51 GMT
+ - Fri, 09 Apr 2021 04:14:38 GMT
expires:
- '-1'
pragma:
@@ -3765,7 +3969,7 @@ interactions:
message: OK
- request:
body: '{"location": "westus", "tags": {}, "properties": {"source": {"type": "SharedImageVersion",
- "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817"},
+ "imageVersionId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687"},
"customize": [{"name": "customizeScript.sh", "type": "Shell", "scriptUri": "https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh"}],
"distribute": [{"runOutputName": "image1", "type": "SharedImage", "galleryImageId":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1",
@@ -3782,21 +3986,21 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1157'
+ - '1158'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -n -g --image-source --identity --shared-image-destinations --scripts
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14
response:
body:
- string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\n
+ string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\n
\ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\":
\"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n
\ \"type\": \"Shell\"\n }\n ],\n \"distribute\": [\n {\n \"artifactTags\":
@@ -3811,15 +4015,15 @@ interactions:
\"location\": \"westus\",\n \"tags\": {}\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e2afd605-7901-4f4c-b558-2563facd75ca?api-version=2020-02-14
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/50fcb967-3528-46aa-a592-9d70b238a58a?api-version=2020-02-14
cache-control:
- no-cache
content-length:
- - '1724'
+ - '1725'
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:14:01 GMT
+ - Fri, 09 Apr 2021 04:14:47 GMT
expires:
- '-1'
pragma:
@@ -3831,7 +4035,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
status:
code: 201
message: Created
@@ -3849,15 +4053,15 @@ interactions:
ParameterSetName:
- -n -g --image-source --identity --shared-image-destinations --scripts
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/e2afd605-7901-4f4c-b558-2563facd75ca?api-version=2020-02-14
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VirtualMachineImages/locations/westus/operations/50fcb967-3528-46aa-a592-9d70b238a58a?api-version=2020-02-14
response:
body:
- string: "{\n \"name\": \"E2AFD605-7901-4F4C-B558-2563FACD75CA\",\n \"status\":
- \"Succeeded\",\n \"startTime\": \"2021-02-22T03:13:59.8035733Z\",\n \"endTime\":
- \"2021-02-22T03:14:32.0555939Z\"\n}"
+ string: "{\n \"name\": \"50FCB967-3528-46AA-A592-9D70B238A58A\",\n \"status\":
+ \"Succeeded\",\n \"startTime\": \"2021-04-09T04:14:46.1566666Z\",\n \"endTime\":
+ \"2021-04-09T04:15:17.1906731Z\"\n}"
headers:
cache-control:
- no-cache
@@ -3866,7 +4070,7 @@ interactions:
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:14:32 GMT
+ - Fri, 09 Apr 2021 04:15:19 GMT
expires:
- '-1'
pragma:
@@ -3898,13 +4102,13 @@ interactions:
ParameterSetName:
- -n -g --image-source --identity --shared-image-destinations --scripts
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3
- azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.19.1
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-imagebuilder/0.4.0 Azure-SDK-For-Python AZURECLI/2.21.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02?api-version=2020-02-14
response:
body:
- string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24627.7817\",\n
+ string: "{\n \"properties\": {\n \"source\": {\n \"imageVersionId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.Compute/galleries/ib_sig000003/images/image1/versions/0.24687.53687\",\n
\ \"type\": \"SharedImageVersion\"\n },\n \"customize\": [\n {\n \"name\":
\"customizeScript.sh\",\n \"scriptUri\": \"https://raw.githubusercontent.com/danielsollondon/azvmimagebuilder/master/quickquickstarts/customizeScript.sh\",\n
\ \"sha256Checksum\": \"2c6ff6902a4a52deee69e8db26d0036a53388651008aaf31795bb20dabd21fd8\",\n
@@ -3915,19 +4119,19 @@ interactions:
\"Succeeded\",\n \"buildTimeoutInMinutes\": 0,\n \"vmProfile\": {\n \"vmSize\":
\"\",\n \"osDiskSizeGB\": 0\n }\n },\n \"identity\": {\n \"type\": \"UserAssigned\",\n
\ \"userAssignedIdentities\": {\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/img_tmpl_sig000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/ide1\":
- {\n \"principalId\": \"677aec5b-31a6-41e0-8d4c-2acccfa88c74\",\n \"clientId\":
- \"98abfd59-3fb3-4a09-ae18-50b7f917b4d9\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n
+ {\n \"principalId\": \"80f6582d-515b-4f3f-8ee4-50b303edcc28\",\n \"clientId\":
+ \"b37a0046-e33d-4131-8346-40e4001e71b8\"\n }\n }\n },\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/img_tmpl_sig000001/providers/Microsoft.VirtualMachineImages/imageTemplates/template02\",\n
\"name\": \"template02\",\n \"type\": \"Microsoft.VirtualMachineImages/imageTemplates\",\n
\"location\": \"westus\",\n \"tags\": {}\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1933'
+ - '1934'
content-type:
- application/json
date:
- - Mon, 22 Feb 2021 03:14:33 GMT
+ - Fri, 09 Apr 2021 04:15:19 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_other_extended_location.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_other_extended_location.yaml
new file mode 100644
index 00000000000..d26f2ab6702
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_other_extended_location.yaml
@@ -0,0 +1,922 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - disk create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_other_extended_location_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001","name":"cli_test_other_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T06:44:32Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:44:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "extendedLocation":
+ {"name": "microsoftlosangeles1", "type": "EdgeZone"}, "properties": {"creationData":
+ {"createOption": "Empty"}, "diskSizeGB": 10}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - disk create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '217'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"d1\",\r\n \"location\": \"westus\",\r\n \"tags\":
+ {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n \"name\":
+ \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n
+ \ },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\":
+ \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n \"provisioningState\":
+ \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c1f8854-7f21-47da-98b9-50d36775ffd6?api-version=2020-12-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '372'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:44:40 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c1f8854-7f21-47da-98b9-50d36775ffd6?monitor=true&api-version=2020-12-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7997
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - disk create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/8c1f8854-7f21-47da-98b9-50d36775ffd6?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-13T06:44:40.8959063+00:00\",\r\n \"endTime\":
+ \"2021-04-13T06:44:41.0365452+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\",\r\n
+ \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n
+ \ \"name\": \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\":
+ \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\":
+ {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
+ \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
+ 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T06:44:40.8959063+00:00\",\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ccdb5a81-75f3-4f21-bf21-85f44a6342e8\",\r\n
+ \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n
+ \ },\r\n \"name\": \"8c1f8854-7f21-47da-98b9-50d36775ffd6\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1203'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:44:42 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399992
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - disk create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\",\r\n
+ \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n
+ \ \"name\": \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\":
+ \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\":
+ {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
+ \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
+ 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T06:44:40.8959063+00:00\",\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ccdb5a81-75f3-4f21-bf21-85f44a6342e8\",\r\n
+ \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '978'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:44:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39961
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - snapshot create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone --sku
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_other_extended_location_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001","name":"cli_test_other_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T06:44:32Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:44:44 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus", "tags": {}, "sku": {"name": "Premium_LRS"}, "extendedLocation":
+ {"name": "microsoftlosangeles1", "type": "EdgeZone"}, "properties": {"creationData":
+ {"createOption": "Empty"}, "diskSizeGB": 10}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - snapshot create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '217'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"extendedLocation\":
+ {\r\n \"type\": \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n
+ \ },\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\":
+ {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
+ \ \"diskSizeGB\": 10,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\":
+ true\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0a1d0569-14ce-45a8-838f-9d475ddba2a8?api-version=2020-12-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '355'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:44:49 GMT
+ expires:
+ - '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0a1d0569-14ce-45a8-838f-9d475ddba2a8?monitor=true&api-version=2020-12-01
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 202
+ message: Accepted
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - snapshot create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0a1d0569-14ce-45a8-838f-9d475ddba2a8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-13T06:44:50.2552367+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"0a1d0569-14ce-45a8-838f-9d475ddba2a8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:44:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399990
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - snapshot create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0a1d0569-14ce-45a8-838f-9d475ddba2a8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-13T06:44:50.2552367+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"0a1d0569-14ce-45a8-838f-9d475ddba2a8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:45:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399988
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - snapshot create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0a1d0569-14ce-45a8-838f-9d475ddba2a8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-13T06:44:50.2552367+00:00\",\r\n \"endTime\":
+ \"2021-04-13T06:45:17.9438212+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"properties\": {\r\n \"output\": {\"name\":\"s1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/snapshots/s1\",\"type\":\"Microsoft.Compute/snapshots\",\"location\":\"westus\",\"tags\":{},\"extendedLocation\":{\"type\":\"EdgeZone\",\"name\":\"microsoftlosangeles1\"},\"sku\":{\"name\":\"Premium_LRS\",\"tier\":\"Premium\"},\"properties\":{\"creationData\":{\"createOption\":\"Empty\"},\"diskSizeGB\":10,\"encryption\":{\"type\":\"EncryptionAtRestWithPlatformKey\"},\"incremental\":false,\"timeCreated\":\"2021-04-13T06:44:50.2552367+00:00\",\"provisioningState\":\"Succeeded\",\"diskState\":\"Unattached\",\"diskSizeBytes\":10737418240,\"uniqueId\":\"51321b6b-1ce5-410b-b88b-7bb115cb9251\",\"networkAccessPolicy\":\"AllowAll\"}}\r\n
+ \ },\r\n \"name\": \"0a1d0569-14ce-45a8-838f-9d475ddba2a8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '976'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:45:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;49992,Microsoft.Compute/GetOperation30Min;399985
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - snapshot create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --size-gb --edge-zone --sku
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
+ \ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n
+ \ \"name\": \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\":
+ \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\":
+ {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
+ \ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T06:44:50.2552367+00:00\",\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"51321b6b-1ce5-410b-b88b-7bb115cb9251\",\r\n
+ \ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '933'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:45:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39956
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --os-type --source --edge-zone
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/virtualMachines/d1?$expand=instanceView&api-version=2020-12-01
+ response:
+ body:
+ string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/virtualMachines/d1''
+ under resource group ''cli_test_other_extended_location_000001'' was not found.
+ For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '283'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:45:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-failure-cause:
+ - gateway
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --os-type --source --edge-zone
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01
+ response:
+ body:
+ string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1''
+ under resource group ''cli_test_other_extended_location_000001'' was not found.
+ For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '277'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:45:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-failure-cause:
+ - gateway
+ status:
+ code: 404
+ message: Not Found
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --os-type --source --edge-zone
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"d1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\",\r\n
+ \ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n
+ \ \"name\": \"microsoftlosangeles1\"\r\n },\r\n \"sku\": {\r\n \"name\":
+ \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\":
+ {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
+ \ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
+ 25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T06:44:40.8959063+00:00\",\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"ccdb5a81-75f3-4f21-bf21-85f44a6342e8\",\r\n
+ \ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '978'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:45:35 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;4988,Microsoft.Compute/LowCostGet30Min;39954
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --os-type --source --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_other_extended_location_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001","name":"cli_test_other_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T06:44:32Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:45:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus", "tags": {}, "extendedLocation": {"name": "microsoftlosangeles1",
+ "type": "EdgeZone"}, "properties": {"storageProfile": {"osDisk": {"managedDisk":
+ {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1"},
+ "osType": "Linux", "osState": "Generalized"}, "dataDisks": []}, "hyperVGeneration":
+ "V1"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '450'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --os-type --source --edge-zone
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/images/image?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"image\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/images/image\",\r\n
+ \ \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\":
+ {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n
+ \ \"managedDisk\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\"\r\n
+ \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\":
+ \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"provisioningState\":
+ \"Creating\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"extendedLocation\":
+ {\r\n \"type\": \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n
+ \ }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d7f90c61-498c-49f9-828c-0120f9007000?api-version=2020-12-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '942'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:45:41 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --os-type --source --edge-zone
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/d7f90c61-498c-49f9-828c-0120f9007000?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-13T06:45:41.096543+00:00\",\r\n \"endTime\":
+ \"2021-04-13T06:45:46.1593677+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"d7f90c61-498c-49f9-828c-0120f9007000\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '183'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:46:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29941
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - image create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --os-type --source --edge-zone
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/images/image?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"image\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/images/image\",\r\n
+ \ \"type\": \"Microsoft.Compute/images\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"storageProfile\": {\r\n \"osDisk\":
+ {\r\n \"osType\": \"Linux\",\r\n \"osState\": \"Generalized\",\r\n
+ \ \"diskSizeGB\": 10,\r\n \"managedDisk\": {\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_other_extended_location_000001/providers/Microsoft.Compute/disks/d1\"\r\n
+ \ },\r\n \"caching\": \"None\",\r\n \"storageAccountType\":
+ \"Standard_LRS\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"hyperVGeneration\": \"V1\"\r\n },\r\n \"extendedLocation\":
+ {\r\n \"type\": \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '970'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Tue, 13 Apr 2021 06:46:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1797
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml
index 59e339cdac6..a9cf2721173 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_specialized_image.yaml
@@ -14,14 +14,14 @@ interactions:
- -g --gallery-name
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:56:58 GMT
+ - Thu, 15 Apr 2021 06:08:43 GMT
expires:
- '-1'
pragma:
@@ -62,7 +62,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
response:
@@ -70,11 +70,11 @@ interactions:
string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_WULI24WD3TMC\"\r\n },\r\n
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OMEP44CCSUXQ\"\r\n },\r\n
\ \"provisioningState\": \"Creating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/03604027-9ee1-4807-8014-566254a5a4c7?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/611edd72-0539-4e8a-aaf6-784e02c248e9?api-version=2019-12-01
cache-control:
- no-cache
content-length:
@@ -82,7 +82,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:57:04 GMT
+ - Thu, 15 Apr 2021 06:08:49 GMT
expires:
- '-1'
pragma:
@@ -97,7 +97,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1199'
status:
code: 201
message: Created
@@ -115,14 +115,14 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/03604027-9ee1-4807-8014-566254a5a4c7?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/611edd72-0539-4e8a-aaf6-784e02c248e9?api-version=2019-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:57:03.4870001+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:57:03.7369544+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"03604027-9ee1-4807-8014-566254a5a4c7\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:08:49.0456211+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:08:49.3268906+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"611edd72-0539-4e8a-aaf6-784e02c248e9\"\r\n}"
headers:
cache-control:
- no-cache
@@ -131,7 +131,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:57:34 GMT
+ - Thu, 15 Apr 2021 06:09:20 GMT
expires:
- '-1'
pragma:
@@ -166,7 +166,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002?api-version=2019-12-01
response:
@@ -174,7 +174,7 @@ interactions:
string: "{\r\n \"name\": \"gallery_000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_WULI24WD3TMC\"\r\n },\r\n
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-GALLERY_OMEP44CCSUXQ\"\r\n },\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
@@ -184,7 +184,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:57:34 GMT
+ - Thu, 15 Apr 2021 06:09:20 GMT
expires:
- '-1'
pragma:
@@ -201,7 +201,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496
+ - Microsoft.Compute/GetGallery3Min;345,Microsoft.Compute/GetGallery30Min;2495
status:
code: 200
message: OK
@@ -220,14 +220,14 @@ interactions:
- -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -236,7 +236,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:57:36 GMT
+ - Thu, 15 Apr 2021 06:09:20 GMT
expires:
- '-1'
pragma:
@@ -270,7 +270,7 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -284,7 +284,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/061fbd08-8853-4a63-937c-e58923d6e46a?api-version=2020-09-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/55ce39ac-998f-4029-8c28-e4096bfaf038?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -292,7 +292,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:57:42 GMT
+ - Thu, 15 Apr 2021 06:09:26 GMT
expires:
- '-1'
pragma:
@@ -307,7 +307,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749
x-ms-ratelimit-remaining-subscription-writes:
- - '1193'
+ - '1194'
status:
code: 201
message: Created
@@ -325,14 +325,14 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/061fbd08-8853-4a63-937c-e58923d6e46a?api-version=2020-09-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/55ce39ac-998f-4029-8c28-e4096bfaf038?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:57:41.3151462+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:57:41.4245225+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"061fbd08-8853-4a63-937c-e58923d6e46a\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:09:25.4831205+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:09:25.5925133+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"55ce39ac-998f-4029-8c28-e4096bfaf038\"\r\n}"
headers:
cache-control:
- no-cache
@@ -341,7 +341,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:58:12 GMT
+ - Thu, 15 Apr 2021 06:09:56 GMT
expires:
- '-1'
pragma:
@@ -358,7 +358,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196
+ - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194
status:
code: 200
message: OK
@@ -376,7 +376,7 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --os-type --os-state -p -f -s
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -396,7 +396,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:58:12 GMT
+ - Thu, 15 Apr 2021 06:09:56 GMT
expires:
- '-1'
pragma:
@@ -432,14 +432,14 @@ interactions:
- -g -n --image --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -448,7 +448,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:58:13 GMT
+ - Thu, 15 Apr 2021 06:09:58 GMT
expires:
- '-1'
pragma:
@@ -527,13 +527,13 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:58:14 GMT
+ - Thu, 15 Apr 2021 06:09:58 GMT
etag:
- W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
expires:
- - Thu, 08 Apr 2021 04:03:14 GMT
+ - Thu, 15 Apr 2021 06:14:58 GMT
source-age:
- - '82'
+ - '39'
strict-transport-security:
- max-age=31536000
vary:
@@ -547,15 +547,15 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 8e064e51362c07520678686212e63f9599ce668b
+ - 1dfab3f58ea52b988e7b345369d04386d9572716
x-frame-options:
- deny
x-github-request-id:
- - 1190:87A4:204620:263068:606E0A67
+ - 6736:0EE9:DD86D:11B8EF:6077A1F9
x-served-by:
- - cache-qpg1275-QPG
+ - cache-qpg1234-QPG
x-timer:
- - S1617854295.724829,VS0,VE0
+ - S1618466999.835566,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -575,7 +575,7 @@ interactions:
ParameterSetName:
- -g -n --image --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
@@ -589,7 +589,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:58:14 GMT
+ - Thu, 15 Apr 2021 06:09:58 GMT
expires:
- '-1'
pragma:
@@ -649,25 +649,25 @@ interactions:
- -g -n --image --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV","name":"vm_deploy_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17804174946670383865","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:58:18.9594623Z","duration":"PT2.3138099S","correlationId":"9f075fbc-c5a9-4f9c-903a-082408992b15","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","name":"vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2530473385198409913","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T06:10:02.1715652Z","duration":"PT1.9299113S","correlationId":"08c6ae5a-ae01-4995-a429-15264755a232","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV/operationStatuses/08585837525888319776?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ/operationStatuses/08585831398852359805?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '2782'
+ - '2781'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:58:20 GMT
+ - Thu, 15 Apr 2021 06:10:03 GMT
expires:
- '-1'
pragma:
@@ -677,7 +677,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
status:
code: 201
message: Created
@@ -696,9 +696,9 @@ interactions:
- -g -n --image --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837525888319776?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831398852359805?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -710,7 +710,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:58:51 GMT
+ - Thu, 15 Apr 2021 06:10:34 GMT
expires:
- '-1'
pragma:
@@ -739,9 +739,9 @@ interactions:
- -g -n --image --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837525888319776?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831398852359805?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -753,7 +753,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:21 GMT
+ - Thu, 15 Apr 2021 06:11:04 GMT
expires:
- '-1'
pragma:
@@ -782,12 +782,12 @@ interactions:
- -g -n --image --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV","name":"vm_deploy_67SH5aO8YRt8nBTSzSdgcT9Er6arAFDV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17804174946670383865","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:58:58.4638984Z","duration":"PT41.818246S","correlationId":"9f075fbc-c5a9-4f9c-903a-082408992b15","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","name":"vm_deploy_eHbmjuPxVov0MCO9KziHZOLn1uhkmqVJ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2530473385198409913","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T06:10:48.9810638Z","duration":"PT48.7394099S","correlationId":"08c6ae5a-ae01-4995-a429-15264755a232","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'
headers:
cache-control:
- no-cache
@@ -796,7 +796,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:22 GMT
+ - Thu, 15 Apr 2021 06:11:04 GMT
expires:
- '-1'
pragma:
@@ -824,23 +824,23 @@ interactions:
ParameterSetName:
- -g -n --image --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3cf92da8-b342-45d0-b3d1-3d19128318bc\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8adb537f-1336-4411-9221-07b30b7fc3a2\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
\"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
\"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
- \"Linux\",\r\n \"name\": \"vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n
+ \"Linux\",\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
[]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n
\ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n
@@ -855,15 +855,15 @@ interactions:
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
\ \"message\": \"Guest Agent is running\",\r\n \"time\":
- \"2021-04-08T03:59:12+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
- []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n
+ \"2021-04-15T06:10:58+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:58:46.5375047+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T06:10:32.2782935+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:58:56.4911178+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T06:10:48.262756+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -871,11 +871,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '3253'
+ - '3252'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:23 GMT
+ - Thu, 15 Apr 2021 06:11:06 GMT
expires:
- '-1'
pragma:
@@ -892,7 +892,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31996
+ - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31938
status:
code: 200
message: OK
@@ -910,18 +910,18 @@ interactions:
ParameterSetName:
- -g -n --image --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
- \ \"etag\": \"W/\\\"38e6c952-1101-4c90-a1ba-8fdbeed04a2d\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"0fca75fb-b14c-414e-bbc5-5f20a76f08f2\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"33ea2110-6967-471f-8a45-787e1dafcbb3\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"7bb0d027-efdf-4fc9-9cac-185a7a7017c6\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n
- \ \"etag\": \"W/\\\"38e6c952-1101-4c90-a1ba-8fdbeed04a2d\\\"\",\r\n
+ \ \"etag\": \"W/\\\"0fca75fb-b14c-414e-bbc5-5f20a76f08f2\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
@@ -930,8 +930,8 @@ interactions:
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"444mcs5h3q4u3kzjcobwmayypb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-22-48-08-4F-39\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"n3fjot0qn0dejfrnhzzduo0wfg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-3A-CC-F9\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
@@ -945,9 +945,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:24 GMT
+ - Thu, 15 Apr 2021 06:11:06 GMT
etag:
- - W/"38e6c952-1101-4c90-a1ba-8fdbeed04a2d"
+ - W/"0fca75fb-b14c-414e-bbc5-5f20a76f08f2"
expires:
- '-1'
pragma:
@@ -964,7 +964,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2baf46ce-b5f6-4f8f-8a6c-207cbef19a3b
+ - 6d18593b-8981-4574-877f-b1db7dcde616
status:
code: 200
message: OK
@@ -982,17 +982,17 @@ interactions:
ParameterSetName:
- -g -n --image --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n
- \ \"etag\": \"W/\\\"7c026b68-c72e-43c9-9d05-e20a87473835\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"69f795e1-10c3-40b5-bdaf-88405ad5b64f\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"3e0a95a0-9463-45df-9e41-5dedd624040c\",\r\n
- \ \"ipAddress\": \"104.45.210.183\",\r\n \"publicIPAddressVersion\":
- \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"fc166731-640c-4a81-9a05-0bda4964528a\",\r\n
+ \ \"ipAddress\": \"13.64.225.134\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
@@ -1000,13 +1000,13 @@ interactions:
cache-control:
- no-cache
content-length:
- - '998'
+ - '997'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:24 GMT
+ - Thu, 15 Apr 2021 06:11:06 GMT
etag:
- - W/"7c026b68-c72e-43c9-9d05-e20a87473835"
+ - W/"69f795e1-10c3-40b5-bdaf-88405ad5b64f"
expires:
- '-1'
pragma:
@@ -1023,7 +1023,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1034c524-6ee1-4221-a3a9-ff78bcaadb61
+ - 038a75c8-9219-49f2-8086-785ebd6f8ae3
status:
code: 200
message: OK
@@ -1041,23 +1041,23 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3cf92da8-b342-45d0-b3d1-3d19128318bc\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8adb537f-1336-4411-9221-07b30b7fc3a2\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
\"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
\"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
- \"Linux\",\r\n \"name\": \"vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n
+ \"Linux\",\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
[]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n
\ \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n
@@ -1075,7 +1075,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:25 GMT
+ - Thu, 15 Apr 2021 06:11:07 GMT
expires:
- '-1'
pragma:
@@ -1092,7 +1092,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31995
+ - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31937
status:
code: 200
message: OK
@@ -1110,12 +1110,12 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_6c762f58cbfe4991b4d15c590773e468?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea?api-version=2020-12-01
response:
body:
- string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_6c762f58cbfe4991b4d15c590773e468''
+ string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea''
under resource group ''cli_test_test_specialized_image_000001'' was not found.
For more details please go to https://aka.ms/ARMResourceNotFoundFix"}}'
headers:
@@ -1126,7 +1126,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:25 GMT
+ - Thu, 15 Apr 2021 06:11:08 GMT
expires:
- '-1'
pragma:
@@ -1154,13 +1154,13 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea?api-version=2020-12-01
response:
body:
- string: "{\r\n \"name\": \"vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n
+ string: "{\r\n \"name\": \"vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n
@@ -1169,9 +1169,9 @@ interactions:
\ \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/canonical/ArtifactTypes/VMImage/Offers/ubuntuserver/Skus/18.04-lts/Versions/18.04.202103250\"\r\n
\ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\":
120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\":
- \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:58:45.4414501+00:00\",\r\n
+ \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:10:31.2529896+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n
- \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"6c762f58-cbfe-4991-b4d1-5c590773e468\",\r\n
+ \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1181,7 +1181,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:25 GMT
+ - Thu, 15 Apr 2021 06:11:08 GMT
expires:
- '-1'
pragma:
@@ -1198,7 +1198,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4998,Microsoft.Compute/LowCostGet30Min;39988
+ - Microsoft.Compute/LowCostGet3Min;4966,Microsoft.Compute/LowCostGet30Min;39940
status:
code: 200
message: OK
@@ -1217,14 +1217,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1233,7 +1233,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:26 GMT
+ - Thu, 15 Apr 2021 06:11:09 GMT
expires:
- '-1'
pragma:
@@ -1249,7 +1249,7 @@ interactions:
message: OK
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties":
- {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468"}}}'
+ {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea"}}}'
headers:
Accept:
- application/json
@@ -1266,21 +1266,21 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n
\ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\":
\"Linux\",\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n
- \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n
- \ \"sourceUniqueId\": \"6c762f58-cbfe-4991-b4d1-5c590773e468\"\r\n },\r\n
+ \ \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n
+ \ \"sourceUniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50b92093-2339-4a71-9eec-4a8fac267857?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1288,11 +1288,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:30 GMT
+ - Thu, 15 Apr 2021 06:11:11 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50b92093-2339-4a71-9eec-4a8fac267857?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1303,9 +1303,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999
+ - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1196'
status:
code: 202
message: Accepted
@@ -1323,27 +1323,27 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/50b92093-2339-4a71-9eec-4a8fac267857?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:31.1133052+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:59:32.097683+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:12.4092054+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:11:13.190462+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n
\ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n
- \ \"sourceUniqueId\": \"6c762f58-cbfe-4991-b4d1-5c590773e468\"\r\n },\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n
+ \ \"sourceUniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\"\r\n },\r\n
\ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:59:31.1133052+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:12.4092054+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"c34f7e41-2bf6-47dc-a138-12d87757a21d\",\r\n
+ \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"95904701-c258-4f21-b788-eaea47224ab0\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"50b92093-2339-4a71-9eec-4a8fac267857\"\r\n}"
+ \"6ad4c34c-a484-450a-8f8d-2cdc1aba7dcc\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1352,7 +1352,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:33 GMT
+ - Thu, 15 Apr 2021 06:11:13 GMT
expires:
- '-1'
pragma:
@@ -1369,7 +1369,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399997
+ - Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399955
status:
code: 200
message: OK
@@ -1387,9 +1387,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -1397,12 +1397,12 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n
\ \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_6c762f58cbfe4991b4d15c590773e468\",\r\n
- \ \"sourceUniqueId\": \"6c762f58-cbfe-4991-b4d1-5c590773e468\"\r\n },\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm1_disk1_ab7179a1f5a74d9ebea7b85f403bebea\",\r\n
+ \ \"sourceUniqueId\": \"ab7179a1-f5a7-4d9e-bea7-b85f403bebea\"\r\n },\r\n
\ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:59:31.1133052+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:11:12.4092054+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"c34f7e41-2bf6-47dc-a138-12d87757a21d\",\r\n
+ \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"95904701-c258-4f21-b788-eaea47224ab0\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1412,7 +1412,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:33 GMT
+ - Thu, 15 Apr 2021 06:11:14 GMT
expires:
- '-1'
pragma:
@@ -1429,7 +1429,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39987
+ - Microsoft.Compute/LowCostGet3Min;4959,Microsoft.Compute/LowCostGet30Min;39933
status:
code: 200
message: OK
@@ -1448,14 +1448,14 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1464,7 +1464,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:33 GMT
+ - Thu, 15 Apr 2021 06:11:15 GMT
expires:
- '-1'
pragma:
@@ -1498,9 +1498,9 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n
@@ -1509,7 +1509,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West
US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n
\ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n
@@ -1517,7 +1517,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -1525,7 +1525,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:59:40 GMT
+ - Thu, 15 Apr 2021 06:11:22 GMT
expires:
- '-1'
pragma:
@@ -1538,9 +1538,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199
+ - Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;373,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1198
x-ms-ratelimit-remaining-subscription-writes:
- - '1191'
+ - '1195'
status:
code: 201
message: Created
@@ -1558,13 +1558,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1573,7 +1573,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:00:41 GMT
+ - Thu, 15 Apr 2021 06:12:22 GMT
expires:
- '-1'
pragma:
@@ -1590,7 +1590,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4195
+ - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4189
status:
code: 200
message: OK
@@ -1608,13 +1608,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1623,7 +1623,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:01:41 GMT
+ - Thu, 15 Apr 2021 06:13:23 GMT
expires:
- '-1'
pragma:
@@ -1640,7 +1640,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1197,Microsoft.Compute/GetOperationStatus30Min;4193
+ - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4185
status:
code: 200
message: OK
@@ -1658,13 +1658,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1673,7 +1673,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:02:43 GMT
+ - Thu, 15 Apr 2021 06:14:24 GMT
expires:
- '-1'
pragma:
@@ -1690,7 +1690,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4181
status:
code: 200
message: OK
@@ -1708,13 +1708,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1723,7 +1723,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:03:43 GMT
+ - Thu, 15 Apr 2021 06:15:24 GMT
expires:
- '-1'
pragma:
@@ -1740,7 +1740,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4177
status:
code: 200
message: OK
@@ -1758,13 +1758,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1773,7 +1773,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:04:44 GMT
+ - Thu, 15 Apr 2021 06:16:25 GMT
expires:
- '-1'
pragma:
@@ -1790,7 +1790,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4173
status:
code: 200
message: OK
@@ -1808,13 +1808,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1823,7 +1823,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:05:44 GMT
+ - Thu, 15 Apr 2021 06:17:26 GMT
expires:
- '-1'
pragma:
@@ -1840,7 +1840,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4169
status:
code: 200
message: OK
@@ -1858,13 +1858,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1873,7 +1873,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:06:46 GMT
+ - Thu, 15 Apr 2021 06:18:27 GMT
expires:
- '-1'
pragma:
@@ -1890,7 +1890,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4183
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4165
status:
code: 200
message: OK
@@ -1908,13 +1908,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1923,7 +1923,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:07:46 GMT
+ - Thu, 15 Apr 2021 06:19:27 GMT
expires:
- '-1'
pragma:
@@ -1940,7 +1940,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4181
+ - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4163
status:
code: 200
message: OK
@@ -1958,13 +1958,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1973,7 +1973,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:08:47 GMT
+ - Thu, 15 Apr 2021 06:20:28 GMT
expires:
- '-1'
pragma:
@@ -1990,7 +1990,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4179
+ - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4160
status:
code: 200
message: OK
@@ -2008,14 +2008,14 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/846da4d6-af74-4d8d-932e-40ad94ab59c1?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/bcb32610-2192-40df-aa56-95ff681b398b?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n \"endTime\":
- \"2021-04-08T04:09:26.0357963+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"846da4d6-af74-4d8d-932e-40ad94ab59c1\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:11:21.2800963+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:20:44.6087613+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"bcb32610-2192-40df-aa56-95ff681b398b\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2024,7 +2024,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:09:48 GMT
+ - Thu, 15 Apr 2021 06:21:29 GMT
expires:
- '-1'
pragma:
@@ -2041,7 +2041,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4177
+ - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4157
status:
code: 200
message: OK
@@ -2059,9 +2059,9 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n
@@ -2070,7 +2070,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West
US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
\"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n
@@ -2084,7 +2084,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:09:48 GMT
+ - Thu, 15 Apr 2021 06:21:29 GMT
expires:
- '-1'
pragma:
@@ -2101,7 +2101,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1996,Microsoft.Compute/GetGalleryImageVersion30Min;9989
status:
code: 200
message: OK
@@ -2120,14 +2120,14 @@ interactions:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2136,7 +2136,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:09:49 GMT
+ - Thu, 15 Apr 2021 06:21:30 GMT
expires:
- '-1'
pragma:
@@ -2164,7 +2164,7 @@ interactions:
ParameterSetName:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -2184,7 +2184,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:09:50 GMT
+ - Thu, 15 Apr 2021 06:21:31 GMT
expires:
- '-1'
pragma:
@@ -2201,7 +2201,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImage3Min;594,Microsoft.Compute/GetGalleryImage30Min;2989
+ - Microsoft.Compute/GetGalleryImage3Min;591,Microsoft.Compute/GetGalleryImage30Min;2981
status:
code: 200
message: OK
@@ -2219,9 +2219,9 @@ interactions:
ParameterSetName:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n
@@ -2230,7 +2230,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West
US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
\"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n
@@ -2244,7 +2244,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:09:50 GMT
+ - Thu, 15 Apr 2021 06:21:31 GMT
expires:
- '-1'
pragma:
@@ -2261,7 +2261,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1998,Microsoft.Compute/GetGalleryImageVersion30Min;9996
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9988
status:
code: 200
message: OK
@@ -2279,21 +2279,21 @@ interactions:
ParameterSetName:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
body:
string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n
- \ \"etag\": \"W/\\\"c3cf21dc-5611-49ed-adee-43052617c0a6\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"095dd961-4865-46ce-abd3-f6d68fb12ca9\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"4bc1bcf7-ece7-4e3d-ab29-138366031879\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"4f974a6f-6e50-4486-962d-3e723a3b562e\",\r\n
\ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n
\ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\":
\"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n
- \ \"etag\": \"W/\\\"c3cf21dc-5611-49ed-adee-43052617c0a6\\\"\",\r\n
+ \ \"etag\": \"W/\\\"095dd961-4865-46ce-abd3-f6d68fb12ca9\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\":
[\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
@@ -2309,7 +2309,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:09:51 GMT
+ - Thu, 15 Apr 2021 06:21:31 GMT
expires:
- '-1'
pragma:
@@ -2326,7 +2326,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8dcd573c-c852-4cbd-9b46-7e5c74e4cecb
+ - 9789923a-ed10-45ee-9d1b-e1b2e8b1fa14
status:
code: 200
message: OK
@@ -2371,25 +2371,25 @@ interactions:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_6UQecWzbDivjA2QJWnbMc973fWwffnsw","name":"vm_deploy_6UQecWzbDivjA2QJWnbMc973fWwffnsw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8631533856447706461","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T04:09:55.7438233Z","duration":"PT2.1896417S","correlationId":"62efd6f8-b9f8-44fb-87f5-b0f16670800b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","name":"vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"48601262867817595","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T06:21:36.4092441Z","duration":"PT2.2874293S","correlationId":"51d42868-0531-410c-a7e8-fb9b5bb4cade","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_6UQecWzbDivjA2QJWnbMc973fWwffnsw/operationStatuses/08585837518919234482?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD/operationStatuses/08585831391913558231?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '2443'
+ - '2441'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:09:56 GMT
+ - Thu, 15 Apr 2021 06:21:37 GMT
expires:
- '-1'
pragma:
@@ -2399,7 +2399,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1197'
status:
code: 201
message: Created
@@ -2418,9 +2418,9 @@ interactions:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837518919234482?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391913558231?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -2432,7 +2432,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:10:27 GMT
+ - Thu, 15 Apr 2021 06:22:07 GMT
expires:
- '-1'
pragma:
@@ -2461,9 +2461,9 @@ interactions:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837518919234482?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391913558231?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -2475,7 +2475,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:10:57 GMT
+ - Thu, 15 Apr 2021 06:22:38 GMT
expires:
- '-1'
pragma:
@@ -2504,21 +2504,21 @@ interactions:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_6UQecWzbDivjA2QJWnbMc973fWwffnsw","name":"vm_deploy_6UQecWzbDivjA2QJWnbMc973fWwffnsw","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8631533856447706461","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T04:10:38.027211Z","duration":"PT44.4730294S","correlationId":"62efd6f8-b9f8-44fb-87f5-b0f16670800b","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","name":"vm_deploy_qmXPCIBFCB9RHN1ovxgofPHRpUqzPCTD","type":"Microsoft.Resources/deployments","properties":{"templateHash":"48601262867817595","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T06:22:19.0969325Z","duration":"PT44.9751177S","correlationId":"51d42868-0531-410c-a7e8-fb9b5bb4cade","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3303'
+ - '3302'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:10:57 GMT
+ - Thu, 15 Apr 2021 06:22:39 GMT
expires:
- '-1'
pragma:
@@ -2546,22 +2546,22 @@ interactions:
ParameterSetName:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9e04338c-1998-4618-8945-7efe3fdfb1d5\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"69a3ea5c-7ae3-40f1-a078-1354d0fbcbce\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n
\ \"exactVersion\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_649191500ba244a4b71599e9d5b8f6e8\",\r\n
+ \ \"osType\": \"Linux\",\r\n \"name\": \"vm2_OsDisk_1_ff1af6febad84fd48d24233f02f6ada6\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_649191500ba244a4b71599e9d5b8f6e8\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_ff1af6febad84fd48d24233f02f6ada6\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
[]\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\"}]},\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\":
@@ -2569,18 +2569,18 @@ interactions:
\ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n
\ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not
Ready\",\r\n \"message\": \"VM status blob is found but not yet
- populated.\",\r\n \"time\": \"2021-04-08T04:10:59+00:00\"\r\n }\r\n
+ populated.\",\r\n \"time\": \"2021-04-15T06:22:40+00:00\"\r\n }\r\n
\ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\":
- \"vm2_OsDisk_1_649191500ba244a4b71599e9d5b8f6e8\",\r\n \"statuses\":
+ \"vm2_OsDisk_1_ff1af6febad84fd48d24233f02f6ada6\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T04:10:27.0856494+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T06:21:56.248575+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"OSState/specialized\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM specialized\"\r\n
\ },\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T04:10:34.914094+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T06:22:15.9674472+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -2592,7 +2592,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:10:59 GMT
+ - Thu, 15 Apr 2021 06:22:40 GMT
expires:
- '-1'
pragma:
@@ -2609,7 +2609,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31989
+ - Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31809
status:
code: 200
message: OK
@@ -2627,18 +2627,18 @@ interactions:
ParameterSetName:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n
- \ \"etag\": \"W/\\\"9f8fe58a-a01d-4242-b4ca-1a3f144c82e6\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"239f0b3d-22b5-4720-8c0b-c90c824c310f\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"5c6c7301-8122-414f-aa0a-001213b410dd\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"9943591b-1276-46c6-b492-80a6b7dce5be\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n
- \ \"etag\": \"W/\\\"9f8fe58a-a01d-4242-b4ca-1a3f144c82e6\\\"\",\r\n
+ \ \"etag\": \"W/\\\"239f0b3d-22b5-4720-8c0b-c90c824c310f\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\":
@@ -2647,8 +2647,8 @@ interactions:
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"444mcs5h3q4u3kzjcobwmayypb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-0D-3A-3B-9D-16\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"n3fjot0qn0dejfrnhzzduo0wfg.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-38-2D-94\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
@@ -2662,9 +2662,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:10:59 GMT
+ - Thu, 15 Apr 2021 06:22:40 GMT
etag:
- - W/"9f8fe58a-a01d-4242-b4ca-1a3f144c82e6"
+ - W/"239f0b3d-22b5-4720-8c0b-c90c824c310f"
expires:
- '-1'
pragma:
@@ -2681,7 +2681,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - eff3ff0b-b5b5-408a-b1fd-09be1ea717f2
+ - 0cd30b69-b789-4bd0-9230-3add08951a0e
status:
code: 200
message: OK
@@ -2699,16 +2699,16 @@ interactions:
ParameterSetName:
- -g -n --image --specialized --nsg-rule --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n
- \ \"etag\": \"W/\\\"f6d2bc58-6cf9-43a1-ab9a-db7504c55feb\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"d3704b5c-3a8e-4df2-ba0e-241ff7cd8044\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"e24050f4-674b-4b1c-b6a5-258ca9c8be06\",\r\n
- \ \"ipAddress\": \"13.64.16.109\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"23adfe40-f624-42f2-9010-f21dac353065\",\r\n
+ \ \"ipAddress\": \"13.91.121.33\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
\ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
@@ -2721,9 +2721,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:10:59 GMT
+ - Thu, 15 Apr 2021 06:22:40 GMT
etag:
- - W/"f6d2bc58-6cf9-43a1-ab9a-db7504c55feb"
+ - W/"d3704b5c-3a8e-4df2-ba0e-241ff7cd8044"
expires:
- '-1'
pragma:
@@ -2740,7 +2740,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 8ef486b3-d52a-4654-899a-0743dfe4b382
+ - 67fefde1-7d8d-4ec1-b5aa-07be047a67db
status:
code: 200
message: OK
@@ -2759,14 +2759,14 @@ interactions:
- -g -n --image --specialized --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2775,7 +2775,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:11:00 GMT
+ - Thu, 15 Apr 2021 06:22:41 GMT
expires:
- '-1'
pragma:
@@ -2803,7 +2803,7 @@ interactions:
ParameterSetName:
- -g -n --image --specialized --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1?api-version=2020-09-30
response:
@@ -2823,7 +2823,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:11:01 GMT
+ - Thu, 15 Apr 2021 06:22:42 GMT
expires:
- '-1'
pragma:
@@ -2840,7 +2840,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImage3Min;598,Microsoft.Compute/GetGalleryImage30Min;2988
+ - Microsoft.Compute/GetGalleryImage3Min;595,Microsoft.Compute/GetGalleryImage30Min;2978
status:
code: 200
message: OK
@@ -2858,9 +2858,9 @@ interactions:
ParameterSetName:
- -g -n --image --specialized --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0\",\r\n
@@ -2869,7 +2869,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West
US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:59:39.3153025+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:11:21.2957399+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 30,\r\n \"hostCaching\":
\"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n
@@ -2883,7 +2883,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:11:01 GMT
+ - Thu, 15 Apr 2021 06:22:43 GMT
expires:
- '-1'
pragma:
@@ -2900,7 +2900,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1995,Microsoft.Compute/GetGalleryImageVersion30Min;9993
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1992,Microsoft.Compute/GetGalleryImageVersion30Min;9985
status:
code: 200
message: OK
@@ -2918,21 +2918,21 @@ interactions:
ParameterSetName:
- -g -n --image --specialized --admin-username --admin-password --authentication-type
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
body:
string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n
- \ \"etag\": \"W/\\\"f209daf0-10e1-4347-86b8-345dd25bd0d7\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"16f20838-a024-4f01-a1fa-cb10538c5574\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"4bc1bcf7-ece7-4e3d-ab29-138366031879\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"4f974a6f-6e50-4486-962d-3e723a3b562e\",\r\n
\ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n
\ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\":
\"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n
- \ \"etag\": \"W/\\\"f209daf0-10e1-4347-86b8-345dd25bd0d7\\\"\",\r\n
+ \ \"etag\": \"W/\\\"16f20838-a024-4f01-a1fa-cb10538c5574\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\":
[\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
@@ -2949,7 +2949,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:11:02 GMT
+ - Thu, 15 Apr 2021 06:22:43 GMT
expires:
- '-1'
pragma:
@@ -2966,7 +2966,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 31e958be-5f91-4dd3-a7db-6873dade9a87
+ - 8b0edb7c-ec1b-4da3-ad2f-af48a61371c8
status:
code: 200
message: OK
@@ -2988,11 +2988,14 @@ interactions:
{"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "vmss1", "location":
"westus", "tags": {}, "apiVersion": "2020-12-01", "dependsOn": ["Microsoft.Network/loadBalancers/vmss1LB"],
"sku": {"name": "Standard_DS1_v2", "capacity": 2}, "properties": {"overprovision":
- true, "upgradePolicy": {"mode": "manual"}, "virtualMachineProfile": {"storageProfile":
- {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk":
- {"storageAccountType": null}}, "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},
- "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss11d3fNic",
- "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss11d3fIPConfig",
+ true, "upgradePolicy": {"mode": "manual", "rollingUpgradePolicy": {"maxBatchInstancePercent":
+ null, "maxUnhealthyInstancePercent": null, "maxUnhealthyUpgradedInstancePercent":
+ null, "pauseTimeBetweenBatches": null, "enableCrossZoneUpgrade": null, "prioritizeUnhealthyInstances":
+ null}}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption":
+ "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}},
+ "imageReference": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},
+ "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1508eNic",
+ "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1508eIPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},
"loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
"loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},
@@ -3010,24 +3013,24 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3433'
+ - '3677'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -g -n --image --specialized --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U","name":"vmss_deploy_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3430606802973146022","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T04:11:08.5426943Z","duration":"PT2.6711826S","correlationId":"f3fea81e-703c-491a-9ab9-f4087cead421","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","name":"vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5302804673372156977","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T06:22:49.1500286Z","duration":"PT2.3861105S","correlationId":"3ca7fa41-31b6-4290-892e-a8a5a7222c31","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U/operationStatuses/08585837518196061153?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy/operationStatuses/08585831391187137126?api-version=2020-10-01
cache-control:
- no-cache
content-length:
@@ -3035,7 +3038,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:11:10 GMT
+ - Thu, 15 Apr 2021 06:22:50 GMT
expires:
- '-1'
pragma:
@@ -3045,7 +3048,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
status:
code: 201
message: Created
@@ -3064,52 +3067,9 @@ interactions:
- -g -n --image --specialized --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837518196061153?api-version=2020-10-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Thu, 08 Apr 2021 04:11:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vmss create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --image --specialized --admin-username --admin-password --authentication-type
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837518196061153?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391187137126?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -3121,7 +3081,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:12:12 GMT
+ - Thu, 15 Apr 2021 06:23:22 GMT
expires:
- '-1'
pragma:
@@ -3150,9 +3110,9 @@ interactions:
- -g -n --image --specialized --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837518196061153?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831391187137126?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -3164,7 +3124,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:12:42 GMT
+ - Thu, 15 Apr 2021 06:23:52 GMT
expires:
- '-1'
pragma:
@@ -3193,21 +3153,21 @@ interactions:
- -g -n --image --specialized --admin-username --admin-password --authentication-type
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U","name":"vmss_deploy_6KouArglRu7x9R5Eo6Jal9s6L2NeHn3U","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3430606802973146022","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T04:12:18.2154754Z","duration":"PT1M12.3439637S","correlationId":"f3fea81e-703c-491a-9ab9-f4087cead421","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss11d3fNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss11d3fIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"2bc076c1-2f30-42c3-8ab8-ab93a43155d2"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Resources/deployments/vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","name":"vmss_deploy_CGGHclDxXciNrkneNi0ahrUlNCo9cONy","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5302804673372156977","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T06:23:34.5892659Z","duration":"PT47.8253478S","correlationId":"3ca7fa41-31b6-4290-892e-a8a5a7222c31","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/galleries/gallery_000002/images/image1/versions/1.0.0"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1508eNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1508eIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"5016855a-c1b5-4244-9d35-3d3c090745e0"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '4529'
+ - '4688'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:12:42 GMT
+ - Thu, 15 Apr 2021 06:23:53 GMT
expires:
- '-1'
pragma:
@@ -3236,14 +3196,14 @@ interactions:
- -g -n --specialized
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -3252,7 +3212,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:12:43 GMT
+ - Thu, 15 Apr 2021 06:23:54 GMT
expires:
- '-1'
pragma:
@@ -3281,14 +3241,14 @@ interactions:
- -g -n --specialized
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_test_specialized_image_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:56:56Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_test_specialized_image_000001","name":"cli_test_test_specialized_image_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -3297,7 +3257,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 04:12:44 GMT
+ - Thu, 15 Apr 2021 06:23:55 GMT
expires:
- '-1'
pragma:
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_by_attach_os_and_data_disks.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_by_attach_os_and_data_disks.yaml
index aff4d072be9..b5c9b1ddcd0 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_by_attach_os_and_data_disks.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_by_attach_os_and_data_disks.yaml
@@ -15,14 +15,14 @@ interactions:
--nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -31,7 +31,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:09 GMT
+ - Tue, 13 Apr 2021 07:24:19 GMT
expires:
- '-1'
pragma:
@@ -110,13 +110,13 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:09 GMT
+ - Tue, 13 Apr 2021 07:24:19 GMT
etag:
- W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
expires:
- - Thu, 08 Apr 2021 03:06:09 GMT
+ - Tue, 13 Apr 2021 07:29:19 GMT
source-age:
- - '221'
+ - '285'
strict-transport-security:
- max-age=31536000
vary:
@@ -126,19 +126,19 @@ interactions:
x-cache:
- HIT
x-cache-hits:
- - '1'
+ - '464'
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 1ac4c994f3d1b64073860205b42d8ea7757a946e
+ - d21a3fa6b4e9b1acc25fe0c993408c8cdb59c3d7
x-frame-options:
- deny
x-github-request-id:
- - 1190:87A4:204620:263068:606E0A67
+ - 5EEC:7F55:8F1839:AC7E73:60743B16
x-served-by:
- - cache-qpg1239-QPG
+ - cache-qpg1242-QPG
x-timer:
- - S1617850870.893658,VS0,VE1
+ - S1618298660.809271,VS0,VE0
x-xss-protection:
- 1; mode=block
status:
@@ -159,7 +159,7 @@ interactions:
- -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb
--nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
@@ -173,7 +173,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:09 GMT
+ - Tue, 13 Apr 2021 07:24:19 GMT
expires:
- '-1'
pragma:
@@ -235,17 +235,17 @@ interactions:
--nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV","name":"vm_deploy_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"904054929486398524","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:01:14.2140635Z","duration":"PT2.3049816S","correlationId":"2174f986-a4e2-4ea0-96bf-1238f86694e3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH","name":"vm_deploy_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8855700462386582075","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-13T07:24:23.994422Z","duration":"PT2.2306805S","correlationId":"ad13ee21-34ef-497e-991e-db52a9013093","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV/operationStatuses/08585837560135685533?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH/operationStatuses/08585833082237138934?api-version=2020-10-01
cache-control:
- no-cache
content-length:
@@ -253,7 +253,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:15 GMT
+ - Tue, 13 Apr 2021 07:24:24 GMT
expires:
- '-1'
pragma:
@@ -263,7 +263,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
status:
code: 201
message: Created
@@ -283,9 +283,9 @@ interactions:
--nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837560135685533?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833082237138934?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -297,7 +297,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:45 GMT
+ - Tue, 13 Apr 2021 07:24:56 GMT
expires:
- '-1'
pragma:
@@ -327,9 +327,9 @@ interactions:
--nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837560135685533?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833082237138934?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -341,7 +341,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:16 GMT
+ - Tue, 13 Apr 2021 07:25:26 GMT
expires:
- '-1'
pragma:
@@ -371,9 +371,9 @@ interactions:
--nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837560135685533?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833082237138934?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -385,7 +385,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:46 GMT
+ - Tue, 13 Apr 2021 07:25:57 GMT
expires:
- '-1'
pragma:
@@ -415,9 +415,9 @@ interactions:
--nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837560135685533?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833082237138934?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -429,7 +429,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:16 GMT
+ - Tue, 13 Apr 2021 07:26:27 GMT
expires:
- '-1'
pragma:
@@ -459,12 +459,12 @@ interactions:
--nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV","name":"vm_deploy_w4ua2hKJvIls5nutjgNuuX4Ln0cfZYMV","type":"Microsoft.Resources/deployments","properties":{"templateHash":"904054929486398524","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:02:56.1596738Z","duration":"PT1M44.2505919S","correlationId":"2174f986-a4e2-4ea0-96bf-1238f86694e3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH","name":"vm_deploy_N7CmDMcyuqS7IiPuDcElPdlmOqADKyLH","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8855700462386582075","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-13T07:26:25.7768171Z","duration":"PT2M4.0130756S","correlationId":"ad13ee21-34ef-497e-991e-db52a9013093","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'
headers:
cache-control:
- no-cache
@@ -473,7 +473,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:17 GMT
+ - Tue, 13 Apr 2021 07:26:28 GMT
expires:
- '-1'
pragma:
@@ -502,28 +502,28 @@ interactions:
- -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb
--nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cf99f9e9-fd53-4bda-a205-f423643cfa84\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d0def0ef-ae52-442e-8f26-c1faddfc2a72\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
\ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
\ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
- \"vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n \"createOption\":
+ \"vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n \"createOption\":
\"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
{\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\"\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n
+ [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n
\ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\"\r\n
\ },\r\n \"diskSizeGB\": 2,\r\n \"toBeDetached\":
false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
\"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\":
@@ -538,20 +538,20 @@ interactions:
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
\ \"message\": \"Guest Agent is running\",\r\n \"time\":
- \"2021-04-08T03:03:16+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
- []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n
+ \"2021-04-13T07:26:26+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:01:48.1004095+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-13T07:24:56.6572613+00:00\"\r\n
\ }\r\n ]\r\n },\r\n {\r\n \"name\":
- \"vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n \"statuses\":
+ \"vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:01:48.1004095+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-13T07:24:56.6572613+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:02:52.7751761+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-13T07:26:24.2709764+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -563,7 +563,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:18 GMT
+ - Tue, 13 Apr 2021 07:26:28 GMT
expires:
- '-1'
pragma:
@@ -580,7 +580,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31990
+ - Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31941
status:
code: 200
message: OK
@@ -599,18 +599,18 @@ interactions:
- -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb
--nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
- \ \"etag\": \"W/\\\"7c664d5d-98f9-491f-80d4-ba31ff565bf4\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"35a701d8-3940-4828-8e08-5bf75fc42825\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"16eed9e8-5fbe-4ba0-a42d-abcbf4a4cdd1\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"12ca4a98-5e9c-4436-adfe-2c43bfa547e8\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n
- \ \"etag\": \"W/\\\"7c664d5d-98f9-491f-80d4-ba31ff565bf4\\\"\",\r\n
+ \ \"etag\": \"W/\\\"35a701d8-3940-4828-8e08-5bf75fc42825\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
@@ -619,8 +619,8 @@ interactions:
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"t3z3ohzrjfiejeay3dgmb14uch.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-22-48-04-2F-41\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"fhxt3plukktu3laudcowngrsbb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-37-6C-43\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
@@ -634,9 +634,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:19 GMT
+ - Tue, 13 Apr 2021 07:26:29 GMT
etag:
- - W/"7c664d5d-98f9-491f-80d4-ba31ff565bf4"
+ - W/"35a701d8-3940-4828-8e08-5bf75fc42825"
expires:
- '-1'
pragma:
@@ -653,7 +653,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b1abe584-9ed2-4675-80f6-65169e16f867
+ - dd65c7a1-3a3c-4a33-ae56-24c554226744
status:
code: 200
message: OK
@@ -672,17 +672,17 @@ interactions:
- -g -n --image --admin-username --admin-password --authentication-type --data-disk-sizes-gb
--nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n
- \ \"etag\": \"W/\\\"25e2d61a-f679-4cbf-9965-a49bc92a8490\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"32de4222-d940-42ca-adeb-8b139b1c8279\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"61001735-d686-4b16-ab72-ba605380b670\",\r\n
- \ \"ipAddress\": \"40.83.210.56\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
- \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"a2690888-9506-46e9-9802-e180af30ee62\",\r\n
+ \ \"ipAddress\": \"168.62.201.201\",\r\n \"publicIPAddressVersion\":
+ \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
@@ -690,13 +690,13 @@ interactions:
cache-control:
- no-cache
content-length:
- - '996'
+ - '998'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:19 GMT
+ - Tue, 13 Apr 2021 07:26:29 GMT
etag:
- - W/"25e2d61a-f679-4cbf-9965-a49bc92a8490"
+ - W/"32de4222-d940-42ca-adeb-8b139b1c8279"
expires:
- '-1'
pragma:
@@ -713,7 +713,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - d269c89b-653a-4acd-9c68-71e50c4984e7
+ - 6cf8d8e9-a650-4687-bedb-7fbb6a06f2ed
status:
code: 200
message: OK
@@ -731,28 +731,28 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cf99f9e9-fd53-4bda-a205-f423643cfa84\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d0def0ef-ae52-442e-8f26-c1faddfc2a72\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
\ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
\ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
- \"vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n \"createOption\":
+ \"vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n \"createOption\":
\"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
{\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\"\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n
+ [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n
\ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\"\r\n
\ },\r\n \"diskSizeGB\": 2,\r\n \"toBeDetached\":
false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
\"vm1\",\r\n \"adminUsername\": \"centosadmin\",\r\n \"linuxConfiguration\":
@@ -770,7 +770,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:19 GMT
+ - Tue, 13 Apr 2021 07:26:31 GMT
expires:
- '-1'
pragma:
@@ -787,7 +787,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31988
+ - Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31940
status:
code: 200
message: OK
@@ -805,12 +805,12 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed?api-version=2020-12-01
response:
body:
- string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641''
+ string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed''
under resource group ''clitest.rg000001'' was not found. For more details
please go to https://aka.ms/ARMResourceNotFoundFix"}}'
headers:
@@ -821,7 +821,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:21 GMT
+ - Tue, 13 Apr 2021 07:26:31 GMT
expires:
- '-1'
pragma:
@@ -849,13 +849,13 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed?api-version=2020-12-01
response:
body:
- string: "{\r\n \"name\": \"vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n
+ string: "{\r\n \"name\": \"vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n
@@ -864,9 +864,9 @@ interactions:
\ \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/OpenLogic/ArtifactTypes/VMImage/Offers/CentOS/Skus/7.5/Versions/7.5.201808150\"\r\n
\ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\":
120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\":
- \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:46.5877364+00:00\",\r\n
+ \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:55.1405065+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n
- \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\",\r\n
+ \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}"
headers:
cache-control:
@@ -876,7 +876,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:21 GMT
+ - Tue, 13 Apr 2021 07:26:32 GMT
expires:
- '-1'
pragma:
@@ -893,7 +893,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4934,Microsoft.Compute/LowCostGet30Min;39934
+ - Microsoft.Compute/LowCostGet3Min;4938,Microsoft.Compute/LowCostGet30Min;39917
status:
code: 200
message: OK
@@ -912,14 +912,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -928,7 +928,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:21 GMT
+ - Tue, 13 Apr 2021 07:26:32 GMT
expires:
- '-1'
pragma:
@@ -944,7 +944,7 @@ interactions:
message: OK
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties":
- {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641"}}}'
+ {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed"}}}'
headers:
Accept:
- application/json
@@ -961,21 +961,21 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n
\ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"osType\":
\"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n
- \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n
- \ \"sourceUniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\"\r\n },\r\n
+ \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n
+ \ \"sourceUniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/db800272-d6d8-4fcd-a190-33deb2d777f9?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31af8d35-04e6-4113-8116-2fb35a07fa4e?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -983,11 +983,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:25 GMT
+ - Tue, 13 Apr 2021 07:26:36 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/db800272-d6d8-4fcd-a190-33deb2d777f9?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31af8d35-04e6-4113-8116-2fb35a07fa4e?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1000,7 +1000,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;995,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7995
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1196'
status:
code: 202
message: Accepted
@@ -1018,36 +1018,36 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/db800272-d6d8-4fcd-a190-33deb2d777f9?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/31af8d35-04e6-4113-8116-2fb35a07fa4e?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:26.400831+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:27.0102038+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:26:37.0794813+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:26:37.7357278+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"oSnapshot\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n
\ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\":
- \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n
- \ \"sourceUniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\"\r\n },\r\n
+ \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n
+ \ \"sourceUniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\"\r\n },\r\n
\ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:26.400831+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:37.0794813+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\",\r\n
+ \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"db800272-d6d8-4fcd-a190-33deb2d777f9\"\r\n}"
+ \"31af8d35-04e6-4113-8116-2fb35a07fa4e\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1452'
+ - '1454'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:28 GMT
+ - Tue, 13 Apr 2021 07:26:38 GMT
expires:
- '-1'
pragma:
@@ -1064,7 +1064,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49957,Microsoft.Compute/GetOperation30Min;399957
+ - Microsoft.Compute/GetOperation3Min;49966,Microsoft.Compute/GetOperation30Min;399960
status:
code: 200
message: OK
@@ -1082,9 +1082,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"oSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n
@@ -1092,22 +1092,22 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n
\ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\":
- \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n
- \ \"sourceUniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\"\r\n },\r\n
+ \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n
+ \ \"sourceUniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\"\r\n },\r\n
\ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:26.400831+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:37.0794813+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\",\r\n
+ \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1228'
+ - '1229'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:28 GMT
+ - Tue, 13 Apr 2021 07:26:39 GMT
expires:
- '-1'
pragma:
@@ -1124,7 +1124,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4933,Microsoft.Compute/LowCostGet30Min;39933
+ - Microsoft.Compute/LowCostGet3Min;4937,Microsoft.Compute/LowCostGet30Min;39916
status:
code: 200
message: OK
@@ -1142,9 +1142,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"oSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n
@@ -1152,22 +1152,22 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n
\ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\":
- \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_9c967332c8164c3cbce29b31de6e0641\",\r\n
- \ \"sourceUniqueId\": \"9c967332-c816-4c3c-bce2-9b31de6e0641\"\r\n },\r\n
+ \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_58c91d4b1d814c7eb9484ee04be95bed\",\r\n
+ \ \"sourceUniqueId\": \"58c91d4b-1d81-4c7e-b948-4ee04be95bed\"\r\n },\r\n
\ \"diskSizeGB\": 30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:26.400831+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:37.0794813+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\",\r\n
+ \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1228'
+ - '1229'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:28 GMT
+ - Tue, 13 Apr 2021 07:26:40 GMT
expires:
- '-1'
pragma:
@@ -1184,7 +1184,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4931,Microsoft.Compute/LowCostGet30Min;39931
+ - Microsoft.Compute/LowCostGet3Min;4936,Microsoft.Compute/LowCostGet30Min;39915
status:
code: 200
message: OK
@@ -1203,14 +1203,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1219,7 +1219,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:29 GMT
+ - Tue, 13 Apr 2021 07:26:41 GMT
expires:
- '-1'
pragma:
@@ -1252,7 +1252,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk?api-version=2020-12-01
response:
@@ -1261,12 +1261,12 @@ interactions:
{},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\":
{\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V1\",\r\n \"creationData\":
{\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n
- \ \"sourceUniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/bd8aefe5-9fb2-4373-b32f-97de1a367872?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/094118dc-17a6-4315-8434-91b9920a1f29?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1274,11 +1274,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:34 GMT
+ - Tue, 13 Apr 2021 07:26:45 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/bd8aefe5-9fb2-4373-b32f-97de1a367872?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/094118dc-17a6-4315-8434-91b9920a1f29?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1289,9 +1289,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;989,Microsoft.Compute/CreateUpdateDisks30Min;7989
+ - Microsoft.Compute/CreateUpdateDisks3Min;991,Microsoft.Compute/CreateUpdateDisks30Min;7991
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1199'
status:
code: 202
message: Accepted
@@ -1309,13 +1309,13 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/bd8aefe5-9fb2-4373-b32f-97de1a367872?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/094118dc-17a6-4315-8434-91b9920a1f29?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:34.3696702+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:34.8852544+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:26:45.751351+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:26:46.376316+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"sDisk\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
@@ -1323,23 +1323,23 @@ interactions:
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n
\ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\":
\"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n
- \ \"sourceUniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\"\r\n },\r\n
\ \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:03:34.3696702+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:26:45.7669335+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"e77511ad-7365-420f-af9a-3e551cd9de6c\",\r\n
+ \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"fb02e786-860c-4903-8775-1a46dfd506fe\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n
- \ },\r\n \"name\": \"bd8aefe5-9fb2-4373-b32f-97de1a367872\"\r\n}"
+ \ },\r\n \"name\": \"094118dc-17a6-4315-8434-91b9920a1f29\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1457'
+ - '1455'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:36 GMT
+ - Tue, 13 Apr 2021 07:26:48 GMT
expires:
- '-1'
pragma:
@@ -1356,7 +1356,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49953,Microsoft.Compute/GetOperation30Min;399953
+ - Microsoft.Compute/GetOperation3Min;49964,Microsoft.Compute/GetOperation30Min;399958
status:
code: 200
message: OK
@@ -1374,7 +1374,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk?api-version=2020-12-01
response:
@@ -1385,12 +1385,12 @@ interactions:
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n
\ \"hyperVGeneration\": \"V1\",\r\n \"creationData\": {\r\n \"createOption\":
\"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/oSnapshot\",\r\n
- \ \"sourceUniqueId\": \"74b8c975-5169-45be-8bb0-627e458e5767\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"6a00d20a-4011-4226-8292-776f3c0f0093\"\r\n },\r\n
\ \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:03:34.3696702+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:26:45.7669335+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"e77511ad-7365-420f-af9a-3e551cd9de6c\",\r\n
+ \ \"diskSizeBytes\": 32212254720,\r\n \"uniqueId\": \"fb02e786-860c-4903-8775-1a46dfd506fe\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}"
headers:
cache-control:
@@ -1400,7 +1400,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:36 GMT
+ - Tue, 13 Apr 2021 07:26:48 GMT
expires:
- '-1'
pragma:
@@ -1417,7 +1417,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4928,Microsoft.Compute/LowCostGet30Min;39928
+ - Microsoft.Compute/LowCostGet3Min;4932,Microsoft.Compute/LowCostGet30Min;39911
status:
code: 200
message: OK
@@ -1435,12 +1435,12 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298?api-version=2020-12-01
response:
body:
- string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6''
+ string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298''
under resource group ''clitest.rg000001'' was not found. For more details
please go to https://aka.ms/ARMResourceNotFoundFix"}}'
headers:
@@ -1451,7 +1451,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:37 GMT
+ - Tue, 13 Apr 2021 07:26:48 GMT
expires:
- '-1'
pragma:
@@ -1479,22 +1479,22 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298?api-version=2020-12-01
response:
body:
- string: "{\r\n \"name\": \"vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n
+ string: "{\r\n \"name\": \"vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"managedBy\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n
\ },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\":
\"Empty\"\r\n },\r\n \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\":
120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\":
- \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:46.5877364+00:00\",\r\n
+ \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-13T07:24:55.1248684+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Attached\",\r\n
- \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\",\r\n
+ \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}"
headers:
cache-control:
@@ -1504,7 +1504,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:37 GMT
+ - Tue, 13 Apr 2021 07:26:49 GMT
expires:
- '-1'
pragma:
@@ -1521,7 +1521,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4925,Microsoft.Compute/LowCostGet30Min;39925
+ - Microsoft.Compute/LowCostGet3Min;4931,Microsoft.Compute/LowCostGet30Min;39910
status:
code: 200
message: OK
@@ -1540,14 +1540,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1556,7 +1556,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:38 GMT
+ - Tue, 13 Apr 2021 07:26:49 GMT
expires:
- '-1'
pragma:
@@ -1572,7 +1572,7 @@ interactions:
message: OK
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_LRS"}, "properties":
- {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6"}}}'
+ {"creationData": {"createOption": "Copy", "sourceResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298"}}}'
headers:
Accept:
- application/json
@@ -1589,20 +1589,20 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n
\ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\":
- {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n
- \ \"sourceUniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\"\r\n },\r\n
+ {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n
+ \ \"sourceUniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/34608f38-caee-4cf4-8433-1cbbc8584370?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/19b8d9be-dc09-4fa5-83a9-c02588466ba1?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1610,11 +1610,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:44 GMT
+ - Tue, 13 Apr 2021 07:26:54 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/34608f38-caee-4cf4-8433-1cbbc8584370?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/19b8d9be-dc09-4fa5-83a9-c02588466ba1?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1625,9 +1625,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;994,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7994
+ - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;993,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7993
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
status:
code: 202
message: Accepted
@@ -1645,35 +1645,35 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/34608f38-caee-4cf4-8433-1cbbc8584370?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/19b8d9be-dc09-4fa5-83a9-c02588466ba1?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:44.901086+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:45.4323377+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:26:54.4544449+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:26:54.9544274+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dSnapshot\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
- \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n
- \ \"sourceUniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\"\r\n },\r\n
+ \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n
+ \ \"sourceUniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\"\r\n },\r\n
\ \"diskSizeGB\": 2,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:44.9167154+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:54.4544449+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\",\r\n
+ \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"34608f38-caee-4cf4-8433-1cbbc8584370\"\r\n}"
+ \"19b8d9be-dc09-4fa5-83a9-c02588466ba1\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1393'
+ - '1394'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:46 GMT
+ - Tue, 13 Apr 2021 07:26:57 GMT
expires:
- '-1'
pragma:
@@ -1690,7 +1690,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49949,Microsoft.Compute/GetOperation30Min;399949
+ - Microsoft.Compute/GetOperation3Min;49959,Microsoft.Compute/GetOperation30Min;399953
status:
code: 200
message: OK
@@ -1708,21 +1708,21 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"dSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
- \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n
- \ \"sourceUniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\"\r\n },\r\n
+ \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n
+ \ \"sourceUniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\"\r\n },\r\n
\ \"diskSizeGB\": 2,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:44.9167154+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:54.4544449+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\",\r\n
+ \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1732,7 +1732,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:47 GMT
+ - Tue, 13 Apr 2021 07:26:57 GMT
expires:
- '-1'
pragma:
@@ -1749,7 +1749,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4916,Microsoft.Compute/LowCostGet30Min;39916
+ - Microsoft.Compute/LowCostGet3Min;4923,Microsoft.Compute/LowCostGet30Min;39902
status:
code: 200
message: OK
@@ -1767,21 +1767,21 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"dSnapshot\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
- \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_4df8ba519678467eb9dd5379f78e9ed6\",\r\n
- \ \"sourceUniqueId\": \"4df8ba51-9678-467e-b9dd-5379f78e9ed6\"\r\n },\r\n
+ \ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm1_disk2_5b75b1c2f8d44706bc0fc7598d745298\",\r\n
+ \ \"sourceUniqueId\": \"5b75b1c2-f8d4-4706-bc0f-c7598d745298\"\r\n },\r\n
\ \"diskSizeGB\": 2,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:44.9167154+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:26:54.4544449+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\",\r\n
+ \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1791,7 +1791,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:48 GMT
+ - Tue, 13 Apr 2021 07:26:58 GMT
expires:
- '-1'
pragma:
@@ -1808,7 +1808,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4915,Microsoft.Compute/LowCostGet30Min;39915
+ - Microsoft.Compute/LowCostGet3Min;4921,Microsoft.Compute/LowCostGet30Min;39900
status:
code: 200
message: OK
@@ -1827,14 +1827,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1843,7 +1843,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:49 GMT
+ - Tue, 13 Apr 2021 07:26:58 GMT
expires:
- '-1'
pragma:
@@ -1876,7 +1876,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk?api-version=2020-12-01
response:
@@ -1885,12 +1885,12 @@ interactions:
{},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n
- \ \"sourceUniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2fe67f52-98d1-48cc-906c-ab53a05af6df?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1bcab9d2-9305-4179-986e-36c06ca4f087?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1898,11 +1898,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:53 GMT
+ - Tue, 13 Apr 2021 07:27:03 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2fe67f52-98d1-48cc-906c-ab53a05af6df?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1bcab9d2-9305-4179-986e-36c06ca4f087?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1913,9 +1913,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;988,Microsoft.Compute/CreateUpdateDisks30Min;7988
+ - Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7990
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1198'
status:
code: 202
message: Accepted
@@ -1933,27 +1933,27 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/2fe67f52-98d1-48cc-906c-ab53a05af6df?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/1bcab9d2-9305-4179-986e-36c06ca4f087?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:53.5260887+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:54.2448312+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:27:03.8450855+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:27:04.3450845+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"dDisk\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\":
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n
- \ \"sourceUniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\"\r\n },\r\n
\ \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:03:53.5417139+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:27:03.8607258+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"2461dcaa-e4cc-4f81-9417-01b0001984ff\",\r\n
+ \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"f899998f-a81f-4e23-b7f9-1bf65651ab0c\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}\r\n
- \ },\r\n \"name\": \"2fe67f52-98d1-48cc-906c-ab53a05af6df\"\r\n}"
+ \ },\r\n \"name\": \"1bcab9d2-9305-4179-986e-36c06ca4f087\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1962,7 +1962,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:55 GMT
+ - Tue, 13 Apr 2021 07:27:06 GMT
expires:
- '-1'
pragma:
@@ -1979,7 +1979,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49945,Microsoft.Compute/GetOperation30Min;399945
+ - Microsoft.Compute/GetOperation3Min;49956,Microsoft.Compute/GetOperation30Min;399947
status:
code: 200
message: OK
@@ -1997,7 +1997,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/dDisk?api-version=2020-12-01
response:
@@ -2007,12 +2007,12 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\":
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/snapshots/dSnapshot\",\r\n
- \ \"sourceUniqueId\": \"d4c072a2-65e6-4b3c-91ca-6fbbc611dbff\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"90ccd09a-fa62-40ab-be55-c279acfd844b\"\r\n },\r\n
\ \"diskSizeGB\": 2,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:03:53.5417139+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:27:03.8607258+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"2461dcaa-e4cc-4f81-9417-01b0001984ff\",\r\n
+ \ \"diskSizeBytes\": 2147483648,\r\n \"uniqueId\": \"f899998f-a81f-4e23-b7f9-1bf65651ab0c\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}"
headers:
cache-control:
@@ -2022,7 +2022,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:55 GMT
+ - Tue, 13 Apr 2021 07:27:06 GMT
expires:
- '-1'
pragma:
@@ -2039,7 +2039,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4912,Microsoft.Compute/LowCostGet30Min;39912
+ - Microsoft.Compute/LowCostGet3Min;4917,Microsoft.Compute/LowCostGet30Min;39891
status:
code: 200
message: OK
@@ -2059,14 +2059,14 @@ interactions:
--os-type --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2075,7 +2075,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:56 GMT
+ - Tue, 13 Apr 2021 07:27:06 GMT
expires:
- '-1'
pragma:
@@ -2104,21 +2104,21 @@ interactions:
- -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb
--os-type --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
body:
string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vm1VNET\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET\",\r\n
- \ \"etag\": \"W/\\\"eb140a2b-edab-4d53-bbba-3b4357d5427a\\\"\",\r\n \"type\":
+ \ \"etag\": \"W/\\\"c0d05bff-acdb-45a4-888a-5c69ce4b01c0\\\"\",\r\n \"type\":
\"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"1fd7739f-4931-4450-9018-e8ccc0efd417\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"bd3eef29-5274-4ea7-ac14-189d669a3209\",\r\n
\ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n
\ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\":
\"vm1Subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\",\r\n
- \ \"etag\": \"W/\\\"eb140a2b-edab-4d53-bbba-3b4357d5427a\\\"\",\r\n
+ \ \"etag\": \"W/\\\"c0d05bff-acdb-45a4-888a-5c69ce4b01c0\\\"\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"ipConfigurations\":
[\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
@@ -2134,7 +2134,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:56 GMT
+ - Tue, 13 Apr 2021 07:27:08 GMT
expires:
- '-1'
pragma:
@@ -2151,7 +2151,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 2b69084a-6283-4983-b08e-a524080ef342
+ - 0e4b7e13-b35e-428e-85e8-4f613f219a06
status:
code: 200
message: OK
@@ -2197,25 +2197,25 @@ interactions:
--os-type --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_57y5UKTXd9m1znKMuocpFaXOUFumX599","name":"vm_deploy_57y5UKTXd9m1znKMuocpFaXOUFumX599","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17705645456817134641","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-08T03:04:02.8147796Z","duration":"PT2.7394159S","correlationId":"069f89da-5078-49fb-9cb4-7d1d72f70a37","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR","name":"vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7842092925336686369","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-13T07:27:11.5582055Z","duration":"PT1.9728701S","correlationId":"b7d04ae2-bcc5-404d-9ac1-fb1ac1b57e62","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_57y5UKTXd9m1znKMuocpFaXOUFumX599/operationStatuses/08585837558454022640?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR/operationStatuses/08585833080558922956?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '2405'
+ - '2404'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:03 GMT
+ - Tue, 13 Apr 2021 07:27:12 GMT
expires:
- '-1'
pragma:
@@ -2225,7 +2225,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1197'
status:
code: 201
message: Created
@@ -2245,9 +2245,9 @@ interactions:
--os-type --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837558454022640?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833080558922956?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -2259,7 +2259,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:34 GMT
+ - Tue, 13 Apr 2021 07:27:44 GMT
expires:
- '-1'
pragma:
@@ -2289,9 +2289,9 @@ interactions:
--os-type --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585837558454022640?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585833080558922956?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -2303,7 +2303,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:05:04 GMT
+ - Tue, 13 Apr 2021 07:28:14 GMT
expires:
- '-1'
pragma:
@@ -2333,21 +2333,21 @@ interactions:
--os-type --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_57y5UKTXd9m1znKMuocpFaXOUFumX599","name":"vm_deploy_57y5UKTXd9m1znKMuocpFaXOUFumX599","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17705645456817134641","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-08T03:04:58.5940523Z","duration":"PT58.5186886S","correlationId":"069f89da-5078-49fb-9cb4-7d1d72f70a37","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR","name":"vm_deploy_8xZfCdkq9OuA0vKcpCp8diFySLMZT0OR","type":"Microsoft.Resources/deployments","properties":{"templateHash":"7842092925336686369","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-13T07:27:50.0355486Z","duration":"PT40.4502132S","correlationId":"b7d04ae2-bcc5-404d-9ac1-fb1ac1b57e62","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm2PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm2VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '3266'
+ - '3265'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:05:05 GMT
+ - Tue, 13 Apr 2021 07:28:14 GMT
expires:
- '-1'
pragma:
@@ -2376,24 +2376,24 @@ interactions:
- -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb
--os-type --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cc35d5bf-1931-42ff-82ac-24ed9ca098ed\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3f8c8723-ccb6-4da3-9fa7-3756a09e5c9c\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n
\ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n
\ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\":
\"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\"\r\n
\ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\":
- [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\",\r\n
+ [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\",\r\n
\ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\"\r\n
\ },\r\n \"diskSizeGB\": 3,\r\n \"toBeDetached\":
false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\":
\"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\":
@@ -2406,37 +2406,37 @@ interactions:
\ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n
\ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not
Ready\",\r\n \"message\": \"VM status blob is found but not yet
- populated.\",\r\n \"time\": \"2021-04-08T03:05:07+00:00\"\r\n }\r\n
+ populated.\",\r\n \"time\": \"2021-04-13T07:28:16+00:00\"\r\n }\r\n
\ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\":
\"sDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\":
\"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n
\ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\":
- \"2021-04-08T03:04:36.8111464+00:00\"\r\n }\r\n ]\r\n
- \ },\r\n {\r\n \"name\": \"vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\",\r\n
+ \"2021-04-13T07:27:34.555236+00:00\"\r\n }\r\n ]\r\n },\r\n
+ \ {\r\n \"name\": \"vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:04:36.8111464+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-13T07:27:34.555236+00:00\"\r\n
\ }\r\n ]\r\n },\r\n {\r\n \"name\":
\"dDisk\",\r\n \"statuses\": [\r\n {\r\n \"code\":
\"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n
\ \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\":
- \"2021-04-08T03:04:36.8111464+00:00\"\r\n }\r\n ]\r\n
- \ }\r\n ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\":
- [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
- \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-04-08T03:04:55.077585+00:00\"\r\n
- \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
- \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
- \ }\r\n ]\r\n }\r\n }\r\n}"
+ \"2021-04-13T07:27:34.555236+00:00\"\r\n }\r\n ]\r\n }\r\n
+ \ ],\r\n \"hyperVGeneration\": \"V1\",\r\n \"statuses\": [\r\n
+ \ {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\":
+ \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n
+ \ \"time\": \"2021-04-13T07:27:46.8525838+00:00\"\r\n },\r\n
+ \ {\r\n \"code\": \"PowerState/running\",\r\n \"level\":
+ \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n
+ \ ]\r\n }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '4192'
+ - '4190'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:05:07 GMT
+ - Tue, 13 Apr 2021 07:28:15 GMT
expires:
- '-1'
pragma:
@@ -2453,7 +2453,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31980
+ - Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31935
status:
code: 200
message: OK
@@ -2472,18 +2472,18 @@ interactions:
- -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb
--os-type --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm2VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic\",\r\n
- \ \"etag\": \"W/\\\"3ca8580f-a80a-4338-9467-0db09d77dd6e\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"ab3cba0a-96ae-4da1-a6a5-27cdabe0f28b\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"077fce1c-60dc-489d-8479-6afd08bb0c11\",\r\n
+ \"Succeeded\",\r\n \"resourceGuid\": \"3c5ba471-b7c8-4630-9278-0ccb0908a506\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\",\r\n
- \ \"etag\": \"W/\\\"3ca8580f-a80a-4338-9467-0db09d77dd6e\\\"\",\r\n
+ \ \"etag\": \"W/\\\"ab3cba0a-96ae-4da1-a6a5-27cdabe0f28b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\":
@@ -2492,8 +2492,8 @@ interactions:
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"t3z3ohzrjfiejeay3dgmb14uch.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-22-48-02-C1-7C\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"fhxt3plukktu3laudcowngrsbb.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-22-48-03-B1-12\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/vm2NSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
@@ -2507,9 +2507,9 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:05:07 GMT
+ - Tue, 13 Apr 2021 07:28:16 GMT
etag:
- - W/"3ca8580f-a80a-4338-9467-0db09d77dd6e"
+ - W/"ab3cba0a-96ae-4da1-a6a5-27cdabe0f28b"
expires:
- '-1'
pragma:
@@ -2526,7 +2526,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 04bcf8a2-1786-4cf6-b4c0-0fab795f22b2
+ - 6d82c1c6-0536-40eb-a053-63c88e9a742e
status:
code: 200
message: OK
@@ -2545,17 +2545,17 @@ interactions:
- -g -n --attach-os-disk --attach-data-disks --data-disk-sizes-gb --os-disk-size-gb
--os-type --nsg-rule
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm2PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/vm2PublicIP\",\r\n
- \ \"etag\": \"W/\\\"f09194ce-02c4-41e0-b71a-52610255128c\\\"\",\r\n \"location\":
+ \ \"etag\": \"W/\\\"2a99b202-a725-49d3-a1fd-235253faebf4\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"2fc1ce6f-6e8f-420c-989f-acd0d87b6882\",\r\n
- \ \"ipAddress\": \"40.78.120.223\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
- \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"70d7191a-76ee-4edd-8014-959b36dc6075\",\r\n
+ \ \"ipAddress\": \"138.91.187.211\",\r\n \"publicIPAddressVersion\":
+ \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkInterfaces/vm2VMNic/ipConfigurations/ipconfigvm2\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
@@ -2563,13 +2563,13 @@ interactions:
cache-control:
- no-cache
content-length:
- - '997'
+ - '998'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:05:07 GMT
+ - Tue, 13 Apr 2021 07:28:16 GMT
etag:
- - W/"f09194ce-02c4-41e0-b71a-52610255128c"
+ - W/"2a99b202-a725-49d3-a1fd-235253faebf4"
expires:
- '-1'
pragma:
@@ -2586,7 +2586,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - b57db583-4db1-43c2-a66d-af21598bf1fd
+ - e4bd6f8e-192d-4b6f-a5a5-57f96760c9ac
status:
code: 200
message: OK
@@ -2604,24 +2604,24 @@ interactions:
ParameterSetName:
- -g -n
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"cc35d5bf-1931-42ff-82ac-24ed9ca098ed\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3f8c8723-ccb6-4da3-9fa7-3756a09e5c9c\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n
\ \"name\": \"sDisk\",\r\n \"createOption\": \"Attach\",\r\n
\ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\":
\"Premium_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/sDisk\"\r\n
\ },\r\n \"diskSizeGB\": 100\r\n },\r\n \"dataDisks\":
- [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\",\r\n
+ [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\",\r\n
\ \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_1928ff8a3f814983a8e96ecdb1b039c9\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/disks/vm2_disk2_5a7f09fd8c60479389d98d8c3759e480\"\r\n
\ },\r\n \"diskSizeGB\": 3,\r\n \"toBeDetached\":
false\r\n },\r\n {\r\n \"lun\": 1,\r\n \"name\":
\"dDisk\",\r\n \"createOption\": \"Attach\",\r\n \"caching\":
@@ -2638,7 +2638,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:05:09 GMT
+ - Tue, 13 Apr 2021 07:28:16 GMT
expires:
- '-1'
pragma:
@@ -2655,7 +2655,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31979
+ - Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31934
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_count.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_count.yaml
index 5649e53dedb..a45e1ae25d9 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_count.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_create_count.yaml
@@ -7,21 +7,2600 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --address-prefix
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001","name":"cli_test_vm_create_count_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T05:36:29Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}, "dhcpOptions": {}}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '123'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g -n --address-prefix
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n
+ \ \"etag\": \"W/\\\"2aed4fae-5999-4e38-bc1e-5886370fce12\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"05757d57-49cb-42b2-a862-40c866b219a6\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ azure-asyncnotification:
+ - Enabled
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3ee1e0b6-5474-4d9d-80e8-11f42e6f5078?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '730'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:43 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 61882d1f-ac08-4919-bb27-0afabf11d196
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1197'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --address-prefix
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/3ee1e0b6-5474-4d9d-80e8-11f42e6f5078?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '29'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:46 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - aef281c9-8dfc-42c9-bbb9-d596066edb45
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --address-prefix
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n
+ \ \"etag\": \"W/\\\"71290a83-8e85-430f-aa76-d380bb177d80\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"05757d57-49cb-42b2-a862-40c866b219a6\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '731'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:46 GMT
+ etag:
+ - W/"71290a83-8e85-430f-aa76-d380bb177d80"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - b20f1969-6d7b-45fb-860b-812f7fe2a938
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vnet-name -n --address-prefixes
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n
+ \ \"etag\": \"W/\\\"71290a83-8e85-430f-aa76-d380bb177d80\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"05757d57-49cb-42b2-a862-40c866b219a6\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '731'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:47 GMT
+ etag:
+ - W/"71290a83-8e85-430f-aa76-d380bb177d80"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 4cac55fa-a260-494e-ba27-46262db41a0e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet",
+ "location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"name": "subnet1",
+ "properties": {"addressPrefix": "10.0.0.0/24"}}], "virtualNetworkPeerings":
+ [], "enableDdosProtection": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '483'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --vnet-name -n --address-prefixes
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n
+ \ \"etag\": \"W/\\\"067a22a0-caab-4566-844e-81144272fbbb\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"05757d57-49cb-42b2-a862-40c866b219a6\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\",\r\n
+ \ \"etag\": \"W/\\\"067a22a0-caab-4566-844e-81144272fbbb\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\":
+ [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cbc7c7b5-8051-4cf1-8677-8d53f669effd?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '1400'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:48 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c971bae0-2d44-4603-ab60-8af7083da30c
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vnet-name -n --address-prefixes
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/cbc7c7b5-8051-4cf1-8677-8d53f669effd?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '29'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:51 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 856b4ce0-bf90-443b-8fd5-87e7bcadcc0b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vnet-name -n --address-prefixes
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n
+ \ \"etag\": \"W/\\\"22686fdc-fd4a-4a3e-8a51-acbb98961f35\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"05757d57-49cb-42b2-a862-40c866b219a6\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\",\r\n
+ \ \"etag\": \"W/\\\"22686fdc-fd4a-4a3e-8a51-acbb98961f35\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\":
+ [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1402'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:52 GMT
+ etag:
+ - W/"22686fdc-fd4a-4a3e-8a51-acbb98961f35"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 872c355a-4901-4485-98c1-13a41190bfe9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vnet-name -n --address-prefixes
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n
+ \ \"etag\": \"W/\\\"22686fdc-fd4a-4a3e-8a51-acbb98961f35\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"05757d57-49cb-42b2-a862-40c866b219a6\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\",\r\n
+ \ \"etag\": \"W/\\\"22686fdc-fd4a-4a3e-8a51-acbb98961f35\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\":
+ [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1402'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:52 GMT
+ etag:
+ - W/"22686fdc-fd4a-4a3e-8a51-acbb98961f35"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - afb3ffe9-a2bc-4811-8e22-fd6dbcf4fe9e
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet",
+ "location": "eastus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes":
+ ["10.0.0.0/16"]}, "dhcpOptions": {"dnsServers": []}, "subnets": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1",
+ "name": "subnet1", "properties": {"addressPrefix": "10.0.0.0/24", "delegations":
+ [], "privateEndpointNetworkPolicies": "Enabled", "privateLinkServiceNetworkPolicies":
+ "Enabled"}}, {"name": "subnet2", "properties": {"addressPrefix": "10.0.1.0/24"}}],
+ "virtualNetworkPeerings": [], "enableDdosProtection": false}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '881'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - -g --vnet-name -n --address-prefixes
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n
+ \ \"etag\": \"W/\\\"a454d930-d8eb-436f-9aa0-ce86c7aaa359\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"resourceGuid\": \"05757d57-49cb-42b2-a862-40c866b219a6\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\",\r\n
+ \ \"etag\": \"W/\\\"a454d930-d8eb-436f-9aa0-ce86c7aaa359\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\":
+ [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ },\r\n {\r\n \"name\": \"subnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet2\",\r\n
+ \ \"etag\": \"W/\\\"a454d930-d8eb-436f-9aa0-ce86c7aaa359\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n
+ \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\":
+ [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/33081019-2639-4e40-8d1a-3336e34fa961?api-version=2020-11-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2065'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:54 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - d56e375a-7130-4d0a-8d59-5faea70b6526
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vnet-name -n --address-prefixes
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/33081019-2639-4e40-8d1a-3336e34fa961?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"status\": \"Succeeded\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '29'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:57 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 8d9a878c-4fa8-4b31-82fb-13de563ac25b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - network vnet subnet create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --vnet-name -n --address-prefixes
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet\",\r\n
+ \ \"etag\": \"W/\\\"679a3d96-5a08-462d-a049-f9c8f70c14d8\\\"\",\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"resourceGuid\": \"05757d57-49cb-42b2-a862-40c866b219a6\",\r\n \"addressSpace\":
+ {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n
+ \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n
+ \ \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\",\r\n
+ \ \"etag\": \"W/\\\"679a3d96-5a08-462d-a049-f9c8f70c14d8\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\":
+ [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ },\r\n {\r\n \"name\": \"subnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet2\",\r\n
+ \ \"etag\": \"W/\\\"679a3d96-5a08-462d-a049-f9c8f70c14d8\\\"\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"addressPrefix\": \"10.0.1.0/24\",\r\n \"delegations\":
+ [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\":
+ \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n
+ \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\":
+ false\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2068'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:57 GMT
+ etag:
+ - W/"679a3d96-5a08-462d-a049-f9c8f70c14d8"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - b1b84acd-a507-4626-81fa-257b7695d099
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001","name":"cli_test_vm_create_count_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T05:36:29Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:58 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python-requests/2.22.0
+ method: GET
+ uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
+ response:
+ body:
+ string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n
+ \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\":
+ {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\":
+ \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\":
+ {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n
+ \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n
+ \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\":
+ \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n
+ \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n
+ \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\":
+ \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\":
+ \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\":
+ \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\":
+ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n
+ \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n
+ \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\":
+ \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n
+ \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n
+ \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n
+ \ \"version\": \"latest\"\n }\n },\n \"Windows\":
+ {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
+ \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n
+ \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\":
+ {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
+ \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\":
+ \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\":
+ \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\":
+ \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n
+ \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
+ \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n
+ \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\":
+ {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
+ \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\":
+ \"latest\"\n }\n }\n }\n }\n }\n}\n"
+ headers:
+ accept-ranges:
+ - bytes
+ access-control-allow-origin:
+ - '*'
+ cache-control:
+ - max-age=300
+ connection:
+ - keep-alive
+ content-length:
+ - '2501'
+ content-security-policy:
+ - default-src 'none'; style-src 'unsafe-inline'; sandbox
+ content-type:
+ - text/plain; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:59 GMT
+ etag:
+ - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
+ expires:
+ - Thu, 15 Apr 2021 05:41:59 GMT
+ source-age:
+ - '41'
+ strict-transport-security:
+ - max-age=31536000
+ vary:
+ - Authorization,Accept-Encoding
+ via:
+ - 1.1 varnish
+ x-cache:
+ - HIT
+ x-cache-hits:
+ - '2'
+ x-content-type-options:
+ - nosniff
+ x-fastly-request-id:
+ - 8757fe985121f2e34f38a475a5fd6d4ad45dec28
+ x-frame-options:
+ - deny
+ x-github-request-id:
+ - 6736:0EE9:DD86D:11B8EF:6077A1F9
+ x-served-by:
+ - cache-qpg1233-QPG
+ x-timer:
+ - S1618465019.403600,VS0,VE0
+ x-xss-protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"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"},{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"}],"resourceTypes":[{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
+ India","West India","Canada Central","Canada East","West Central US","West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
+ 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","France
+ South","Australia Central","South Africa North","UAE North","Switzerland North","Germany
+ West Central","Norway East","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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":"virtualNetworkGateways","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"capabilities":"SupportsTags, SupportsLocation"},{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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","locations":[],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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":"dnszones","locations":["global"],"apiVersions":["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":["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":["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":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["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":["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":["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":["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":["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":["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":["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":["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":["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":["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/recordsets","locations":["global"],"apiVersions":["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":["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":"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":"dnsResolvers","locations":["West
+ Central US","East US 2","West Europe","Central US EUAP","East US 2 EUAP"],"apiVersions":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["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":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["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":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["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":"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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":"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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":"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 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","South
+ Africa North","Switzerland North","Germany West Central","Norway East","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","UAE
+ North","South Africa North","Switzerland North","Germany West Central","Norway
+ East","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["France
+ Central"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":"firewallPolicies","locations":["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 East","South India","Germany West Central","Norway
+ East","Norway West","South Africa North","East Asia","Southeast Asia","Korea
+ Central","Brazil South","Brazil Southeast","Japan East","UK 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","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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":["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 East","South India","Germany West Central","Norway East","Norway
+ West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil
+ South","Japan East","UK West","West US","East 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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":["2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"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
+ 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","Central US
+ EUAP","East US 2 EUAP"],"apiVersions":["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
+ East","Australia Southeast","Central India","South India","West India","Canada
+ Central","Canada East","West Central US","West US 2","UK West","UK South","France
+ Central","Australia Central","Japan West","Japan East","Korea Central","Korea
+ South","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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":"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":["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
+ 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":["2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":"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 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"virtualRouters","locations":["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 East","South India","Germany West Central","Norway East","Norway
+ West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil
+ South","Japan East","UK 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-08-01","2020-07-01","2020-06-01","2020-05-01","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-04-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["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 East","South India","Germany West Central","Norway
+ East","Norway West","South Africa North","East Asia","Southeast Asia","Korea
+ Central","Brazil South","Japan East","UK 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","Central US EUAP","East
+ US 2 EUAP"],"apiVersions":["2020-11-01","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":"SupportsTags,
+ SupportsLocation"},{"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 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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/commitInternalAzureNetworkManagerConfiguration","locations":["West
+ Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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":"frontdoorOperationResults","locations":["global"],"apiVersions":["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
+ East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","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
+ East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","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
+ East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["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 East","Australia
+ Southeast"],"apiVersions":["2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central
+ US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North
+ Central US","South Central US","West US","West US 2","North Europe","West
+ 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"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '110323'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:36:59 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1?api-version=2020-11-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\",\r\n
+ \ \"etag\": \"W/\\\"679a3d96-5a08-462d-a049-f9c8f70c14d8\\\"\",\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n
+ \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n
+ \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '585'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:37:00 GMT
+ etag:
+ - W/"679a3d96-5a08-462d-a049-f9c8f70c14d8"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - fd53ae9f-abb5-41d7-bf9f-c15cc565f2f9
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources":
+ [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vmaNSG", "apiVersion":
+ "2015-06-15", "location": "eastus", "tags": {}, "dependsOn": []}, {"apiVersion":
+ "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "[concat(''vmaPublicIP'',
+ copyIndex())]", "location": "eastus", "tags": {}, "dependsOn": [], "properties":
+ {"publicIPAllocationMethod": null}, "copy": {"name": "publicipcopy", "mode":
+ "parallel", "count": 3}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces",
+ "name": "[concat(''vmaVMNic'', copyIndex())]", "location": "eastus", "tags":
+ {}, "dependsOn": ["Microsoft.Network/networkSecurityGroups/vmaNSG", "Microsoft.Network/publicIpAddresses/vmaPublicIP0",
+ "Microsoft.Network/publicIpAddresses/vmaPublicIP1", "Microsoft.Network/publicIpAddresses/vmaPublicIP2"],
+ "properties": {"ipConfigurations": [{"name": "[concat(''ipconfigvma'', copyIndex())]",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1"},
+ "publicIPAddress": {"id": "[concat(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP'',
+ copyIndex())]"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG"}},
+ "copy": {"name": "niccopy", "mode": "parallel", "count": 3}}, {"apiVersion":
+ "2020-12-01", "type": "Microsoft.Compute/virtualMachines", "name": "[concat(''vma'',
+ copyIndex())]", "location": "eastus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vmaVMNic0",
+ "Microsoft.Network/networkInterfaces/vmaVMNic1", "Microsoft.Network/networkInterfaces/vmaVMNic2"],
+ "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile":
+ {"networkInterfaces": [{"id": "[concat(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic'',
+ copyIndex())]"}]}, "storageProfile": {"osDisk": {"createOption": "fromImage",
+ "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType":
+ null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer",
+ "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "[concat(''vma'',
+ copyIndex())]", "adminUsername": "fey", "linuxConfiguration": {"disablePasswordAuthentication":
+ true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\n", "path": "/home/fey/.ssh/authorized_keys"}]}}}, "securityProfile":
+ {}}, "copy": {"name": "vmcopy", "mode": "parallel", "count": 3}}], "outputs":
+ {}}, "parameters": {}, "mode": "Incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '3632'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/vm_deploy_fqPSYKZqFiJkFWv9XNb7oR7N1vPPkrkN","name":"vm_deploy_fqPSYKZqFiJkFWv9XNb7oR7N1vPPkrkN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13437379430459249959","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T05:37:06.7184739Z","duration":"PT2.9977693S","correlationId":"401131d4-3c2a-4812-b579-9ae170bf47af","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmaNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmaNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmaNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic2"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma0","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vma0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vma1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vma2"}]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/vm_deploy_fqPSYKZqFiJkFWv9XNb7oR7N1vPPkrkN/operationStatuses/08585831418617569423?api-version=2020-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '8829'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:37:08 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831418617569423?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:37:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831418617569423?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:09 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/vm_deploy_fqPSYKZqFiJkFWv9XNb7oR7N1vPPkrkN","name":"vm_deploy_fqPSYKZqFiJkFWv9XNb7oR7N1vPPkrkN","type":"Microsoft.Resources/deployments","properties":{"templateHash":"13437379430459249959","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T05:37:47.7288456Z","duration":"PT44.008141S","correlationId":"401131d4-3c2a-4812-b579-9ae170bf47af","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmaNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmaNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmaNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmaPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic2"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma0","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vma0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vma1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmaVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vma2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '10932'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma0?$expand=instanceView&api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vma0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma0\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"c4ea8960-bb2b-4cfa-8163-30bc917a9ee7\",\r\n
+ \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
+ \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
+ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
+ \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
+ \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
+ \"Linux\",\r\n \"name\": \"vma0_disk1_7902b04e177741eaae05b20d3153564f\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vma0_disk1_7902b04e177741eaae05b20d3153564f\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma0\",\r\n
+ \ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
+ true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
+ \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
+ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
+ \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
+ \"vma0\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\":
+ [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
+ \ \"message\": \"Guest Agent is running\",\r\n \"time\":
+ \"2021-04-15T05:38:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vma0_disk1_7902b04e177741eaae05b20d3153564f\",\r\n
+ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-15T05:37:30.0148345+00:00\"\r\n
+ \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
+ \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-15T05:37:44.7805246+00:00\"\r\n
+ \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
+ \ }\r\n ]\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3842'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:10 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31985
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmaVMNic0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0\",\r\n
+ \ \"etag\": \"W/\\\"30a570be-7e26-43f8-9801-dbdcfd56b7b1\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"4b6ac8ac-8262-4374-94a5-a1024d4c496a\",\r\n
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvma0\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0/ipConfigurations/ipconfigvma0\",\r\n
+ \ \"etag\": \"W/\\\"30a570be-7e26-43f8-9801-dbdcfd56b7b1\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\":
+ \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
+ \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
+ [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
+ \"k34xkboljgzefkdcidegnmqzug.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-56-2E-CE\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma0\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2570'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:11 GMT
+ etag:
+ - W/"30a570be-7e26-43f8-9801-dbdcfd56b7b1"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 9ce32eed-09a0-404e-bd3e-696c323a96dc
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmaPublicIP0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP0\",\r\n
+ \ \"etag\": \"W/\\\"94130c96-0c58-47a7-b120-171d7b8ec59d\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"75853474-b291-406d-bde5-36ae3d760e1f\",\r\n
+ \ \"ipAddress\": \"40.112.61.77\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0/ipConfigurations/ipconfigvma0\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1000'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:11 GMT
+ etag:
+ - W/"94130c96-0c58-47a7-b120-171d7b8ec59d"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 9ffeef13-3d90-448a-8f27-8d95dc805422
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma1?$expand=instanceView&api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vma1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma1\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"393d0e51-1fb2-40fa-9cd7-ca674d3ffe76\",\r\n
+ \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
+ \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
+ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
+ \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
+ \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
+ \"Linux\",\r\n \"name\": \"vma1_disk1_5d6312d7f6d34680a8903ee48b263dd1\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vma1_disk1_5d6312d7f6d34680a8903ee48b263dd1\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma1\",\r\n
+ \ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
+ true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
+ \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
+ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
+ \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
+ \"vma1\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\":
+ [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
+ \ \"message\": \"Guest Agent is running\",\r\n \"time\":
+ \"2021-04-15T05:38:08+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vma1_disk1_5d6312d7f6d34680a8903ee48b263dd1\",\r\n
+ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-15T05:37:30.1086256+00:00\"\r\n
+ \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
+ \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-15T05:37:45.6399153+00:00\"\r\n
+ \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
+ \ }\r\n ]\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3842'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:12 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;3991,Microsoft.Compute/LowCostGet30Min;31984
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmaVMNic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1\",\r\n
+ \ \"etag\": \"W/\\\"6cc0582a-b198-4ef4-9df7-3e4746784368\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"92623fe2-5c6d-4c0b-9125-568271cf97fa\",\r\n
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvma1\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1/ipConfigurations/ipconfigvma1\",\r\n
+ \ \"etag\": \"W/\\\"6cc0582a-b198-4ef4-9df7-3e4746784368\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
+ \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
+ \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
+ [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
+ \"k34xkboljgzefkdcidegnmqzug.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-56-2F-FB\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma1\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2570'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:12 GMT
+ etag:
+ - W/"6cc0582a-b198-4ef4-9df7-3e4746784368"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - b8f69efc-ac92-4d55-8aad-34291802961b
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmaPublicIP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP1\",\r\n
+ \ \"etag\": \"W/\\\"689e6e2e-7c7f-4dd2-a53e-2c85421b4445\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"41df7fe8-3e6a-4add-bb07-a43ec3b1bb01\",\r\n
+ \ \"ipAddress\": \"40.112.61.116\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1/ipConfigurations/ipconfigvma1\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1001'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:13 GMT
+ etag:
+ - W/"689e6e2e-7c7f-4dd2-a53e-2c85421b4445"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 00490fbf-f041-4d05-b4ea-7268e2b95a85
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma2?$expand=instanceView&api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vma2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma2\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0b4eff2a-e952-40d2-96ee-9da4ba1c003f\",\r\n
+ \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
+ \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
+ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
+ \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
+ \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
+ \"Linux\",\r\n \"name\": \"vma2_disk1_152d79dae8f44f50a998e51c9a295165\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vma2_disk1_152d79dae8f44f50a998e51c9a295165\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vma2\",\r\n
+ \ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
+ true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
+ \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
+ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
+ \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
+ \"vma2\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\":
+ [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
+ \ \"message\": \"Guest Agent is running\",\r\n \"time\":
+ \"2021-04-15T05:38:11+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vma2_disk1_152d79dae8f44f50a998e51c9a295165\",\r\n
+ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-15T05:37:30.1711143+00:00\"\r\n
+ \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
+ \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-15T05:37:40.4992494+00:00\"\r\n
+ \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
+ \ }\r\n ]\r\n }\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3842'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:13 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31983
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmaVMNic2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2\",\r\n
+ \ \"etag\": \"W/\\\"d9f11145-3aa9-40dc-8d4c-de27a78d9398\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"822d753d-0395-434a-b654-a58dff662fca\",\r\n
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvma2\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2/ipConfigurations/ipconfigvma2\",\r\n
+ \ \"etag\": \"W/\\\"d9f11145-3aa9-40dc-8d4c-de27a78d9398\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\":
+ \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet1\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
+ \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
+ [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
+ \"k34xkboljgzefkdcidegnmqzug.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-14-AB-63\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmaNSG\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma2\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2570'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:15 GMT
+ etag:
+ - W/"d9f11145-3aa9-40dc-8d4c-de27a78d9398"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - 123234cd-680c-4fbc-9882-ce2dad238542
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmaPublicIP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmaPublicIP2\",\r\n
+ \ \"etag\": \"W/\\\"260851dc-f104-4542-b3db-ee4ccf70d27f\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"5fcdcaa3-1ca1-49da-9004-d3ae1ed42226\",\r\n
+ \ \"ipAddress\": \"40.112.57.15\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2/ipConfigurations/ipconfigvma2\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '1000'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 05:38:15 GMT
+ etag:
+ - W/"260851dc-f104-4542-b3db-ee4ccf70d27f"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - b6477840-a666-4b39-9cc2-63c2b5ef7ad6
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001","name":"cli_test_vm_create_count_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-03-15T05:57:30Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001","name":"cli_test_vm_create_count_000001","type":"Microsoft.Resources/resourceGroups","location":"eastus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T05:36:29Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +2609,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:57:34 GMT
+ - Thu, 15 Apr 2021 05:38:15 GMT
expires:
- '-1'
pragma:
@@ -109,13 +2688,13 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:57:35 GMT
+ - Thu, 15 Apr 2021 05:38:16 GMT
etag:
- W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
expires:
- - Mon, 15 Mar 2021 06:02:35 GMT
+ - Thu, 15 Apr 2021 05:43:16 GMT
source-age:
- - '165'
+ - '118'
strict-transport-security:
- max-age=31536000
vary:
@@ -129,15 +2708,15 @@ interactions:
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 658b2c9c0cb67aa06eab33f2d7c3bc5d25be386b
+ - 50f90eee7652b0196dd4d028917bac45496b124b
x-frame-options:
- deny
x-github-request-id:
- - 693A:7502:309D79:40D758:604D837C
+ - 6736:0EE9:DD86D:11B8EF:6077A1F9
x-served-by:
- - cache-sin18023-SIN
+ - cache-qpg1252-QPG
x-timer:
- - S1615787855.317735,VS0,VE1
+ - S1618465096.494886,VS0,VE0
x-xss-protection:
- 1; mode=block
status:
@@ -147,7 +2726,7 @@ interactions:
body: null
headers:
Accept:
- - application/json, text/json
+ - application/json
Accept-Encoding:
- gzip, deflate
CommandName:
@@ -155,23 +2734,750 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network?api-version=2020-10-01
response:
body:
- string: '{"value":[]}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network","namespace":"Microsoft.Network","authorizations":[{"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"},{"applicationId":"b4ca0290-4e73-4e31-ade0-c82ecfaabf6a","roleDefinitionId":"18363e25-ff21-4159-ae8d-7dfecb5bd001"},{"applicationId":"79d7fb34-4bef-4417-8184-ff713af7a679","roleDefinitionId":"1c1f11ef-abfa-4abe-a02b-226771d07fc7"}],"resourceTypes":[{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01"],"defaultApiVersion":"2020-06-01","zoneMappings":[{"location":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"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
+ India","West India","Canada Central","Canada East","West Central US","West
+ US 2","UK West","UK South","Korea Central","Korea South","France Central","South
+ Africa North","UAE North","Switzerland North","Germany West Central","Norway
+ East","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","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
+ 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","France
+ South","Australia Central","South Africa North","UAE North","Switzerland North","Germany
+ West Central","Norway East","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"locationMappings":[{"location":"East US 2 EUAP","type":"EdgeZone","extendedLocations":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"capabilities":"CrossResourceGroupResourceMove,
+ CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"},{"resourceType":"ddosCustomPolicies","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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":"virtualNetworkGateways","locations":["West
+ US","East US","North Europe","West Europe","East Asia","Southeast Asia","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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"capabilities":"SupportsTags, SupportsLocation"},{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","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","locations":[],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01"],"capabilities":"None"},{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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":"dnszones","locations":["global"],"apiVersions":["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":["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":["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":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"internalNotify","locations":["global"],"apiVersions":["2018-05-01"],"defaultApiVersion":"2018-05-01","capabilities":"None"},{"resourceType":"dnszones/A","locations":["global"],"apiVersions":["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":["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":["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":["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":["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":["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":["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":["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":["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":["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/recordsets","locations":["global"],"apiVersions":["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":["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":"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":"dnsResolvers","locations":["West
+ Central US","East US 2","West Europe","Central US EUAP","East US 2 EUAP"],"apiVersions":["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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationResults","locations":[],"apiVersions":["2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"locations/dnsResolverOperationStatuses","locations":[],"apiVersions":["2020-04-01-preview"],"defaultApiVersion":"2020-04-01-preview","capabilities":"None"},{"resourceType":"trafficmanagerprofiles","locations":["global"],"apiVersions":["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":["2018-08-01","2018-04-01","2018-03-01","2018-02-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"checkTrafficManagerNameAvailability","locations":["global"],"apiVersions":["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":"trafficManagerUserMetricsKeys","locations":["global"],"apiVersions":["2018-08-01","2018-04-01","2017-09-01-preview"],"defaultApiVersion":"2018-08-01","capabilities":"None"},{"resourceType":"trafficManagerGeographicHierarchies","locations":["global"],"apiVersions":["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":"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","2017-11-01","2017-10-01","2017-09-01","2017-08-01","2017-06-01","2017-04-01","2017-03-01","2016-12-01","2016-11-01","2016-10-01","2016-09-01","2016-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","2018-05-01","2018-04-01","2018-03-01","2018-02-01","2018-01-01","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":"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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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":"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 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","South
+ Africa North","Switzerland North","Germany West Central","Norway East","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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
+ 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","UAE
+ North","South Africa North","Switzerland North","Germany West Central","Norway
+ East","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["France
+ Central"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":"firewallPolicies","locations":["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 East","South India","Germany West Central","Norway
+ East","Norway West","South Africa North","East Asia","Southeast Asia","Korea
+ Central","Brazil South","Brazil Southeast","Japan East","UK 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","Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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":["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 East","South India","Germany West Central","Norway East","Norway
+ West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil
+ South","Japan East","UK West","West US","East 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","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":["2020-11-01","2020-08-01"],"defaultApiVersion":"2020-08-01","capabilities":"None"},{"resourceType":"locations/nfvOperations","locations":[],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"resourceType":"locations/nfvOperationResults","locations":[],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01"],"capabilities":"None"},{"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
+ 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","Central US
+ EUAP","East US 2 EUAP"],"apiVersions":["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
+ East","Australia Southeast","Central India","South India","West India","Canada
+ Central","Canada East","West Central US","West US 2","UK West","UK South","France
+ Central","Australia Central","Japan West","Japan East","Korea Central","Korea
+ South","South Africa North","UAE North","Switzerland North","Germany West
+ Central","Norway East","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","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":"East
+ US 2","zones":["2","3","1"]},{"location":"Central US","zones":["2","3","1"]},{"location":"West
+ Europe","zones":["2","3","1"]},{"location":"East US 2 EUAP","zones":["1","2","3"]},{"location":"Central
+ US EUAP","zones":["1","2"]},{"location":"France Central","zones":["2","3","1"]},{"location":"Southeast
+ Asia","zones":["2","3","1"]},{"location":"West US 2","zones":["2","3","1"]},{"location":"North
+ Europe","zones":["2","3","1"]},{"location":"East US","zones":["2","3","1"]},{"location":"UK
+ South","zones":["2","3","1"]},{"location":"Japan East","zones":["2","3","1"]},{"location":"Australia
+ East","zones":["2","3","1"]},{"location":"South Africa North","zones":[]},{"location":"South
+ Central US","zones":["2","3","1"]},{"location":"Canada Central","zones":["2","3","1"]},{"location":"Germany
+ West Central","zones":["2","3","1"]},{"location":"Brazil South","zones":["2","3","1"]},{"location":"Central
+ India","zones":[]},{"location":"Korea Central","zones":[]},{"location":"Norway
+ East","zones":[]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","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":["eastus2euapmockedge","microsoftrrdclab1","microsoftrrdclab2","microsoftrrdclab3"]},{"location":"West
+ US","type":"EdgeZone","extendedLocations":["microsoftlosangeles1"]}],"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","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":"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":["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
+ 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":["2020-11-01","2020-04-01","2019-10-01","2019-03-01"],"defaultApiVersion":"2020-11-01","capabilities":"None"},{"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
+ 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","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":"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 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","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","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"virtualRouters","locations":["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 East","South India","Germany West Central","Norway East","Norway
+ West","South Africa North","East Asia","Southeast Asia","Korea Central","Brazil
+ South","Japan East","UK 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["2020-08-01","2020-07-01","2020-06-01","2020-05-01","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-04-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"networkVirtualAppliances","locations":["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 East","South India","Germany West Central","Norway
+ East","Norway West","South Africa North","East Asia","Southeast Asia","Korea
+ Central","Brazil South","Japan East","UK 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","Central US EUAP","East
+ US 2 EUAP"],"apiVersions":["2020-11-01","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":"SupportsTags,
+ SupportsLocation"},{"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 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","Central US EUAP","East US 2 EUAP"],"apiVersions":["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/commitInternalAzureNetworkManagerConfiguration","locations":["West
+ Central US","East US 2 EUAP","Central US EUAP"],"apiVersions":["2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2019-12-01","2019-11-01"],"capabilities":"None"},{"resourceType":"networkVirtualApplianceSkus","locations":[],"apiVersions":["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":"networkWatchers/lenses","locations":["Central
+ US EUAP","East US 2 EUAP"],"apiVersions":["2020-11-01","2020-08-01","2020-07-01","2020-06-01","2020-05-01","2020-04-01","2020-03-01","2020-01-01","2019-12-01","2019-11-01","2019-09-01","2019-08-01","2019-07-01","2019-06-01","2019-04-01","2019-02-01","2018-12-01","2018-11-01","2018-10-01","2018-08-01","2018-07-01","2018-06-01","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":"frontdoorOperationResults","locations":["global"],"apiVersions":["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
+ East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"frontdoors/frontendEndpoints","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
+ East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoors/frontendEndpoints/customHttpsConfiguration","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
+ East","Australia Southeast"],"apiVersions":["2020-07-01","2020-05-01","2020-04-01","2020-01-01","2019-08-01","2019-05-01","2019-04-01","2018-08-01"],"defaultApiVersion":"2020-07-01","capabilities":"None"},{"resourceType":"frontdoorWebApplicationFirewallPolicies","locations":["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 East","Australia
+ Southeast"],"apiVersions":["2020-11-01","2020-04-01","2019-10-01","2019-03-01","2018-08-01"],"defaultApiVersion":"2020-11-01","capabilities":"SupportsTags,
+ SupportsLocation"},{"resourceType":"networkExperimentProfiles","locations":["Central
+ US EUAP","East US 2 EUAP","global","Central US","East US","East US 2","North
+ Central US","South Central US","West US","West US 2","North Europe","West
+ 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"}],"registrationState":"Registered","registrationPolicy":"RegistrationRequired"}'
headers:
cache-control:
- no-cache
content-length:
- - '12'
+ - '110323'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:57:35 GMT
+ - Thu, 15 Apr 2021 05:38:17 GMT
expires:
- '-1'
pragma:
@@ -186,40 +3492,7 @@ interactions:
code: 200
message: OK
- request:
- body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
- "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources":
- [{"name": "vmVNET", "type": "Microsoft.Network/virtualNetworks", "location":
- "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties":
- {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name":
- "vmSubnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": "Microsoft.Network/networkSecurityGroups",
- "name": "vmNSG", "apiVersion": "2015-06-15", "location": "westus", "tags": {},
- "dependsOn": []}, {"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses",
- "name": "[concat(''vmPublicIP'', copyIndex())]", "location": "westus", "tags":
- {}, "dependsOn": [], "properties": {"publicIPAllocationMethod": null}, "copy":
- {"name": "publicipcopy", "count": 3}}, {"apiVersion": "2015-06-15", "type":
- "Microsoft.Network/networkInterfaces", "name": "[concat(''vmVMNic'', copyIndex())]",
- "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vmVNET",
- "Microsoft.Network/networkSecurityGroups/vmNSG", "Microsoft.Network/publicIpAddresses/vmPublicIP0",
- "Microsoft.Network/publicIpAddresses/vmPublicIP1", "Microsoft.Network/publicIpAddresses/vmPublicIP2"],
- "properties": {"ipConfigurations": [{"name": "[concat(''ipconfigvm'', copyIndex())]",
- "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET/subnets/vmSubnet"},
- "publicIPAddress": {"id": "[concat(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP'',
- copyIndex())]"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG"}},
- "copy": {"name": "niccopy", "count": 3}}, {"apiVersion": "2020-12-01", "type":
- "Microsoft.Compute/virtualMachines", "name": "[concat(''vm'', copyIndex())]",
- "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vmVMNic0",
- "Microsoft.Network/networkInterfaces/vmVMNic1", "Microsoft.Network/networkInterfaces/vmVMNic2"],
- "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile":
- {"networkInterfaces": [{"id": "[concat(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic'',
- copyIndex())]"}]}, "storageProfile": {"osDisk": {"createOption": "fromImage",
- "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType":
- null}}, "imageReference": {"publisher": "OpenLogic", "offer": "CentOS", "sku":
- "7.5", "version": "latest"}}, "osProfile": {"computerName": "[concat(''vm'',
- copyIndex())]", "adminUsername": "fey", "linuxConfiguration": {"disablePasswordAuthentication":
- true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
- fey@DESKTOP-ARGPJS4\n", "path": "/home/fey/.ssh/authorized_keys"}]}}}}, "copy":
- {"name": "vmcopy", "count": 3}}], "outputs": {}}, "parameters": {}, "mode":
- "Incremental"}}'
+ body: null
headers:
Accept:
- application/json
@@ -229,91 +3502,85 @@ interactions:
- vm create
Connection:
- keep-alive
- Content-Length:
- - '3865'
- Content-Type:
- - application/json; charset=utf-8
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
- response:
- body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/vm_deploy_6VJVPf8ghKc4pTq3mPVMMBaB3NXOnbqk","name":"vm_deploy_6VJVPf8ghKc4pTq3mPVMMBaB3NXOnbqk","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17180818393530462103","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-03-15T05:57:40.4840703Z","duration":"PT2.4968741S","correlationId":"c258c576-5467-47e5-81f6-8259aa14b16e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic2"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm0","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}]}}'
- headers:
- azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/vm_deploy_6VJVPf8ghKc4pTq3mPVMMBaB3NXOnbqk/operationStatuses/08585858190274904543?api-version=2020-10-01
- cache-control:
- - no-cache
- content-length:
- - '9667'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 15 Mar 2021 05:57:41 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
- status:
- code: 201
- message: Created
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vm create
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585858190274904543?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet2?api-version=2020-11-01
response:
body:
- string: '{"status":"Running"}'
+ string: "{\r\n \"name\": \"subnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet2\",\r\n
+ \ \"etag\": \"W/\\\"e09b988f-d650-444d-bf2a-bd2571f03684\\\"\",\r\n \"properties\":
+ {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n
+ \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n
+ \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\":
+ \"Microsoft.Network/virtualNetworks/subnets\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '20'
+ - '585'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:58:12 GMT
+ - Thu, 15 Apr 2021 05:38:17 GMT
+ etag:
+ - W/"e09b988f-d650-444d-bf2a-bd2571f03684"
expires:
- '-1'
pragma:
- no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-arm-service-request-id:
+ - 57668122-511d-4945-8cf7-349191d771a8
status:
code: 200
message: OK
- request:
- body: null
+ body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources":
+ [{"type": "Microsoft.Network/networkSecurityGroups", "name": "vmbNSG", "apiVersion":
+ "2015-06-15", "location": "eastus", "tags": {}, "dependsOn": []}, {"apiVersion":
+ "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "[concat(''vmbPublicIP'',
+ copyIndex())]", "location": "eastus", "tags": {}, "dependsOn": [], "properties":
+ {"publicIPAllocationMethod": null}, "copy": {"name": "publicipcopy", "mode":
+ "parallel", "count": 3}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces",
+ "name": "[concat(''vmbVMNic'', copyIndex())]", "location": "eastus", "tags":
+ {}, "dependsOn": ["Microsoft.Network/networkSecurityGroups/vmbNSG", "Microsoft.Network/publicIpAddresses/vmbPublicIP0",
+ "Microsoft.Network/publicIpAddresses/vmbPublicIP1", "Microsoft.Network/publicIpAddresses/vmbPublicIP2"],
+ "properties": {"ipConfigurations": [{"name": "[concat(''ipconfigvmb'', copyIndex())]",
+ "properties": {"privateIPAllocationMethod": "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet2"},
+ "publicIPAddress": {"id": "[concat(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP'',
+ copyIndex())]"}}}], "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG"}},
+ "copy": {"name": "niccopy", "mode": "parallel", "count": 3}}, {"apiVersion":
+ "2020-12-01", "type": "Microsoft.Compute/virtualMachines", "name": "[concat(''vmb'',
+ copyIndex())]", "location": "eastus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vmbVMNic0",
+ "Microsoft.Network/networkInterfaces/vmbVMNic1", "Microsoft.Network/networkInterfaces/vmbVMNic2"],
+ "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile":
+ {"networkInterfaces": [{"id": "[concat(''/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic'',
+ copyIndex())]"}]}, "storageProfile": {"osDisk": {"createOption": "fromImage",
+ "name": null, "caching": "ReadWrite", "managedDisk": {"storageAccountType":
+ null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer",
+ "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerName": "[concat(''vmb'',
+ copyIndex())]", "adminUsername": "fey", "linuxConfiguration": {"disablePasswordAuthentication":
+ true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\n", "path": "/home/fey/.ssh/authorized_keys"}]}}}, "securityProfile":
+ {}}, "copy": {"name": "vmcopy", "mode": "parallel", "count": 3}}], "outputs":
+ {}}, "parameters": {}, "mode": "Incremental"}}'
headers:
Accept:
- application/json
@@ -323,38 +3590,46 @@ interactions:
- vm create
Connection:
- keep-alive
+ Content-Length:
+ - '3632'
+ Content-Type:
+ - application/json; charset=utf-8
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585858190274904543?api-version=2020-10-01
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"status":"Running"}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/vm_deploy_IPt61ZRAA9IWEuBACjbuuyGtX65e7lyn","name":"vm_deploy_IPt61ZRAA9IWEuBACjbuuyGtX65e7lyn","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1257765703180634285","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-15T05:38:23.5867373Z","duration":"PT2.802911S","correlationId":"0472f0fa-e250-4580-b6e3-e56451a99843","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmbNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmbNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmbNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic2"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb0","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmb0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmb1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmb2"}]}}'
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/vm_deploy_IPt61ZRAA9IWEuBACjbuuyGtX65e7lyn/operationStatuses/08585831417846938150?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '20'
+ - '8827'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:58:43 GMT
+ - Thu, 15 Apr 2021 05:38:24 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1198'
status:
- code: 200
- message: OK
+ code: 201
+ message: Created
- request:
body: null
headers:
@@ -367,12 +3642,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585858190274904543?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831417846938150?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -384,7 +3659,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:13 GMT
+ - Thu, 15 Apr 2021 05:38:55 GMT
expires:
- '-1'
pragma:
@@ -410,12 +3685,12 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585858190274904543?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585831417846938150?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -427,7 +3702,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:43 GMT
+ - Thu, 15 Apr 2021 05:39:26 GMT
expires:
- '-1'
pragma:
@@ -453,24 +3728,24 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.20.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/vm_deploy_6VJVPf8ghKc4pTq3mPVMMBaB3NXOnbqk","name":"vm_deploy_6VJVPf8ghKc4pTq3mPVMMBaB3NXOnbqk","type":"Microsoft.Resources/deployments","properties":{"templateHash":"17180818393530462103","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-03-15T05:59:29.9302941Z","duration":"PT1M51.9430979S","correlationId":"c258c576-5467-47e5-81f6-8259aa14b16e","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic2"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm0","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Resources/deployments/vm_deploy_IPt61ZRAA9IWEuBACjbuuyGtX65e7lyn","name":"vm_deploy_IPt61ZRAA9IWEuBACjbuuyGtX65e7lyn","type":"Microsoft.Resources/deployments","properties":{"templateHash":"1257765703180634285","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-15T05:39:01.684379Z","duration":"PT40.9005527S","correlationId":"0472f0fa-e250-4580-b6e3-e56451a99843","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"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/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmbNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmbNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmbNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmbPublicIP2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic2"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb0","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmb0"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmb1"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmbVMNic2"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb2","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vmb2"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '11966'
+ - '10931'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:43 GMT
+ - Thu, 15 Apr 2021 05:39:26 GMT
expires:
- '-1'
pragma:
@@ -496,27 +3771,27 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm0?$expand=instanceView&api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb0?$expand=instanceView&api-version=2020-12-01
response:
body:
- string: "{\r\n \"name\": \"vm0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm0\",\r\n
- \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0bc0ab30-0b3e-41c0-bc7b-488fa2eff154\",\r\n
+ string: "{\r\n \"name\": \"vmb0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb0\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"97f1e206-0ad4-4823-aeb5-6a15a6b88a98\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
- \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
- \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
- \"vm0_OsDisk_1_bf6a543468d14dcca754b42e10d4dd23\",\r\n \"createOption\":
- \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
- {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vm0_OsDisk_1_bf6a543468d14dcca754b42e10d4dd23\"\r\n
+ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
+ \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
+ \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
+ \"Linux\",\r\n \"name\": \"vmb0_disk1_d56941b567a047ac9680d08d84bb1100\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vmb0_disk1_d56941b567a047ac9680d08d84bb1100\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm0\",\r\n
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb0\",\r\n
\ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
\ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
@@ -525,22 +3800,22 @@ interactions:
\ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
\"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
- {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0\"}]},\r\n
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0\"}]},\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
- \"vm0\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n
- \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53.1\",\r\n \"statuses\":
+ \"vmb0\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
\ \"message\": \"Guest Agent is running\",\r\n \"time\":
- \"2021-03-15T05:59:18+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
- []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm0_OsDisk_1_bf6a543468d14dcca754b42e10d4dd23\",\r\n
+ \"2021-04-15T05:39:27+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmb0_disk1_d56941b567a047ac9680d08d84bb1100\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-03-15T05:58:07.3192843+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T05:38:44.8275594+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-03-15T05:59:15.4310025+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T05:38:55.0619626+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -548,11 +3823,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '3832'
+ - '3842'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:44 GMT
+ - Thu, 15 Apr 2021 05:39:27 GMT
expires:
- '-1'
pragma:
@@ -569,7 +3844,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31981
+ - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31976
status:
code: 200
message: OK
@@ -585,46 +3860,46 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0?api-version=2018-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0?api-version=2018-01-01
response:
body:
- string: "{\r\n \"name\": \"vmVMNic0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0\",\r\n
- \ \"etag\": \"W/\\\"5b964338-50c8-4d2f-b02b-6ef83c584694\\\"\",\r\n \"location\":
- \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"94413c94-c685-4e09-89f6-744e2c507583\",\r\n
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm0\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0/ipConfigurations/ipconfigvm0\",\r\n
- \ \"etag\": \"W/\\\"5b964338-50c8-4d2f-b02b-6ef83c584694\\\"\",\r\n
+ string: "{\r\n \"name\": \"vmbVMNic0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0\",\r\n
+ \ \"etag\": \"W/\\\"64df9c31-3224-476c-8f00-8c21fdcbbba0\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"ca6f2974-4d2b-4ddb-9520-74cf9bee55fd\",\r\n
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmb0\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0/ipConfigurations/ipconfigvmb0\",\r\n
+ \ \"etag\": \"W/\\\"64df9c31-3224-476c-8f00-8c21fdcbbba0\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"privateIPAddress\": \"10.0.0.6\",\r\n \"privateIPAllocationMethod\":
- \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET/subnets/vmSubnet\"\r\n
+ \ \"privateIPAddress\": \"10.0.1.5\",\r\n \"privateIPAllocationMethod\":
+ \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet2\"\r\n
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"hi42fgollake1fzt322kfucrda.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-22-48-03-A5-98\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"k34xkboljgzefkdcidegnmqzug.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-9E-85-3E\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm0\"\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb0\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2565'
+ - '2570'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:45 GMT
+ - Thu, 15 Apr 2021 05:39:27 GMT
etag:
- - W/"5b964338-50c8-4d2f-b02b-6ef83c584694"
+ - W/"64df9c31-3224-476c-8f00-8c21fdcbbba0"
expires:
- '-1'
pragma:
@@ -641,7 +3916,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - ffabe42b-891b-4153-bc76-c59b8d1e2b6d
+ - 635f1811-1df1-4145-9e4f-ef6525944eae
status:
code: 200
message: OK
@@ -657,33 +3932,33 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0?api-version=2018-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0?api-version=2018-01-01
response:
body:
- string: "{\r\n \"name\": \"vmPublicIP0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP0\",\r\n
- \ \"etag\": \"W/\\\"4aadc205-8985-4c79-92a5-15a2d213945c\\\"\",\r\n \"location\":
- \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"9cadcb37-ade3-4c78-9a16-6b03fd9c96ca\",\r\n
- \ \"ipAddress\": \"104.45.223.242\",\r\n \"publicIPAddressVersion\":
- \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
- 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0/ipConfigurations/ipconfigvm0\"\r\n
+ string: "{\r\n \"name\": \"vmbPublicIP0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP0\",\r\n
+ \ \"etag\": \"W/\\\"e4222728-821c-4b40-b4f9-8bb55fd2700c\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"0664aef4-5edf-422f-880d-41faed71a178\",\r\n
+ \ \"ipAddress\": \"40.85.189.170\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0/ipConfigurations/ipconfigvmb0\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '998'
+ - '1001'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:45 GMT
+ - Thu, 15 Apr 2021 05:39:28 GMT
etag:
- - W/"4aadc205-8985-4c79-92a5-15a2d213945c"
+ - W/"e4222728-821c-4b40-b4f9-8bb55fd2700c"
expires:
- '-1'
pragma:
@@ -700,7 +3975,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 4fb25c72-841f-4957-97fb-9dcf624a5701
+ - b251c930-f380-4d27-84ad-dd4d79c400c5
status:
code: 200
message: OK
@@ -716,27 +3991,27 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb1?$expand=instanceView&api-version=2020-12-01
response:
body:
- string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
- \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1b23f7c2-b371-42d3-874b-02800e555e2a\",\r\n
+ string: "{\r\n \"name\": \"vmb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb1\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"62b2e026-92a0-4596-8727-c84ca653a4c4\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
- \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
- \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
- \"vm1_OsDisk_1_04f95e53260d46d1bddf53477d02587a\",\r\n \"createOption\":
- \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
- {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_04f95e53260d46d1bddf53477d02587a\"\r\n
+ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
+ \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
+ \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
+ \"Linux\",\r\n \"name\": \"vmb1_disk1_4508afa20990406a8c15be414d500051\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vmb1_disk1_4508afa20990406a8c15be414d500051\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb1\",\r\n
\ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
\ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
@@ -745,22 +4020,22 @@ interactions:
\ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
\"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
- {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1\"}]},\r\n
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1\"}]},\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
- \"vm1\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n
- \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53.1\",\r\n \"statuses\":
+ \"vmb1\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
\ \"message\": \"Guest Agent is running\",\r\n \"time\":
- \"2021-03-15T05:59:42+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
- []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm1_OsDisk_1_04f95e53260d46d1bddf53477d02587a\",\r\n
+ \"2021-04-15T05:39:28+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmb1_disk1_4508afa20990406a8c15be414d500051\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-03-15T05:58:07.6317883+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T05:38:45.5619294+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-03-15T05:59:14.5716359+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T05:39:00.1557345+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -768,11 +4043,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '3832'
+ - '3842'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:46 GMT
+ - Thu, 15 Apr 2021 05:39:29 GMT
expires:
- '-1'
pragma:
@@ -789,7 +4064,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31980
+ - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31975
status:
code: 200
message: OK
@@ -805,46 +4080,46 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1?api-version=2018-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1?api-version=2018-01-01
response:
body:
- string: "{\r\n \"name\": \"vmVMNic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1\",\r\n
- \ \"etag\": \"W/\\\"987b4d1b-b7e2-4333-b1ce-53b72e514bc5\\\"\",\r\n \"location\":
- \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"8dae5ced-86bb-45d5-a754-b9baa24e6aa0\",\r\n
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1/ipConfigurations/ipconfigvm1\",\r\n
- \ \"etag\": \"W/\\\"987b4d1b-b7e2-4333-b1ce-53b72e514bc5\\\"\",\r\n
+ string: "{\r\n \"name\": \"vmbVMNic1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1\",\r\n
+ \ \"etag\": \"W/\\\"d065a0a7-425a-4bfc-bec0-88a86709a577\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"eb6e00f9-5ff5-4749-8d29-a43e1b23e655\",\r\n
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmb1\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1/ipConfigurations/ipconfigvmb1\",\r\n
+ \ \"etag\": \"W/\\\"d065a0a7-425a-4bfc-bec0-88a86709a577\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
- \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET/subnets/vmSubnet\"\r\n
+ \ \"privateIPAddress\": \"10.0.1.6\",\r\n \"privateIPAllocationMethod\":
+ \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet2\"\r\n
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"hi42fgollake1fzt322kfucrda.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-22-48-03-AC-F4\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"k34xkboljgzefkdcidegnmqzug.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-1A-8C-4C\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2565'
+ - '2570'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:47 GMT
+ - Thu, 15 Apr 2021 05:39:30 GMT
etag:
- - W/"987b4d1b-b7e2-4333-b1ce-53b72e514bc5"
+ - W/"d065a0a7-425a-4bfc-bec0-88a86709a577"
expires:
- '-1'
pragma:
@@ -861,7 +4136,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - e8803900-7c61-45d0-9c6a-f4e6538365e0
+ - e0ad0cc0-11f6-407d-92d1-c6f0c2309d42
status:
code: 200
message: OK
@@ -877,33 +4152,33 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1?api-version=2018-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1?api-version=2018-01-01
response:
body:
- string: "{\r\n \"name\": \"vmPublicIP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP1\",\r\n
- \ \"etag\": \"W/\\\"3bc6d41e-7d7b-4889-adbc-2ec3c47fc7d9\\\"\",\r\n \"location\":
- \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"a113748c-f354-4bd4-859b-d7b7aa545b6d\",\r\n
- \ \"ipAddress\": \"104.45.222.5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ string: "{\r\n \"name\": \"vmbPublicIP1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP1\",\r\n
+ \ \"etag\": \"W/\\\"9bbc11b0-226b-438f-abd3-7963cf3a2f1b\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"d678596c-6283-4a4b-b0cf-090b95d22579\",\r\n
+ \ \"ipAddress\": \"40.85.189.186\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
\ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
- 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1/ipConfigurations/ipconfigvm1\"\r\n
+ 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1/ipConfigurations/ipconfigvmb1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '996'
+ - '1001'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:47 GMT
+ - Thu, 15 Apr 2021 05:39:31 GMT
etag:
- - W/"3bc6d41e-7d7b-4889-adbc-2ec3c47fc7d9"
+ - W/"9bbc11b0-226b-438f-abd3-7963cf3a2f1b"
expires:
- '-1'
pragma:
@@ -920,7 +4195,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 19767fc7-23ff-49ab-b921-6e1483091eda
+ - c4fa0e25-5411-4fba-af52-0b70566ce05f
status:
code: 200
message: OK
@@ -936,27 +4211,27 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm2?$expand=instanceView&api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb2?$expand=instanceView&api-version=2020-12-01
response:
body:
- string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n
- \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b09b94a6-88f5-4438-83bb-c14c3000bce0\",\r\n
+ string: "{\r\n \"name\": \"vmb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb2\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5d4c19d8-087c-4d98-9d42-7b8828c0911d\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
- \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
- \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
- \"vm2_OsDisk_1_3baf00b4f03045419faffcc34bc89a3c\",\r\n \"createOption\":
- \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
- {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_3baf00b4f03045419faffcc34bc89a3c\"\r\n
+ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
+ \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
+ \"18.04.202103250\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
+ \"Linux\",\r\n \"name\": \"vmb2_disk1_538d8ed161cc48089b36372c09a09b1c\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vmb2_disk1_538d8ed161cc48089b36372c09a09b1c\"\r\n
\ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2\",\r\n
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vmb2\",\r\n
\ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
\ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
@@ -965,22 +4240,22 @@ interactions:
\ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
\"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
- {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2\"}]},\r\n
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2\"}]},\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
- \"vm2\",\r\n \"osName\": \"centos\",\r\n \"osVersion\": \"7.5.1804\",\r\n
- \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.53.1\",\r\n \"statuses\":
+ \"vmb2\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
\ \"message\": \"Guest Agent is running\",\r\n \"time\":
- \"2021-03-15T05:59:31+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
- []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm2_OsDisk_1_3baf00b4f03045419faffcc34bc89a3c\",\r\n
+ \"2021-04-15T05:39:31+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vmb2_disk1_538d8ed161cc48089b36372c09a09b1c\",\r\n
\ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-03-15T05:58:08.7724078+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T05:38:45.6088406+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
- succeeded\",\r\n \"time\": \"2021-03-15T05:59:28.6033502+00:00\"\r\n
+ succeeded\",\r\n \"time\": \"2021-04-15T05:38:58.2963407+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
@@ -988,11 +4263,11 @@ interactions:
cache-control:
- no-cache
content-length:
- - '3832'
+ - '3842'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:48 GMT
+ - Thu, 15 Apr 2021 05:39:31 GMT
expires:
- '-1'
pragma:
@@ -1009,7 +4284,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31979
+ - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31974
status:
code: 200
message: OK
@@ -1025,46 +4300,46 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2?api-version=2018-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2?api-version=2018-01-01
response:
body:
- string: "{\r\n \"name\": \"vmVMNic2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2\",\r\n
- \ \"etag\": \"W/\\\"d10200b9-e8d1-4e8d-90e3-3d4c4fbeab26\\\"\",\r\n \"location\":
- \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"50f82dea-ff66-4732-8406-3cf8a50c23fd\",\r\n
- \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm2\",\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2/ipConfigurations/ipconfigvm2\",\r\n
- \ \"etag\": \"W/\\\"d10200b9-e8d1-4e8d-90e3-3d4c4fbeab26\\\"\",\r\n
+ string: "{\r\n \"name\": \"vmbVMNic2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2\",\r\n
+ \ \"etag\": \"W/\\\"29f0b79f-f033-4d2d-b7f5-a0ec51d12c5b\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"2f16987d-f54b-44d8-84fe-fbcb76fd198e\",\r\n
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvmb2\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2/ipConfigurations/ipconfigvmb2\",\r\n
+ \ \"etag\": \"W/\\\"29f0b79f-f033-4d2d-b7f5-a0ec51d12c5b\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"privateIPAddress\": \"10.0.0.5\",\r\n \"privateIPAllocationMethod\":
- \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2\"\r\n
- \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vmVNET/subnets/vmSubnet\"\r\n
+ \ \"privateIPAddress\": \"10.0.1.4\",\r\n \"privateIPAllocationMethod\":
+ \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/virtualNetworks/vnet/subnets/subnet2\"\r\n
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
- \"hi42fgollake1fzt322kfucrda.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
- \"00-22-48-03-A4-8C\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \"k34xkboljgzefkdcidegnmqzug.bx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-4F-B7-4F\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
- \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG\"\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkSecurityGroups/vmbNSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm2\"\r\n
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb2\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2565'
+ - '2570'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:49 GMT
+ - Thu, 15 Apr 2021 05:39:32 GMT
etag:
- - W/"d10200b9-e8d1-4e8d-90e3-3d4c4fbeab26"
+ - W/"29f0b79f-f033-4d2d-b7f5-a0ec51d12c5b"
expires:
- '-1'
pragma:
@@ -1081,7 +4356,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 1a5d95ae-a1ec-463f-967b-323208fa35a9
+ - aa9f3a6c-1d6e-4768-89c1-2b50d50ebf1b
status:
code: 200
message: OK
@@ -1097,33 +4372,33 @@ interactions:
Connection:
- keep-alive
ParameterSetName:
- - -g -n --image --count --nsg-rule --generate-ssh-keys
+ - -g -n --image --count --vnet-name --subnet --nsg-rule --generate-ssh-keys
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-network/17.1.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2?api-version=2018-01-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2?api-version=2018-01-01
response:
body:
- string: "{\r\n \"name\": \"vmPublicIP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP2\",\r\n
- \ \"etag\": \"W/\\\"eea61da6-00b0-47e5-90cc-f3c14fd47de9\\\"\",\r\n \"location\":
- \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"resourceGuid\": \"94b17a08-08d5-495f-b2c7-e6b409342bbb\",\r\n
- \ \"ipAddress\": \"104.45.215.170\",\r\n \"publicIPAddressVersion\":
- \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
- 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2/ipConfigurations/ipconfigvm2\"\r\n
+ string: "{\r\n \"name\": \"vmbPublicIP2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/publicIPAddresses/vmbPublicIP2\",\r\n
+ \ \"etag\": \"W/\\\"75c1e6c3-17f4-4b75-a831-2dbee97d9318\\\"\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"f7eab494-f2a7-4a8f-beb6-5934f58a8d8c\",\r\n
+ \ \"ipAddress\": \"40.85.189.207\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2/ipConfigurations/ipconfigvmb2\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '998'
+ - '1001'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:49 GMT
+ - Thu, 15 Apr 2021 05:39:32 GMT
etag:
- - W/"eea61da6-00b0-47e5-90cc-f3c14fd47de9"
+ - W/"75c1e6c3-17f4-4b75-a831-2dbee97d9318"
expires:
- '-1'
pragma:
@@ -1140,151 +4415,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- - 9cc648b8-3922-495e-aa13-9c95537ceae2
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vm show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm0?api-version=2020-12-01
- response:
- body:
- string: "{\r\n \"name\": \"vm0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm0\",\r\n
- \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0bc0ab30-0b3e-41c0-bc7b-488fa2eff154\",\r\n
- \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
- \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
- \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
- \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
- \"vm0_OsDisk_1_bf6a543468d14dcca754b42e10d4dd23\",\r\n \"createOption\":
- \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
- {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vm0_OsDisk_1_bf6a543468d14dcca754b42e10d4dd23\"\r\n
- \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm0\",\r\n
- \ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
- \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
- \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
- fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
- \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
- \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
- true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
- {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic0\"}]},\r\n
- \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2535'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 15 Mar 2021 05:59:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3984,Microsoft.Compute/LowCostGet30Min;31978
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vm show
- Connection:
- - keep-alive
- ParameterSetName:
- - -g -n
- User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-12-01
- response:
- body:
- string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
- \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"1b23f7c2-b371-42d3-874b-02800e555e2a\",\r\n
- \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
- \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
- \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
- \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
- \"vm1_OsDisk_1_04f95e53260d46d1bddf53477d02587a\",\r\n \"createOption\":
- \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
- {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vm1_OsDisk_1_04f95e53260d46d1bddf53477d02587a\"\r\n
- \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n
- \ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
- \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
- \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
- fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
- \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
- \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
- true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
- {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic1\"}]},\r\n
- \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '2535'
- content-type:
- - application/json; charset=utf-8
- date:
- - Mon, 15 Mar 2021 05:59:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3983,Microsoft.Compute/LowCostGet30Min;31977
+ - d141065f-85d2-4b7e-bed1-b509e71fc55f
status:
code: 200
message: OK
@@ -1296,50 +4427,189 @@ interactions:
Accept-Encoding:
- gzip, deflate
CommandName:
- - vm show
+ - vm list
Connection:
- keep-alive
ParameterSetName:
- - -g -n
+ - -g
User-Agent:
- - AZURECLI/2.20.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm2?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines?api-version=2020-12-01
response:
body:
- string: "{\r\n \"name\": \"vm2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vm2\",\r\n
- \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
- \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b09b94a6-88f5-4438-83bb-c14c3000bce0\",\r\n
- \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
- \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
- \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"7.5\",\r\n
- \ \"version\": \"latest\",\r\n \"exactVersion\": \"7.5.201808150\"\r\n
- \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\":
- \"vm2_OsDisk_1_3baf00b4f03045419faffcc34bc89a3c\",\r\n \"createOption\":
- \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
- {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\":
- \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vm2_OsDisk_1_3baf00b4f03045419faffcc34bc89a3c\"\r\n
- \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
- []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2\",\r\n
- \ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
- \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
- \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
- fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
- \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
- \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
- true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
- {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic2\"}]},\r\n
- \ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
+ string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vma0\",\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma0\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\":
+ \"c4ea8960-bb2b-4cfa-8163-30bc917a9ee7\",\r\n \"hardwareProfile\":
+ {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\":
+ {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n
+ \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n
+ \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n
+ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n
+ \ \"name\": \"vma0_disk1_7902b04e177741eaae05b20d3153564f\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vma0_disk1_7902b04e177741eaae05b20d3153564f\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
+ \"vma0\",\r\n \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\":
+ {\r\n \"publicKeys\": [\r\n {\r\n \"path\":
+ \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa
+ AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\":
+ {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n
+ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n
+ \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic0\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"vma1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma1\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\":
+ \"393d0e51-1fb2-40fa-9cd7-ca674d3ffe76\",\r\n \"hardwareProfile\":
+ {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\":
+ {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n
+ \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n
+ \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n
+ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n
+ \ \"name\": \"vma1_disk1_5d6312d7f6d34680a8903ee48b263dd1\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vma1_disk1_5d6312d7f6d34680a8903ee48b263dd1\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
+ \"vma1\",\r\n \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\":
+ {\r\n \"publicKeys\": [\r\n {\r\n \"path\":
+ \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa
+ AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\":
+ {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n
+ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n
+ \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic1\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"vma2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vma2\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\":
+ \"0b4eff2a-e952-40d2-96ee-9da4ba1c003f\",\r\n \"hardwareProfile\":
+ {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\":
+ {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n
+ \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n
+ \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n
+ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n
+ \ \"name\": \"vma2_disk1_152d79dae8f44f50a998e51c9a295165\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vma2_disk1_152d79dae8f44f50a998e51c9a295165\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
+ \"vma2\",\r\n \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\":
+ {\r\n \"publicKeys\": [\r\n {\r\n \"path\":
+ \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa
+ AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\":
+ {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n
+ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n
+ \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmaVMNic2\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"vmb0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb0\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\":
+ \"97f1e206-0ad4-4823-aeb5-6a15a6b88a98\",\r\n \"hardwareProfile\":
+ {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\":
+ {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n
+ \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n
+ \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n
+ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n
+ \ \"name\": \"vmb0_disk1_d56941b567a047ac9680d08d84bb1100\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vmb0_disk1_d56941b567a047ac9680d08d84bb1100\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
+ \"vmb0\",\r\n \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\":
+ {\r\n \"publicKeys\": [\r\n {\r\n \"path\":
+ \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa
+ AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\":
+ {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n
+ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n
+ \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic0\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"vmb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb1\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\":
+ \"62b2e026-92a0-4596-8727-c84ca653a4c4\",\r\n \"hardwareProfile\":
+ {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\":
+ {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n
+ \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n
+ \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n
+ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n
+ \ \"name\": \"vmb1_disk1_4508afa20990406a8c15be414d500051\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vmb1_disk1_4508afa20990406a8c15be414d500051\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
+ \"vmb1\",\r\n \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\":
+ {\r\n \"publicKeys\": [\r\n {\r\n \"path\":
+ \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa
+ AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\":
+ {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n
+ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n
+ \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic1\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n
+ \ \"name\": \"vmb2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/virtualMachines/vmb2\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\":
+ \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\":
+ \"5d4c19d8-087c-4d98-9d42-7b8828c0911d\",\r\n \"hardwareProfile\":
+ {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\":
+ {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n
+ \ \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n
+ \ \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202103250\"\r\n
+ \ },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n
+ \ \"name\": \"vmb2_disk1_538d8ed161cc48089b36372c09a09b1c\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Compute/disks/vmb2_disk1_538d8ed161cc48089b36372c09a09b1c\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\":
+ \"vmb2\",\r\n \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\":
+ {\r\n \"publicKeys\": [\r\n {\r\n \"path\":
+ \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\": \"ssh-rsa
+ AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\":
+ {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n
+ \ \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n
+ \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_create_count_000001/providers/Microsoft.Network/networkInterfaces/vmbVMNic2\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2535'
+ - '16726'
content-type:
- application/json; charset=utf-8
date:
- - Mon, 15 Mar 2021 05:59:51 GMT
+ - Thu, 15 Apr 2021 05:39:33 GMT
expires:
- '-1'
pragma:
@@ -1356,7 +4626,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31976
+ - Microsoft.Compute/HighCostGet3Min;139,Microsoft.Compute/HighCostGet30Min;699
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_create_with_standard_zrs_sku.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_create_with_standard_zrs_sku.yaml
index 78aa123b8c5..a3ebbd5d134 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_create_with_standard_zrs_sku.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_create_with_standard_zrs_sku.yaml
@@ -14,14 +14,14 @@ interactions:
- -g -n --size-gb
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-std_zrs000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001","name":"cli-test-std_zrs000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:03:35Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001","name":"cli-test-std_zrs000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:38 GMT
+ - Tue, 13 Apr 2021 07:24:18 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -75,7 +75,7 @@ interactions:
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/62a7a8ea-e748-42c4-9756-c1e283668095?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/661c4fc9-253a-4c18-ba53-44829a7e0684?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -83,11 +83,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:43 GMT
+ - Tue, 13 Apr 2021 07:24:25 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/62a7a8ea-e748-42c4-9756-c1e283668095?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/661c4fc9-253a-4c18-ba53-44829a7e0684?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -98,7 +98,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995
+ - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999
x-ms-ratelimit-remaining-subscription-writes:
- '1197'
status:
@@ -118,13 +118,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/62a7a8ea-e748-42c4-9756-c1e283668095?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/661c4fc9-253a-4c18-ba53-44829a7e0684?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:43.9282844+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:44.0219939+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:24:25.2919013+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:24:25.4481365+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus2\",\r\n
@@ -133,10 +133,10 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 4,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:43.9438636+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-13T07:24:25.2919013+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 4294967296,\r\n
- \ \"uniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\",\r\n \"networkAccessPolicy\":
- \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}\r\n },\r\n \"name\": \"62a7a8ea-e748-42c4-9756-c1e283668095\"\r\n}"
+ \ \"uniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\",\r\n \"networkAccessPolicy\":
+ \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}\r\n },\r\n \"name\": \"661c4fc9-253a-4c18-ba53-44829a7e0684\"\r\n}"
headers:
cache-control:
- no-cache
@@ -145,7 +145,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:46 GMT
+ - Tue, 13 Apr 2021 07:24:27 GMT
expires:
- '-1'
pragma:
@@ -162,7 +162,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988
+ - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999
status:
code: 200
message: OK
@@ -180,7 +180,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -192,9 +192,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 4,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:43.9438636+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-13T07:24:25.2919013+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 4294967296,\r\n
- \ \"uniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}"
headers:
cache-control:
@@ -204,7 +204,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:46 GMT
+ - Tue, 13 Apr 2021 07:24:27 GMT
expires:
- '-1'
pragma:
@@ -221,7 +221,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14978,Microsoft.Compute/LowCostGet30Min;119978
+ - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999
status:
code: 200
message: OK
@@ -239,9 +239,9 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1''
@@ -255,7 +255,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:47 GMT
+ - Tue, 13 Apr 2021 07:24:28 GMT
expires:
- '-1'
pragma:
@@ -283,7 +283,7 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -295,9 +295,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 4,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:03:43.9438636+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-13T07:24:25.2919013+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 4294967296,\r\n
- \ \"uniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}"
headers:
cache-control:
@@ -307,7 +307,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:48 GMT
+ - Tue, 13 Apr 2021 07:24:28 GMT
expires:
- '-1'
pragma:
@@ -324,7 +324,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14977,Microsoft.Compute/LowCostGet30Min;119977
+ - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998
status:
code: 200
message: OK
@@ -343,14 +343,14 @@ interactions:
- -g -n --source --sku
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli-test-std_zrs000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001","name":"cli-test-std_zrs000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:03:35Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001","name":"cli-test-std_zrs000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -359,7 +359,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:47 GMT
+ - Tue, 13 Apr 2021 07:24:29 GMT
expires:
- '-1'
pragma:
@@ -392,20 +392,20 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {},\r\n \"sku\":
{\r\n \"name\": \"Standard_ZRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\":
{\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f93e0677-06b2-4131-943d-3baccfd5df1a?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8cb70264-c271-4378-afc5-add171fdb2d1?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -413,11 +413,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:53 GMT
+ - Tue, 13 Apr 2021 07:24:35 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f93e0677-06b2-4131-943d-3baccfd5df1a?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8cb70264-c271-4378-afc5-add171fdb2d1?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -428,9 +428,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997
+ - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 202
message: Accepted
@@ -448,35 +448,35 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/f93e0677-06b2-4131-943d-3baccfd5df1a?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/eastus2/DiskOperations/8cb70264-c271-4378-afc5-add171fdb2d1?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:53.8975253+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:54.7725362+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:24:35.6047875+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:24:36.667314+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"eastus2\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\"\r\n },\r\n
\ \"diskSizeGB\": 4,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:53.9131526+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:24:35.6047875+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"8b087130-a49a-40ce-85d2-3bfaa1872edc\",\r\n
+ \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"a1786cce-9e20-45bd-8f87-5cb389b4848d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"f93e0677-06b2-4131-943d-3baccfd5df1a\"\r\n}"
+ \"8cb70264-c271-4378-afc5-add171fdb2d1\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1341'
+ - '1340'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:56 GMT
+ - Tue, 13 Apr 2021 07:24:38 GMT
expires:
- '-1'
pragma:
@@ -493,7 +493,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984
+ - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997
status:
code: 200
message: OK
@@ -511,9 +511,9 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -521,11 +521,11 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_ZRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli-test-std_zrs000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"c7f61d9d-39b4-4280-98fc-37b5be81e6a4\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"048fcf45-3c5f-4965-9b31-b7a3bf56e4b3\"\r\n },\r\n
\ \"diskSizeGB\": 4,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:53.9131526+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:24:35.6047875+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"8b087130-a49a-40ce-85d2-3bfaa1872edc\",\r\n
+ \ \"diskSizeBytes\": 4294967296,\r\n \"uniqueId\": \"a1786cce-9e20-45bd-8f87-5cb389b4848d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -535,7 +535,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:56 GMT
+ - Tue, 13 Apr 2021 07:24:38 GMT
expires:
- '-1'
pragma:
@@ -552,7 +552,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14970,Microsoft.Compute/LowCostGet30Min;119970
+ - Microsoft.Compute/LowCostGet3Min;14994,Microsoft.Compute/LowCostGet30Min;119994
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml
index 977a7e4b9e9..73b47218501 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_disk_max_shares_etc.yaml
@@ -14,14 +14,14 @@ interactions:
- -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:09 GMT
+ - Thu, 15 Apr 2021 06:08:44 GMT
expires:
- '-1'
pragma:
@@ -64,7 +64,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -78,7 +78,7 @@ interactions:
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f94ef4cd-0c60-4366-9089-56c2eadb9c9b?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/842f8748-2929-4e15-b751-d6aaabf20aa9?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -86,11 +86,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:14 GMT
+ - Thu, 15 Apr 2021 06:08:49 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f94ef4cd-0c60-4366-9089-56c2eadb9c9b?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/842f8748-2929-4e15-b751-d6aaabf20aa9?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -103,7 +103,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1196'
status:
code: 202
message: Accepted
@@ -121,13 +121,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f94ef4cd-0c60-4366-9089-56c2eadb9c9b?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/842f8748-2929-4e15-b751-d6aaabf20aa9?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:15.4626366+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:08:49.5479752+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:08:50.6104827+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
@@ -137,11 +137,11 @@ interactions:
10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n
\ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\":
30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n
+ \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"f94ef4cd-0c60-4366-9089-56c2eadb9c9b\"\r\n}"
+ \"842f8748-2929-4e15-b751-d6aaabf20aa9\"\r\n}"
headers:
cache-control:
- no-cache
@@ -150,7 +150,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:16 GMT
+ - Thu, 15 Apr 2021 06:08:51 GMT
expires:
- '-1'
pragma:
@@ -167,7 +167,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999
+ - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399982
status:
code: 200
message: OK
@@ -185,7 +185,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku --disk-iops-read-only --disk-mbps-read-only
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -198,9 +198,9 @@ interactions:
10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n
\ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\":
30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n
+ \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -210,7 +210,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:16 GMT
+ - Thu, 15 Apr 2021 06:08:52 GMT
expires:
- '-1'
pragma:
@@ -227,7 +227,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39999
+ - Microsoft.Compute/LowCostGet3Min;4985,Microsoft.Compute/LowCostGet30Min;39973
status:
code: 200
message: OK
@@ -245,7 +245,7 @@ interactions:
ParameterSetName:
- -g -n --disk-iops-read-only --disk-mbps-read-only
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -258,9 +258,9 @@ interactions:
10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n
\ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 200,\r\n \"diskMBpsReadOnly\":
30,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n
+ \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -270,7 +270,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:18 GMT
+ - Thu, 15 Apr 2021 06:08:52 GMT
expires:
- '-1'
pragma:
@@ -287,7 +287,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39997
+ - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39972
status:
code: 200
message: OK
@@ -296,7 +296,7 @@ interactions:
{"creationData": {"createOption": "Empty", "logicalSectorSize": 4096}, "diskSizeGB":
10, "diskIOPSReadWrite": 100, "diskMBpsReadWrite": 13, "diskIOPSReadOnly": 250,
"diskMBpsReadOnly": 40, "encryption": {"type": "EncryptionAtRestWithPlatformKey"},
- "maxShares": 1, "networkAccessPolicy": "AllowAll", "burstingEnabled": false}}'
+ "maxShares": 1, "networkAccessPolicy": "AllowAll"}}'
headers:
Accept:
- application/json
@@ -307,13 +307,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '407'
+ - '381'
Content-Type:
- application/json
ParameterSetName:
- -g -n --disk-iops-read-only --disk-mbps-read-only
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -329,7 +329,7 @@ interactions:
\ \"faultDomain\": 0,\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a392bd83-78c2-4018-a0ed-5c460a052ad9?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42def184-64a6-42e5-9842-5a395b0ad989?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -337,11 +337,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:18 GMT
+ - Thu, 15 Apr 2021 06:08:54 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a392bd83-78c2-4018-a0ed-5c460a052ad9?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42def184-64a6-42e5-9842-5a395b0ad989?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -352,9 +352,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996
+ - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
status:
code: 202
message: Accepted
@@ -372,13 +372,13 @@ interactions:
ParameterSetName:
- -g -n --disk-iops-read-only --disk-mbps-read-only
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/a392bd83-78c2-4018-a0ed-5c460a052ad9?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/42def184-64a6-42e5-9842-5a395b0ad989?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:19.4938815+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:19.6345054+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:08:54.6104909+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:08:54.7511222+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
@@ -388,11 +388,11 @@ interactions:
10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n
\ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\":
40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n
+ \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"a392bd83-78c2-4018-a0ed-5c460a052ad9\"\r\n}"
+ \"42def184-64a6-42e5-9842-5a395b0ad989\"\r\n}"
headers:
cache-control:
- no-cache
@@ -401,7 +401,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:21 GMT
+ - Thu, 15 Apr 2021 06:08:56 GMT
expires:
- '-1'
pragma:
@@ -418,7 +418,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399995
+ - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399980
status:
code: 200
message: OK
@@ -436,7 +436,7 @@ interactions:
ParameterSetName:
- -g -n --disk-iops-read-only --disk-mbps-read-only
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -449,9 +449,9 @@ interactions:
10,\r\n \"diskIOPSReadWrite\": 100,\r\n \"diskMBpsReadWrite\": 13,\r\n
\ \"readOnly\": false,\r\n \"diskIOPSReadOnly\": 250,\r\n \"diskMBpsReadOnly\":
40,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-08T03:01:14.5095315+00:00\",\r\n
+ \ },\r\n \"maxShares\": 1,\r\n \"timeCreated\": \"2021-04-15T06:08:49.5636487+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"80aa34fb-8fdb-40bb-b158-50af31a0fc87\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"8bca0cac-9408-4ae6-afaa-6447dee6fecc\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -461,7 +461,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:21 GMT
+ - Thu, 15 Apr 2021 06:08:57 GMT
expires:
- '-1'
pragma:
@@ -478,7 +478,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39993
+ - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39970
status:
code: 200
message: OK
@@ -497,14 +497,14 @@ interactions:
- -g -n --image-reference
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -513,7 +513,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:22 GMT
+ - Thu, 15 Apr 2021 06:08:57 GMT
expires:
- '-1'
pragma:
@@ -546,7 +546,7 @@ interactions:
ParameterSetName:
- -g -n --image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01
response:
@@ -560,7 +560,7 @@ interactions:
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0af8196-b263-4d60-8ca7-fa5a7552f473?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/66bd34b0-78df-43af-b656-2cddb3ccfea2?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -568,11 +568,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:26 GMT
+ - Thu, 15 Apr 2021 06:09:02 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0af8196-b263-4d60-8ca7-fa5a7552f473?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/66bd34b0-78df-43af-b656-2cddb3ccfea2?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -583,9 +583,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;994,Microsoft.Compute/CreateUpdateDisks30Min;7994
+ - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
status:
code: 202
message: Accepted
@@ -603,13 +603,13 @@ interactions:
ParameterSetName:
- -g -n --image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0af8196-b263-4d60-8ca7-fa5a7552f473?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/66bd34b0-78df-43af-b656-2cddb3ccfea2?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:26.2751545+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:27.1970348+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:09:02.9073308+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:09:03.7823252+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
@@ -619,11 +619,11 @@ interactions:
\"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n
\ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\":
120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\":
- \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:26.2907811+00:00\",\r\n
+ \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:02.9385827+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e61e381e-14bd-43e4-beb8-579ce1aa2088\",\r\n
+ \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"194c8d43-b2e8-4108-9ab5-d3219c9ef412\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n
- \ },\r\n \"name\": \"f0af8196-b263-4d60-8ca7-fa5a7552f473\"\r\n}"
+ \ },\r\n \"name\": \"66bd34b0-78df-43af-b656-2cddb3ccfea2\"\r\n}"
headers:
cache-control:
- no-cache
@@ -632,7 +632,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:28 GMT
+ - Thu, 15 Apr 2021 06:09:04 GMT
expires:
- '-1'
pragma:
@@ -649,7 +649,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49988,Microsoft.Compute/GetOperation30Min;399988
+ - Microsoft.Compute/GetOperation3Min;49995,Microsoft.Compute/GetOperation30Min;399978
status:
code: 200
message: OK
@@ -667,7 +667,7 @@ interactions:
ParameterSetName:
- -g -n --image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01
response:
@@ -680,9 +680,9 @@ interactions:
\"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n
\ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\":
120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\":
- \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:26.2907811+00:00\",\r\n
+ \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:02.9385827+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"e61e381e-14bd-43e4-beb8-579ce1aa2088\",\r\n
+ \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"194c8d43-b2e8-4108-9ab5-d3219c9ef412\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}"
headers:
cache-control:
@@ -692,7 +692,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:28 GMT
+ - Thu, 15 Apr 2021 06:09:05 GMT
expires:
- '-1'
pragma:
@@ -709,7 +709,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4984,Microsoft.Compute/LowCostGet30Min;39984
+ - Microsoft.Compute/LowCostGet3Min;4993,Microsoft.Compute/LowCostGet30Min;39967
status:
code: 200
message: OK
@@ -728,14 +728,14 @@ interactions:
- -g -n --image-reference
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -744,7 +744,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:29 GMT
+ - Thu, 15 Apr 2021 06:09:05 GMT
expires:
- '-1'
pragma:
@@ -772,7 +772,7 @@ interactions:
ParameterSetName:
- -g -n --image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/publishers/Canonical/artifacttypes/vmimage/offers/UbuntuServer/skus/18.04-LTS/versions/18.04.202002180?api-version=2020-12-01
response:
@@ -792,7 +792,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:30 GMT
+ - Thu, 15 Apr 2021 06:09:07 GMT
expires:
- '-1'
pragma:
@@ -809,7 +809,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73998
+ - Microsoft.Compute/GetVMImageFromLocation3Min;12998,Microsoft.Compute/GetVMImageFromLocation30Min;73997
status:
code: 200
message: OK
@@ -832,7 +832,7 @@ interactions:
ParameterSetName:
- -g -n --image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01
response:
@@ -846,7 +846,7 @@ interactions:
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/be339576-1413-4f53-9f4e-561914b80398?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d8984e-e6f8-4314-9785-24a8dcfa453c?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -854,11 +854,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:36 GMT
+ - Thu, 15 Apr 2021 06:09:09 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/be339576-1413-4f53-9f4e-561914b80398?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d8984e-e6f8-4314-9785-24a8dcfa453c?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -869,9 +869,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7993
+ - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7996
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1198'
status:
code: 202
message: Accepted
@@ -889,13 +889,13 @@ interactions:
ParameterSetName:
- -g -n --image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/be339576-1413-4f53-9f4e-561914b80398?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/58d8984e-e6f8-4314-9785-24a8dcfa453c?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:36.4938927+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:37.1189069+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:09:09.3291924+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:09:09.891717+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d3\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
@@ -905,20 +905,20 @@ interactions:
\"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n
\ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\":
120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\":
- \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:36.4938927+00:00\",\r\n
+ \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:09.3291924+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"d4e68e14-1fbc-47fe-ae88-755abcdf6935\",\r\n
+ \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5da1725c-7884-47eb-a622-ecaa72b16521\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}\r\n
- \ },\r\n \"name\": \"be339576-1413-4f53-9f4e-561914b80398\"\r\n}"
+ \ },\r\n \"name\": \"58d8984e-e6f8-4314-9785-24a8dcfa453c\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1424'
+ - '1423'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:38 GMT
+ - Thu, 15 Apr 2021 06:09:11 GMT
expires:
- '-1'
pragma:
@@ -935,7 +935,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399984
+ - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399976
status:
code: 200
message: OK
@@ -953,7 +953,7 @@ interactions:
ParameterSetName:
- -g -n --image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d3?api-version=2020-12-01
response:
@@ -966,9 +966,9 @@ interactions:
\"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/Subscriptions/00000000-0000-0000-0000-000000000000/Providers/Microsoft.Compute/Locations/westus/Publishers/Canonical/ArtifactTypes/VMImage/Offers/UbuntuServer/Skus/18.04-LTS/Versions/18.04.202002180\"\r\n
\ }\r\n },\r\n \"diskSizeGB\": 30,\r\n \"diskIOPSReadWrite\":
120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\":
- \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:01:36.4938927+00:00\",\r\n
+ \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:09:09.3291924+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"d4e68e14-1fbc-47fe-ae88-755abcdf6935\",\r\n
+ \ \"diskSizeBytes\": 32213303296,\r\n \"uniqueId\": \"5da1725c-7884-47eb-a622-ecaa72b16521\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P4\"\r\n }\r\n}"
headers:
cache-control:
@@ -978,7 +978,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:38 GMT
+ - Thu, 15 Apr 2021 06:09:11 GMT
expires:
- '-1'
pragma:
@@ -995,7 +995,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4977,Microsoft.Compute/LowCostGet30Min;39977
+ - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39964
status:
code: 200
message: OK
@@ -1014,14 +1014,14 @@ interactions:
- -g --gallery-name
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1030,7 +1030,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:40 GMT
+ - Thu, 15 Apr 2021 06:09:11 GMT
expires:
- '-1'
pragma:
@@ -1062,7 +1062,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01
response:
@@ -1070,11 +1070,11 @@ interactions:
string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G17XCH5UU7M2CKXHWUII\"\r\n },\r\n
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1RHN5KHX6TJ4B6H6TLQ\"\r\n },\r\n
\ \"provisioningState\": \"Creating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/38e0f1bf-1946-482f-bb18-9151d0ec9a9f?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e5835521-5e59-4c5f-bed6-2d53a2b35e76?api-version=2019-12-01
cache-control:
- no-cache
content-length:
@@ -1082,7 +1082,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:46 GMT
+ - Thu, 15 Apr 2021 06:09:19 GMT
expires:
- '-1'
pragma:
@@ -1095,9 +1095,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateGallery3Min;49,Microsoft.Compute/CreateUpdateGallery30Min;299
+ - Microsoft.Compute/CreateUpdateGallery3Min;48,Microsoft.Compute/CreateUpdateGallery30Min;298
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
status:
code: 201
message: Created
@@ -1115,23 +1115,23 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/38e0f1bf-1946-482f-bb18-9151d0ec9a9f?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/e5835521-5e59-4c5f-bed6-2d53a2b35e76?api-version=2019-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:45.30717+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:45.5884415+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"38e0f1bf-1946-482f-bb18-9151d0ec9a9f\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:09:17.8112721+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:09:17.9519111+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"e5835521-5e59-4c5f-bed6-2d53a2b35e76\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '182'
+ - '184'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:17 GMT
+ - Thu, 15 Apr 2021 06:09:49 GMT
expires:
- '-1'
pragma:
@@ -1148,7 +1148,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1198,Microsoft.Compute/GetOperationStatus30Min;4198
+ - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4195
status:
code: 200
message: OK
@@ -1166,7 +1166,7 @@ interactions:
ParameterSetName:
- -g --gallery-name
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002?api-version=2019-12-01
response:
@@ -1174,7 +1174,7 @@ interactions:
string: "{\r\n \"name\": \"g1000002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002\",\r\n
\ \"type\": \"Microsoft.Compute/galleries\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"identifier\": {\r\n \"uniqueName\":
- \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G17XCH5UU7M2CKXHWUII\"\r\n },\r\n
+ \"0b1f6471-1bf0-4dda-aec3-cb9272f09590-G1RHN5KHX6TJ4B6H6TLQ\"\r\n },\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
@@ -1184,7 +1184,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:17 GMT
+ - Thu, 15 Apr 2021 06:09:49 GMT
expires:
- '-1'
pragma:
@@ -1201,7 +1201,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGallery3Min;346,Microsoft.Compute/GetGallery30Min;2496
+ - Microsoft.Compute/GetGallery3Min;342,Microsoft.Compute/GetGallery30Min;2492
status:
code: 200
message: OK
@@ -1221,14 +1221,14 @@ interactions:
--hyper-v-generation
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1237,7 +1237,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:18 GMT
+ - Thu, 15 Apr 2021 06:09:50 GMT
expires:
- '-1'
pragma:
@@ -1273,7 +1273,7 @@ interactions:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s --features
--hyper-v-generation
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30
response:
@@ -1288,7 +1288,7 @@ interactions:
\ },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/737a7872-b44b-4124-b698-666847c27e32?api-version=2020-09-30
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/13589bad-e3bd-4478-8833-dad5bcb7db6f?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -1296,7 +1296,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:24 GMT
+ - Thu, 15 Apr 2021 06:09:56 GMT
expires:
- '-1'
pragma:
@@ -1309,9 +1309,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateGalleryImage3Min;149,Microsoft.Compute/CreateUpdateGalleryImage30Min;749
+ - Microsoft.Compute/CreateUpdateGalleryImage3Min;148,Microsoft.Compute/CreateUpdateGalleryImage30Min;748
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1195'
status:
code: 201
message: Created
@@ -1330,14 +1330,14 @@ interactions:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s --features
--hyper-v-generation
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/737a7872-b44b-4124-b698-666847c27e32?api-version=2020-09-30
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/13589bad-e3bd-4478-8833-dad5bcb7db6f?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:02:23.9791318+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:02:24.1041347+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"737a7872-b44b-4124-b698-666847c27e32\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:09:56.2019353+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:09:56.3113089+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"13589bad-e3bd-4478-8833-dad5bcb7db6f\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1346,7 +1346,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:54 GMT
+ - Thu, 15 Apr 2021 06:10:26 GMT
expires:
- '-1'
pragma:
@@ -1363,7 +1363,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1196,Microsoft.Compute/GetOperationStatus30Min;4196
+ - Microsoft.Compute/GetOperationStatus3Min;1192,Microsoft.Compute/GetOperationStatus30Min;4192
status:
code: 200
message: OK
@@ -1382,7 +1382,7 @@ interactions:
- -g --gallery-name --gallery-image-definition --os-type -p -f -s --features
--hyper-v-generation
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image?api-version=2020-09-30
response:
@@ -1403,7 +1403,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:54 GMT
+ - Thu, 15 Apr 2021 06:10:27 GMT
expires:
- '-1'
pragma:
@@ -1420,7 +1420,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImage3Min;596,Microsoft.Compute/GetGalleryImage30Min;2996
+ - Microsoft.Compute/GetGalleryImage3Min;592,Microsoft.Compute/GetGalleryImage30Min;2992
status:
code: 200
message: OK
@@ -1439,14 +1439,14 @@ interactions:
- -g -n --size-gb
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1455,7 +1455,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:56 GMT
+ - Thu, 15 Apr 2021 06:10:28 GMT
expires:
- '-1'
pragma:
@@ -1488,7 +1488,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-12-01
response:
@@ -1500,7 +1500,7 @@ interactions:
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/00ce9c68-7e75-4fcf-91da-1e4bd9806219?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e352699a-db38-4b53-a417-9673d87bb855?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1508,11 +1508,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:57 GMT
+ - Thu, 15 Apr 2021 06:10:32 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/00ce9c68-7e75-4fcf-91da-1e4bd9806219?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e352699a-db38-4b53-a417-9673d87bb855?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1523,9 +1523,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;991,Microsoft.Compute/CreateUpdateDisks30Min;7991
+ - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1195'
status:
code: 202
message: Accepted
@@ -1543,13 +1543,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/00ce9c68-7e75-4fcf-91da-1e4bd9806219?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e352699a-db38-4b53-a417-9673d87bb855?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:02:58.2126994+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:02:58.3220892+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:10:33.0342454+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"disk\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
@@ -1558,10 +1558,10 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:02:58.2126994+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\",\r\n \"networkAccessPolicy\":
- \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"00ce9c68-7e75-4fcf-91da-1e4bd9806219\"\r\n}"
+ \ \"uniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\",\r\n \"networkAccessPolicy\":
+ \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"e352699a-db38-4b53-a417-9673d87bb855\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1570,7 +1570,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:00 GMT
+ - Thu, 15 Apr 2021 06:10:35 GMT
expires:
- '-1'
pragma:
@@ -1587,7 +1587,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49965,Microsoft.Compute/GetOperation30Min;399965
+ - Microsoft.Compute/GetOperation3Min;49989,Microsoft.Compute/GetOperation30Min;399972
status:
code: 200
message: OK
@@ -1605,7 +1605,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-12-01
response:
@@ -1617,9 +1617,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:02:58.2126994+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
@@ -1629,7 +1629,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:00 GMT
+ - Thu, 15 Apr 2021 06:10:35 GMT
expires:
- '-1'
pragma:
@@ -1646,7 +1646,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4948,Microsoft.Compute/LowCostGet30Min;39948
+ - Microsoft.Compute/LowCostGet3Min;4982,Microsoft.Compute/LowCostGet30Min;39956
status:
code: 200
message: OK
@@ -1664,9 +1664,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/disk?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/disk''
@@ -1680,7 +1680,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:01 GMT
+ - Thu, 15 Apr 2021 06:10:36 GMT
expires:
- '-1'
pragma:
@@ -1708,7 +1708,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk?api-version=2020-12-01
response:
@@ -1720,9 +1720,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:02:58.2126994+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-15T06:10:32.8936159+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
@@ -1732,7 +1732,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:01 GMT
+ - Thu, 15 Apr 2021 06:10:37 GMT
expires:
- '-1'
pragma:
@@ -1749,7 +1749,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4947,Microsoft.Compute/LowCostGet30Min;39947
+ - Microsoft.Compute/LowCostGet3Min;4981,Microsoft.Compute/LowCostGet30Min;39955
status:
code: 200
message: OK
@@ -1768,14 +1768,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1784,7 +1784,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:01 GMT
+ - Thu, 15 Apr 2021 06:10:38 GMT
expires:
- '-1'
pragma:
@@ -1817,20 +1817,20 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n
\ \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\":
{\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n
- \ \"sourceUniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/68bda4d6-8610-40ad-b834-bee80a855f4f?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0ad3f27-a3b5-4768-b1ef-d200a6956c76?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1838,11 +1838,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:06 GMT
+ - Thu, 15 Apr 2021 06:10:42 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/68bda4d6-8610-40ad-b834-bee80a855f4f?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0ad3f27-a3b5-4768-b1ef-d200a6956c76?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1853,7 +1853,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;996,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7996
+ - Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;999,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7999
x-ms-ratelimit-remaining-subscription-writes:
- '1197'
status:
@@ -1873,26 +1873,26 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/68bda4d6-8610-40ad-b834-bee80a855f4f?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f0ad3f27-a3b5-4768-b1ef-d200a6956c76?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:06.8063916+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:07.5564107+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:42.9873721+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:10:43.7998424+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n
- \ \"sourceUniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:06.8220147+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:43.0186383+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a04e4764-3c69-467c-9291-697d4e1eec85\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5d243a27-a51d-45cc-a4cd-fe3469a10f28\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"68bda4d6-8610-40ad-b834-bee80a855f4f\"\r\n}"
+ \"f0ad3f27-a3b5-4768-b1ef-d200a6956c76\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1901,7 +1901,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:08 GMT
+ - Thu, 15 Apr 2021 06:10:44 GMT
expires:
- '-1'
pragma:
@@ -1918,7 +1918,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49962,Microsoft.Compute/GetOperation30Min;399962
+ - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399967
status:
code: 200
message: OK
@@ -1936,9 +1936,9 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -1946,11 +1946,11 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/disk\",\r\n
- \ \"sourceUniqueId\": \"9f70814c-fa08-440e-ab7d-ad638bb2374e\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"791abf49-d37d-4545-b30e-f08932aeafe2\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:03:06.8220147+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-15T06:10:43.0186383+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"a04e4764-3c69-467c-9291-697d4e1eec85\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"5d243a27-a51d-45cc-a4cd-fe3469a10f28\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1960,7 +1960,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:08 GMT
+ - Thu, 15 Apr 2021 06:10:44 GMT
expires:
- '-1'
pragma:
@@ -1977,7 +1977,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4938,Microsoft.Compute/LowCostGet30Min;39938
+ - Microsoft.Compute/LowCostGet3Min;4975,Microsoft.Compute/LowCostGet30Min;39949
status:
code: 200
message: OK
@@ -1996,14 +1996,14 @@ interactions:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2012,7 +2012,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:10 GMT
+ - Thu, 15 Apr 2021 06:10:45 GMT
expires:
- '-1'
pragma:
@@ -2046,9 +2046,9 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\",\r\n
@@ -2057,7 +2057,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West
US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:10:50.8269555+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"osDiskImage\": {\r\n \"hostCaching\": \"ReadWrite\",\r\n
\ \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n
@@ -2065,7 +2065,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30
cache-control:
- no-cache
content-length:
@@ -2073,7 +2073,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:16 GMT
+ - Thu, 15 Apr 2021 06:10:51 GMT
expires:
- '-1'
pragma:
@@ -2088,7 +2088,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateUpdateGalleryImageVersion3Min;374,Microsoft.Compute/CreateUpdateGalleryImageVersion30Min;1199
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1197'
status:
code: 201
message: Created
@@ -2106,13 +2106,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2121,7 +2121,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:17 GMT
+ - Thu, 15 Apr 2021 06:11:52 GMT
expires:
- '-1'
pragma:
@@ -2138,7 +2138,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1194,Microsoft.Compute/GetOperationStatus30Min;4194
+ - Microsoft.Compute/GetOperationStatus3Min;1190,Microsoft.Compute/GetOperationStatus30Min;4190
status:
code: 200
message: OK
@@ -2156,13 +2156,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2171,7 +2171,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:05:17 GMT
+ - Thu, 15 Apr 2021 06:12:52 GMT
expires:
- '-1'
pragma:
@@ -2188,7 +2188,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4193
+ - Microsoft.Compute/GetOperationStatus3Min;1193,Microsoft.Compute/GetOperationStatus30Min;4187
status:
code: 200
message: OK
@@ -2206,13 +2206,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2221,7 +2221,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:06:18 GMT
+ - Thu, 15 Apr 2021 06:13:53 GMT
expires:
- '-1'
pragma:
@@ -2238,7 +2238,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4191
+ - Microsoft.Compute/GetOperationStatus3Min;1191,Microsoft.Compute/GetOperationStatus30Min;4183
status:
code: 200
message: OK
@@ -2256,13 +2256,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2271,7 +2271,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:07:19 GMT
+ - Thu, 15 Apr 2021 06:14:54 GMT
expires:
- '-1'
pragma:
@@ -2288,7 +2288,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4189
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4179
status:
code: 200
message: OK
@@ -2306,13 +2306,13 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2321,7 +2321,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:08:19 GMT
+ - Thu, 15 Apr 2021 06:15:54 GMT
expires:
- '-1'
pragma:
@@ -2338,7 +2338,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4187
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4175
status:
code: 200
message: OK
@@ -2356,14 +2356,64 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/dd76d6d8-f283-4500-b032-1258a44693e3?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:09:15.9171245+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"dd76d6d8-f283-4500-b032-1258a44693e3\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 15 Apr 2021 06:16:55 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4171
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - sig image-version create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/capsOperations/81528a3f-34eb-4cfa-9706-75b5c226c37a?api-version=2020-09-30
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-15T06:10:50.8113322+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:17:36.5146146+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"81528a3f-34eb-4cfa-9706-75b5c226c37a\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2372,7 +2422,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:20 GMT
+ - Thu, 15 Apr 2021 06:17:56 GMT
expires:
- '-1'
pragma:
@@ -2389,7 +2439,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperationStatus3Min;1195,Microsoft.Compute/GetOperationStatus30Min;4185
+ - Microsoft.Compute/GetOperationStatus3Min;1189,Microsoft.Compute/GetOperationStatus30Min;4167
status:
code: 200
message: OK
@@ -2407,9 +2457,9 @@ interactions:
ParameterSetName:
- -g --gallery-name --gallery-image-definition --gallery-image-version --os-snapshot
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2019-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0?api-version=2020-09-30
response:
body:
string: "{\r\n \"name\": \"1.0.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\",\r\n
@@ -2418,7 +2468,7 @@ interactions:
{\r\n \"targetRegions\": [\r\n {\r\n \"name\": \"West
US\",\r\n \"regionalReplicaCount\": 1,\r\n \"storageAccountType\":
\"Standard_LRS\"\r\n }\r\n ],\r\n \"replicaCount\": 1,\r\n
- \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-08T03:03:15.0729043+00:00\",\r\n
+ \ \"excludeFromLatest\": false,\r\n \"publishedDate\": \"2021-04-15T06:10:50.8269555+00:00\",\r\n
\ \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"storageProfile\":
{\r\n \"osDiskImage\": {\r\n \"sizeInGB\": 10,\r\n \"hostCaching\":
\"ReadWrite\",\r\n \"source\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/snapshots/s1\"\r\n
@@ -2432,7 +2482,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:21 GMT
+ - Thu, 15 Apr 2021 06:17:56 GMT
expires:
- '-1'
pragma:
@@ -2449,7 +2499,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9997
+ - Microsoft.Compute/GetGalleryImageVersion3Min;1999,Microsoft.Compute/GetGalleryImageVersion30Min;9995
status:
code: 200
message: OK
@@ -2468,14 +2518,14 @@ interactions:
- -g -n --gallery-image-reference
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_disk_max_shares_etc_000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001","name":"cli_test_vm_disk_max_shares_etc_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-15T06:08:40Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2484,7 +2534,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:21 GMT
+ - Thu, 15 Apr 2021 06:17:57 GMT
expires:
- '-1'
pragma:
@@ -2518,33 +2568,34 @@ interactions:
ParameterSetName:
- -g -n --gallery-image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"d4\",\r\n \"location\": \"westus\",\r\n \"tags\":
{},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\":
- {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"creationData\":
+ {\r\n \"osType\": \"Linux\",\r\n \"hyperVGeneration\": \"V2\",\r\n \"supportedCapabilities\":
+ {\r\n \"acceleratedNetwork\": true\r\n },\r\n \"creationData\":
{\r\n \"createOption\": \"FromImage\",\r\n \"galleryImageReference\":
{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n
\ }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\":
true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0275ba6b-1e39-45e8-9984-856bfa9ae9b0?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76826ce8-7ae9-4dd6-91c4-81094b4e8105?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- - '607'
+ - '681'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:26 GMT
+ - Thu, 15 Apr 2021 06:18:00 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0275ba6b-1e39-45e8-9984-856bfa9ae9b0?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76826ce8-7ae9-4dd6-91c4-81094b4e8105?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -2555,9 +2606,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7984
+ - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7990
x-ms-ratelimit-remaining-subscription-writes:
- - '1193'
+ - '1196'
status:
code: 202
message: Accepted
@@ -2575,37 +2626,39 @@ interactions:
ParameterSetName:
- -g -n --gallery-image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0275ba6b-1e39-45e8-9984-856bfa9ae9b0?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76826ce8-7ae9-4dd6-91c4-81094b4e8105?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:09:26.3104422+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:09:26.857336+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:18:01.3061264+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:18:01.8842451+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d4\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\":
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n
- \ \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\":
- \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n
+ \ \"hyperVGeneration\": \"V2\",\r\n \"supportedCapabilities\": {\r\n
+ \ \"acceleratedNetwork\": true\r\n },\r\n \"creationData\": {\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n
\ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n
\ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\":
120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\":
- \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:09:26.34169+00:00\",\r\n
+ \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:18:01.3686204+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"cf2b5489-af3b-488b-a57e-966af0adab82\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"168617c6-4602-4cbe-964f-562a3fb9f245\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n
- \ },\r\n \"name\": \"0275ba6b-1e39-45e8-9984-856bfa9ae9b0\"\r\n}"
+ \ },\r\n \"name\": \"76826ce8-7ae9-4dd6-91c4-81094b4e8105\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1742'
+ - '1819'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:28 GMT
+ - Thu, 15 Apr 2021 06:18:03 GMT
expires:
- '-1'
pragma:
@@ -2622,7 +2675,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399895
+ - Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399906
status:
code: 200
message: OK
@@ -2640,7 +2693,7 @@ interactions:
ParameterSetName:
- -g -n --gallery-image-reference
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d4?api-version=2020-12-01
response:
@@ -2649,24 +2702,26 @@ interactions:
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\":
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"osType\": \"Linux\",\r\n
- \ \"hyperVGeneration\": \"V2\",\r\n \"creationData\": {\r\n \"createOption\":
- \"FromImage\",\r\n \"imageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n
+ \ \"hyperVGeneration\": \"V2\",\r\n \"supportedCapabilities\": {\r\n
+ \ \"acceleratedNetwork\": true\r\n },\r\n \"creationData\": {\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"imageReference\": {\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n
\ },\r\n \"galleryImageReference\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/galleries/g1000002/images/image/versions/1.0.0\"\r\n
\ }\r\n },\r\n \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\":
120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\": {\r\n \"type\":
- \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-08T03:09:26.34169+00:00\",\r\n
+ \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-15T06:18:01.3686204+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"cf2b5489-af3b-488b-a57e-966af0adab82\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"168617c6-4602-4cbe-964f-562a3fb9f245\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1518'
+ - '1594'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:28 GMT
+ - Thu, 15 Apr 2021 06:18:03 GMT
expires:
- '-1'
pragma:
@@ -2683,7 +2738,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4989,Microsoft.Compute/LowCostGet30Min;39880
+ - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39909
status:
code: 200
message: OK
@@ -2707,7 +2762,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --max-shares -l
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01
response:
@@ -2720,7 +2775,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/7271b0aa-6ad4-485f-882e-976ac4d34fcf?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e8d5e079-067f-49a7-9d88-5088f452725f?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -2728,11 +2783,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:32 GMT
+ - Thu, 15 Apr 2021 06:18:09 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/7271b0aa-6ad4-485f-882e-976ac4d34fcf?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e8d5e079-067f-49a7-9d88-5088f452725f?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -2743,9 +2798,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;996,Microsoft.Compute/CreateUpdateDisks30Min;7994
+ - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999
x-ms-ratelimit-remaining-subscription-writes:
- - '1192'
+ - '1198'
status:
code: 202
message: Accepted
@@ -2763,13 +2818,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb --max-shares -l
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/7271b0aa-6ad4-485f-882e-976ac4d34fcf?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/e8d5e079-067f-49a7-9d88-5088f452725f?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:09:32.9914461+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:09:33.1814141+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:18:09.7525196+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:18:09.9347978+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n
@@ -2778,11 +2833,11 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n
\ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\":
- 2,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\":
+ 2,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\":
\"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\":
- 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n
+ 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n
- \ },\r\n \"name\": \"7271b0aa-6ad4-485f-882e-976ac4d34fcf\"\r\n}"
+ \ },\r\n \"name\": \"e8d5e079-067f-49a7-9d88-5088f452725f\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2791,7 +2846,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:35 GMT
+ - Thu, 15 Apr 2021 06:18:12 GMT
expires:
- '-1'
pragma:
@@ -2808,7 +2863,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49987,Microsoft.Compute/GetOperation30Min;399973
+ - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399999
status:
code: 200
message: OK
@@ -2826,7 +2881,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --max-shares -l
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01
response:
@@ -2838,9 +2893,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n
\ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\":
- 2,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\":
+ 2,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\":
\"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\":
- 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n
+ 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}"
headers:
cache-control:
@@ -2850,7 +2905,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:35 GMT
+ - Thu, 15 Apr 2021 06:18:12 GMT
expires:
- '-1'
pragma:
@@ -2867,7 +2922,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14982,Microsoft.Compute/LowCostGet30Min;119963
+ - Microsoft.Compute/LowCostGet3Min;14999,Microsoft.Compute/LowCostGet30Min;119999
status:
code: 200
message: OK
@@ -2885,7 +2940,7 @@ interactions:
ParameterSetName:
- -g -n --max-shares
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01
response:
@@ -2897,9 +2952,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n
\ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\":
- 2,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\":
+ 2,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\":
\"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\":
- 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n
+ 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}"
headers:
cache-control:
@@ -2909,7 +2964,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:37 GMT
+ - Thu, 15 Apr 2021 06:18:13 GMT
expires:
- '-1'
pragma:
@@ -2926,7 +2981,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14981,Microsoft.Compute/LowCostGet30Min;119962
+ - Microsoft.Compute/LowCostGet3Min;14998,Microsoft.Compute/LowCostGet30Min;119998
status:
code: 200
message: OK
@@ -2935,7 +2990,7 @@ interactions:
"properties": {"creationData": {"createOption": "Empty"}, "diskSizeGB": 256,
"diskIOPSReadWrite": 1100, "diskMBpsReadWrite": 125, "encryption": {"type":
"EncryptionAtRestWithPlatformKey"}, "maxShares": 1, "networkAccessPolicy": "AllowAll",
- "tier": "P15", "burstingEnabled": false}}'
+ "tier": "P15"}}'
headers:
Accept:
- application/json
@@ -2946,13 +3001,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '355'
+ - '329'
Content-Type:
- application/json
ParameterSetName:
- -g -n --max-shares
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01
response:
@@ -2966,7 +3021,7 @@ interactions:
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/fba7a626-e247-408b-aa61-65580d83d8ce?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5f41a19e-b96a-4d47-b3f9-46196a99c0b8?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -2974,11 +3029,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:38 GMT
+ - Thu, 15 Apr 2021 06:18:15 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/fba7a626-e247-408b-aa61-65580d83d8ce?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5f41a19e-b96a-4d47-b3f9-46196a99c0b8?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -2989,9 +3044,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7993
+ - Microsoft.Compute/CreateUpdateDisks3Min;998,Microsoft.Compute/CreateUpdateDisks30Min;7998
x-ms-ratelimit-remaining-subscription-writes:
- - '1192'
+ - '1197'
status:
code: 202
message: Accepted
@@ -3009,13 +3064,13 @@ interactions:
ParameterSetName:
- -g -n --max-shares
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/fba7a626-e247-408b-aa61-65580d83d8ce?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5f41a19e-b96a-4d47-b3f9-46196a99c0b8?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:09:39.4869824+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:09:39.6325746+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-15T06:18:16.1706273+00:00\",\r\n \"endTime\":
+ \"2021-04-15T06:18:16.380632+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d6\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n
@@ -3024,20 +3079,20 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n
\ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\":
- 1,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\":
+ 1,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\":
\"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\":
- 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n
+ 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}\r\n
- \ },\r\n \"name\": \"fba7a626-e247-408b-aa61-65580d83d8ce\"\r\n}"
+ \ },\r\n \"name\": \"5f41a19e-b96a-4d47-b3f9-46196a99c0b8\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1144'
+ - '1143'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:41 GMT
+ - Thu, 15 Apr 2021 06:18:18 GMT
expires:
- '-1'
pragma:
@@ -3054,7 +3109,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399971
+ - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997
status:
code: 200
message: OK
@@ -3072,7 +3127,7 @@ interactions:
ParameterSetName:
- -g -n --max-shares
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_disk_max_shares_etc_000001/providers/Microsoft.Compute/disks/d6?api-version=2020-12-01
response:
@@ -3084,9 +3139,9 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 256,\r\n
\ \"diskIOPSReadWrite\": 1100,\r\n \"diskMBpsReadWrite\": 125,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"maxShares\":
- 1,\r\n \"timeCreated\": \"2021-04-08T03:09:32.9964255+00:00\",\r\n \"provisioningState\":
+ 1,\r\n \"timeCreated\": \"2021-04-15T06:18:09.7725642+00:00\",\r\n \"provisioningState\":
\"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\":
- 274877906944,\r\n \"uniqueId\": \"dc06d5ec-7b82-4802-8128-7247d09cf486\",\r\n
+ 274877906944,\r\n \"uniqueId\": \"bea26756-adf5-4996-99ba-2d6676db485a\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P15\"\r\n }\r\n}"
headers:
cache-control:
@@ -3096,7 +3151,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:09:42 GMT
+ - Thu, 15 Apr 2021 06:18:18 GMT
expires:
- '-1'
pragma:
@@ -3113,7 +3168,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14979,Microsoft.Compute/LowCostGet30Min;119960
+ - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_extended_location.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_extended_location.yaml
new file mode 100644
index 00000000000..d2990a41031
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_extended_location.yaml
@@ -0,0 +1,734 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extended_location_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001","name":"cli_test_vm_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T06:53:21Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:53:24 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python-requests/2.22.0
+ method: GET
+ uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
+ response:
+ body:
+ string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n
+ \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\":
+ {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\":
+ \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\":
+ {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n
+ \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n
+ \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\":
+ \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n
+ \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n
+ \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\":
+ \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\":
+ \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\":
+ \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\":
+ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n
+ \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n
+ \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\":
+ \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n
+ \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n
+ \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n
+ \ \"version\": \"latest\"\n }\n },\n \"Windows\":
+ {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
+ \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n
+ \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\":
+ {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
+ \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\":
+ \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\":
+ \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\":
+ \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n
+ \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
+ \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n
+ \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\":
+ {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
+ \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\":
+ \"latest\"\n }\n }\n }\n }\n }\n}\n"
+ headers:
+ accept-ranges:
+ - bytes
+ access-control-allow-origin:
+ - '*'
+ cache-control:
+ - max-age=300
+ connection:
+ - keep-alive
+ content-length:
+ - '2501'
+ content-security-policy:
+ - default-src 'none'; style-src 'unsafe-inline'; sandbox
+ content-type:
+ - text/plain; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:53:25 GMT
+ etag:
+ - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
+ expires:
+ - Thu, 01 Apr 2021 06:58:25 GMT
+ source-age:
+ - '80'
+ strict-transport-security:
+ - max-age=31536000
+ vary:
+ - Authorization,Accept-Encoding
+ via:
+ - 1.1 varnish
+ x-cache:
+ - HIT
+ x-cache-hits:
+ - '1'
+ x-content-type-options:
+ - nosniff
+ x-fastly-request-id:
+ - d66bb64346189edda1270735d4f424aec779c2d5
+ x-frame-options:
+ - deny
+ x-github-request-id:
+ - 68E6:6BB2:C0B17:E0E4D:6063C8CE
+ x-served-by:
+ - cache-sin18050-SIN
+ x-timer:
+ - S1617260005.274151,VS0,VE1
+ x-xss-protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:53:26 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources":
+ [{"name": "vmVNET", "type": "Microsoft.Network/virtualNetworks", "location":
+ "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties":
+ {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name":
+ "vmSubnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": "Microsoft.Network/networkSecurityGroups",
+ "name": "vmNSG", "apiVersion": "2015-06-15", "location": "westus", "tags": {},
+ "dependsOn": []}, {"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses",
+ "name": "vmPublicIP", "location": "westus", "tags": {}, "dependsOn": [], "properties":
+ {"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces",
+ "name": "vmVMNic", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vmVNET",
+ "Microsoft.Network/networkSecurityGroups/vmNSG", "Microsoft.Network/publicIpAddresses/vmPublicIP"],
+ "properties": {"ipConfigurations": [{"name": "ipconfigvm", "properties": {"privateIPAllocationMethod":
+ "Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET/subnets/vmSubnet"},
+ "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP"}}}],
+ "networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG"}}},
+ {"apiVersion": "2020-12-01", "type": "Microsoft.Compute/virtualMachines", "name":
+ "vm", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vmVMNic"],
+ "properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile":
+ {"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic"}]},
+ "storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching":
+ "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference":
+ {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version":
+ "latest"}}, "osProfile": {"computerName": "vm", "adminUsername": "fey", "linuxConfiguration":
+ {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"keyData": "ssh-rsa
+ AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\n", "path": "/home/fey/.ssh/authorized_keys"}]}}}, "securityProfile":
+ {}}, "extendedLocation": {"name": "microsoftlosangeles1", "type": "EdgeZone"}}],
+ "outputs": {}}, "parameters": {}, "mode": "Incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '3472'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Resources/deployments/vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg","name":"vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2829543966565406126","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-01T06:53:30.236049Z","duration":"PT2.015245S","correlationId":"7239f8da-0a38-4871-859a-0b1b4a31c3e3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm"}]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extended_location_000001/providers/Microsoft.Resources/deployments/vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg/operationStatuses/08585843468772568296?api-version=2020-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2728'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:53:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843468772568296?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:54:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843468772568296?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:54:31 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843468772568296?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Resources/deployments/vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg","name":"vm_deploy_KpMidhzYgTJJ8WVpCMLgzvWUNmEOoOfg","type":"Microsoft.Resources/deployments","properties":{"templateHash":"2829543966565406126","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-01T06:54:42.6242311Z","duration":"PT1M14.4034271S","correlationId":"7239f8da-0a38-4871-859a-0b1b4a31c3e3","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vmVMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3792'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm?$expand=instanceView&api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"66472b4b-4fa0-4097-9650-e90b603751c7\",\r\n
+ \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
+ \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
+ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
+ \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
+ \"18.04.202012010\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
+ \"Linux\",\r\n \"name\": \"vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n
+ \ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
+ true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
+ \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
+ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
+ \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\":
+ \"vm\",\r\n \"osName\": \"ubuntu\",\r\n \"osVersion\": \"18.04\",\r\n
+ \ \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.2.54.2\",\r\n \"statuses\":
+ [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n
+ \ \"message\": \"Guest Agent is running\",\r\n \"time\":
+ \"2021-04-01T06:55:03+00:00\"\r\n }\r\n ],\r\n \"extensionHandlers\":
+ []\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\",\r\n
+ \ \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-01T06:53:54.9216153+00:00\"\r\n
+ \ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
+ \"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
+ succeeded\",\r\n \"time\": \"2021-04-01T06:54:41.1247496+00:00\"\r\n
+ \ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
+ \ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
+ \ }\r\n ]\r\n }\r\n },\r\n \"extendedLocation\": {\r\n \"type\":
+ \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3927'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31945
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmVMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\",\r\n
+ \ \"etag\": \"W/\\\"7a92b8c5-0394-4464-899c-986962b286a4\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"f6ce9cfe-4fb7-4fb0-a77a-c23a3ee4a076\",\r\n
+ \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic/ipConfigurations/ipconfigvm\",\r\n
+ \ \"etag\": \"W/\\\"7a92b8c5-0394-4464-899c-986962b286a4\\\"\",\r\n
+ \ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
+ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
+ \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP\"\r\n
+ \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmVNET/subnets/vmSubnet\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
+ \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
+ [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
+ \"bxjtpnfroazejif12npmtfinrd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
+ \"00-0D-3A-3B-12-2B\",\r\n \"enableAcceleratedNetworking\": false,\r\n
+ \ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkSecurityGroups/vmNSG\"\r\n
+ \ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
+ \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2558'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:04 GMT
+ etag:
+ - W/"7a92b8c5-0394-4464-899c-986962b286a4"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - d6d761fa-f035-41a1-800a-4ce91fb2c032
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --nsg-rule --generate-ssh-keys --edge-zone
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP?api-version=2018-01-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmPublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmPublicIP\",\r\n
+ \ \"etag\": \"W/\\\"3b05a610-79a8-4718-a0bc-0cba525c0fce\\\"\",\r\n \"location\":
+ \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
+ \"Succeeded\",\r\n \"resourceGuid\": \"2e7e2b3d-c501-430d-bd8f-8610160ffead\",\r\n
+ \ \"ipAddress\": \"168.62.205.44\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
+ \ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
+ 4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic/ipConfigurations/ipconfigvm\"\r\n
+ \ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
+ \ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '993'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:04 GMT
+ etag:
+ - W/"3b05a610-79a8-4718-a0bc-0cba525c0fce"
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-arm-service-request-id:
+ - c39bb958-472d-45cc-bc0f-d416df645dc5
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vm show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vm\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/virtualMachines/vm\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
+ \ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"66472b4b-4fa0-4097-9650-e90b603751c7\",\r\n
+ \ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
+ \ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
+ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
+ \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
+ \"18.04.202012010\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
+ \"Linux\",\r\n \"name\": \"vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\",\r\n
+ \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
+ \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
+ \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Compute/disks/vm_OsDisk_1_35fa39a851a04a728ccd69ec229939d1\"\r\n
+ \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\":
+ []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm\",\r\n
+ \ \"adminUsername\": \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
+ true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
+ \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
+ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\":
+ \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
+ {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_extended_location_000001/providers/Microsoft.Network/networkInterfaces/vmVMNic\"}]},\r\n
+ \ \"provisioningState\": \"Succeeded\"\r\n },\r\n \"extendedLocation\":
+ {\r\n \"type\": \"EdgeZone\",\r\n \"name\": \"microsoftlosangeles1\"\r\n
+ \ }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '2635'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31944
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml
index 4d48bfa36fd..0f8fb86d35c 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_managed_disk.yaml
@@ -14,14 +14,14 @@ interactions:
- -g -n --size-gb --tags
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:09 GMT
+ - Tue, 13 Apr 2021 07:24:19 GMT
expires:
- '-1'
pragma:
@@ -63,7 +63,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -75,7 +75,7 @@ interactions:
\"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/002fbe98-270a-4628-90cd-8c8d2c8d0e2d?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76520916-6620-4736-bb6b-f2da27345aee?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -83,11 +83,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:14 GMT
+ - Tue, 13 Apr 2021 07:24:23 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/002fbe98-270a-4628-90cd-8c8d2c8d0e2d?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76520916-6620-4736-bb6b-f2da27345aee?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -98,7 +98,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997
+ - Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
@@ -118,13 +118,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/002fbe98-270a-4628-90cd-8c8d2c8d0e2d?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/76520916-6620-4736-bb6b-f2da27345aee?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:15.7751266+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:24:23.7018056+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
@@ -133,11 +133,11 @@ interactions:
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}\r\n
- \ },\r\n \"name\": \"002fbe98-270a-4628-90cd-8c8d2c8d0e2d\"\r\n}"
+ \ },\r\n \"name\": \"76520916-6620-4736-bb6b-f2da27345aee\"\r\n}"
headers:
cache-control:
- no-cache
@@ -146,7 +146,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:17 GMT
+ - Tue, 13 Apr 2021 07:24:25 GMT
expires:
- '-1'
pragma:
@@ -163,7 +163,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399997
+ - Microsoft.Compute/GetOperation3Min;49999,Microsoft.Compute/GetOperation30Min;399993
status:
code: 200
message: OK
@@ -181,7 +181,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -193,9 +193,9 @@ interactions:
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}"
headers:
cache-control:
@@ -205,7 +205,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:17 GMT
+ - Tue, 13 Apr 2021 07:24:26 GMT
expires:
- '-1'
pragma:
@@ -222,7 +222,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4996,Microsoft.Compute/LowCostGet30Min;39996
+ - Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39970
status:
code: 200
message: OK
@@ -240,7 +240,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -252,9 +252,9 @@ interactions:
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P1\"\r\n }\r\n}"
headers:
cache-control:
@@ -264,7 +264,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:19 GMT
+ - Tue, 13 Apr 2021 07:24:28 GMT
expires:
- '-1'
pragma:
@@ -281,7 +281,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4995,Microsoft.Compute/LowCostGet30Min;39995
+ - Microsoft.Compute/LowCostGet3Min;4997,Microsoft.Compute/LowCostGet30Min;39968
status:
code: 200
message: OK
@@ -306,7 +306,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -320,7 +320,7 @@ interactions:
\"AllowAll\"\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0977aa9a-5544-438e-81a4-e8a57a775325?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f2316b05-5493-4301-b285-842ef1d09a92?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -328,11 +328,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:19 GMT
+ - Tue, 13 Apr 2021 07:24:28 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0977aa9a-5544-438e-81a4-e8a57a775325?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f2316b05-5493-4301-b285-842ef1d09a92?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -343,9 +343,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;995,Microsoft.Compute/CreateUpdateDisks30Min;7995
+ - Microsoft.Compute/CreateUpdateDisks3Min;997,Microsoft.Compute/CreateUpdateDisks30Min;7997
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1196'
status:
code: 202
message: Accepted
@@ -363,13 +363,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/0977aa9a-5544-438e-81a4-e8a57a775325?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/f2316b05-5493-4301-b285-842ef1d09a92?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:20.165778+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:20.3063594+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:24:29.3580578+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:24:29.4518166+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
@@ -378,20 +378,20 @@ interactions:
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\":
60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"0977aa9a-5544-438e-81a4-e8a57a775325\"\r\n}"
+ \"f2316b05-5493-4301-b285-842ef1d09a92\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1115'
+ - '1116'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:21 GMT
+ - Tue, 13 Apr 2021 07:24:31 GMT
expires:
- '-1'
pragma:
@@ -408,7 +408,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49993,Microsoft.Compute/GetOperation30Min;399993
+ - Microsoft.Compute/GetOperation3Min;49996,Microsoft.Compute/GetOperation30Min;399990
status:
code: 200
message: OK
@@ -426,7 +426,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -438,9 +438,9 @@ interactions:
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\":
60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -450,7 +450,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:21 GMT
+ - Tue, 13 Apr 2021 07:24:31 GMT
expires:
- '-1'
pragma:
@@ -467,7 +467,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4990,Microsoft.Compute/LowCostGet30Min;39990
+ - Microsoft.Compute/LowCostGet3Min;4994,Microsoft.Compute/LowCostGet30Min;39965
status:
code: 200
message: OK
@@ -489,7 +489,7 @@ interactions:
ParameterSetName:
- -g -n --duration-in-seconds
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1/beginGetAccess?api-version=2020-12-01
response:
@@ -497,17 +497,17 @@ interactions:
string: ''
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d98aa83f-f1e9-4339-9963-27119fa23fae?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- '0'
date:
- - Thu, 08 Apr 2021 03:01:22 GMT
+ - Tue, 13 Apr 2021 07:24:32 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d98aa83f-f1e9-4339-9963-27119fa23fae?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -538,24 +538,24 @@ interactions:
ParameterSetName:
- -g -n --duration-in-seconds
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d98aa83f-f1e9-4339-9963-27119fa23fae?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:23.5563914+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:23.8845001+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-kcnqn2g2k4nq.blob.core.windows.net/p5dtncl1p0vb/abcd?sv=2018-03-28&sr=b&si=fabfb389-aafa-47e9-8fd6-fd040de4602b&sig=01veG%2BRpQnNFumi%2BkOjhhZOfVzF%2BZfd5MFdFL7F%2BwAQ%3D\"\r\n}\r\n
- \ },\r\n \"name\": \"3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:24:32.7486992+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:24:32.9986704+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"properties\": {\r\n \"output\": {\r\n \"accessSAS\": \"https://md-kcnqn2g2k4nq.blob.core.windows.net/x4vb000ccqvv/abcd?sv=2018-03-28&sr=b&si=3a0a175d-1641-493e-8b2e-dee2991a73eb&sig=zUWPUBier9hbjVdqpXTUkkpWZKOEOeAFFYn3twhQX90%3D\"\r\n}\r\n
+ \ },\r\n \"name\": \"d98aa83f-f1e9-4339-9963-27119fa23fae\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '429'
+ - '421'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:53 GMT
+ - Tue, 13 Apr 2021 07:25:03 GMT
expires:
- '-1'
pragma:
@@ -572,7 +572,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49978,Microsoft.Compute/GetOperation30Min;399978
+ - Microsoft.Compute/GetOperation3Min;49986,Microsoft.Compute/GetOperation30Min;399980
status:
code: 200
message: OK
@@ -590,21 +590,21 @@ interactions:
ParameterSetName:
- -g -n --duration-in-seconds
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3562b85f-87b3-4ef5-b7d3-2725fd1c8c5e?monitor=true&api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/d98aa83f-f1e9-4339-9963-27119fa23fae?monitor=true&api-version=2020-12-01
response:
body:
- string: "{\r\n \"accessSAS\": \"https://md-kcnqn2g2k4nq.blob.core.windows.net/p5dtncl1p0vb/abcd?sv=2018-03-28&sr=b&si=fabfb389-aafa-47e9-8fd6-fd040de4602b&sig=01veG%2BRpQnNFumi%2BkOjhhZOfVzF%2BZfd5MFdFL7F%2BwAQ%3D\"\r\n}"
+ string: "{\r\n \"accessSAS\": \"https://md-kcnqn2g2k4nq.blob.core.windows.net/x4vb000ccqvv/abcd?sv=2018-03-28&sr=b&si=3a0a175d-1641-493e-8b2e-dee2991a73eb&sig=zUWPUBier9hbjVdqpXTUkkpWZKOEOeAFFYn3twhQX90%3D\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '204'
+ - '196'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:54 GMT
+ - Tue, 13 Apr 2021 07:25:03 GMT
expires:
- '-1'
pragma:
@@ -621,7 +621,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49977,Microsoft.Compute/GetOperation30Min;399977
+ - Microsoft.Compute/GetOperation3Min;49985,Microsoft.Compute/GetOperation30Min;399979
status:
code: 200
message: OK
@@ -640,14 +640,14 @@ interactions:
- -g -n --source
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -656,7 +656,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:54 GMT
+ - Tue, 13 Apr 2021 07:25:04 GMT
expires:
- '-1'
pragma:
@@ -689,7 +689,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01
response:
@@ -698,12 +698,12 @@ interactions:
{},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/32ce2fea-ef8d-49c2-8a5c-07c45a00541f?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3030d60f-5c18-45ee-8add-876ac6a6a87a?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -711,11 +711,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:56 GMT
+ - Tue, 13 Apr 2021 07:25:09 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/32ce2fea-ef8d-49c2-8a5c-07c45a00541f?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3030d60f-5c18-45ee-8add-876ac6a6a87a?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -726,9 +726,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateUpdateDisks3Min;992,Microsoft.Compute/CreateUpdateDisks30Min;7992
+ - Microsoft.Compute/CreateUpdateDisks3Min;993,Microsoft.Compute/CreateUpdateDisks30Min;7993
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1198'
status:
code: 202
message: Accepted
@@ -746,36 +746,36 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/32ce2fea-ef8d-49c2-8a5c-07c45a00541f?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/3030d60f-5c18-45ee-8add-876ac6a6a87a?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:57.00962+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:57.8064643+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:25:09.4529554+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:25:10.1873282+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d2\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\":
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:57.00962+00:00\",\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\":
- 10737418240,\r\n \"uniqueId\": \"bd7c72c0-1ec4-4461-aa8d-3fe902e57969\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:25:09.4529554+00:00\",\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2110a546-b420-4f0a-8ba3-801ee6611957\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n
- \ },\r\n \"name\": \"32ce2fea-ef8d-49c2-8a5c-07c45a00541f\"\r\n}"
+ \ },\r\n \"name\": \"3030d60f-5c18-45ee-8add-876ac6a6a87a\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1381'
+ - '1385'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:58 GMT
+ - Tue, 13 Apr 2021 07:25:11 GMT
expires:
- '-1'
pragma:
@@ -792,7 +792,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49976,Microsoft.Compute/GetOperation30Min;399976
+ - Microsoft.Compute/GetOperation3Min;49984,Microsoft.Compute/GetOperation30Min;399978
status:
code: 200
message: OK
@@ -810,7 +810,7 @@ interactions:
ParameterSetName:
- -g -n --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d2?api-version=2020-12-01
response:
@@ -820,22 +820,22 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\":
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\":
25,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:57.00962+00:00\",\r\n \"provisioningState\":
- \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\":
- 10737418240,\r\n \"uniqueId\": \"bd7c72c0-1ec4-4461-aa8d-3fe902e57969\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:25:09.4529554+00:00\",\r\n
+ \ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"2110a546-b420-4f0a-8ba3-801ee6611957\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1158'
+ - '1160'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:58 GMT
+ - Tue, 13 Apr 2021 07:25:11 GMT
expires:
- '-1'
pragma:
@@ -852,7 +852,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4969,Microsoft.Compute/LowCostGet30Min;39969
+ - Microsoft.Compute/LowCostGet3Min;4976,Microsoft.Compute/LowCostGet30Min;39955
status:
code: 200
message: OK
@@ -871,14 +871,14 @@ interactions:
- -g -n --size-gb --sku --tags
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -887,7 +887,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:00 GMT
+ - Tue, 13 Apr 2021 07:25:13 GMT
expires:
- '-1'
pragma:
@@ -920,9 +920,9 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\":
@@ -932,7 +932,7 @@ interactions:
\"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/75a6ad68-6557-48a5-998b-694c9bdf812f?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/83bac5ef-f64b-4b00-8f15-ca8c584842b9?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -940,11 +940,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:04 GMT
+ - Tue, 13 Apr 2021 07:25:18 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/75a6ad68-6557-48a5-998b-694c9bdf812f?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/83bac5ef-f64b-4b00-8f15-ca8c584842b9?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -975,13 +975,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/75a6ad68-6557-48a5-998b-694c9bdf812f?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/83bac5ef-f64b-4b00-8f15-ca8c584842b9?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:02:04.9626933+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:25:19.1092097+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:25:19.265457+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
@@ -989,20 +989,20 @@ interactions:
\"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"75a6ad68-6557-48a5-998b-694c9bdf812f\"\r\n}"
+ \"83bac5ef-f64b-4b00-8f15-ca8c584842b9\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1086'
+ - '1084'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:06 GMT
+ - Tue, 13 Apr 2021 07:25:20 GMT
expires:
- '-1'
pragma:
@@ -1019,7 +1019,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49974,Microsoft.Compute/GetOperation30Min;399974
+ - Microsoft.Compute/GetOperation3Min;49982,Microsoft.Compute/GetOperation30Min;399976
status:
code: 200
message: OK
@@ -1037,9 +1037,9 @@ interactions:
ParameterSetName:
- -g -n --size-gb --sku --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -1048,19 +1048,19 @@ interactions:
\"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '861'
+ - '860'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:07 GMT
+ - Tue, 13 Apr 2021 07:25:21 GMT
expires:
- '-1'
pragma:
@@ -1077,7 +1077,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4966,Microsoft.Compute/LowCostGet30Min;39966
+ - Microsoft.Compute/LowCostGet3Min;4973,Microsoft.Compute/LowCostGet30Min;39952
status:
code: 200
message: OK
@@ -1095,9 +1095,9 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -1106,19 +1106,19 @@ interactions:
\"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '861'
+ - '860'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:08 GMT
+ - Tue, 13 Apr 2021 07:25:22 GMT
expires:
- '-1'
pragma:
@@ -1135,7 +1135,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4965,Microsoft.Compute/LowCostGet30Min;39965
+ - Microsoft.Compute/LowCostGet3Min;4972,Microsoft.Compute/LowCostGet30Min;39951
status:
code: 200
message: OK
@@ -1160,9 +1160,9 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"tag1\":
@@ -1175,7 +1175,7 @@ interactions:
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c824e3c0-fa21-45ce-8dd4-f9951604702a?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e59e7b0d-9690-42f5-909d-9d10f533cec6?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1183,11 +1183,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:09 GMT
+ - Tue, 13 Apr 2021 07:25:24 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c824e3c0-fa21-45ce-8dd4-f9951604702a?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e59e7b0d-9690-42f5-909d-9d10f533cec6?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1200,7 +1200,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;998,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7998
x-ms-ratelimit-remaining-subscription-writes:
- - '1199'
+ - '1195'
status:
code: 202
message: Accepted
@@ -1218,13 +1218,13 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/c824e3c0-fa21-45ce-8dd4-f9951604702a?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/e59e7b0d-9690-42f5-909d-9d10f533cec6?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:02:09.9158297+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:02:10.8533191+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:25:24.2654258+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:25:24.8748386+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
@@ -1232,20 +1232,20 @@ interactions:
\"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"c824e3c0-fa21-45ce-8dd4-f9951604702a\"\r\n}"
+ \"e59e7b0d-9690-42f5-909d-9d10f533cec6\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1088'
+ - '1087'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:11 GMT
+ - Tue, 13 Apr 2021 07:25:26 GMT
expires:
- '-1'
pragma:
@@ -1262,7 +1262,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49972,Microsoft.Compute/GetOperation30Min;399972
+ - Microsoft.Compute/GetOperation3Min;49980,Microsoft.Compute/GetOperation30Min;399974
status:
code: 200
message: OK
@@ -1280,9 +1280,9 @@ interactions:
ParameterSetName:
- -g -n --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -1291,19 +1291,19 @@ interactions:
\"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '863'
+ - '862'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:11 GMT
+ - Tue, 13 Apr 2021 07:25:26 GMT
expires:
- '-1'
pragma:
@@ -1320,7 +1320,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4963,Microsoft.Compute/LowCostGet30Min;39963
+ - Microsoft.Compute/LowCostGet3Min;4970,Microsoft.Compute/LowCostGet30Min;39949
status:
code: 200
message: OK
@@ -1338,9 +1338,9 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1''
@@ -1354,7 +1354,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:12 GMT
+ - Tue, 13 Apr 2021 07:25:26 GMT
expires:
- '-1'
pragma:
@@ -1382,7 +1382,7 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -1394,9 +1394,9 @@ interactions:
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\":
60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1406,7 +1406,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:13 GMT
+ - Tue, 13 Apr 2021 07:25:26 GMT
expires:
- '-1'
pragma:
@@ -1423,7 +1423,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4962,Microsoft.Compute/LowCostGet30Min;39962
+ - Microsoft.Compute/LowCostGet3Min;4968,Microsoft.Compute/LowCostGet30Min;39947
status:
code: 200
message: OK
@@ -1442,14 +1442,14 @@ interactions:
- -g -n --source --sku
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1458,7 +1458,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:13 GMT
+ - Tue, 13 Apr 2021 07:25:27 GMT
expires:
- '-1'
pragma:
@@ -1491,20 +1491,20 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n
\ \"name\": \"Premium_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\":
{\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n
\ }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/481231ca-a9f5-420f-80cb-3aeb67e2d9ef?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/611a9b01-dd14-4a27-afc5-a0dd00140ec3?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1512,11 +1512,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:18 GMT
+ - Tue, 13 Apr 2021 07:25:32 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/481231ca-a9f5-420f-80cb-3aeb67e2d9ef?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/611a9b01-dd14-4a27-afc5-a0dd00140ec3?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1529,7 +1529,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/HighCostSnapshotCreateHydrate3Min;997,Microsoft.Compute/HighCostSnapshotCreateHydrate30Min;7997
x-ms-ratelimit-remaining-subscription-writes:
- - '1197'
+ - '1199'
status:
code: 202
message: Accepted
@@ -1547,26 +1547,26 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/481231ca-a9f5-420f-80cb-3aeb67e2d9ef?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/DiskOperations/611a9b01-dd14-4a27-afc5-a0dd00140ec3?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:02:18.7595919+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:02:19.2908186+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:25:33.2185607+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:25:33.7185365+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s2\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\":
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:18.7595919+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:33.2185607+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"42bd4e83-ead9-4355-8435-9d64534db5a8\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"7a237bf9-17c1-4353-b38e-b52b808d1cc3\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"481231ca-a9f5-420f-80cb-3aeb67e2d9ef\"\r\n}"
+ \"611a9b01-dd14-4a27-afc5-a0dd00140ec3\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1575,7 +1575,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:21 GMT
+ - Tue, 13 Apr 2021 07:25:35 GMT
expires:
- '-1'
pragma:
@@ -1592,7 +1592,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;49970,Microsoft.Compute/GetOperation30Min;399970
+ - Microsoft.Compute/GetOperation3Min;49978,Microsoft.Compute/GetOperation30Min;399972
status:
code: 200
message: OK
@@ -1610,9 +1610,9 @@ interactions:
ParameterSetName:
- -g -n --source --sku
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s2\",\r\n
@@ -1620,11 +1620,11 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\":
\"Premium\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:18.7595919+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:33.2185607+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"42bd4e83-ead9-4355-8435-9d64534db5a8\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"7a237bf9-17c1-4353-b38e-b52b808d1cc3\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1634,7 +1634,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:21 GMT
+ - Tue, 13 Apr 2021 07:25:35 GMT
expires:
- '-1'
pragma:
@@ -1651,7 +1651,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4958,Microsoft.Compute/LowCostGet30Min;39958
+ - Microsoft.Compute/LowCostGet3Min;4964,Microsoft.Compute/LowCostGet30Min;39943
status:
code: 200
message: OK
@@ -1669,7 +1669,7 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/virtualMachines/s1?$expand=instanceView&api-version=2020-12-01
response:
@@ -1685,7 +1685,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:21 GMT
+ - Tue, 13 Apr 2021 07:25:36 GMT
expires:
- '-1'
pragma:
@@ -1713,9 +1713,9 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -1724,19 +1724,19 @@ interactions:
\"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '863'
+ - '862'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:22 GMT
+ - Tue, 13 Apr 2021 07:25:37 GMT
expires:
- '-1'
pragma:
@@ -1753,7 +1753,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4956,Microsoft.Compute/LowCostGet30Min;39956
+ - Microsoft.Compute/LowCostGet3Min;4963,Microsoft.Compute/LowCostGet30Min;39942
status:
code: 200
message: OK
@@ -1771,9 +1771,9 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1''
@@ -1787,7 +1787,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:23 GMT
+ - Tue, 13 Apr 2021 07:25:38 GMT
expires:
- '-1'
pragma:
@@ -1815,7 +1815,7 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -1827,9 +1827,9 @@ interactions:
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\":
60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -1839,7 +1839,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:23 GMT
+ - Tue, 13 Apr 2021 07:25:38 GMT
expires:
- '-1'
pragma:
@@ -1856,7 +1856,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4955,Microsoft.Compute/LowCostGet30Min;39955
+ - Microsoft.Compute/LowCostGet3Min;4962,Microsoft.Compute/LowCostGet30Min;39941
status:
code: 200
message: OK
@@ -1875,14 +1875,14 @@ interactions:
- -g -n --source --data-disk-sources --os-type --tags
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -1891,7 +1891,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:24 GMT
+ - Tue, 13 Apr 2021 07:25:38 GMT
expires:
- '-1'
pragma:
@@ -1929,7 +1929,7 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1?api-version=2020-12-01
response:
@@ -1955,7 +1955,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b1013a73-8417-40c9-80db-5a7a21f7609e?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/751a75e8-50a4-4bf8-8c7b-00d4f3876d9b?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -1963,7 +1963,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:29 GMT
+ - Tue, 13 Apr 2021 07:25:43 GMT
expires:
- '-1'
pragma:
@@ -1978,7 +1978,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateImages3Min;39,Microsoft.Compute/CreateImages30Min;199
x-ms-ratelimit-remaining-subscription-writes:
- - '1196'
+ - '1198'
status:
code: 201
message: Created
@@ -1996,23 +1996,23 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b1013a73-8417-40c9-80db-5a7a21f7609e?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/751a75e8-50a4-4bf8-8c7b-00d4f3876d9b?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:02:28.8053588+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:02:33.946219+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"b1013a73-8417-40c9-80db-5a7a21f7609e\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:25:42.3780884+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:25:47.5033245+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"751a75e8-50a4-4bf8-8c7b-00d4f3876d9b\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '183'
+ - '184'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:02:59 GMT
+ - Tue, 13 Apr 2021 07:26:14 GMT
expires:
- '-1'
pragma:
@@ -2029,7 +2029,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994
+ - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29950
status:
code: 200
message: OK
@@ -2047,7 +2047,7 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i1?api-version=2020-12-01
response:
@@ -2079,7 +2079,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:00 GMT
+ - Tue, 13 Apr 2021 07:26:14 GMT
expires:
- '-1'
pragma:
@@ -2096,7 +2096,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1798
+ - Microsoft.Compute/GetImages3Min;358,Microsoft.Compute/GetImages30Min;1792
status:
code: 200
message: OK
@@ -2114,7 +2114,7 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/virtualMachines/s1?$expand=instanceView&api-version=2020-12-01
response:
@@ -2130,7 +2130,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:01 GMT
+ - Tue, 13 Apr 2021 07:26:14 GMT
expires:
- '-1'
pragma:
@@ -2158,9 +2158,9 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -2169,19 +2169,19 @@ interactions:
\"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '863'
+ - '862'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:01 GMT
+ - Tue, 13 Apr 2021 07:26:15 GMT
expires:
- '-1'
pragma:
@@ -2198,7 +2198,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4946,Microsoft.Compute/LowCostGet30Min;39946
+ - Microsoft.Compute/LowCostGet3Min;4950,Microsoft.Compute/LowCostGet30Min;39929
status:
code: 200
message: OK
@@ -2216,9 +2216,9 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1''
@@ -2232,7 +2232,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:02 GMT
+ - Tue, 13 Apr 2021 07:26:16 GMT
expires:
- '-1'
pragma:
@@ -2260,7 +2260,7 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -2272,9 +2272,9 @@ interactions:
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\":
60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -2284,7 +2284,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:02 GMT
+ - Tue, 13 Apr 2021 07:26:17 GMT
expires:
- '-1'
pragma:
@@ -2301,7 +2301,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4945,Microsoft.Compute/LowCostGet30Min;39945
+ - Microsoft.Compute/LowCostGet3Min;4949,Microsoft.Compute/LowCostGet30Min;39928
status:
code: 200
message: OK
@@ -2320,14 +2320,14 @@ interactions:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2336,7 +2336,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:03 GMT
+ - Tue, 13 Apr 2021 07:26:17 GMT
expires:
- '-1'
pragma:
@@ -2374,7 +2374,7 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2?api-version=2020-12-01
response:
@@ -2400,7 +2400,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/26db7f33-1e45-474f-974a-4cd778e33f5e?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/977f0731-d59d-46e1-bb08-23eb8d3f3bb2?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -2408,7 +2408,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:07 GMT
+ - Tue, 13 Apr 2021 07:26:23 GMT
expires:
- '-1'
pragma:
@@ -2423,7 +2423,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateImages3Min;38,Microsoft.Compute/CreateImages30Min;198
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1198'
status:
code: 201
message: Created
@@ -2441,23 +2441,23 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/26db7f33-1e45-474f-974a-4cd778e33f5e?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/977f0731-d59d-46e1-bb08-23eb8d3f3bb2?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:06.0570312+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:11.166667+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"26db7f33-1e45-474f-974a-4cd778e33f5e\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:26:21.8645607+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:26:26.9742315+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"977f0731-d59d-46e1-bb08-23eb8d3f3bb2\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '183'
+ - '184'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:37 GMT
+ - Tue, 13 Apr 2021 07:26:53 GMT
expires:
- '-1'
pragma:
@@ -2474,7 +2474,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985
+ - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29944
status:
code: 200
message: OK
@@ -2492,7 +2492,7 @@ interactions:
ParameterSetName:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i2?api-version=2020-12-01
response:
@@ -2524,7 +2524,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:38 GMT
+ - Tue, 13 Apr 2021 07:26:53 GMT
expires:
- '-1'
pragma:
@@ -2541,7 +2541,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1796
+ - Microsoft.Compute/GetImages3Min;356,Microsoft.Compute/GetImages30Min;1790
status:
code: 200
message: OK
@@ -2560,7 +2560,7 @@ interactions:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
--data-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/virtualMachines/s1?$expand=instanceView&api-version=2020-12-01
response:
@@ -2576,7 +2576,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:38 GMT
+ - Tue, 13 Apr 2021 07:26:55 GMT
expires:
- '-1'
pragma:
@@ -2605,9 +2605,9 @@ interactions:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
--data-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -2616,19 +2616,19 @@ interactions:
\"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\":
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 1,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-08T03:02:04.7595574+00:00\",\r\n
+ \ },\r\n \"incremental\": false,\r\n \"timeCreated\": \"2021-04-13T07:25:19.124853+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"8eb7c330-009a-4eb9-8b9d-a4d33f37f97f\",\r\n
+ \ \"diskSizeBytes\": 1073741824,\r\n \"uniqueId\": \"b6687faa-1b85-4a33-9bd8-ea22020d490d\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '863'
+ - '862'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:39 GMT
+ - Tue, 13 Apr 2021 07:26:56 GMT
expires:
- '-1'
pragma:
@@ -2645,7 +2645,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4924,Microsoft.Compute/LowCostGet30Min;39924
+ - Microsoft.Compute/LowCostGet3Min;4928,Microsoft.Compute/LowCostGet30Min;39907
status:
code: 200
message: OK
@@ -2664,9 +2664,9 @@ interactions:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
--data-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1''
@@ -2680,7 +2680,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:40 GMT
+ - Tue, 13 Apr 2021 07:26:56 GMT
expires:
- '-1'
pragma:
@@ -2709,7 +2709,7 @@ interactions:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
--data-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -2721,9 +2721,9 @@ interactions:
{\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\":
60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"timeCreated\": \"2021-04-08T03:01:15.6345118+00:00\",\r\n
+ \ },\r\n \"timeCreated\": \"2021-04-13T07:24:23.5768218+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"ActiveSAS\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"516f7bd6-5376-4210-a22a-3a1e52c71a2b\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"89774558-48bd-4be4-96a5-300bba94cb91\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
@@ -2733,7 +2733,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:40 GMT
+ - Tue, 13 Apr 2021 07:26:56 GMT
expires:
- '-1'
pragma:
@@ -2750,7 +2750,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;4922,Microsoft.Compute/LowCostGet30Min;39922
+ - Microsoft.Compute/LowCostGet3Min;4924,Microsoft.Compute/LowCostGet30Min;39903
status:
code: 200
message: OK
@@ -2770,14 +2770,14 @@ interactions:
--data-disk-caching
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_managed_disk000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-08T03:01:05Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001","name":"cli_test_managed_disk000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-13T07:24:15Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -2786,7 +2786,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:40 GMT
+ - Tue, 13 Apr 2021 07:26:57 GMT
expires:
- '-1'
pragma:
@@ -2825,7 +2825,7 @@ interactions:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
--data-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3?api-version=2020-12-01
response:
@@ -2851,7 +2851,7 @@ interactions:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/04401203-0c67-4541-b4ca-6c717b301ef3?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3555931c-f0f9-47d2-87aa-5bc52863b606?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -2859,7 +2859,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:03:45 GMT
+ - Tue, 13 Apr 2021 07:27:04 GMT
expires:
- '-1'
pragma:
@@ -2874,7 +2874,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateImages3Min;37,Microsoft.Compute/CreateImages30Min;197
x-ms-ratelimit-remaining-subscription-writes:
- - '1195'
+ - '1198'
status:
code: 201
message: Created
@@ -2893,14 +2893,14 @@ interactions:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
--data-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/04401203-0c67-4541-b4ca-6c717b301ef3?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3555931c-f0f9-47d2-87aa-5bc52863b606?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:03:44.6525367+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:03:49.7777747+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"04401203-0c67-4541-b4ca-6c717b301ef3\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-13T07:27:02.4758662+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:27:07.6010852+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"3555931c-f0f9-47d2-87aa-5bc52863b606\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2909,7 +2909,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:15 GMT
+ - Tue, 13 Apr 2021 07:27:34 GMT
expires:
- '-1'
pragma:
@@ -2926,7 +2926,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978
+ - Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29942
status:
code: 200
message: OK
@@ -2945,7 +2945,7 @@ interactions:
- -g -n --source --data-disk-sources --os-type --tags --storage-sku --os-disk-caching
--data-disk-caching
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_managed_disk000001/providers/Microsoft.Compute/images/i3?api-version=2020-12-01
response:
@@ -2977,7 +2977,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:04:15 GMT
+ - Tue, 13 Apr 2021 07:27:34 GMT
expires:
- '-1'
pragma:
@@ -2994,7 +2994,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1794
+ - Microsoft.Compute/GetImages3Min;354,Microsoft.Compute/GetImages30Min;1788
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_snapshot_incremental.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_snapshot_incremental.yaml
index c0e4d22d867..b3b6211849b 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_snapshot_incremental.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_snapshot_incremental.yaml
@@ -18,7 +18,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb -l
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -30,7 +30,7 @@ interactions:
\"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69108ed5-402b-4116-819e-5849fd91debd?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5b5ad687-fea6-4cfd-bd91-38fa2a7d71d5?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -38,11 +38,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:13 GMT
+ - Tue, 13 Apr 2021 07:24:23 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69108ed5-402b-4116-819e-5849fd91debd?monitor=true&api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5b5ad687-fea6-4cfd-bd91-38fa2a7d71d5?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -55,7 +55,7 @@ interactions:
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999
x-ms-ratelimit-remaining-subscription-writes:
- - '1198'
+ - '1199'
status:
code: 202
message: Accepted
@@ -73,13 +73,13 @@ interactions:
ParameterSetName:
- -g -n --size-gb -l
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/69108ed5-402b-4116-819e-5849fd91debd?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/5b5ad687-fea6-4cfd-bd91-38fa2a7d71d5?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:13.6902077+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:14.210213+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:24:24.0449049+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:24:24.2199027+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"d1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1\",\r\n
\ \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"centraluseuap\",\r\n
@@ -88,19 +88,19 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:01:13.865212+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-13T07:24:24.0499291+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\",\r\n \"networkAccessPolicy\":
- \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"69108ed5-402b-4116-819e-5849fd91debd\"\r\n}"
+ \ \"uniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\",\r\n \"networkAccessPolicy\":
+ \"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}\r\n },\r\n \"name\": \"5b5ad687-fea6-4cfd-bd91-38fa2a7d71d5\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1116'
+ - '1118'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:15 GMT
+ - Tue, 13 Apr 2021 07:24:26 GMT
expires:
- '-1'
pragma:
@@ -135,7 +135,7 @@ interactions:
ParameterSetName:
- -g -n --size-gb -l
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -147,19 +147,19 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:01:13.865212+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-13T07:24:24.0499291+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '892'
+ - '893'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:15 GMT
+ - Tue, 13 Apr 2021 07:24:26 GMT
expires:
- '-1'
pragma:
@@ -194,9 +194,9 @@ interactions:
ParameterSetName:
- -g -n --incremental -l --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/d1?api-version=2020-12-01
response:
body:
string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.Compute/snapshots/d1''
@@ -210,7 +210,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:17 GMT
+ - Tue, 13 Apr 2021 07:24:27 GMT
expires:
- '-1'
pragma:
@@ -238,7 +238,7 @@ interactions:
ParameterSetName:
- -g -n --incremental -l --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1?api-version=2020-12-01
response:
@@ -250,19 +250,19 @@ interactions:
\ \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 10,\r\n
\ \"diskIOPSReadWrite\": 120,\r\n \"diskMBpsReadWrite\": 25,\r\n \"encryption\":
{\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\":
- \"2021-04-08T03:01:13.865212+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \"2021-04-13T07:24:24.0499291+00:00\",\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 10737418240,\r\n
- \ \"uniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\",\r\n \"networkAccessPolicy\":
+ \ \"uniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\",\r\n \"networkAccessPolicy\":
\"AllowAll\",\r\n \"tier\": \"P3\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '892'
+ - '893'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:17 GMT
+ - Tue, 13 Apr 2021 07:24:28 GMT
expires:
- '-1'
pragma:
@@ -304,20 +304,20 @@ interactions:
ParameterSetName:
- -g -n --incremental -l --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"sku\":
{\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"creationData\":
{\r\n \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\"\r\n },\r\n
\ \"incremental\": true,\r\n \"provisioningState\": \"Updating\",\r\n
\ \"isArmResource\": true\r\n }\r\n}"
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9693c153-25ff-4fc2-94d3-e71fa4e419e9?api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/691e2fe1-b83b-4e89-a415-ac84b84757b2?api-version=2020-12-01
cache-control:
- no-cache
content-length:
@@ -325,11 +325,11 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:22 GMT
+ - Tue, 13 Apr 2021 07:24:33 GMT
expires:
- '-1'
location:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9693c153-25ff-4fc2-94d3-e71fa4e419e9?monitor=true&api-version=2020-05-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/691e2fe1-b83b-4e89-a415-ac84b84757b2?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -360,35 +360,36 @@ interactions:
ParameterSetName:
- -g -n --incremental -l --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/9693c153-25ff-4fc2-94d3-e71fa4e419e9?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/centraluseuap/DiskOperations/691e2fe1-b83b-4e89-a415-ac84b84757b2?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-04-08T03:01:22.4306159+00:00\",\r\n \"endTime\":
- \"2021-04-08T03:01:24.2958371+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ string: "{\r\n \"startTime\": \"2021-04-13T07:24:33.9501214+00:00\",\r\n \"endTime\":
+ \"2021-04-13T07:24:35.2588341+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\r\n \"name\": \"s1\",\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
\ \"type\": \"Microsoft.Compute/snapshots\",\r\n \"location\": \"centraluseuap\",\r\n
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": true,\r\n \"timeCreated\": \"2021-04-08T03:01:22.4956471+00:00\",\r\n
+ \ },\r\n \"incremental\": true,\r\n \"timeCreated\": \"2021-04-13T07:24:33.9801217+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"75b5ef10-e8a4-47fe-8246-b0d6de45c90a\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3b7045b6-7ae0-496e-82d1-126d98e85e89\",\r\n
+ \ \"incrementalSnapshotFamilyId\": \"e84240ee-5a1c-4701-bd28-17d02e237c9c\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}\r\n },\r\n \"name\":
- \"9693c153-25ff-4fc2-94d3-e71fa4e419e9\"\r\n}"
+ \"691e2fe1-b83b-4e89-a415-ac84b84757b2\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1348'
+ - '1424'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:24 GMT
+ - Tue, 13 Apr 2021 07:24:35 GMT
expires:
- '-1'
pragma:
@@ -423,9 +424,9 @@ interactions:
ParameterSetName:
- -g -n --incremental -l --source
User-Agent:
- - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-05-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1?api-version=2020-12-01
response:
body:
string: "{\r\n \"name\": \"s1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/snapshots/s1\",\r\n
@@ -433,21 +434,22 @@ interactions:
\ \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\":
\"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n
\ \"createOption\": \"Copy\",\r\n \"sourceResourceId\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_snapshot_incremental_000001/providers/Microsoft.Compute/disks/d1\",\r\n
- \ \"sourceUniqueId\": \"e6138eeb-4a1b-49a4-b8ff-36b361176c19\"\r\n },\r\n
+ \ \"sourceUniqueId\": \"672ec182-076c-4b09-8a0b-2ff1cd71d468\"\r\n },\r\n
\ \"diskSizeGB\": 10,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n
- \ },\r\n \"incremental\": true,\r\n \"timeCreated\": \"2021-04-08T03:01:22.4956471+00:00\",\r\n
+ \ },\r\n \"incremental\": true,\r\n \"timeCreated\": \"2021-04-13T07:24:33.9801217+00:00\",\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n
- \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"75b5ef10-e8a4-47fe-8246-b0d6de45c90a\",\r\n
+ \ \"diskSizeBytes\": 10737418240,\r\n \"uniqueId\": \"3b7045b6-7ae0-496e-82d1-126d98e85e89\",\r\n
+ \ \"incrementalSnapshotFamilyId\": \"e84240ee-5a1c-4701-bd28-17d02e237c9c\",\r\n
\ \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '1123'
+ - '1199'
content-type:
- application/json; charset=utf-8
date:
- - Thu, 08 Apr 2021 03:01:25 GMT
+ - Tue, 13 Apr 2021 07:24:36 GMT
expires:
- '-1'
pragma:
@@ -464,7 +466,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/LowCostGet3Min;14996,Microsoft.Compute/LowCostGet30Min;119996
+ - Microsoft.Compute/LowCostGet3Min;14995,Microsoft.Compute/LowCostGet30Min;119995
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extended_location.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extended_location.yaml
new file mode 100644
index 00000000000..17657ad34bd
--- /dev/null
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extended_location.yaml
@@ -0,0 +1,481 @@
+interactions:
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extended_location_000001?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001","name":"cli_test_vmss_extended_location_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-01T06:55:08Z"},"properties":{"provisioningState":"Succeeded"}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '428'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:14 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ Connection:
+ - keep-alive
+ User-Agent:
+ - python-requests/2.22.0
+ method: GET
+ uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
+ response:
+ body:
+ string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n
+ \ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\":
+ {},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\":
+ \"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\":
+ {\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n
+ \ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n
+ \ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\":
+ \"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n
+ \ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n
+ \ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\":
+ \"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\":
+ \"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\":
+ \"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\":
+ {\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n
+ \ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n
+ \ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\":
+ \"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n
+ \ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n
+ \ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n
+ \ \"version\": \"latest\"\n }\n },\n \"Windows\":
+ {\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
+ \ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n
+ \ \"version\": \"latest\"\n },\n \"Win2016Datacenter\":
+ {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
+ \"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\":
+ \"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\":
+ \"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\":
+ \"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n
+ \ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
+ \ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n
+ \ \"version\": \"latest\"\n },\n \"Win2008R2SP1\":
+ {\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
+ \"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\":
+ \"latest\"\n }\n }\n }\n }\n }\n}\n"
+ headers:
+ accept-ranges:
+ - bytes
+ access-control-allow-origin:
+ - '*'
+ cache-control:
+ - max-age=300
+ connection:
+ - keep-alive
+ content-length:
+ - '2501'
+ content-security-policy:
+ - default-src 'none'; style-src 'unsafe-inline'; sandbox
+ content-type:
+ - text/plain; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:15 GMT
+ etag:
+ - W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
+ expires:
+ - Thu, 01 Apr 2021 07:00:15 GMT
+ source-age:
+ - '190'
+ strict-transport-security:
+ - max-age=31536000
+ vary:
+ - Authorization,Accept-Encoding
+ via:
+ - 1.1 varnish
+ x-cache:
+ - HIT
+ x-cache-hits:
+ - '1'
+ x-content-type-options:
+ - nosniff
+ x-fastly-request-id:
+ - bd75a73d47ec10866baa39aa12d3b1c7df9d88ec
+ x-frame-options:
+ - deny
+ x-github-request-id:
+ - 68E6:6BB2:C0B17:E0E4D:6063C8CE
+ x-served-by:
+ - cache-sin18041-SIN
+ x-timer:
+ - S1617260115.181286,VS0,VE1
+ x-xss-protection:
+ - 1; mode=block
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json, text/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --generate-ssh-keys --edge-zone
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
+ response:
+ body:
+ string: '{"value":[]}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '12'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:15 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0", "parameters": {}, "variables": {}, "resources":
+ [{"name": "vmssVNET", "type": "Microsoft.Network/virtualNetworks", "location":
+ "westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties":
+ {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name":
+ "vmssSubnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"apiVersion":
+ "2018-01-01", "type": "Microsoft.Network/publicIPAddresses", "name": "vmssLBPublicIP",
+ "location": "westus", "tags": {}, "dependsOn": [], "properties": {"publicIPAllocationMethod":
+ "Dynamic"}}, {"type": "Microsoft.Network/loadBalancers", "name": "vmssLB", "location":
+ "westus", "tags": {}, "apiVersion": "2018-01-01", "dependsOn": ["Microsoft.Network/virtualNetworks/vmssVNET",
+ "Microsoft.Network/publicIpAddresses/vmssLBPublicIP"], "properties": {"backendAddressPools":
+ [{"name": "vmssLBBEPool"}], "inboundNatPools": [{"name": "vmssLBNatPool", "properties":
+ {"frontendIPConfiguration": {"id": "[concat(resourceId(''Microsoft.Network/loadBalancers'',
+ ''vmssLB''), ''/frontendIPConfigurations/'', ''loadBalancerFrontEnd'')]"}, "protocol":
+ "tcp", "frontendPortRangeStart": "50000", "frontendPortRangeEnd": "50119", "backendPort":
+ 22}}], "frontendIPConfigurations": [{"name": "loadBalancerFrontEnd", "properties":
+ {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmssLBPublicIP"}}}]}},
+ {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "vmss", "location":
+ "westus", "tags": {}, "apiVersion": "2020-12-01", "dependsOn": ["Microsoft.Network/virtualNetworks/vmssVNET",
+ "Microsoft.Network/loadBalancers/vmssLB"], "sku": {"name": "Standard_DS1_v2",
+ "capacity": 2}, "properties": {"overprovision": true, "upgradePolicy": {"mode":
+ "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption":
+ "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}},
+ "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku":
+ "18.04-LTS", "version": "latest"}}, "networkProfile": {"networkInterfaceConfigurations":
+ [{"name": "vmss481ccNic", "properties": {"primary": "true", "ipConfigurations":
+ [{"name": "vmss481ccIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET/subnets/vmssSubnet"},
+ "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/backendAddressPools/vmssLBBEPool"}],
+ "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/inboundNatPools/vmssLBNatPool"}]}}]}}]},
+ "osProfile": {"computerNamePrefix": "vmss481cc", "adminUsername": "fey", "linuxConfiguration":
+ {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/fey/.ssh/authorized_keys",
+ "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\n"}]}}}}, "singlePlacementGroup": null}, "extendedLocation":
+ {"name": "microsoftlosangeles1", "type": "EdgeZone"}}], "outputs": {"VMSS":
+ {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'',
+ ''vmss''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}},
+ "parameters": {}, "mode": "Incremental"}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss create
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '4226'
+ Content-Type:
+ - application/json; charset=utf-8
+ ParameterSetName:
+ - -g -n --image --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ accept-language:
+ - en-US
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP","name":"vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9277218166363052771","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-01T06:55:18.6768164Z","duration":"PT0.9423673S","correlationId":"1d4f430f-37b4-430e-bf6c-3c9d88d49ae6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss"}]}}'
+ headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP/operationStatuses/08585843467677431868?api-version=2020-10-01
+ cache-control:
+ - no-cache
+ content-length:
+ - '2680'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:20 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ status:
+ code: 201
+ message: Created
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843467677431868?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Running"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '20'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:55:52 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585843467677431868?api-version=2020-10-01
+ response:
+ body:
+ string: '{"status":"Succeeded"}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '22'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:56:22 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss create
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n --image --generate-ssh-keys --edge-zone
+ User-Agent:
+ - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.21.0
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
+ response:
+ body:
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Resources/deployments/vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP","name":"vmss_deploy_QoWFRBRDcSls3uleKVP5Hq6CAgpd6EZP","type":"Microsoft.Resources/deployments","properties":{"templateHash":"9277218166363052771","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-01T06:56:12.7146994Z","duration":"PT54.9802503S","correlationId":"1d4f430f-37b4-430e-bf6c-3c9d88d49ae6","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmssLBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmssLBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmssLB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmssVNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmssLB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss481cc","adminUsername":"fey","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/fey/.ssh/authorized_keys","keyData":"ssh-rsa
+ AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\n"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss481ccNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss481ccIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET/subnets/vmssSubnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/backendAddressPools/vmssLBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/inboundNatPools/vmssLBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"e943d23a-fc86-41b5-aaa7-f6652b30f093","platformFaultDomainCount":1}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/publicIPAddresses/vmssLBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET"}]}}'
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '5890'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:56:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss show
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.21.0 azsdk-python-azure-mgmt-compute/19.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmss\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\":
+ \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
+ \ \"tier\": \"Standard\",\r\n \"capacity\": 2\r\n },\r\n \"properties\":
+ {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
+ \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
+ {\r\n \"computerNamePrefix\": \"vmss481cc\",\r\n \"adminUsername\":
+ \"fey\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
+ true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n
+ \ \"path\": \"/home/fey/.ssh/authorized_keys\",\r\n \"keyData\":
+ \"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDmzXeK++L20uMK/Ug5wpjnWWyMlHoecEOxyHueHc1gPDj8qgLChiHt1OWJ1sDjiqBJ+hEEwZLjN8lCmUvWzzrl20d7M/BVp1ejulE/zr999kWuY3m5+FpAkbbxeO9LWoafwOir9dPzIOjDGdPWKbgHr3SerOHAuvVdXJDhWHtW5lB/MEnrxi48Pz/8k1lD1YccUAI6zDgKVJPBEk9fWMW8H0hKYsRXmlxdtg2npBQK7kbmcB2NJPEhTVgxVPqSaBVAt2lOCC/QQvAXcoD0lJGujp1IVYqSUarS5RnrYEDZ9Q6EKduWrP0GFkFkF8YzpFe+BRFaV8bLJrvZN43vgzRj
+ fey@DESKTOP-ARGPJS4\\n\"\r\n }\r\n ]\r\n },\r\n
+ \ \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
+ [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
+ true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
+ \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
+ \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
+ \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
+ 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
+ \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
+ \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
+ \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss481ccNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss481ccIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/virtualNetworks/vmssVNET/subnets/vmssSubnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/backendAddressPools/vmssLBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extended_location_000001/providers/Microsoft.Network/loadBalancers/vmssLB/inboundNatPools/vmssLBNatPool\"}]}}]}}]}\r\n
+ \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\":
+ true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
+ \"e943d23a-fc86-41b5-aaa7-f6652b30f093\",\r\n \"platformFaultDomainCount\":
+ 1\r\n },\r\n \"extendedLocation\": {\r\n \"type\": \"EdgeZone\",\r\n
+ \ \"name\": \"microsoftlosangeles1\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '3385'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Thu, 01 Apr 2021 06:56:23 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetVMScaleSet3Min;387,Microsoft.Compute/GetVMScaleSet30Min;2575
+ status:
+ code: 200
+ message: OK
+version: 1
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extension.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extension.yaml
index 68c0a2bcfc5..645f56fd259 100644
--- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extension.yaml
+++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_extension.yaml
@@ -13,15 +13,15 @@ interactions:
ParameterSetName:
- -n -g --image --authentication-type --admin-username --admin-password --instance-count
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001","name":"cli_test_vmss_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-02-09T06:36:23Z"},"properties":{"provisioningState":"Succeeded"}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001","name":"cli_test_vmss_extension000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-16T03:16:10Z"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
@@ -30,7 +30,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:36:24 GMT
+ - Fri, 16 Apr 2021 03:16:35 GMT
expires:
- '-1'
pragma:
@@ -54,7 +54,7 @@ interactions:
Connection:
- keep-alive
User-Agent:
- - python-requests/2.25.1
+ - python-requests/2.22.0
method: GET
uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
response:
@@ -109,35 +109,35 @@ interactions:
content-type:
- text/plain; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:36:25 GMT
+ - Fri, 16 Apr 2021 03:16:36 GMT
etag:
- W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
expires:
- - Tue, 09 Feb 2021 06:41:25 GMT
+ - Fri, 16 Apr 2021 03:21:36 GMT
source-age:
- - '39'
+ - '173'
strict-transport-security:
- max-age=31536000
vary:
- - Authorization,Accept-Encoding, Accept-Encoding
+ - Authorization,Accept-Encoding
via:
- 1.1 varnish
x-cache:
- HIT
x-cache-hits:
- - '2'
+ - '1'
x-content-type-options:
- nosniff
x-fastly-request-id:
- - 31f660edb256cc45be8da9a904b54fb84fa5d774
+ - 54eae0bf350cde8ed172830b39609655d26ddde7
x-frame-options:
- deny
x-github-request-id:
- - 5F66:4D94:DC2B:ECD5:60217BA5
+ - 6D68:7880:3ABE0:4D759:6078B302
x-served-by:
- - cache-sin18037-SIN
+ - cache-qpg1275-QPG
x-timer:
- - S1612852585.394531,VS0,VE0
+ - S1618542997.724790,VS0,VE1
x-xss-protection:
- 1; mode=block
status:
@@ -157,7 +157,7 @@ interactions:
ParameterSetName:
- -n -g --image --authentication-type --admin-username --admin-password --instance-count
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
@@ -171,7 +171,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:36:25 GMT
+ - Fri, 16 Apr 2021 03:16:37 GMT
expires:
- '-1'
pragma:
@@ -208,15 +208,18 @@ interactions:
"westus", "tags": {}, "apiVersion": "2020-12-01", "dependsOn": ["Microsoft.Network/virtualNetworks/vmss1VNET",
"Microsoft.Network/loadBalancers/vmss1LB"], "sku": {"name": "Standard_DS1_v2",
"capacity": 1}, "properties": {"overprovision": true, "upgradePolicy": {"mode":
- "manual"}, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption":
- "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}},
- "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku":
- "18.04-LTS", "version": "latest"}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss14adbNic", "properties": {"primary": "true", "ipConfigurations":
- [{"name": "vmss14adbIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
+ "manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": null, "maxUnhealthyInstancePercent":
+ null, "maxUnhealthyUpgradedInstancePercent": null, "pauseTimeBetweenBatches":
+ null, "enableCrossZoneUpgrade": null, "prioritizeUnhealthyInstances": null}},
+ "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage",
+ "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference":
+ {"publisher": "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version":
+ "latest"}}, "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1d0aeNic",
+ "properties": {"primary": "true", "ipConfigurations": [{"name": "vmss1d0aeIPConfig",
+ "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
"loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]},
- "osProfile": {"computerNamePrefix": "vmss14adb", "adminUsername": "admin123",
+ "osProfile": {"computerNamePrefix": "vmss1d0ae", "adminUsername": "admin123",
"adminPassword": "[parameters(''adminPassword'')]"}}, "singlePlacementGroup":
null}}], "outputs": {"VMSS": {"type": "object", "value": "[reference(resourceId(''Microsoft.Compute/virtualMachineScaleSets'',
''vmss1''),providers(''Microsoft.Compute'', ''virtualMachineScaleSets'').apiVersions[0])]"}}},
@@ -231,32 +234,32 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3815'
+ - '4059'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -n -g --image --authentication-type --admin-username --admin-password --instance-count
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_AJacdw0eTxbAJdRZTbN9wvq3DgXWcFUM","name":"vmss_deploy_AJacdw0eTxbAJdRZTbN9wvq3DgXWcFUM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8517884288039572924","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-02-09T06:36:30.2705175Z","duration":"PT2.3992405S","correlationId":"6f1d0538-3efb-4bc9-9243-dca9c37c5835","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_RKFFvjZqsLpenEEqnfhE9RSsX5HZQluE","name":"vmss_deploy_RKFFvjZqsLpenEEqnfhE9RSsX5HZQluE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10985154749883009323","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-04-16T03:16:42.6467017Z","duration":"PT2.2416827S","correlationId":"342436f3-a0ac-4f14-896e-fbf2a1e9bef5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}'
headers:
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_AJacdw0eTxbAJdRZTbN9wvq3DgXWcFUM/operationStatuses/08585887542976063546?api-version=2020-10-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_RKFFvjZqsLpenEEqnfhE9RSsX5HZQluE/operationStatuses/08585830638850726171?api-version=2020-10-01
cache-control:
- no-cache
content-length:
- - '2731'
+ - '2732'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:36:32 GMT
+ - Fri, 16 Apr 2021 03:16:44 GMT
expires:
- '-1'
pragma:
@@ -266,7 +269,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- - '1192'
+ - '1199'
status:
code: 201
message: Created
@@ -284,96 +287,10 @@ interactions:
ParameterSetName:
- -n -g --image --authentication-type --admin-username --admin-password --instance-count
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887542976063546?api-version=2020-10-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Tue, 09 Feb 2021 06:37:04 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vmss create
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --image --authentication-type --admin-username --admin-password --instance-count
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887542976063546?api-version=2020-10-01
- response:
- body:
- string: '{"status":"Running"}'
- headers:
- cache-control:
- - no-cache
- content-length:
- - '20'
- content-type:
- - application/json; charset=utf-8
- date:
- - Tue, 09 Feb 2021 06:37:34 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - application/json
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vmss create
- Connection:
- - keep-alive
- ParameterSetName:
- - -n -g --image --authentication-type --admin-username --admin-password --instance-count
- User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887542976063546?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585830638850726171?api-version=2020-10-01
response:
body:
string: '{"status":"Running"}'
@@ -385,7 +302,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:38:04 GMT
+ - Fri, 16 Apr 2021 03:17:15 GMT
expires:
- '-1'
pragma:
@@ -413,10 +330,10 @@ interactions:
ParameterSetName:
- -n -g --image --authentication-type --admin-username --admin-password --instance-count
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585887542976063546?api-version=2020-10-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585830638850726171?api-version=2020-10-01
response:
body:
string: '{"status":"Succeeded"}'
@@ -428,7 +345,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:38:36 GMT
+ - Fri, 16 Apr 2021 03:17:46 GMT
expires:
- '-1'
pragma:
@@ -456,22 +373,22 @@ interactions:
ParameterSetName:
- -n -g --image --authentication-type --admin-username --admin-password --instance-count
User-Agent:
- - python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
- azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.19.0
+ - python/3.8.9 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3
+ azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.0
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
- string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_AJacdw0eTxbAJdRZTbN9wvq3DgXWcFUM","name":"vmss_deploy_AJacdw0eTxbAJdRZTbN9wvq3DgXWcFUM","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8517884288039572924","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-02-09T06:38:10.9909372Z","duration":"PT1M43.1196602S","correlationId":"6f1d0538-3efb-4bc9-9243-dca9c37c5835","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual"},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss14adb","adminUsername":"admin123","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss14adbNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss14adbIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"1fd7e877-48fe-46f0-84ee-cccc5dac7a82"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}'
+ string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Resources/deployments/vmss_deploy_RKFFvjZqsLpenEEqnfhE9RSsX5HZQluE","name":"vmss_deploy_RKFFvjZqsLpenEEqnfhE9RSsX5HZQluE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"10985154749883009323","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-04-16T03:17:38.2787334Z","duration":"PT57.8737144S","correlationId":"342436f3-a0ac-4f14-896e-fbf2a1e9bef5","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1d0ae","adminUsername":"admin123","linuxConfiguration":{"disablePasswordAuthentication":false,"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss1d0aeNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1d0aeIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"d045e1bd-8a4d-4bc1-aaba-3fc21643226f"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}'
headers:
cache-control:
- no-cache
content-length:
- - '5450'
+ - '5610'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:38:36 GMT
+ - Fri, 16 Apr 2021 03:17:46 GMT
expires:
- '-1'
pragma:
@@ -500,7 +417,7 @@ interactions:
- -n --publisher --version --vmss-name --resource-group --protected-settings
--force-update --enable-auto-upgrade
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -510,31 +427,33 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n
\ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\":
true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2667'
+ - '2889'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:38:38 GMT
+ - Fri, 16 Apr 2021 03:17:48 GMT
expires:
- '-1'
pragma:
@@ -551,26 +470,28 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;393,Microsoft.Compute/GetVMScaleSet30Min;2582
+ - Microsoft.Compute/GetVMScaleSet3Min;395,Microsoft.Compute/GetVMScaleSet30Min;2590
status:
code: 200
message: OK
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier":
- "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual"},
- "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss14adb", "adminUsername":
+ "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual",
+ "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent":
+ 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}},
+ "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss1d0ae", "adminUsername":
"admin123", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent":
true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite",
"createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk":
{"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss14adbNic", "properties": {"primary": true, "enableAcceleratedNetworking":
- false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss14adbIPConfig",
+ [{"name": "vmss1d0aeNic", "properties": {"primary": true, "enableAcceleratedNetworking":
+ false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss1d0aeIPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
"loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],
"enableIPForwarding": false}}]}, "extensionProfile": {"extensions": [{"name":
- "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "cc568c41-b77e-4d07-93eb-2aba13d0fac7",
+ "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "0da43157-9419-4867-8d25-2c28ea1446a8",
"publisher": "Microsoft.Azure.NetworkWatcher", "type": "NetworkWatcherAgentLinux",
"typeHandlerVersion": "1.4", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade":
false, "protectedSettings": {"username": "myadmin", "ssh_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC8InHIPLAu6lMc0d+5voyXqigZfT5r6fAM1+FQAi+mkPDdk2hNq1BG0Bwfc88Gm7BImw8TS+x2bnZmhCbVnHd6BPCDY7a+cHCSqrQMW89Cv6Vl4ueGOeAWHpJTV9CTLVz4IY1x4HBdkLI2lKIHri9+z7NIdvFk7iOkMVGyez5H1xDbF2szURxgc4I2/o5wycSwX+G8DrtsBvWLmFv9YAPx+VkEHQDjR0WWezOjuo1rDn6MQfiKfqAjPuInwNOg5AIxXAOResrin2PUlArNtdDH1zlvI4RZi36+tJO7mtm3dJiKs4Sj7G6b1CjIU6aaj27MmKy3arIFChYav9yYM3IT"}}}]}},
@@ -586,14 +507,14 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2518'
+ - '2688'
Content-Type:
- application/json
ParameterSetName:
- -n --publisher --version --vmss-name --resource-group --protected-settings
--force-update --enable-auto-upgrade
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -603,42 +524,44 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n
\ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ce41809-3932-4cd5-8be5-890b56a3c96b?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/633ca799-c9ec-434b-88d5-0ea08d88ae12?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- - '3185'
+ - '3407'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:38:40 GMT
+ - Fri, 16 Apr 2021 03:17:52 GMT
expires:
- '-1'
pragma:
@@ -655,9 +578,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;295,Microsoft.Compute/VmssQueuedVMOperations;4800
+ - Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;296,Microsoft.Compute/VmssQueuedVMOperations;0
x-ms-ratelimit-remaining-subscription-writes:
- - '1191'
+ - '1199'
x-ms-request-charge:
- '0'
status:
@@ -678,115 +601,13 @@ interactions:
- -n --publisher --version --vmss-name --resource-group --protected-settings
--force-update --enable-auto-upgrade
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ce41809-3932-4cd5-8be5-890b56a3c96b?api-version=2020-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-02-09T06:38:38.6046091+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"0ce41809-3932-4cd5-8be5-890b56a3c96b\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Tue, 09 Feb 2021 06:38:50 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29762
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vmss extension set
- Connection:
- - keep-alive
- ParameterSetName:
- - -n --publisher --version --vmss-name --resource-group --protected-settings
- --force-update --enable-auto-upgrade
- User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ce41809-3932-4cd5-8be5-890b56a3c96b?api-version=2020-12-01
- response:
- body:
- string: "{\r\n \"startTime\": \"2021-02-09T06:38:38.6046091+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"0ce41809-3932-4cd5-8be5-890b56a3c96b\"\r\n}"
- headers:
- cache-control:
- - no-cache
- content-length:
- - '134'
- content-type:
- - application/json; charset=utf-8
- date:
- - Tue, 09 Feb 2021 06:39:27 GMT
- expires:
- - '-1'
- pragma:
- - no-cache
- server:
- - Microsoft-HTTPAPI/2.0
- - Microsoft-HTTPAPI/2.0
- strict-transport-security:
- - max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
- x-content-type-options:
- - nosniff
- x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29752
- status:
- code: 200
- message: OK
-- request:
- body: null
- headers:
- Accept:
- - '*/*'
- Accept-Encoding:
- - gzip, deflate
- CommandName:
- - vmss extension set
- Connection:
- - keep-alive
- ParameterSetName:
- - -n --publisher --version --vmss-name --resource-group --protected-settings
- --force-update --enable-auto-upgrade
- User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ce41809-3932-4cd5-8be5-890b56a3c96b?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/633ca799-c9ec-434b-88d5-0ea08d88ae12?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-02-09T06:38:38.6046091+00:00\",\r\n \"status\":
- \"InProgress\",\r\n \"name\": \"0ce41809-3932-4cd5-8be5-890b56a3c96b\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-16T03:17:50.2654219+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"633ca799-c9ec-434b-88d5-0ea08d88ae12\"\r\n}"
headers:
cache-control:
- no-cache
@@ -795,7 +616,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:39:57 GMT
+ - Fri, 16 Apr 2021 03:18:03 GMT
expires:
- '-1'
pragma:
@@ -812,7 +633,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29745
+ - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29875
status:
code: 200
message: OK
@@ -831,14 +652,14 @@ interactions:
- -n --publisher --version --vmss-name --resource-group --protected-settings
--force-update --enable-auto-upgrade
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/0ce41809-3932-4cd5-8be5-890b56a3c96b?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/633ca799-c9ec-434b-88d5-0ea08d88ae12?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-02-09T06:38:38.6046091+00:00\",\r\n \"endTime\":
- \"2021-02-09T06:40:17.3122389+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"0ce41809-3932-4cd5-8be5-890b56a3c96b\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-16T03:17:50.2654219+00:00\",\r\n \"endTime\":
+ \"2021-04-16T03:18:04.4528811+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"633ca799-c9ec-434b-88d5-0ea08d88ae12\"\r\n}"
headers:
cache-control:
- no-cache
@@ -847,7 +668,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:27 GMT
+ - Fri, 16 Apr 2021 03:18:41 GMT
expires:
- '-1'
pragma:
@@ -864,7 +685,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29742
+ - Microsoft.Compute/GetOperation3Min;14963,Microsoft.Compute/GetOperation30Min;29865
status:
code: 200
message: OK
@@ -883,7 +704,7 @@ interactions:
- -n --publisher --version --vmss-name --resource-group --protected-settings
--force-update --enable-auto-upgrade
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -893,38 +714,40 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n
\ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3186'
+ - '3408'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:28 GMT
+ - Fri, 16 Apr 2021 03:18:41 GMT
expires:
- '-1'
pragma:
@@ -941,7 +764,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;393,Microsoft.Compute/GetVMScaleSet30Min;2579
+ - Microsoft.Compute/GetVMScaleSet3Min;392,Microsoft.Compute/GetVMScaleSet30Min;2587
status:
code: 200
message: OK
@@ -959,7 +782,7 @@ interactions:
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -969,38 +792,40 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n
\ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3186'
+ - '3408'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:29 GMT
+ - Fri, 16 Apr 2021 03:18:42 GMT
expires:
- '-1'
pragma:
@@ -1017,7 +842,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;392,Microsoft.Compute/GetVMScaleSet30Min;2578
+ - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2586
status:
code: 200
message: OK
@@ -1035,7 +860,7 @@ interactions:
ParameterSetName:
- -g --vmss-name -n --publisher --version --provision-after-extensions --settings
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -1045,38 +870,40 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n
\ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3186'
+ - '3408'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:30 GMT
+ - Fri, 16 Apr 2021 03:18:43 GMT
expires:
- '-1'
pragma:
@@ -1093,26 +920,28 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2577
+ - Microsoft.Compute/GetVMScaleSet3Min;390,Microsoft.Compute/GetVMScaleSet30Min;2585
status:
code: 200
message: OK
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier":
- "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual"},
- "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss14adb", "adminUsername":
+ "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual",
+ "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent":
+ 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}},
+ "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss1d0ae", "adminUsername":
"admin123", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent":
true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite",
"createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk":
{"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss14adbNic", "properties": {"primary": true, "enableAcceleratedNetworking":
- false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss14adbIPConfig",
+ [{"name": "vmss1d0aeNic", "properties": {"primary": true, "enableAcceleratedNetworking":
+ false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss1d0aeIPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
"loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],
"enableIPForwarding": false}}]}, "extensionProfile": {"extensions": [{"name":
- "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "cc568c41-b77e-4d07-93eb-2aba13d0fac7",
+ "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "0da43157-9419-4867-8d25-2c28ea1446a8",
"publisher": "Microsoft.Azure.NetworkWatcher", "type": "NetworkWatcherAgentLinux",
"typeHandlerVersion": "1.4", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade":
false}}, {"name": "customScript", "properties": {"publisher": "Microsoft.Azure.Extensions",
@@ -1130,13 +959,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2356'
+ - '2526'
Content-Type:
- application/json
ParameterSetName:
- -g --vmss-name -n --publisher --version --provision-after-extensions --settings
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -1146,23 +975,25 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
@@ -1173,20 +1004,20 @@ interactions:
\"2.0\",\r\n \"settings\": {\"commandToExecute\":\"echo testing\"}\r\n
\ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\":
\"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/eebb8efa-1c9e-4e38-8e8d-3bfe55fc3eac?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dbc1f1bc-cbb8-4109-9285-c3b38a526b0b?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- - '3652'
+ - '3874'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:34 GMT
+ - Fri, 16 Apr 2021 03:18:47 GMT
expires:
- '-1'
pragma:
@@ -1203,9 +1034,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateVMScaleSet3Min;57,Microsoft.Compute/CreateVMScaleSet30Min;293,Microsoft.Compute/VmssQueuedVMOperations;4800
+ - Microsoft.Compute/CreateVMScaleSet3Min;57,Microsoft.Compute/CreateVMScaleSet30Min;295,Microsoft.Compute/VmssQueuedVMOperations;0
x-ms-ratelimit-remaining-subscription-writes:
- - '1190'
+ - '1196'
x-ms-request-charge:
- '0'
status:
@@ -1225,23 +1056,23 @@ interactions:
ParameterSetName:
- -g --vmss-name -n --publisher --version --provision-after-extensions --settings
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/eebb8efa-1c9e-4e38-8e8d-3bfe55fc3eac?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/dbc1f1bc-cbb8-4109-9285-c3b38a526b0b?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-02-09T06:40:32.0159689+00:00\",\r\n \"endTime\":
- \"2021-02-09T06:40:32.1722455+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"eebb8efa-1c9e-4e38-8e8d-3bfe55fc3eac\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-16T03:18:45.421661+00:00\",\r\n \"endTime\":
+ \"2021-04-16T03:18:46.6404179+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"dbc1f1bc-cbb8-4109-9285-c3b38a526b0b\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '184'
+ - '183'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:44 GMT
+ - Fri, 16 Apr 2021 03:18:58 GMT
expires:
- '-1'
pragma:
@@ -1258,7 +1089,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29738
+ - Microsoft.Compute/GetOperation3Min;14958,Microsoft.Compute/GetOperation30Min;29860
status:
code: 200
message: OK
@@ -1276,7 +1107,7 @@ interactions:
ParameterSetName:
- -g --vmss-name -n --publisher --version --provision-after-extensions --settings
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -1286,23 +1117,25 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
@@ -1313,16 +1146,16 @@ interactions:
\"2.0\",\r\n \"settings\": {\"commandToExecute\":\"echo testing\"}\r\n
\ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\":
\"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3653'
+ - '3875'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:45 GMT
+ - Fri, 16 Apr 2021 03:18:58 GMT
expires:
- '-1'
pragma:
@@ -1339,7 +1172,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;389,Microsoft.Compute/GetVMScaleSet30Min;2575
+ - Microsoft.Compute/GetVMScaleSet3Min;388,Microsoft.Compute/GetVMScaleSet30Min;2583
status:
code: 200
message: OK
@@ -1357,7 +1190,7 @@ interactions:
ParameterSetName:
- -g --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -1367,23 +1200,25 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
@@ -1394,16 +1229,16 @@ interactions:
\"2.0\",\r\n \"settings\": {\"commandToExecute\":\"echo testing\"}\r\n
\ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\":
\"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3653'
+ - '3875'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:46 GMT
+ - Fri, 16 Apr 2021 03:19:00 GMT
expires:
- '-1'
pragma:
@@ -1420,7 +1255,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;388,Microsoft.Compute/GetVMScaleSet30Min;2574
+ - Microsoft.Compute/GetVMScaleSet3Min;387,Microsoft.Compute/GetVMScaleSet30Min;2582
status:
code: 200
message: OK
@@ -1438,7 +1273,7 @@ interactions:
ParameterSetName:
- -g --vmss-name -n --publisher --version --provision-after-extensions --protected-settings
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -1448,23 +1283,25 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
@@ -1475,16 +1312,16 @@ interactions:
\"2.0\",\r\n \"settings\": {\"commandToExecute\":\"echo testing\"}\r\n
\ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\":
\"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3653'
+ - '3875'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:47 GMT
+ - Fri, 16 Apr 2021 03:19:00 GMT
expires:
- '-1'
pragma:
@@ -1501,26 +1338,28 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;387,Microsoft.Compute/GetVMScaleSet30Min;2573
+ - Microsoft.Compute/GetVMScaleSet3Min;386,Microsoft.Compute/GetVMScaleSet30Min;2581
status:
code: 200
message: OK
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier":
- "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual"},
- "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss14adb", "adminUsername":
+ "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual",
+ "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent":
+ 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}},
+ "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss1d0ae", "adminUsername":
"admin123", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent":
true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite",
"createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk":
{"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss14adbNic", "properties": {"primary": true, "enableAcceleratedNetworking":
- false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss14adbIPConfig",
+ [{"name": "vmss1d0aeNic", "properties": {"primary": true, "enableAcceleratedNetworking":
+ false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss1d0aeIPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
"loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],
"enableIPForwarding": false}}]}, "extensionProfile": {"extensions": [{"name":
- "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "cc568c41-b77e-4d07-93eb-2aba13d0fac7",
+ "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "0da43157-9419-4867-8d25-2c28ea1446a8",
"publisher": "Microsoft.Azure.NetworkWatcher", "type": "NetworkWatcherAgentLinux",
"typeHandlerVersion": "1.4", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade":
false}}, {"name": "customScript", "properties": {"publisher": "Microsoft.Azure.Extensions",
@@ -1543,13 +1382,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '3048'
+ - '3218'
Content-Type:
- application/json
ParameterSetName:
- -g --vmss-name -n --publisher --version --provision-after-extensions --protected-settings
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -1559,23 +1398,25 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
@@ -1592,20 +1433,20 @@ interactions:
\ \"typeHandlerVersion\": \"1.5\"\r\n }\r\n }\r\n
\ ]\r\n }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n
\ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/257877a3-4887-489b-93e0-f5f9e26ee855?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5b202c58-b8b9-4092-8303-d67c72a731bc?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- - '4094'
+ - '4316'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:40:51 GMT
+ - Fri, 16 Apr 2021 03:19:04 GMT
expires:
- '-1'
pragma:
@@ -1622,9 +1463,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateVMScaleSet3Min;56,Microsoft.Compute/CreateVMScaleSet30Min;292,Microsoft.Compute/VmssQueuedVMOperations;4800
+ - Microsoft.Compute/CreateVMScaleSet3Min;56,Microsoft.Compute/CreateVMScaleSet30Min;294,Microsoft.Compute/VmssQueuedVMOperations;0
x-ms-ratelimit-remaining-subscription-writes:
- - '1190'
+ - '1199'
x-ms-request-charge:
- '0'
status:
@@ -1644,14 +1485,14 @@ interactions:
ParameterSetName:
- -g --vmss-name -n --publisher --version --provision-after-extensions --protected-settings
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/257877a3-4887-489b-93e0-f5f9e26ee855?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/5b202c58-b8b9-4092-8303-d67c72a731bc?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-02-09T06:40:48.8604963+00:00\",\r\n \"endTime\":
- \"2021-02-09T06:40:49.0480088+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"257877a3-4887-489b-93e0-f5f9e26ee855\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:02.3748039+00:00\",\r\n \"endTime\":
+ \"2021-04-16T03:19:03.6716576+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"5b202c58-b8b9-4092-8303-d67c72a731bc\"\r\n}"
headers:
cache-control:
- no-cache
@@ -1660,7 +1501,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:01 GMT
+ - Fri, 16 Apr 2021 03:19:14 GMT
expires:
- '-1'
pragma:
@@ -1677,7 +1518,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29732
+ - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29854
status:
code: 200
message: OK
@@ -1695,7 +1536,7 @@ interactions:
ParameterSetName:
- -g --vmss-name -n --publisher --version --provision-after-extensions --protected-settings
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -1705,23 +1546,25 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
@@ -1738,16 +1581,16 @@ interactions:
\ \"typeHandlerVersion\": \"1.5\"\r\n }\r\n }\r\n
\ ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '4095'
+ - '4317'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:01 GMT
+ - Fri, 16 Apr 2021 03:19:15 GMT
expires:
- '-1'
pragma:
@@ -1764,7 +1607,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;388,Microsoft.Compute/GetVMScaleSet30Min;2571
+ - Microsoft.Compute/GetVMScaleSet3Min;384,Microsoft.Compute/GetVMScaleSet30Min;2579
status:
code: 200
message: OK
@@ -1782,7 +1625,7 @@ interactions:
ParameterSetName:
- -g --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -1792,23 +1635,25 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
@@ -1825,16 +1670,16 @@ interactions:
\ \"typeHandlerVersion\": \"1.5\"\r\n }\r\n }\r\n
\ ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '4095'
+ - '4317'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:02 GMT
+ - Fri, 16 Apr 2021 03:19:16 GMT
expires:
- '-1'
pragma:
@@ -1851,7 +1696,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;387,Microsoft.Compute/GetVMScaleSet30Min;2570
+ - Microsoft.Compute/GetVMScaleSet3Min;383,Microsoft.Compute/GetVMScaleSet30Min;2578
status:
code: 200
message: OK
@@ -1859,71 +1704,37 @@ interactions:
body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - vmss extension delete
+ - vmss extension upgrade
Connection:
- keep-alive
+ Content-Length:
+ - '0'
ParameterSetName:
- - --resource-group --vmss-name --name
+ - -g -n
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: POST
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/extensionRollingUpgrade?api-version=2020-12-01
response:
body:
- string: "{\r\n \"name\": \"vmss1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1\",\r\n
- \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\":
- \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
- \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
- {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
- \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
- \ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
- {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
- false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
- \ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
- \"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
- \"customScript\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\":
- true,\r\n \"provisionAfterExtensions\": [\r\n \"NetworkWatcherAgentLinux\"\r\n
- \ ],\r\n \"publisher\": \"Microsoft.Azure.Extensions\",\r\n
- \ \"type\": \"customScript\",\r\n \"typeHandlerVersion\":
- \"2.0\",\r\n \"settings\": {\"commandToExecute\":\"echo testing\"}\r\n
- \ }\r\n },\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n
- \ \"properties\": {\r\n \"autoUpgradeMinorVersion\":
- true,\r\n \"provisionAfterExtensions\": [\r\n \"NetworkWatcherAgentLinux\",\r\n
- \ \"customScript\"\r\n ],\r\n \"publisher\":
- \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n
- \ \"typeHandlerVersion\": \"1.5\"\r\n }\r\n }\r\n
- \ ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n
- \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ string: ''
headers:
+ azure-asyncoperation:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- - '4095'
- content-type:
- - application/json; charset=utf-8
+ - '0'
date:
- - Tue, 09 Feb 2021 06:41:03 GMT
+ - Fri, 16 Apr 2021 03:19:29 GMT
expires:
- '-1'
+ location:
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?monitor=true&api-version=2020-12-01
pragma:
- no-cache
server:
@@ -1931,86 +1742,1223 @@ interactions:
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
- transfer-encoding:
- - chunked
- vary:
- - Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;386,Microsoft.Compute/GetVMScaleSet30Min;2569
+ - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1197,Microsoft.Compute/VmssQueuedVMOperations;0
+ x-ms-ratelimit-remaining-subscription-writes:
+ - '1199'
+ x-ms-request-charge:
+ - '0'
status:
- code: 200
- message: OK
+ code: 202
+ message: Accepted
- request:
- body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier":
- "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual"},
- "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss14adb", "adminUsername":
- "admin123", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent":
- true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite",
- "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk":
- {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss14adbNic", "properties": {"primary": true, "enableAcceleratedNetworking":
- false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss14adbIPConfig",
- "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
- "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id":
- "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
- "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],
- "enableIPForwarding": false}}]}, "extensionProfile": {"extensions": [{"name":
- "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "cc568c41-b77e-4d07-93eb-2aba13d0fac7",
- "publisher": "Microsoft.Azure.NetworkWatcher", "type": "NetworkWatcherAgentLinux",
- "typeHandlerVersion": "1.4", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade":
- false}}, {"name": "customScript", "properties": {"publisher": "Microsoft.Azure.Extensions",
- "type": "customScript", "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion":
- true, "settings": {"commandToExecute": "echo testing"}, "provisionAfterExtensions":
- ["NetworkWatcherAgentLinux"]}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs":
- false, "singlePlacementGroup": true}}'
+ body: null
headers:
Accept:
- - application/json
+ - '*/*'
Accept-Encoding:
- gzip, deflate
CommandName:
- - vmss extension delete
+ - vmss extension upgrade
Connection:
- keep-alive
- Content-Length:
- - '2356'
- Content-Type:
- - application/json
ParameterSetName:
- - --resource-group --vmss-name --name
+ - -g -n
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
- method: PUT
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
response:
body:
- string: "{\r\n \"name\": \"vmss1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1\",\r\n
- \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\":
- \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
- \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
- {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
- \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
- \ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
- {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
- false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
- \ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
- \"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:20:00 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29844
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:20:30 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29835
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:21:01 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29826
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:21:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29816
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:22:02 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29808
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:22:32 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29800
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:23:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29796
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:23:33 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29792
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:24:03 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14970,Microsoft.Compute/GetOperation30Min;29789
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:24:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29784
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:25:04 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29780
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:25:34 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29776
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:26:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29772
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:26:36 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29767
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:27:06 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29763
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:27:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29759
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:28:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29756
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:28:37 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29751
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"status\":
+ \"InProgress\",\r\n \"name\": \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '134'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:29:07 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29747
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"startTime\": \"2021-04-16T03:19:30.5622916+00:00\",\r\n \"endTime\":
+ \"2021-04-16T03:29:31.76735+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\":
+ \"668b10b1-4fd2-494d-bab4-27d0797348d8\"\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '182'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:29:38 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29743
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - '*/*'
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension upgrade
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - -g -n
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/668b10b1-4fd2-494d-bab4-27d0797348d8?monitor=true&api-version=2020-12-01
+ response:
+ body:
+ string: ''
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '0'
+ date:
+ - Fri, 16 Apr 2021 03:29:39 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29742
+ status:
+ code: 200
+ message: OK
+- request:
+ body: null
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension delete
+ Connection:
+ - keep-alive
+ ParameterSetName:
+ - --resource-group --vmss-name --name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: GET
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmss1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\":
+ \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
+ \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
+ {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
+ \ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
+ {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
+ false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
+ \ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
+ \"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
+ \"customScript\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\":
+ true,\r\n \"provisionAfterExtensions\": [\r\n \"NetworkWatcherAgentLinux\"\r\n
+ \ ],\r\n \"publisher\": \"Microsoft.Azure.Extensions\",\r\n
+ \ \"type\": \"customScript\",\r\n \"typeHandlerVersion\":
+ \"2.0\",\r\n \"settings\": {\"commandToExecute\":\"echo testing\"}\r\n
+ \ }\r\n },\r\n {\r\n \"name\": \"VMAccessForLinux\",\r\n
+ \ \"properties\": {\r\n \"autoUpgradeMinorVersion\":
+ true,\r\n \"provisionAfterExtensions\": [\r\n \"NetworkWatcherAgentLinux\",\r\n
+ \ \"customScript\"\r\n ],\r\n \"publisher\":
+ \"Microsoft.OSTCExtensions\",\r\n \"type\": \"VMAccessForLinux\",\r\n
+ \ \"typeHandlerVersion\": \"1.5\"\r\n }\r\n }\r\n
+ \ ]\r\n }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n
+ \ \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
+ headers:
+ cache-control:
+ - no-cache
+ content-length:
+ - '4317'
+ content-type:
+ - application/json; charset=utf-8
+ date:
+ - Fri, 16 Apr 2021 03:29:40 GMT
+ expires:
+ - '-1'
+ pragma:
+ - no-cache
+ server:
+ - Microsoft-HTTPAPI/2.0
+ - Microsoft-HTTPAPI/2.0
+ strict-transport-security:
+ - max-age=31536000; includeSubDomains
+ transfer-encoding:
+ - chunked
+ vary:
+ - Accept-Encoding
+ x-content-type-options:
+ - nosniff
+ x-ms-ratelimit-remaining-resource:
+ - Microsoft.Compute/GetVMScaleSet3Min;395,Microsoft.Compute/GetVMScaleSet30Min;2572
+ status:
+ code: 200
+ message: OK
+- request:
+ body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier":
+ "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual",
+ "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent":
+ 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}},
+ "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss1d0ae", "adminUsername":
+ "admin123", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent":
+ true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite",
+ "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk":
+ {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations":
+ [{"name": "vmss1d0aeNic", "properties": {"primary": true, "enableAcceleratedNetworking":
+ false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss1d0aeIPConfig",
+ "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
+ "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id":
+ "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
+ "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],
+ "enableIPForwarding": false}}]}, "extensionProfile": {"extensions": [{"name":
+ "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "0da43157-9419-4867-8d25-2c28ea1446a8",
+ "publisher": "Microsoft.Azure.NetworkWatcher", "type": "NetworkWatcherAgentLinux",
+ "typeHandlerVersion": "1.4", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade":
+ false}}, {"name": "customScript", "properties": {"publisher": "Microsoft.Azure.Extensions",
+ "type": "customScript", "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion":
+ true, "settings": {"commandToExecute": "echo testing"}, "provisionAfterExtensions":
+ ["NetworkWatcherAgentLinux"]}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs":
+ false, "singlePlacementGroup": true}}'
+ headers:
+ Accept:
+ - application/json
+ Accept-Encoding:
+ - gzip, deflate
+ CommandName:
+ - vmss extension delete
+ Connection:
+ - keep-alive
+ Content-Length:
+ - '2526'
+ Content-Type:
+ - application/json
+ ParameterSetName:
+ - --resource-group --vmss-name --name
+ User-Agent:
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
+ method: PUT
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
+ response:
+ body:
+ string: "{\r\n \"name\": \"vmss1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1\",\r\n
+ \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\":
+ \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
+ \ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
+ {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
+ \ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
+ {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
+ false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
+ \ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
+ \"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
\"customScript\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\":
true,\r\n \"provisionAfterExtensions\": [\r\n \"NetworkWatcherAgentLinux\"\r\n
\ ],\r\n \"publisher\": \"Microsoft.Azure.Extensions\",\r\n
@@ -2018,20 +2966,20 @@ interactions:
\"2.0\",\r\n \"settings\": {\"commandToExecute\":\"echo testing\"}\r\n
\ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\":
\"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f576897b-09ce-48ee-ae7f-2e53b0934e38?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/048fb98a-ea16-4cb7-bc79-86e6dd5192ea?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- - '3652'
+ - '3874'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:07 GMT
+ - Fri, 16 Apr 2021 03:29:44 GMT
expires:
- '-1'
pragma:
@@ -2048,9 +2996,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateVMScaleSet3Min;55,Microsoft.Compute/CreateVMScaleSet30Min;291,Microsoft.Compute/VmssQueuedVMOperations;4800
+ - Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;294,Microsoft.Compute/VmssQueuedVMOperations;0
x-ms-ratelimit-remaining-subscription-writes:
- - '1191'
+ - '1199'
x-ms-request-charge:
- '0'
status:
@@ -2070,14 +3018,14 @@ interactions:
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/f576897b-09ce-48ee-ae7f-2e53b0934e38?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/048fb98a-ea16-4cb7-bc79-86e6dd5192ea?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-02-09T06:41:05.1425028+00:00\",\r\n \"endTime\":
- \"2021-02-09T06:41:05.3299689+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"f576897b-09ce-48ee-ae7f-2e53b0934e38\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-16T03:29:41.8299676+00:00\",\r\n \"endTime\":
+ \"2021-04-16T03:29:43.0955478+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"048fb98a-ea16-4cb7-bc79-86e6dd5192ea\"\r\n}"
headers:
cache-control:
- no-cache
@@ -2086,7 +3034,7 @@ interactions:
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:17 GMT
+ - Fri, 16 Apr 2021 03:29:54 GMT
expires:
- '-1'
pragma:
@@ -2103,7 +3051,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29727
+ - Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29739
status:
code: 200
message: OK
@@ -2121,7 +3069,7 @@ interactions:
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -2131,23 +3079,25 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
@@ -2158,16 +3108,16 @@ interactions:
\"2.0\",\r\n \"settings\": {\"commandToExecute\":\"echo testing\"}\r\n
\ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\":
\"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3653'
+ - '3875'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:17 GMT
+ - Fri, 16 Apr 2021 03:29:55 GMT
expires:
- '-1'
pragma:
@@ -2184,7 +3134,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;384,Microsoft.Compute/GetVMScaleSet30Min;2567
+ - Microsoft.Compute/GetVMScaleSet3Min;392,Microsoft.Compute/GetVMScaleSet30Min;2569
status:
code: 200
message: OK
@@ -2202,7 +3152,7 @@ interactions:
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -2212,23 +3162,25 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n },\r\n {\r\n \"name\":
@@ -2239,16 +3191,16 @@ interactions:
\"2.0\",\r\n \"settings\": {\"commandToExecute\":\"echo testing\"}\r\n
\ }\r\n }\r\n ]\r\n }\r\n },\r\n \"provisioningState\":
\"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\":
- false,\r\n \"uniqueId\": \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ false,\r\n \"uniqueId\": \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3653'
+ - '3875'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:19 GMT
+ - Fri, 16 Apr 2021 03:29:56 GMT
expires:
- '-1'
pragma:
@@ -2265,26 +3217,28 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;383,Microsoft.Compute/GetVMScaleSet30Min;2566
+ - Microsoft.Compute/GetVMScaleSet3Min;391,Microsoft.Compute/GetVMScaleSet30Min;2568
status:
code: 200
message: OK
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier":
- "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual"},
- "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss14adb", "adminUsername":
+ "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual",
+ "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent":
+ 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}},
+ "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss1d0ae", "adminUsername":
"admin123", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent":
true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite",
"createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk":
{"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss14adbNic", "properties": {"primary": true, "enableAcceleratedNetworking":
- false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss14adbIPConfig",
+ [{"name": "vmss1d0aeNic", "properties": {"primary": true, "enableAcceleratedNetworking":
+ false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss1d0aeIPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
"loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}],
"enableIPForwarding": false}}]}, "extensionProfile": {"extensions": [{"name":
- "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "cc568c41-b77e-4d07-93eb-2aba13d0fac7",
+ "NetworkWatcherAgentLinux", "properties": {"forceUpdateTag": "0da43157-9419-4867-8d25-2c28ea1446a8",
"publisher": "Microsoft.Azure.NetworkWatcher", "type": "NetworkWatcherAgentLinux",
"typeHandlerVersion": "1.4", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade":
false}}]}}, "overprovision": true, "doNotRunExtensionsOnOverprovisionedVMs":
@@ -2299,13 +3253,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '2077'
+ - '2247'
Content-Type:
- application/json
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -2315,42 +3269,44 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n
\ \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n
\ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/067572ec-7b2b-43a6-919f-f5d8046ea8a9?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c4e3e31c-db5c-49b5-b54b-7c318b299b7f?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- - '3185'
+ - '3407'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:23 GMT
+ - Fri, 16 Apr 2021 03:30:01 GMT
expires:
- '-1'
pragma:
@@ -2367,9 +3323,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateVMScaleSet3Min;54,Microsoft.Compute/CreateVMScaleSet30Min;290,Microsoft.Compute/VmssQueuedVMOperations;4800
+ - Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;293,Microsoft.Compute/VmssQueuedVMOperations;0
x-ms-ratelimit-remaining-subscription-writes:
- - '1190'
+ - '1199'
x-ms-request-charge:
- '0'
status:
@@ -2389,23 +3345,23 @@ interactions:
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/067572ec-7b2b-43a6-919f-f5d8046ea8a9?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/c4e3e31c-db5c-49b5-b54b-7c318b299b7f?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-02-09T06:41:20.924448+00:00\",\r\n \"endTime\":
- \"2021-02-09T06:41:21.1119337+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"067572ec-7b2b-43a6-919f-f5d8046ea8a9\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-16T03:29:58.5019006+00:00\",\r\n \"endTime\":
+ \"2021-04-16T03:29:58.7362852+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"c4e3e31c-db5c-49b5-b54b-7c318b299b7f\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '183'
+ - '184'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:33 GMT
+ - Fri, 16 Apr 2021 03:30:11 GMT
expires:
- '-1'
pragma:
@@ -2422,7 +3378,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29724
+ - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29748
status:
code: 200
message: OK
@@ -2440,7 +3396,7 @@ interactions:
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -2450,38 +3406,40 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n
\ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3186'
+ - '3408'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:34 GMT
+ - Fri, 16 Apr 2021 03:30:11 GMT
expires:
- '-1'
pragma:
@@ -2498,7 +3456,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;381,Microsoft.Compute/GetVMScaleSet30Min;2563
+ - Microsoft.Compute/GetVMScaleSet3Min;388,Microsoft.Compute/GetVMScaleSet30Min;2568
status:
code: 200
message: OK
@@ -2516,7 +3474,7 @@ interactions:
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -2526,38 +3484,40 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n
\ \"name\": \"NetworkWatcherAgentLinux\",\r\n \"properties\":
{\r\n \"autoUpgradeMinorVersion\": true,\r\n \"forceUpdateTag\":
- \"cc568c41-b77e-4d07-93eb-2aba13d0fac7\",\r\n \"enableAutomaticUpgrade\":
+ \"0da43157-9419-4867-8d25-2c28ea1446a8\",\r\n \"enableAutomaticUpgrade\":
false,\r\n \"publisher\": \"Microsoft.Azure.NetworkWatcher\",\r\n
\ \"type\": \"NetworkWatcherAgentLinux\",\r\n \"typeHandlerVersion\":
\"1.4\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n
\ \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '3186'
+ - '3408'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:35 GMT
+ - Fri, 16 Apr 2021 03:30:13 GMT
expires:
- '-1'
pragma:
@@ -2574,20 +3534,22 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;380,Microsoft.Compute/GetVMScaleSet30Min;2562
+ - Microsoft.Compute/GetVMScaleSet3Min;387,Microsoft.Compute/GetVMScaleSet30Min;2567
status:
code: 200
message: OK
- request:
body: '{"location": "westus", "tags": {}, "sku": {"name": "Standard_DS1_v2", "tier":
- "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual"},
- "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss14adb", "adminUsername":
+ "Standard", "capacity": 1}, "properties": {"upgradePolicy": {"mode": "Manual",
+ "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent":
+ 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}},
+ "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss1d0ae", "adminUsername":
"admin123", "linuxConfiguration": {"disablePasswordAuthentication": false, "provisionVMAgent":
true}, "secrets": []}, "storageProfile": {"osDisk": {"caching": "ReadWrite",
"createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk":
{"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"networkInterfaceConfigurations":
- [{"name": "vmss14adbNic", "properties": {"primary": true, "enableAcceleratedNetworking":
- false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss14adbIPConfig",
+ [{"name": "vmss1d0aeNic", "properties": {"primary": true, "enableAcceleratedNetworking":
+ false, "dnsSettings": {"dnsServers": []}, "ipConfigurations": [{"name": "vmss1d0aeIPConfig",
"properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},
"privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id":
"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],
@@ -2605,13 +3567,13 @@ interactions:
Connection:
- keep-alive
Content-Length:
- - '1789'
+ - '1959'
Content-Type:
- application/json
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -2621,36 +3583,38 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": []\r\n }\r\n
\ },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\":
true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
azure-asyncnotification:
- Enabled
azure-asyncoperation:
- - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/14d10754-f369-4a70-b4b7-7b3f90779107?api-version=2020-12-01
+ - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2d156a4c-abe9-4c88-b0a0-76716039d001?api-version=2020-12-01
cache-control:
- no-cache
content-length:
- - '2731'
+ - '2953'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:37 GMT
+ - Fri, 16 Apr 2021 03:30:17 GMT
expires:
- '-1'
pragma:
@@ -2667,9 +3631,9 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/CreateVMScaleSet3Min;54,Microsoft.Compute/CreateVMScaleSet30Min;289,Microsoft.Compute/VmssQueuedVMOperations;4800
+ - Microsoft.Compute/CreateVMScaleSet3Min;57,Microsoft.Compute/CreateVMScaleSet30Min;292,Microsoft.Compute/VmssQueuedVMOperations;0
x-ms-ratelimit-remaining-subscription-writes:
- - '1188'
+ - '1199'
x-ms-request-charge:
- '0'
status:
@@ -2689,23 +3653,23 @@ interactions:
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
- uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/14d10754-f369-4a70-b4b7-7b3f90779107?api-version=2020-12-01
+ uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/2d156a4c-abe9-4c88-b0a0-76716039d001?api-version=2020-12-01
response:
body:
- string: "{\r\n \"startTime\": \"2021-02-09T06:41:36.6751674+00:00\",\r\n \"endTime\":
- \"2021-02-09T06:41:37.034577+00:00\",\r\n \"status\": \"Succeeded\",\r\n
- \ \"name\": \"14d10754-f369-4a70-b4b7-7b3f90779107\"\r\n}"
+ string: "{\r\n \"startTime\": \"2021-04-16T03:30:15.0644872+00:00\",\r\n \"endTime\":
+ \"2021-04-16T03:30:15.2676392+00:00\",\r\n \"status\": \"Succeeded\",\r\n
+ \ \"name\": \"2d156a4c-abe9-4c88-b0a0-76716039d001\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '183'
+ - '184'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:47 GMT
+ - Fri, 16 Apr 2021 03:30:27 GMT
expires:
- '-1'
pragma:
@@ -2722,7 +3686,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29718
+ - Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29746
status:
code: 200
message: OK
@@ -2740,7 +3704,7 @@ interactions:
ParameterSetName:
- --resource-group --vmss-name --name
User-Agent:
- - AZURECLI/2.19.0 azsdk-python-azure-mgmt-compute/18.2.0 Python/3.7.4 (Windows-10-10.0.19041-SP0)
+ - AZURECLI/2.22.0 azsdk-python-azure-mgmt-compute/20.0.0 Python/3.8.9 (Windows-10-10.0.19041-SP0)
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2020-12-01
response:
@@ -2750,32 +3714,34 @@ interactions:
\"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n
\ \"tier\": \"Standard\",\r\n \"capacity\": 1\r\n },\r\n \"properties\":
{\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\":
- \"Manual\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\":
- {\r\n \"computerNamePrefix\": \"vmss14adb\",\r\n \"adminUsername\":
- \"admin123\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\":
- false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\":
- [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\":
- true\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n
- \ \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n
- \ \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n
- \ \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\":
- 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\":
- \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\":
- \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n
- \ \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss14adbNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss14adbIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
+ \"Manual\",\r\n \"rollingUpgradePolicy\": {\r\n \"maxBatchInstancePercent\":
+ 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\":
+ 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n
+ \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\":
+ \"vmss1d0ae\",\r\n \"adminUsername\": \"admin123\",\r\n \"linuxConfiguration\":
+ {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\":
+ true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
+ true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\":
+ {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\":
+ \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\":
+ {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n
+ \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\":
+ {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n
+ \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n
+ \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss1d0aeNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss1d0aeIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_extension000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n
\ \"extensionProfile\": {\r\n \"extensions\": []\r\n }\r\n
\ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\":
true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\":
- \"1fd7e877-48fe-46f0-84ee-cccc5dac7a82\"\r\n }\r\n}"
+ \"d045e1bd-8a4d-4bc1-aaba-3fc21643226f\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- - '2732'
+ - '2954'
content-type:
- application/json; charset=utf-8
date:
- - Tue, 09 Feb 2021 06:41:47 GMT
+ - Fri, 16 Apr 2021 03:30:27 GMT
expires:
- '-1'
pragma:
@@ -2792,7 +3758,7 @@ interactions:
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- - Microsoft.Compute/GetVMScaleSet3Min;375,Microsoft.Compute/GetVMScaleSet30Min;2557
+ - Microsoft.Compute/GetVMScaleSet3Min;385,Microsoft.Compute/GetVMScaleSet30Min;2565
status:
code: 200
message: OK
diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py
index 0726376a21c..8412bb387b5 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
@@ -1629,6 +1629,8 @@ def test_vmss_extension(self):
self.check('provisionAfterExtensions[1]', '{script-ext}'),
])
+ self.cmd('vmss extension upgrade -g {rg} -n {vmss}')
+
# delete all the extensions
self.cmd('vmss extension delete --resource-group {rg} --vmss-name {vmss} --name {access-ext}')
self.cmd('vmss extension delete --resource-group {rg} --vmss-name {vmss} --name {script-ext}')
@@ -3821,6 +3823,25 @@ def test_gallery_e2e(self, resource_group, resource_group_location):
self.cmd('sig image-definition delete -g {rg} --gallery-name {gallery} --gallery-image-definition {image}')
self.cmd('sig delete -g {rg} --gallery-name {gallery}')
+ @ResourceGroupPreparer(name_prefix='cli_test_gallery_image_version_vhd')
+ def test_gallery_image_version_vhd(self, resource_group):
+ self.kwargs.update({
+ 'gallery': self.create_random_name(prefix='gallery_', length=20),
+ })
+
+ self.cmd('vm create -g {rg} -n vm1 --image centos --use-unmanaged-disk --nsg-rule NONE --generate-ssh-key')
+ vhd_uri = self.cmd('vm show -g {rg} -n vm1').get_output_in_json()['storageProfile']['osDisk']['vhd']['uri']
+ storage_account = vhd_uri.split('.')[0].split('/')[-1]
+ self.kwargs.update({
+ 'vhd': vhd_uri,
+ 'stac': storage_account
+ })
+ self.cmd('sig create -g {rg} --gallery-name {gallery}')
+ self.cmd('sig image-definition create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --os-type linux -p publisher1 -f offer1 -s sku1')
+ self.cmd('sig image-version create -g {rg} --gallery-name {gallery} --gallery-image-definition image1 --gallery-image-version 1.0.0 --os-vhd-uri {vhd} --os-vhd-storage-account {stac} --replica-count 1', checks=[
+ self.check('storageProfile.osDiskImage.source.uri', vhd_uri)
+ ])
+
@ResourceGroupPreparer(name_prefix='cli_test_gallery_specialized_', location='eastus2')
def test_gallery_specialized(self, resource_group):
self.kwargs.update({
@@ -4618,24 +4639,21 @@ def test_disk_access(self, resource_group):
])
self.cmd('disk-access update -g {rg} -n {diskaccess} --tags tag1=val1')
- disk_access_output = self.cmd('disk-access show -g {rg} -n {diskaccess}', checks=[
+ self.cmd('disk-access show -g {rg} -n {diskaccess}', checks=[
self.check('name', '{diskaccess}'),
self.check('location', '{loc}'),
self.check('tags.tag1', 'val1')
- ]).get_output_in_json()
- disk_access_id = disk_access_output['id']
+ ])
self.cmd('disk create -g {rg} -n {disk} --size-gb 10 --network-access-policy AllowPrivate --disk-access {diskaccess}')
self.cmd('disk show -g {rg} -n {disk}', checks=[
self.check('name', '{disk}'),
- self.check('diskAccessId', disk_access_id, False),
self.check('networkAccessPolicy', 'AllowPrivate')
])
self.cmd('snapshot create -g {rg} -n {snapshot} --size-gb 10 --network-access-policy AllowPrivate --disk-access {diskaccess}')
self.cmd('snapshot show -g {rg} -n {snapshot}', checks=[
self.check('name', '{snapshot}'),
- self.check('diskAccessId', disk_access_id, False),
self.check('networkAccessPolicy', 'AllowPrivate')
])
@@ -5158,12 +5176,49 @@ def test_vm_trusted_launch_update(self, resource_group):
class VMCreateCountScenarioTest(ScenarioTest):
- @ResourceGroupPreparer(name_prefix='cli_test_vm_create_count_')
+ @ResourceGroupPreparer(name_prefix='cli_test_vm_create_count_', location='eastus')
def test_vm_create_count(self, resource_group):
- self.cmd('vm create -g {rg} -n vm --image centos --count 3 --nsg-rule None --generate-ssh-keys')
- self.cmd('vm show -g {rg} -n vm0')
- self.cmd('vm show -g {rg} -n vm1')
- self.cmd('vm show -g {rg} -n vm2')
+ self.cmd('az network vnet create -g {rg} -n vnet --address-prefix 10.0.0.0/16')
+ self.cmd('az network vnet subnet create -g {rg} --vnet-name vnet -n subnet1 --address-prefixes 10.0.0.0/24')
+ self.cmd('az network vnet subnet create -g {rg} --vnet-name vnet -n subnet2 --address-prefixes 10.0.1.0/24')
+ self.cmd('vm create -g {rg} -n vma --image ubuntults --count 3 --vnet-name vnet --subnet subnet1 --nsg-rule None --generate-ssh-keys')
+ self.cmd('vm create -g {rg} -n vmb --image ubuntults --count 3 --vnet-name vnet --subnet subnet2 --nsg-rule None --generate-ssh-keys')
+ self.cmd('vm list -g {rg}', checks=[
+ self.check('length(@)', 6)
+ ])
+
+
+class ExtendedLocation(ScenarioTest):
+ @ResourceGroupPreparer(name_prefix='cli_test_vm_extended_location_')
+ def test_vm_extended_location(self, resource_group):
+ self.cmd('vm create -g {rg} -n vm --image ubuntults --nsg-rule None --generate-ssh-keys --edge-zone microsoftlosangeles1')
+ self.cmd('vm show -g {rg} -n vm', checks=[
+ self.check('extendedLocation.name', 'microsoftlosangeles1'),
+ self.check('extendedLocation.type', 'EdgeZone')
+ ])
+
+ @ResourceGroupPreparer(name_prefix='cli_test_vmss_extended_location_')
+ def test_vmss_extended_location(self, resource_group):
+ self.cmd('vmss create -g {rg} -n vmss --image ubuntults --generate-ssh-keys --edge-zone microsoftlosangeles1')
+ self.cmd('vmss show -g {rg} -n vmss', checks=[
+ self.check('extendedLocation.name', 'microsoftlosangeles1'),
+ self.check('extendedLocation.type', 'EdgeZone')
+ ])
+
+ @ResourceGroupPreparer(name_prefix='cli_test_other_extended_location_')
+ def test_other_extended_location(self, resource_group):
+ self.cmd('disk create -g {rg} -n d1 --size-gb 10 --edge-zone microsoftlosangeles1', checks=[
+ self.check('extendedLocation.name', 'microsoftlosangeles1'),
+ self.check('extendedLocation.type', 'EdgeZone')
+ ])
+ self.cmd('snapshot create -g {rg} -n s1 --size-gb 10 --edge-zone microsoftlosangeles1 --sku Premium_LRS', checks=[
+ self.check('extendedLocation.name', 'microsoftlosangeles1'),
+ self.check('extendedLocation.type', 'EdgeZone')
+ ])
+ self.cmd('image create -g {rg} -n image --os-type linux --source d1 --edge-zone microsoftlosangeles1', checks=[
+ self.check('extendedLocation.name', 'microsoftlosangeles1'),
+ self.check('extendedLocation.type', 'EdgeZone')
+ ])
if __name__ == '__main__':